Whamcloud - gitweb
LU-8576 test: Fix hard-coded NETTYPE in test-framework.sh
[fs/lustre-release.git] / lustre / tests / sanity.sh
1 #!/bin/bash
2 # -*- tab-width: 8; indent-tabs-mode: t; -*-
3 #
4 # Run select tests by setting ONLY, or as arguments to the script.
5 # Skip specific tests by setting EXCEPT.
6 #
7 # e.g. ONLY="22 23" or ONLY="`seq 32 39`" or EXCEPT="31"
8 set -e
9
10 ONLY=${ONLY:-"$*"}
11 # bug number for skipped test:  LU-6493 3561 5188
12 ALWAYS_EXCEPT="                 42b     45   68b   $SANITY_EXCEPT"
13 # UPDATE THE COMMENT ABOVE WITH BUG NUMBERS WHEN CHANGING ALWAYS_EXCEPT!
14
15 # bug number for skipped tests: LU-2036 LU-8411 LU-9096
16 ALWAYS_EXCEPT="                 76      407     253 $ALWAYS_EXCEPT"
17
18 # Check Grants after these tests
19 GRANT_CHECK_LIST="$GRANT_CHECK_LIST 42a 42b 42c 42d 42e 63a 63b 64a 64b 64c"
20
21 is_sles11()                                             # LU-4341
22 {
23         if [ -r /etc/SuSE-release ]
24         then
25                 local vers=$(grep VERSION /etc/SuSE-release | awk '{print $3}')
26                 local patchlev=$(grep PATCHLEVEL /etc/SuSE-release |
27                         awk '{ print $3 }')
28                 if [ $vers -eq 11 ] && [ $patchlev -ge 3 ]; then
29                         return 0
30                 fi
31         fi
32         return 1
33 }
34
35 if is_sles11; then                                      # LU-4341
36         ALWAYS_EXCEPT="$ALWAYS_EXCEPT 170"
37 fi
38
39 SRCDIR=$(cd $(dirname $0); echo $PWD)
40 export PATH=$PATH:/sbin
41
42 TMP=${TMP:-/tmp}
43
44 CC=${CC:-cc}
45 CHECKSTAT=${CHECKSTAT:-"checkstat -v"}
46 CREATETEST=${CREATETEST:-createtest}
47 LFS=${LFS:-lfs}
48 LFIND=${LFIND:-"$LFS find"}
49 LVERIFY=${LVERIFY:-ll_dirstripe_verify}
50 LCTL=${LCTL:-lctl}
51 OPENFILE=${OPENFILE:-openfile}
52 OPENUNLINK=${OPENUNLINK:-openunlink}
53 export MULTIOP=${MULTIOP:-multiop}
54 READS=${READS:-"reads"}
55 MUNLINK=${MUNLINK:-munlink}
56 SOCKETSERVER=${SOCKETSERVER:-socketserver}
57 SOCKETCLIENT=${SOCKETCLIENT:-socketclient}
58 MEMHOG=${MEMHOG:-memhog}
59 DIRECTIO=${DIRECTIO:-directio}
60 ACCEPTOR_PORT=${ACCEPTOR_PORT:-988}
61 STRIPES_PER_OBJ=-1
62 CHECK_GRANT=${CHECK_GRANT:-"yes"}
63 GRANT_CHECK_LIST=${GRANT_CHECK_LIST:-""}
64 export PARALLEL=${PARALLEL:-"no"}
65
66 export NAME=${NAME:-local}
67
68 SAVE_PWD=$PWD
69
70 CLEANUP=${CLEANUP:-:}
71 SETUP=${SETUP:-:}
72 TRACE=${TRACE:-""}
73 LUSTRE=${LUSTRE:-$(cd $(dirname $0)/..; echo $PWD)}
74 LUSTRE_TESTS_API_DIR=${LUSTRE_TESTS_API_DIR:-${LUSTRE}/tests/clientapi}
75 . $LUSTRE/tests/test-framework.sh
76 init_test_env $@
77 . ${CONFIG:=$LUSTRE/tests/cfg/${NAME}.sh}
78 init_logging
79
80 #                                  5          12          (min)"
81 [ "$SLOW" = "no" ] && EXCEPT_SLOW="27m 64b 68 71 115 300o"
82
83 if [ $(facet_fstype $SINGLEMDS) = "zfs" ]; then
84         # bug number for skipped test: LU-9514 LU-4536 LU-1957
85         ALWAYS_EXCEPT="$ALWAYS_EXCEPT  51f     65ic    180"
86         #                                               13    (min)"
87         [ "$SLOW" = "no" ] && EXCEPT_SLOW="$EXCEPT_SLOW 51b"
88 fi
89
90 FAIL_ON_ERROR=false
91
92 cleanup() {
93         echo -n "cln.."
94         pgrep ll_sa > /dev/null && { echo "There are ll_sa thread not exit!"; exit 20; }
95         cleanupall ${FORCE} $* || { echo "FAILed to clean up"; exit 20; }
96 }
97 setup() {
98         echo -n "mnt.."
99         load_modules
100         setupall || exit 10
101         echo "done"
102 }
103
104 check_swap_layouts_support()
105 {
106         $LCTL get_param -n llite.*.sbi_flags | grep -q layout ||
107                 { skip "Does not support layout lock."; return 0; }
108         return 1
109 }
110
111 check_and_setup_lustre
112 DIR=${DIR:-$MOUNT}
113 assert_DIR
114
115 MDT0=$($LCTL get_param -n mdc.*.mds_server_uuid |
116         awk '{ gsub(/_UUID/,""); print $1 }' | head -n1)
117 MAXFREE=${MAXFREE:-$((200000 * $OSTCOUNT))}
118
119 [ -f $DIR/d52a/foo ] && chattr -a $DIR/d52a/foo
120 [ -f $DIR/d52b/foo ] && chattr -i $DIR/d52b/foo
121 rm -rf $DIR/[Rdfs][0-9]*
122
123 # $RUNAS_ID may get set incorrectly somewhere else
124 [ $UID -eq 0 -a $RUNAS_ID -eq 0 ] && error "\$RUNAS_ID set to 0, but \$UID is also 0!"
125
126 check_runas_id $RUNAS_ID $RUNAS_GID $RUNAS
127
128 build_test_filter
129
130 if [ "${ONLY}" = "MOUNT" ] ; then
131         echo "Lustre is up, please go on"
132         exit
133 fi
134
135 echo "preparing for tests involving mounts"
136 EXT2_DEV=${EXT2_DEV:-$TMP/SANITY.LOOP}
137 touch $EXT2_DEV
138 mke2fs -j -F $EXT2_DEV 8000 > /dev/null
139 echo # add a newline after mke2fs.
140
141 umask 077
142
143 OLDDEBUG=$(lctl get_param -n debug 2> /dev/null)
144 lctl set_param debug=-1 2> /dev/null || true
145 test_0a() {
146         touch $DIR/$tfile
147         $CHECKSTAT -t file $DIR/$tfile || error "$tfile is not a file"
148         rm $DIR/$tfile
149         $CHECKSTAT -a $DIR/$tfile || error "$tfile was not removed"
150 }
151 run_test 0a "touch; rm ====================="
152
153 test_0b() {
154         chmod 0755 $DIR || error "chmod 0755 $DIR failed"
155         $CHECKSTAT -p 0755 $DIR || error "$DIR permission is not 0755"
156 }
157 run_test 0b "chmod 0755 $DIR ============================="
158
159 test_0c() {
160         $LCTL get_param mdc.*.import | grep "state: FULL" ||
161                 error "import not FULL"
162         $LCTL get_param mdc.*.import | grep "target: $FSNAME-MDT" ||
163                 error "bad target"
164 }
165 run_test 0c "check import proc ============================="
166
167 test_1() {
168         test_mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
169         test_mkdir -p $DIR/$tdir/d2 || error "mkdir $tdir/d2 failed"
170         test_mkdir $DIR/$tdir/d2 && error "we expect EEXIST, but not returned"
171         $CHECKSTAT -t dir $DIR/$tdir/d2 || error "$tdir/d2 is not a dir"
172         rmdir $DIR/$tdir/d2
173         rmdir $DIR/$tdir
174         $CHECKSTAT -a $DIR/$tdir || error "$tdir was not removed"
175 }
176 run_test 1 "mkdir; remkdir; rmdir =============================="
177
178 test_2() {
179         test_mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
180         touch $DIR/$tdir/$tfile || error "touch $tdir/$tfile failed"
181         $CHECKSTAT -t file $DIR/$tdir/$tfile || error "$tdir/$tfile not a file"
182         rm -r $DIR/$tdir
183         $CHECKSTAT -a $DIR/$tdir/$tfile || error "$tdir/$file is not removed"
184 }
185 run_test 2 "mkdir; touch; rmdir; check file ===================="
186
187 test_3() {
188         test_mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
189         $CHECKSTAT -t dir $DIR/$tdir || error "$tdir is not a directory"
190         touch $DIR/$tdir/$tfile
191         $CHECKSTAT -t file $DIR/$tdir/$tfile || error "$tdir/$tfile not a file"
192         rm -r $DIR/$tdir
193         $CHECKSTAT -a $DIR/$tdir || error "$tdir is not removed"
194 }
195 run_test 3 "mkdir; touch; rmdir; check dir ====================="
196
197 # LU-4471 - failed rmdir on remote directories still removes directory on MDT0
198 test_4() {
199         local MDTIDX=1
200
201         test_mkdir $DIR/$tdir ||
202                 error "Create remote directory failed"
203
204         touch $DIR/$tdir/$tfile ||
205                 error "Create file under remote directory failed"
206
207         rmdir $DIR/$tdir &&
208                 error "Expect error removing in-use dir $DIR/$tdir"
209
210         test -d $DIR/$tdir || error "Remote directory disappeared"
211
212         rm -rf $DIR/$tdir || error "remove remote dir error"
213 }
214 run_test 4 "mkdir; touch dir/file; rmdir; checkdir (expect error)"
215
216 test_5() {
217         test_mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
218         test_mkdir $DIR/$tdir/d2 || error "mkdir $tdir/d2 failed"
219         chmod 0707 $DIR/$tdir/d2 || error "chmod 0707 $tdir/d2 failed"
220         $CHECKSTAT -t dir -p 0707 $DIR/$tdir/d2 || error "$tdir/d2 not mode 707"
221         $CHECKSTAT -t dir $DIR/$tdir/d2 || error "$tdir/d2 is not a directory"
222 }
223 run_test 5 "mkdir .../d5 .../d5/d2; chmod .../d5/d2 ============"
224
225 test_6a() {
226         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
227         chmod 0666 $DIR/$tfile || error "chmod 0666 $tfile failed"
228         $CHECKSTAT -t file -p 0666 -u \#$UID $DIR/$tfile ||
229                 error "$tfile does not have perm 0666 or UID $UID"
230         $RUNAS chmod 0444 $DIR/$tfile && error "chmod $tfile worked on UID $UID"
231         $CHECKSTAT -t file -p 0666 -u \#$UID $DIR/$tfile ||
232                 error "$tfile should be 0666 and owned by UID $UID"
233 }
234 run_test 6a "touch f6a; chmod f6a; $RUNAS chmod f6a (should return error) =="
235
236 test_6c() {
237         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID" && return
238         touch $DIR/$tfile
239         chown $RUNAS_ID $DIR/$tfile || error "chown $RUNAS_ID $file failed"
240         $CHECKSTAT -t file -u \#$RUNAS_ID $DIR/$tfile ||
241                 error "$tfile should be owned by UID $RUNAS_ID"
242         $RUNAS chown $UID $DIR/$tfile && error "chown $UID $file succeeded"
243         $CHECKSTAT -t file -u \#$RUNAS_ID $DIR/$tfile ||
244                 error "$tfile should be owned by UID $RUNAS_ID"
245 }
246 run_test 6c "touch f6c; chown f6c; $RUNAS chown f6c (should return error) =="
247
248 test_6e() {
249         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID" && return
250         touch $DIR/$tfile
251         chgrp $RUNAS_ID $DIR/$tfile || error "chgrp $RUNAS_ID $file failed"
252         $CHECKSTAT -t file -u \#$UID -g \#$RUNAS_ID $DIR/$tfile ||
253                 error "$tfile should be owned by GID $UID"
254         $RUNAS chgrp $UID $DIR/$tfile && error "chgrp $UID $file succeeded"
255         $CHECKSTAT -t file -u \#$UID -g \#$RUNAS_ID $DIR/$tfile ||
256                 error "$tfile should be owned by UID $UID and GID $RUNAS_ID"
257 }
258 run_test 6e "touch f6e; chgrp f6e; $RUNAS chgrp f6e (should return error) =="
259
260 test_6g() {
261         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID" && return
262         test_mkdir $DIR/$tdir || error "mkdir $tfile failed"
263         chmod 777 $DIR/$tdir || error "chmod 0777 $tdir failed"
264         $RUNAS mkdir $DIR/$tdir/d || error "mkdir $tdir/d failed"
265         chmod g+s $DIR/$tdir/d || error "chmod g+s $tdir/d failed"
266         test_mkdir $DIR/$tdir/d/subdir || error "mkdir $tdir/d/subdir failed"
267         $CHECKSTAT -g \#$RUNAS_GID $DIR/$tdir/d/subdir ||
268                 error "$tdir/d/subdir should be GID $RUNAS_GID"
269         if [[ $MDSCOUNT -gt 1 ]]; then
270                 # check remote dir sgid inherite
271                 $LFS mkdir -i 0 $DIR/$tdir.local ||
272                         error "mkdir $tdir.local failed"
273                 chmod g+s $DIR/$tdir.local ||
274                         error "chmod $tdir.local failed"
275                 chgrp $RUNAS_GID $DIR/$tdir.local ||
276                         error "chgrp $tdir.local failed"
277                 $LFS mkdir -i 1 $DIR/$tdir.local/$tdir.remote ||
278                         error "mkdir $tdir.remote failed"
279                 $CHECKSTAT -g \#$RUNAS_GID $DIR/$tdir.local/$tdir.remote ||
280                         error "$tdir.remote should be owned by $UID.$RUNAS_ID"
281                 $CHECKSTAT -p 02755 $DIR/$tdir.local/$tdir.remote ||
282                         error "$tdir.remote should be mode 02755"
283         fi
284 }
285 run_test 6g "Is new dir in sgid dir inheriting group?"
286
287 test_6h() { # bug 7331
288         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID" && return
289         touch $DIR/$tfile || error "touch failed"
290         chown $RUNAS_ID:$RUNAS_GID $DIR/$tfile || error "initial chown failed"
291         $RUNAS -G$RUNAS_GID chown $RUNAS_ID:0 $DIR/$tfile &&
292                 error "chown $RUNAS_ID:0 $tfile worked as GID $RUNAS_GID"
293         $CHECKSTAT -t file -u \#$RUNAS_ID -g \#$RUNAS_GID $DIR/$tfile ||
294                 error "$tdir/$tfile should be UID $RUNAS_UID GID $RUNAS_GID"
295 }
296 run_test 6h "$RUNAS chown RUNAS_ID.0 .../f6h (should return error)"
297
298 test_7a() {
299         test_mkdir $DIR/$tdir
300         $MCREATE $DIR/$tdir/$tfile
301         chmod 0666 $DIR/$tdir/$tfile
302         $CHECKSTAT -t file -p 0666 $DIR/$tdir/$tfile ||
303                 error "$tdir/$tfile should be mode 0666"
304 }
305 run_test 7a "mkdir .../d7; mcreate .../d7/f; chmod .../d7/f ===="
306
307 test_7b() {
308         if [ ! -d $DIR/$tdir ]; then
309                 test_mkdir $DIR/$tdir
310         fi
311         $MCREATE $DIR/$tdir/$tfile
312         echo -n foo > $DIR/$tdir/$tfile
313         [ "$(cat $DIR/$tdir/$tfile)" = "foo" ] || error "$tdir/$tfile not 'foo'"
314         $CHECKSTAT -t file -s 3 $DIR/$tdir/$tfile || error "$tfile size not 3"
315 }
316 run_test 7b "mkdir .../d7; mcreate d7/f2; echo foo > d7/f2 ====="
317
318 test_8() {
319         test_mkdir $DIR/$tdir
320         touch $DIR/$tdir/$tfile
321         chmod 0666 $DIR/$tdir/$tfile
322         $CHECKSTAT -t file -p 0666 $DIR/$tdir/$tfile ||
323                 error "$tfile mode not 0666"
324 }
325 run_test 8 "mkdir .../d8; touch .../d8/f; chmod .../d8/f ======="
326
327 test_9() {
328         test_mkdir $DIR/$tdir
329         test_mkdir $DIR/$tdir/d2
330         test_mkdir $DIR/$tdir/d2/d3
331         $CHECKSTAT -t dir $DIR/$tdir/d2/d3 || error "$tdir/d2/d3 not a dir"
332 }
333 run_test 9 "mkdir .../d9 .../d9/d2 .../d9/d2/d3 ================"
334
335 test_10() {
336         test_mkdir $DIR/$tdir
337         test_mkdir $DIR/$tdir/d2
338         touch $DIR/$tdir/d2/$tfile
339         $CHECKSTAT -t file $DIR/$tdir/d2/$tfile ||
340                 error "$tdir/d2/$tfile not a file"
341 }
342 run_test 10 "mkdir .../d10 .../d10/d2; touch .../d10/d2/f ======"
343
344 test_11() {
345         test_mkdir $DIR/$tdir
346         test_mkdir $DIR/$tdir/d2
347         chmod 0666 $DIR/$tdir/d2
348         chmod 0705 $DIR/$tdir/d2
349         $CHECKSTAT -t dir -p 0705 $DIR/$tdir/d2 ||
350                 error "$tdir/d2 mode not 0705"
351 }
352 run_test 11 "mkdir .../d11 d11/d2; chmod .../d11/d2 ============"
353
354 test_12() {
355         test_mkdir $DIR/$tdir
356         touch $DIR/$tdir/$tfile
357         chmod 0666 $DIR/$tdir/$tfile
358         chmod 0654 $DIR/$tdir/$tfile
359         $CHECKSTAT -t file -p 0654 $DIR/$tdir/$tfile ||
360                 error "$tdir/d2 mode not 0654"
361 }
362 run_test 12 "touch .../d12/f; chmod .../d12/f .../d12/f ========"
363
364 test_13() {
365         test_mkdir $DIR/$tdir
366         dd if=/dev/zero of=$DIR/$tdir/$tfile count=10
367         >  $DIR/$tdir/$tfile
368         $CHECKSTAT -t file -s 0 $DIR/$tdir/$tfile ||
369                 error "$tdir/$tfile size not 0 after truncate"
370 }
371 run_test 13 "creat .../d13/f; dd .../d13/f; > .../d13/f ========"
372
373 test_14() {
374         test_mkdir $DIR/$tdir
375         touch $DIR/$tdir/$tfile
376         rm $DIR/$tdir/$tfile
377         $CHECKSTAT -a $DIR/$tdir/$tfile || error "$tdir/$tfile not removed"
378 }
379 run_test 14 "touch .../d14/f; rm .../d14/f; rm .../d14/f ======="
380
381 test_15() {
382         test_mkdir $DIR/$tdir
383         touch $DIR/$tdir/$tfile
384         mv $DIR/$tdir/$tfile $DIR/$tdir/${tfile}_2
385         $CHECKSTAT -t file $DIR/$tdir/${tfile}_2 ||
386                 error "$tdir/${tfile_2} not a file after rename"
387         rm $DIR/$tdir/${tfile}_2 || error "unlink failed after rename"
388 }
389 run_test 15 "touch .../d15/f; mv .../d15/f .../d15/f2 =========="
390
391 test_16() {
392         test_mkdir $DIR/$tdir
393         touch $DIR/$tdir/$tfile
394         rm -rf $DIR/$tdir/$tfile
395         $CHECKSTAT -a $DIR/$tdir/$tfile || error "$tdir/$tfile not removed"
396 }
397 run_test 16 "touch .../d16/f; rm -rf .../d16/f ================="
398
399 test_17a() {
400         test_mkdir -p $DIR/$tdir
401         touch $DIR/$tdir/$tfile
402         ln -s $DIR/$tdir/$tfile $DIR/$tdir/l-exist
403         ls -l $DIR/$tdir
404         $CHECKSTAT -l $DIR/$tdir/$tfile $DIR/$tdir/l-exist ||
405                 error "$tdir/l-exist not a symlink"
406         $CHECKSTAT -f -t f $DIR/$tdir/l-exist ||
407                 error "$tdir/l-exist not referencing a file"
408         rm -f $DIR/$tdir/l-exist
409         $CHECKSTAT -a $DIR/$tdir/l-exist || error "$tdir/l-exist not removed"
410 }
411 run_test 17a "symlinks: create, remove (real) =================="
412
413 test_17b() {
414         test_mkdir -p $DIR/$tdir
415         ln -s no-such-file $DIR/$tdir/l-dangle
416         ls -l $DIR/$tdir
417         $CHECKSTAT -l no-such-file $DIR/$tdir/l-dangle ||
418                 error "$tdir/l-dangle not referencing no-such-file"
419         $CHECKSTAT -fa $DIR/$tdir/l-dangle ||
420                 error "$tdir/l-dangle not referencing non-existent file"
421         rm -f $DIR/$tdir/l-dangle
422         $CHECKSTAT -a $DIR/$tdir/l-dangle || error "$tdir/l-dangle not removed"
423 }
424 run_test 17b "symlinks: create, remove (dangling) =============="
425
426 test_17c() { # bug 3440 - don't save failed open RPC for replay
427         test_mkdir -p $DIR/$tdir
428         ln -s foo $DIR/$tdir/$tfile
429         cat $DIR/$tdir/$tfile && error "opened non-existent symlink" || true
430 }
431 run_test 17c "symlinks: open dangling (should return error) ===="
432
433 test_17d() {
434         test_mkdir -p $DIR/$tdir
435         ln -s foo $DIR/$tdir/$tfile
436         touch $DIR/$tdir/$tfile || error "creating to new symlink"
437 }
438 run_test 17d "symlinks: create dangling ========================"
439
440 test_17e() {
441         test_mkdir -p $DIR/$tdir
442         local foo=$DIR/$tdir/$tfile
443         ln -s $foo $foo || error "create symlink failed"
444         ls -l $foo || error "ls -l failed"
445         ls $foo && error "ls not failed" || true
446 }
447 run_test 17e "symlinks: create recursive symlink (should return error) ===="
448
449 test_17f() {
450         test_mkdir -p $DIR/$tdir
451         ln -s 1234567890/2234567890/3234567890/4234567890 $DIR/$tdir/111
452         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890 $DIR/$tdir/222
453         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890 $DIR/$tdir/333
454         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890/9234567890/a234567890/b234567890 $DIR/$tdir/444
455         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890/9234567890/a234567890/b234567890/c234567890/d234567890/f234567890 $DIR/$tdir/555
456         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890/9234567890/a234567890/b234567890/c234567890/d234567890/f234567890/aaaaaaaaaa/bbbbbbbbbb/cccccccccc/dddddddddd/eeeeeeeeee/ffffffffff/ $DIR/$tdir/666
457         ls -l  $DIR/$tdir
458 }
459 run_test 17f "symlinks: long and very long symlink name ========================"
460
461 # str_repeat(S, N) generate a string that is string S repeated N times
462 str_repeat() {
463         local s=$1
464         local n=$2
465         local ret=''
466         while [ $((n -= 1)) -ge 0 ]; do
467                 ret=$ret$s
468         done
469         echo $ret
470 }
471
472 # Long symlinks and LU-2241
473 test_17g() {
474         test_mkdir -p $DIR/$tdir
475         local TESTS="59 60 61 4094 4095"
476
477         # Fix for inode size boundary in 2.1.4
478         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.1.4) ] &&
479                 TESTS="4094 4095"
480
481         # Patch not applied to 2.2 or 2.3 branches
482         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] &&
483         [ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.3.55) ] &&
484                 TESTS="4094 4095"
485
486         # skip long symlink name for rhel6.5.
487         # rhel6.5 has a limit (PATH_MAX - sizeof(struct filename))
488         grep -q '6.5' /etc/redhat-release &>/dev/null &&
489                 TESTS="59 60 61 4062 4063"
490
491         for i in $TESTS; do
492                 local SYMNAME=$(str_repeat 'x' $i)
493                 ln -s $SYMNAME $DIR/$tdir/f$i || error "failed $i-char symlink"
494                 readlink $DIR/$tdir/f$i || error "failed $i-char readlink"
495         done
496 }
497 run_test 17g "symlinks: really long symlink name and inode boundaries"
498
499 test_17h() { #bug 17378
500         remote_mds_nodsh && skip "remote MDS with nodsh" && return
501         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
502         local mdt_idx
503         test_mkdir -p $DIR/$tdir
504         if [[ $MDSCOUNT -gt 1 ]]; then
505                 mdt_idx=$($LFS getdirstripe -i $DIR/$tdir)
506         else
507                 mdt_idx=0
508         fi
509         $SETSTRIPE -c -1 $DIR/$tdir
510 #define OBD_FAIL_MDS_LOV_PREP_CREATE 0x141
511         do_facet mds$((mdt_idx + 1)) lctl set_param fail_loc=0x80000141
512         touch $DIR/$tdir/$tfile || true
513 }
514 run_test 17h "create objects: lov_free_memmd() doesn't lbug"
515
516 test_17i() { #bug 20018
517         remote_mds_nodsh && skip "remote MDS with nodsh" && return
518         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
519         test_mkdir -c1 $DIR/$tdir
520         local foo=$DIR/$tdir/$tfile
521         local mdt_idx
522         if [[ $MDSCOUNT -gt 1 ]]; then
523                 mdt_idx=$($LFS getdirstripe -i $DIR/$tdir)
524         else
525                 mdt_idx=0
526         fi
527         ln -s $foo $foo || error "create symlink failed"
528 #define OBD_FAIL_MDS_READLINK_EPROTO     0x143
529         do_facet mds$((mdt_idx + 1)) lctl set_param fail_loc=0x80000143
530         ls -l $foo && error "error not detected"
531         return 0
532 }
533 run_test 17i "don't panic on short symlink"
534
535 test_17k() { #bug 22301
536         [[ -z "$(which rsync 2>/dev/null)" ]] &&
537                 skip "no rsync command" && return 0
538         rsync --help | grep -q xattr ||
539                 skip_env "$(rsync --version | head -n1) does not support xattrs"
540         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return 0
541         test_mkdir -p $DIR/$tdir
542         test_mkdir -p $DIR/$tdir.new
543         touch $DIR/$tdir/$tfile
544         ln -s $DIR/$tdir/$tfile $DIR/$tdir/$tfile.lnk
545         rsync -av -X $DIR/$tdir/ $DIR/$tdir.new ||
546                 error "rsync failed with xattrs enabled"
547 }
548 run_test 17k "symlinks: rsync with xattrs enabled ========================="
549
550 test_17l() { # LU-279
551         [[ -z "$(which getfattr 2>/dev/null)" ]] &&
552                 skip "no getfattr command" && return 0
553         test_mkdir -p $DIR/$tdir
554         touch $DIR/$tdir/$tfile
555         ln -s $DIR/$tdir/$tfile $DIR/$tdir/$tfile.lnk
556         for path in "$DIR/$tdir" "$DIR/$tdir/$tfile" "$DIR/$tdir/$tfile.lnk"; do
557                 # -h to not follow symlinks. -m '' to list all the xattrs.
558                 # grep to remove first line: '# file: $path'.
559                 for xattr in `getfattr -hm '' $path 2>/dev/null | grep -v '^#'`;
560                 do
561                         lgetxattr_size_check $path $xattr ||
562                                 error "lgetxattr_size_check $path $xattr failed"
563                 done
564         done
565 }
566 run_test 17l "Ensure lgetxattr's returned xattr size is consistent ========"
567
568 # LU-1540
569 test_17m() {
570         local short_sym="0123456789"
571         local WDIR=$DIR/${tdir}m
572         local i
573
574         remote_mds_nodsh && skip "remote MDS with nodsh" && return
575         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] &&
576         [ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.2.93) ] &&
577                 skip "MDS 2.2.0-2.2.93 do not NUL-terminate symlinks" && return
578
579         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
580                 skip "only for ldiskfs MDT" && return 0
581
582         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
583
584         test_mkdir -p $WDIR
585         long_sym=$short_sym
586         # create a long symlink file
587         for ((i = 0; i < 4; ++i)); do
588                 long_sym=${long_sym}${long_sym}
589         done
590
591         echo "create 512 short and long symlink files under $WDIR"
592         for ((i = 0; i < 256; ++i)); do
593                 ln -sf ${long_sym}"a5a5" $WDIR/long-$i
594                 ln -sf ${short_sym}"a5a5" $WDIR/short-$i
595         done
596
597         echo "erase them"
598         rm -f $WDIR/*
599         sync
600         wait_delete_completed
601
602         echo "recreate the 512 symlink files with a shorter string"
603         for ((i = 0; i < 512; ++i)); do
604                 # rewrite the symlink file with a shorter string
605                 ln -sf ${long_sym} $WDIR/long-$i || error "long_sym failed"
606                 ln -sf ${short_sym} $WDIR/short-$i || error "short_sym failed"
607         done
608
609         local mds_index=$(($($LFS getstripe -M $WDIR) + 1))
610         local devname=$(mdsdevname $mds_index)
611
612         echo "stop and checking mds${mds_index}:"
613         # e2fsck should not return error
614         stop mds${mds_index}
615         run_e2fsck $(facet_active_host mds${mds_index}) $devname -n
616         rc=$?
617
618         start mds${mds_index} $devname $MDS_MOUNT_OPTS || error "start failed"
619         df $MOUNT > /dev/null 2>&1
620         [ $rc -eq 0 ] ||
621                 error "e2fsck detected error for short/long symlink: rc=$rc"
622 }
623 run_test 17m "run e2fsck against MDT which contains short/long symlink"
624
625 check_fs_consistency_17n() {
626         local mdt_index
627         local rc=0
628
629         # create/unlink in 17n only change 2 MDTs(MDT1/MDT2),
630         # so it only check MDT1/MDT2 instead of all of MDTs.
631         for mdt_index in 1 2; do
632                 local devname=$(mdsdevname $mdt_index)
633                 # e2fsck should not return error
634                 stop mds${mdt_index}
635                 run_e2fsck $(facet_active_host mds$mdt_index) $devname -n ||
636                         rc=$((rc + $?))
637
638                 start mds${mdt_index} $devname $MDS_MOUNT_OPTS ||
639                         error "mount mds$mdt_index failed"
640                 df $MOUNT > /dev/null 2>&1
641         done
642         return $rc
643 }
644
645 test_17n() {
646         local i
647
648         remote_mds_nodsh && skip "remote MDS with nodsh" && return
649         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] &&
650         [ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.2.93) ] &&
651                 skip "MDS 2.2.0-2.2.93 do not NUL-terminate symlinks" && return
652
653         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
654                 skip "only for ldiskfs MDT" && return 0
655
656         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 2 MDTs" && return
657
658         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
659
660         test_mkdir $DIR/$tdir
661         for ((i=0; i<10; i++)); do
662                 $LFS mkdir -i1 -c2 $DIR/$tdir/remote_dir_${i} ||
663                         error "create remote dir error $i"
664                 createmany -o $DIR/$tdir/remote_dir_${i}/f 10 ||
665                         error "create files under remote dir failed $i"
666         done
667
668         check_fs_consistency_17n ||
669                 error "e2fsck report error after create files under remote dir"
670
671         for ((i = 0; i < 10; i++)); do
672                 rm -rf $DIR/$tdir/remote_dir_${i} ||
673                         error "destroy remote dir error $i"
674         done
675
676         check_fs_consistency_17n ||
677                 error "e2fsck report error after unlink files under remote dir"
678
679         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.50) ] &&
680                 skip "lustre < 2.4.50 does not support migrate mv " && return
681
682         for ((i = 0; i < 10; i++)); do
683                 mkdir -p $DIR/$tdir/remote_dir_${i}
684                 createmany -o $DIR/$tdir/remote_dir_${i}/f 10 ||
685                         error "create files under remote dir failed $i"
686                 $LFS migrate --mdt-index 1 $DIR/$tdir/remote_dir_${i} ||
687                         error "migrate remote dir error $i"
688         done
689         check_fs_consistency_17n || error "e2fsck report error after migration"
690
691         for ((i = 0; i < 10; i++)); do
692                 rm -rf $DIR/$tdir/remote_dir_${i} ||
693                         error "destroy remote dir error $i"
694         done
695
696         check_fs_consistency_17n || error "e2fsck report error after unlink"
697 }
698 run_test 17n "run e2fsck against master/slave MDT which contains remote dir"
699
700 test_17o() {
701         remote_mds_nodsh && skip "remote MDS with nodsh" && return
702         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.64) ] &&
703                 skip "Need MDS version at least 2.3.64" && return
704
705         local WDIR=$DIR/${tdir}o
706         local mdt_index
707         local rc=0
708
709         test_mkdir -p $WDIR
710         touch $WDIR/$tfile
711         mdt_index=$($LFS getstripe -M $WDIR/$tfile)
712         mdt_index=$((mdt_index+1))
713
714         cancel_lru_locks mdc
715         #fail mds will wait the failover finish then set
716         #following fail_loc to avoid interfer the recovery process.
717         fail mds${mdt_index}
718
719         #define OBD_FAIL_OSD_LMA_INCOMPAT 0x194
720         do_facet mds${mdt_index} lctl set_param fail_loc=0x194
721         ls -l $WDIR/$tfile && rc=1
722         do_facet mds${mdt_index} lctl set_param fail_loc=0
723         [[ $rc -ne 0 ]] && error "stat file should fail"
724         true
725 }
726 run_test 17o "stat file with incompat LMA feature"
727
728 test_18() {
729         touch $DIR/$tfile || error "Failed to touch $DIR/$tfile: $?"
730         ls $DIR || error "Failed to ls $DIR: $?"
731 }
732 run_test 18 "touch .../f ; ls ... =============================="
733
734 test_19a() {
735         touch $DIR/$tfile
736         ls -l $DIR
737         rm $DIR/$tfile
738         $CHECKSTAT -a $DIR/$tfile || error "$tfile was not removed"
739 }
740 run_test 19a "touch .../f19 ; ls -l ... ; rm .../f19 ==========="
741
742 test_19b() {
743         ls -l $DIR/$tfile && error "ls -l $tfile failed"|| true
744 }
745 run_test 19b "ls -l .../f19 (should return error) =============="
746
747 test_19c() {
748         [ $RUNAS_ID -eq $UID ] &&
749                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
750         $RUNAS touch $DIR/$tfile && error "create non-root file failed" || true
751 }
752 run_test 19c "$RUNAS touch .../f19 (should return error) =="
753
754 test_19d() {
755         cat $DIR/f19 && error || true
756 }
757 run_test 19d "cat .../f19 (should return error) =============="
758
759 test_20() {
760         touch $DIR/$tfile
761         rm $DIR/$tfile
762         log "1 done"
763         touch $DIR/$tfile
764         rm $DIR/$tfile
765         log "2 done"
766         touch $DIR/$tfile
767         rm $DIR/$tfile
768         log "3 done"
769         $CHECKSTAT -a $DIR/$tfile || error "$tfile was not removed"
770 }
771 run_test 20 "touch .../f ; ls -l ... ==========================="
772
773 test_21() {
774         test_mkdir -p $DIR/$tdir
775         [ -f $DIR/$tdir/dangle ] && rm -f $DIR/$tdir/dangle
776         ln -s dangle $DIR/$tdir/link
777         echo foo >> $DIR/$tdir/link
778         cat $DIR/$tdir/dangle
779         $CHECKSTAT -t link $DIR/$tdir/link || error "$tdir/link not a link"
780         $CHECKSTAT -f -t file $DIR/$tdir/link ||
781                 error "$tdir/link not linked to a file"
782 }
783 run_test 21 "write to dangling link ============================"
784
785 test_22() {
786         WDIR=$DIR/$tdir
787         test_mkdir -p $DIR/$tdir
788         chown $RUNAS_ID:$RUNAS_GID $WDIR
789         (cd $WDIR || error "cd $WDIR failed";
790         $RUNAS tar cf - /etc/hosts /etc/sysconfig/network | \
791         $RUNAS tar xf -)
792         ls -lR $WDIR/etc || error "ls -lR $WDIR/etc failed"
793         $CHECKSTAT -t dir $WDIR/etc || error "checkstat -t dir failed"
794         $CHECKSTAT -u \#$RUNAS_ID -g \#$RUNAS_GID $WDIR/etc || error "checkstat -u failed"
795 }
796 run_test 22 "unpack tar archive as non-root user ==============="
797
798 # was test_23
799 test_23a() {
800         test_mkdir -p $DIR/$tdir
801         local file=$DIR/$tdir/$tfile
802
803         openfile -f O_CREAT:O_EXCL $file || error "$file create failed"
804         openfile -f O_CREAT:O_EXCL $file &&
805                 error "$file recreate succeeded" || true
806 }
807 run_test 23a "O_CREAT|O_EXCL in subdir =========================="
808
809 test_23b() { # bug 18988
810         test_mkdir -p $DIR/$tdir
811         local file=$DIR/$tdir/$tfile
812
813         rm -f $file
814         echo foo > $file || error "write filed"
815         echo bar >> $file || error "append filed"
816         $CHECKSTAT -s 8 $file || error "wrong size"
817         rm $file
818 }
819 run_test 23b "O_APPEND check =========================="
820
821 # rename sanity
822 test_24a() {
823         echo '-- same directory rename'
824         test_mkdir $DIR/$tdir
825         touch $DIR/$tdir/$tfile.1
826         mv $DIR/$tdir/$tfile.1 $DIR/$tdir/$tfile.2
827         $CHECKSTAT -t file $DIR/$tdir/$tfile.2 || error "$tfile.2 not a file"
828 }
829 run_test 24a "rename file to non-existent target"
830
831 test_24b() {
832         test_mkdir $DIR/$tdir
833         touch $DIR/$tdir/$tfile.{1,2}
834         mv $DIR/$tdir/$tfile.1 $DIR/$tdir/$tfile.2
835         $CHECKSTAT -a $DIR/$tdir/$tfile.1 || error "$tfile.1 exists"
836         $CHECKSTAT -t file $DIR/$tdir/$tfile.2 || error "$tfile.2 not a file"
837 }
838 run_test 24b "rename file to existing target"
839
840 test_24c() {
841         test_mkdir $DIR/$tdir
842         test_mkdir $DIR/$tdir/d$testnum.1
843         mv $DIR/$tdir/d$testnum.1 $DIR/$tdir/d$testnum.2
844         $CHECKSTAT -a $DIR/$tdir/d$testnum.1 || error "d$testnum.1 exists"
845         $CHECKSTAT -t dir $DIR/$tdir/d$testnum.2 || error "d$testnum.2 not dir"
846 }
847 run_test 24c "rename directory to non-existent target"
848
849 test_24d() {
850         test_mkdir -c1 $DIR/$tdir
851         test_mkdir -c1 $DIR/$tdir/d$testnum.1
852         test_mkdir -c1 $DIR/$tdir/d$testnum.2
853         mrename $DIR/$tdir/d$testnum.1 $DIR/$tdir/d$testnum.2
854         $CHECKSTAT -a $DIR/$tdir/d$testnum.1 || error "d$testnum.1 exists"
855         $CHECKSTAT -t dir $DIR/$tdir/d$testnum.2 || error "d$testnum.2 not dir"
856 }
857 run_test 24d "rename directory to existing target"
858
859 test_24e() {
860         echo '-- cross directory renames --'
861         test_mkdir $DIR/R5a
862         test_mkdir $DIR/R5b
863         touch $DIR/R5a/f
864         mv $DIR/R5a/f $DIR/R5b/g
865         $CHECKSTAT -a $DIR/R5a/f || error
866         $CHECKSTAT -t file $DIR/R5b/g || error
867 }
868 run_test 24e "touch .../R5a/f; rename .../R5a/f .../R5b/g ======"
869
870 test_24f() {
871         test_mkdir $DIR/R6a
872         test_mkdir $DIR/R6b
873         touch $DIR/R6a/f $DIR/R6b/g
874         mv $DIR/R6a/f $DIR/R6b/g
875         $CHECKSTAT -a $DIR/R6a/f || error
876         $CHECKSTAT -t file $DIR/R6b/g || error
877 }
878 run_test 24f "touch .../R6a/f R6b/g; mv .../R6a/f .../R6b/g ===="
879
880 test_24g() {
881         test_mkdir $DIR/R7a
882         test_mkdir $DIR/R7b
883         test_mkdir $DIR/R7a/d
884         mv $DIR/R7a/d $DIR/R7b/e
885         $CHECKSTAT -a $DIR/R7a/d || error
886         $CHECKSTAT -t dir $DIR/R7b/e || error
887 }
888 run_test 24g "mkdir .../R7{a,b}/d; mv .../R7a/d .../R7b/e ======"
889
890 test_24h() {
891         test_mkdir -c1 $DIR/R8a
892         test_mkdir -c1 $DIR/R8b
893         test_mkdir -c1 $DIR/R8a/d
894         test_mkdir -c1 $DIR/R8b/e
895         mrename $DIR/R8a/d $DIR/R8b/e
896         $CHECKSTAT -a $DIR/R8a/d || error
897         $CHECKSTAT -t dir $DIR/R8b/e || error
898 }
899 run_test 24h "mkdir .../R8{a,b}/{d,e}; rename .../R8a/d .../R8b/e"
900
901 test_24i() {
902         echo "-- rename error cases"
903         test_mkdir $DIR/R9
904         test_mkdir $DIR/R9/a
905         touch $DIR/R9/f
906         mrename $DIR/R9/f $DIR/R9/a
907         $CHECKSTAT -t file $DIR/R9/f || error
908         $CHECKSTAT -t dir  $DIR/R9/a || error
909         $CHECKSTAT -a $DIR/R9/a/f || error
910 }
911 run_test 24i "rename file to dir error: touch f ; mkdir a ; rename f a"
912
913 test_24j() {
914         test_mkdir $DIR/R10
915         mrename $DIR/R10/f $DIR/R10/g
916         $CHECKSTAT -t dir $DIR/R10 || error
917         $CHECKSTAT -a $DIR/R10/f || error
918         $CHECKSTAT -a $DIR/R10/g || error
919 }
920 run_test 24j "source does not exist ============================"
921
922 test_24k() {
923         test_mkdir $DIR/R11a
924         test_mkdir $DIR/R11a/d
925         touch $DIR/R11a/f
926         mv $DIR/R11a/f $DIR/R11a/d
927         $CHECKSTAT -a $DIR/R11a/f || error
928         $CHECKSTAT -t file $DIR/R11a/d/f || error
929 }
930 run_test 24k "touch .../R11a/f; mv .../R11a/f .../R11a/d ======="
931
932 # bug 2429 - rename foo foo foo creates invalid file
933 test_24l() {
934         f="$DIR/f24l"
935         $MULTIOP $f OcNs || error
936 }
937 run_test 24l "Renaming a file to itself ========================"
938
939 test_24m() {
940         f="$DIR/f24m"
941         $MULTIOP $f OcLN ${f}2 ${f}2 || error "link ${f}2 ${f}2 failed"
942         # on ext3 this does not remove either the source or target files
943         # though the "expected" operation would be to remove the source
944         $CHECKSTAT -t file ${f} || error "${f} missing"
945         $CHECKSTAT -t file ${f}2 || error "${f}2 missing"
946 }
947 run_test 24m "Renaming a file to a hard link to itself ========="
948
949 test_24n() {
950     f="$DIR/f24n"
951     # this stats the old file after it was renamed, so it should fail
952     touch ${f}
953     $CHECKSTAT ${f}
954     mv ${f} ${f}.rename
955     $CHECKSTAT ${f}.rename
956     $CHECKSTAT -a ${f}
957 }
958 run_test 24n "Statting the old file after renaming (Posix rename 2)"
959
960 test_24o() {
961         test_mkdir -p $DIR/d24o
962         rename_many -s random -v -n 10 $DIR/d24o
963 }
964 run_test 24o "rename of files during htree split ==============="
965
966 test_24p() {
967         test_mkdir $DIR/R12a
968         test_mkdir $DIR/R12b
969         DIRINO=`ls -lid $DIR/R12a | awk '{ print $1 }'`
970         mrename $DIR/R12a $DIR/R12b
971         $CHECKSTAT -a $DIR/R12a || error
972         $CHECKSTAT -t dir $DIR/R12b || error
973         DIRINO2=`ls -lid $DIR/R12b | awk '{ print $1 }'`
974         [ "$DIRINO" = "$DIRINO2" ] || error "R12a $DIRINO != R12b $DIRINO2"
975 }
976 run_test 24p "mkdir .../R12{a,b}; rename .../R12a .../R12b"
977
978 cleanup_multiop_pause() {
979         trap 0
980         kill -USR1 $MULTIPID
981 }
982
983 test_24q() {
984         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
985         test_mkdir $DIR/R13a
986         test_mkdir $DIR/R13b
987         local DIRINO=$(ls -lid $DIR/R13a | awk '{ print $1 }')
988         multiop_bg_pause $DIR/R13b D_c || error "multiop failed to start"
989         MULTIPID=$!
990
991         trap cleanup_multiop_pause EXIT
992         mrename $DIR/R13a $DIR/R13b
993         $CHECKSTAT -a $DIR/R13a || error "R13a still exists"
994         $CHECKSTAT -t dir $DIR/R13b || error "R13b does not exist"
995         local DIRINO2=$(ls -lid $DIR/R13b | awk '{ print $1 }')
996         [ "$DIRINO" = "$DIRINO2" ] || error "R13a $DIRINO != R13b $DIRINO2"
997         cleanup_multiop_pause
998         wait $MULTIPID || error "multiop close failed"
999 }
1000 run_test 24q "mkdir .../R13{a,b}; open R13b rename R13a R13b ==="
1001
1002 test_24r() { #bug 3789
1003         test_mkdir $DIR/R14a
1004         test_mkdir $DIR/R14a/b
1005         mrename $DIR/R14a $DIR/R14a/b && error "rename to subdir worked!"
1006         $CHECKSTAT -t dir $DIR/R14a || error "$DIR/R14a missing"
1007         $CHECKSTAT -t dir $DIR/R14a/b || error "$DIR/R14a/b missing"
1008 }
1009 run_test 24r "mkdir .../R14a/b; rename .../R14a .../R14a/b ====="
1010
1011 test_24s() {
1012         test_mkdir $DIR/R15a
1013         test_mkdir $DIR/R15a/b
1014         test_mkdir $DIR/R15a/b/c
1015         mrename $DIR/R15a $DIR/R15a/b/c && error "rename to sub-subdir worked!"
1016         $CHECKSTAT -t dir $DIR/R15a || error "$DIR/R15a missing"
1017         $CHECKSTAT -t dir $DIR/R15a/b/c || error "$DIR/R15a/b/c missing"
1018 }
1019 run_test 24s "mkdir .../R15a/b/c; rename .../R15a .../R15a/b/c ="
1020 test_24t() {
1021         test_mkdir $DIR/R16a
1022         test_mkdir $DIR/R16a/b
1023         test_mkdir $DIR/R16a/b/c
1024         mrename $DIR/R16a/b/c $DIR/R16a && error "rename to sub-subdir worked!"
1025         $CHECKSTAT -t dir $DIR/R16a || error "$DIR/R16a missing"
1026         $CHECKSTAT -t dir $DIR/R16a/b/c || error "$DIR/R16a/b/c missing"
1027 }
1028 run_test 24t "mkdir .../R16a/b/c; rename .../R16a/b/c .../R16a ="
1029
1030 test_24u() { # bug12192
1031         $MULTIOP $DIR/$tfile C2w$((2048 * 1024))c || error
1032         $CHECKSTAT -s $((2048 * 1024)) $DIR/$tfile || error "wrong file size"
1033 }
1034 run_test 24u "create stripe file"
1035
1036 page_size() {
1037         local size
1038         size=$(getconf PAGE_SIZE 2>/dev/null)
1039         echo -n ${size:-4096}
1040 }
1041
1042 simple_cleanup_common() {
1043         local rc=0
1044         trap 0
1045         [ -z "$DIR" -o -z "$tdir" ] && return 0
1046
1047         local start=$SECONDS
1048         rm -rf $DIR/$tdir
1049         rc=$?
1050         wait_delete_completed
1051         echo "cleanup time $((SECONDS - start))"
1052         return $rc
1053 }
1054
1055 max_pages_per_rpc() {
1056         local mdtname="$(printf "MDT%04x" ${1:-0})"
1057         $LCTL get_param -n mdc.*$mdtname*.max_pages_per_rpc
1058 }
1059
1060 test_24v() {
1061         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1062         local nrfiles=${COUNT:-100000}
1063         # Performance issue on ZFS see LU-4072 (c.f. LU-2887)
1064         [ $(facet_fstype $SINGLEMDS) = "zfs" ] && nrfiles=${COUNT:-10000}
1065
1066         local fname="$DIR/$tdir/$tfile"
1067         test_mkdir "$(dirname $fname)"
1068         # assume MDT0000 has the fewest inodes
1069         local stripes=$($LFS getdirstripe -c $(dirname $fname))
1070         local free_inodes=$(($(mdt_free_inodes 0) * stripes))
1071         [[ $free_inodes -lt $nrfiles ]] && nrfiles=$free_inodes
1072
1073         trap simple_cleanup_common EXIT
1074
1075         createmany -m "$fname" $nrfiles
1076
1077         cancel_lru_locks mdc
1078         lctl set_param mdc.*.stats clear
1079
1080         # was previously test_24D: LU-6101
1081         # readdir() returns correct number of entries after cursor reload
1082         local num_ls=$(ls $DIR/$tdir | wc -l)
1083         local num_uniq=$(ls $DIR/$tdir | sort -u | wc -l)
1084         local num_all=$(ls -a $DIR/$tdir | wc -l)
1085         if [ $num_ls -ne $nrfiles -o $num_uniq -ne $nrfiles -o \
1086              $num_all -ne $((nrfiles + 2)) ]; then
1087                 error "Expected $nrfiles files, got $num_ls " \
1088                         "($num_uniq unique $num_all .&..)"
1089         fi
1090         # LU-5 large readdir
1091         # dirent_size = 32 bytes for sizeof(struct lu_dirent) +
1092         #               N bytes for name (len($nrfiles) rounded to 8 bytes) +
1093         #               8 bytes for luda_type (4 bytes rounded to 8 bytes)
1094         # take into account of overhead in lu_dirpage header and end mark in
1095         # each page, plus one in rpc_num calculation.
1096         local dirent_size=$((32 + (${#tfile} | 7) + 1 + 8))
1097         local page_entries=$((($(page_size) - 24) / dirent_size))
1098         local mdt_idx=$($LFS getdirstripe -i $(dirname $fname))
1099         local rpc_pages=$(max_pages_per_rpc $mdt_idx)
1100         local rpc_max=$((nrfiles / (page_entries * rpc_pages) + stripes))
1101         local mds_readpage=$(calc_stats mdc.*.stats mds_readpage)
1102         echo "readpages: $mds_readpage rpc_max: $rpc_max"
1103         (( $mds_readpage < $rpc_max - 2 || $mds_readpage > $rpc_max + 1)) &&
1104                 error "large readdir doesn't take effect: " \
1105                       "$mds_readpage should be about $rpc_max"
1106
1107         simple_cleanup_common
1108 }
1109 run_test 24v "list large directory (test hash collision, b=17560)"
1110
1111 test_24w() { # bug21506
1112         SZ1=234852
1113         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=4096 || return 1
1114         dd if=/dev/zero bs=$SZ1 count=1 >> $DIR/$tfile || return 2
1115         dd if=$DIR/$tfile of=$DIR/${tfile}_left bs=1M skip=4097 || return 3
1116         SZ2=`ls -l $DIR/${tfile}_left | awk '{print $5}'`
1117         [[ "$SZ1" -eq "$SZ2" ]] ||
1118                 error "Error reading at the end of the file $tfile"
1119 }
1120 run_test 24w "Reading a file larger than 4Gb"
1121
1122 test_24x() {
1123         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 2 MDTs" && return
1124
1125         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.56) ]] &&
1126                 skip "Need MDS version at least 2.7.56" && return
1127
1128         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1129         local MDTIDX=1
1130         local remote_dir=$DIR/$tdir/remote_dir
1131
1132         test_mkdir -p $DIR/$tdir
1133         $LFS mkdir -i $MDTIDX $remote_dir ||
1134                 error "create remote directory failed"
1135
1136         test_mkdir -p $DIR/$tdir/src_dir
1137         touch $DIR/$tdir/src_file
1138         test_mkdir -p $remote_dir/tgt_dir
1139         touch $remote_dir/tgt_file
1140
1141         mrename $DIR/$tdir/src_dir $remote_dir/tgt_dir ||
1142                 error "rename dir cross MDT failed!"
1143
1144         mrename $DIR/$tdir/src_file $remote_dir/tgt_file ||
1145                 error "rename file cross MDT failed!"
1146
1147         touch $DIR/$tdir/ln_file
1148         ln $DIR/$tdir/ln_file $remote_dir/ln_name ||
1149                 error "ln file cross MDT failed"
1150
1151         rm -rf $DIR/$tdir || error "Can not delete directories"
1152 }
1153 run_test 24x "cross MDT rename/link"
1154
1155 test_24y() {
1156         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 2 MDTs" && return
1157         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1158         local MDTIDX=1
1159         local remote_dir=$DIR/$tdir/remote_dir
1160
1161         test_mkdir -p $DIR/$tdir
1162         $LFS mkdir -i $MDTIDX $remote_dir ||
1163                    error "create remote directory failed"
1164
1165         test_mkdir -p $remote_dir/src_dir
1166         touch $remote_dir/src_file
1167         test_mkdir -p $remote_dir/tgt_dir
1168         touch $remote_dir/tgt_file
1169
1170         mrename $remote_dir/src_dir $remote_dir/tgt_dir ||
1171                 error "rename subdir in the same remote dir failed!"
1172
1173         mrename $remote_dir/src_file $remote_dir/tgt_file ||
1174                 error "rename files in the same remote dir failed!"
1175
1176         ln $remote_dir/tgt_file $remote_dir/tgt_file1 ||
1177                 error "link files in the same remote dir failed!"
1178
1179         rm -rf $DIR/$tdir || error "Can not delete directories"
1180 }
1181 run_test 24y "rename/link on the same dir should succeed"
1182
1183 test_24A() { # LU-3182
1184         local NFILES=5000
1185
1186         rm -rf $DIR/$tdir
1187         test_mkdir -p $DIR/$tdir
1188         trap simple_cleanup_common EXIT
1189         createmany -m $DIR/$tdir/$tfile $NFILES
1190         local t=$(ls $DIR/$tdir | wc -l)
1191         local u=$(ls $DIR/$tdir | sort -u | wc -l)
1192         local v=$(ls -ai $DIR/$tdir | sort -u | wc -l)
1193         if [ $t -ne $NFILES -o $u -ne $NFILES -o $v -ne $((NFILES + 2)) ] ; then
1194                 error "Expected $NFILES files, got $t ($u unique $v .&..)"
1195         fi
1196
1197         simple_cleanup_common || error "Can not delete directories"
1198 }
1199 run_test 24A "readdir() returns correct number of entries."
1200
1201 test_24B() { # LU-4805
1202         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
1203         local count
1204
1205         test_mkdir $DIR/$tdir
1206         $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/striped_dir ||
1207                 error "create striped dir failed"
1208
1209         count=$(ls -ai $DIR/$tdir/striped_dir | wc -l)
1210         [ $count -eq 2 ] || error "Expected 2, got $count"
1211
1212         touch $DIR/$tdir/striped_dir/a
1213
1214         count=$(ls -ai $DIR/$tdir/striped_dir | wc -l)
1215         [ $count -eq 3 ] || error "Expected 3, got $count"
1216
1217         touch $DIR/$tdir/striped_dir/.f
1218
1219         count=$(ls -ai $DIR/$tdir/striped_dir | wc -l)
1220         [ $count -eq 4 ] || error "Expected 4, got $count"
1221
1222         rm -rf $DIR/$tdir || error "Can not delete directories"
1223 }
1224 run_test 24B "readdir for striped dir return correct number of entries"
1225
1226 test_24C() {
1227         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
1228
1229         mkdir $DIR/$tdir
1230         mkdir $DIR/$tdir/d0
1231         mkdir $DIR/$tdir/d1
1232
1233         $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/d0/striped_dir ||
1234                 error "create striped dir failed"
1235
1236         cd $DIR/$tdir/d0/striped_dir
1237
1238         local d0_ino=$(ls -i -l -a $DIR/$tdir | grep "d0" | awk '{print $1}')
1239         local d1_ino=$(ls -i -l -a $DIR/$tdir | grep "d1" | awk '{print $1}')
1240         local parent_ino=$(ls -i -l -a | grep "\.\." | awk '{print $1}')
1241
1242         [ "$d0_ino" = "$parent_ino" ] ||
1243                 error ".. wrong, expect $d0_ino, get $parent_ino"
1244
1245         mv $DIR/$tdir/d0/striped_dir $DIR/$tdir/d1/ ||
1246                 error "mv striped dir failed"
1247
1248         parent_ino=$(ls -i -l -a | grep "\.\." | awk '{print $1}')
1249
1250         [ "$d1_ino" = "$parent_ino" ] ||
1251                 error ".. wrong after mv, expect $d1_ino, get $parent_ino"
1252 }
1253 run_test 24C "check .. in striped dir"
1254
1255 test_24E() {
1256         [[ $MDSCOUNT -lt 4 ]] && skip "needs >= 4 MDTs" && return
1257         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1258
1259         mkdir -p $DIR/$tdir
1260         mkdir $DIR/$tdir/src_dir
1261         $LFS mkdir -i 1 $DIR/$tdir/src_dir/src_child ||
1262                 error "create remote source failed"
1263
1264         touch $DIR/$tdir/src_dir/src_child/a
1265
1266         $LFS mkdir -i 2 $DIR/$tdir/tgt_dir ||
1267                 error "create remote target dir failed"
1268
1269         $LFS mkdir -i 3 $DIR/$tdir/tgt_dir/tgt_child ||
1270                 error "create remote target child failed"
1271
1272         mrename $DIR/$tdir/src_dir/src_child $DIR/$tdir/tgt_dir/tgt_child ||
1273                 error "rename dir cross MDT failed!"
1274
1275         find $DIR/$tdir
1276
1277         $CHECKSTAT -t dir $DIR/$tdir/src_dir/src_child &&
1278                 error "src_child still exists after rename"
1279
1280         $CHECKSTAT -t file $DIR/$tdir/tgt_dir/tgt_child/a ||
1281                 error "missing file(a) after rename"
1282
1283         rm -rf $DIR/$tdir || error "Can not delete directories"
1284 }
1285 run_test 24E "cross MDT rename/link"
1286
1287 test_25a() {
1288         echo '== symlink sanity ============================================='
1289
1290         test_mkdir $DIR/d25
1291         ln -s d25 $DIR/s25
1292         touch $DIR/s25/foo || error
1293 }
1294 run_test 25a "create file in symlinked directory ==============="
1295
1296 test_25b() {
1297         [ ! -d $DIR/d25 ] && test_25a
1298         $CHECKSTAT -t file $DIR/s25/foo || error
1299 }
1300 run_test 25b "lookup file in symlinked directory ==============="
1301
1302 test_26a() {
1303         test_mkdir $DIR/d26
1304         test_mkdir $DIR/d26/d26-2
1305         ln -s d26/d26-2 $DIR/s26
1306         touch $DIR/s26/foo || error
1307 }
1308 run_test 26a "multiple component symlink ======================="
1309
1310 test_26b() {
1311         test_mkdir -p $DIR/d26b/d26-2
1312         ln -s d26b/d26-2/foo $DIR/s26-2
1313         touch $DIR/s26-2 || error
1314 }
1315 run_test 26b "multiple component symlink at end of lookup ======"
1316
1317 test_26c() {
1318         test_mkdir $DIR/d26.2
1319         touch $DIR/d26.2/foo
1320         ln -s d26.2 $DIR/s26.2-1
1321         ln -s s26.2-1 $DIR/s26.2-2
1322         ln -s s26.2-2 $DIR/s26.2-3
1323         chmod 0666 $DIR/s26.2-3/foo
1324 }
1325 run_test 26c "chain of symlinks ================================"
1326
1327 # recursive symlinks (bug 439)
1328 test_26d() {
1329         ln -s d26-3/foo $DIR/d26-3
1330 }
1331 run_test 26d "create multiple component recursive symlink ======"
1332
1333 test_26e() {
1334         [ ! -h $DIR/d26-3 ] && test_26d
1335         rm $DIR/d26-3
1336 }
1337 run_test 26e "unlink multiple component recursive symlink ======"
1338
1339 # recursive symlinks (bug 7022)
1340 test_26f() {
1341         test_mkdir -p $DIR/$tdir
1342         test_mkdir $DIR/$tdir/$tfile   || error "mkdir $DIR/$tdir/$tfile failed"
1343         cd $DIR/$tdir/$tfile           || error "cd $DIR/$tdir/$tfile failed"
1344         test_mkdir -p lndir/bar1      || error "mkdir lndir/bar1 failed"
1345         test_mkdir $DIR/$tdir/$tfile/$tfile   || error "mkdir $tfile failed"
1346         cd $tfile                || error "cd $tfile failed"
1347         ln -s .. dotdot          || error "ln dotdot failed"
1348         ln -s dotdot/lndir lndir || error "ln lndir failed"
1349         cd $DIR/$tdir                 || error "cd $DIR/$tdir failed"
1350         output=`ls $tfile/$tfile/lndir/bar1`
1351         [ "$output" = bar1 ] && error "unexpected output"
1352         rm -r $tfile             || error "rm $tfile failed"
1353         $CHECKSTAT -a $DIR/$tfile || error "$tfile not gone"
1354 }
1355 run_test 26f "rm -r of a directory which has recursive symlink ="
1356
1357 test_27a() {
1358         echo '== stripe sanity =============================================='
1359         test_mkdir -p $DIR/d27 || error "mkdir failed"
1360         $GETSTRIPE $DIR/d27
1361         $SETSTRIPE -c 1 $DIR/d27/f0 || error "setstripe failed"
1362         $CHECKSTAT -t file $DIR/d27/f0 || error "checkstat failed"
1363         log "== test_27a: write to one stripe file ========================="
1364         cp /etc/hosts $DIR/d27/f0 || error
1365 }
1366 run_test 27a "one stripe file =================================="
1367
1368 test_27b() {
1369         [[ $OSTCOUNT -lt 2 ]] && skip_env "skipping 2-stripe test" && return
1370         test_mkdir -p $DIR/d27
1371         $SETSTRIPE -c 2 $DIR/d27/f01 || error "setstripe failed"
1372         $GETSTRIPE -c $DIR/d27/f01
1373         [ $($GETSTRIPE -c $DIR/d27/f01) -eq 2 ] ||
1374                 error "two-stripe file doesn't have two stripes"
1375
1376         dd if=/dev/zero of=$DIR/d27/f01 bs=4k count=4 || error "dd failed"
1377 }
1378 run_test 27b "create and write to two stripe file"
1379
1380 test_27d() {
1381         test_mkdir -p $DIR/d27
1382         $SETSTRIPE -c 0 -i -1 -S 0 $DIR/d27/fdef || error "setstripe failed"
1383         $CHECKSTAT -t file $DIR/d27/fdef || error "checkstat failed"
1384         dd if=/dev/zero of=$DIR/d27/fdef bs=4k count=4 || error
1385 }
1386 run_test 27d "create file with default settings ================"
1387
1388 test_27e() {
1389         # LU-5839 adds check for existed layout before setting it
1390         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.56) ]] &&
1391                 skip "Need MDS version at least 2.7.56" && return
1392         test_mkdir -p $DIR/d27
1393         $SETSTRIPE -c 2 $DIR/d27/f12 || error "setstripe failed"
1394         $SETSTRIPE -c 2 $DIR/d27/f12 && error "setstripe succeeded twice"
1395         $CHECKSTAT -t file $DIR/d27/f12 || error "checkstat failed"
1396 }
1397 run_test 27e "setstripe existing file (should return error) ======"
1398
1399 test_27f() {
1400         test_mkdir $DIR/$tdir
1401         $SETSTRIPE -S 100 -i 0 -c 1 $DIR/$tdir/$tfile &&
1402                 error "$SETSTRIPE $DIR/$tdir/$tfile failed"
1403         $CHECKSTAT -t file $DIR/$tdir/$tfile &&
1404                 error "$CHECKSTAT -t file $DIR/$tdir/$tfile should fail"
1405         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=4k count=4 || error "dd failed"
1406         $GETSTRIPE $DIR/$tdir/$tfile || error "$GETSTRIPE failed"
1407 }
1408 run_test 27f "setstripe with bad stripe size (should return error)"
1409
1410 test_27g() {
1411         test_mkdir -p $DIR/d27
1412         $MCREATE $DIR/d27/fnone || error "mcreate failed"
1413         $GETSTRIPE $DIR/d27/fnone 2>&1 | grep "no stripe info" ||
1414                 error "$DIR/d27/fnone has object"
1415 }
1416 run_test 27g "$GETSTRIPE with no objects"
1417
1418 test_27i() {
1419         test_mkdir $DIR/$tdir
1420         touch $DIR/$tdir/$tfile || error "touch failed"
1421         [[ $($GETSTRIPE -c $DIR/$tdir/$tfile) -gt 0 ]] ||
1422                 error "missing objects"
1423 }
1424 run_test 27i "$GETSTRIPE with some objects"
1425
1426 test_27j() {
1427         test_mkdir -p $DIR/d27
1428         $SETSTRIPE -i $OSTCOUNT $DIR/d27/f27j && error "setstripe failed"||true
1429 }
1430 run_test 27j "setstripe with bad stripe offset (should return error)"
1431
1432 test_27k() { # bug 2844
1433         test_mkdir -p $DIR/d27
1434         FILE=$DIR/d27/f27k
1435         LL_MAX_BLKSIZE=$((4 * 1024 * 1024))
1436         [ ! -d $DIR/d27 ] && test_mkdir -p $DIR d27
1437         $SETSTRIPE -S 67108864 $FILE || error "setstripe failed"
1438         BLKSIZE=`stat $FILE | awk '/IO Block:/ { print $7 }'`
1439         [ $BLKSIZE -le $LL_MAX_BLKSIZE ] || error "1:$BLKSIZE > $LL_MAX_BLKSIZE"
1440         dd if=/dev/zero of=$FILE bs=4k count=1
1441         BLKSIZE=`stat $FILE | awk '/IO Block:/ { print $7 }'`
1442         [ $BLKSIZE -le $LL_MAX_BLKSIZE ] || error "2:$BLKSIZE > $LL_MAX_BLKSIZE"
1443 }
1444 run_test 27k "limit i_blksize for broken user apps ============="
1445
1446 test_27l() {
1447         test_mkdir -p $DIR/d27
1448         mcreate $DIR/f27l || error "creating file"
1449         $RUNAS $SETSTRIPE -c 1 $DIR/f27l && \
1450                 error "setstripe should have failed" || true
1451 }
1452 run_test 27l "check setstripe permissions (should return error)"
1453
1454 test_27m() {
1455         [[ $OSTCOUNT -lt 2 ]] && skip_env "$OSTCOUNT < 2 OSTs -- skipping" &&
1456                 return
1457
1458         ORIGFREE=$($LCTL get_param -n lov.$FSNAME-clilov-*.kbytesavail |
1459                    head -n1)
1460         if [[ $ORIGFREE -gt $MAXFREE ]]; then
1461                 skip "$ORIGFREE > $MAXFREE skipping out-of-space test on OST0"
1462                 return
1463         fi
1464         trap simple_cleanup_common EXIT
1465         test_mkdir -p $DIR/$tdir
1466         $SETSTRIPE -i 0 -c 1 $DIR/$tdir/f27m_1
1467         dd if=/dev/zero of=$DIR/$tdir/f27m_1 bs=1024 count=$MAXFREE &&
1468                 error "dd should fill OST0"
1469         i=2
1470         while $SETSTRIPE -i 0 -c 1 $DIR/$tdir/f27m_$i; do
1471                 i=$((i + 1))
1472                 [ $i -gt 256 ] && break
1473         done
1474         i=$((i + 1))
1475         touch $DIR/$tdir/f27m_$i
1476         [ `$GETSTRIPE $DIR/$tdir/f27m_$i | grep -A 10 obdidx | awk '{print $1}'| grep -w "0"` ] &&
1477                 error "OST0 was full but new created file still use it"
1478         i=$((i + 1))
1479         touch $DIR/$tdir/f27m_$i
1480         [ `$GETSTRIPE $DIR/$tdir/f27m_$i | grep -A 10 obdidx | awk '{print $1}'| grep -w "0"` ] &&
1481                 error "OST0 was full but new created file still use it"
1482         simple_cleanup_common
1483 }
1484 run_test 27m "create file while OST0 was full =================="
1485
1486 sleep_maxage() {
1487         local DELAY=$(do_facet $SINGLEMDS lctl get_param -n lov.*.qos_maxage | head -n 1 | awk '{print $1 * 2}')
1488         sleep $DELAY
1489 }
1490
1491 # OSCs keep a NOSPC flag that will be reset after ~5s (qos_maxage)
1492 # if the OST isn't full anymore.
1493 reset_enospc() {
1494         local OSTIDX=${1:-""}
1495
1496         local list=$(comma_list $(osts_nodes))
1497         [ "$OSTIDX" ] && list=$(facet_host ost$((OSTIDX + 1)))
1498
1499         do_nodes $list lctl set_param fail_loc=0
1500         sync    # initiate all OST_DESTROYs from MDS to OST
1501         sleep_maxage
1502 }
1503
1504 exhaust_precreations() {
1505         local OSTIDX=$1
1506         local FAILLOC=$2
1507         local FAILIDX=${3:-$OSTIDX}
1508         local ofacet=ost$((OSTIDX + 1))
1509
1510         test_mkdir -p -c1 $DIR/$tdir
1511         local mdtidx=$($LFS getstripe -M $DIR/$tdir)
1512         local mfacet=mds$((mdtidx + 1))
1513         echo OSTIDX=$OSTIDX MDTIDX=$mdtidx
1514
1515         local OST=$(ostname_from_index $OSTIDX)
1516
1517         # on the mdt's osc
1518         local mdtosc_proc1=$(get_mdtosc_proc_path $mfacet $OST)
1519         local last_id=$(do_facet $mfacet lctl get_param -n \
1520                         osc.$mdtosc_proc1.prealloc_last_id)
1521         local next_id=$(do_facet $mfacet lctl get_param -n \
1522                         osc.$mdtosc_proc1.prealloc_next_id)
1523
1524         local mdtosc_proc2=$(get_mdtosc_proc_path $mfacet)
1525         do_facet $mfacet lctl get_param osc.$mdtosc_proc2.prealloc*
1526
1527         test_mkdir -p $DIR/$tdir/${OST}
1528         $SETSTRIPE -i $OSTIDX -c 1 $DIR/$tdir/${OST}
1529 #define OBD_FAIL_OST_ENOSPC              0x215
1530         do_facet $ofacet lctl set_param fail_val=$FAILIDX fail_loc=0x215
1531         echo "Creating to objid $last_id on ost $OST..."
1532         createmany -o $DIR/$tdir/${OST}/f $next_id $((last_id - next_id + 2))
1533         do_facet $mfacet lctl get_param osc.$mdtosc_proc2.prealloc*
1534         do_facet $ofacet lctl set_param fail_loc=$FAILLOC
1535         sleep_maxage
1536 }
1537
1538 exhaust_all_precreations() {
1539         local i
1540         for (( i=0; i < OSTCOUNT; i++ )) ; do
1541                 exhaust_precreations $i $1 -1
1542         done
1543 }
1544
1545 test_27n() {
1546         [[ $OSTCOUNT -lt 2 ]] && skip_env "too few OSTs" && return
1547         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1548         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1549         remote_ost_nodsh && skip "remote OST with nodsh" && return
1550
1551         reset_enospc
1552         rm -f $DIR/$tdir/$tfile
1553         exhaust_precreations 0 0x80000215
1554         $SETSTRIPE -c -1 $DIR/$tdir
1555         touch $DIR/$tdir/$tfile || error
1556         $GETSTRIPE $DIR/$tdir/$tfile
1557         reset_enospc
1558 }
1559 run_test 27n "create file with some full OSTs =================="
1560
1561 test_27o() {
1562         [[ $OSTCOUNT -lt 2 ]] && skip_env "too few OSTs" && return
1563         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1564         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1565         remote_ost_nodsh && skip "remote OST with nodsh" && return
1566
1567         reset_enospc
1568         rm -f $DIR/$tdir/$tfile
1569         exhaust_all_precreations 0x215
1570
1571         touch $DIR/$tdir/$tfile && error "able to create $DIR/$tdir/$tfile"
1572
1573         reset_enospc
1574         rm -rf $DIR/$tdir/*
1575 }
1576 run_test 27o "create file with all full OSTs (should error) ===="
1577
1578 test_27p() {
1579         [[ $OSTCOUNT -lt 2 ]] && skip_env "too few OSTs" && return
1580         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1581         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1582         remote_ost_nodsh && skip "remote OST with nodsh" && return
1583
1584         reset_enospc
1585         rm -f $DIR/$tdir/$tfile
1586         test_mkdir -p $DIR/$tdir
1587
1588         $MCREATE $DIR/$tdir/$tfile || error "mcreate failed"
1589         $TRUNCATE $DIR/$tdir/$tfile 80000000 || error "truncate failed"
1590         $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat failed"
1591
1592         exhaust_precreations 0 0x80000215
1593         echo foo >> $DIR/$tdir/$tfile || error "append failed"
1594         $CHECKSTAT -s 80000004 $DIR/$tdir/$tfile || error "checkstat failed"
1595         $GETSTRIPE $DIR/$tdir/$tfile
1596
1597         reset_enospc
1598 }
1599 run_test 27p "append to a truncated file with some full OSTs ==="
1600
1601 test_27q() {
1602         [[ $OSTCOUNT -lt 2 ]] && skip_env "too few OSTs" && return
1603         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1604         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1605         remote_ost_nodsh && skip "remote OST with nodsh" && return
1606
1607         reset_enospc
1608         rm -f $DIR/$tdir/$tfile
1609
1610         test_mkdir -p $DIR/$tdir
1611         $MCREATE $DIR/$tdir/$tfile || error "mcreate $DIR/$tdir/$tfile failed"
1612         $TRUNCATE $DIR/$tdir/$tfile 80000000 ||error "truncate $DIR/$tdir/$tfile failed"
1613         $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat failed"
1614
1615         exhaust_all_precreations 0x215
1616
1617         echo foo >> $DIR/$tdir/$tfile && error "append succeeded"
1618         $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat 2 failed"
1619
1620         reset_enospc
1621 }
1622 run_test 27q "append to truncated file with all OSTs full (should error) ==="
1623
1624 test_27r() {
1625         [[ $OSTCOUNT -lt 2 ]] && skip_env "too few OSTs" && return
1626         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1627         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1628         remote_ost_nodsh && skip "remote OST with nodsh" && return
1629
1630         reset_enospc
1631         rm -f $DIR/$tdir/$tfile
1632         exhaust_precreations 0 0x80000215
1633
1634         $SETSTRIPE -i 0 -c 2 $DIR/$tdir/$tfile # && error
1635
1636         reset_enospc
1637 }
1638 run_test 27r "stripe file with some full OSTs (shouldn't LBUG) ="
1639
1640 test_27s() { # bug 10725
1641         test_mkdir -p $DIR/$tdir
1642         local stripe_size=$((4096 * 1024 * 1024))       # 2^32
1643         local stripe_count=0
1644         [ $OSTCOUNT -eq 1 ] || stripe_count=2
1645         $SETSTRIPE -S $stripe_size -c $stripe_count $DIR/$tdir &&
1646                 error "stripe width >= 2^32 succeeded" || true
1647
1648 }
1649 run_test 27s "lsm_xfersize overflow (should error) (bug 10725)"
1650
1651 test_27t() { # bug 10864
1652         WDIR=$(pwd)
1653         WLFS=$(which lfs)
1654         cd $DIR
1655         touch $tfile
1656         $WLFS getstripe $tfile
1657         cd $WDIR
1658 }
1659 run_test 27t "check that utils parse path correctly"
1660
1661 test_27u() { # bug 4900
1662         [[ $OSTCOUNT -lt 2 ]] && skip_env "too few OSTs" && return
1663         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1664         local index
1665         local list=$(comma_list $(mdts_nodes))
1666
1667 #define OBD_FAIL_MDS_OSC_PRECREATE      0x139
1668         do_nodes $list $LCTL set_param fail_loc=0x139
1669         test_mkdir -p $DIR/$tdir
1670         trap simple_cleanup_common EXIT
1671         createmany -o $DIR/$tdir/t- 1000
1672         do_nodes $list $LCTL set_param fail_loc=0
1673
1674         TLOG=$TMP/$tfile.getstripe
1675         $GETSTRIPE $DIR/$tdir > $TLOG
1676         OBJS=$(awk -vobj=0 '($1 == 0) { obj += 1 } END { print obj; }' $TLOG)
1677         unlinkmany $DIR/$tdir/t- 1000
1678         trap 0
1679         [[ $OBJS -gt 0 ]] &&
1680                 error "$OBJS objects created on OST-0. See $TLOG" || pass
1681 }
1682 run_test 27u "skip object creation on OSC w/o objects =========="
1683
1684 test_27v() { # bug 4900
1685         [[ $OSTCOUNT -lt 2 ]] && skip_env "too few OSTs" && return
1686         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1687         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1688         remote_ost_nodsh && skip "remote OST with nodsh" && return
1689
1690         exhaust_all_precreations 0x215
1691         reset_enospc
1692
1693         test_mkdir -p $DIR/$tdir
1694         $SETSTRIPE -c 1 $DIR/$tdir         # 1 stripe / file
1695
1696         touch $DIR/$tdir/$tfile
1697         #define OBD_FAIL_TGT_DELAY_PRECREATE     0x705
1698         # all except ost1
1699         for (( i=1; i < OSTCOUNT; i++ )); do
1700                 do_facet ost$i lctl set_param fail_loc=0x705
1701         done
1702         local START=`date +%s`
1703         createmany -o $DIR/$tdir/$tfile 32
1704
1705         local FINISH=`date +%s`
1706         local TIMEOUT=`lctl get_param -n timeout`
1707         local PROCESS=$((FINISH - START))
1708         [ $PROCESS -ge $((TIMEOUT / 2)) ] && \
1709                error "$FINISH - $START >= $TIMEOUT / 2"
1710         sleep $((TIMEOUT / 2 - PROCESS))
1711         reset_enospc
1712 }
1713 run_test 27v "skip object creation on slow OST ================="
1714
1715 test_27w() { # bug 10997
1716         test_mkdir -p $DIR/$tdir || error "mkdir failed"
1717         $SETSTRIPE -S 65536 $DIR/$tdir/f0 || error "setstripe failed"
1718         [ $($GETSTRIPE -S $DIR/$tdir/f0) -ne 65536 ] &&
1719                 error "stripe size $size != 65536" || true
1720         [ $($GETSTRIPE -d $DIR/$tdir | grep -c "stripe_count") -ne 1 ] &&
1721                 error "$GETSTRIPE -d $DIR/$tdir failed" || true
1722 }
1723 run_test 27w "check $SETSTRIPE -S option"
1724
1725 test_27wa() {
1726         [[ $OSTCOUNT -lt 2 ]] &&
1727                 skip_env "skipping multiple stripe count/offset test" && return
1728
1729         test_mkdir -p $DIR/$tdir || error "mkdir failed"
1730         for i in $(seq 1 $OSTCOUNT); do
1731                 offset=$((i - 1))
1732                 $SETSTRIPE -c $i -i $offset $DIR/$tdir/f$i ||
1733                         error "setstripe -c $i -i $offset failed"
1734                 count=$($GETSTRIPE -c $DIR/$tdir/f$i)
1735                 index=$($GETSTRIPE -i $DIR/$tdir/f$i)
1736                 [ $count -ne $i ] && error "stripe count $count != $i" || true
1737                 [ $index -ne $offset ] &&
1738                         error "stripe offset $index != $offset" || true
1739         done
1740 }
1741 run_test 27wa "check $SETSTRIPE -c -i options"
1742
1743 test_27x() {
1744         remote_ost_nodsh && skip "remote OST with nodsh" && return
1745         [[ $OSTCOUNT -lt 2 ]] && skip_env "$OSTCOUNT < 2 OSTs" && return
1746         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1747         OFFSET=$(($OSTCOUNT - 1))
1748         OSTIDX=0
1749         local OST=$(ostname_from_index $OSTIDX)
1750
1751         test_mkdir -p $DIR/$tdir
1752         $SETSTRIPE -c 1 $DIR/$tdir      # 1 stripe per file
1753         do_facet ost$((OSTIDX + 1)) lctl set_param -n obdfilter.$OST.degraded 1
1754         sleep_maxage
1755         createmany -o $DIR/$tdir/$tfile $OSTCOUNT
1756         for i in `seq 0 $OFFSET`; do
1757                 [ `$GETSTRIPE $DIR/$tdir/$tfile$i | grep -A 10 obdidx | awk '{print $1}' | grep -w "$OSTIDX"` ] &&
1758                 error "OST0 was degraded but new created file still use it"
1759         done
1760         do_facet ost$((OSTIDX + 1)) lctl set_param -n obdfilter.$OST.degraded 0
1761 }
1762 run_test 27x "create files while OST0 is degraded"
1763
1764 test_27y() {
1765         [[ $OSTCOUNT -lt 2 ]] &&
1766                 skip_env "$OSTCOUNT < 2 OSTs -- skipping" && return
1767         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1768         remote_ost_nodsh && skip "remote OST with nodsh" && return
1769         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1770
1771         local mdtosc=$(get_mdtosc_proc_path $SINGLEMDS $FSNAME-OST0000)
1772         local last_id=$(do_facet $SINGLEMDS lctl get_param -n \
1773             osc.$mdtosc.prealloc_last_id)
1774         local next_id=$(do_facet $SINGLEMDS lctl get_param -n \
1775             osc.$mdtosc.prealloc_next_id)
1776         local fcount=$((last_id - next_id))
1777         [[ $fcount -eq 0 ]] && skip "not enough space on OST0" && return
1778         [[ $fcount -gt $OSTCOUNT ]] && fcount=$OSTCOUNT
1779
1780         local MDS_OSCS=$(do_facet $SINGLEMDS lctl dl |
1781                          awk '/[oO][sS][cC].*md[ts]/ { print $4 }')
1782         local OST_DEACTIVE_IDX=-1
1783         local OSC
1784         local OSTIDX
1785         local OST
1786
1787         for OSC in $MDS_OSCS; do
1788                 OST=$(osc_to_ost $OSC)
1789                 OSTIDX=$(index_from_ostuuid $OST)
1790                 if [ $OST_DEACTIVE_IDX == -1 ]; then
1791                         OST_DEACTIVE_IDX=$OSTIDX
1792                 fi
1793                 if [ $OSTIDX != $OST_DEACTIVE_IDX ]; then
1794                         echo $OSC "is Deactivated:"
1795                         do_facet $SINGLEMDS lctl --device  %$OSC deactivate
1796                 fi
1797         done
1798
1799         OSTIDX=$(index_from_ostuuid $OST)
1800         test_mkdir -p $DIR/$tdir
1801         $SETSTRIPE -c 1 $DIR/$tdir      # 1 stripe / file
1802
1803         for OSC in $MDS_OSCS; do
1804                 OST=$(osc_to_ost $OSC)
1805                 OSTIDX=$(index_from_ostuuid $OST)
1806                 if [ $OSTIDX == $OST_DEACTIVE_IDX ]; then
1807                         echo $OST "is degraded:"
1808                         do_facet ost$((OSTIDX+1)) lctl set_param -n \
1809                                                 obdfilter.$OST.degraded=1
1810                 fi
1811         done
1812
1813         sleep_maxage
1814         createmany -o $DIR/$tdir/$tfile $fcount
1815
1816         for OSC in $MDS_OSCS; do
1817                 OST=$(osc_to_ost $OSC)
1818                 OSTIDX=$(index_from_ostuuid $OST)
1819                 if [ $OSTIDX == $OST_DEACTIVE_IDX ]; then
1820                         echo $OST "is recovered from degraded:"
1821                         do_facet ost$((OSTIDX+1)) lctl set_param -n \
1822                                                 obdfilter.$OST.degraded=0
1823                 else
1824                         do_facet $SINGLEMDS lctl --device %$OSC activate
1825                 fi
1826         done
1827
1828         # all osp devices get activated, hence -1 stripe count restored
1829         local stripecnt=0
1830
1831         # sleep 2*lod_qos_maxage seconds waiting for lod qos to notice osp
1832         # devices get activated.
1833         sleep_maxage
1834         $SETSTRIPE -c -1 $DIR/$tfile
1835         stripecnt=$($GETSTRIPE -c $DIR/$tfile)
1836         rm -f $DIR/$tfile
1837         [ $stripecnt -ne $OSTCOUNT ] &&
1838                 error "Of $OSTCOUNT OSTs, only $stripecnt is available"
1839         return 0
1840 }
1841 run_test 27y "create files while OST0 is degraded and the rest inactive"
1842
1843 check_seq_oid()
1844 {
1845         log "check file $1"
1846
1847         lmm_count=$($GETSTRIPE -c $1)
1848         lmm_seq=$($GETSTRIPE -v $1 | awk '/lmm_seq/ { print $2 }')
1849         lmm_oid=$($GETSTRIPE -v $1 | awk '/lmm_object_id/ { print $2 }')
1850
1851         local old_ifs="$IFS"
1852         IFS=$'[:]'
1853         fid=($($LFS path2fid $1))
1854         IFS="$old_ifs"
1855
1856         log "FID seq ${fid[1]}, oid ${fid[2]} ver ${fid[3]}"
1857         log "LOV seq $lmm_seq, oid $lmm_oid, count: $lmm_count"
1858
1859         # compare lmm_seq and lu_fid->f_seq
1860         [ $lmm_seq = ${fid[1]} ] || { error "SEQ mismatch"; return 1; }
1861         # compare lmm_object_id and lu_fid->oid
1862         [ $lmm_oid = ${fid[2]} ] || { error "OID mismatch"; return 2; }
1863
1864         # check the trusted.fid attribute of the OST objects of the file
1865         local have_obdidx=false
1866         local stripe_nr=0
1867         $GETSTRIPE $1 | while read obdidx oid hex seq; do
1868                 # skip lines up to and including "obdidx"
1869                 [ -z "$obdidx" ] && break
1870                 [ "$obdidx" = "obdidx" ] && have_obdidx=true && continue
1871                 $have_obdidx || continue
1872
1873                 local ost=$((obdidx + 1))
1874                 local dev=$(ostdevname $ost)
1875                 local oid_hex
1876
1877                 log "want: stripe:$stripe_nr ost:$obdidx oid:$oid/$hex seq:$seq"
1878
1879                 seq=$(echo $seq | sed -e "s/^0x//g")
1880                 if [ $seq == 0 ] || [ $(facet_fstype ost$ost) == zfs ]; then
1881                         oid_hex=$(echo $oid)
1882                 else
1883                         oid_hex=$(echo $hex | sed -e "s/^0x//g")
1884                 fi
1885                 local obj_file="O/$seq/d$((oid %32))/$oid_hex"
1886
1887                 local ff=""
1888                 #
1889                 # Don't unmount/remount the OSTs if we don't need to do that.
1890                 # LU-2577 changes filter_fid to be smaller, so debugfs needs
1891                 # update too, until that use mount/ll_decode_filter_fid/mount.
1892                 # Re-enable when debugfs will understand new filter_fid.
1893                 #
1894                 if [ $(facet_fstype ost$ost) == ldiskfs ]; then
1895                         ff=$(do_facet ost$ost "$DEBUGFS -c -R 'stat $obj_file' \
1896                                 $dev 2>/dev/null" | grep "parent=")
1897                 fi
1898                 if [ -z "$ff" ]; then
1899                         stop ost$ost
1900                         mount_fstype ost$ost
1901                         ff=$(do_facet ost$ost $LL_DECODE_FILTER_FID \
1902                                 $(facet_mntpt ost$ost)/$obj_file)
1903                         unmount_fstype ost$ost
1904                         start ost$ost $dev $OST_MOUNT_OPTS
1905                         clients_up
1906                 fi
1907
1908                 [ -z "$ff" ] && error "$obj_file: no filter_fid info"
1909
1910                 echo "$ff" | sed -e 's#.*objid=#got: objid=#'
1911
1912                 # /mnt/O/0/d23/23: objid=23 seq=0 parent=[0x200000400:0x1e:0x1]
1913                 # fid: objid=23 seq=0 parent=[0x200000400:0x1e:0x0] stripe=1
1914                 #
1915                 # fid: parent=[0x200000400:0x1e:0x0] stripe=1 stripe_count=2 \
1916                 #       stripe_size=1048576 component_id=1 component_start=0 \
1917                 #       component_end=33554432
1918                 local ff_parent=$(sed -e 's/.*parent=.//' <<<$ff)
1919                 local ff_pseq=$(cut -d: -f1 <<<$ff_parent)
1920                 local ff_poid=$(cut -d: -f2 <<<$ff_parent)
1921                 local ff_pstripe
1922                 if grep -q 'stripe=' <<<$ff; then
1923                         ff_pstripe=$(sed -e 's/.*stripe=//' -e 's/ .*//' <<<$ff)
1924                 else
1925                         # $LL_DECODE_FILTER_FID does not print "stripe="; look
1926                         # into f_ver in this case.  See comment on ff_parent.
1927                         ff_pstripe=$(cut -d: -f3 <<<$ff_parent | sed -e 's/]//')
1928                 fi
1929
1930                 if grep -q 'stripe_count=' <<<$ff; then
1931                         local ff_scnt=$(sed -e 's/.*stripe_count=//' \
1932                                             -e 's/ .*//' <<<$ff)
1933                         [ $lmm_count = $ff_scnt ] ||
1934                                 error "FF stripe count $lmm_count != $ff_scnt"
1935                 fi
1936                 # compare lmm_seq and filter_fid->ff_parent.f_seq
1937                 [ $ff_pseq = $lmm_seq ] ||
1938                         error "FF parent SEQ $ff_pseq != $lmm_seq"
1939                 # compare lmm_object_id and filter_fid->ff_parent.f_oid
1940                 [ $ff_poid = $lmm_oid ] ||
1941                         error "FF parent OID $ff_poid != $lmm_oid"
1942                 (($ff_pstripe == $stripe_nr)) ||
1943                         error "FF stripe $ff_pstripe != $stripe_nr"
1944
1945                 stripe_nr=$((stripe_nr + 1))
1946         done
1947 }
1948
1949 test_27z() {
1950         remote_ost_nodsh && skip "remote OST with nodsh" && return
1951         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1952         test_mkdir -p $DIR/$tdir
1953
1954         $SETSTRIPE -c 1 -i 0 -S 64k $DIR/$tdir/$tfile-1 ||
1955                 { error "setstripe -c -1 failed"; return 1; }
1956         # We need to send a write to every object to get parent FID info set.
1957         # This _should_ also work for setattr, but does not currently.
1958         # touch $DIR/$tdir/$tfile-1 ||
1959         dd if=/dev/zero of=$DIR/$tdir/$tfile-1 bs=1M count=1 ||
1960                 { error "dd $tfile-1 failed"; return 2; }
1961         $SETSTRIPE -c -1 -i $((OSTCOUNT - 1)) -S 1M $DIR/$tdir/$tfile-2 ||
1962                 { error "setstripe -c -1 failed"; return 3; }
1963         dd if=/dev/zero of=$DIR/$tdir/$tfile-2 bs=1M count=$OSTCOUNT ||
1964                 { error "dd $tfile-2 failed"; return 4; }
1965
1966         # make sure write RPCs have been sent to OSTs
1967         sync; sleep 5; sync
1968
1969         check_seq_oid $DIR/$tdir/$tfile-1 || return 5
1970         check_seq_oid $DIR/$tdir/$tfile-2 || return 6
1971 }
1972 run_test 27z "check SEQ/OID on the MDT and OST filesystems"
1973
1974 test_27A() { # b=19102
1975         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1976         local restore_size=$($GETSTRIPE -S $MOUNT)
1977         local restore_count=$($GETSTRIPE -c $MOUNT)
1978         local restore_offset=$($GETSTRIPE -i $MOUNT)
1979         $SETSTRIPE -c 0 -i -1 -S 0 $MOUNT
1980         wait_update $HOSTNAME "$GETSTRIPE -c $MOUNT | sed 's/  *//g'" "1" 20 ||
1981                 error "stripe count $($GETSTRIPE -c $MOUNT) != 1"
1982         local default_size=$($GETSTRIPE -S $MOUNT)
1983         local default_offset=$($GETSTRIPE -i $MOUNT)
1984         local dsize=$((1024 * 1024))
1985         [ $default_size -eq $dsize ] ||
1986                 error "stripe size $default_size != $dsize"
1987         [ $default_offset -eq -1 ] ||error "stripe offset $default_offset != -1"
1988         $SETSTRIPE -c $restore_count -i $restore_offset -S $restore_size $MOUNT
1989 }
1990 run_test 27A "check filesystem-wide default LOV EA values"
1991
1992 test_27B() { # LU-2523
1993         test_mkdir -p $DIR/$tdir
1994         rm -f $DIR/$tdir/f0 $DIR/$tdir/f1
1995         touch $DIR/$tdir/f0
1996         # open f1 with O_LOV_DELAY_CREATE
1997         # rename f0 onto f1
1998         # call setstripe ioctl on open file descriptor for f1
1999         # close
2000         multiop $DIR/$tdir/f1 oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:nB1c \
2001                 $DIR/$tdir/f0
2002
2003         rm -f $DIR/$tdir/f1
2004         # open f1 with O_LOV_DELAY_CREATE
2005         # unlink f1
2006         # call setstripe ioctl on open file descriptor for f1
2007         # close
2008         multiop $DIR/$tdir/f1 oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:uB1c
2009
2010         # Allow multiop to fail in imitation of NFS's busted semantics.
2011         true
2012 }
2013 run_test 27B "call setstripe on open unlinked file/rename victim"
2014
2015 test_27C() { #LU-2871
2016         [[ $OSTCOUNT -lt 2 ]] && skip "needs >= 2 OSTs" && return
2017
2018         declare -a ost_idx
2019         local index
2020         local found
2021         local i
2022         local j
2023
2024         test_mkdir -p $DIR/$tdir
2025         cd $DIR/$tdir
2026         for i in $(seq 0 $((OSTCOUNT - 1))); do
2027                 # set stripe across all OSTs starting from OST$i
2028                 $SETSTRIPE -i $i -c -1 $tfile$i
2029                 # get striping information
2030                 ost_idx=($($GETSTRIPE $tfile$i |
2031                          tail -n $((OSTCOUNT + 1)) | awk '{print $1}'))
2032                 echo ${ost_idx[@]}
2033
2034                 # check the layout
2035                 [ ${#ost_idx[@]} -eq $OSTCOUNT ] ||
2036                         error "${#ost_idx[@]} != $OSTCOUNT"
2037
2038                 for index in $(seq 0 $((OSTCOUNT - 1))); do
2039                         found=0
2040                         for j in $(echo ${ost_idx[@]}); do
2041                                 if [ $index -eq $j ]; then
2042                                         found=1
2043                                         break
2044                                 fi
2045                         done
2046                         [ $found = 1 ] ||
2047                                 error "Can not find $index in ${ost_idx[@]}"
2048                 done
2049         done
2050 }
2051 run_test 27C "check full striping across all OSTs"
2052
2053 test_27D() {
2054         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
2055         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
2056         remote_mds_nodsh && skip "remote MDS with nodsh" && return
2057         local POOL=${POOL:-testpool}
2058         local first_ost=0
2059         local last_ost=$(($OSTCOUNT - 1))
2060         local ost_step=1
2061         local ost_list=$(seq $first_ost $ost_step $last_ost)
2062         local ost_range="$first_ost $last_ost $ost_step"
2063
2064         test_mkdir -p $DIR/$tdir
2065         pool_add $POOL || error "pool_add failed"
2066         pool_add_targets $POOL $ost_range || error "pool_add_targets failed"
2067
2068         local skip27D
2069         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.55) ] &&
2070                 skip27D += "-s 29"
2071         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.9.55) ] &&
2072                 skip27D += "-s 30,31"
2073         llapi_layout_test -d$DIR/$tdir -p$POOL -o$OSTCOUNT $skip27D ||
2074                 error "llapi_layout_test failed"
2075
2076         destroy_test_pools || error "destroy test pools failed"
2077 }
2078 run_test 27D "validate llapi_layout API"
2079
2080 # Verify that default_easize is increased from its initial value after
2081 # accessing a widely striped file.
2082 test_27E() {
2083         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
2084         [ $(lustre_version_code client) -lt $(version_code 2.5.57) ] &&
2085                 skip "client does not have LU-3338 fix" && return
2086
2087         # 72 bytes is the minimum space required to store striping
2088         # information for a file striped across one OST:
2089         # (sizeof(struct lov_user_md_v3) +
2090         #  sizeof(struct lov_user_ost_data_v1))
2091         local min_easize=72
2092         $LCTL set_param -n llite.*.default_easize $min_easize ||
2093                 error "lctl set_param failed"
2094         local easize=$($LCTL get_param -n llite.*.default_easize)
2095
2096         [ $easize -eq $min_easize ] ||
2097                 error "failed to set default_easize"
2098
2099         $LFS setstripe -c $OSTCOUNT $DIR/$tfile ||
2100                 error "setstripe failed"
2101         cat $DIR/$tfile
2102         rm $DIR/$tfile
2103
2104         easize=$($LCTL get_param -n llite.*.default_easize)
2105
2106         [ $easize -gt $min_easize ] ||
2107                 error "default_easize not updated"
2108 }
2109 run_test 27E "check that default extended attribute size properly increases"
2110
2111 test_27F() { # LU-5346/LU-7975
2112         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2113         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.51) ]] &&
2114                 skip "Need MDS version at least 2.8.51" && return
2115         remote_ost_nodsh && skip "remote OST with nodsh" && return
2116
2117         test_mkdir -p $DIR/$tdir
2118         rm -f $DIR/$tdir/f0
2119         $SETSTRIPE -c 2 $DIR/$tdir
2120
2121         # stop all OSTs to reproduce situation for LU-7975 ticket
2122         for num in $(seq $OSTCOUNT); do
2123                 stop ost$num
2124         done
2125
2126         # open/create f0 with O_LOV_DELAY_CREATE
2127         # truncate f0 to a non-0 size
2128         # close
2129         multiop $DIR/$tdir/f0 oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:T1050000c
2130
2131         $CHECKSTAT -s 1050000 $DIR/$tdir/f0 || error "checkstat failed"
2132         # open/write it again to force delayed layout creation
2133         cat /etc/hosts > $DIR/$tdir/f0 &
2134         catpid=$!
2135
2136         # restart OSTs
2137         for num in $(seq $OSTCOUNT); do
2138                 start ost$num $(ostdevname $num) $OST_MOUNT_OPTS ||
2139                         error "ost$num failed to start"
2140         done
2141
2142         wait $catpid || error "cat failed"
2143
2144         cmp /etc/hosts $DIR/$tdir/f0 || error "cmp failed"
2145         [[ $($GETSTRIPE -c $DIR/$tdir/f0) == 2 ]] || error "wrong stripecount"
2146
2147 }
2148 run_test 27F "Client resend delayed layout creation with non-zero size"
2149
2150 # createtest also checks that device nodes are created and
2151 # then visible correctly (#2091)
2152 test_28() { # bug 2091
2153         test_mkdir $DIR/d28
2154         $CREATETEST $DIR/d28/ct || error
2155 }
2156 run_test 28 "create/mknod/mkdir with bad file types ============"
2157
2158 test_29() {
2159         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return 0
2160         sync; sleep 1; sync # flush out any dirty pages from previous tests
2161         cancel_lru_locks
2162         test_mkdir $DIR/d29
2163         touch $DIR/d29/foo
2164         log 'first d29'
2165         ls -l $DIR/d29
2166
2167         declare -i LOCKCOUNTORIG=0
2168         for lock_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_count); do
2169                 let LOCKCOUNTORIG=$LOCKCOUNTORIG+$lock_count
2170         done
2171         [ $LOCKCOUNTORIG -eq 0 ] && error "No mdc lock count" && return 1
2172
2173         declare -i LOCKUNUSEDCOUNTORIG=0
2174         for unused_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_unused_count); do
2175                 let LOCKUNUSEDCOUNTORIG=$LOCKUNUSEDCOUNTORIG+$unused_count
2176         done
2177
2178         log 'second d29'
2179         ls -l $DIR/d29
2180         log 'done'
2181
2182         declare -i LOCKCOUNTCURRENT=0
2183         for lock_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_count); do
2184                 let LOCKCOUNTCURRENT=$LOCKCOUNTCURRENT+$lock_count
2185         done
2186
2187         declare -i LOCKUNUSEDCOUNTCURRENT=0
2188         for unused_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_unused_count); do
2189                 let LOCKUNUSEDCOUNTCURRENT=$LOCKUNUSEDCOUNTCURRENT+$unused_count
2190         done
2191
2192         if [[ $LOCKCOUNTCURRENT -gt $LOCKCOUNTORIG ]]; then
2193                 $LCTL set_param -n ldlm.dump_namespaces ""
2194                 error "CURRENT: $LOCKCOUNTCURRENT > $LOCKCOUNTORIG"
2195                 $LCTL dk | sort -k4 -t: > $TMP/test_29.dk
2196                 log "dumped log to $TMP/test_29.dk (bug 5793)"
2197                 return 2
2198         fi
2199         if [[ $LOCKUNUSEDCOUNTCURRENT -gt $LOCKUNUSEDCOUNTORIG ]]; then
2200                 error "UNUSED: $LOCKUNUSEDCOUNTCURRENT > $LOCKUNUSEDCOUNTORIG"
2201                 $LCTL dk | sort -k4 -t: > $TMP/test_29.dk
2202                 log "dumped log to $TMP/test_29.dk (bug 5793)"
2203                 return 3
2204         fi
2205 }
2206 run_test 29 "IT_GETATTR regression  ============================"
2207
2208 test_30a() { # was test_30
2209         cp $(which ls) $DIR || cp /bin/ls $DIR
2210         $DIR/ls / || error
2211         rm $DIR/ls
2212 }
2213 run_test 30a "execute binary from Lustre (execve) =============="
2214
2215 test_30b() {
2216         cp `which ls` $DIR || cp /bin/ls $DIR
2217         chmod go+rx $DIR/ls
2218         $RUNAS $DIR/ls / || error
2219         rm $DIR/ls
2220 }
2221 run_test 30b "execute binary from Lustre as non-root ==========="
2222
2223 test_30c() { # b=22376
2224         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2225         cp `which ls` $DIR || cp /bin/ls $DIR
2226         chmod a-rw $DIR/ls
2227         cancel_lru_locks mdc
2228         cancel_lru_locks osc
2229         $RUNAS $DIR/ls / || error
2230         rm -f $DIR/ls
2231 }
2232 run_test 30c "execute binary from Lustre without read perms ===="
2233
2234 test_31a() {
2235         $OPENUNLINK $DIR/f31 $DIR/f31 || error
2236         $CHECKSTAT -a $DIR/f31 || error
2237 }
2238 run_test 31a "open-unlink file =================================="
2239
2240 test_31b() {
2241         touch $DIR/f31 || error
2242         ln $DIR/f31 $DIR/f31b || error
2243         $MULTIOP $DIR/f31b Ouc || error
2244         $CHECKSTAT -t file $DIR/f31 || error
2245 }
2246 run_test 31b "unlink file with multiple links while open ======="
2247
2248 test_31c() {
2249         touch $DIR/f31 || error
2250         ln $DIR/f31 $DIR/f31c || error
2251         multiop_bg_pause $DIR/f31 O_uc || return 1
2252         MULTIPID=$!
2253         $MULTIOP $DIR/f31c Ouc
2254         kill -USR1 $MULTIPID
2255         wait $MULTIPID
2256 }
2257 run_test 31c "open-unlink file with multiple links ============="
2258
2259 test_31d() {
2260         opendirunlink $DIR/d31d $DIR/d31d || error
2261         $CHECKSTAT -a $DIR/d31d || error
2262 }
2263 run_test 31d "remove of open directory ========================="
2264
2265 test_31e() { # bug 2904
2266         openfilleddirunlink $DIR/d31e || error
2267 }
2268 run_test 31e "remove of open non-empty directory ==============="
2269
2270 test_31f() { # bug 4554
2271         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2272         set -vx
2273         test_mkdir $DIR/d31f
2274         $SETSTRIPE -S 1048576 -c 1 $DIR/d31f
2275         cp /etc/hosts $DIR/d31f
2276         ls -l $DIR/d31f
2277         $GETSTRIPE $DIR/d31f/hosts
2278         multiop_bg_pause $DIR/d31f D_c || return 1
2279         MULTIPID=$!
2280
2281         rm -rv $DIR/d31f || error "first of $DIR/d31f"
2282         test_mkdir $DIR/d31f
2283         $SETSTRIPE -S 1048576 -c 1 $DIR/d31f
2284         cp /etc/hosts $DIR/d31f
2285         ls -l $DIR/d31f
2286         $GETSTRIPE $DIR/d31f/hosts
2287         multiop_bg_pause $DIR/d31f D_c || return 1
2288         MULTIPID2=$!
2289
2290         kill -USR1 $MULTIPID || error "first opendir $MULTIPID not running"
2291         wait $MULTIPID || error "first opendir $MULTIPID failed"
2292
2293         sleep 6
2294
2295         kill -USR1 $MULTIPID2 || error "second opendir $MULTIPID not running"
2296         wait $MULTIPID2 || error "second opendir $MULTIPID2 failed"
2297         set +vx
2298 }
2299 run_test 31f "remove of open directory with open-unlink file ==="
2300
2301 test_31g() {
2302         echo "-- cross directory link --"
2303         test_mkdir -c1 $DIR/${tdir}ga
2304         test_mkdir -c1 $DIR/${tdir}gb
2305         touch $DIR/${tdir}ga/f
2306         ln $DIR/${tdir}ga/f $DIR/${tdir}gb/g
2307         $CHECKSTAT -t file $DIR/${tdir}ga/f || error "source"
2308         [ `stat -c%h $DIR/${tdir}ga/f` == '2' ] || error "source nlink"
2309         $CHECKSTAT -t file $DIR/${tdir}gb/g || error "target"
2310         [ `stat -c%h $DIR/${tdir}gb/g` == '2' ] || error "target nlink"
2311 }
2312 run_test 31g "cross directory link==============="
2313
2314 test_31h() {
2315         echo "-- cross directory link --"
2316         test_mkdir -c1 $DIR/${tdir}
2317         test_mkdir -c1 $DIR/${tdir}/dir
2318         touch $DIR/${tdir}/f
2319         ln $DIR/${tdir}/f $DIR/${tdir}/dir/g
2320         $CHECKSTAT -t file $DIR/${tdir}/f || error "source"
2321         [ `stat -c%h $DIR/${tdir}/f` == '2' ] || error "source nlink"
2322         $CHECKSTAT -t file $DIR/${tdir}/dir/g || error "target"
2323         [ `stat -c%h $DIR/${tdir}/dir/g` == '2' ] || error "target nlink"
2324 }
2325 run_test 31h "cross directory link under child==============="
2326
2327 test_31i() {
2328         echo "-- cross directory link --"
2329         test_mkdir -c1 $DIR/$tdir
2330         test_mkdir -c1 $DIR/$tdir/dir
2331         touch $DIR/$tdir/dir/f
2332         ln $DIR/$tdir/dir/f $DIR/$tdir/g
2333         $CHECKSTAT -t file $DIR/$tdir/dir/f || error "source"
2334         [ `stat -c%h $DIR/$tdir/dir/f` == '2' ] || error "source nlink"
2335         $CHECKSTAT -t file $DIR/$tdir/g || error "target"
2336         [ `stat -c%h $DIR/$tdir/g` == '2' ] || error "target nlink"
2337 }
2338 run_test 31i "cross directory link under parent==============="
2339
2340 test_31j() {
2341         test_mkdir -c1 -p $DIR/$tdir
2342         test_mkdir -c1 -p $DIR/$tdir/dir1
2343         ln $DIR/$tdir/dir1 $DIR/$tdir/dir2 && error "ln for dir"
2344         link $DIR/$tdir/dir1 $DIR/$tdir/dir3 && error "link for dir"
2345         mlink $DIR/$tdir/dir1 $DIR/$tdir/dir4 && error "mlink for dir"
2346         mlink $DIR/$tdir/dir1 $DIR/$tdir/dir1 && error "mlink to the same dir"
2347         return 0
2348 }
2349 run_test 31j "link for directory==============="
2350
2351 test_31k() {
2352         test_mkdir -c1 -p $DIR/$tdir
2353         touch $DIR/$tdir/s
2354         touch $DIR/$tdir/exist
2355         mlink $DIR/$tdir/s $DIR/$tdir/t || error "mlink"
2356         mlink $DIR/$tdir/s $DIR/$tdir/exist && error "mlink to exist file"
2357         mlink $DIR/$tdir/s $DIR/$tdir/s && error "mlink to the same file"
2358         mlink $DIR/$tdir/s $DIR/$tdir && error "mlink to parent dir"
2359         mlink $DIR/$tdir $DIR/$tdir/s && error "mlink parent dir to target"
2360         mlink $DIR/$tdir/not-exist $DIR/$tdir/foo && error "mlink non-existing to new"
2361         mlink $DIR/$tdir/not-exist $DIR/$tdir/s && error "mlink non-existing to exist"
2362         return 0
2363 }
2364 run_test 31k "link to file: the same, non-existing, dir==============="
2365
2366 test_31m() {
2367         mkdir $DIR/d31m
2368         touch $DIR/d31m/s
2369         mkdir $DIR/d31m2
2370         touch $DIR/d31m2/exist
2371         mlink $DIR/d31m/s $DIR/d31m2/t || error "mlink"
2372         mlink $DIR/d31m/s $DIR/d31m2/exist && error "mlink to exist file"
2373         mlink $DIR/d31m/s $DIR/d31m2 && error "mlink to parent dir"
2374         mlink $DIR/d31m2 $DIR/d31m/s && error "mlink parent dir to target"
2375         mlink $DIR/d31m/not-exist $DIR/d31m2/foo && error "mlink non-existing to new"
2376         mlink $DIR/d31m/not-exist $DIR/d31m2/s && error "mlink non-existing to exist"
2377         return 0
2378 }
2379 run_test 31m "link to file: the same, non-existing, dir==============="
2380
2381 test_31n() {
2382         touch $DIR/$tfile || error "cannot create '$DIR/$tfile'"
2383         nlink=$(stat --format=%h $DIR/$tfile)
2384         [ ${nlink:--1} -eq 1 ] || error "nlink is $nlink, expected 1"
2385         local fd=$(free_fd)
2386         local cmd="exec $fd<$DIR/$tfile"
2387         eval $cmd
2388         cmd="exec $fd<&-"
2389         trap "eval $cmd" EXIT
2390         nlink=$(stat --dereference --format=%h /proc/self/fd/$fd)
2391         [ ${nlink:--1} -eq 1 ] || error "nlink is $nlink, expected 1"
2392         rm $DIR/$tfile || error "cannot remove '$DIR/$tfile'"
2393         nlink=$(stat --dereference --format=%h /proc/self/fd/$fd)
2394         [ ${nlink:--1} -eq 0 ] || error "nlink is $nlink, expected 0"
2395         eval $cmd
2396 }
2397 run_test 31n "check link count of unlinked file"
2398
2399 link_one() {
2400         local TEMPNAME=$(mktemp $1_XXXXXX)
2401         mlink $TEMPNAME $1 2> /dev/null &&
2402                 echo "$BASHPID: link $TEMPNAME to $1 succeeded"
2403         munlink $TEMPNAME
2404 }
2405
2406 test_31o() { # LU-2901
2407         test_mkdir -p $DIR/$tdir
2408         for LOOP in $(seq 100); do
2409                 rm -f $DIR/$tdir/$tfile*
2410                 for THREAD in $(seq 8); do
2411                         link_one $DIR/$tdir/$tfile.$LOOP &
2412                 done
2413                 wait
2414                 local LINKS=$(ls -1 $DIR/$tdir | grep -c $tfile.$LOOP)
2415                 [[ $LINKS -gt 1 ]] && ls $DIR/$tdir &&
2416                         error "$LINKS duplicate links to $tfile.$LOOP" &&
2417                         break || true
2418         done
2419 }
2420 run_test 31o "duplicate hard links with same filename"
2421
2422 test_31p() {
2423         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
2424
2425         test_mkdir $DIR/$tdir
2426         $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
2427         $LFS setdirstripe -D -c2 -t all_char $DIR/$tdir/striped_dir
2428
2429         opendirunlink $DIR/$tdir/striped_dir/test1 ||
2430                 error "open unlink test1 failed"
2431         opendirunlink $DIR/$tdir/striped_dir/test2 ||
2432                 error "open unlink test2 failed"
2433
2434         $CHECKSTAT -a $DIR/$tdir/striped_dir/test1 ||
2435                 error "test1 still exists"
2436         $CHECKSTAT -a $DIR/$tdir/striped_dir/test2 ||
2437                 error "test2 still exists"
2438 }
2439 run_test 31p "remove of open striped directory"
2440
2441 cleanup_test32_mount() {
2442         local rc=0
2443         trap 0
2444         local loopdev=$(losetup -a | grep $EXT2_DEV | sed -ne 's/:.*$//p')
2445         $UMOUNT $DIR/$tdir/ext2-mountpoint || rc=$?
2446         losetup -d $loopdev || true
2447         rm -rf $DIR/$tdir
2448         return $rc
2449 }
2450
2451 test_32a() {
2452         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2453         echo "== more mountpoints and symlinks ================="
2454         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2455         trap cleanup_test32_mount EXIT
2456         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2457         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2458         $CHECKSTAT -t dir $DIR/$tdir/ext2-mountpoint/.. || error
2459         cleanup_test32_mount
2460 }
2461 run_test 32a "stat d32a/ext2-mountpoint/.. ====================="
2462
2463 test_32b() {
2464         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2465         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2466         trap cleanup_test32_mount EXIT
2467         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2468         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2469         ls -al $DIR/$tdir/ext2-mountpoint/.. || error
2470         cleanup_test32_mount
2471 }
2472 run_test 32b "open d32b/ext2-mountpoint/.. ====================="
2473
2474 test_32c() {
2475         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2476         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2477         trap cleanup_test32_mount EXIT
2478         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2479         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2480         test_mkdir -p $DIR/$tdir/d2/test_dir
2481         $CHECKSTAT -t dir $DIR/$tdir/ext2-mountpoint/../d2/test_dir || error
2482         cleanup_test32_mount
2483 }
2484 run_test 32c "stat d32c/ext2-mountpoint/../d2/test_dir ========="
2485
2486 test_32d() {
2487         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2488         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2489         trap cleanup_test32_mount EXIT
2490         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2491         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2492         test_mkdir -p $DIR/$tdir/d2/test_dir
2493         ls -al $DIR/$tdir/ext2-mountpoint/../d2/test_dir || error
2494         cleanup_test32_mount
2495 }
2496 run_test 32d "open d32d/ext2-mountpoint/../d2/test_dir ========="
2497
2498 test_32e() {
2499         [ -e $DIR/d32e ] && rm -fr $DIR/d32e
2500         test_mkdir -p $DIR/d32e/tmp
2501         TMP_DIR=$DIR/d32e/tmp
2502         ln -s $DIR/d32e $TMP_DIR/symlink11
2503         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2504         $CHECKSTAT -t link $DIR/d32e/tmp/symlink11 || error
2505         $CHECKSTAT -t link $DIR/d32e/symlink01 || error
2506 }
2507 run_test 32e "stat d32e/symlink->tmp/symlink->lustre-subdir ===="
2508
2509 test_32f() {
2510         [ -e $DIR/d32f ] && rm -fr $DIR/d32f
2511         test_mkdir -p $DIR/d32f/tmp
2512         TMP_DIR=$DIR/d32f/tmp
2513         ln -s $DIR/d32f $TMP_DIR/symlink11
2514         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2515         ls $DIR/d32f/tmp/symlink11  || error
2516         ls $DIR/d32f/symlink01 || error
2517 }
2518 run_test 32f "open d32f/symlink->tmp/symlink->lustre-subdir ===="
2519
2520 test_32g() {
2521         TMP_DIR=$DIR/$tdir/tmp
2522         test_mkdir -p $DIR/$tdir/tmp
2523         test_mkdir $DIR/${tdir}2
2524         ln -s $DIR/${tdir}2 $TMP_DIR/symlink12
2525         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2526         $CHECKSTAT -t link $TMP_DIR/symlink12 || error
2527         $CHECKSTAT -t link $DIR/$tdir/symlink02 || error
2528         $CHECKSTAT -t dir -f $TMP_DIR/symlink12 || error
2529         $CHECKSTAT -t dir -f $DIR/$tdir/symlink02 || error
2530 }
2531 run_test 32g "stat d32g/symlink->tmp/symlink->lustre-subdir/${tdir}2"
2532
2533 test_32h() {
2534         rm -fr $DIR/$tdir $DIR/${tdir}2
2535         TMP_DIR=$DIR/$tdir/tmp
2536         test_mkdir -p $DIR/$tdir/tmp
2537         test_mkdir $DIR/${tdir}2
2538         ln -s $DIR/${tdir}2 $TMP_DIR/symlink12
2539         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2540         ls $TMP_DIR/symlink12 || error
2541         ls $DIR/$tdir/symlink02  || error
2542 }
2543 run_test 32h "open d32h/symlink->tmp/symlink->lustre-subdir/${tdir}2"
2544
2545 test_32i() {
2546         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2547         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2548         trap cleanup_test32_mount EXIT
2549         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2550         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2551         touch $DIR/$tdir/test_file
2552         $CHECKSTAT -t file $DIR/$tdir/ext2-mountpoint/../test_file || error
2553         cleanup_test32_mount
2554 }
2555 run_test 32i "stat d32i/ext2-mountpoint/../test_file ==========="
2556
2557 test_32j() {
2558         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2559         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2560         trap cleanup_test32_mount EXIT
2561         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2562         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2563         touch $DIR/$tdir/test_file
2564         cat $DIR/$tdir/ext2-mountpoint/../test_file || error
2565         cleanup_test32_mount
2566 }
2567 run_test 32j "open d32j/ext2-mountpoint/../test_file ==========="
2568
2569 test_32k() {
2570         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2571         rm -fr $DIR/$tdir
2572         trap cleanup_test32_mount EXIT
2573         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2574         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint
2575         test_mkdir -p $DIR/$tdir/d2
2576         touch $DIR/$tdir/d2/test_file || error
2577         $CHECKSTAT -t file $DIR/$tdir/ext2-mountpoint/../d2/test_file || error
2578         cleanup_test32_mount
2579 }
2580 run_test 32k "stat d32k/ext2-mountpoint/../d2/test_file ========"
2581
2582 test_32l() {
2583         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2584         rm -fr $DIR/$tdir
2585         trap cleanup_test32_mount EXIT
2586         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2587         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2588         test_mkdir -p $DIR/$tdir/d2
2589         touch $DIR/$tdir/d2/test_file
2590         cat  $DIR/$tdir/ext2-mountpoint/../d2/test_file || error
2591         cleanup_test32_mount
2592 }
2593 run_test 32l "open d32l/ext2-mountpoint/../d2/test_file ========"
2594
2595 test_32m() {
2596         rm -fr $DIR/d32m
2597         test_mkdir -p $DIR/d32m/tmp
2598         TMP_DIR=$DIR/d32m/tmp
2599         ln -s $DIR $TMP_DIR/symlink11
2600         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2601         $CHECKSTAT -t link $DIR/d32m/tmp/symlink11 || error
2602         $CHECKSTAT -t link $DIR/d32m/symlink01 || error
2603 }
2604 run_test 32m "stat d32m/symlink->tmp/symlink->lustre-root ======"
2605
2606 test_32n() {
2607         rm -fr $DIR/d32n
2608         test_mkdir -p $DIR/d32n/tmp
2609         TMP_DIR=$DIR/d32n/tmp
2610         ln -s $DIR $TMP_DIR/symlink11
2611         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2612         ls -l $DIR/d32n/tmp/symlink11  || error
2613         ls -l $DIR/d32n/symlink01 || error
2614 }
2615 run_test 32n "open d32n/symlink->tmp/symlink->lustre-root ======"
2616
2617 test_32o() {
2618         touch $DIR/$tfile
2619         test_mkdir -p $DIR/d32o/tmp
2620         TMP_DIR=$DIR/d32o/tmp
2621         ln -s $DIR/$tfile $TMP_DIR/symlink12
2622         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2623         $CHECKSTAT -t link $DIR/d32o/tmp/symlink12 || error
2624         $CHECKSTAT -t link $DIR/d32o/symlink02 || error
2625         $CHECKSTAT -t file -f $DIR/d32o/tmp/symlink12 || error
2626         $CHECKSTAT -t file -f $DIR/d32o/symlink02 || error
2627 }
2628 run_test 32o "stat d32o/symlink->tmp/symlink->lustre-root/$tfile"
2629
2630 test_32p() {
2631         log 32p_1
2632         rm -fr $DIR/d32p
2633         log 32p_2
2634         rm -f $DIR/$tfile
2635         log 32p_3
2636         touch $DIR/$tfile
2637         log 32p_4
2638         test_mkdir -p $DIR/d32p/tmp
2639         log 32p_5
2640         TMP_DIR=$DIR/d32p/tmp
2641         log 32p_6
2642         ln -s $DIR/$tfile $TMP_DIR/symlink12
2643         log 32p_7
2644         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2645         log 32p_8
2646         cat $DIR/d32p/tmp/symlink12 || error
2647         log 32p_9
2648         cat $DIR/d32p/symlink02 || error
2649         log 32p_10
2650 }
2651 run_test 32p "open d32p/symlink->tmp/symlink->lustre-root/$tfile"
2652
2653 test_32q() {
2654         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2655         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2656         trap cleanup_test32_mount EXIT
2657         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2658         touch $DIR/$tdir/ext2-mountpoint/under_the_mount
2659         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint
2660         ls $DIR/$tdir/ext2-mountpoint | grep "\<under_the_mount\>" && error
2661         cleanup_test32_mount
2662 }
2663 run_test 32q "stat follows mountpoints in Lustre (should return error)"
2664
2665 test_32r() {
2666         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2667         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2668         trap cleanup_test32_mount EXIT
2669         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2670         touch $DIR/$tdir/ext2-mountpoint/under_the_mount
2671         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint
2672         ls $DIR/$tdir/ext2-mountpoint | grep -q under_the_mount && error || true
2673         cleanup_test32_mount
2674 }
2675 run_test 32r "opendir follows mountpoints in Lustre (should return error)"
2676
2677 test_33aa() {
2678         rm -f $DIR/$tfile
2679         touch $DIR/$tfile
2680         chmod 444 $DIR/$tfile
2681         chown $RUNAS_ID $DIR/$tfile
2682         log 33_1
2683         $RUNAS $OPENFILE -f O_RDWR $DIR/$tfile && error || true
2684         log 33_2
2685 }
2686 run_test 33aa "write file with mode 444 (should return error) ===="
2687
2688 test_33a() {
2689         rm -fr $DIR/d33
2690         test_mkdir -p $DIR/d33
2691         chown $RUNAS_ID $DIR/d33
2692         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $DIR/d33/f33|| error "create"
2693         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $DIR/d33/f33 && \
2694                 error "open RDWR" || true
2695 }
2696 run_test 33a "test open file(mode=0444) with O_RDWR (should return error)"
2697
2698 test_33b() {
2699         rm -fr $DIR/d33
2700         test_mkdir -p $DIR/d33
2701         chown $RUNAS_ID $DIR/d33
2702         $RUNAS $OPENFILE -f 1286739555 $DIR/d33/f33 || true
2703 }
2704 run_test 33b "test open file with malformed flags (No panic)"
2705
2706 test_33c() {
2707         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2708         local ostnum
2709         local ostname
2710         local write_bytes
2711         local all_zeros
2712
2713         remote_ost_nodsh && skip "remote OST with nodsh" && return
2714         all_zeros=:
2715         rm -fr $DIR/d33
2716         test_mkdir -p $DIR/d33
2717         # Read: 0, Write: 4, create/destroy: 2/0, stat: 1, punch: 0
2718
2719         sync
2720         for ostnum in $(seq $OSTCOUNT); do
2721                 # test-framework's OST numbering is one-based, while Lustre's
2722                 # is zero-based
2723                 ostname=$(printf "$FSNAME-OST%.4x" $((ostnum - 1)))
2724                 # Parsing llobdstat's output sucks; we could grep the /proc
2725                 # path, but that's likely to not be as portable as using the
2726                 # llobdstat utility.  So we parse lctl output instead.
2727                 write_bytes=$(do_facet ost$ostnum lctl get_param -n \
2728                         obdfilter/$ostname/stats |
2729                         awk '/^write_bytes/ {print $7}' )
2730                 echo "baseline_write_bytes@$OSTnum/$ostname=$write_bytes"
2731                 if (( ${write_bytes:-0} > 0 ))
2732                 then
2733                         all_zeros=false
2734                         break;
2735                 fi
2736         done
2737
2738         $all_zeros || return 0
2739
2740         # Write four bytes
2741         echo foo > $DIR/d33/bar
2742         # Really write them
2743         sync
2744
2745         # Total up write_bytes after writing.  We'd better find non-zeros.
2746         for ostnum in $(seq $OSTCOUNT); do
2747                 ostname=$(printf "$FSNAME-OST%.4x" $((ostnum - 1)))
2748                 write_bytes=$(do_facet ost$ostnum lctl get_param -n \
2749                         obdfilter/$ostname/stats |
2750                         awk '/^write_bytes/ {print $7}' )
2751                 echo "write_bytes@$OSTnum/$ostname=$write_bytes"
2752                 if (( ${write_bytes:-0} > 0 ))
2753                 then
2754                         all_zeros=false
2755                         break;
2756                 fi
2757         done
2758
2759         if $all_zeros
2760         then
2761                 for ostnum in $(seq $OSTCOUNT); do
2762                         ostname=$(printf "$FSNAME-OST%.4x" $((ostnum - 1)))
2763                         echo "Check that write_bytes is present in obdfilter/*/stats:"
2764                         do_facet ost$ostnum lctl get_param -n \
2765                                 obdfilter/$ostname/stats
2766                 done
2767                 error "OST not keeping write_bytes stats (b22312)"
2768         fi
2769 }
2770 run_test 33c "test llobdstat and write_bytes"
2771
2772 test_33d() {
2773         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 2 MDTs" && return
2774         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2775         local MDTIDX=1
2776         local remote_dir=$DIR/$tdir/remote_dir
2777
2778         test_mkdir -p $DIR/$tdir
2779         $LFS mkdir -i $MDTIDX $remote_dir ||
2780                 error "create remote directory failed"
2781
2782         touch $remote_dir/$tfile
2783         chmod 444 $remote_dir/$tfile
2784         chown $RUNAS_ID $remote_dir/$tfile
2785
2786         $RUNAS $OPENFILE -f O_RDWR $DIR/$tfile && error || true
2787
2788         chown $RUNAS_ID $remote_dir
2789         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $remote_dir/f33 ||
2790                                         error "create" || true
2791         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $remote_dir/f33 &&
2792                                     error "open RDWR" || true
2793         $RUNAS $OPENFILE -f 1286739555 $remote_dir/f33 || true
2794 }
2795 run_test 33d "openfile with 444 modes and malformed flags under remote dir"
2796
2797 test_33e() {
2798         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
2799
2800         mkdir $DIR/$tdir
2801
2802         $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
2803         $LFS setdirstripe -i1 -c2 $DIR/$tdir/striped_dir1
2804         mkdir $DIR/$tdir/local_dir
2805
2806         local s0_mode=$(stat -c%f $DIR/$tdir/striped_dir)
2807         local s1_mode=$(stat -c%f $DIR/$tdir/striped_dir1)
2808         local l_mode=$(stat -c%f $DIR/$tdir/local_dir)
2809
2810         [ "$l_mode" = "$s0_mode" -a "$l_mode" = "$s1_mode" ] ||
2811                 error "mkdir $l_mode striped0 $s0_mode striped1 $s1_mode"
2812
2813         rmdir $DIR/$tdir/* || error "rmdir failed"
2814
2815         umask 777
2816         $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
2817         $LFS setdirstripe -i1 -c2 $DIR/$tdir/striped_dir1
2818         mkdir $DIR/$tdir/local_dir
2819
2820         s0_mode=$(stat -c%f $DIR/$tdir/striped_dir)
2821         s1_mode=$(stat -c%f $DIR/$tdir/striped_dir1)
2822         l_mode=$(stat -c%f $DIR/$tdir/local_dir)
2823
2824         [ "$l_mode" = "$s0_mode" -a "$l_mode" = "$s1_mode" ] ||
2825                 error "mkdir $l_mode striped0 $s0_mode striped1 $s1_mode 777"
2826
2827         rmdir $DIR/$tdir/* || error "rmdir(umask 777) failed"
2828
2829         umask 000
2830         $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
2831         $LFS setdirstripe -i1 -c2 $DIR/$tdir/striped_dir1
2832         mkdir $DIR/$tdir/local_dir
2833
2834         s0_mode=$(stat -c%f $DIR/$tdir/striped_dir)
2835         s1_mode=$(stat -c%f $DIR/$tdir/striped_dir1)
2836         l_mode=$(stat -c%f $DIR/$tdir/local_dir)
2837
2838         [ "$l_mode" = "$s0_mode" -a "$l_mode" = "$s1_mode" ] ||
2839                 error "mkdir $l_mode striped0 $s0_mode striped1 $s1_mode 0"
2840 }
2841 run_test 33e "mkdir and striped directory should have same mode"
2842
2843 cleanup_33f() {
2844         trap 0
2845         do_facet $SINGLEMDS $LCTL set_param mdt.*.enable_remote_dir_gid=0
2846 }
2847
2848 test_33f() {
2849         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
2850         remote_mds_nodsh && skip "remote MDS with nodsh" && return
2851
2852         mkdir $DIR/$tdir
2853         chmod go+rwx $DIR/$tdir
2854         do_facet $SINGLEMDS $LCTL set_param mdt.*.enable_remote_dir_gid=-1
2855         trap cleanup_33f EXIT
2856
2857         $RUNAS lfs mkdir -c$MDSCOUNT $DIR/$tdir/striped_dir ||
2858                 error "cannot create striped directory"
2859
2860         $RUNAS touch $DIR/$tdir/striped_dir/{0..16} ||
2861                 error "cannot create files in striped directory"
2862
2863         $RUNAS rm $DIR/$tdir/striped_dir/{0..16} ||
2864                 error "cannot remove files in striped directory"
2865
2866         $RUNAS rmdir $DIR/$tdir/striped_dir ||
2867                 error "cannot remove striped directory"
2868
2869         cleanup_33f
2870 }
2871 run_test 33f "nonroot user can create, access, and remove a striped directory"
2872
2873 test_33g() {
2874         mkdir -p $DIR/$tdir/dir2
2875
2876         local err=$($RUNAS mkdir $DIR/$tdir/dir2 2>&1)
2877         echo $err
2878         [[ $err =~ "exists" ]] || error "Not exists error"
2879 }
2880 run_test 33g "nonroot user create already existing root created file"
2881
2882 TEST_34_SIZE=${TEST_34_SIZE:-2000000000000}
2883 test_34a() {
2884         rm -f $DIR/f34
2885         $MCREATE $DIR/f34 || error
2886         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" || error
2887         $TRUNCATE $DIR/f34 $TEST_34_SIZE || error
2888         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" || error
2889         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2890 }
2891 run_test 34a "truncate file that has not been opened ==========="
2892
2893 test_34b() {
2894         [ ! -f $DIR/f34 ] && test_34a
2895         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2896         $OPENFILE -f O_RDONLY $DIR/f34
2897         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" || error
2898         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2899 }
2900 run_test 34b "O_RDONLY opening file doesn't create objects ====="
2901
2902 test_34c() {
2903         [ ! -f $DIR/f34 ] && test_34a
2904         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2905         $OPENFILE -f O_RDWR $DIR/f34
2906         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" && error
2907         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2908 }
2909 run_test 34c "O_RDWR opening file-with-size works =============="
2910
2911 test_34d() {
2912         [ ! -f $DIR/f34 ] && test_34a
2913         dd if=/dev/zero of=$DIR/f34 conv=notrunc bs=4k count=1 || error
2914         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2915         rm $DIR/f34
2916 }
2917 run_test 34d "write to sparse file ============================="
2918
2919 test_34e() {
2920         rm -f $DIR/f34e
2921         $MCREATE $DIR/f34e || error
2922         $TRUNCATE $DIR/f34e 1000 || error
2923         $CHECKSTAT -s 1000 $DIR/f34e || error
2924         $OPENFILE -f O_RDWR $DIR/f34e
2925         $CHECKSTAT -s 1000 $DIR/f34e || error
2926 }
2927 run_test 34e "create objects, some with size and some without =="
2928
2929 test_34f() { # bug 6242, 6243
2930         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2931         SIZE34F=48000
2932         rm -f $DIR/f34f
2933         $MCREATE $DIR/f34f || error
2934         $TRUNCATE $DIR/f34f $SIZE34F || error "truncating $DIR/f3f to $SIZE34F"
2935         dd if=$DIR/f34f of=$TMP/f34f
2936         $CHECKSTAT -s $SIZE34F $TMP/f34f || error "$TMP/f34f not $SIZE34F bytes"
2937         dd if=/dev/zero of=$TMP/f34fzero bs=$SIZE34F count=1
2938         cmp $DIR/f34f $TMP/f34fzero || error "$DIR/f34f not all zero"
2939         cmp $TMP/f34f $TMP/f34fzero || error "$TMP/f34f not all zero"
2940         rm $TMP/f34f $TMP/f34fzero $DIR/f34f
2941 }
2942 run_test 34f "read from a file with no objects until EOF ======="
2943
2944 test_34g() {
2945         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2946         dd if=/dev/zero of=$DIR/$tfile bs=1 count=100 seek=$TEST_34_SIZE || error
2947         $TRUNCATE $DIR/$tfile $((TEST_34_SIZE / 2))|| error
2948         $CHECKSTAT -s $((TEST_34_SIZE / 2)) $DIR/$tfile || error "truncate failed"
2949         cancel_lru_locks osc
2950         $CHECKSTAT -s $((TEST_34_SIZE / 2)) $DIR/$tfile || \
2951                 error "wrong size after lock cancel"
2952
2953         $TRUNCATE $DIR/$tfile $TEST_34_SIZE || error
2954         $CHECKSTAT -s $TEST_34_SIZE $DIR/$tfile || \
2955                 error "expanding truncate failed"
2956         cancel_lru_locks osc
2957         $CHECKSTAT -s $TEST_34_SIZE $DIR/$tfile || \
2958                 error "wrong expanded size after lock cancel"
2959 }
2960 run_test 34g "truncate long file ==============================="
2961
2962 test_34h() {
2963         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2964         local gid=10
2965         local sz=1000
2966
2967         dd if=/dev/zero of=$DIR/$tfile bs=1M count=10 || error
2968         sync # Flush the cache so that multiop below does not block on cache
2969              # flush when getting the group lock
2970         $MULTIOP $DIR/$tfile OG${gid}T${sz}g${gid}c &
2971         MULTIPID=$!
2972
2973         # Since just timed wait is not good enough, let's do a sync write
2974         # that way we are sure enough time for a roundtrip + processing
2975         # passed + 2 seconds of extra margin.
2976         dd if=/dev/zero of=$DIR/${tfile}-1 bs=4096 oflag=direct count=1
2977         rm $DIR/${tfile}-1
2978         sleep 2
2979
2980         if [[ `ps h -o comm -p $MULTIPID` == "multiop" ]]; then
2981                 error "Multiop blocked on ftruncate, pid=$MULTIPID"
2982                 kill -9 $MULTIPID
2983         fi
2984         wait $MULTIPID
2985         local nsz=`stat -c %s $DIR/$tfile`
2986         [[ $nsz == $sz ]] || error "New size wrong $nsz != $sz"
2987 }
2988 run_test 34h "ftruncate file under grouplock should not block"
2989
2990 test_35a() {
2991         cp /bin/sh $DIR/f35a
2992         chmod 444 $DIR/f35a
2993         chown $RUNAS_ID $DIR/f35a
2994         $RUNAS $DIR/f35a && error || true
2995         rm $DIR/f35a
2996 }
2997 run_test 35a "exec file with mode 444 (should return and not leak) ====="
2998
2999 test_36a() {
3000         rm -f $DIR/f36
3001         utime $DIR/f36 || error
3002 }
3003 run_test 36a "MDS utime check (mknod, utime) ==================="
3004
3005 test_36b() {
3006         echo "" > $DIR/f36
3007         utime $DIR/f36 || error
3008 }
3009 run_test 36b "OST utime check (open, utime) ===================="
3010
3011 test_36c() {
3012         rm -f $DIR/d36/f36
3013         test_mkdir $DIR/d36
3014         chown $RUNAS_ID $DIR/d36
3015         $RUNAS utime $DIR/d36/f36 || error
3016 }
3017 run_test 36c "non-root MDS utime check (mknod, utime) =========="
3018
3019 test_36d() {
3020         [ ! -d $DIR/d36 ] && test_36c
3021         echo "" > $DIR/d36/f36
3022         $RUNAS utime $DIR/d36/f36 || error
3023 }
3024 run_test 36d "non-root OST utime check (open, utime) ==========="
3025
3026 test_36e() {
3027         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID -- skipping" && return
3028         test_mkdir -p $DIR/$tdir
3029         touch $DIR/$tdir/$tfile
3030         $RUNAS utime $DIR/$tdir/$tfile && \
3031                 error "utime worked, expected failure" || true
3032 }
3033 run_test 36e "utime on non-owned file (should return error) ===="
3034
3035 subr_36fh() {
3036         local fl="$1"
3037         local LANG_SAVE=$LANG
3038         local LC_LANG_SAVE=$LC_LANG
3039         export LANG=C LC_LANG=C # for date language
3040
3041         DATESTR="Dec 20  2000"
3042         test_mkdir -p $DIR/$tdir
3043         lctl set_param fail_loc=$fl
3044         date; date +%s
3045         cp /etc/hosts $DIR/$tdir/$tfile
3046         sync & # write RPC generated with "current" inode timestamp, but delayed
3047         sleep 1
3048         touch --date="$DATESTR" $DIR/$tdir/$tfile # setattr timestamp in past
3049         LS_BEFORE="`ls -l $DIR/$tdir/$tfile`" # old timestamp from client cache
3050         cancel_lru_locks osc
3051         LS_AFTER="`ls -l $DIR/$tdir/$tfile`"  # timestamp from OST object
3052         date; date +%s
3053         [ "$LS_BEFORE" != "$LS_AFTER" ] && \
3054                 echo "BEFORE: $LS_BEFORE" && \
3055                 echo "AFTER : $LS_AFTER" && \
3056                 echo "WANT  : $DATESTR" && \
3057                 error "$DIR/$tdir/$tfile timestamps changed" || true
3058
3059         export LANG=$LANG_SAVE LC_LANG=$LC_LANG_SAVE
3060 }
3061
3062 test_36f() {
3063         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3064         #define OBD_FAIL_OST_BRW_PAUSE_BULK 0x214
3065         subr_36fh "0x80000214"
3066 }
3067 run_test 36f "utime on file racing with OST BRW write =========="
3068
3069 test_36g() {
3070         remote_ost_nodsh && skip "remote OST with nodsh" && return
3071         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3072         local fmd_max_age
3073         local fmd_before
3074         local fmd_after
3075
3076         test_mkdir -p $DIR/$tdir
3077         fmd_max_age=$(do_facet ost1 \
3078                 "lctl get_param -n obdfilter.*.client_cache_seconds 2> /dev/null | \
3079                 head -n 1")
3080
3081         fmd_before=$(do_facet ost1 \
3082                 "awk '/ll_fmd_cache/ {print \\\$2}' /proc/slabinfo")
3083         touch $DIR/$tdir/$tfile
3084         sleep $((fmd_max_age + 12))
3085         fmd_after=$(do_facet ost1 \
3086                 "awk '/ll_fmd_cache/ {print \\\$2}' /proc/slabinfo")
3087
3088         echo "fmd_before: $fmd_before"
3089         echo "fmd_after: $fmd_after"
3090         [[ $fmd_after -gt $fmd_before ]] &&
3091                 echo "AFTER: $fmd_after > BEFORE: $fmd_before" &&
3092                 error "fmd didn't expire after ping" || true
3093 }
3094 run_test 36g "filter mod data cache expiry ====================="
3095
3096 test_36h() {
3097         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3098         #define OBD_FAIL_OST_BRW_PAUSE_BULK2 0x227
3099         subr_36fh "0x80000227"
3100 }
3101 run_test 36h "utime on file racing with OST BRW write =========="
3102
3103 test_36i() {
3104         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
3105
3106         test_mkdir $DIR/$tdir
3107         $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/striped_dir
3108
3109         local mtime=$(stat -c%Y $DIR/$tdir/striped_dir)
3110         local new_mtime=$((mtime + 200))
3111
3112         #change Modify time of striped dir
3113         touch -m -d @$new_mtime $DIR/$tdir/striped_dir ||
3114                         error "change mtime failed"
3115
3116         local got=$(stat -c%Y $DIR/$tdir/striped_dir)
3117
3118         [ "$new_mtime" = "$got" ] || error "expect $new_mtime got $got"
3119 }
3120 run_test 36i "change mtime on striped directory"
3121
3122 # test_37 - duplicate with tests 32q 32r
3123
3124 test_38() {
3125         local file=$DIR/$tfile
3126         touch $file
3127         openfile -f O_DIRECTORY $file
3128         local RC=$?
3129         local ENOTDIR=20
3130         [ $RC -eq 0 ] && error "opened file $file with O_DIRECTORY" || true
3131         [ $RC -eq $ENOTDIR ] || error "error $RC should be ENOTDIR ($ENOTDIR)"
3132 }
3133 run_test 38 "open a regular file with O_DIRECTORY should return -ENOTDIR ==="
3134
3135 test_39a() { # was test_39
3136         touch $DIR/$tfile
3137         touch $DIR/${tfile}2
3138 #       ls -l  $DIR/$tfile $DIR/${tfile}2
3139 #       ls -lu  $DIR/$tfile $DIR/${tfile}2
3140 #       ls -lc  $DIR/$tfile $DIR/${tfile}2
3141         sleep 2
3142         $OPENFILE -f O_CREAT:O_TRUNC:O_WRONLY $DIR/${tfile}2
3143         if [ ! $DIR/${tfile}2 -nt $DIR/$tfile ]; then
3144                 echo "mtime"
3145                 ls -l --full-time $DIR/$tfile $DIR/${tfile}2
3146                 echo "atime"
3147                 ls -lu --full-time $DIR/$tfile $DIR/${tfile}2
3148                 echo "ctime"
3149                 ls -lc --full-time $DIR/$tfile $DIR/${tfile}2
3150                 error "O_TRUNC didn't change timestamps"
3151         fi
3152 }
3153 run_test 39a "mtime changed on create ==========================="
3154
3155 test_39b() {
3156         test_mkdir -p -c1 $DIR/$tdir
3157         cp -p /etc/passwd $DIR/$tdir/fopen
3158         cp -p /etc/passwd $DIR/$tdir/flink
3159         cp -p /etc/passwd $DIR/$tdir/funlink
3160         cp -p /etc/passwd $DIR/$tdir/frename
3161         ln $DIR/$tdir/funlink $DIR/$tdir/funlink2
3162
3163         sleep 1
3164         echo "aaaaaa" >> $DIR/$tdir/fopen
3165         echo "aaaaaa" >> $DIR/$tdir/flink
3166         echo "aaaaaa" >> $DIR/$tdir/funlink
3167         echo "aaaaaa" >> $DIR/$tdir/frename
3168
3169         local open_new=`stat -c %Y $DIR/$tdir/fopen`
3170         local link_new=`stat -c %Y $DIR/$tdir/flink`
3171         local unlink_new=`stat -c %Y $DIR/$tdir/funlink`
3172         local rename_new=`stat -c %Y $DIR/$tdir/frename`
3173
3174         cat $DIR/$tdir/fopen > /dev/null
3175         ln $DIR/$tdir/flink $DIR/$tdir/flink2
3176         rm -f $DIR/$tdir/funlink2
3177         mv -f $DIR/$tdir/frename $DIR/$tdir/frename2
3178
3179         for (( i=0; i < 2; i++ )) ; do
3180                 local open_new2=`stat -c %Y $DIR/$tdir/fopen`
3181                 local link_new2=`stat -c %Y $DIR/$tdir/flink`
3182                 local unlink_new2=`stat -c %Y $DIR/$tdir/funlink`
3183                 local rename_new2=`stat -c %Y $DIR/$tdir/frename2`
3184
3185                 [ $open_new2 -eq $open_new ] || error "open file reverses mtime"
3186                 [ $link_new2 -eq $link_new ] || error "link file reverses mtime"
3187                 [ $unlink_new2 -eq $unlink_new ] || error "unlink file reverses mtime"
3188                 [ $rename_new2 -eq $rename_new ] || error "rename file reverses mtime"
3189
3190                 cancel_lru_locks osc
3191                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3192         done
3193 }
3194 run_test 39b "mtime change on open, link, unlink, rename  ======"
3195
3196 # this should be set to past
3197 TEST_39_MTIME=`date -d "1 year ago" +%s`
3198
3199 # bug 11063
3200 test_39c() {
3201         touch $DIR1/$tfile
3202         sleep 2
3203         local mtime0=`stat -c %Y $DIR1/$tfile`
3204
3205         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3206         local mtime1=`stat -c %Y $DIR1/$tfile`
3207         [ "$mtime1" = $TEST_39_MTIME ] || \
3208                 error "mtime is not set to past: $mtime1, should be $TEST_39_MTIME"
3209
3210         local d1=`date +%s`
3211         echo hello >> $DIR1/$tfile
3212         local d2=`date +%s`
3213         local mtime2=`stat -c %Y $DIR1/$tfile`
3214         [ "$mtime2" -ge "$d1" ] && [ "$mtime2" -le "$d2" ] || \
3215                 error "mtime is not updated on write: $d1 <= $mtime2 <= $d2"
3216
3217         mv $DIR1/$tfile $DIR1/$tfile-1
3218
3219         for (( i=0; i < 2; i++ )) ; do
3220                 local mtime3=`stat -c %Y $DIR1/$tfile-1`
3221                 [ "$mtime2" = "$mtime3" ] || \
3222                         error "mtime ($mtime2) changed (to $mtime3) on rename"
3223
3224                 cancel_lru_locks osc
3225                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3226         done
3227 }
3228 run_test 39c "mtime change on rename ==========================="
3229
3230 # bug 21114
3231 test_39d() {
3232         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3233         touch $DIR1/$tfile
3234
3235         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3236
3237         for (( i=0; i < 2; i++ )) ; do
3238                 local mtime=`stat -c %Y $DIR1/$tfile`
3239                 [ $mtime = $TEST_39_MTIME ] || \
3240                         error "mtime($mtime) is not set to $TEST_39_MTIME"
3241
3242                 cancel_lru_locks osc
3243                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3244         done
3245 }
3246 run_test 39d "create, utime, stat =============================="
3247
3248 # bug 21114
3249 test_39e() {
3250         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3251         touch $DIR1/$tfile
3252         local mtime1=`stat -c %Y $DIR1/$tfile`
3253
3254         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3255
3256         for (( i=0; i < 2; i++ )) ; do
3257                 local mtime2=`stat -c %Y $DIR1/$tfile`
3258                 [ $mtime2 = $TEST_39_MTIME ] || \
3259                         error "mtime($mtime2) is not set to $TEST_39_MTIME"
3260
3261                 cancel_lru_locks osc
3262                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3263         done
3264 }
3265 run_test 39e "create, stat, utime, stat ========================"
3266
3267 # bug 21114
3268 test_39f() {
3269         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3270         touch $DIR1/$tfile
3271         mtime1=`stat -c %Y $DIR1/$tfile`
3272
3273         sleep 2
3274         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3275
3276         for (( i=0; i < 2; i++ )) ; do
3277                 local mtime2=`stat -c %Y $DIR1/$tfile`
3278                 [ $mtime2 = $TEST_39_MTIME ] || \
3279                         error "mtime($mtime2) is not set to $TEST_39_MTIME"
3280
3281                 cancel_lru_locks osc
3282                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3283         done
3284 }
3285 run_test 39f "create, stat, sleep, utime, stat ================="
3286
3287 # bug 11063
3288 test_39g() {
3289         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3290         echo hello >> $DIR1/$tfile
3291         local mtime1=`stat -c %Y $DIR1/$tfile`
3292
3293         sleep 2
3294         chmod o+r $DIR1/$tfile
3295
3296         for (( i=0; i < 2; i++ )) ; do
3297                 local mtime2=`stat -c %Y $DIR1/$tfile`
3298                 [ "$mtime1" = "$mtime2" ] || \
3299                         error "lost mtime: $mtime2, should be $mtime1"
3300
3301                 cancel_lru_locks osc
3302                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3303         done
3304 }
3305 run_test 39g "write, chmod, stat ==============================="
3306
3307 # bug 11063
3308 test_39h() {
3309         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3310         touch $DIR1/$tfile
3311         sleep 1
3312
3313         local d1=`date`
3314         echo hello >> $DIR1/$tfile
3315         local mtime1=`stat -c %Y $DIR1/$tfile`
3316
3317         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3318         local d2=`date`
3319         if [ "$d1" != "$d2" ]; then
3320                 echo "write and touch not within one second"
3321         else
3322                 for (( i=0; i < 2; i++ )) ; do
3323                         local mtime2=`stat -c %Y $DIR1/$tfile`
3324                         [ "$mtime2" = $TEST_39_MTIME ] || \
3325                                 error "lost mtime: $mtime2, should be $TEST_39_MTIME"
3326
3327                         cancel_lru_locks osc
3328                         if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3329                 done
3330         fi
3331 }
3332 run_test 39h "write, utime within one second, stat ============="
3333
3334 test_39i() {
3335         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3336         touch $DIR1/$tfile
3337         sleep 1
3338
3339         echo hello >> $DIR1/$tfile
3340         local mtime1=`stat -c %Y $DIR1/$tfile`
3341
3342         mv $DIR1/$tfile $DIR1/$tfile-1
3343
3344         for (( i=0; i < 2; i++ )) ; do
3345                 local mtime2=`stat -c %Y $DIR1/$tfile-1`
3346
3347                 [ "$mtime1" = "$mtime2" ] || \
3348                         error "lost mtime: $mtime2, should be $mtime1"
3349
3350                 cancel_lru_locks osc
3351                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3352         done
3353 }
3354 run_test 39i "write, rename, stat =============================="
3355
3356 test_39j() {
3357         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3358         start_full_debug_logging
3359         touch $DIR1/$tfile
3360         sleep 1
3361
3362         #define OBD_FAIL_OSC_DELAY_SETTIME       0x412
3363         lctl set_param fail_loc=0x80000412
3364         multiop_bg_pause $DIR1/$tfile oO_RDWR:w2097152_c ||
3365                 error "multiop failed"
3366         local multipid=$!
3367         local mtime1=`stat -c %Y $DIR1/$tfile`
3368
3369         mv $DIR1/$tfile $DIR1/$tfile-1
3370
3371         kill -USR1 $multipid
3372         wait $multipid || error "multiop close failed"
3373
3374         for (( i=0; i < 2; i++ )) ; do
3375                 local mtime2=`stat -c %Y $DIR1/$tfile-1`
3376                 [ "$mtime1" = "$mtime2" ] ||
3377                         error "mtime is lost on close: $mtime2, " \
3378                               "should be $mtime1"
3379
3380                 cancel_lru_locks osc
3381                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3382         done
3383         lctl set_param fail_loc=0
3384         stop_full_debug_logging
3385 }
3386 run_test 39j "write, rename, close, stat ======================="
3387
3388 test_39k() {
3389         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3390         touch $DIR1/$tfile
3391         sleep 1
3392
3393         multiop_bg_pause $DIR1/$tfile oO_RDWR:w2097152_c || error "multiop failed"
3394         local multipid=$!
3395         local mtime1=`stat -c %Y $DIR1/$tfile`
3396
3397         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3398
3399         kill -USR1 $multipid
3400         wait $multipid || error "multiop close failed"
3401
3402         for (( i=0; i < 2; i++ )) ; do
3403                 local mtime2=`stat -c %Y $DIR1/$tfile`
3404
3405                 [ "$mtime2" = $TEST_39_MTIME ] || \
3406                         error "mtime is lost on close: $mtime2, should be $TEST_39_MTIME"
3407
3408                 cancel_lru_locks osc
3409                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3410         done
3411 }
3412 run_test 39k "write, utime, close, stat ========================"
3413
3414 # this should be set to future
3415 TEST_39_ATIME=`date -d "1 year" +%s`
3416
3417 test_39l() {
3418         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3419         remote_mds_nodsh && skip "remote MDS with nodsh" && return
3420         local atime_diff=$(do_facet $SINGLEMDS \
3421                                 lctl get_param -n mdd.*MDT0000*.atime_diff)
3422         rm -rf $DIR/$tdir
3423         mkdir -p $DIR/$tdir
3424
3425         # test setting directory atime to future
3426         touch -a -d @$TEST_39_ATIME $DIR/$tdir
3427         local atime=$(stat -c %X $DIR/$tdir)
3428         [ "$atime" = $TEST_39_ATIME ] ||
3429                 error "atime is not set to future: $atime, $TEST_39_ATIME"
3430
3431         # test setting directory atime from future to now
3432         local now=$(date +%s)
3433         touch -a -d @$now $DIR/$tdir
3434
3435         atime=$(stat -c %X $DIR/$tdir)
3436         [ "$atime" -eq "$now"  ] ||
3437                 error "atime is not updated from future: $atime, $now"
3438
3439         do_facet $SINGLEMDS lctl set_param -n mdd.*MDT0000*.atime_diff=2
3440         sleep 3
3441
3442         # test setting directory atime when now > dir atime + atime_diff
3443         local d1=$(date +%s)
3444         ls $DIR/$tdir
3445         local d2=$(date +%s)
3446         cancel_lru_locks mdc
3447         atime=$(stat -c %X $DIR/$tdir)
3448         [ "$atime" -ge "$d1" -a "$atime" -le "$d2" ] ||
3449                 error "atime is not updated  : $atime, should be $d2"
3450
3451         do_facet $SINGLEMDS lctl set_param -n mdd.*MDT0000*.atime_diff=60
3452         sleep 3
3453
3454         # test not setting directory atime when now < dir atime + atime_diff
3455         ls $DIR/$tdir
3456         cancel_lru_locks mdc
3457         atime=$(stat -c %X $DIR/$tdir)
3458         [ "$atime" -ge "$d1" -a "$atime" -le "$d2" ] ||
3459                 error "atime is updated to $atime, should remain $d1<atime<$d2"
3460
3461         do_facet $SINGLEMDS \
3462                 lctl set_param -n mdd.*MDT0000*.atime_diff=$atime_diff
3463 }
3464 run_test 39l "directory atime update ==========================="
3465
3466 test_39m() {
3467         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3468         touch $DIR1/$tfile
3469         sleep 2
3470         local far_past_mtime=$(date -d "May 29 1953" +%s)
3471         local far_past_atime=$(date -d "Dec 17 1903" +%s)
3472
3473         touch -m -d @$far_past_mtime $DIR1/$tfile
3474         touch -a -d @$far_past_atime $DIR1/$tfile
3475
3476         for (( i=0; i < 2; i++ )) ; do
3477                 local timestamps=$(stat -c "%X %Y" $DIR1/$tfile)
3478                 [ "$timestamps" = "$far_past_atime $far_past_mtime" ] || \
3479                         error "atime or mtime set incorrectly"
3480
3481                 cancel_lru_locks osc
3482                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3483         done
3484 }
3485 run_test 39m "test atime and mtime before 1970"
3486
3487 test_39n() { # LU-3832
3488         remote_mds_nodsh && skip "remote MDS with nodsh" && return
3489         local atime_diff=$(do_facet $SINGLEMDS \
3490                 lctl get_param -n mdd.*MDT0000*.atime_diff)
3491         local atime0
3492         local atime1
3493         local atime2
3494
3495         do_facet $SINGLEMDS lctl set_param -n mdd.*MDT0000*.atime_diff=1
3496
3497         rm -rf $DIR/$tfile
3498         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 status=noxfer
3499         atime0=$(stat -c %X $DIR/$tfile)
3500
3501         sleep 5
3502         $MULTIOP $DIR/$tfile oO_RDONLY:O_NOATIME:r4096c
3503         atime1=$(stat -c %X $DIR/$tfile)
3504
3505         sleep 5
3506         cancel_lru_locks mdc
3507         cancel_lru_locks osc
3508         $MULTIOP $DIR/$tfile oO_RDONLY:O_NOATIME:r4096c
3509         atime2=$(stat -c %X $DIR/$tfile)
3510
3511         do_facet $SINGLEMDS \
3512                 lctl set_param -n mdd.*MDT0000*.atime_diff=$atime_diff
3513
3514         [ "$atime0" -eq "$atime1" ] || error "atime0 $atime0 != atime1 $atime1"
3515         [ "$atime1" -eq "$atime2" ] || error "atime0 $atime0 != atime1 $atime1"
3516 }
3517 run_test 39n "check that O_NOATIME is honored"
3518
3519 test_39o() {
3520         TESTDIR=$DIR/$tdir/$tfile
3521         [ -e $TESTDIR ] && rm -rf $TESTDIR
3522         mkdir -p $TESTDIR
3523         cd $TESTDIR
3524         links1=2
3525         ls
3526         mkdir a b
3527         ls
3528         links2=$(stat -c %h .)
3529         [ $(($links1 + 2)) != $links2 ] &&
3530                 error "wrong links count $(($links1 + 2)) != $links2"
3531         rmdir b
3532         links3=$(stat -c %h .)
3533         [ $(($links1 + 1)) != $links3 ] &&
3534                 error "wrong links count $links1 != $links3"
3535         return 0
3536 }
3537 run_test 39o "directory cached attributes updated after create ========"
3538
3539 test_39p() {
3540         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 2 MDTs" && return
3541         local MDTIDX=1
3542         TESTDIR=$DIR/$tdir/$tfile
3543         [ -e $TESTDIR ] && rm -rf $TESTDIR
3544         test_mkdir -p $TESTDIR
3545         cd $TESTDIR
3546         links1=2
3547         ls
3548         $LFS mkdir -i $MDTIDX $TESTDIR/remote_dir1
3549         $LFS mkdir -i $MDTIDX $TESTDIR/remote_dir2
3550         ls
3551         links2=$(stat -c %h .)
3552         [ $(($links1 + 2)) != $links2 ] &&
3553                 error "wrong links count $(($links1 + 2)) != $links2"
3554         rmdir remote_dir2
3555         links3=$(stat -c %h .)
3556         [ $(($links1 + 1)) != $links3 ] &&
3557                 error "wrong links count $links1 != $links3"
3558         return 0
3559 }
3560 run_test 39p "remote directory cached attributes updated after create ========"
3561
3562
3563 test_39q() { # LU-8041
3564         local testdir=$DIR/$tdir
3565         mkdir -p $testdir
3566         multiop_bg_pause $testdir D_c || error "multiop failed"
3567         local multipid=$!
3568         cancel_lru_locks mdc
3569         kill -USR1 $multipid
3570         local atime=$(stat -c %X $testdir)
3571         [ "$atime" -ne 0 ] || error "atime is zero"
3572 }
3573 run_test 39q "close won't zero out atime"
3574
3575 test_40() {
3576         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1
3577         $RUNAS $OPENFILE -f O_WRONLY:O_TRUNC $DIR/$tfile &&
3578                 error "openfile O_WRONLY:O_TRUNC $tfile failed"
3579         $CHECKSTAT -t file -s 4096 $DIR/$tfile ||
3580                 error "$tfile is not 4096 bytes in size"
3581 }
3582 run_test 40 "failed open(O_TRUNC) doesn't truncate ============="
3583
3584 test_41() {
3585         # bug 1553
3586         small_write $DIR/f41 18
3587 }
3588 run_test 41 "test small file write + fstat ====================="
3589
3590 count_ost_writes() {
3591         lctl get_param -n osc.*.stats |
3592                 awk -vwrites=0 '/ost_write/ { writes += $2 } \
3593                         END { printf("%0.0f", writes) }'
3594 }
3595
3596 # decent default
3597 WRITEBACK_SAVE=500
3598 DIRTY_RATIO_SAVE=40
3599 MAX_DIRTY_RATIO=50
3600 BG_DIRTY_RATIO_SAVE=10
3601 MAX_BG_DIRTY_RATIO=25
3602
3603 start_writeback() {
3604         trap 0
3605         # in 2.6, restore /proc/sys/vm/dirty_writeback_centisecs,
3606         # dirty_ratio, dirty_background_ratio
3607         if [ -f /proc/sys/vm/dirty_writeback_centisecs ]; then
3608                 sysctl -w vm.dirty_writeback_centisecs=$WRITEBACK_SAVE
3609                 sysctl -w vm.dirty_background_ratio=$BG_DIRTY_RATIO_SAVE
3610                 sysctl -w vm.dirty_ratio=$DIRTY_RATIO_SAVE
3611         else
3612                 # if file not here, we are a 2.4 kernel
3613                 kill -CONT `pidof kupdated`
3614         fi
3615 }
3616
3617 stop_writeback() {
3618         # setup the trap first, so someone cannot exit the test at the
3619         # exact wrong time and mess up a machine
3620         trap start_writeback EXIT
3621         # in 2.6, save and 0 /proc/sys/vm/dirty_writeback_centisecs
3622         if [ -f /proc/sys/vm/dirty_writeback_centisecs ]; then
3623                 WRITEBACK_SAVE=`sysctl -n vm.dirty_writeback_centisecs`
3624                 sysctl -w vm.dirty_writeback_centisecs=0
3625                 sysctl -w vm.dirty_writeback_centisecs=0
3626                 # save and increase /proc/sys/vm/dirty_ratio
3627                 DIRTY_RATIO_SAVE=`sysctl -n vm.dirty_ratio`
3628                 sysctl -w vm.dirty_ratio=$MAX_DIRTY_RATIO
3629                 # save and increase /proc/sys/vm/dirty_background_ratio
3630                 BG_DIRTY_RATIO_SAVE=`sysctl -n vm.dirty_background_ratio`
3631                 sysctl -w vm.dirty_background_ratio=$MAX_BG_DIRTY_RATIO
3632         else
3633                 # if file not here, we are a 2.4 kernel
3634                 kill -STOP `pidof kupdated`
3635         fi
3636 }
3637
3638 # ensure that all stripes have some grant before we test client-side cache
3639 setup_test42() {
3640         for i in `seq -f $DIR/f42-%g 1 $OSTCOUNT`; do
3641                 dd if=/dev/zero of=$i bs=4k count=1
3642                 rm $i
3643         done
3644 }
3645
3646 # Tests 42* verify that our behaviour is correct WRT caching, file closure,
3647 # file truncation, and file removal.
3648 test_42a() {
3649         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3650         setup_test42
3651         cancel_lru_locks osc
3652         stop_writeback
3653         sync; sleep 1; sync # just to be safe
3654         BEFOREWRITES=`count_ost_writes`
3655         lctl get_param -n osc.*[oO][sS][cC][_-]*.cur_grant_bytes | grep "[0-9]"
3656         dd if=/dev/zero of=$DIR/f42a bs=1024 count=100
3657         AFTERWRITES=`count_ost_writes`
3658         [ $BEFOREWRITES -eq $AFTERWRITES ] || \
3659                 error "$BEFOREWRITES < $AFTERWRITES"
3660         start_writeback
3661 }
3662 run_test 42a "ensure that we don't flush on close"
3663
3664 test_42b() {
3665         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3666         setup_test42
3667         cancel_lru_locks osc
3668         stop_writeback
3669         sync
3670         dd if=/dev/zero of=$DIR/f42b bs=1024 count=100
3671         BEFOREWRITES=$(count_ost_writes)
3672         $MUNLINK $DIR/f42b || error "$MUNLINK $DIR/f42b: $?"
3673         AFTERWRITES=$(count_ost_writes)
3674         if [[ $BEFOREWRITES -lt $AFTERWRITES ]]; then
3675                 error "$BEFOREWRITES < $AFTERWRITES on unlink"
3676         fi
3677         BEFOREWRITES=$(count_ost_writes)
3678         sync || error "sync: $?"
3679         AFTERWRITES=$(count_ost_writes)
3680         if [[ $BEFOREWRITES -lt $AFTERWRITES ]]; then
3681                 error "$BEFOREWRITES < $AFTERWRITES on sync"
3682         fi
3683         dmesg | grep 'error from obd_brw_async' && error 'error writing back'
3684         start_writeback
3685         return 0
3686 }
3687 run_test 42b "test destroy of file with cached dirty data ======"
3688
3689 # if these tests just want to test the effect of truncation,
3690 # they have to be very careful.  consider:
3691 # - the first open gets a {0,EOF}PR lock
3692 # - the first write conflicts and gets a {0, count-1}PW
3693 # - the rest of the writes are under {count,EOF}PW
3694 # - the open for truncate tries to match a {0,EOF}PR
3695 #   for the filesize and cancels the PWs.
3696 # any number of fixes (don't get {0,EOF} on open, match
3697 # composite locks, do smarter file size management) fix
3698 # this, but for now we want these tests to verify that
3699 # the cancellation with truncate intent works, so we
3700 # start the file with a full-file pw lock to match against
3701 # until the truncate.
3702 trunc_test() {
3703         test=$1
3704         file=$DIR/$test
3705         offset=$2
3706         cancel_lru_locks osc
3707         stop_writeback
3708         # prime the file with 0,EOF PW to match
3709         touch $file
3710         $TRUNCATE $file 0
3711         sync; sync
3712         # now the real test..
3713         dd if=/dev/zero of=$file bs=1024 count=100
3714         BEFOREWRITES=`count_ost_writes`
3715         $TRUNCATE $file $offset
3716         cancel_lru_locks osc
3717         AFTERWRITES=`count_ost_writes`
3718         start_writeback
3719 }
3720
3721 test_42c() {
3722         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3723         trunc_test 42c 1024
3724         [ $BEFOREWRITES -eq $AFTERWRITES ] && \
3725             error "beforewrites $BEFOREWRITES == afterwrites $AFTERWRITES on truncate"
3726         rm $file
3727 }
3728 run_test 42c "test partial truncate of file with cached dirty data"
3729
3730 test_42d() {
3731         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3732         trunc_test 42d 0
3733         [ $BEFOREWRITES -eq $AFTERWRITES ] || \
3734             error "beforewrites $BEFOREWRITES != afterwrites $AFTERWRITES on truncate"
3735         rm $file
3736 }
3737 run_test 42d "test complete truncate of file with cached dirty data"
3738
3739 test_42e() { # bug22074
3740         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3741         local TDIR=$DIR/${tdir}e
3742         local pagesz=$(page_size)
3743         local pages=16 # hardcoded 16 pages, don't change it.
3744         local files=$((OSTCOUNT * 500)) # hopefully 500 files on each OST
3745         local proc_osc0="osc.${FSNAME}-OST0000-osc-[^MDT]*"
3746         local max_dirty_mb
3747         local warmup_files
3748
3749         test_mkdir -p $DIR/${tdir}e
3750         $SETSTRIPE -c 1 $TDIR
3751         createmany -o $TDIR/f $files
3752
3753         max_dirty_mb=$($LCTL get_param -n $proc_osc0/max_dirty_mb)
3754
3755         # we assume that with $OSTCOUNT files, at least one of them will
3756         # be allocated on OST0.
3757         warmup_files=$((OSTCOUNT * max_dirty_mb))
3758         createmany -o $TDIR/w $warmup_files
3759
3760         # write a large amount of data into one file and sync, to get good
3761         # avail_grant number from OST.
3762         for ((i=0; i<$warmup_files; i++)); do
3763                 idx=$($GETSTRIPE -i $TDIR/w$i)
3764                 [ $idx -ne 0 ] && continue
3765                 dd if=/dev/zero of=$TDIR/w$i bs="$max_dirty_mb"M count=1
3766                 break
3767         done
3768         [[ $i -gt $warmup_files ]] && error "OST0 is still cold"
3769         sync
3770         $LCTL get_param $proc_osc0/cur_dirty_bytes
3771         $LCTL get_param $proc_osc0/cur_grant_bytes
3772
3773         # create as much dirty pages as we can while not to trigger the actual
3774         # RPCs directly. but depends on the env, VFS may trigger flush during this
3775         # period, hopefully we are good.
3776         for ((i=0; i<$warmup_files; i++)); do
3777                 idx=$($GETSTRIPE -i $TDIR/w$i)
3778                 [ $idx -ne 0 ] && continue
3779                 dd if=/dev/zero of=$TDIR/w$i bs=1M count=1 2>/dev/null
3780         done
3781         $LCTL get_param $proc_osc0/cur_dirty_bytes
3782         $LCTL get_param $proc_osc0/cur_grant_bytes
3783
3784         # perform the real test
3785         $LCTL set_param $proc_osc0/rpc_stats 0
3786         for ((;i<$files; i++)); do
3787                 [ $($GETSTRIPE -i $TDIR/f$i) -eq 0 ] || continue
3788                 dd if=/dev/zero of=$TDIR/f$i bs=$pagesz count=$pages 2>/dev/null
3789         done
3790         sync
3791         $LCTL get_param $proc_osc0/rpc_stats
3792
3793         local percent=0
3794         local have_ppr=false
3795         $LCTL get_param $proc_osc0/rpc_stats |
3796                 while read PPR RRPC RPCT RCUM BAR WRPC WPCT WCUM; do
3797                         # skip lines until we are at the RPC histogram data
3798                         [ "$PPR" == "pages" ] && have_ppr=true && continue
3799                         $have_ppr || continue
3800
3801                         # we only want the percent stat for < 16 pages
3802                         [[ $(echo $PPR | tr -d ':') -ge $pages ]] && break
3803
3804                         percent=$((percent + WPCT))
3805                         if [[ $percent -gt 15 ]]; then
3806                                 error "less than 16-pages write RPCs" \
3807                                       "$percent% > 15%"
3808                                 break
3809                         fi
3810                 done
3811         rm -rf $TDIR
3812 }
3813 run_test 42e "verify sub-RPC writes are not done synchronously"
3814
3815 test_43A() { # was test_43
3816         test_mkdir -p $DIR/$tdir
3817         cp -p /bin/ls $DIR/$tdir/$tfile
3818         $MULTIOP $DIR/$tdir/$tfile Ow_c &
3819         pid=$!
3820         # give multiop a chance to open
3821         sleep 1
3822
3823         $DIR/$tdir/$tfile && error "execute $DIR/$tdir/$tfile succeeded" || true
3824         kill -USR1 $pid
3825 }
3826 run_test 43A "execution of file opened for write should return -ETXTBSY"
3827
3828 test_43a() {
3829         test_mkdir $DIR/$tdir
3830         cp -p $(which $MULTIOP) $DIR/$tdir/multiop ||
3831                 cp -p multiop $DIR/$tdir/multiop
3832         MULTIOP_PROG=$DIR/$tdir/multiop multiop_bg_pause $TMP/$tfile.junk O_c ||
3833                 error "multiop open $TMP/$tfile.junk failed"
3834         MULTIOP_PID=$!
3835         $MULTIOP $DIR/$tdir/multiop Oc && error "expected error, got success"
3836         kill -USR1 $MULTIOP_PID || error "kill -USR1 PID $MULTIOP_PID failed"
3837         wait $MULTIOP_PID || error "wait PID $MULTIOP_PID failed"
3838 }
3839 run_test 43a "open(RDWR) of file being executed should return -ETXTBSY"
3840
3841 test_43b() {
3842         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3843         test_mkdir $DIR/$tdir
3844         cp -p $(which $MULTIOP) $DIR/$tdir/multiop ||
3845                 cp -p multiop $DIR/$tdir/multiop
3846         MULTIOP_PROG=$DIR/$tdir/multiop multiop_bg_pause $TMP/$tfile.junk O_c ||
3847                 error "multiop open $TMP/$tfile.junk failed"
3848         MULTIOP_PID=$!
3849         $TRUNCATE $DIR/$tdir/multiop 0 && error "expected error, got success"
3850         kill -USR1 $MULTIOP_PID || error "kill -USR1 PID $MULTIOP_PID failed"
3851         wait $MULTIOP_PID || error "wait PID $MULTIOP_PID failed"
3852 }
3853 run_test 43b "truncate of file being executed should return -ETXTBSY"
3854
3855 test_43c() {
3856         local testdir="$DIR/$tdir"
3857         test_mkdir $testdir
3858         cp $SHELL $testdir/
3859         ( cd $(dirname $SHELL) && md5sum $(basename $SHELL) ) |
3860                 ( cd $testdir && md5sum -c )
3861 }
3862 run_test 43c "md5sum of copy into lustre"
3863
3864 test_44A() { # was test_44
3865         [[ $OSTCOUNT -lt 2 ]] && skip_env "skipping 2-stripe test" && return
3866         dd if=/dev/zero of=$DIR/f1 bs=4k count=1 seek=1023
3867         dd if=$DIR/f1 bs=4k count=1 > /dev/null
3868 }
3869 run_test 44A "zero length read from a sparse stripe"
3870
3871 test_44a() {
3872         local nstripe=$($LCTL lov_getconfig $DIR | grep default_stripe_count: |
3873                 awk '{ print $2 }')
3874         [ -z "$nstripe" ] && skip "can't get stripe info" && return
3875         [[ $nstripe -gt $OSTCOUNT ]] &&
3876             skip "Wrong default_stripe_count: $nstripe (OSTCOUNT: $OSTCOUNT)" &&
3877             return
3878         local stride=$($LCTL lov_getconfig $DIR | grep default_stripe_size: |
3879                 awk '{ print $2 }')
3880         if [[ $nstripe -eq 0 || $nstripe -eq -1 ]]; then
3881                 nstripe=$($LCTL lov_getconfig $DIR | grep obd_count: |
3882                         awk '{ print $2 }')
3883         fi
3884
3885         OFFSETS="0 $((stride/2)) $((stride-1))"
3886         for offset in $OFFSETS; do
3887                 for i in $(seq 0 $((nstripe-1))); do
3888                         local GLOBALOFFSETS=""
3889                         # size in Bytes
3890                         local size=$((((i + 2 * $nstripe )*$stride + $offset)))
3891                         local myfn=$DIR/d44a-$size
3892                         echo "--------writing $myfn at $size"
3893                         ll_sparseness_write $myfn $size ||
3894                                 error "ll_sparseness_write"
3895                         GLOBALOFFSETS="$GLOBALOFFSETS $size"
3896                         ll_sparseness_verify $myfn $GLOBALOFFSETS ||
3897                                 error "ll_sparseness_verify $GLOBALOFFSETS"
3898
3899                         for j in $(seq 0 $((nstripe-1))); do
3900                                 # size in Bytes
3901                                 size=$((((j + $nstripe )*$stride + $offset)))
3902                                 ll_sparseness_write $myfn $size ||
3903                                         error "ll_sparseness_write"
3904                                 GLOBALOFFSETS="$GLOBALOFFSETS $size"
3905                         done
3906                         ll_sparseness_verify $myfn $GLOBALOFFSETS ||
3907                                 error "ll_sparseness_verify $GLOBALOFFSETS"
3908                         rm -f $myfn
3909                 done
3910         done
3911 }
3912 run_test 44a "test sparse pwrite ==============================="
3913
3914 dirty_osc_total() {
3915         tot=0
3916         for d in `lctl get_param -n osc.*.cur_dirty_bytes`; do
3917                 tot=$(($tot + $d))
3918         done
3919         echo $tot
3920 }
3921 do_dirty_record() {
3922         before=`dirty_osc_total`
3923         echo executing "\"$*\""
3924         eval $*
3925         after=`dirty_osc_total`
3926         echo before $before, after $after
3927 }
3928 test_45() {
3929         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3930         f="$DIR/f45"
3931         # Obtain grants from OST if it supports it
3932         echo blah > ${f}_grant
3933         stop_writeback
3934         sync
3935         do_dirty_record "echo blah > $f"
3936         [[ $before -eq $after ]] && error "write wasn't cached"
3937         do_dirty_record "> $f"
3938         [[ $before -gt $after ]] || error "truncate didn't lower dirty count"
3939         do_dirty_record "echo blah > $f"
3940         [[ $before -eq $after ]] && error "write wasn't cached"
3941         do_dirty_record "sync"
3942         [[ $before -gt $after ]] || error "writeback didn't lower dirty count"
3943         do_dirty_record "echo blah > $f"
3944         [[ $before -eq $after ]] && error "write wasn't cached"
3945         do_dirty_record "cancel_lru_locks osc"
3946         [[ $before -gt $after ]] ||
3947                 error "lock cancellation didn't lower dirty count"
3948         start_writeback
3949 }
3950 run_test 45 "osc io page accounting ============================"
3951
3952 # in a 2 stripe file (lov.sh), page 1023 maps to page 511 in its object.  this
3953 # test tickles a bug where re-dirtying a page was failing to be mapped to the
3954 # objects offset and an assert hit when an rpc was built with 1023's mapped
3955 # offset 511 and 511's raw 511 offset. it also found general redirtying bugs.
3956 test_46() {
3957         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3958         f="$DIR/f46"
3959         stop_writeback
3960         sync
3961         dd if=/dev/zero of=$f bs=`page_size` seek=511 count=1
3962         sync
3963         dd conv=notrunc if=/dev/zero of=$f bs=`page_size` seek=1023 count=1
3964         dd conv=notrunc if=/dev/zero of=$f bs=`page_size` seek=511 count=1
3965         sync
3966         start_writeback
3967 }
3968 run_test 46 "dirtying a previously written page ================"
3969
3970 # test_47 is removed "Device nodes check" is moved to test_28
3971
3972 test_48a() { # bug 2399
3973         [ $(facet_fstype $SINGLEMDS) = "zfs" ] &&
3974         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.63) ] &&
3975                 skip "MDS prior to 2.3.63 handle ZFS dir .. incorrectly" &&
3976                 return
3977         test_mkdir $DIR/$tdir
3978         cd $DIR/$tdir
3979         mv $DIR/$tdir $DIR/$tdir.new || error "move directory failed"
3980         test_mkdir $DIR/$tdir || error "recreate directory failed"
3981         touch foo || error "'touch foo' failed after recreating cwd"
3982         test_mkdir bar || error "'mkdir foo' failed after recreating cwd"
3983         touch .foo || error "'touch .foo' failed after recreating cwd"
3984         test_mkdir .bar || error "'mkdir .foo' failed after recreating cwd"
3985         ls . > /dev/null || error "'ls .' failed after recreating cwd"
3986         ls .. > /dev/null || error "'ls ..' failed after removing cwd"
3987         cd . || error "'cd .' failed after recreating cwd"
3988         test_mkdir . && error "'mkdir .' worked after recreating cwd"
3989         rmdir . && error "'rmdir .' worked after recreating cwd"
3990         ln -s . baz || error "'ln -s .' failed after recreating cwd"
3991         cd .. || error "'cd ..' failed after recreating cwd"
3992 }
3993 run_test 48a "Access renamed working dir (should return errors)="
3994
3995 test_48b() { # bug 2399
3996         rm -rf $DIR/$tdir
3997         test_mkdir $DIR/$tdir
3998         cd $DIR/$tdir
3999         rmdir $DIR/$tdir || error "remove cwd $DIR/$tdir failed"
4000         touch foo && error "'touch foo' worked after removing cwd"
4001         test_mkdir foo && error "'mkdir foo' worked after removing cwd"
4002         touch .foo && error "'touch .foo' worked after removing cwd"
4003         test_mkdir .foo && error "'mkdir .foo' worked after removing cwd"
4004         ls . > /dev/null && error "'ls .' worked after removing cwd"
4005         ls .. > /dev/null || error "'ls ..' failed after removing cwd"
4006         test_mkdir . && error "'mkdir .' worked after removing cwd"
4007         rmdir . && error "'rmdir .' worked after removing cwd"
4008         ln -s . foo && error "'ln -s .' worked after removing cwd"
4009         cd .. || echo "'cd ..' failed after removing cwd `pwd`"  #bug 3517
4010 }
4011 run_test 48b "Access removed working dir (should return errors)="
4012
4013 test_48c() { # bug 2350
4014         #lctl set_param debug=-1
4015         #set -vx
4016         rm -rf $DIR/$tdir
4017         test_mkdir -p $DIR/$tdir/dir
4018         cd $DIR/$tdir/dir
4019         $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
4020         $TRACE touch foo && error "touch foo worked after removing cwd"
4021         $TRACE test_mkdir foo && error "'mkdir foo' worked after removing cwd"
4022         touch .foo && error "touch .foo worked after removing cwd"
4023         test_mkdir .foo && error "mkdir .foo worked after removing cwd"
4024         $TRACE ls . && error "'ls .' worked after removing cwd"
4025         $TRACE ls .. || error "'ls ..' failed after removing cwd"
4026         $TRACE test_mkdir . && error "'mkdir .' worked after removing cwd"
4027         $TRACE rmdir . && error "'rmdir .' worked after removing cwd"
4028         $TRACE ln -s . foo && error "'ln -s .' worked after removing cwd"
4029         $TRACE cd .. || echo "'cd ..' failed after removing cwd `pwd`" #bug 3415
4030 }
4031 run_test 48c "Access removed working subdir (should return errors)"
4032
4033 test_48d() { # bug 2350
4034         #lctl set_param debug=-1
4035         #set -vx
4036         rm -rf $DIR/$tdir
4037         test_mkdir -p $DIR/$tdir/dir
4038         cd $DIR/$tdir/dir
4039         $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
4040         $TRACE rmdir $DIR/$tdir || error "remove parent $DIR/$tdir failed"
4041         $TRACE touch foo && error "'touch foo' worked after removing parent"
4042         $TRACE test_mkdir foo && error "mkdir foo worked after removing parent"
4043         touch .foo && error "'touch .foo' worked after removing parent"
4044         test_mkdir .foo && error "mkdir .foo worked after removing parent"
4045         $TRACE ls . && error "'ls .' worked after removing parent"
4046         $TRACE ls .. && error "'ls ..' worked after removing parent"
4047         $TRACE test_mkdir . && error "'mkdir .' worked after removing parent"
4048         $TRACE rmdir . && error "'rmdir .' worked after removing parent"
4049         $TRACE ln -s . foo && error "'ln -s .' worked after removing parent"
4050         true
4051 }
4052 run_test 48d "Access removed parent subdir (should return errors)"
4053
4054 test_48e() { # bug 4134
4055         #lctl set_param debug=-1
4056         #set -vx
4057         rm -rf $DIR/$tdir
4058         test_mkdir -p $DIR/$tdir/dir
4059         cd $DIR/$tdir/dir
4060         $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
4061         $TRACE rmdir $DIR/$tdir || error "remove parent $DIR/$tdir failed"
4062         $TRACE touch $DIR/$tdir || error "'touch $DIR/$tdir' failed"
4063         $TRACE chmod +x $DIR/$tdir || error "'chmod +x $DIR/$tdir' failed"
4064         # On a buggy kernel addition of "touch foo" after cd .. will
4065         # produce kernel oops in lookup_hash_it
4066         touch ../foo && error "'cd ..' worked after recreate parent"
4067         cd $DIR
4068         $TRACE rm $DIR/$tdir || error "rm '$DIR/$tdir' failed"
4069 }
4070 run_test 48e "Access to recreated parent subdir (should return errors)"
4071
4072 test_49() { # LU-1030
4073         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4074         remote_ost_nodsh && skip "remote OST with nodsh" && return
4075         # get ost1 size - lustre-OST0000
4076         ost1_size=$(do_facet ost1 $LFS df | grep ${ost1_svc} |
4077                 awk '{ print $4 }')
4078         # write 800M at maximum
4079         [[ $ost1_size -lt 2 ]] && ost1_size=2
4080         [[ $ost1_size -gt 819200 ]] && ost1_size=819200
4081
4082         $SETSTRIPE -c 1 -i 0 $DIR/$tfile
4083         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((ost1_size >> 2)) &
4084         local dd_pid=$!
4085
4086         # change max_pages_per_rpc while writing the file
4087         local osc1_mppc=osc.$(get_osc_import_name client ost1).max_pages_per_rpc
4088         local orig_mppc=$($LCTL get_param -n $osc1_mppc)
4089         # loop until dd process exits
4090         while ps ax -opid | grep -wq $dd_pid; do
4091                 $LCTL set_param $osc1_mppc=$((RANDOM % 256 + 1))
4092                 sleep $((RANDOM % 5 + 1))
4093         done
4094         # restore original max_pages_per_rpc
4095         $LCTL set_param $osc1_mppc=$orig_mppc
4096         rm $DIR/$tfile || error "rm $DIR/$tfile failed"
4097 }
4098 run_test 49 "Change max_pages_per_rpc won't break osc extent"
4099
4100 test_50() {
4101         # bug 1485
4102         test_mkdir $DIR/$tdir
4103         cd $DIR/$tdir
4104         ls /proc/$$/cwd || error "ls /proc/$$/cwd failed"
4105 }
4106 run_test 50 "special situations: /proc symlinks  ==============="
4107
4108 test_51a() {    # was test_51
4109         # bug 1516 - create an empty entry right after ".." then split dir
4110         test_mkdir -c1 $DIR/$tdir
4111         touch $DIR/$tdir/foo
4112         $MCREATE $DIR/$tdir/bar
4113         rm $DIR/$tdir/foo
4114         createmany -m $DIR/$tdir/longfile 201
4115         FNUM=202
4116         while [[ $(ls -sd $DIR/$tdir | awk '{ print $1 }') -eq 4 ]]; do
4117                 $MCREATE $DIR/$tdir/longfile$FNUM
4118                 FNUM=$(($FNUM + 1))
4119                 echo -n "+"
4120         done
4121         echo
4122         ls -l $DIR/$tdir > /dev/null || error "ls -l $DIR/$tdir failed"
4123 }
4124 run_test 51a "special situations: split htree with empty entry =="
4125
4126 cleanup_print_lfs_df () {
4127         trap 0
4128         $LFS df
4129         $LFS df -i
4130 }
4131
4132 test_51b() {
4133         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4134         local dir=$DIR/$tdir
4135
4136         local nrdirs=$((65536 + 100))
4137
4138         # cleanup the directory
4139         rm -fr $dir
4140
4141         test_mkdir -p -c1 $dir
4142
4143         $LFS df
4144         $LFS df -i
4145         local mdtidx=$(printf "%04x" $($LFS getstripe -M $dir))
4146         local numfree=$(lctl get_param -n mdc.$FSNAME-MDT$mdtidx*.filesfree)
4147         [[ $numfree -lt $nrdirs ]] &&
4148                 skip "not enough free inodes ($numfree) on MDT$mdtidx" &&
4149                 return
4150
4151         # need to check free space for the directories as well
4152         local blkfree=$(lctl get_param -n mdc.$FSNAME-MDT$mdtidx*.kbytesavail)
4153         numfree=$(( blkfree / $(fs_inode_ksize) ))
4154         [[ $numfree -lt $nrdirs ]] && skip "not enough blocks ($numfree)" &&
4155                 return
4156
4157         trap cleanup_print_lfsdf EXIT
4158
4159         # create files
4160         createmany -d $dir/d $nrdirs ||
4161                 error "failed to create $nrdirs subdirs in MDT$mdtidx:$dir"
4162
4163         # really created :
4164         nrdirs=$(ls -U $dir | wc -l)
4165
4166         # unlink all but 100 subdirectories, then check it still works
4167         local left=100
4168         local delete=$((nrdirs - left))
4169
4170         $LFS df
4171         $LFS df -i
4172
4173         # for ldiskfs the nlink count should be 1, but this is OSD specific
4174         # and so this is listed for informational purposes only
4175         echo "nlink before: $(stat -c %h $dir), created before: $nrdirs"
4176         unlinkmany -d $dir/d $delete ||
4177                 error "unlink of first $delete subdirs failed"
4178
4179         echo "nlink between: $(stat -c %h $dir)"
4180         local found=$(ls -U $dir | wc -l)
4181         [ $found -ne $left ] &&
4182                 error "can't find subdirs: found only $found, expected $left"
4183
4184         unlinkmany -d $dir/d $delete $left ||
4185                 error "unlink of second $left subdirs failed"
4186         # regardless of whether the backing filesystem tracks nlink accurately
4187         # or not, the nlink count shouldn't be more than "." and ".." here
4188         local after=$(stat -c %h $dir)
4189         [[ $after -gt 2 ]] && error "nlink after: $after > 2" ||
4190                 echo "nlink after: $after"
4191
4192         cleanup_print_lfs_df
4193 }
4194 run_test 51b "exceed 64k subdirectory nlink limit on create, verify unlink"
4195
4196 test_51d() {
4197         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4198         [[ $OSTCOUNT -lt 3 ]] &&
4199                 skip_env "skipping test with few OSTs" && return
4200         test_mkdir -p $DIR/$tdir
4201         createmany -o $DIR/$tdir/t- 1000
4202         $GETSTRIPE $DIR/$tdir > $TMP/$tfile
4203         for N in $(seq 0 $((OSTCOUNT - 1))); do
4204                 OBJS[$N]=$(awk -vobjs=0 '($1 == '$N') { objs += 1 } \
4205                         END { printf("%0.0f", objs) }' $TMP/$tfile)
4206                 OBJS0[$N]=$(grep -A 1 idx $TMP/$tfile | awk -vobjs=0 \
4207                         '($1 == '$N') { objs += 1 } \
4208                         END { printf("%0.0f", objs) }')
4209                 log "OST$N has ${OBJS[$N]} objects, ${OBJS0[$N]} are index 0"
4210         done
4211         unlinkmany $DIR/$tdir/t- 1000
4212
4213         NLAST=0
4214         for N in $(seq 1 $((OSTCOUNT - 1))); do
4215                 [[ ${OBJS[$N]} -lt $((${OBJS[$NLAST]} - 20)) ]] &&
4216                         error "OST $N has less objects vs OST $NLAST" \
4217                               " (${OBJS[$N]} < ${OBJS[$NLAST]}"
4218                 [[ ${OBJS[$N]} -gt $((${OBJS[$NLAST]} + 20)) ]] &&
4219                         error "OST $N has less objects vs OST $NLAST" \
4220                               " (${OBJS[$N]} < ${OBJS[$NLAST]}"
4221
4222                 [[ ${OBJS0[$N]} -lt $((${OBJS0[$NLAST]} - 20)) ]] &&
4223                         error "OST $N has less #0 objects vs OST $NLAST" \
4224                               " (${OBJS0[$N]} < ${OBJS0[$NLAST]}"
4225                 [[ ${OBJS0[$N]} -gt $((${OBJS0[$NLAST]} + 20)) ]] &&
4226                         error "OST $N has less #0 objects vs OST $NLAST" \
4227                               " (${OBJS0[$N]} < ${OBJS0[$NLAST]}"
4228                 NLAST=$N
4229         done
4230         rm -f $TMP/$tfile
4231 }
4232 run_test 51d "check object distribution"
4233
4234 test_51e() {
4235         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
4236                 skip "Only applicable to ldiskfs-based MDTs"
4237                 return
4238         fi
4239
4240         test_mkdir -c1 $DIR/$tdir       || error "create $tdir failed"
4241         test_mkdir -c1 $DIR/$tdir/d0    || error "create d0 failed"
4242
4243         touch $DIR/$tdir/d0/foo
4244         createmany -l $DIR/$tdir/d0/foo $DIR/$tdir/d0/f- 65001 &&
4245                 error "file exceed 65000 nlink limit!"
4246         unlinkmany $DIR/$tdir/d0/f- 65001
4247         return 0
4248 }
4249 run_test 51e "check file nlink limit"
4250
4251 test_51f() {
4252         test_mkdir $DIR/$tdir
4253
4254         local max=100000
4255         local ulimit_old=$(ulimit -n)
4256         local spare=20 # number of spare fd's for scripts/libraries, etc.
4257         local mdt=$(lfs getstripe -M $DIR/$tdir)
4258         local numfree=$(lfs df -i $DIR/$tdir | awk '/MDT:'$mdt'/ { print $4 }')
4259
4260         echo "MDT$mdt numfree=$numfree, max=$max"
4261         [[ $numfree -gt $max ]] && numfree=$max || numfree=$((numfree * 7 / 8))
4262         if [ $((numfree + spare)) -gt $ulimit_old ]; then
4263                 while ! ulimit -n $((numfree + spare)); do
4264                         numfree=$((numfree * 3 / 4))
4265                 done
4266                 echo "changed ulimit from $ulimit_old to $((numfree + spare))"
4267         else
4268                 echo "left ulimit at $ulimit_old"
4269         fi
4270
4271         createmany -o -k -t 120 $DIR/$tdir/f $numfree ||
4272                 error "create+open $numfree files in $DIR/$tdir failed"
4273         ulimit -n $ulimit_old
4274
4275         # if createmany exits at 120s there will be fewer than $numfree files
4276         unlinkmany $DIR/$tdir/f $numfree || true
4277 }
4278 run_test 51f "check many open files limit"
4279
4280 test_52a() {
4281         [ -f $DIR/$tdir/foo ] && chattr -a $DIR/$tdir/foo
4282         test_mkdir -p $DIR/$tdir
4283         touch $DIR/$tdir/foo
4284         chattr +a $DIR/$tdir/foo || error "chattr +a failed"
4285         echo bar >> $DIR/$tdir/foo || error "append bar failed"
4286         cp /etc/hosts $DIR/$tdir/foo && error "cp worked"
4287         rm -f $DIR/$tdir/foo 2>/dev/null && error "rm worked"
4288         link $DIR/$tdir/foo $DIR/$tdir/foo_link 2>/dev/null &&
4289                                         error "link worked"
4290         echo foo >> $DIR/$tdir/foo || error "append foo failed"
4291         mrename $DIR/$tdir/foo $DIR/$tdir/foo_ren && error "rename worked"
4292         lsattr $DIR/$tdir/foo | egrep -q "^-+a[-e]+ $DIR/$tdir/foo" ||
4293                                                      error "lsattr"
4294         chattr -a $DIR/$tdir/foo || error "chattr -a failed"
4295         cp -r $DIR/$tdir $TMP/
4296         rm -fr $DIR/$tdir $TMP/$tdir || error "cleanup rm failed"
4297 }
4298 run_test 52a "append-only flag test (should return errors)"
4299
4300 test_52b() {
4301         [ -f $DIR/$tdir/foo ] && chattr -i $DIR/$tdir/foo
4302         test_mkdir -p $DIR/$tdir
4303         touch $DIR/$tdir/foo
4304         chattr +i $DIR/$tdir/foo || error "chattr +i failed"
4305         cat test > $DIR/$tdir/foo && error "cat test worked"
4306         cp /etc/hosts $DIR/$tdir/foo && error "cp worked"
4307         rm -f $DIR/$tdir/foo 2>/dev/null && error "rm worked"
4308         link $DIR/$tdir/foo $DIR/$tdir/foo_link 2>/dev/null &&
4309                                         error "link worked"
4310         echo foo >> $DIR/$tdir/foo && error "echo worked"
4311         mrename $DIR/$tdir/foo $DIR/$tdir/foo_ren && error "rename worked"
4312         [ -f $DIR/$tdir/foo ] || error "$tdir/foo is not a file"
4313         [ -f $DIR/$tdir/foo_ren ] && error "$tdir/foo_ren is not a file"
4314         lsattr $DIR/$tdir/foo | egrep -q "^-+i[-e]+ $DIR/$tdir/foo" ||
4315                                                         error "lsattr"
4316         chattr -i $DIR/$tdir/foo || error "chattr failed"
4317
4318         rm -fr $DIR/$tdir || error "unable to remove $DIR/$tdir"
4319 }
4320 run_test 52b "immutable flag test (should return errors) ======="
4321
4322 test_53() {
4323         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4324         remote_mds_nodsh && skip "remote MDS with nodsh" && return
4325         remote_ost_nodsh && skip "remote OST with nodsh" && return
4326
4327         local param
4328         local param_seq
4329         local ostname
4330         local mds_last
4331         local mds_last_seq
4332         local ost_last
4333         local ost_last_seq
4334         local ost_last_id
4335         local ostnum
4336         local node
4337         local found=false
4338         local support_last_seq=true
4339
4340         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.60) ]] ||
4341                 support_last_seq=false
4342
4343         # only test MDT0000
4344         local mdtosc=$(get_mdtosc_proc_path $SINGLEMDS)
4345         local value
4346         for value in $(do_facet $SINGLEMDS \
4347                        $LCTL get_param osc.$mdtosc.prealloc_last_id) ; do
4348                 param=$(echo ${value[0]} | cut -d "=" -f1)
4349                 ostname=$(echo $param | cut -d "." -f2 | cut -d - -f 1-2)
4350
4351                 if $support_last_seq; then
4352                         param_seq=$(echo $param |
4353                                 sed -e s/prealloc_last_id/prealloc_last_seq/g)
4354                         mds_last_seq=$(do_facet $SINGLEMDS \
4355                                        $LCTL get_param -n $param_seq)
4356                 fi
4357                 mds_last=$(do_facet $SINGLEMDS $LCTL get_param -n $param)
4358
4359                 ostnum=$(index_from_ostuuid ${ostname}_UUID)
4360                 node=$(facet_active_host ost$((ostnum+1)))
4361                 param="obdfilter.$ostname.last_id"
4362                 for ost_last in $(do_node $node $LCTL get_param -n $param) ; do
4363                         echo "$ostname.last_id=$ost_last; MDS.last_id=$mds_last"
4364                         ost_last_id=$ost_last
4365
4366                         if $support_last_seq; then
4367                                 ost_last_id=$(echo $ost_last |
4368                                               awk -F':' '{print $2}' |
4369                                               sed -e "s/^0x//g")
4370                                 ost_last_seq=$(echo $ost_last |
4371                                                awk -F':' '{print $1}')
4372                                 [[ $ost_last_seq = $mds_last_seq ]] || continue
4373                         fi
4374
4375                         if [[ $ost_last_id != $mds_last ]]; then
4376                                 error "$ost_last_id != $mds_last"
4377                         else
4378                                 found=true
4379                                 break
4380                         fi
4381                 done
4382         done
4383         $found || error "can not match last_seq/last_id for $mdtosc"
4384         return 0
4385 }
4386 run_test 53 "verify that MDS and OSTs agree on pre-creation ===="
4387
4388 test_54a() {
4389         perl -MSocket -e ';' || { skip "no Socket perl module installed" && return; }
4390
4391         $SOCKETSERVER $DIR/socket ||
4392                 error "$SOCKETSERVER $DIR/socket failed: $?"
4393         $SOCKETCLIENT $DIR/socket ||
4394                 error "$SOCKETCLIENT $DIR/socket failed: $?"
4395         $MUNLINK $DIR/socket || error "$MUNLINK $DIR/socket failed: $?"
4396 }
4397 run_test 54a "unix domain socket test =========================="
4398
4399 test_54b() {
4400         f="$DIR/f54b"
4401         mknod $f c 1 3
4402         chmod 0666 $f
4403         dd if=/dev/zero of=$f bs=$(page_size) count=1
4404 }
4405 run_test 54b "char device works in lustre ======================"
4406
4407 find_loop_dev() {
4408         [ -b /dev/loop/0 ] && LOOPBASE=/dev/loop/
4409         [ -b /dev/loop0 ] && LOOPBASE=/dev/loop
4410         [ -z "$LOOPBASE" ] && echo "/dev/loop/0 and /dev/loop0 gone?" && return
4411
4412         for i in $(seq 3 7); do
4413                 losetup $LOOPBASE$i > /dev/null 2>&1 && continue
4414                 LOOPDEV=$LOOPBASE$i
4415                 LOOPNUM=$i
4416                 break
4417         done
4418 }
4419
4420 cleanup_54c() {
4421         local rc=0
4422         loopdev="$DIR/loop54c"
4423
4424         trap 0
4425         $UMOUNT $DIR/$tdir || rc=$?
4426         losetup -d $loopdev || true
4427         losetup -d $LOOPDEV || true
4428         rm -rf $loopdev $DIR/$tfile $DIR/$tdir
4429         return $rc
4430 }
4431
4432 test_54c() {
4433         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4434         loopdev="$DIR/loop54c"
4435
4436         find_loop_dev
4437         [ -z "$LOOPNUM" ] && echo "couldn't find empty loop device" && return
4438         trap cleanup_54c EXIT
4439         mknod $loopdev b 7 $LOOPNUM
4440         echo "make a loop file system with $DIR/$tfile on $loopdev ($LOOPNUM)."
4441         dd if=/dev/zero of=$DIR/$tfile bs=$(get_page_size client) seek=1024 count=1 > /dev/null
4442         losetup $loopdev $DIR/$tfile ||
4443                 error "can't set up $loopdev for $DIR/$tfile"
4444         mkfs.ext2 $loopdev || error "mke2fs on $loopdev"
4445         test_mkdir -p $DIR/$tdir
4446         mount -t ext2 $loopdev $DIR/$tdir ||
4447                 error "error mounting $loopdev on $DIR/$tdir"
4448         dd if=/dev/zero of=$DIR/$tdir/tmp bs=$(get_page_size client) count=30 ||
4449                 error "dd write"
4450         df $DIR/$tdir
4451         dd if=$DIR/$tdir/tmp of=/dev/zero bs=$(get_page_size client) count=30 ||
4452                 error "dd read"
4453         cleanup_54c
4454 }
4455 run_test 54c "block device works in lustre ====================="
4456
4457 test_54d() {
4458         f="$DIR/f54d"
4459         string="aaaaaa"
4460         mknod $f p
4461         [ "$string" = $(echo $string > $f | cat $f) ] || error "$f != $string"
4462 }
4463 run_test 54d "fifo device works in lustre ======================"
4464
4465 test_54e() {
4466         f="$DIR/f54e"
4467         string="aaaaaa"
4468         cp -aL /dev/console $f
4469         echo $string > $f || error "echo $string to $f failed"
4470 }
4471 run_test 54e "console/tty device works in lustre ======================"
4472
4473 #The test_55 used to be iopen test and it was removed by bz#24037.
4474 #run_test 55 "check iopen_connect_dentry() ======================"
4475
4476 test_56a() {    # was test_56
4477         rm -rf $DIR/$tdir
4478         $SETSTRIPE -d $DIR
4479         test_mkdir -p $DIR/$tdir/dir
4480         NUMFILES=3
4481         NUMFILESx2=$(($NUMFILES * 2))
4482         for i in $(seq 1 $NUMFILES); do
4483                 touch $DIR/$tdir/file$i
4484                 touch $DIR/$tdir/dir/file$i
4485         done
4486
4487         # test lfs getstripe with --recursive
4488         FILENUM=$($GETSTRIPE --recursive $DIR/$tdir | grep -c obdidx)
4489         [[ $FILENUM -eq $NUMFILESx2 ]] ||
4490                 error "$GETSTRIPE --recursive: found $FILENUM, not $NUMFILESx2"
4491         FILENUM=$($GETSTRIPE $DIR/$tdir | grep -c obdidx)
4492         [[ $FILENUM -eq $NUMFILES ]] ||
4493                 error "$GETSTRIPE $DIR/$tdir: found $FILENUM, not $NUMFILES"
4494         echo "$GETSTRIPE --recursive passed."
4495
4496         # test lfs getstripe with file instead of dir
4497         FILENUM=$($GETSTRIPE $DIR/$tdir/file1 | grep -c obdidx)
4498         [[ $FILENUM -eq 1 ]] ||
4499                 error "$GETSTRIPE $DIR/$tdir/file1: found $FILENUM, not 1"
4500         echo "$GETSTRIPE file1 passed."
4501
4502         #test lfs getstripe with --verbose
4503         [[ $($GETSTRIPE --verbose $DIR/$tdir |
4504                 grep -c lmm_magic) -eq $NUMFILES ]] ||
4505                 error "$GETSTRIPE --verbose $DIR/$tdir: want $NUMFILES"
4506         [[ $($GETSTRIPE $DIR/$tdir | grep -c lmm_magic) -eq 0 ]] ||
4507                 error "$GETSTRIPE $DIR/$tdir: showed lmm_magic"
4508
4509         #test lfs getstripe with -v prints lmm_fid
4510         [[ $($GETSTRIPE -v $DIR/$tdir | grep -c lmm_fid) -eq $NUMFILES ]] ||
4511                 error "$GETSTRIPE -v $DIR/$tdir: want $NUMFILES lmm_fid: lines"
4512         [[ $($GETSTRIPE $DIR/$tdir | grep -c lmm_fid) -eq 0 ]] ||
4513                 error "$GETSTRIPE $DIR/$tdir: showed lmm_fid"
4514         echo "$GETSTRIPE --verbose passed."
4515
4516         #check for FID information
4517         local fid1=$($GETSTRIPE --fid $DIR/$tdir/file1)
4518         local fid2=$($GETSTRIPE --verbose $DIR/$tdir/file1 |
4519                        awk '/lmm_fid: / { print $2 }')
4520         local fid3=$($LFS path2fid $DIR/$tdir/file1)
4521         [ "$fid1" != "$fid2" ] &&
4522                 error "getstripe --fid $fid1 != getstripe --verbose $fid2"
4523         [ "$fid1" != "$fid3" ] &&
4524                 error "getstripe --fid $fid1 != lfs path2fid $fid3"
4525         echo "$GETSTRIPE --fid passed."
4526
4527         #test lfs getstripe with --obd
4528         $GETSTRIPE --obd wrong_uuid $DIR/$tdir 2>&1 |
4529                 grep -q "unknown obduuid" ||
4530                 error "$GETSTRIPE --obd wrong_uuid should return error message"
4531
4532         [[ $OSTCOUNT -lt 2 ]] &&
4533                 skip_env "skipping other $GETSTRIPE --obd test" && return
4534
4535         OSTIDX=1
4536         OBDUUID=$(ostuuid_from_index $OSTIDX)
4537         FILENUM=$($GETSTRIPE -ir $DIR/$tdir | grep "^$OSTIDX\$" | wc -l)
4538         FOUND=$($GETSTRIPE -r --obd $OBDUUID $DIR/$tdir | grep obdidx | wc -l)
4539         [[ $FOUND -eq $FILENUM ]] ||
4540                 error "$GETSTRIPE --obd wrong: found $FOUND, expected $FILENUM"
4541         [[ $($GETSTRIPE -r -v --obd $OBDUUID $DIR/$tdir |
4542                 sed '/^[         ]*'${OSTIDX}'[  ]/d' |
4543                 sed -n '/^[      ]*[0-9][0-9]*[  ]/p' | wc -l) -eq 0 ]] ||
4544                 error "$GETSTRIPE --obd: should not show file on other obd"
4545         echo "$GETSTRIPE --obd passed"
4546 }
4547 run_test 56a "check $GETSTRIPE"
4548
4549 test_56b() {
4550         test_mkdir $DIR/$tdir
4551         NUMDIRS=3
4552         for i in $(seq 1 $NUMDIRS); do
4553                 test_mkdir $DIR/$tdir/dir$i
4554         done
4555
4556         # test lfs getdirstripe default mode is non-recursion, which is
4557         # different from lfs getstripe
4558         dircnt=$($LFS getdirstripe $DIR/$tdir | grep -c lmv_stripe_count)
4559         [[ $dircnt -eq 1 ]] ||
4560                 error "$LFS getdirstripe: found $dircnt, not 1"
4561         dircnt=$($LFS getdirstripe --recursive $DIR/$tdir |
4562                 grep -c lmv_stripe_count)
4563         [[ $dircnt -eq $((NUMDIRS + 1)) ]] ||
4564                 error "$LFS getdirstripe --recursive: found $dircnt, \
4565                         not $((NUMDIRS + 1))"
4566 }
4567 run_test 56b "check $LFS getdirstripe"
4568
4569 test_56c() {
4570         local ost_idx=0
4571         local ost_name=$(ostname_from_index $ost_idx)
4572
4573         local old_status=$(ost_dev_status $ost_idx)
4574         [[ -z "$old_status" ]] ||
4575                 { skip_env "OST $ost_name is in $old_status status"; return 0; }
4576
4577         do_facet ost1 $LCTL set_param -n obdfilter.$ost_name.degraded=1
4578         sleep_maxage
4579
4580         local new_status=$(ost_dev_status $ost_idx)
4581         [[ "$new_status" = "D" ]] ||
4582                 error "OST $ost_name is in status of '$new_status', not 'D'"
4583
4584         do_facet ost1 $LCTL set_param -n obdfilter.$ost_name.degraded=0
4585         sleep_maxage
4586
4587         new_status=$(ost_dev_status $ost_idx)
4588         [[ -z "$new_status" ]] ||
4589                 error "OST $ost_name is in status of '$new_status', not ''"
4590 }
4591 run_test 56c "check 'lfs df' showing device status"
4592
4593 NUMFILES=3
4594 NUMDIRS=3
4595 setup_56() {
4596         local LOCAL_NUMFILES="$1"
4597         local LOCAL_NUMDIRS="$2"
4598         local MKDIR_PARAMS="$3"
4599         local DIR_STRIPE_PARAMS="$4"
4600
4601         if [ ! -d "$TDIR" ] ; then
4602                 test_mkdir -p $DIR_STRIPE_PARAMS $TDIR
4603                 [ "$MKDIR_PARAMS" ] && $SETSTRIPE $MKDIR_PARAMS $TDIR
4604                 for i in `seq 1 $LOCAL_NUMFILES` ; do
4605                         touch $TDIR/file$i
4606                 done
4607                 for i in `seq 1 $LOCAL_NUMDIRS` ; do
4608                         test_mkdir $DIR_STRIPE_PARAMS $TDIR/dir$i
4609                         for j in `seq 1 $LOCAL_NUMFILES` ; do
4610                                 touch $TDIR/dir$i/file$j
4611                         done
4612                 done
4613         fi
4614 }
4615
4616 setup_56_special() {
4617         LOCAL_NUMFILES=$1
4618         LOCAL_NUMDIRS=$2
4619         setup_56 $1 $2
4620         if [ ! -e "$TDIR/loop1b" ] ; then
4621                 for i in `seq 1 $LOCAL_NUMFILES` ; do
4622                         mknod $TDIR/loop${i}b b 7 $i
4623                         mknod $TDIR/null${i}c c 1 3
4624                         ln -s $TDIR/file1 $TDIR/link${i}l
4625                 done
4626                 for i in `seq 1 $LOCAL_NUMDIRS` ; do
4627                         mknod $TDIR/dir$i/loop${i}b b 7 $i
4628                         mknod $TDIR/dir$i/null${i}c c 1 3
4629                         ln -s $TDIR/dir$i/file1 $TDIR/dir$i/link${i}l
4630                 done
4631         fi
4632 }
4633
4634 test_56g() {
4635         $SETSTRIPE -d $DIR
4636
4637         TDIR=$DIR/${tdir}g
4638         setup_56 $NUMFILES $NUMDIRS
4639
4640         EXPECTED=$(($NUMDIRS + 2))
4641         # test lfs find with -name
4642         for i in $(seq 1 $NUMFILES) ; do
4643                 NUMS=$($LFIND -name "*$i" $TDIR | wc -l)
4644                 [ $NUMS -eq $EXPECTED ] ||
4645                         error "lfs find -name \"*$i\" $TDIR wrong: "\
4646                               "found $NUMS, expected $EXPECTED"
4647         done
4648 }
4649 run_test 56g "check lfs find -name ============================="
4650
4651 test_56h() {
4652         $SETSTRIPE -d $DIR
4653
4654         TDIR=$DIR/${tdir}g
4655         setup_56 $NUMFILES $NUMDIRS
4656
4657         EXPECTED=$(((NUMDIRS + 1) * (NUMFILES - 1) + NUMFILES))
4658         # test lfs find with ! -name
4659         for i in $(seq 1 $NUMFILES) ; do
4660                 NUMS=$($LFIND ! -name "*$i" $TDIR | wc -l)
4661                 [ $NUMS -eq $EXPECTED ] ||
4662                         error "lfs find ! -name \"*$i\" $TDIR wrong: "\
4663                               "found $NUMS, expected $EXPECTED"
4664         done
4665 }
4666 run_test 56h "check lfs find ! -name ============================="
4667
4668 test_56i() {
4669        tdir=${tdir}i
4670        test_mkdir -p $DIR/$tdir
4671        UUID=$(ostuuid_from_index 0 $DIR/$tdir)
4672        CMD="$LFIND -ost $UUID $DIR/$tdir"
4673        OUT=$($CMD)
4674        [ -z "$OUT" ] || error "\"$CMD\" returned directory '$OUT'"
4675 }
4676 run_test 56i "check 'lfs find -ost UUID' skips directories ======="
4677
4678 test_56j() {
4679         TDIR=$DIR/${tdir}g
4680         setup_56_special $NUMFILES $NUMDIRS
4681
4682         EXPECTED=$((NUMDIRS + 1))
4683         CMD="$LFIND -type d $TDIR"
4684         NUMS=$($CMD | wc -l)
4685         [ $NUMS -eq $EXPECTED ] ||
4686                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4687 }
4688 run_test 56j "check lfs find -type d ============================="
4689
4690 test_56k() {
4691         TDIR=$DIR/${tdir}g
4692         setup_56_special $NUMFILES $NUMDIRS
4693
4694         EXPECTED=$(((NUMDIRS + 1) * NUMFILES))
4695         CMD="$LFIND -type f $TDIR"
4696         NUMS=$($CMD | wc -l)
4697         [ $NUMS -eq $EXPECTED ] ||
4698                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4699 }
4700 run_test 56k "check lfs find -type f ============================="
4701
4702 test_56l() {
4703         TDIR=$DIR/${tdir}g
4704         setup_56_special $NUMFILES $NUMDIRS
4705
4706         EXPECTED=$((NUMDIRS + NUMFILES))
4707         CMD="$LFIND -type b $TDIR"
4708         NUMS=$($CMD | wc -l)
4709         [ $NUMS -eq $EXPECTED ] ||
4710                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4711 }
4712 run_test 56l "check lfs find -type b ============================="
4713
4714 test_56m() {
4715         TDIR=$DIR/${tdir}g
4716         setup_56_special $NUMFILES $NUMDIRS
4717
4718         EXPECTED=$((NUMDIRS + NUMFILES))
4719         CMD="$LFIND -type c $TDIR"
4720         NUMS=$($CMD | wc -l)
4721         [ $NUMS -eq $EXPECTED ] ||
4722                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4723 }
4724 run_test 56m "check lfs find -type c ============================="
4725
4726 test_56n() {
4727         TDIR=$DIR/${tdir}g
4728         setup_56_special $NUMFILES $NUMDIRS
4729
4730         EXPECTED=$((NUMDIRS + NUMFILES))
4731         CMD="$LFIND -type l $TDIR"
4732         NUMS=$($CMD | wc -l)
4733         [ $NUMS -eq $EXPECTED ] ||
4734                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4735 }
4736 run_test 56n "check lfs find -type l ============================="
4737
4738 test_56o() {
4739         TDIR=$DIR/${tdir}o
4740         setup_56 $NUMFILES $NUMDIRS
4741         utime $TDIR/file1 > /dev/null || error "utime (1)"
4742         utime $TDIR/file2 > /dev/null || error "utime (2)"
4743         utime $TDIR/dir1 > /dev/null || error "utime (3)"
4744         utime $TDIR/dir2 > /dev/null || error "utime (4)"
4745         utime $TDIR/dir1/file1 > /dev/null || error "utime (5)"
4746         dd if=/dev/zero count=1 >> $TDIR/dir1/file1 && sync
4747
4748         EXPECTED=4
4749         NUMS=`$LFIND -mtime +0 $TDIR | wc -l`
4750         [ $NUMS -eq $EXPECTED ] || \
4751                 error "lfs find -mtime +0 $TDIR wrong: found $NUMS, expected $EXPECTED"
4752
4753         EXPECTED=12
4754         CMD="$LFIND -mtime 0 $TDIR"
4755         NUMS=$($CMD | wc -l)
4756         [ $NUMS -eq $EXPECTED ] ||
4757                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4758 }
4759 run_test 56o "check lfs find -mtime for old files =========================="
4760
4761 test_56p() {
4762         [ $RUNAS_ID -eq $UID ] &&
4763                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
4764
4765         TDIR=$DIR/${tdir}p
4766         setup_56 $NUMFILES $NUMDIRS
4767
4768         chown $RUNAS_ID $TDIR/file* || error "chown $DIR/${tdir}g/file$i failed"
4769         EXPECTED=$NUMFILES
4770         CMD="$LFIND -uid $RUNAS_ID $TDIR"
4771         NUMS=$($CMD | wc -l)
4772         [ $NUMS -eq $EXPECTED ] || \
4773                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4774
4775         EXPECTED=$(((NUMFILES + 1) * NUMDIRS + 1))
4776         CMD="$LFIND ! -uid $RUNAS_ID $TDIR"
4777         NUMS=$($CMD | wc -l)
4778         [ $NUMS -eq $EXPECTED ] || \
4779                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4780 }
4781 run_test 56p "check lfs find -uid and ! -uid ==============================="
4782
4783 test_56q() {
4784         [ $RUNAS_ID -eq $UID ] &&
4785                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
4786
4787         TDIR=$DIR/${tdir}q
4788         setup_56 $NUMFILES $NUMDIRS
4789
4790         chgrp $RUNAS_GID $TDIR/file* || error "chown $TDIR/file$i failed"
4791
4792         EXPECTED=$NUMFILES
4793         CMD="$LFIND -gid $RUNAS_GID $TDIR"
4794         NUMS=$($CMD | wc -l)
4795         [ $NUMS -eq $EXPECTED ] ||
4796                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4797
4798         EXPECTED=$(( ($NUMFILES+1) * $NUMDIRS + 1))
4799         CMD="$LFIND ! -gid $RUNAS_GID $TDIR"
4800         NUMS=$($CMD | wc -l)
4801         [ $NUMS -eq $EXPECTED ] ||
4802                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4803 }
4804 run_test 56q "check lfs find -gid and ! -gid ==============================="
4805
4806 test_56r() {
4807         TDIR=$DIR/${tdir}r
4808         setup_56 $NUMFILES $NUMDIRS
4809
4810         EXPECTED=12
4811         CMD="$LFIND -size 0 -type f $TDIR"
4812         NUMS=$($CMD | wc -l)
4813         [ $NUMS -eq $EXPECTED ] ||
4814                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4815         EXPECTED=0
4816         CMD="$LFIND ! -size 0 -type f $TDIR"
4817         NUMS=$($CMD | wc -l)
4818         [ $NUMS -eq $EXPECTED ] ||
4819                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4820         echo "test" > $TDIR/$tfile
4821         echo "test2" > $TDIR/$tfile.2 && sync
4822         EXPECTED=1
4823         CMD="$LFIND -size 5 -type f $TDIR"
4824         NUMS=$($CMD | wc -l)
4825         [ $NUMS -eq $EXPECTED ] ||
4826                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4827         EXPECTED=1
4828         CMD="$LFIND -size +5 -type f $TDIR"
4829         NUMS=$($CMD | wc -l)
4830         [ $NUMS -eq $EXPECTED ] ||
4831                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4832         EXPECTED=2
4833         CMD="$LFIND -size +0 -type f $TDIR"
4834         NUMS=$($CMD | wc -l)
4835         [ $NUMS -eq $EXPECTED ] ||
4836                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4837         EXPECTED=2
4838         CMD="$LFIND ! -size -5 -type f $TDIR"
4839         NUMS=$($CMD | wc -l)
4840         [ $NUMS -eq $EXPECTED ] ||
4841                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4842         EXPECTED=12
4843         CMD="$LFIND -size -5 -type f $TDIR"
4844         NUMS=$($CMD | wc -l)
4845         [ $NUMS -eq $EXPECTED ] ||
4846                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4847 }
4848 run_test 56r "check lfs find -size works =========================="
4849
4850 test_56s() { # LU-611
4851         TDIR=$DIR/${tdir}s
4852
4853         #LU-9369
4854         setup_56 0 $NUMDIRS
4855         for i in $(seq 1 $NUMDIRS); do
4856                 $SETSTRIPE -c $((OSTCOUNT + 1)) $TDIR/dir$i/$tfile
4857         done
4858         EXPECTED=$NUMDIRS
4859         CMD="$LFIND -c $OSTCOUNT $TDIR"
4860         NUMS=$($CMD | wc -l)
4861         [ $NUMS -eq $EXPECTED ] || {
4862                 $GETSTRIPE -R $TDIR
4863                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4864         }
4865         rm -rf $TDIR
4866
4867         setup_56 $NUMFILES $NUMDIRS "-c $OSTCOUNT"
4868         if [[ $OSTCOUNT -gt 1 ]]; then
4869                 $SETSTRIPE -c 1 $TDIR/$tfile.{0,1,2,3}
4870                 ONESTRIPE=4
4871                 EXTRA=4
4872         else
4873                 ONESTRIPE=$(((NUMDIRS + 1) * NUMFILES))
4874                 EXTRA=0
4875         fi
4876
4877         EXPECTED=$(((NUMDIRS + 1) * NUMFILES))
4878         CMD="$LFIND -stripe-count $OSTCOUNT -type f $TDIR"
4879         NUMS=$($CMD | wc -l)
4880         [ $NUMS -eq $EXPECTED ] || {
4881                 $GETSTRIPE -R $TDIR
4882                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4883         }
4884
4885         EXPECTED=$(((NUMDIRS + 1) * NUMFILES + EXTRA))
4886         CMD="$LFIND -stripe-count +0 -type f $TDIR"
4887         NUMS=$($CMD | wc -l)
4888         [ $NUMS -eq $EXPECTED ] || {
4889                 $GETSTRIPE -R $TDIR
4890                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4891         }
4892
4893         EXPECTED=$ONESTRIPE
4894         CMD="$LFIND -stripe-count 1 -type f $TDIR"
4895         NUMS=$($CMD | wc -l)
4896         [ $NUMS -eq $EXPECTED ] || {
4897                 $GETSTRIPE -R $TDIR
4898                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4899         }
4900
4901         CMD="$LFIND -stripe-count -2 -type f $TDIR"
4902         NUMS=$($CMD | wc -l)
4903         [ $NUMS -eq $EXPECTED ] || {
4904                 $GETSTRIPE -R $TDIR
4905                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4906         }
4907
4908         EXPECTED=0
4909         CMD="$LFIND -stripe-count $((OSTCOUNT + 1)) -type f $TDIR"
4910         NUMS=$($CMD | wc -l)
4911         [ $NUMS -eq $EXPECTED ] || {
4912                 $GETSTRIPE -R $TDIR
4913                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4914         }
4915 }
4916 run_test 56s "check lfs find -stripe-count works"
4917
4918 test_56t() { # LU-611
4919         TDIR=$DIR/${tdir}t
4920
4921         #LU-9369
4922         setup_56 0 $NUMDIRS
4923         for i in $(seq 1 $NUMDIRS); do
4924                 $SETSTRIPE -S 4M $TDIR/dir$i/$tfile
4925         done
4926         EXPECTED=$NUMDIRS
4927         CMD="$LFIND -S 4M $TDIR"
4928         NUMS=$($CMD | wc -l)
4929         [ $NUMS -eq $EXPECTED ] || {
4930                 $GETSTRIPE -R $TDIR
4931                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4932         }
4933         rm -rf $TDIR
4934
4935         setup_56 $NUMFILES $NUMDIRS "--stripe-size 512k"
4936
4937         $SETSTRIPE -S 256k $TDIR/$tfile.{0,1,2,3}
4938
4939         EXPECTED=$(((NUMDIRS + 1) * NUMFILES))
4940         CMD="$LFIND -stripe-size 512k -type f $TDIR"
4941         NUMS=$($CMD | wc -l)
4942         [ $NUMS -eq $EXPECTED ] ||
4943                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4944
4945         CMD="$LFIND -stripe-size +320k -type f $TDIR"
4946         NUMS=$($CMD | wc -l)
4947         [ $NUMS -eq $EXPECTED ] ||
4948                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4949
4950         EXPECTED=$(((NUMDIRS + 1) * NUMFILES + 4))
4951         CMD="$LFIND -stripe-size +200k -type f $TDIR"
4952         NUMS=$($CMD | wc -l)
4953         [ $NUMS -eq $EXPECTED ] ||
4954                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4955
4956         CMD="$LFIND -stripe-size -640k -type f $TDIR"
4957         NUMS=$($CMD | wc -l)
4958         [ $NUMS -eq $EXPECTED ] ||
4959                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4960
4961         EXPECTED=4
4962         CMD="$LFIND -stripe-size 256k -type f $TDIR"
4963         NUMS=$($CMD | wc -l)
4964         [ $NUMS -eq $EXPECTED ] ||
4965                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4966
4967         CMD="$LFIND -stripe-size -320k -type f $TDIR"
4968         NUMS=$($CMD | wc -l)
4969         [ $NUMS -eq $EXPECTED ] ||
4970                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4971
4972         EXPECTED=0
4973         CMD="$LFIND -stripe-size 1024k -type f $TDIR"
4974         NUMS=$($CMD | wc -l)
4975         [ $NUMS -eq $EXPECTED ] ||
4976                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4977 }
4978 run_test 56t "check lfs find -stripe-size works"
4979
4980 test_56u() { # LU-611
4981         TDIR=$DIR/${tdir}u
4982         setup_56 $NUMFILES $NUMDIRS "-i 0"
4983
4984         if [[ $OSTCOUNT -gt 1 ]]; then
4985                 $SETSTRIPE -i 1 $TDIR/$tfile.{0,1,2,3}
4986                 ONESTRIPE=4
4987         else
4988                 ONESTRIPE=0
4989         fi
4990
4991         EXPECTED=$(((NUMDIRS + 1) * NUMFILES))
4992         CMD="$LFIND -stripe-index 0 -type f $TDIR"
4993         NUMS=$($CMD | wc -l)
4994         [ $NUMS -eq $EXPECTED ] ||
4995                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4996
4997         EXPECTED=$ONESTRIPE
4998         CMD="$LFIND -stripe-index 1 -type f $TDIR"
4999         NUMS=$($CMD | wc -l)
5000         [ $NUMS -eq $EXPECTED ] ||
5001                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
5002
5003         CMD="$LFIND ! -stripe-index 0 -type f $TDIR"
5004         NUMS=$($CMD | wc -l)
5005         [ $NUMS -eq $EXPECTED ] ||
5006                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
5007
5008         EXPECTED=0
5009         # This should produce an error and not return any files
5010         CMD="$LFIND -stripe-index $OSTCOUNT -type f $TDIR"
5011         NUMS=$($CMD 2>/dev/null | wc -l)
5012         [ $NUMS -eq $EXPECTED ] ||
5013                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
5014
5015         if [[ $OSTCOUNT -gt 1 ]]; then
5016                 EXPECTED=$(((NUMDIRS + 1) * NUMFILES + ONESTRIPE))
5017                 CMD="$LFIND -stripe-index 0,1 -type f $TDIR"
5018                 NUMS=$($CMD | wc -l)
5019                 [ $NUMS -eq $EXPECTED ] ||
5020                         error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
5021         fi
5022 }
5023 run_test 56u "check lfs find -stripe-index works"
5024
5025 test_56v() {
5026     local MDT_IDX=0
5027
5028     TDIR=$DIR/${tdir}v
5029     rm -rf $TDIR
5030     setup_56 $NUMFILES $NUMDIRS
5031
5032     UUID=$(mdtuuid_from_index $MDT_IDX $TDIR)
5033     [ -z "$UUID" ] && error "mdtuuid_from_index cannot find MDT index $MDT_IDX"
5034
5035     for file in $($LFIND -mdt $UUID $TDIR); do
5036         file_mdt_idx=$($GETSTRIPE -M $file)
5037         [ $file_mdt_idx -eq $MDT_IDX ] ||
5038             error "'lfind -mdt $UUID' != 'getstripe -M' ($file_mdt_idx)"
5039     done
5040 }
5041 run_test 56v "check 'lfs find -mdt match with lfs getstripe -M' ======="
5042
5043 test_56w() {
5044         [[ $OSTCOUNT -lt 2 ]] && skip_env "$OSTCOUNT < 2 OSTs -- skipping" &&
5045                 return
5046         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5047         TDIR=$DIR/${tdir}w
5048
5049     rm -rf $TDIR || error "remove $TDIR failed"
5050     setup_56 $NUMFILES $NUMDIRS "-c $OSTCOUNT" "-c1"
5051
5052     local stripe_size
5053     stripe_size=$($GETSTRIPE -S -d $TDIR) ||
5054         error "$GETSTRIPE -S -d $TDIR failed"
5055     stripe_size=${stripe_size%% *}
5056
5057     local file_size=$((stripe_size * OSTCOUNT))
5058     local file_num=$((NUMDIRS * NUMFILES + NUMFILES))
5059     local required_space=$((file_num * file_size))
5060
5061     local free_space=$($LCTL get_param -n lov.$FSNAME-clilov-*.kbytesavail |
5062                         head -n1)
5063     [[ $free_space -le $((required_space / 1024)) ]] &&
5064         skip_env "need at least $required_space bytes free space," \
5065                  "have $free_space kbytes" && return
5066
5067     local dd_bs=65536
5068     local dd_count=$((file_size / dd_bs))
5069
5070     # write data into the files
5071     local i
5072     local j
5073     local file
5074     for i in $(seq 1 $NUMFILES); do
5075         file=$TDIR/file$i
5076         yes | dd bs=$dd_bs count=$dd_count of=$file >/dev/null 2>&1 ||
5077             error "write data into $file failed"
5078     done
5079     for i in $(seq 1 $NUMDIRS); do
5080         for j in $(seq 1 $NUMFILES); do
5081             file=$TDIR/dir$i/file$j
5082             yes | dd bs=$dd_bs count=$dd_count of=$file \
5083                 >/dev/null 2>&1 ||
5084                 error "write data into $file failed"
5085         done
5086     done
5087
5088     local expected=-1
5089     [[ $OSTCOUNT -gt 1 ]] && expected=$((OSTCOUNT - 1))
5090
5091     # lfs_migrate file
5092     local cmd="$LFS_MIGRATE -y -c $expected $TDIR/file1"
5093     echo "$cmd"
5094     eval $cmd || error "$cmd failed"
5095
5096     check_stripe_count $TDIR/file1 $expected
5097
5098         if [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.90) ];
5099         then
5100                 # lfs_migrate file onto OST 0 if it is on OST 1, or onto
5101                 # OST 1 if it is on OST 0. This file is small enough to
5102                 # be on only one stripe.
5103                 file=$TDIR/migr_1_ost
5104                 dd bs=$dd_bs count=1 if=/dev/urandom of=$file >/dev/null 2>&1 ||
5105                         error "write data into $file failed"
5106                 local obdidx=$($LFS getstripe -i $file)
5107                 local oldmd5=$(md5sum $file)
5108                 local newobdidx=0
5109                 [[ $obdidx -eq 0 ]] && newobdidx=1
5110                 cmd="$LFS migrate -i $newobdidx $file"
5111                 echo $cmd
5112                 eval $cmd || error "$cmd failed"
5113                 local realobdix=$($LFS getstripe -i $file)
5114                 local newmd5=$(md5sum $file)
5115                 [[ $newobdidx -ne $realobdix ]] &&
5116                         error "new OST is different (was=$obdidx, wanted=$newobdidx, got=$realobdix)"
5117                 [[ "$oldmd5" != "$newmd5" ]] &&
5118                         error "md5sum differ: $oldmd5, $newmd5"
5119         fi
5120
5121     # lfs_migrate dir
5122     cmd="$LFS_MIGRATE -y -c $expected $TDIR/dir1"
5123     echo "$cmd"
5124     eval $cmd || error "$cmd failed"
5125
5126     for j in $(seq 1 $NUMFILES); do
5127         check_stripe_count $TDIR/dir1/file$j $expected
5128     done
5129
5130     # lfs_migrate works with lfs find
5131     cmd="$LFIND -stripe_count $OSTCOUNT -type f $TDIR |
5132          $LFS_MIGRATE -y -c $expected"
5133     echo "$cmd"
5134     eval $cmd || error "$cmd failed"
5135
5136     for i in $(seq 2 $NUMFILES); do
5137         check_stripe_count $TDIR/file$i $expected
5138     done
5139     for i in $(seq 2 $NUMDIRS); do
5140         for j in $(seq 1 $NUMFILES); do
5141             check_stripe_count $TDIR/dir$i/file$j $expected
5142         done
5143     done
5144 }
5145 run_test 56w "check lfs_migrate -c stripe_count works"
5146
5147 test_56x() {
5148         check_swap_layouts_support && return 0
5149         [[ $OSTCOUNT -lt 2 ]] &&
5150                 skip_env "need 2 OST, skipping test" && return
5151
5152         local dir0=$DIR/$tdir/$testnum
5153         test_mkdir -p $dir0 || error "creating dir $dir0"
5154
5155         local ref1=/etc/passwd
5156         local file1=$dir0/file1
5157
5158         $SETSTRIPE -c 2 $file1
5159         cp $ref1 $file1
5160         $LFS migrate -c 1 $file1 || error "migrate failed rc = $?"
5161         stripe=$($GETSTRIPE -c $file1)
5162         [[ $stripe == 1 ]] || error "stripe of $file1 is $stripe != 1"
5163         cmp $file1 $ref1 || error "content mismatch $file1 differs from $ref1"
5164
5165         # clean up
5166         rm -f $file1
5167 }
5168 run_test 56x "lfs migration support"
5169
5170 test_56xa() {
5171         check_swap_layouts_support && return 0
5172         [[ $OSTCOUNT -lt 2 ]] &&
5173                 skip_env "need 2 OST, skipping test" && return
5174
5175         local dir0=$DIR/$tdir/$testnum
5176         test_mkdir -p $dir0 || error "creating dir $dir0"
5177
5178         local ref1=/etc/passwd
5179         local file1=$dir0/file1
5180
5181         $SETSTRIPE -c 2 $file1
5182         cp $ref1 $file1
5183         $LFS migrate --block -c 1 $file1 || error "migrate failed rc = $?"
5184         local stripe=$($GETSTRIPE -c $file1)
5185         [[ $stripe == 1 ]] || error "stripe of $file1 is $stripe != 1"
5186         cmp $file1 $ref1 || error "content mismatch $file1 differs from $ref1"
5187
5188         # clean up
5189         rm -f $file1
5190 }
5191 run_test 56xa "lfs migration --block support"
5192
5193 test_56y() {
5194         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.53) ] &&
5195                 skip "No HSM $(lustre_build_version $SINGLEMDS) MDS < 2.4.53" &&
5196                 return
5197
5198         local res=""
5199         local dir0=$DIR/$tdir/$testnum
5200         test_mkdir -p $dir0 || error "creating dir $dir0"
5201         local f1=$dir0/file1
5202         local f2=$dir0/file2
5203
5204         touch $f1 || error "creating std file $f1"
5205         $MULTIOP $f2 H2c || error "creating released file $f2"
5206
5207         # a directory can be raid0, so ask only for files
5208         res=$($LFIND $dir0 -L raid0 -type f | wc -l)
5209         [[ $res == 2 ]] || error "search raid0: found $res files != 2"
5210
5211         res=$($LFIND $dir0 \! -L raid0 -type f | wc -l)
5212         [[ $res == 0 ]] || error "search !raid0: found $res files != 0"
5213
5214         # only files can be released, so no need to force file search
5215         res=$($LFIND $dir0 -L released)
5216         [[ $res == $f2 ]] || error "search released: found $res != $f2"
5217
5218         res=$($LFIND $dir0 \! -L released)
5219         [[ $res == $f1 ]] || error "search !released: found $res != $f1"
5220
5221 }
5222 run_test 56y "lfs find -L raid0|released"
5223
5224 test_56z() { # LU-4824
5225         # This checks to make sure 'lfs find' continues after errors
5226         # There are two classes of errors that should be caught:
5227         # - If multiple paths are provided, all should be searched even if one
5228         #   errors out
5229         # - If errors are encountered during the search, it should not terminate
5230         #   early
5231         local i
5232         test_mkdir $DIR/$tdir
5233         for i in d{0..9}; do
5234                 test_mkdir $DIR/$tdir/$i
5235         done
5236         touch $DIR/$tdir/d{0..9}/$tfile
5237         $LFS find $DIR/non_existent_dir $DIR/$tdir &&
5238                 error "$LFS find did not return an error"
5239         # Make a directory unsearchable. This should NOT be the last entry in
5240         # directory order.  Arbitrarily pick the 6th entry
5241         chmod 700 $($LFS find $DIR/$tdir -type d | sed '6!d')
5242         local count=$($RUNAS $LFS find $DIR/non_existent $DIR/$tdir | wc -l)
5243         # The user should be able to see 10 directories and 9 files
5244         [ $count == 19 ] || error "$LFS find did not continue after error"
5245 }
5246 run_test 56z "lfs find should continue after an error"
5247
5248 test_56aa() { # LU-5937
5249         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
5250
5251         mkdir $DIR/$tdir
5252         $LFS setdirstripe -c$MDSCOUNT $DIR/$tdir/striped_dir
5253
5254         createmany -o $DIR/$tdir/striped_dir/${tfile}- 1024
5255         local dirs=$(lfs find --size +8k $DIR/$tdir/)
5256
5257         [ -n "$dirs" ] || error "lfs find --size wrong under striped dir"
5258 }
5259 run_test 56aa "lfs find --size under striped dir"
5260
5261 test_57a() {
5262         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5263         # note test will not do anything if MDS is not local
5264         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
5265                 skip "Only applicable to ldiskfs-based MDTs"
5266                 return
5267         fi
5268
5269         remote_mds_nodsh && skip "remote MDS with nodsh" && return
5270         local MNTDEV="osd*.*MDT*.mntdev"
5271         DEV=$(do_facet $SINGLEMDS lctl get_param -n $MNTDEV)
5272         [ -z "$DEV" ] && error "can't access $MNTDEV"
5273         for DEV in $(do_facet $SINGLEMDS lctl get_param -n $MNTDEV); do
5274                 do_facet $SINGLEMDS $DUMPE2FS -h $DEV > $TMP/t57a.dump ||
5275                         error "can't access $DEV"
5276                 DEVISIZE=$(awk '/Inode size:/ { print $3 }' $TMP/t57a.dump)
5277                 [[ $DEVISIZE -gt 128 ]] || error "inode size $DEVISIZE"
5278                 rm $TMP/t57a.dump
5279         done
5280 }
5281 run_test 57a "verify MDS filesystem created with large inodes =="
5282
5283 test_57b() {
5284         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5285         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
5286                 skip "Only applicable to ldiskfs-based MDTs"
5287                 return
5288         fi
5289
5290         remote_mds_nodsh && skip "remote MDS with nodsh" && return
5291         local dir=$DIR/$tdir
5292
5293         local FILECOUNT=100
5294         local FILE1=$dir/f1
5295         local FILEN=$dir/f$FILECOUNT
5296
5297         rm -rf $dir || error "removing $dir"
5298         test_mkdir -p -c1 $dir || error "creating $dir"
5299         local mdtidx=$($LFS getstripe -M $dir)
5300         local mdtname=MDT$(printf %04x $mdtidx)
5301         local facet=mds$((mdtidx + 1))
5302
5303         echo "mcreating $FILECOUNT files"
5304         createmany -m $dir/f 1 $FILECOUNT || \
5305                 error "creating files in $dir"
5306
5307         # verify that files do not have EAs yet
5308         $GETSTRIPE $FILE1 2>&1 | grep -q "no stripe" || error "$FILE1 has an EA"
5309         $GETSTRIPE $FILEN 2>&1 | grep -q "no stripe" || error "$FILEN has an EA"
5310
5311         sync
5312         sleep 1
5313         df $dir  #make sure we get new statfs data
5314         local MDSFREE=$(do_facet $facet \
5315                 lctl get_param -n osd*.*$mdtname.kbytesfree)
5316         local MDCFREE=$(lctl get_param -n mdc.*$mdtname-mdc-*.kbytesfree)
5317         echo "opening files to create objects/EAs"
5318         local FILE
5319         for FILE in `seq -f $dir/f%g 1 $FILECOUNT`; do
5320                 $OPENFILE -f O_RDWR $FILE > /dev/null 2>&1 || error "opening $FILE"
5321         done
5322
5323         # verify that files have EAs now
5324         $GETSTRIPE $FILE1 | grep -q "obdidx" || error "$FILE1 missing EA"
5325         $GETSTRIPE $FILEN | grep -q "obdidx" || error "$FILEN missing EA"
5326
5327         sleep 1  #make sure we get new statfs data
5328         df $dir
5329         local MDSFREE2=$(do_facet $facet \
5330                 lctl get_param -n osd*.*$mdtname.kbytesfree)
5331         local MDCFREE2=$(lctl get_param -n mdc.*$mdtname-mdc-*.kbytesfree)
5332         if [[ $MDCFREE2 -lt $((MDCFREE - 16)) ]]; then
5333                 if [ "$MDSFREE" != "$MDSFREE2" ]; then
5334                         error "MDC before $MDCFREE != after $MDCFREE2"
5335                 else
5336                         echo "MDC before $MDCFREE != after $MDCFREE2"
5337                         echo "unable to confirm if MDS has large inodes"
5338                 fi
5339         fi
5340         rm -rf $dir
5341 }
5342 run_test 57b "default LOV EAs are stored inside large inodes ==="
5343
5344 test_58() {
5345         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5346         [ -z "$(which wiretest 2>/dev/null)" ] &&
5347                         skip_env "could not find wiretest" && return
5348         wiretest
5349 }
5350 run_test 58 "verify cross-platform wire constants =============="
5351
5352 test_59() {
5353         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5354         echo "touch 130 files"
5355         createmany -o $DIR/f59- 130
5356         echo "rm 130 files"
5357         unlinkmany $DIR/f59- 130
5358         sync
5359         # wait for commitment of removal
5360         wait_delete_completed
5361 }
5362 run_test 59 "verify cancellation of llog records async ========="
5363
5364 TEST60_HEAD="test_60 run $RANDOM"
5365 test_60a() {
5366         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5367         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
5368         do_facet mgs "! which run-llog.sh &> /dev/null" &&
5369                 do_facet mgs "! ls run-llog.sh &> /dev/null" &&
5370                         skip_env "missing subtest run-llog.sh" && return
5371
5372         log "$TEST60_HEAD - from kernel mode"
5373         do_facet mgs "$LCTL set_param debug=warning; $LCTL dk > /dev/null"
5374         do_facet mgs sh run-llog.sh
5375         do_facet mgs $LCTL dk > $TMP/$tfile
5376
5377         # LU-6388: test llog_reader
5378         local llog_reader=$(do_facet mgs "which llog_reader 2> /dev/null")
5379         llog_reader=${llog_reader:-$LUSTRE/utils/llog_reader}
5380         [ -z $(do_facet mgs ls -d $llog_reader 2> /dev/null) ] &&
5381                         skip_env "missing llog_reader" && return
5382         local fstype=$(facet_fstype mgs)
5383         [ $fstype != ldiskfs -a $fstype != zfs ] &&
5384                 skip_env "Only for ldiskfs or zfs type mgs" && return
5385
5386         local mntpt=$(facet_mntpt mgs)
5387         local mgsdev=$(mgsdevname 1)
5388         local fid_list
5389         local fid
5390         local rec_list
5391         local rec
5392         local rec_type
5393         local obj_file
5394         local path
5395         local seq
5396         local oid
5397         local pass=true
5398
5399         #get fid and record list
5400         fid_list=($(awk '/9_sub.*record/ { print $NF }' /$TMP/$tfile |
5401                 tail -n 4))
5402         rec_list=($(awk '/9_sub.*record/ { print $((NF-3)) }' /$TMP/$tfile |
5403                 tail -n 4))
5404         #remount mgs as ldiskfs or zfs type
5405         stop mgs || error "stop mgs failed"
5406         mount_fstype mgs || error "remount mgs failed"
5407         for ((i = 0; i < ${#fid_list[@]}; i++)); do
5408                 fid=${fid_list[i]}
5409                 rec=${rec_list[i]}
5410                 seq=$(echo $fid | awk -F ':' '{ print $1 }' | sed -e "s/^0x//g")
5411                 oid=$(echo $fid | awk -F ':' '{ print $2 }' | sed -e "s/^0x//g")
5412                 oid=$((16#$oid))
5413
5414                 case $fstype in
5415                         ldiskfs )
5416                                 obj_file=$mntpt/O/$seq/d$((oid%32))/$oid ;;
5417                         zfs )
5418                                 obj_file=$mntpt/oi.$(($((16#$seq))&127))/$fid ;;
5419                 esac
5420                 echo "obj_file is $obj_file"
5421                 do_facet mgs $llog_reader $obj_file
5422
5423                 rec_type=$(do_facet mgs $llog_reader $obj_file | grep "type=" |
5424                         awk '{ print $3 }' | sed -e "s/^type=//g")
5425                 if [ $rec_type != $rec ]; then
5426                         echo "FAILED test_60a wrong record type $rec_type," \
5427                               "should be $rec"
5428                         pass=false
5429                         break
5430                 fi
5431
5432                 #check obj path if record type is LLOG_LOGID_MAGIC
5433                 if [ "$rec" == "1064553b" ]; then
5434                         path=$(do_facet mgs $llog_reader $obj_file |
5435                                 grep "path=" | awk '{ print $NF }' |
5436                                 sed -e "s/^path=//g")
5437                         if [ $obj_file != $mntpt/$path ]; then
5438                                 echo "FAILED test_60a wrong obj path" \
5439                                       "$montpt/$path, should be $obj_file"
5440                                 pass=false
5441                                 break
5442                         fi
5443                 fi
5444         done
5445         rm -f $TMP/$tfile
5446         #restart mgs before "error", otherwise it will block the next test
5447         stop mgs || error "stop mgs failed"
5448         start mgs $(mgsdevname) $MGS_MOUNT_OPTS || error "start mgs failed"
5449         $pass || error "test failed, see FAILED test_60a messages for specifics"
5450 }
5451 run_test 60a "llog_test run from kernel module and test llog_reader"
5452
5453 test_60aa() {
5454         # test old logid format
5455         if [ $(lustre_version_code mgs) -le $(version_code 3.1.53) ]; then
5456                 do_facet mgs $LCTL dl | grep MGS
5457                 do_facet mgs "$LCTL --device %MGS llog_print \\\\\\\$$FSNAME-client" ||
5458                         error "old llog_print failed"
5459         fi
5460
5461         # test new logid format
5462         if [ $(lustre_version_code mgs) -ge $(version_code 2.9.53) ]; then
5463                 do_facet mgs "$LCTL --device MGS llog_print $FSNAME-client" ||
5464                         error "new llog_print failed"
5465         fi
5466 }
5467 run_test 60aa "llog_print works with FIDs and simple names"
5468
5469 test_60b() { # bug 6411
5470         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5471         dmesg > $DIR/$tfile
5472         LLOG_COUNT=$(dmesg | awk "/$TEST60_HEAD/ { marker = 1; from_marker = 0; }
5473                                 /llog.test/ {
5474                                         if (marker)
5475                                                 from_marker++
5476                                         from_begin++
5477                                 }
5478                                 END {
5479                                         if (marker)
5480                                                 print from_marker
5481                                         else
5482                                                 print from_begin
5483                                 }")
5484         [[ $LLOG_COUNT -gt 100 ]] &&
5485                 error "CDEBUG_LIMIT not limiting messages ($LLOG_COUNT)" || true
5486 }
5487 run_test 60b "limit repeated messages from CERROR/CWARN ========"
5488
5489 test_60c() {
5490         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5491         echo "create 5000 files"
5492         createmany -o $DIR/f60c- 5000
5493 #define OBD_FAIL_MDS_LLOG_CREATE_FAILED  0x137
5494         lctl set_param fail_loc=0x80000137
5495         unlinkmany $DIR/f60c- 5000
5496         lctl set_param fail_loc=0
5497 }
5498 run_test 60c "unlink file when mds full"
5499
5500 test_60d() {
5501         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5502         SAVEPRINTK=$(lctl get_param -n printk)
5503
5504         # verify "lctl mark" is even working"
5505         MESSAGE="test message ID $RANDOM $$"
5506         $LCTL mark "$MESSAGE" || error "$LCTL mark failed"
5507         dmesg | grep -q "$MESSAGE" || error "didn't find debug marker in log"
5508
5509         lctl set_param printk=0 || error "set lnet.printk failed"
5510         lctl get_param -n printk | grep emerg || error "lnet.printk dropped emerg"
5511         MESSAGE="new test message ID $RANDOM $$"
5512         # Assume here that libcfs_debug_mark_buffer() uses D_WARNING
5513         $LCTL mark "$MESSAGE" || error "$LCTL mark failed"
5514         dmesg | grep -q "$MESSAGE" && error "D_WARNING wasn't masked" || true
5515
5516         lctl set_param -n printk="$SAVEPRINTK"
5517 }
5518 run_test 60d "test printk console message masking"
5519
5520 test_60e() {
5521         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5522         remote_mds_nodsh && skip "remote MDS with nodsh" && return
5523         touch $DIR/$tfile
5524 #define OBD_FAIL_MDS_LLOG_CREATE_FAILED2  0x15b
5525         do_facet mds1 lctl set_param fail_loc=0x15b
5526         rm $DIR/$tfile
5527 }
5528 run_test 60e "no space while new llog is being created"
5529
5530 test_61() {
5531         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5532         f="$DIR/f61"
5533         dd if=/dev/zero of=$f bs=$(page_size) count=1 || error "dd $f failed"
5534         cancel_lru_locks osc
5535         $MULTIOP $f OSMWUc || error "$MULTIOP $f failed"
5536         sync
5537 }
5538 run_test 61 "mmap() writes don't make sync hang ================"
5539
5540 # bug 2330 - insufficient obd_match error checking causes LBUG
5541 test_62() {
5542         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5543         f="$DIR/f62"
5544         echo foo > $f
5545         cancel_lru_locks osc
5546         lctl set_param fail_loc=0x405
5547         cat $f && error "cat succeeded, expect -EIO"
5548         lctl set_param fail_loc=0
5549 }
5550 # This test is now irrelevant (as of bug 10718 inclusion), we no longer
5551 # match every page all of the time.
5552 #run_test 62 "verify obd_match failure doesn't LBUG (should -EIO)"
5553
5554 # bug 2319 - oig_wait() interrupted causes crash because of invalid waitq.
5555 # Though this test is irrelevant anymore, it helped to reveal some
5556 # other grant bugs (LU-4482), let's keep it.
5557 test_63a() {   # was test_63
5558         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5559         MAX_DIRTY_MB=`lctl get_param -n osc.*.max_dirty_mb | head -n 1`
5560         for i in `seq 10` ; do
5561                 dd if=/dev/zero of=$DIR/f63 bs=8k &
5562                 sleep 5
5563                 kill $!
5564                 sleep 1
5565         done
5566
5567         rm -f $DIR/f63 || true
5568 }
5569 run_test 63a "Verify oig_wait interruption does not crash ======="
5570
5571 # bug 2248 - async write errors didn't return to application on sync
5572 # bug 3677 - async write errors left page locked
5573 test_63b() {
5574         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5575         debugsave
5576         lctl set_param debug=-1
5577
5578         # ensure we have a grant to do async writes
5579         dd if=/dev/zero of=$DIR/$tfile bs=4k count=1
5580         rm $DIR/$tfile
5581
5582         sync    # sync lest earlier test intercept the fail_loc
5583
5584         #define OBD_FAIL_OSC_BRW_PREP_REQ        0x406
5585         lctl set_param fail_loc=0x80000406
5586         $MULTIOP $DIR/$tfile Owy && \
5587                 error "sync didn't return ENOMEM"
5588         sync; sleep 2; sync     # do a real sync this time to flush page
5589         lctl get_param -n llite.*.dump_page_cache | grep locked && \
5590                 error "locked page left in cache after async error" || true
5591         debugrestore
5592 }
5593 run_test 63b "async write errors should be returned to fsync ==="
5594
5595 test_64a () {
5596         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5597         df $DIR
5598         lctl get_param -n osc.*[oO][sS][cC][_-]*.cur* | grep "[0-9]"
5599 }
5600 run_test 64a "verify filter grant calculations (in kernel) ====="
5601
5602 test_64b () {
5603         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5604         sh oos.sh $MOUNT || error "oos.sh failed: $?"
5605 }
5606 run_test 64b "check out-of-space detection on client ==========="
5607
5608 test_64c() {
5609         $LCTL set_param osc.*OST0000-osc-[^mM]*.cur_grant_bytes=0
5610 }
5611 run_test 64c "verify grant shrink ========================------"
5612
5613 # bug 1414 - set/get directories' stripe info
5614 test_65a() {
5615         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5616         test_mkdir -p $DIR/$tdir
5617         touch $DIR/$tdir/f1
5618         $LVERIFY $DIR/$tdir $DIR/$tdir/f1 || error "lverify failed"
5619 }
5620 run_test 65a "directory with no stripe info ===================="
5621
5622 test_65b() {
5623         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5624         test_mkdir -p $DIR/$tdir
5625         local STRIPESIZE=$($GETSTRIPE -S $DIR/$tdir)
5626
5627         $SETSTRIPE -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
5628                                                 error "setstripe"
5629         touch $DIR/$tdir/f2
5630         $LVERIFY $DIR/$tdir $DIR/$tdir/f2 || error "lverify failed"
5631 }
5632 run_test 65b "directory setstripe -S stripe_size*2 -i 0 -c 1"
5633
5634 test_65c() {
5635         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5636         if [[ $OSTCOUNT -gt 1 ]]; then
5637                 test_mkdir -p $DIR/$tdir
5638                 local STRIPESIZE=$($GETSTRIPE -S $DIR/$tdir)
5639
5640                 $SETSTRIPE -S $(($STRIPESIZE * 4)) -i 1 \
5641                         -c $(($OSTCOUNT - 1)) $DIR/$tdir || error "setstripe"
5642                 touch $DIR/$tdir/f3
5643                 $LVERIFY $DIR/$tdir $DIR/$tdir/f3 || error "lverify failed"
5644         fi
5645 }
5646 run_test 65c "directory setstripe -S stripe_size*4 -i 1 -c $((OSTCOUNT-1))"
5647
5648 test_65d() {
5649         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5650         test_mkdir -p $DIR/$tdir
5651         local STRIPECOUNT=$($GETSTRIPE -c $DIR/$tdir)
5652         local STRIPESIZE=$($GETSTRIPE -S $DIR/$tdir)
5653
5654         if [[ $STRIPECOUNT -le 0 ]]; then
5655                 sc=1
5656         elif [[ $STRIPECOUNT -gt 2000 ]]; then
5657 #LOV_MAX_STRIPE_COUNT is 2000
5658                 [[ $OSTCOUNT -gt 2000 ]] && sc=2000 || sc=$(($OSTCOUNT - 1))
5659         else
5660                 sc=$(($STRIPECOUNT - 1))
5661         fi
5662         $SETSTRIPE -S $STRIPESIZE -c $sc $DIR/$tdir || error "setstripe"
5663         touch $DIR/$tdir/f4 $DIR/$tdir/f5
5664         $LVERIFY $DIR/$tdir $DIR/$tdir/f4 $DIR/$tdir/f5 ||
5665                 error "lverify failed"
5666 }
5667 run_test 65d "directory setstripe -S stripe_size -c stripe_count"
5668
5669 test_65e() {
5670         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5671         test_mkdir -p $DIR/$tdir
5672
5673         $SETSTRIPE $DIR/$tdir || error "setstripe"
5674         $GETSTRIPE -v $DIR/$tdir | grep "Default" ||
5675                                         error "no stripe info failed"
5676         touch $DIR/$tdir/f6
5677         $LVERIFY $DIR/$tdir $DIR/$tdir/f6 || error "lverify failed"
5678 }
5679 run_test 65e "directory setstripe defaults ======================="
5680
5681 test_65f() {
5682         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5683         test_mkdir -p $DIR/${tdir}f
5684         $RUNAS $SETSTRIPE $DIR/${tdir}f && error "setstripe succeeded" || true
5685 }
5686 run_test 65f "dir setstripe permission (should return error) ==="
5687
5688 test_65g() {
5689         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5690         test_mkdir -p $DIR/$tdir
5691         local STRIPESIZE=$($GETSTRIPE -S $DIR/$tdir)
5692
5693         $SETSTRIPE -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
5694                                                         error "setstripe"
5695         $SETSTRIPE -d $DIR/$tdir || error "setstripe"
5696         $GETSTRIPE -v $DIR/$tdir | grep "Default" ||
5697                 error "delete default stripe failed"
5698 }
5699 run_test 65g "directory setstripe -d ==========================="
5700
5701 test_65h() {
5702         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5703         test_mkdir -p $DIR/$tdir
5704         local STRIPESIZE=$($GETSTRIPE -S $DIR/$tdir)
5705
5706         $SETSTRIPE -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
5707                                                         error "setstripe"
5708         test_mkdir -p $DIR/$tdir/dd1
5709         [ $($GETSTRIPE -c $DIR/$tdir) == $($GETSTRIPE -c $DIR/$tdir/dd1) ] ||
5710                 error "stripe info inherit failed"
5711 }
5712 run_test 65h "directory stripe info inherit ===================="
5713
5714 test_65i() { # bug6367
5715         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5716         $SETSTRIPE -S 65536 -c -1 $MOUNT
5717 }
5718 run_test 65i "set non-default striping on root directory (bug 6367)="
5719
5720 test_65ia() { # bug12836
5721         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5722         $GETSTRIPE $MOUNT || error "getstripe $MOUNT failed"
5723 }
5724 run_test 65ia "getstripe on -1 default directory striping"
5725
5726 test_65ib() { # bug12836
5727         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5728         $GETSTRIPE -v $MOUNT || error "getstripe -v $MOUNT failed"
5729 }
5730 run_test 65ib "getstripe -v on -1 default directory striping"
5731
5732 test_65ic() { # bug12836
5733         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5734         $LFS find -mtime -1 $MOUNT > /dev/null || error "find $MOUNT failed"
5735 }
5736 run_test 65ic "new find on -1 default directory striping"
5737
5738 test_65j() { # bug6367
5739         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5740         sync; sleep 1
5741         # if we aren't already remounting for each test, do so for this test
5742         if [ "$CLEANUP" = ":" -a "$I_MOUNTED" = "yes" ]; then
5743                 cleanup || error "failed to unmount"
5744                 setup
5745         fi
5746         $SETSTRIPE -d $MOUNT || error "setstripe failed"
5747 }
5748 run_test 65j "set default striping on root directory (bug 6367)="
5749
5750 test_65k() { # bug11679
5751         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5752         [[ $OSTCOUNT -lt 2 ]] && skip_env "too few OSTs" && return
5753         remote_mds_nodsh && skip "remote MDS with nodsh" && return
5754
5755         local disable_precreate=true
5756         [ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.8.54) ] &&
5757                 disable_precreate=false
5758
5759         echo "Check OST status: "
5760         local MDS_OSCS=$(do_facet $SINGLEMDS lctl dl |
5761                 awk '/[oO][sS][cC].*md[ts]/ { print $4 }')
5762
5763         for OSC in $MDS_OSCS; do
5764                 echo $OSC "is active"
5765                 do_facet $SINGLEMDS lctl --device %$OSC activate
5766         done
5767
5768         for INACTIVE_OSC in $MDS_OSCS; do
5769                 local ost=$(osc_to_ost $INACTIVE_OSC)
5770                 local ostnum=$(do_facet $SINGLEMDS lctl get_param -n \
5771                                lov.*md*.target_obd |
5772                                awk -F: /$ost/'{ print $1 }' | head -n 1)
5773
5774                 mkdir -p $DIR/$tdir
5775                 $SETSTRIPE -i $ostnum -c 1 $DIR/$tdir
5776                 createmany -o $DIR/$tdir/$tfile.$ostnum. 1000
5777
5778                 echo "Deactivate: " $INACTIVE_OSC
5779                 do_facet $SINGLEMDS lctl --device %$INACTIVE_OSC deactivate
5780
5781                 local count=$(do_facet $SINGLEMDS "lctl get_param -n \
5782                               osp.$ost*MDT0000.create_count")
5783                 local max_count=$(do_facet $SINGLEMDS "lctl get_param -n \
5784                                   osp.$ost*MDT0000.max_create_count")
5785                 $disable_precreate &&
5786                         do_facet $SINGLEMDS "lctl set_param -n \
5787                                 osp.$ost*MDT0000.max_create_count=0"
5788
5789                 for idx in $(seq 0 $((OSTCOUNT - 1))); do
5790                         [ -f $DIR/$tdir/$idx ] && continue
5791                         echo "$SETSTRIPE -i $idx -c 1 $DIR/$tdir/$idx"
5792                         $SETSTRIPE -i $idx -c 1 $DIR/$tdir/$idx ||
5793                                 error "setstripe $idx should succeed"
5794                         rm -f $DIR/$tdir/$idx || error "rm $idx failed"
5795                 done
5796                 unlinkmany $DIR/$tdir/$tfile.$ostnum. 1000
5797                 rmdir $DIR/$tdir
5798
5799                 do_facet $SINGLEMDS "lctl set_param -n \
5800                         osp.$ost*MDT0000.max_create_count=$max_count"
5801                 do_facet $SINGLEMDS "lctl set_param -n \
5802                         osp.$ost*MDT0000.create_count=$count"
5803                 do_facet $SINGLEMDS lctl --device  %$INACTIVE_OSC activate
5804                 echo $INACTIVE_OSC "is Activate"
5805
5806                 wait_osc_import_state mds ost$ostnum FULL
5807         done
5808 }
5809 run_test 65k "validate manual striping works properly with deactivated OSCs"
5810
5811 test_65l() { # bug 12836
5812         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5813         test_mkdir -p $DIR/$tdir/test_dir
5814         $SETSTRIPE -c -1 $DIR/$tdir/test_dir
5815         $LFS find -mtime -1 $DIR/$tdir >/dev/null
5816 }
5817 run_test 65l "lfs find on -1 stripe dir ========================"
5818
5819 test_65m() {
5820         $RUNAS $SETSTRIPE -c 2 $MOUNT && error "setstripe should fail"
5821         true
5822 }
5823 run_test 65m "normal user can't set filesystem default stripe"
5824
5825 # bug 2543 - update blocks count on client
5826 test_66() {
5827         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5828         COUNT=${COUNT:-8}
5829         dd if=/dev/zero of=$DIR/f66 bs=1k count=$COUNT
5830         sync; sync_all_data; sync; sync_all_data
5831         cancel_lru_locks osc
5832         BLOCKS=`ls -s $DIR/f66 | awk '{ print $1 }'`
5833         [ $BLOCKS -ge $COUNT ] || error "$DIR/f66 blocks $BLOCKS < $COUNT"
5834 }
5835 run_test 66 "update inode blocks count on client ==============="
5836
5837 LLOOP=
5838 LLITELOOPLOAD=
5839 cleanup_68() {
5840         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5841         trap 0
5842         if [ ! -z "$LLOOP" ]; then
5843                 if swapon -s | grep -q $LLOOP; then
5844                         swapoff $LLOOP || error "swapoff failed"
5845                 fi
5846
5847                 $LCTL blockdev_detach $LLOOP || error "detach failed"
5848                 rm -f $LLOOP
5849                 unset LLOOP
5850         fi
5851         rm -f $DIR/f68*
5852 }
5853
5854 meminfo() {
5855         awk '($1 == "'$1':") { print $2 }' /proc/meminfo
5856 }
5857
5858 swap_used() {
5859         swapon -s | awk '($1 == "'$1'") { print $4 }'
5860 }
5861
5862 # bug5265, obdfilter oa2dentry return -ENOENT
5863 # #define OBD_FAIL_SRV_ENOENT 0x217
5864 test_69() {
5865         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5866         remote_ost_nodsh && skip "remote OST with nodsh" && return
5867
5868         f="$DIR/$tfile"
5869         $SETSTRIPE -c 1 -i 0 $f
5870
5871         $DIRECTIO write ${f}.2 0 1 || error "directio write error"
5872
5873         do_facet ost1 lctl set_param fail_loc=0x217
5874         $TRUNCATE $f 1 # vmtruncate() will ignore truncate() error.
5875         $DIRECTIO write $f 0 2 && error "write succeeded, expect -ENOENT"
5876
5877         do_facet ost1 lctl set_param fail_loc=0
5878         $DIRECTIO write $f 0 2 || error "write error"
5879
5880         cancel_lru_locks osc
5881         $DIRECTIO read $f 0 1 || error "read error"
5882
5883         do_facet ost1 lctl set_param fail_loc=0x217
5884         $DIRECTIO read $f 1 1 && error "read succeeded, expect -ENOENT"
5885
5886         do_facet ost1 lctl set_param fail_loc=0
5887         rm -f $f
5888 }
5889 run_test 69 "verify oa2dentry return -ENOENT doesn't LBUG ======"
5890
5891 test_71() {
5892         test_mkdir -p $DIR/$tdir
5893         $LFS setdirstripe -D -c$MDSCOUNT $DIR/$tdir
5894         sh rundbench -C -D $DIR/$tdir 2 || error "dbench failed!"
5895 }
5896 run_test 71 "Running dbench on lustre (don't segment fault) ===="
5897
5898 test_72a() { # bug 5695 - Test that on 2.6 remove_suid works properly
5899         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5900         [ "$RUNAS_ID" = "$UID" ] &&
5901                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
5902
5903         # Check that testing environment is properly set up. Skip if not
5904         FAIL_ON_ERROR=false check_runas_id_ret $RUNAS_ID $RUNAS_GID $RUNAS || {
5905                 skip_env "User $RUNAS_ID does not exist - skipping"
5906                 return 0
5907         }
5908         touch $DIR/$tfile
5909         chmod 777 $DIR/$tfile
5910         chmod ug+s $DIR/$tfile
5911         $RUNAS dd if=/dev/zero of=$DIR/$tfile bs=512 count=1 ||
5912                 error "$RUNAS dd $DIR/$tfile failed"
5913         # See if we are still setuid/sgid
5914         test -u $DIR/$tfile -o -g $DIR/$tfile &&
5915                 error "S/gid is not dropped on write"
5916         # Now test that MDS is updated too
5917         cancel_lru_locks mdc
5918         test -u $DIR/$tfile -o -g $DIR/$tfile &&
5919                 error "S/gid is not dropped on MDS"
5920         rm -f $DIR/$tfile
5921 }
5922 run_test 72a "Test that remove suid works properly (bug5695) ===="
5923
5924 test_72b() { # bug 24226 -- keep mode setting when size is not changing
5925         local perm
5926
5927         [ "$RUNAS_ID" = "$UID" ] && \
5928                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
5929         [ "$RUNAS_ID" -eq 0 ] && \
5930                 skip_env "RUNAS_ID = 0 -- skipping" && return
5931
5932         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5933         # Check that testing environment is properly set up. Skip if not
5934         FAIL_ON_ERROR=false check_runas_id_ret $RUNAS_ID $RUNAS_ID $RUNAS || {
5935                 skip_env "User $RUNAS_ID does not exist - skipping"
5936                 return 0
5937         }
5938         touch $DIR/${tfile}-f{g,u}
5939         test_mkdir $DIR/${tfile}-dg
5940         test_mkdir $DIR/${tfile}-du
5941         chmod 770 $DIR/${tfile}-{f,d}{g,u}
5942         chmod g+s $DIR/${tfile}-{f,d}g
5943         chmod u+s $DIR/${tfile}-{f,d}u
5944         for perm in 777 2777 4777; do
5945                 $RUNAS chmod $perm $DIR/${tfile}-fg && error "S/gid file allowed improper chmod to $perm"
5946                 $RUNAS chmod $perm $DIR/${tfile}-fu && error "S/uid file allowed improper chmod to $perm"
5947                 $RUNAS chmod $perm $DIR/${tfile}-dg && error "S/gid dir allowed improper chmod to $perm"
5948                 $RUNAS chmod $perm $DIR/${tfile}-du && error "S/uid dir allowed improper chmod to $perm"
5949         done
5950         true
5951 }
5952 run_test 72b "Test that we keep mode setting if without file data changed (bug 24226)"
5953
5954 # bug 3462 - multiple simultaneous MDC requests
5955 test_73() {
5956         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5957         test_mkdir $DIR/d73-1
5958         test_mkdir $DIR/d73-2
5959         multiop_bg_pause $DIR/d73-1/f73-1 O_c || return 1
5960         pid1=$!
5961
5962         lctl set_param fail_loc=0x80000129
5963         $MULTIOP $DIR/d73-1/f73-2 Oc &
5964         sleep 1
5965         lctl set_param fail_loc=0
5966
5967         $MULTIOP $DIR/d73-2/f73-3 Oc &
5968         pid3=$!
5969
5970         kill -USR1 $pid1
5971         wait $pid1 || return 1
5972
5973         sleep 25
5974
5975         $CHECKSTAT -t file $DIR/d73-1/f73-1 || return 4
5976         $CHECKSTAT -t file $DIR/d73-1/f73-2 || return 5
5977         $CHECKSTAT -t file $DIR/d73-2/f73-3 || return 6
5978
5979         rm -rf $DIR/d73-*
5980 }
5981 run_test 73 "multiple MDC requests (should not deadlock)"
5982
5983 test_74a() { # bug 6149, 6184
5984         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5985         #define OBD_FAIL_LDLM_ENQUEUE_OLD_EXPORT 0x30e
5986         #
5987         # very important to OR with OBD_FAIL_ONCE (0x80000000) -- otherwise it
5988         # will spin in a tight reconnection loop
5989         touch $DIR/f74a
5990         $LCTL set_param fail_loc=0x8000030e
5991         # get any lock that won't be difficult - lookup works.
5992         ls $DIR/f74a
5993         $LCTL set_param fail_loc=0
5994         rm -f $DIR/f74a
5995         true
5996 }
5997 run_test 74a "ldlm_enqueue freed-export error path, ls (shouldn't LBUG)"
5998
5999 test_74b() { # bug 13310
6000         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6001         #define OBD_FAIL_LDLM_ENQUEUE_OLD_EXPORT 0x30e
6002         #
6003         # very important to OR with OBD_FAIL_ONCE (0x80000000) -- otherwise it
6004         # will spin in a tight reconnection loop
6005         $LCTL set_param fail_loc=0x8000030e
6006         # get a "difficult" lock
6007         touch $DIR/f74b
6008         $LCTL set_param fail_loc=0
6009         rm -f $DIR/f74b
6010         true
6011 }
6012 run_test 74b "ldlm_enqueue freed-export error path, touch (shouldn't LBUG)"
6013
6014 test_74c() {
6015         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6016         #define OBD_FAIL_LDLM_NEW_LOCK
6017         $LCTL set_param fail_loc=0x319
6018         touch $DIR/$tfile && error "touch successful"
6019         $LCTL set_param fail_loc=0
6020         true
6021 }
6022 run_test 74c "ldlm_lock_create error path, (shouldn't LBUG)"
6023
6024 num_inodes() {
6025         awk '/lustre_inode_cache/ {print $2; exit}' /proc/slabinfo
6026 }
6027
6028 get_inode_slab_tunables() {
6029         awk '/lustre_inode_cache/ {print $9," ",$10," ",$11; exit}' /proc/slabinfo
6030 }
6031
6032 set_inode_slab_tunables() {
6033         echo "lustre_inode_cache $1" > /proc/slabinfo
6034 }
6035
6036 test_76() { # Now for bug 20433, added originally in bug 1443
6037         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6038         local SLAB_SETTINGS=$(get_inode_slab_tunables)
6039         local CPUS=$(getconf _NPROCESSORS_ONLN 2>/dev/null)
6040         # we cannot set limit below 1 which means 1 inode in each
6041         # per-cpu cache is still allowed
6042         set_inode_slab_tunables "1 1 0"
6043         cancel_lru_locks osc
6044         BEFORE_INODES=$(num_inodes)
6045         echo "before inodes: $BEFORE_INODES"
6046         local COUNT=1000
6047         [ "$SLOW" = "no" ] && COUNT=100
6048         for i in $(seq $COUNT); do
6049                 touch $DIR/$tfile
6050                 rm -f $DIR/$tfile
6051         done
6052         cancel_lru_locks osc
6053         AFTER_INODES=$(num_inodes)
6054         echo "after inodes: $AFTER_INODES"
6055         local wait=0
6056         while [[ $((AFTER_INODES-1*${CPUS:-1})) -gt $BEFORE_INODES ]]; do
6057                 sleep 2
6058                 AFTER_INODES=$(num_inodes)
6059                 wait=$((wait+2))
6060                 echo "wait $wait seconds inodes: $AFTER_INODES"
6061                 if [ $wait -gt 30 ]; then
6062                         error "inode slab grew from $BEFORE_INODES to $AFTER_INODES"
6063                 fi
6064         done
6065         set_inode_slab_tunables "$SLAB_SETTINGS"
6066 }
6067 run_test 76 "confirm clients recycle inodes properly ===="
6068
6069
6070 export ORIG_CSUM=""
6071 set_checksums()
6072 {
6073         # Note: in sptlrpc modes which enable its own bulk checksum, the
6074         # original crc32_le bulk checksum will be automatically disabled,
6075         # and the OBD_FAIL_OSC_CHECKSUM_SEND/OBD_FAIL_OSC_CHECKSUM_RECEIVE
6076         # will be checked by sptlrpc code against sptlrpc bulk checksum.
6077         # In this case set_checksums() will not be no-op, because sptlrpc
6078         # bulk checksum will be enabled all through the test.
6079
6080         [ "$ORIG_CSUM" ] || ORIG_CSUM=`lctl get_param -n osc.*.checksums | head -n1`
6081         lctl set_param -n osc.*.checksums $1
6082         return 0
6083 }
6084
6085 export ORIG_CSUM_TYPE="`lctl get_param -n osc.*osc-[^mM]*.checksum_type |
6086                         sed 's/.*\[\(.*\)\].*/\1/g' | head -n1`"
6087 CKSUM_TYPES=${CKSUM_TYPES:-"crc32 adler"}
6088 [ "$ORIG_CSUM_TYPE" = "crc32c" ] && CKSUM_TYPES="$CKSUM_TYPES crc32c"
6089 set_checksum_type()
6090 {
6091         lctl set_param -n osc.*osc-[^mM]*.checksum_type $1
6092         log "set checksum type to $1"
6093         return 0
6094 }
6095 F77_TMP=$TMP/f77-temp
6096 F77SZ=8
6097 setup_f77() {
6098         dd if=/dev/urandom of=$F77_TMP bs=1M count=$F77SZ || \
6099                 error "error writing to $F77_TMP"
6100 }
6101
6102 test_77a() { # bug 10889
6103         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6104         $GSS && skip "could not run with gss" && return
6105         [ ! -f $F77_TMP ] && setup_f77
6106         set_checksums 1
6107         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ || error "dd error"
6108         set_checksums 0
6109         rm -f $DIR/$tfile
6110 }
6111 run_test 77a "normal checksum read/write operation"
6112
6113 test_77b() { # bug 10889
6114         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6115         $GSS && skip "could not run with gss" && return
6116         [ ! -f $F77_TMP ] && setup_f77
6117         #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
6118         $LCTL set_param fail_loc=0x80000409
6119         set_checksums 1
6120
6121         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ conv=sync ||
6122                 error "dd error: $?"
6123         $LCTL set_param fail_loc=0
6124
6125         for algo in $CKSUM_TYPES; do
6126                 cancel_lru_locks osc
6127                 set_checksum_type $algo
6128                 #define OBD_FAIL_OSC_CHECKSUM_RECEIVE    0x408
6129                 $LCTL set_param fail_loc=0x80000408
6130                 cmp $F77_TMP $DIR/$tfile || error "file compare failed"
6131                 $LCTL set_param fail_loc=0
6132         done
6133         set_checksums 0
6134         set_checksum_type $ORIG_CSUM_TYPE
6135         rm -f $DIR/$tfile
6136 }
6137 run_test 77b "checksum error on client write, read"
6138
6139 cleanup_77c() {
6140         trap 0
6141         set_checksums 0
6142         $LCTL set_param osc.*osc-[^mM]*.checksum_dump=0
6143         $check_ost &&
6144                 do_facet ost1 $LCTL set_param obdfilter.*-OST*.checksum_dump=0
6145         [ -n $osc_file_prefix ] && rm -f ${osc_file_prefix}*
6146         $check_ost && [ -n $ost_file_prefix ] &&
6147                 do_facet ost1 rm -f ${ost_file_prefix}\*
6148 }
6149
6150 test_77c() {
6151         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6152         $GSS && skip "could not run with gss" && return
6153
6154         local bad1
6155         local osc_file_prefix
6156         local osc_file
6157         local check_ost=false
6158         local ost_file_prefix
6159         local ost_file
6160         local orig_cksum
6161         local dump_cksum
6162         local fid
6163
6164         # ensure corruption will occur on first OSS/OST
6165         $LFS setstripe -i 0 $DIR/$tfile
6166
6167         [ ! -f $F77_TMP ] && setup_f77
6168         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ conv=sync ||
6169                 error "dd write error: $?"
6170         fid=$($LFS path2fid $DIR/$tfile)
6171
6172         if [ $(lustre_version_code ost1) -ge $(version_code 2.5.42.6) ]
6173         then
6174                 check_ost=true
6175                 ost_file_prefix=$(do_facet ost1 $LCTL get_param -n debug_path)
6176                 ost_file_prefix=${ost_file_prefix}-checksum_dump-ost-\\${fid}
6177         else
6178                 echo "OSS do not support bulk pages dump upon error"
6179         fi
6180
6181         osc_file_prefix=$($LCTL get_param -n debug_path)
6182         osc_file_prefix=${osc_file_prefix}-checksum_dump-osc-\\${fid}
6183
6184         trap cleanup_77c EXIT
6185
6186         set_checksums 1
6187         # enable bulk pages dump upon error on Client
6188         $LCTL set_param osc.*osc-[^mM]*.checksum_dump=1
6189         # enable bulk pages dump upon error on OSS
6190         $check_ost &&
6191                 do_facet ost1 $LCTL set_param obdfilter.*-OST*.checksum_dump=1
6192
6193         # flush Client cache to allow next read to reach OSS
6194         cancel_lru_locks osc
6195
6196         #define OBD_FAIL_OSC_CHECKSUM_RECEIVE       0x408
6197         $LCTL set_param fail_loc=0x80000408
6198         dd if=$DIR/$tfile of=/dev/null bs=1M || error "dd read error: $?"
6199         $LCTL set_param fail_loc=0
6200
6201         rm -f $DIR/$tfile
6202
6203         # check cksum dump on Client
6204         osc_file=$(ls ${osc_file_prefix}*)
6205         [ -n "$osc_file" ] || error "no checksum dump file on Client"
6206         # OBD_FAIL_OSC_CHECKSUM_RECEIVE corrupts with "bad1" at start of file
6207         bad1=$(dd if=$osc_file bs=1 count=4 2>/dev/null) || error "dd error: $?"
6208         [ $bad1 == "bad1" ] || error "unexpected corrupt pattern"
6209         orig_cksum=$(dd if=$F77_TMP bs=1 skip=4 count=1048572 2>/dev/null |
6210                      cksum)
6211         dump_cksum=$(dd if=$osc_file bs=1 skip=4 2>/dev/null | cksum)
6212         [[ "$orig_cksum" == "$dump_cksum" ]] ||
6213                 error "dump content does not match on Client"
6214
6215         $check_ost || skip "No need to check cksum dump on OSS"
6216
6217         # check cksum dump on OSS
6218         ost_file=$(do_facet ost1 ls ${ost_file_prefix}\*)
6219         [ -n "$ost_file" ] || error "no checksum dump file on OSS"
6220         orig_cksum=$(dd if=$F77_TMP bs=1048576 count=1 2>/dev/null | cksum)
6221         dump_cksum=$(do_facet ost1 dd if=$ost_file 2>/dev/null \| cksum)
6222         [[ "$orig_cksum" == "$dump_cksum" ]] ||
6223                 error "dump content does not match on OSS"
6224
6225         cleanup_77c
6226 }
6227 run_test 77c "checksum error on client read with debug"
6228
6229 test_77d() { # bug 10889
6230         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6231         $GSS && skip "could not run with gss" && return
6232         #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
6233         $LCTL set_param fail_loc=0x80000409
6234         set_checksums 1
6235         $DIRECTIO write $DIR/$tfile 0 $F77SZ $((1024 * 1024)) ||
6236                 error "direct write: rc=$?"
6237         $LCTL set_param fail_loc=0
6238         set_checksums 0
6239
6240         #define OBD_FAIL_OSC_CHECKSUM_RECEIVE    0x408
6241         $LCTL set_param fail_loc=0x80000408
6242         set_checksums 1
6243         cancel_lru_locks osc
6244         $DIRECTIO read $DIR/$tfile 0 $F77SZ $((1024 * 1024)) ||
6245                 error "direct read: rc=$?"
6246         $LCTL set_param fail_loc=0
6247         set_checksums 0
6248 }
6249 run_test 77d "checksum error on OST direct write, read"
6250
6251 test_77f() { # bug 10889
6252         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6253         $GSS && skip "could not run with gss" && return
6254         set_checksums 1
6255         for algo in $CKSUM_TYPES; do
6256                 cancel_lru_locks osc
6257                 set_checksum_type $algo
6258                 #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
6259                 $LCTL set_param fail_loc=0x409
6260                 $DIRECTIO write $DIR/$tfile 0 $F77SZ $((1024 * 1024)) &&
6261                         error "direct write succeeded"
6262                 $LCTL set_param fail_loc=0
6263         done
6264         set_checksum_type $ORIG_CSUM_TYPE
6265         set_checksums 0
6266 }
6267 run_test 77f "repeat checksum error on write (expect error)"
6268
6269 test_77g() { # bug 10889
6270         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6271         $GSS && skip "could not run with gss" && return
6272         remote_ost_nodsh && skip "remote OST with nodsh" && return
6273
6274         [ ! -f $F77_TMP ] && setup_f77
6275
6276         $SETSTRIPE -c 1 -i 0 $DIR/$tfile
6277         #define OBD_FAIL_OST_CHECKSUM_RECEIVE       0x21a
6278         do_facet ost1 lctl set_param fail_loc=0x8000021a
6279         set_checksums 1
6280         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ ||
6281                 error "write error: rc=$?"
6282         do_facet ost1 lctl set_param fail_loc=0
6283         set_checksums 0
6284
6285         cancel_lru_locks osc
6286         #define OBD_FAIL_OST_CHECKSUM_SEND          0x21b
6287         do_facet ost1 lctl set_param fail_loc=0x8000021b
6288         set_checksums 1
6289         cmp $F77_TMP $DIR/$tfile || error "file compare failed"
6290         do_facet ost1 lctl set_param fail_loc=0
6291         set_checksums 0
6292 }
6293 run_test 77g "checksum error on OST write, read"
6294
6295 test_77j() { # bug 13805
6296         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6297         $GSS && skip "could not run with gss" && return
6298         #define OBD_FAIL_OSC_CKSUM_ADLER_ONLY    0x40c
6299         lctl set_param fail_loc=0x40c
6300         remount_client $MOUNT
6301         lctl set_param fail_loc=0
6302         # wait async osc connect to finish and reflect updated state value
6303         local i
6304         for (( i=0; i < OSTCOUNT; i++ )) ; do
6305                 wait_osc_import_state client ost$((i+1)) FULL
6306         done
6307
6308         for VALUE in $(lctl get_param osc.*osc-[^mM]*.checksum_type); do
6309                 PARAM=$(echo ${VALUE[0]} | cut -d "=" -f1)
6310                 algo=$(lctl get_param -n $PARAM | sed 's/.*\[\(.*\)\].*/\1/g')
6311                 [ "$algo" = "adler" ] || error "algo set to $algo instead of adler"
6312         done
6313         remount_client $MOUNT
6314 }
6315 run_test 77j "client only supporting ADLER32"
6316
6317 [ "$ORIG_CSUM" ] && set_checksums $ORIG_CSUM || true
6318 rm -f $F77_TMP
6319 unset F77_TMP
6320
6321 cleanup_test_78() {
6322         trap 0
6323         rm -f $DIR/$tfile
6324 }
6325
6326 test_78() { # bug 10901
6327         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6328         remote_ost || { skip_env "local OST" && return; }
6329
6330         NSEQ=5
6331         F78SIZE=$(($(awk '/MemFree:/ { print $2 }' /proc/meminfo) / 1024))
6332         echo "MemFree: $F78SIZE, Max file size: $MAXFREE"
6333         MEMTOTAL=$(($(awk '/MemTotal:/ { print $2 }' /proc/meminfo) / 1024))
6334         echo "MemTotal: $MEMTOTAL"
6335
6336         # reserve 256MB of memory for the kernel and other running processes,
6337         # and then take 1/2 of the remaining memory for the read/write buffers.
6338         if [ $MEMTOTAL -gt 512 ] ;then
6339                 MEMTOTAL=$(((MEMTOTAL - 256 ) / 2))
6340         else
6341                 # for those poor memory-starved high-end clusters...
6342                 MEMTOTAL=$((MEMTOTAL / 2))
6343         fi
6344         echo "Mem to use for directio: $MEMTOTAL"
6345
6346         [[ $F78SIZE -gt $MEMTOTAL ]] && F78SIZE=$MEMTOTAL
6347         [[ $F78SIZE -gt 512 ]] && F78SIZE=512
6348         [[ $F78SIZE -gt $((MAXFREE / 1024)) ]] && F78SIZE=$((MAXFREE / 1024))
6349         SMALLESTOST=$($LFS df $DIR | grep OST | awk '{ print $4 }' | sort -n |
6350                 head -n1)
6351         echo "Smallest OST: $SMALLESTOST"
6352         [[ $SMALLESTOST -lt 10240 ]] &&
6353                 skip "too small OSTSIZE, useless to run large O_DIRECT test" && return 0
6354
6355         trap cleanup_test_78 EXIT
6356
6357         [[ $F78SIZE -gt $((SMALLESTOST * $OSTCOUNT / 1024 - 80)) ]] &&
6358                 F78SIZE=$((SMALLESTOST * $OSTCOUNT / 1024 - 80))
6359
6360         [ "$SLOW" = "no" ] && NSEQ=1 && [ $F78SIZE -gt 32 ] && F78SIZE=32
6361         echo "File size: $F78SIZE"
6362         $SETSTRIPE -c $OSTCOUNT $DIR/$tfile || error "setstripe failed"
6363         for i in $(seq 1 $NSEQ); do
6364                 FSIZE=$(($F78SIZE / ($NSEQ - $i + 1)))
6365                 echo directIO rdwr round $i of $NSEQ
6366                 $DIRECTIO rdwr $DIR/$tfile 0 $FSIZE 1048576||error "rdwr failed"
6367         done
6368
6369         cleanup_test_78
6370 }
6371 run_test 78 "handle large O_DIRECT writes correctly ============"
6372
6373 test_79() { # bug 12743
6374         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6375         wait_delete_completed
6376
6377         BKTOTAL=$(calc_osc_kbytes kbytestotal)
6378         BKFREE=$(calc_osc_kbytes kbytesfree)
6379         BKAVAIL=$(calc_osc_kbytes kbytesavail)
6380
6381         STRING=`df -P $MOUNT | tail -n 1 | awk '{print $2","$3","$4}'`
6382         DFTOTAL=`echo $STRING | cut -d, -f1`
6383         DFUSED=`echo $STRING  | cut -d, -f2`
6384         DFAVAIL=`echo $STRING | cut -d, -f3`
6385         DFFREE=$(($DFTOTAL - $DFUSED))
6386
6387         ALLOWANCE=$((64 * $OSTCOUNT))
6388
6389         if [ $DFTOTAL -lt $(($BKTOTAL - $ALLOWANCE)) ] ||
6390            [ $DFTOTAL -gt $(($BKTOTAL + $ALLOWANCE)) ] ; then
6391                 error "df total($DFTOTAL) mismatch OST total($BKTOTAL)"
6392         fi
6393         if [ $DFFREE -lt $(($BKFREE - $ALLOWANCE)) ] ||
6394            [ $DFFREE -gt $(($BKFREE + $ALLOWANCE)) ] ; then
6395                 error "df free($DFFREE) mismatch OST free($BKFREE)"
6396         fi
6397         if [ $DFAVAIL -lt $(($BKAVAIL - $ALLOWANCE)) ] ||
6398            [ $DFAVAIL -gt $(($BKAVAIL + $ALLOWANCE)) ] ; then
6399                 error "df avail($DFAVAIL) mismatch OST avail($BKAVAIL)"
6400         fi
6401 }
6402 run_test 79 "df report consistency check ======================="
6403
6404 test_80() { # bug 10718
6405         remote_ost_nodsh && skip "remote OST with nodsh" && return
6406         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6407         # relax strong synchronous semantics for slow backends like ZFS
6408         local soc="obdfilter.*.sync_on_lock_cancel"
6409         local soc_old=$(do_facet ost1 lctl get_param -n $soc | head -n1)
6410         local hosts=
6411         if [ "$soc_old" != "never" -a "$(facet_fstype ost1)" != "ldiskfs" ]; then
6412                 hosts=$(for host in $(seq -f "ost%g" 1 $OSTCOUNT); do
6413                           facet_active_host $host; done | sort -u)
6414                 do_nodes $hosts lctl set_param $soc=never
6415         fi
6416
6417         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=1M
6418         sync; sleep 1; sync
6419         local BEFORE=`date +%s`
6420         cancel_lru_locks osc
6421         local AFTER=`date +%s`
6422         local DIFF=$((AFTER-BEFORE))
6423         if [ $DIFF -gt 1 ] ; then
6424                 error "elapsed for 1M@1T = $DIFF"
6425         fi
6426
6427         [ -n "$hosts" ] && do_nodes $hosts lctl set_param $soc=$soc_old
6428
6429         rm -f $DIR/$tfile
6430 }
6431 run_test 80 "Page eviction is equally fast at high offsets too  ===="
6432
6433 test_81a() { # LU-456
6434         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6435         remote_ost_nodsh && skip "remote OST with nodsh" && return
6436         # define OBD_FAIL_OST_MAPBLK_ENOSPC    0x228
6437         # MUST OR with the OBD_FAIL_ONCE (0x80000000)
6438         do_facet ost1 lctl set_param fail_loc=0x80000228
6439
6440         # write should trigger a retry and success
6441         $SETSTRIPE -i 0 -c 1 $DIR/$tfile
6442         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
6443         RC=$?
6444         if [ $RC -ne 0 ] ; then
6445                 error "write should success, but failed for $RC"
6446         fi
6447 }
6448 run_test 81a "OST should retry write when get -ENOSPC ==============="
6449
6450 test_81b() { # LU-456
6451         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6452         remote_ost_nodsh && skip "remote OST with nodsh" && return
6453         # define OBD_FAIL_OST_MAPBLK_ENOSPC    0x228
6454         # Don't OR with the OBD_FAIL_ONCE (0x80000000)
6455         do_facet ost1 lctl set_param fail_loc=0x228
6456
6457         # write should retry several times and return -ENOSPC finally
6458         $SETSTRIPE -i 0 -c 1 $DIR/$tfile
6459         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
6460         RC=$?
6461         ENOSPC=28
6462         if [ $RC -ne $ENOSPC ] ; then
6463                 error "dd should fail for -ENOSPC, but succeed."
6464         fi
6465 }
6466 run_test 81b "OST should return -ENOSPC when retry still fails ======="
6467
6468 test_82() { # LU-1031
6469         dd if=/dev/zero of=$DIR/$tfile bs=1M count=10
6470         local gid1=14091995
6471         local gid2=16022000
6472
6473         multiop_bg_pause $DIR/$tfile OG${gid1}_g${gid1}c || return 1
6474         local MULTIPID1=$!
6475         multiop_bg_pause $DIR/$tfile O_G${gid2}r10g${gid2}c || return 2
6476         local MULTIPID2=$!
6477         kill -USR1 $MULTIPID2
6478         sleep 2
6479         if [[ `ps h -o comm -p $MULTIPID2` == "" ]]; then
6480                 error "First grouplock does not block second one"
6481         else
6482                 echo "Second grouplock blocks first one"
6483         fi
6484         kill -USR1 $MULTIPID1
6485         wait $MULTIPID1
6486         wait $MULTIPID2
6487 }
6488 run_test 82 "Basic grouplock test ==============================="
6489
6490 test_83() {
6491         local sfile="/boot/System.map-$(uname -r)"
6492         # define OBD_FAIL_LLITE_PTASK_IO_FAIL 0x140d
6493         $LCTL set_param fail_loc=0x140d
6494         cp $sfile $DIR/$tfile || error "write failed"
6495         diff -c $sfile $DIR/$tfile || error "files are different"
6496         $LCTL set_param fail_loc=0
6497         rm -f $DIR/$tfile
6498 }
6499 run_test 83 "Short write in ptask ==============================="
6500
6501 test_99a() {
6502         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" &&
6503                 return
6504         test_mkdir -p $DIR/d99cvsroot
6505         chown $RUNAS_ID $DIR/d99cvsroot
6506         local oldPWD=$PWD       # bug 13584, use $TMP as working dir
6507         cd $TMP
6508
6509         $RUNAS cvs -d $DIR/d99cvsroot init || error "cvs init failed"
6510         cd $oldPWD
6511 }
6512 run_test 99a "cvs init ========================================="
6513
6514 test_99b() {
6515         [ -z "$(which cvs 2>/dev/null)" ] &&
6516                 skip_env "could not find cvs" && return
6517         [ ! -d $DIR/d99cvsroot ] && test_99a
6518         cd /etc/init.d
6519         # some versions of cvs import exit(1) when asked to import links or
6520         # files they can't read.  ignore those files.
6521         TOIGNORE=$(find . -type l -printf '-I %f\n' -o \
6522                         ! -perm /4 -printf '-I %f\n')
6523         $RUNAS cvs -d $DIR/d99cvsroot import -m "nomesg" $TOIGNORE \
6524                 d99reposname vtag rtag
6525 }
6526 run_test 99b "cvs import ======================================="
6527
6528 test_99c() {
6529         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && return
6530         [ ! -d $DIR/d99cvsroot ] && test_99b
6531         cd $DIR
6532         test_mkdir -p $DIR/d99reposname
6533         chown $RUNAS_ID $DIR/d99reposname
6534         $RUNAS cvs -d $DIR/d99cvsroot co d99reposname
6535 }
6536 run_test 99c "cvs checkout ====================================="
6537
6538 test_99d() {
6539         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && return
6540         [ ! -d $DIR/d99cvsroot ] && test_99c
6541         cd $DIR/d99reposname
6542         $RUNAS touch foo99
6543         $RUNAS cvs add -m 'addmsg' foo99
6544 }
6545 run_test 99d "cvs add =========================================="
6546
6547 test_99e() {
6548         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && return
6549         [ ! -d $DIR/d99cvsroot ] && test_99c
6550         cd $DIR/d99reposname
6551         $RUNAS cvs update
6552 }
6553 run_test 99e "cvs update ======================================="
6554
6555 test_99f() {
6556         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && return
6557         [ ! -d $DIR/d99cvsroot ] && test_99d
6558         cd $DIR/d99reposname
6559         $RUNAS cvs commit -m 'nomsg' foo99
6560     rm -fr $DIR/d99cvsroot
6561 }
6562 run_test 99f "cvs commit ======================================="
6563
6564 test_100() {
6565         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6566         [[ "$NETTYPE" =~ tcp ]] ||
6567                 { skip "TCP secure port test, not useful for NETTYPE=$NETTYPE" &&
6568                         return ; }
6569
6570         remote_ost_nodsh && skip "remote OST with nodsh" && return
6571         remote_mds_nodsh && skip "remote MDS with nodsh" && return
6572         remote_servers ||
6573                 { skip "useless for local single node setup" && return; }
6574
6575         netstat -tna | ( rc=1; while read PROT SND RCV LOCAL REMOTE STAT; do
6576                 [ "$PROT" != "tcp" ] && continue
6577                 RPORT=$(echo $REMOTE | cut -d: -f2)
6578                 [ "$RPORT" != "$ACCEPTOR_PORT" ] && continue
6579
6580                 rc=0
6581                 LPORT=`echo $LOCAL | cut -d: -f2`
6582                 if [ $LPORT -ge 1024 ]; then
6583                         echo "bad: $PROT $SND $RCV $LOCAL $REMOTE $STAT"
6584                         netstat -tna
6585                         error_exit "local: $LPORT > 1024, remote: $RPORT"
6586                 fi
6587         done
6588         [ "$rc" = 0 ] || error_exit "privileged port not found" )
6589 }
6590 run_test 100 "check local port using privileged port ==========="
6591
6592 function get_named_value()
6593 {
6594     local tag
6595
6596     tag=$1
6597     while read ;do
6598         line=$REPLY
6599         case $line in
6600         $tag*)
6601             echo $line | sed "s/^$tag[ ]*//"
6602             break
6603             ;;
6604         esac
6605     done
6606 }
6607
6608 export CACHE_MAX=$($LCTL get_param -n llite.*.max_cached_mb |
6609                    awk '/^max_cached_mb/ { print $2 }')
6610
6611 cleanup_101a() {
6612         $LCTL set_param -n llite.*.max_cached_mb $CACHE_MAX
6613         trap 0
6614 }
6615
6616 test_101a() {
6617         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6618         [ $MDSCOUNT -ge 2 ] && skip "skip now for >= 2 MDTs" && return #LU-4322
6619         local s
6620         local discard
6621         local nreads=10000
6622         local cache_limit=32
6623
6624         $LCTL set_param -n osc.*-osc*.rpc_stats 0
6625         trap cleanup_101a EXIT
6626         $LCTL set_param -n llite.*.read_ahead_stats 0
6627         $LCTL set_param -n llite.*.max_cached_mb $cache_limit
6628
6629         #
6630         # randomly read 10000 of 64K chunks from file 3x 32MB in size
6631         #
6632         echo "nreads: $nreads file size: $((cache_limit * 3))MB"
6633         $READS -f $DIR/$tfile -s$((cache_limit * 3192 * 1024)) -b65536 -C -n$nreads -t 180
6634
6635         discard=0
6636         for s in $($LCTL get_param -n llite.*.read_ahead_stats |
6637                 get_named_value 'read but discarded' | cut -d" " -f1); do
6638                         discard=$(($discard + $s))
6639         done
6640         cleanup_101a
6641
6642         if [[ $(($discard * 10)) -gt $nreads ]]; then
6643                 $LCTL get_param osc.*-osc*.rpc_stats
6644                 $LCTL get_param llite.*.read_ahead_stats
6645                 error "too many ($discard) discarded pages"
6646         fi
6647         rm -f $DIR/$tfile || true
6648 }
6649 run_test 101a "check read-ahead for random reads ================"
6650
6651 setup_test101bc() {
6652         test_mkdir -p $DIR/$tdir
6653         local STRIPE_SIZE=$1
6654         local FILE_LENGTH=$2
6655         STRIPE_OFFSET=0
6656
6657         local FILE_SIZE_MB=$((FILE_LENGTH / STRIPE_SIZE))
6658
6659         local list=$(comma_list $(osts_nodes))
6660         set_osd_param $list '' read_cache_enable 0
6661         set_osd_param $list '' writethrough_cache_enable 0
6662
6663         trap cleanup_test101bc EXIT
6664         # prepare the read-ahead file
6665         $SETSTRIPE -S $STRIPE_SIZE -i $STRIPE_OFFSET -c $OSTCOUNT $DIR/$tfile
6666
6667         dd if=/dev/zero of=$DIR/$tfile bs=$STRIPE_SIZE \
6668                                 count=$FILE_SIZE_MB 2> /dev/null
6669
6670 }
6671
6672 cleanup_test101bc() {
6673         trap 0
6674         rm -rf $DIR/$tdir
6675         rm -f $DIR/$tfile
6676
6677         local list=$(comma_list $(osts_nodes))
6678         set_osd_param $list '' read_cache_enable 1
6679         set_osd_param $list '' writethrough_cache_enable 1
6680 }
6681
6682 calc_total() {
6683         awk 'BEGIN{total=0}; {total+=$1}; END{print total}'
6684 }
6685
6686 ra_check_101() {
6687         local READ_SIZE=$1
6688         local STRIPE_SIZE=$2
6689         local FILE_LENGTH=$3
6690         local RA_INC=1048576
6691         local STRIDE_LENGTH=$((STRIPE_SIZE/READ_SIZE))
6692         local discard_limit=$((((STRIDE_LENGTH - 1)*3/(STRIDE_LENGTH*OSTCOUNT))* \
6693                              (STRIDE_LENGTH*OSTCOUNT - STRIDE_LENGTH)))
6694         DISCARD=$($LCTL get_param -n llite.*.read_ahead_stats |
6695                         get_named_value 'read but discarded' |
6696                         cut -d" " -f1 | calc_total)
6697         if [[ $DISCARD -gt $discard_limit ]]; then
6698                 $LCTL get_param llite.*.read_ahead_stats
6699                 error "Too many ($DISCARD) discarded pages with size (${READ_SIZE})"
6700         else
6701                 echo "Read-ahead success for size ${READ_SIZE}"
6702         fi
6703 }
6704
6705 test_101b() {
6706         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6707         [[ $OSTCOUNT -lt 2 ]] &&
6708                 skip_env "skipping stride IO stride-ahead test" && return
6709         local STRIPE_SIZE=1048576
6710         local STRIDE_SIZE=$((STRIPE_SIZE*OSTCOUNT))
6711         if [ $SLOW == "yes" ]; then
6712                 local FILE_LENGTH=$((STRIDE_SIZE * 64))
6713         else
6714                 local FILE_LENGTH=$((STRIDE_SIZE * 8))
6715         fi
6716
6717         local ITERATION=$((FILE_LENGTH / STRIDE_SIZE))
6718
6719         # prepare the read-ahead file
6720         setup_test101bc $STRIPE_SIZE $FILE_LENGTH
6721         cancel_lru_locks osc
6722         for BIDX in 2 4 8 16 32 64 128 256
6723         do
6724                 local BSIZE=$((BIDX*4096))
6725                 local READ_COUNT=$((STRIPE_SIZE/BSIZE))
6726                 local STRIDE_LENGTH=$((STRIDE_SIZE/BSIZE))
6727                 local OFFSET=$((STRIPE_SIZE/BSIZE*(OSTCOUNT - 1)))
6728                 $LCTL set_param -n llite.*.read_ahead_stats 0
6729                 $READS -f $DIR/$tfile  -l $STRIDE_LENGTH -o $OFFSET \
6730                               -s $FILE_LENGTH -b $STRIPE_SIZE -a $READ_COUNT -n $ITERATION
6731                 cancel_lru_locks osc
6732                 ra_check_101 $BSIZE $STRIPE_SIZE $FILE_LENGTH
6733         done
6734         cleanup_test101bc
6735         true
6736 }
6737 run_test 101b "check stride-io mode read-ahead ================="
6738
6739 test_101c() {
6740         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6741         local STRIPE_SIZE=1048576
6742         local FILE_LENGTH=$((STRIPE_SIZE*100))
6743         local nreads=10000
6744         local osc_rpc_stats
6745
6746         setup_test101bc $STRIPE_SIZE $FILE_LENGTH
6747
6748         cancel_lru_locks osc
6749         $LCTL set_param osc.*.rpc_stats 0
6750         $READS -f $DIR/$tfile -s$FILE_LENGTH -b65536 -n$nreads -t 180
6751         for osc_rpc_stats in $($LCTL get_param -N osc.*.rpc_stats); do
6752                 local stats=$($LCTL get_param -n $osc_rpc_stats)
6753                 local lines=$(echo "$stats" | awk 'END {print NR;}')
6754                 local size
6755
6756                 if [ $lines -le 20 ]; then
6757                         continue
6758                 fi
6759                 for size in 1 2 4 8; do
6760                         local rpc=$(echo "$stats" |
6761                                     awk '($1 == "'$size':") {print $2; exit; }')
6762                         [ $rpc != 0 ] &&
6763                                 error "Small $((size*4))k read IO $rpc !"
6764                 done
6765                 echo "$osc_rpc_stats check passed!"
6766         done
6767         cleanup_test101bc
6768         true
6769 }
6770 run_test 101c "check stripe_size aligned read-ahead ================="
6771
6772 set_read_ahead() {
6773         $LCTL get_param -n llite.*.max_read_ahead_mb | head -n 1
6774         $LCTL set_param -n llite.*.max_read_ahead_mb $1 > /dev/null 2>&1
6775 }
6776
6777 test_101d() {
6778         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6779         local file=$DIR/$tfile
6780         local sz_MB=${FILESIZE_101d:-500}
6781         local ra_MB=${READAHEAD_MB:-40}
6782
6783         local free_MB=$(($(df -P $DIR | tail -n 1 | awk '{ print $4 }') / 1024))
6784         [ $free_MB -lt $sz_MB ] &&
6785                 skip "Need free space ${sz_MB}M, have ${free_MB}M" && return
6786
6787         echo "Create test file $file size ${sz_MB}M, ${free_MB}M free"
6788         $SETSTRIPE -c -1 $file || error "setstripe failed"
6789
6790         dd if=/dev/zero of=$file bs=1M count=$sz_MB || error "dd failed"
6791         echo Cancel LRU locks on lustre client to flush the client cache
6792         cancel_lru_locks osc
6793
6794         echo Disable read-ahead
6795         local old_READAHEAD=$(set_read_ahead 0)
6796
6797         echo Reading the test file $file with read-ahead disabled
6798         local raOFF=$(do_and_time "dd if=$file of=/dev/null bs=1M count=$sz_MB")
6799
6800         echo Cancel LRU locks on lustre client to flush the client cache
6801         cancel_lru_locks osc
6802         echo Enable read-ahead with ${ra_MB}MB
6803         set_read_ahead $ra_MB
6804
6805         echo Reading the test file $file with read-ahead enabled
6806         local raON=$(do_and_time "dd if=$file of=/dev/null bs=1M count=$sz_MB")
6807
6808         echo "read-ahead disabled time read $raOFF"
6809         echo "read-ahead enabled  time read $raON"
6810
6811         set_read_ahead $old_READAHEAD
6812         rm -f $file
6813         wait_delete_completed
6814
6815         [ $raOFF -le 1 -o $raON -lt $raOFF ] ||
6816                 error "readahead ${raON}s > no-readahead ${raOFF}s ${sz_MB}M"
6817 }
6818 run_test 101d "file read with and without read-ahead enabled"
6819
6820 test_101e() {
6821         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6822         local file=$DIR/$tfile
6823         local size_KB=500  #KB
6824         local count=100
6825         local bsize=1024
6826
6827         local free_KB=$(df -P $DIR | tail -n 1 | awk '{ print $4 }')
6828         local need_KB=$((count * size_KB))
6829         [[ $free_KB -le $need_KB ]] &&
6830                 skip_env "Need free space $need_KB, have $free_KB" && return
6831
6832         echo "Creating $count ${size_KB}K test files"
6833         for ((i = 0; i < $count; i++)); do
6834                 dd if=/dev/zero of=$file.$i bs=$bsize count=$size_KB 2>/dev/null
6835         done
6836
6837         echo "Cancel LRU locks on lustre client to flush the client cache"
6838         cancel_lru_locks osc
6839
6840         echo "Reset readahead stats"
6841         $LCTL set_param -n llite.*.read_ahead_stats 0
6842
6843         for ((i = 0; i < $count; i++)); do
6844                 dd if=$file.$i of=/dev/null bs=$bsize count=$size_KB 2>/dev/null
6845         done
6846
6847         local miss=$($LCTL get_param -n llite.*.read_ahead_stats |
6848                      get_named_value 'misses' | cut -d" " -f1 | calc_total)
6849
6850         for ((i = 0; i < $count; i++)); do
6851                 rm -rf $file.$i 2>/dev/null
6852         done
6853
6854         #10000 means 20% reads are missing in readahead
6855         [[ $miss -lt 10000 ]] ||  error "misses too much for small reads"
6856 }
6857 run_test 101e "check read-ahead for small read(1k) for small files(500k)"
6858
6859 test_101f() {
6860         which iozone || { skip "no iozone installed" && return; }
6861
6862         local old_debug=$($LCTL get_param debug)
6863         old_debug=${old_debug#*=}
6864         $LCTL set_param debug="reada mmap"
6865
6866         # create a test file
6867         iozone -i 0 -+n -r 1m -s 128m -w -f $DIR/$tfile > /dev/null 2>&1
6868
6869         echo Cancel LRU locks on lustre client to flush the client cache
6870         cancel_lru_locks osc
6871
6872         echo Reset readahead stats
6873         $LCTL set_param -n llite.*.read_ahead_stats 0
6874
6875         echo mmap read the file with small block size
6876         iozone -i 1 -u 1 -l 1 -+n -r 32k -s 128m -B -f $DIR/$tfile \
6877                 > /dev/null 2>&1
6878
6879         echo checking missing pages
6880         $LCTL get_param llite.*.read_ahead_stats
6881         local miss=$($LCTL get_param -n llite.*.read_ahead_stats |
6882                         get_named_value 'misses' | cut -d" " -f1 | calc_total)
6883
6884         $LCTL set_param debug="$old_debug"
6885         [ $miss -lt 3 ] || error "misses too much pages ('$miss')!"
6886         rm -f $DIR/$tfile
6887 }
6888 run_test 101f "check mmap read performance"
6889
6890 test_101g_brw_size_test() {
6891         local mb=$1
6892         local pages=$((mb * 1048576 / $(page_size)))
6893
6894         $LCTL set_param osc.*.max_pages_per_rpc=${mb}M ||
6895                 { error "unable to set max_pages_per_rpc=${mb}M"; return 1; }
6896         for mp in $($LCTL get_param -n osc.*.max_pages_per_rpc); do
6897                 [ $mp -ne $pages ] && error "max_pages_per_rpc $mp != $pages" &&
6898                         return 2
6899         done
6900
6901         $LCTL set_param -n osc.*.rpc_stats=0
6902
6903         # 10 RPCs should be enough for the test
6904         local count=10
6905         dd if=/dev/zero of=$DIR/$tfile bs=${mb}M count=$count ||
6906                 { error "dd write ${mb} MB blocks failed"; return 3; }
6907         cancel_lru_locks osc
6908         dd of=/dev/null if=$DIR/$tfile bs=${mb}M count=$count ||
6909                 { error "dd write ${mb} MB blocks failed"; return 4; }
6910
6911         # calculate number of full-sized read and write RPCs
6912         rpcs=($($LCTL get_param -n 'osc.*.rpc_stats' |
6913                 sed -n '/pages per rpc/,/^$/p' |
6914                 awk '/'$pages':/ { reads += $2; writes += $6 }; \
6915                 END { print reads,writes }'))
6916         [ ${rpcs[0]} -ne $count ] && error "${rpcs[0]} != $count read RPCs" &&
6917                 return 5
6918         [ ${rpcs[1]} -ne $count ] && error "${rpcs[1]} != $count write RPCs" &&
6919                 return 6
6920
6921         return 0
6922 }
6923
6924 test_101g() {
6925         local rpcs
6926         local osts=$(get_facets OST)
6927         local list=$(comma_list $(osts_nodes))
6928         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
6929         local brw_size="obdfilter.*.brw_size"
6930
6931         $LFS setstripe -i 0 -c 1 $DIR/$tfile
6932
6933         local orig_mb=$(do_facet ost1 $LCTL get_param -n $brw_size | head -n 1)
6934         if [ $(lustre_version_code ost1) -ge $(version_code 2.8.52) ]; then
6935                 [ $(lustre_version_code ost1) -ge $(version_code 2.9.52) ] &&
6936                         suffix="M"
6937                 if [[ $orig_mb -lt 16 ]]; then
6938                         save_lustre_params $osts "$brw_size" > $p
6939                         do_nodes $list $LCTL set_param -n $brw_size=16$suffix ||
6940                                 error "set 16MB RPC size failed"
6941
6942                         echo "remount client to enable new RPC size"
6943                         remount_client $MOUNT || error "remount_client failed"
6944                 fi
6945
6946                 test_101g_brw_size_test 16 || error "16MB RPC test failed"
6947                 # should be able to set brw_size=12, but no rpc_stats for that
6948                 test_101g_brw_size_test 8 || error "8MB RPC test failed"
6949         fi
6950
6951         test_101g_brw_size_test 4 || error "4MB RPC test failed"
6952
6953         if [[ $orig_mb -lt 16 ]]; then
6954                 restore_lustre_params < $p
6955                 remount_client $MOUNT || error "remount_client restore failed"
6956         fi
6957
6958         rm -f $p $DIR/$tfile
6959 }
6960 run_test 101g "Big bulk(4/16 MiB) readahead"
6961
6962 setup_test102() {
6963         test_mkdir -p $DIR/$tdir
6964         chown $RUNAS_ID $DIR/$tdir
6965         STRIPE_SIZE=65536
6966         STRIPE_OFFSET=1
6967         STRIPE_COUNT=$OSTCOUNT
6968         [[ $OSTCOUNT -gt 4 ]] && STRIPE_COUNT=4
6969
6970         trap cleanup_test102 EXIT
6971         cd $DIR
6972         $1 $SETSTRIPE -S $STRIPE_SIZE -i $STRIPE_OFFSET -c $STRIPE_COUNT $tdir
6973         cd $DIR/$tdir
6974         for num in 1 2 3 4; do
6975                 for count in $(seq 1 $STRIPE_COUNT); do
6976                         for idx in $(seq 0 $[$STRIPE_COUNT - 1]); do
6977                                 local size=`expr $STRIPE_SIZE \* $num`
6978                                 local file=file"$num-$idx-$count"
6979                                 $1 $SETSTRIPE -S $size -i $idx -c $count $file
6980                         done
6981                 done
6982         done
6983
6984         cd $DIR
6985         $1 $TAR cf $TMP/f102.tar $tdir --xattrs
6986 }
6987
6988 cleanup_test102() {
6989         trap 0
6990         rm -f $TMP/f102.tar
6991         rm -rf $DIR/d0.sanity/d102
6992 }
6993
6994 test_102a() {
6995         local testfile=$DIR/$tfile
6996
6997         touch $testfile
6998
6999         [ "$UID" != 0 ] && skip_env "must run as root" && return
7000         [ -z "$(lctl get_param -n mdc.*-mdc-*.connect_flags | grep xattr)" ] &&
7001                 skip_env "must have user_xattr" && return
7002
7003         [ -z "$(which setfattr 2>/dev/null)" ] &&
7004                 skip_env "could not find setfattr" && return
7005
7006         echo "set/get xattr..."
7007         setfattr -n trusted.name1 -v value1 $testfile ||
7008                 error "setfattr -n trusted.name1=value1 $testfile failed"
7009         getfattr -n trusted.name1 $testfile 2> /dev/null |
7010           grep "trusted.name1=.value1" ||
7011                 error "$testfile missing trusted.name1=value1"
7012
7013         setfattr -n user.author1 -v author1 $testfile ||
7014                 error "setfattr -n user.author1=author1 $testfile failed"
7015         getfattr -n user.author1 $testfile 2> /dev/null |
7016           grep "user.author1=.author1" ||
7017                 error "$testfile missing trusted.author1=author1"
7018
7019         echo "listxattr..."
7020         setfattr -n trusted.name2 -v value2 $testfile ||
7021                 error "$testfile unable to set trusted.name2"
7022         setfattr -n trusted.name3 -v value3 $testfile ||
7023                 error "$testfile unable to set trusted.name3"
7024         [ $(getfattr -d -m "^trusted" $testfile 2> /dev/null |
7025             grep "trusted.name" | wc -l) -eq 3 ] ||
7026                 error "$testfile missing 3 trusted.name xattrs"
7027
7028         setfattr -n user.author2 -v author2 $testfile ||
7029                 error "$testfile unable to set user.author2"
7030         setfattr -n user.author3 -v author3 $testfile ||
7031                 error "$testfile unable to set user.author3"
7032         [ $(getfattr -d -m "^user" $testfile 2> /dev/null |
7033             grep "user.author" | wc -l) -eq 3 ] ||
7034                 error "$testfile missing 3 user.author xattrs"
7035
7036         echo "remove xattr..."
7037         setfattr -x trusted.name1 $testfile ||
7038                 error "$testfile error deleting trusted.name1"
7039         getfattr -d -m trusted $testfile 2> /dev/null | grep "trusted.name1" &&
7040                 error "$testfile did not delete trusted.name1 xattr"
7041
7042         setfattr -x user.author1 $testfile ||
7043                 error "$testfile error deleting user.author1"
7044         getfattr -d -m user $testfile 2> /dev/null | grep "user.author1" &&
7045                 error "$testfile did not delete trusted.name1 xattr"
7046
7047         # b10667: setting lustre special xattr be silently discarded
7048         echo "set lustre special xattr ..."
7049         setfattr -n "trusted.lov" -v "invalid value" $testfile ||
7050                 error "$testfile allowed setting trusted.lov"
7051 }
7052 run_test 102a "user xattr test =================================="
7053
7054 test_102b() {
7055         [ -z "$(which setfattr 2>/dev/null)" ] &&
7056                 skip_env "could not find setfattr" && return
7057
7058         # b10930: get/set/list trusted.lov xattr
7059         echo "get/set/list trusted.lov xattr ..."
7060         [[ $OSTCOUNT -lt 2 ]] && skip_env "skipping 2-stripe test" && return
7061         local testfile=$DIR/$tfile
7062         $SETSTRIPE -S 65536 -i 1 -c $OSTCOUNT $testfile ||
7063                 error "setstripe failed"
7064         local STRIPECOUNT=$($GETSTRIPE -c $testfile) ||
7065                 error "getstripe failed"
7066         getfattr -d -m "^trusted" $testfile 2>/dev/null | grep "trusted.lov" ||
7067                 error "can't get trusted.lov from $testfile"
7068
7069         local testfile2=${testfile}2
7070         local value=$(getfattr -n trusted.lov $testfile 2>/dev/null |
7071                         grep "trusted.lov" | sed -e 's/[^=]\+=//')
7072
7073         $MCREATE $testfile2
7074         setfattr -n trusted.lov -v $value $testfile2
7075         local stripe_size=$($GETSTRIPE -S $testfile2)
7076         local stripe_count=$($GETSTRIPE -c $testfile2)
7077         [[ $stripe_size -eq 65536 ]] ||
7078                 error "stripe size $stripe_size != 65536"
7079         [[ $stripe_count -eq $STRIPECOUNT ]] ||
7080                 error "stripe count $stripe_count != $STRIPECOUNT"
7081         rm -f $DIR/$tfile
7082 }
7083 run_test 102b "getfattr/setfattr for trusted.lov EAs ============"
7084
7085 test_102c() {
7086         [ -z "$(which setfattr 2>/dev/null)" ] &&
7087                 skip_env "could not find setfattr" && return
7088
7089         # b10930: get/set/list lustre.lov xattr
7090         echo "get/set/list lustre.lov xattr ..."
7091         [[ $OSTCOUNT -lt 2 ]] && skip_env "skipping 2-stripe test" && return
7092         test_mkdir -p $DIR/$tdir
7093         chown $RUNAS_ID $DIR/$tdir
7094         local testfile=$DIR/$tdir/$tfile
7095         $RUNAS $SETSTRIPE -S 65536 -i 1 -c $OSTCOUNT $testfile ||
7096                 error "setstripe failed"
7097         local STRIPECOUNT=$($RUNAS $GETSTRIPE -c $testfile) ||
7098                 error "getstripe failed"
7099         $RUNAS getfattr -d -m "^lustre" $testfile 2> /dev/null | \
7100         grep "lustre.lov" || error "can't get lustre.lov from $testfile"
7101
7102         local testfile2=${testfile}2
7103         local value=`getfattr -n lustre.lov $testfile 2> /dev/null | \
7104                      grep "lustre.lov" |sed -e 's/[^=]\+=//'  `
7105
7106         $RUNAS $MCREATE $testfile2
7107         $RUNAS setfattr -n lustre.lov -v $value $testfile2
7108         local stripe_size=$($RUNAS $GETSTRIPE -S $testfile2)
7109         local stripe_count=$($RUNAS $GETSTRIPE -c $testfile2)
7110         [ $stripe_size -eq 65536 ] || error "stripe size $stripe_size != 65536"
7111         [ $stripe_count -eq $STRIPECOUNT ] ||
7112                 error "stripe count $stripe_count != $STRIPECOUNT"
7113 }
7114 run_test 102c "non-root getfattr/setfattr for lustre.lov EAs ==========="
7115
7116 compare_stripe_info1() {
7117         local stripe_index_all_zero=true
7118
7119         for num in 1 2 3 4; do
7120                 for count in $(seq 1 $STRIPE_COUNT); do
7121                         for offset in $(seq 0 $[$STRIPE_COUNT - 1]); do
7122                                 local size=$((STRIPE_SIZE * num))
7123                                 local file=file"$num-$offset-$count"
7124                                 stripe_size=$($LFS getstripe -S $PWD/$file)
7125                                 [[ $stripe_size -ne $size ]] &&
7126                                     error "$file: size $stripe_size != $size"
7127                                 stripe_count=$($LFS getstripe -c $PWD/$file)
7128                                 # allow fewer stripes to be created, ORI-601
7129                                 [[ $stripe_count -lt $(((3 * count + 3) / 4)) ]] &&
7130                                     error "$file: count $stripe_count != $count"
7131                                 stripe_index=$($LFS getstripe -i $PWD/$file)
7132                                 [[ $stripe_index -ne 0 ]] &&
7133                                         stripe_index_all_zero=false
7134                         done
7135                 done
7136         done
7137         $stripe_index_all_zero &&
7138                 error "all files are being extracted starting from OST index 0"
7139         return 0
7140 }
7141
7142 find_lustre_tar() {
7143         [ -n "$(which tar 2>/dev/null)" ] &&
7144                 strings $(which tar) | grep -q "lustre" && echo tar
7145 }
7146
7147 test_102d() {
7148         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7149         # b10930: tar test for trusted.lov xattr
7150         TAR=$(find_lustre_tar)
7151         [ -z "$TAR" ] && skip_env "lustre-aware tar is not installed" && return
7152         [[ $OSTCOUNT -lt 2 ]] && skip_env "skipping N-stripe test" && return
7153         setup_test102
7154         test_mkdir -p $DIR/d102d
7155         $TAR xf $TMP/f102.tar -C $DIR/d102d --xattrs
7156         cd $DIR/d102d/$tdir
7157         compare_stripe_info1
7158 }
7159 run_test 102d "tar restore stripe info from tarfile,not keep osts ==========="
7160
7161 test_102f() {
7162         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7163         # b10930: tar test for trusted.lov xattr
7164         TAR=$(find_lustre_tar)
7165         [ -z "$TAR" ] && skip_env "lustre-aware tar is not installed" && return
7166         [[ $OSTCOUNT -lt 2 ]] && skip_env "skipping N-stripe test" && return
7167         setup_test102
7168         test_mkdir -p $DIR/d102f
7169         cd $DIR
7170         $TAR cf - --xattrs $tdir | $TAR xf - --xattrs -C $DIR/d102f
7171         cd $DIR/d102f/$tdir
7172         compare_stripe_info1
7173 }
7174 run_test 102f "tar copy files, not keep osts ==========="
7175
7176 grow_xattr() {
7177         local xsize=${1:-1024}  # in bytes
7178         local file=$DIR/$tfile
7179
7180         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep xattr)" ] &&
7181                 skip "must have user_xattr" && return 0
7182         [ -z "$(which setfattr 2>/dev/null)" ] &&
7183                 skip_env "could not find setfattr" && return 0
7184         [ -z "$(which getfattr 2>/dev/null)" ] &&
7185                 skip_env "could not find getfattr" && return 0
7186
7187         touch $file
7188
7189         local value="$(generate_string $xsize)"
7190
7191         local xbig=trusted.big
7192         log "save $xbig on $file"
7193         setfattr -n $xbig -v $value $file ||
7194                 error "saving $xbig on $file failed"
7195
7196         local orig=$(get_xattr_value $xbig $file)
7197         [[ "$orig" != "$value" ]] && error "$xbig different after saving $xbig"
7198
7199         local xsml=trusted.sml
7200         log "save $xsml on $file"
7201         setfattr -n $xsml -v val $file || error "saving $xsml on $file failed"
7202
7203         local new=$(get_xattr_value $xbig $file)
7204         [[ "$new" != "$orig" ]] && error "$xbig different after saving $xsml"
7205
7206         log "grow $xsml on $file"
7207         setfattr -n $xsml -v "$value" $file ||
7208                 error "growing $xsml on $file failed"
7209
7210         new=$(get_xattr_value $xbig $file)
7211         [[ "$new" != "$orig" ]] && error "$xbig different after growing $xsml"
7212         log "$xbig still valid after growing $xsml"
7213
7214         rm -f $file
7215 }
7216
7217 test_102h() { # bug 15777
7218         grow_xattr 1024
7219 }
7220 run_test 102h "grow xattr from inside inode to external block"
7221
7222 test_102ha() {
7223         large_xattr_enabled || { skip "large_xattr disabled" && return; }
7224         grow_xattr $(max_xattr_size)
7225 }
7226 run_test 102ha "grow xattr from inside inode to external inode"
7227
7228 test_102i() { # bug 17038
7229         [ -z "$(which getfattr 2>/dev/null)" ] &&
7230                 skip "could not find getfattr" && return
7231         touch $DIR/$tfile
7232         ln -s $DIR/$tfile $DIR/${tfile}link
7233         getfattr -n trusted.lov $DIR/$tfile ||
7234                 error "lgetxattr on $DIR/$tfile failed"
7235         getfattr -h -n trusted.lov $DIR/${tfile}link 2>&1 |
7236                 grep -i "no such attr" ||
7237                 error "error for lgetxattr on $DIR/${tfile}link is not ENODATA"
7238         rm -f $DIR/$tfile $DIR/${tfile}link
7239 }
7240 run_test 102i "lgetxattr test on symbolic link ============"
7241
7242 test_102j() {
7243         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7244         TAR=$(find_lustre_tar)
7245         [ -z "$TAR" ] && skip_env "lustre-aware tar is not installed" && return
7246         [[ $OSTCOUNT -lt 2 ]] && skip_env "skipping N-stripe test" && return
7247         setup_test102 "$RUNAS"
7248         test_mkdir -p $DIR/d102j
7249         chown $RUNAS_ID $DIR/d102j
7250         $RUNAS $TAR xf $TMP/f102.tar -C $DIR/d102j --xattrs
7251         cd $DIR/d102j/$tdir
7252         compare_stripe_info1 "$RUNAS"
7253 }
7254 run_test 102j "non-root tar restore stripe info from tarfile, not keep osts ==="
7255
7256 test_102k() {
7257         [ -z "$(which setfattr 2>/dev/null)" ] &&
7258                 skip "could not find setfattr" && return
7259         touch $DIR/$tfile
7260         # b22187 just check that does not crash for regular file.
7261         setfattr -n trusted.lov $DIR/$tfile
7262         # b22187 'setfattr -n trusted.lov' should work as remove LOV EA for directories
7263         local test_kdir=$DIR/d102k
7264         test_mkdir $test_kdir
7265         local default_size=`$GETSTRIPE -S $test_kdir`
7266         local default_count=`$GETSTRIPE -c $test_kdir`
7267         local default_offset=`$GETSTRIPE -i $test_kdir`
7268         $SETSTRIPE -S 65536 -i 0 -c $OSTCOUNT $test_kdir ||
7269                 error 'dir setstripe failed'
7270         setfattr -n trusted.lov $test_kdir
7271         local stripe_size=`$GETSTRIPE -S $test_kdir`
7272         local stripe_count=`$GETSTRIPE -c $test_kdir`
7273         local stripe_offset=`$GETSTRIPE -i $test_kdir`
7274         [ $stripe_size -eq $default_size ] ||
7275                 error "stripe size $stripe_size != $default_size"
7276         [ $stripe_count -eq $default_count ] ||
7277                 error "stripe count $stripe_count != $default_count"
7278         [ $stripe_offset -eq $default_offset ] ||
7279                 error "stripe offset $stripe_offset != $default_offset"
7280         rm -rf $DIR/$tfile $test_kdir
7281 }
7282 run_test 102k "setfattr without parameter of value shouldn't cause a crash"
7283
7284 test_102l() {
7285         [ -z "$(which getfattr 2>/dev/null)" ] &&
7286                 skip "could not find getfattr" && return
7287
7288         # LU-532 trusted. xattr is invisible to non-root
7289         local testfile=$DIR/$tfile
7290
7291         touch $testfile
7292
7293         echo "listxattr as user..."
7294         chown $RUNAS_ID $testfile
7295         $RUNAS getfattr -d -m '.*' $testfile 2>&1 |
7296             grep -q "trusted" &&
7297                 error "$testfile trusted xattrs are user visible"
7298
7299         return 0;
7300 }
7301 run_test 102l "listxattr size test =================================="
7302
7303 test_102m() { # LU-3403 llite: error of listxattr when buffer is small
7304         local path=$DIR/$tfile
7305         touch $path
7306
7307         listxattr_size_check $path || error "listattr_size_check $path failed"
7308 }
7309 run_test 102m "Ensure listxattr fails on small bufffer ========"
7310
7311 cleanup_test102
7312
7313 getxattr() { # getxattr path name
7314         # Return the base64 encoding of the value of xattr name on path.
7315         local path=$1
7316         local name=$2
7317
7318         # # getfattr --absolute-names --encoding=base64 --name=trusted.lov $path
7319         # file: $path
7320         # trusted.lov=0s0AvRCwEAAAAGAAAAAAAAAAAEAAACAAAAAAAQAAEAA...AAAAAAAAA=
7321         #
7322         # We print just 0s0AvRCwEAAAAGAAAAAAAAAAAEAAACAAAAAAAQAAEAA...AAAAAAAAA=
7323
7324         getfattr --absolute-names --encoding=base64 --name=$name $path |
7325                 awk -F= -v name=$name '$1 == name {
7326                         print substr($0, index($0, "=") + 1);
7327         }'
7328 }
7329
7330 test_102n() { # LU-4101 mdt: protect internal xattrs
7331         [ -z "$(which setfattr 2>/dev/null)" ] &&
7332                 skip "could not find setfattr" && return
7333         if [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.5.50) ]
7334         then
7335                 skip "MDT < 2.5.50 allows setxattr on internal trusted xattrs"
7336                 return
7337         fi
7338
7339         local file0=$DIR/$tfile.0
7340         local file1=$DIR/$tfile.1
7341         local xattr0=$TMP/$tfile.0
7342         local xattr1=$TMP/$tfile.1
7343         local namelist="lov lma lmv link fid version som hsm"
7344         local name
7345         local value
7346
7347         rm -rf $file0 $file1 $xattr0 $xattr1
7348         touch $file0 $file1
7349
7350         # Get 'before' xattrs of $file1.
7351         getfattr --absolute-names --dump --match=- $file1 > $xattr0
7352
7353         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.53) ] &&
7354                 namelist+=" lfsck_namespace"
7355         for name in $namelist; do
7356                 # Try to copy xattr from $file0 to $file1.
7357                 value=$(getxattr $file0 trusted.$name 2> /dev/null)
7358
7359                 setfattr --name=trusted.$name --value="$value" $file1 ||
7360                         error "setxattr 'trusted.$name' failed"
7361
7362                 # Try to set a garbage xattr.
7363                 value=0sVGhlIHF1aWNrIGJyb3duIGZveCBqdW1wcyBvdmVyIGl0c2VsZi4=
7364
7365                 setfattr --name=trusted.$name --value="$value" $file1 ||
7366                         error "setxattr 'trusted.$name' failed"
7367
7368                 # Try to remove the xattr from $file1. We don't care if this
7369                 # appears to succeed or fail, we just don't want there to be
7370                 # any changes or crashes.
7371                 setfattr --remove=$trusted.$name $file1 2> /dev/null
7372         done
7373
7374         if [ $(lustre_version_code $SINGLEMDS) -gt $(version_code 2.6.50) ]
7375         then
7376                 name="lfsck_ns"
7377                 # Try to copy xattr from $file0 to $file1.
7378                 value=$(getxattr $file0 trusted.$name 2> /dev/null)
7379
7380                 setfattr --name=trusted.$name --value="$value" $file1 ||
7381                         error "setxattr 'trusted.$name' failed"
7382
7383                 # Try to set a garbage xattr.
7384                 value=0sVGhlIHF1aWNrIGJyb3duIGZveCBqdW1wcyBvdmVyIGl0c2VsZi4=
7385
7386                 setfattr --name=trusted.$name --value="$value" $file1 ||
7387                         error "setxattr 'trusted.$name' failed"
7388
7389                 # Try to remove the xattr from $file1. We don't care if this
7390                 # appears to succeed or fail, we just don't want there to be
7391                 # any changes or crashes.
7392                 setfattr --remove=$trusted.$name $file1 2> /dev/null
7393         fi
7394
7395         # Get 'after' xattrs of file1.
7396         getfattr --absolute-names --dump --match=- $file1 > $xattr1
7397
7398         if ! diff $xattr0 $xattr1; then
7399                 error "before and after xattrs of '$file1' differ"
7400         fi
7401
7402         rm -rf $file0 $file1 $xattr0 $xattr1
7403
7404         return 0
7405 }
7406 run_test 102n "silently ignore setxattr on internal trusted xattrs"
7407
7408 test_102p() { # LU-4703 setxattr did not check ownership
7409         local testfile=$DIR/$tfile
7410
7411         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.5.56) ] &&
7412                 skip "MDS needs to be at least 2.5.56" && return
7413
7414         touch $testfile
7415
7416         echo "setfacl as user..."
7417         $RUNAS setfacl -m "u:$RUNAS_ID:rwx" $testfile
7418         [ $? -ne 0 ] || error "setfacl by $RUNAS_ID was allowed on $testfile"
7419
7420         echo "setfattr as user..."
7421         setfacl -m "u:$RUNAS_ID:---" $testfile
7422         $RUNAS setfattr -x system.posix_acl_access $testfile
7423         [ $? -ne 0 ] || error "setfattr by $RUNAS_ID was allowed on $testfile"
7424 }
7425 run_test 102p "check setxattr(2) correctly fails without permission"
7426
7427 test_102q() {
7428         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.6.92) ] &&
7429                 skip "MDS needs to be at least 2.6.92" && return
7430         orphan_linkea_check $DIR/$tfile || error "orphan_linkea_check"
7431 }
7432 run_test 102q "flistxattr should not return trusted.link EAs for orphans"
7433
7434 test_102r() {
7435         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.6.93) ] &&
7436                 skip "MDS needs to be at least 2.6.93" && return
7437         touch $DIR/$tfile || error "touch"
7438         setfattr -n user.$(basename $tfile) $DIR/$tfile || error "setfattr"
7439         getfattr -n user.$(basename $tfile) $DIR/$tfile || error "getfattr"
7440         rm $DIR/$tfile || error "rm"
7441
7442         #normal directory
7443         mkdir -p $DIR/$tdir || error "mkdir"
7444         setfattr -n user.$(basename $tdir) $DIR/$tdir || error "setfattr dir"
7445         getfattr -n user.$(basename $tdir) $DIR/$tdir || error "getfattr dir"
7446         setfattr -x user.$(basename $tdir) $DIR/$tdir ||
7447                 error "$testfile error deleting user.author1"
7448         getfattr -d -m user.$(basename $tdir) 2> /dev/null |
7449                 grep "user.$(basename $tdir)" &&
7450                 error "$tdir did not delete user.$(basename $tdir)"
7451         rmdir $DIR/$tdir || error "rmdir"
7452
7453         #striped directory
7454         test_mkdir -p $DIR/$tdir || error "make striped dir"
7455         setfattr -n user.$(basename $tdir) $DIR/$tdir || error "setfattr dir"
7456         getfattr -n user.$(basename $tdir) $DIR/$tdir || error "getfattr dir"
7457         setfattr -x user.$(basename $tdir) $DIR/$tdir ||
7458                 error "$testfile error deleting user.author1"
7459         getfattr -d -m user.$(basename $tdir) 2> /dev/null |
7460                 grep "user.$(basename $tdir)" &&
7461                 error "$tdir did not delete user.$(basename $tdir)"
7462         rmdir $DIR/$tdir || error "rm striped dir"
7463 }
7464 run_test 102r "set EAs with empty values"
7465
7466 run_acl_subtest()
7467 {
7468     $LUSTRE/tests/acl/run $LUSTRE/tests/acl/$1.test
7469     return $?
7470 }
7471
7472 test_103a() {
7473         [ "$UID" != 0 ] && skip_env "must run as root" && return
7474         [ -z "$(lctl get_param -n mdc.*-mdc-*.connect_flags | grep acl)" ] &&
7475                 skip "must have acl enabled" && return
7476         [ -z "$(which setfacl 2>/dev/null)" ] &&
7477                 skip_env "could not find setfacl" && return
7478         $GSS && skip "could not run under gss" && return
7479         remote_mds_nodsh && skip "remote MDS with nodsh" && return
7480
7481         gpasswd -a daemon bin                           # LU-5641
7482         do_facet $SINGLEMDS gpasswd -a daemon bin       # LU-5641
7483
7484         declare -a identity_old
7485
7486         for num in $(seq $MDSCOUNT); do
7487                 switch_identity $num true || identity_old[$num]=$?
7488         done
7489
7490         SAVE_UMASK=$(umask)
7491         umask 0022
7492         mkdir -p $DIR/$tdir
7493         cd $DIR/$tdir
7494
7495         echo "performing cp ..."
7496         run_acl_subtest cp || error "run_acl_subtest cp failed"
7497         echo "performing getfacl-noacl..."
7498         run_acl_subtest getfacl-noacl || error "getfacl-noacl test failed"
7499         echo "performing misc..."
7500         run_acl_subtest misc || error  "misc test failed"
7501         echo "performing permissions..."
7502         run_acl_subtest permissions || error "permissions failed"
7503         # LU-1482 mdd: Setting xattr are properly checked with and without ACLs
7504         if [ $(lustre_version_code $SINGLEMDS) -gt $(version_code 2.8.55) -o \
7505              \( $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.6) -a \
7506              $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.5.29) \) ]
7507         then
7508                 echo "performing permissions xattr..."
7509                 run_acl_subtest permissions_xattr ||
7510                         error "permissions_xattr failed"
7511         fi
7512         echo "performing setfacl..."
7513         run_acl_subtest setfacl || error  "setfacl test failed"
7514
7515         # inheritance test got from HP
7516         echo "performing inheritance..."
7517         cp $LUSTRE/tests/acl/make-tree . || error "cannot copy make-tree"
7518         chmod +x make-tree || error "chmod +x failed"
7519         run_acl_subtest inheritance || error "inheritance test failed"
7520         rm -f make-tree
7521
7522         echo "LU-974 ignore umask when acl is enabled..."
7523         run_acl_subtest 974 || error "LU-974 umask test failed"
7524         if [ $MDSCOUNT -ge 2 ]; then
7525                 run_acl_subtest 974_remote ||
7526                         error "LU-974 umask test failed under remote dir"
7527         fi
7528
7529         echo "LU-2561 newly created file is same size as directory..."
7530         if [ $(facet_fstype $SINGLEMDS) != "zfs" ]; then
7531                 run_acl_subtest 2561 || error "LU-2561 test failed"
7532         else
7533                 run_acl_subtest 2561_zfs || error "LU-2561 zfs test failed"
7534         fi
7535
7536         run_acl_subtest 4924 || error "LU-4924 test failed"
7537
7538         cd $SAVE_PWD
7539         umask $SAVE_UMASK
7540
7541         for num in $(seq $MDSCOUNT); do
7542                 if [ "${identity_old[$num]}" = 1 ]; then
7543                         switch_identity $num false || identity_old[$num]=$?
7544                 fi
7545         done
7546 }
7547 run_test 103a "acl test ========================================="
7548
7549 test_103b() {
7550         remote_mds_nodsh && skip "remote MDS with nodsh" && return
7551         local noacl=false
7552         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
7553         local mountopts=$MDS_MOUNT_OPTS
7554
7555         if [[ "$MDS_MOUNT_OPTS" =~ "noacl" ]]; then
7556                 noacl=true
7557         else
7558                 # stop the MDT
7559                 stop $SINGLEMDS || error "failed to stop MDT."
7560                 # remount the MDT
7561                 if [ -z "$MDS_MOUNT_OPTS" ]; then
7562                         MDS_MOUNT_OPTS="-o noacl"
7563                 else
7564                         MDS_MOUNT_OPTS="${MDS_MOUNT_OPTS},noacl"
7565                 fi
7566                 start $SINGLEMDS $MDT_DEV $MDS_MOUNT_OPTS ||
7567                         error "failed to start MDT."
7568                 MDS_MOUNT_OPTS=$mountopts
7569         fi
7570
7571         touch $DIR/$tfile
7572         setfacl -m u:bin:rw $DIR/$tfile && error "setfacl should fail"
7573
7574         if ! $noacl; then
7575                 # stop the MDT
7576                 stop $SINGLEMDS || error "failed to stop MDT."
7577                 # remount the MDT
7578                 start $SINGLEMDS $MDT_DEV $MDS_MOUNT_OPTS ||
7579                         error "failed to start MDT."
7580         fi
7581
7582         true
7583 }
7584 run_test 103b "MDS mount option 'noacl'"
7585
7586 test_103c() {
7587         mkdir -p $DIR/$tdir
7588         cp -rp $DIR/$tdir $DIR/$tdir.bak
7589
7590         [ -n "$(getfattr -d -m. $DIR/$tdir | grep posix_acl_default)" ] &&
7591                 error "$DIR/$tdir shouldn't contain default ACL"
7592         [ -n "$(getfattr -d -m. $DIR/$tdir.bak | grep posix_acl_default)" ] &&
7593                 error "$DIR/$tdir.bak shouldn't contain default ACL"
7594         true
7595 }
7596 run_test 103c "'cp -rp' won't set empty acl"
7597
7598 test_104a() {
7599         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7600         touch $DIR/$tfile
7601         lfs df || error "lfs df failed"
7602         lfs df -ih || error "lfs df -ih failed"
7603         lfs df -h $DIR || error "lfs df -h $DIR failed"
7604         lfs df -i $DIR || error "lfs df -i $DIR failed"
7605         lfs df $DIR/$tfile || error "lfs df $DIR/$tfile failed"
7606         lfs df -ih $DIR/$tfile || error "lfs df -ih $DIR/$tfile failed"
7607
7608         local OSC=$(lctl dl | grep OST0000-osc-[^M] | awk '{ print $4 }')
7609         lctl --device %$OSC deactivate
7610         lfs df || error "lfs df with deactivated OSC failed"
7611         lctl --device %$OSC activate
7612         # wait the osc back to normal
7613         wait_osc_import_state client ost FULL
7614
7615         lfs df || error "lfs df with reactivated OSC failed"
7616         rm -f $DIR/$tfile
7617 }
7618 run_test 104a "lfs df [-ih] [path] test ========================="
7619
7620 test_104b() {
7621         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7622         [ $RUNAS_ID -eq $UID ] &&
7623                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
7624         chmod 666 /dev/obd
7625         denied_cnt=$(($($RUNAS $LFS check servers 2>&1 |
7626                         grep "Permission denied" | wc -l)))
7627         if [ $denied_cnt -ne 0 ]; then
7628                 error "lfs check servers test failed"
7629         fi
7630 }
7631 run_test 104b "$RUNAS lfs check servers test ===================="
7632
7633 test_105a() {
7634         # doesn't work on 2.4 kernels
7635         touch $DIR/$tfile
7636         if $(flock_is_enabled); then
7637                 flocks_test 1 on -f $DIR/$tfile || error "fail flock on"
7638         else
7639                 flocks_test 1 off -f $DIR/$tfile || error "fail flock off"
7640         fi
7641         rm -f $DIR/$tfile
7642 }
7643 run_test 105a "flock when mounted without -o flock test ========"
7644
7645 test_105b() {
7646         touch $DIR/$tfile
7647         if $(flock_is_enabled); then
7648                 flocks_test 1 on -c $DIR/$tfile || error "fail flock on"
7649         else
7650                 flocks_test 1 off -c $DIR/$tfile || error "fail flock off"
7651         fi
7652         rm -f $DIR/$tfile
7653 }
7654 run_test 105b "fcntl when mounted without -o flock test ========"
7655
7656 test_105c() {
7657         touch $DIR/$tfile
7658         if $(flock_is_enabled); then
7659                 flocks_test 1 on -l $DIR/$tfile || error "fail flock on"
7660         else
7661                 flocks_test 1 off -l $DIR/$tfile || error "fail flock off"
7662         fi
7663         rm -f $DIR/$tfile
7664 }
7665 run_test 105c "lockf when mounted without -o flock test ========"
7666
7667 test_105d() { # bug 15924
7668         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7669         test_mkdir -p $DIR/$tdir
7670         flock_is_enabled || { skip "mount w/o flock enabled" && return; }
7671         #define OBD_FAIL_LDLM_CP_CB_WAIT  0x315
7672         $LCTL set_param fail_loc=0x80000315
7673         flocks_test 2 $DIR/$tdir
7674 }
7675 run_test 105d "flock race (should not freeze) ========"
7676
7677 test_105e() { # bug 22660 && 22040
7678         flock_is_enabled || { skip "mount w/o flock enabled" && return; }
7679         touch $DIR/$tfile
7680         flocks_test 3 $DIR/$tfile
7681 }
7682 run_test 105e "Two conflicting flocks from same process ======="
7683
7684 test_106() { #bug 10921
7685         test_mkdir -p $DIR/$tdir
7686         $DIR/$tdir && error "exec $DIR/$tdir succeeded"
7687         chmod 777 $DIR/$tdir || error "chmod $DIR/$tdir failed"
7688 }
7689 run_test 106 "attempt exec of dir followed by chown of that dir"
7690
7691 test_107() {
7692         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7693         CDIR=`pwd`
7694         cd $DIR
7695
7696         local file=core
7697         rm -f $file
7698
7699         local save_pattern=$(sysctl -n kernel.core_pattern)
7700         local save_uses_pid=$(sysctl -n kernel.core_uses_pid)
7701         sysctl -w kernel.core_pattern=$file
7702         sysctl -w kernel.core_uses_pid=0
7703
7704         ulimit -c unlimited
7705         sleep 60 &
7706         SLEEPPID=$!
7707
7708         sleep 1
7709
7710         kill -s 11 $SLEEPPID
7711         wait $SLEEPPID
7712         if [ -e $file ]; then
7713                 size=`stat -c%s $file`
7714                 [ $size -eq 0 ] && error "Fail to create core file $file"
7715         else
7716                 error "Fail to create core file $file"
7717         fi
7718         rm -f $file
7719         sysctl -w kernel.core_pattern=$save_pattern
7720         sysctl -w kernel.core_uses_pid=$save_uses_pid
7721         cd $CDIR
7722 }
7723 run_test 107 "Coredump on SIG"
7724
7725 test_110() {
7726         test_mkdir -p $DIR/$tdir
7727         test_mkdir $DIR/$tdir/$(str_repeat 'a' 255) ||
7728                 error "mkdir with 255 char failed"
7729         test_mkdir $DIR/$tdir/$(str_repeat 'b' 256) &&
7730                 error "mkdir with 256 char should fail, but did not"
7731         touch $DIR/$tdir/$(str_repeat 'x' 255) ||
7732                 error "create with 255 char failed"
7733         touch $DIR/$tdir/$(str_repeat 'y' 256) &&
7734                 error "create with 256 char should fail, but did not"
7735
7736         ls -l $DIR/$tdir
7737         rm -rf $DIR/$tdir
7738 }
7739 run_test 110 "filename length checking"
7740
7741 #
7742 # Purpose: To verify dynamic thread (OSS) creation.
7743 #
7744 test_115() {
7745         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7746         remote_ost_nodsh && skip "remote OST with nodsh" && return
7747
7748         # Lustre does not stop service threads once they are started.
7749         # Reset number of running threads to default.
7750         stopall
7751         setupall
7752
7753         local OSTIO_pre
7754         local save_params="$TMP/sanity-$TESTNAME.parameters"
7755
7756         # Get ll_ost_io count before I/O
7757         OSTIO_pre=$(do_facet ost1 \
7758                 "$LCTL get_param ost.OSS.ost_io.threads_started | cut -d= -f2")
7759         # Exit if lustre is not running (ll_ost_io not running).
7760         [ -z "$OSTIO_pre" ] && error "no OSS threads"
7761
7762         echo "Starting with $OSTIO_pre threads"
7763         local thread_max=$((OSTIO_pre * 2))
7764         local rpc_in_flight=$((thread_max * 2))
7765         # Number of I/O Process proposed to be started.
7766         local nfiles
7767         local facets=$(get_facets OST)
7768
7769         save_lustre_params client \
7770                 "osc.*OST*.max_rpcs_in_flight" > $save_params
7771         save_lustre_params $facets \
7772                 "ost.OSS.ost_io.threads_max" >> $save_params
7773
7774         # Set in_flight to $rpc_in_flight
7775         $LCTL set_param osc.*OST*.max_rpcs_in_flight=$rpc_in_flight ||
7776                 error "Failed to set max_rpcs_in_flight to $rpc_in_flight"
7777         nfiles=${rpc_in_flight}
7778         # Set ost thread_max to $thread_max
7779         do_facet ost1 \
7780                 "$LCTL set_param ost.OSS.ost_io.threads_max=$thread_max"
7781
7782         # 5 Minutes should be sufficient for max number of OSS
7783         # threads(thread_max) to be created.
7784         local timeout=300
7785
7786         # Start I/O.
7787         local WTL=${WTL:-"$LUSTRE/tests/write_time_limit"}
7788         mkdir -p $DIR/$tdir
7789         for i in $(seq $nfiles); do
7790                 local file=$DIR/$tdir/${tfile}-$i
7791                 $LFS setstripe -c -1 -i 0 $file
7792                 ($WTL $file $timeout)&
7793         done
7794
7795         # I/O Started - Wait for thread_started to reach thread_max or report
7796         # error if thread_started is more than thread_max.
7797         echo "Waiting for thread_started to reach thread_max"
7798         local thread_started=0
7799         local end_time=$((SECONDS + timeout))
7800
7801         while [ $SECONDS -le $end_time ] ; do
7802                 echo -n "."
7803                 # Get ost i/o thread_started count.
7804                 thread_started=$(do_facet ost1 \
7805                         "$LCTL get_param \
7806                         ost.OSS.ost_io.threads_started | cut -d= -f2")
7807                 # Break out if thread_started is equal/greater than thread_max
7808                 if [[ $thread_started -ge $thread_max ]]; then
7809                         echo ll_ost_io thread_started $thread_started, \
7810                                 equal/greater than thread_max $thread_max
7811                         break
7812                 fi
7813                 sleep 1
7814         done
7815
7816         # Cleanup - We have the numbers, Kill i/o jobs if running.
7817         jobcount=($(jobs -p))
7818         for i in $(seq 0 $((${#jobcount[@]}-1)))
7819         do
7820                 kill -9 ${jobcount[$i]}
7821                 if [ $? -ne 0 ] ; then
7822                         echo Warning: \
7823                         Failed to Kill \'WTL\(I/O\)\' with pid ${jobcount[$i]}
7824                 fi
7825         done
7826
7827         # Cleanup files left by WTL binary.
7828         for i in $(seq $nfiles); do
7829                 local file=$DIR/$tdir/${tfile}-$i
7830                 rm -rf $file
7831                 if [ $? -ne 0 ] ; then
7832                         echo "Warning: Failed to delete file $file"
7833                 fi
7834         done
7835
7836         restore_lustre_params <$save_params
7837         rm -f $save_params || echo "Warning: delete file '$save_params' failed"
7838
7839         # Error out if no new thread has started or Thread started is greater
7840         # than thread max.
7841         if [[ $thread_started -le $OSTIO_pre ||
7842                         $thread_started -gt $thread_max ]]; then
7843                 error "ll_ost_io: thread_started $thread_started" \
7844                       "OSTIO_pre $OSTIO_pre, thread_max $thread_max." \
7845                       "No new thread started or thread started greater " \
7846                       "than thread_max."
7847         fi
7848 }
7849 run_test 115 "verify dynamic thread creation===================="
7850
7851 free_min_max () {
7852         wait_delete_completed
7853         AVAIL=($(lctl get_param -n osc.*[oO][sS][cC]-[^M]*.kbytesavail))
7854         echo "OST kbytes available: ${AVAIL[@]}"
7855         MAXV=${AVAIL[0]}
7856         MAXI=0
7857         MINV=${AVAIL[0]}
7858         MINI=0
7859         for ((i = 0; i < ${#AVAIL[@]}; i++)); do
7860                 #echo OST $i: ${AVAIL[i]}kb
7861                 if [[ ${AVAIL[i]} -gt $MAXV ]]; then
7862                         MAXV=${AVAIL[i]}
7863                         MAXI=$i
7864                 fi
7865                 if [[ ${AVAIL[i]} -lt $MINV ]]; then
7866                         MINV=${AVAIL[i]}
7867                         MINI=$i
7868                 fi
7869         done
7870         echo "Min free space: OST $MINI: $MINV"
7871         echo "Max free space: OST $MAXI: $MAXV"
7872 }
7873
7874 test_116a() { # was previously test_116()
7875         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7876         remote_mds_nodsh && skip "remote MDS with nodsh" && return
7877
7878         [[ $OSTCOUNT -lt 2 ]] && skip_env "$OSTCOUNT < 2 OSTs" && return
7879
7880         echo -n "Free space priority "
7881         do_facet $SINGLEMDS lctl get_param -n lo*.*-mdtlov.qos_prio_free |
7882                 head -n1
7883         declare -a AVAIL
7884         free_min_max
7885
7886         [ $MINV -eq 0 ] && skip "no free space in OST$MINI, skip" && return
7887         [ $MINV -gt 10000000 ] && skip "too much free space in OST$MINI, skip" \
7888                 && return
7889         trap simple_cleanup_common EXIT
7890
7891
7892         # Check if we need to generate uneven OSTs
7893         test_mkdir -p $DIR/$tdir/OST${MINI}
7894         local FILL=$((MINV / 4))
7895         local DIFF=$((MAXV - MINV))
7896         local DIFF2=$((DIFF * 100 / MINV))
7897
7898         local threshold=$(do_facet $SINGLEMDS \
7899                 lctl get_param -n *.*MDT0000-mdtlov.qos_threshold_rr | head -n1)
7900         threshold=${threshold%%%}
7901         echo -n "Check for uneven OSTs: "
7902         echo -n "diff=${DIFF}KB (${DIFF2}%) must be > ${threshold}% ..."
7903
7904         if [[ $DIFF2 -gt $threshold ]]; then
7905                 echo "ok"
7906                 echo "Don't need to fill OST$MINI"
7907         else
7908                 # generate uneven OSTs. Write 2% over the QOS threshold value
7909                 echo "no"
7910                 DIFF=$((threshold - DIFF2 + 2))
7911                 DIFF2=$((MINV * DIFF / 100))
7912                 echo "Fill $DIFF% remaining space in OST$MINI with ${DIFF2}KB"
7913                 $SETSTRIPE -i $MINI -c 1 $DIR/$tdir/OST${MINI} ||
7914                         error "setstripe failed"
7915                 DIFF=$((DIFF2 / 2048))
7916                 i=0
7917                 while [ $i -lt $DIFF ]; do
7918                         i=$((i + 1))
7919                         dd if=/dev/zero of=$DIR/$tdir/OST${MINI}/$tfile-$i \
7920                                 bs=2M count=1 2>/dev/null
7921                         echo -n .
7922                 done
7923                 echo .
7924                 sync
7925                 sleep_maxage
7926                 free_min_max
7927         fi
7928
7929         DIFF=$((MAXV - MINV))
7930         DIFF2=$((DIFF * 100 / MINV))
7931         echo -n "diff=$DIFF=$DIFF2% must be > $threshold% for QOS mode..."
7932         if [ $DIFF2 -gt $threshold ]; then
7933                 echo "ok"
7934         else
7935                 echo "failed - QOS mode won't be used"
7936                 skip "QOS imbalance criteria not met"
7937                 simple_cleanup_common
7938                 return
7939         fi
7940
7941         MINI1=$MINI
7942         MINV1=$MINV
7943         MAXI1=$MAXI
7944         MAXV1=$MAXV
7945
7946         # now fill using QOS
7947         $SETSTRIPE -c 1 $DIR/$tdir
7948         FILL=$((FILL / 200))
7949         if [ $FILL -gt 600 ]; then
7950                 FILL=600
7951         fi
7952         echo "writing $FILL files to QOS-assigned OSTs"
7953         i=0
7954         while [ $i -lt $FILL ]; do
7955                 i=$((i + 1))
7956                 dd if=/dev/zero of=$DIR/$tdir/$tfile-$i bs=200k \
7957                         count=1 2>/dev/null
7958                 echo -n .
7959         done
7960         echo "wrote $i 200k files"
7961         sync
7962         sleep_maxage
7963
7964         echo "Note: free space may not be updated, so measurements might be off"
7965         free_min_max
7966         DIFF2=$((MAXV - MINV))
7967         echo "free space delta: orig $DIFF final $DIFF2"
7968         [ $DIFF2 -gt $DIFF ] && echo "delta got worse!"
7969         DIFF=$((MINV1 - ${AVAIL[$MINI1]}))
7970         echo "Wrote ${DIFF}KB to smaller OST $MINI1"
7971         DIFF2=$((MAXV1 - ${AVAIL[$MAXI1]}))
7972         echo "Wrote ${DIFF2}KB to larger OST $MAXI1"
7973         if [[ $DIFF -gt 0 ]]; then
7974                 FILL=$((DIFF2 * 100 / DIFF - 100))
7975                 echo "Wrote ${FILL}% more data to larger OST $MAXI1"
7976         fi
7977
7978         # Figure out which files were written where
7979         UUID=$(lctl get_param -n lov.${FSNAME}-clilov-*.target_obd |
7980                awk '/'$MINI1': / {print $2; exit}')
7981         echo $UUID
7982         MINC=$($GETSTRIPE --ost $UUID $DIR/$tdir | grep $DIR | wc -l)
7983         echo "$MINC files created on smaller OST $MINI1"
7984         UUID=$(lctl get_param -n lov.${FSNAME}-clilov-*.target_obd |
7985                awk '/'$MAXI1': / {print $2; exit}')
7986         echo $UUID
7987         MAXC=$($GETSTRIPE --ost $UUID $DIR/$tdir | grep $DIR | wc -l)
7988         echo "$MAXC files created on larger OST $MAXI1"
7989         if [[ $MINC -gt 0 ]]; then
7990                 FILL=$((MAXC * 100 / MINC - 100))
7991                 echo "Wrote ${FILL}% more files to larger OST $MAXI1"
7992         fi
7993         [[ $MAXC -gt $MINC ]] ||
7994                 error_ignore LU-9 "stripe QOS didn't balance free space"
7995         simple_cleanup_common
7996 }
7997 run_test 116a "stripe QOS: free space balance ==================="
7998
7999 test_116b() { # LU-2093
8000         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8001         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8002
8003 #define OBD_FAIL_MDS_OSC_CREATE_FAIL     0x147
8004         local old_rr=$(do_facet $SINGLEMDS lctl get_param -n \
8005                        lo*.$FSNAME-MDT0000-mdtlov.qos_threshold_rr | head -1)
8006         [ -z "$old_rr" ] && skip "no QOS" && return 0
8007         do_facet $SINGLEMDS lctl set_param \
8008                 lo*.$FSNAME-MDT0000-mdtlov.qos_threshold_rr=0
8009         mkdir -p $DIR/$tdir
8010         do_facet $SINGLEMDS lctl set_param fail_loc=0x147
8011         createmany -o $DIR/$tdir/f- 20 || error "can't create"
8012         do_facet $SINGLEMDS lctl set_param fail_loc=0
8013         rm -rf $DIR/$tdir
8014         do_facet $SINGLEMDS lctl set_param \
8015                 lo*.$FSNAME-MDT0000-mdtlov.qos_threshold_rr=$old_rr
8016 }
8017 run_test 116b "QoS shouldn't LBUG if not enough OSTs found on the 2nd pass"
8018
8019 test_117() # bug 10891
8020 {
8021         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8022         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1
8023         #define OBD_FAIL_OST_SETATTR_CREDITS 0x21e
8024         lctl set_param fail_loc=0x21e
8025         > $DIR/$tfile || error "truncate failed"
8026         lctl set_param fail_loc=0
8027         echo "Truncate succeeded."
8028         rm -f $DIR/$tfile
8029 }
8030 run_test 117 "verify osd extend =========="
8031
8032 NO_SLOW_RESENDCOUNT=4
8033 export OLD_RESENDCOUNT=""
8034 set_resend_count () {
8035         local PROC_RESENDCOUNT="osc.${FSNAME}-OST*-osc-*.resend_count"
8036         OLD_RESENDCOUNT=$(lctl get_param -n $PROC_RESENDCOUNT | head -n1)
8037         lctl set_param -n $PROC_RESENDCOUNT $1
8038         echo resend_count is set to $(lctl get_param -n $PROC_RESENDCOUNT)
8039 }
8040
8041 # for reduce test_118* time (b=14842)
8042 [ "$SLOW" = "no" ] && set_resend_count $NO_SLOW_RESENDCOUNT
8043
8044 # Reset async IO behavior after error case
8045 reset_async() {
8046         FILE=$DIR/reset_async
8047
8048         # Ensure all OSCs are cleared
8049         $SETSTRIPE -c -1 $FILE
8050         dd if=/dev/zero of=$FILE bs=64k count=$OSTCOUNT
8051         sync
8052         rm $FILE
8053 }
8054
8055 test_118a() #bug 11710
8056 {
8057         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8058         reset_async
8059
8060         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
8061         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
8062         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
8063
8064         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
8065                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
8066                 return 1;
8067         fi
8068         rm -f $DIR/$tfile
8069 }
8070 run_test 118a "verify O_SYNC works =========="
8071
8072 test_118b()
8073 {
8074         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8075         remote_ost_nodsh && skip "remote OST with nodsh" && return
8076
8077         reset_async
8078
8079         #define OBD_FAIL_SRV_ENOENT 0x217
8080         set_nodes_failloc "$(osts_nodes)" 0x217
8081         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
8082         RC=$?
8083         set_nodes_failloc "$(osts_nodes)" 0
8084         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
8085         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
8086                     grep -c writeback)
8087
8088         if [[ $RC -eq 0 ]]; then
8089                 error "Must return error due to dropped pages, rc=$RC"
8090                 return 1;
8091         fi
8092
8093         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
8094                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
8095                 return 1;
8096         fi
8097
8098         echo "Dirty pages not leaked on ENOENT"
8099
8100         # Due to the above error the OSC will issue all RPCs syncronously
8101         # until a subsequent RPC completes successfully without error.
8102         $MULTIOP $DIR/$tfile Ow4096yc
8103         rm -f $DIR/$tfile
8104
8105         return 0
8106 }
8107 run_test 118b "Reclaim dirty pages on fatal error =========="
8108
8109 test_118c()
8110 {
8111         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8112
8113         # for 118c, restore the original resend count, LU-1940
8114         [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] &&
8115                                 set_resend_count $OLD_RESENDCOUNT
8116         remote_ost_nodsh && skip "remote OST with nodsh" && return
8117
8118         reset_async
8119
8120         #define OBD_FAIL_OST_EROFS               0x216
8121         set_nodes_failloc "$(osts_nodes)" 0x216
8122
8123         # multiop should block due to fsync until pages are written
8124         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
8125         MULTIPID=$!
8126         sleep 1
8127
8128         if [[ `ps h -o comm -p $MULTIPID` != "multiop" ]]; then
8129                 error "Multiop failed to block on fsync, pid=$MULTIPID"
8130         fi
8131
8132         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
8133                     grep -c writeback)
8134         if [[ $WRITEBACK -eq 0 ]]; then
8135                 error "No page in writeback, writeback=$WRITEBACK"
8136         fi
8137
8138         set_nodes_failloc "$(osts_nodes)" 0
8139         wait $MULTIPID
8140         RC=$?
8141         if [[ $RC -ne 0 ]]; then
8142                 error "Multiop fsync failed, rc=$RC"
8143         fi
8144
8145         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
8146         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
8147                     grep -c writeback)
8148         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
8149                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
8150         fi
8151
8152         rm -f $DIR/$tfile
8153         echo "Dirty pages flushed via fsync on EROFS"
8154         return 0
8155 }
8156 run_test 118c "Fsync blocks on EROFS until dirty pages are flushed =========="
8157
8158 # continue to use small resend count to reduce test_118* time (b=14842)
8159 [ "$SLOW" = "no" ] && set_resend_count $NO_SLOW_RESENDCOUNT
8160
8161 test_118d()
8162 {
8163         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8164         remote_ost_nodsh && skip "remote OST with nodsh" && return
8165
8166         reset_async
8167
8168         #define OBD_FAIL_OST_BRW_PAUSE_BULK
8169         set_nodes_failloc "$(osts_nodes)" 0x214
8170         # multiop should block due to fsync until pages are written
8171         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
8172         MULTIPID=$!
8173         sleep 1
8174
8175         if [[ `ps h -o comm -p $MULTIPID` != "multiop" ]]; then
8176                 error "Multiop failed to block on fsync, pid=$MULTIPID"
8177         fi
8178
8179         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
8180                     grep -c writeback)
8181         if [[ $WRITEBACK -eq 0 ]]; then
8182                 error "No page in writeback, writeback=$WRITEBACK"
8183         fi
8184
8185         wait $MULTIPID || error "Multiop fsync failed, rc=$?"
8186         set_nodes_failloc "$(osts_nodes)" 0
8187
8188         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
8189         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
8190                     grep -c writeback)
8191         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
8192                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
8193         fi
8194
8195         rm -f $DIR/$tfile
8196         echo "Dirty pages gaurenteed flushed via fsync"
8197         return 0
8198 }
8199 run_test 118d "Fsync validation inject a delay of the bulk =========="
8200
8201 test_118f() {
8202         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8203         reset_async
8204
8205         #define OBD_FAIL_OSC_BRW_PREP_REQ2        0x40a
8206         lctl set_param fail_loc=0x8000040a
8207
8208         # Should simulate EINVAL error which is fatal
8209         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
8210         RC=$?
8211         if [[ $RC -eq 0 ]]; then
8212                 error "Must return error due to dropped pages, rc=$RC"
8213         fi
8214
8215         lctl set_param fail_loc=0x0
8216
8217         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
8218         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
8219         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
8220                     grep -c writeback)
8221         if [[ $LOCKED -ne 0 ]]; then
8222                 error "Locked pages remain in cache, locked=$LOCKED"
8223         fi
8224
8225         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
8226                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
8227         fi
8228
8229         rm -f $DIR/$tfile
8230         echo "No pages locked after fsync"
8231
8232         reset_async
8233         return 0
8234 }
8235 run_test 118f "Simulate unrecoverable OSC side error =========="
8236
8237 test_118g() {
8238         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8239         reset_async
8240
8241         #define OBD_FAIL_OSC_BRW_PREP_REQ        0x406
8242         lctl set_param fail_loc=0x406
8243
8244         # simulate local -ENOMEM
8245         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
8246         RC=$?
8247
8248         lctl set_param fail_loc=0
8249         if [[ $RC -eq 0 ]]; then
8250                 error "Must return error due to dropped pages, rc=$RC"
8251         fi
8252
8253         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
8254         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
8255         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
8256                         grep -c writeback)
8257         if [[ $LOCKED -ne 0 ]]; then
8258                 error "Locked pages remain in cache, locked=$LOCKED"
8259         fi
8260
8261         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
8262                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
8263         fi
8264
8265         rm -f $DIR/$tfile
8266         echo "No pages locked after fsync"
8267
8268         reset_async
8269         return 0
8270 }
8271 run_test 118g "Don't stay in wait if we got local -ENOMEM  =========="
8272
8273 test_118h() {
8274         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8275         remote_ost_nodsh && skip "remote OST with nodsh" && return
8276
8277         reset_async
8278
8279         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
8280         set_nodes_failloc "$(osts_nodes)" 0x20e
8281         # Should simulate ENOMEM error which is recoverable and should be handled by timeout
8282         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
8283         RC=$?
8284
8285         set_nodes_failloc "$(osts_nodes)" 0
8286         if [[ $RC -eq 0 ]]; then
8287                 error "Must return error due to dropped pages, rc=$RC"
8288         fi
8289
8290         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
8291         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
8292         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
8293                     grep -c writeback)
8294         if [[ $LOCKED -ne 0 ]]; then
8295                 error "Locked pages remain in cache, locked=$LOCKED"
8296         fi
8297
8298         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
8299                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
8300         fi
8301
8302         rm -f $DIR/$tfile
8303         echo "No pages locked after fsync"
8304
8305         return 0
8306 }
8307 run_test 118h "Verify timeout in handling recoverables errors  =========="
8308
8309 [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] && set_resend_count $OLD_RESENDCOUNT
8310
8311 test_118i() {
8312         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8313         remote_ost_nodsh && skip "remote OST with nodsh" && return
8314
8315         reset_async
8316
8317         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
8318         set_nodes_failloc "$(osts_nodes)" 0x20e
8319
8320         # Should simulate ENOMEM error which is recoverable and should be handled by timeout
8321         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
8322         PID=$!
8323         sleep 5
8324         set_nodes_failloc "$(osts_nodes)" 0
8325
8326         wait $PID
8327         RC=$?
8328         if [[ $RC -ne 0 ]]; then
8329                 error "got error, but should be not, rc=$RC"
8330         fi
8331
8332         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
8333         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
8334         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
8335         if [[ $LOCKED -ne 0 ]]; then
8336                 error "Locked pages remain in cache, locked=$LOCKED"
8337         fi
8338
8339         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
8340                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
8341         fi
8342
8343         rm -f $DIR/$tfile
8344         echo "No pages locked after fsync"
8345
8346         return 0
8347 }
8348 run_test 118i "Fix error before timeout in recoverable error  =========="
8349
8350 [ "$SLOW" = "no" ] && set_resend_count 4
8351
8352 test_118j() {
8353         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8354         remote_ost_nodsh && skip "remote OST with nodsh" && return
8355
8356         reset_async
8357
8358         #define OBD_FAIL_OST_BRW_WRITE_BULK2     0x220
8359         set_nodes_failloc "$(osts_nodes)" 0x220
8360
8361         # return -EIO from OST
8362         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
8363         RC=$?
8364         set_nodes_failloc "$(osts_nodes)" 0x0
8365         if [[ $RC -eq 0 ]]; then
8366                 error "Must return error due to dropped pages, rc=$RC"
8367         fi
8368
8369         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
8370         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
8371         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
8372         if [[ $LOCKED -ne 0 ]]; then
8373                 error "Locked pages remain in cache, locked=$LOCKED"
8374         fi
8375
8376         # in recoverable error on OST we want resend and stay until it finished
8377         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
8378                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
8379         fi
8380
8381         rm -f $DIR/$tfile
8382         echo "No pages locked after fsync"
8383
8384         return 0
8385 }
8386 run_test 118j "Simulate unrecoverable OST side error =========="
8387
8388 test_118k()
8389 {
8390         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8391         remote_ost_nodsh && skip "remote OSTs with nodsh" && return
8392
8393         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
8394         set_nodes_failloc "$(osts_nodes)" 0x20e
8395         test_mkdir -p $DIR/$tdir
8396
8397         for ((i=0;i<10;i++)); do
8398                 (dd if=/dev/zero of=$DIR/$tdir/$tfile-$i bs=1M count=10 || \
8399                         error "dd to $DIR/$tdir/$tfile-$i failed" )&
8400                 SLEEPPID=$!
8401                 sleep 0.500s
8402                 kill $SLEEPPID
8403                 wait $SLEEPPID
8404         done
8405
8406         set_nodes_failloc "$(osts_nodes)" 0
8407         rm -rf $DIR/$tdir
8408 }
8409 run_test 118k "bio alloc -ENOMEM and IO TERM handling ========="
8410
8411 test_118l()
8412 {
8413         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8414         # LU-646
8415         test_mkdir -p $DIR/$tdir
8416         $MULTIOP $DIR/$tdir Dy || error "fsync dir failed"
8417         rm -rf $DIR/$tdir
8418 }
8419 run_test 118l "fsync dir ========="
8420
8421 test_118m() # LU-3066
8422 {
8423         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8424         test_mkdir -p $DIR/$tdir
8425         $MULTIOP $DIR/$tdir DY || error "fdatasync dir failed"
8426         rm -rf $DIR/$tdir
8427 }
8428 run_test 118m "fdatasync dir ========="
8429
8430 [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] && set_resend_count $OLD_RESENDCOUNT
8431
8432 test_119a() # bug 11737
8433 {
8434         BSIZE=$((512 * 1024))
8435         directio write $DIR/$tfile 0 1 $BSIZE
8436         # We ask to read two blocks, which is more than a file size.
8437         # directio will indicate an error when requested and actual
8438         # sizes aren't equeal (a normal situation in this case) and
8439         # print actual read amount.
8440         NOB=`directio read $DIR/$tfile 0 2 $BSIZE | awk '/error/ {print $6}'`
8441         if [ "$NOB" != "$BSIZE" ]; then
8442                 error "read $NOB bytes instead of $BSIZE"
8443         fi
8444         rm -f $DIR/$tfile
8445 }
8446 run_test 119a "Short directIO read must return actual read amount"
8447
8448 test_119b() # bug 11737
8449 {
8450         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping 2-stripe test" && return
8451
8452         $SETSTRIPE -c 2 $DIR/$tfile || error "setstripe failed"
8453         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=1 || error "dd failed"
8454         sync
8455         $MULTIOP $DIR/$tfile oO_RDONLY:O_DIRECT:r$((2048 * 1024)) || \
8456                 error "direct read failed"
8457         rm -f $DIR/$tfile
8458 }
8459 run_test 119b "Sparse directIO read must return actual read amount"
8460
8461 test_119c() # bug 13099
8462 {
8463         BSIZE=1048576
8464         directio write $DIR/$tfile 3 1 $BSIZE || error "direct write failed"
8465         directio readhole $DIR/$tfile 0 2 $BSIZE || error "reading hole failed"
8466         rm -f $DIR/$tfile
8467 }
8468 run_test 119c "Testing for direct read hitting hole"
8469
8470 test_119d() # bug 15950
8471 {
8472         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8473         MAX_RPCS_IN_FLIGHT=`$LCTL get_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight`
8474         $LCTL set_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight 1
8475         BSIZE=1048576
8476         $SETSTRIPE $DIR/$tfile -i 0 -c 1 || error "setstripe failed"
8477         $DIRECTIO write $DIR/$tfile 0 1 $BSIZE || error "first directio failed"
8478         #define OBD_FAIL_OSC_DIO_PAUSE           0x40d
8479         lctl set_param fail_loc=0x40d
8480         $DIRECTIO write $DIR/$tfile 1 4 $BSIZE &
8481         pid_dio=$!
8482         sleep 1
8483         cat $DIR/$tfile > /dev/null &
8484         lctl set_param fail_loc=0
8485         pid_reads=$!
8486         wait $pid_dio
8487         log "the DIO writes have completed, now wait for the reads (should not block very long)"
8488         sleep 2
8489         [ -n "`ps h -p $pid_reads -o comm`" ] && \
8490         error "the read rpcs have not completed in 2s"
8491         rm -f $DIR/$tfile
8492         $LCTL set_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight $MAX_RPCS_IN_FLIGHT
8493 }
8494 run_test 119d "The DIO path should try to send a new rpc once one is completed"
8495
8496 test_120a() {
8497         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8498         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8499         test_mkdir -p $DIR/$tdir
8500         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
8501                skip "no early lock cancel on server" && return 0
8502
8503         lru_resize_disable mdc
8504         lru_resize_disable osc
8505         cancel_lru_locks mdc
8506         # asynchronous object destroy at MDT could cause bl ast to client
8507         cancel_lru_locks osc
8508
8509         stat $DIR/$tdir > /dev/null
8510         can1=$(do_facet $SINGLEMDS \
8511                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8512                awk '/ldlm_cancel/ {print $2}')
8513         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8514                awk '/ldlm_bl_callback/ {print $2}')
8515         test_mkdir -c1 $DIR/$tdir/d1
8516         can2=$(do_facet $SINGLEMDS \
8517                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8518                awk '/ldlm_cancel/ {print $2}')
8519         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8520                awk '/ldlm_bl_callback/ {print $2}')
8521         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
8522         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
8523         lru_resize_enable mdc
8524         lru_resize_enable osc
8525 }
8526 run_test 120a "Early Lock Cancel: mkdir test"
8527
8528 test_120b() {
8529         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8530         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8531         test_mkdir $DIR/$tdir
8532         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel)" ] && \
8533                skip "no early lock cancel on server" && return 0
8534         lru_resize_disable mdc
8535         lru_resize_disable osc
8536         cancel_lru_locks mdc
8537         stat $DIR/$tdir > /dev/null
8538         can1=$(do_facet $SINGLEMDS \
8539                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8540                awk '/ldlm_cancel/ {print $2}')
8541         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8542                awk '/ldlm_bl_callback/ {print $2}')
8543         touch $DIR/$tdir/f1
8544         can2=$(do_facet $SINGLEMDS \
8545                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8546                awk '/ldlm_cancel/ {print $2}')
8547         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8548                awk '/ldlm_bl_callback/ {print $2}')
8549         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
8550         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
8551         lru_resize_enable mdc
8552         lru_resize_enable osc
8553 }
8554 run_test 120b "Early Lock Cancel: create test"
8555
8556 test_120c() {
8557         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8558         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8559         test_mkdir -c1 $DIR/$tdir
8560         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel)" ] && \
8561                skip "no early lock cancel on server" && return 0
8562         lru_resize_disable mdc
8563         lru_resize_disable osc
8564         test_mkdir -p -c1 $DIR/$tdir/d1
8565         test_mkdir -p -c1 $DIR/$tdir/d2
8566         touch $DIR/$tdir/d1/f1
8567         cancel_lru_locks mdc
8568         stat $DIR/$tdir/d1 $DIR/$tdir/d2 $DIR/$tdir/d1/f1 > /dev/null
8569         can1=$(do_facet $SINGLEMDS \
8570                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8571                awk '/ldlm_cancel/ {print $2}')
8572         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8573                awk '/ldlm_bl_callback/ {print $2}')
8574         ln $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2
8575         can2=$(do_facet $SINGLEMDS \
8576                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8577                awk '/ldlm_cancel/ {print $2}')
8578         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8579                awk '/ldlm_bl_callback/ {print $2}')
8580         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
8581         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
8582         lru_resize_enable mdc
8583         lru_resize_enable osc
8584 }
8585 run_test 120c "Early Lock Cancel: link test"
8586
8587 test_120d() {
8588         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8589         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8590         test_mkdir -p -c1 $DIR/$tdir
8591         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel)" ] && \
8592                skip "no early lock cancel on server" && return 0
8593         lru_resize_disable mdc
8594         lru_resize_disable osc
8595         touch $DIR/$tdir
8596         cancel_lru_locks mdc
8597         stat $DIR/$tdir > /dev/null
8598         can1=$(do_facet $SINGLEMDS \
8599                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8600                awk '/ldlm_cancel/ {print $2}')
8601         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8602                awk '/ldlm_bl_callback/ {print $2}')
8603         chmod a+x $DIR/$tdir
8604         can2=$(do_facet $SINGLEMDS \
8605                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8606                awk '/ldlm_cancel/ {print $2}')
8607         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8608                awk '/ldlm_bl_callback/ {print $2}')
8609         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
8610         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
8611         lru_resize_enable mdc
8612         lru_resize_enable osc
8613 }
8614 run_test 120d "Early Lock Cancel: setattr test"
8615
8616 test_120e() {
8617         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8618         ! $($LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_can) &&
8619                 skip "no early lock cancel on server" && return 0
8620         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8621         local dlmtrace_set=false
8622
8623         test_mkdir -p -c1 $DIR/$tdir
8624         lru_resize_disable mdc
8625         lru_resize_disable osc
8626         ! $LCTL get_param debug | grep -q dlmtrace &&
8627                 $LCTL set_param debug=+dlmtrace && dlmtrace_set=true
8628         dd if=/dev/zero of=$DIR/$tdir/f1 count=1
8629         cancel_lru_locks mdc
8630         cancel_lru_locks osc
8631         dd if=$DIR/$tdir/f1 of=/dev/null
8632         stat $DIR/$tdir $DIR/$tdir/f1 > /dev/null
8633         # XXX client can not do early lock cancel of OST lock
8634         # during unlink (LU-4206), so cancel osc lock now.
8635         sleep 2
8636         cancel_lru_locks osc
8637         can1=$(do_facet $SINGLEMDS \
8638                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8639                awk '/ldlm_cancel/ {print $2}')
8640         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8641                awk '/ldlm_bl_callback/ {print $2}')
8642         unlink $DIR/$tdir/f1
8643         sleep 5
8644         can2=$(do_facet $SINGLEMDS \
8645                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8646                awk '/ldlm_cancel/ {print $2}')
8647         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8648                awk '/ldlm_bl_callback/ {print $2}')
8649         [ $can1 -ne $can2 ] && error "$((can2 - can1)) cancel RPC occured" &&
8650                 $LCTL dk $TMP/cancel.debug.txt
8651         [ $blk1 -ne $blk2 ] && error "$((blk2 - blk1)) blocking RPC occured" &&
8652                 $LCTL dk $TMP/blocking.debug.txt
8653         $dlmtrace_set && $LCTL set_param debug=-dlmtrace
8654         lru_resize_enable mdc
8655         lru_resize_enable osc
8656 }
8657 run_test 120e "Early Lock Cancel: unlink test"
8658
8659 test_120f() {
8660         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8661         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
8662                skip "no early lock cancel on server" && return 0
8663         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8664         test_mkdir -p -c1 $DIR/$tdir
8665         lru_resize_disable mdc
8666         lru_resize_disable osc
8667         test_mkdir -p -c1 $DIR/$tdir/d1
8668         test_mkdir -p -c1 $DIR/$tdir/d2
8669         dd if=/dev/zero of=$DIR/$tdir/d1/f1 count=1
8670         dd if=/dev/zero of=$DIR/$tdir/d2/f2 count=1
8671         cancel_lru_locks mdc
8672         cancel_lru_locks osc
8673         dd if=$DIR/$tdir/d1/f1 of=/dev/null
8674         dd if=$DIR/$tdir/d2/f2 of=/dev/null
8675         stat $DIR/$tdir/d1 $DIR/$tdir/d2 $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2 > /dev/null
8676         # XXX client can not do early lock cancel of OST lock
8677         # during rename (LU-4206), so cancel osc lock now.
8678         sleep 2
8679         cancel_lru_locks osc
8680         can1=$(do_facet $SINGLEMDS \
8681                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8682                awk '/ldlm_cancel/ {print $2}')
8683         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8684                awk '/ldlm_bl_callback/ {print $2}')
8685         mrename $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2
8686         sleep 5
8687         can2=$(do_facet $SINGLEMDS \
8688                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8689                awk '/ldlm_cancel/ {print $2}')
8690         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8691                awk '/ldlm_bl_callback/ {print $2}')
8692         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
8693         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
8694         lru_resize_enable mdc
8695         lru_resize_enable osc
8696 }
8697 run_test 120f "Early Lock Cancel: rename test"
8698
8699 test_120g() {
8700         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8701         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
8702                skip "no early lock cancel on server" && return 0
8703         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8704         lru_resize_disable mdc
8705         lru_resize_disable osc
8706         count=10000
8707         echo create $count files
8708         test_mkdir -p $DIR/$tdir
8709         cancel_lru_locks mdc
8710         cancel_lru_locks osc
8711         t0=`date +%s`
8712
8713         can0=$(do_facet $SINGLEMDS \
8714                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8715                awk '/ldlm_cancel/ {print $2}')
8716         blk0=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8717                awk '/ldlm_bl_callback/ {print $2}')
8718         createmany -o $DIR/$tdir/f $count
8719         sync
8720         can1=$(do_facet $SINGLEMDS \
8721                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8722                awk '/ldlm_cancel/ {print $2}')
8723         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8724                awk '/ldlm_bl_callback/ {print $2}')
8725         t1=$(date +%s)
8726         echo total: $((can1-can0)) cancels, $((blk1-blk0)) blockings
8727         echo rm $count files
8728         rm -r $DIR/$tdir
8729         sync
8730         can2=$(do_facet $SINGLEMDS \
8731                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8732                awk '/ldlm_cancel/ {print $2}')
8733         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8734                awk '/ldlm_bl_callback/ {print $2}')
8735         t2=$(date +%s)
8736         echo total: $count removes in $((t2-t1))
8737         echo total: $((can2-can1)) cancels, $((blk2-blk1)) blockings
8738         sleep 2
8739         # wait for commitment of removal
8740         lru_resize_enable mdc
8741         lru_resize_enable osc
8742 }
8743 run_test 120g "Early Lock Cancel: performance test"
8744
8745 test_121() { #bug #10589
8746         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8747         rm -rf $DIR/$tfile
8748         writes=$(LANG=C dd if=/dev/zero of=$DIR/$tfile count=1 2>&1 | awk -F '+' '/out$/ {print $1}')
8749 #define OBD_FAIL_LDLM_CANCEL_RACE        0x310
8750         lctl set_param fail_loc=0x310
8751         cancel_lru_locks osc > /dev/null
8752         reads=$(LANG=C dd if=$DIR/$tfile of=/dev/null 2>&1 | awk -F '+' '/in$/ {print $1}')
8753         lctl set_param fail_loc=0
8754         [[ $reads -eq $writes ]] ||
8755                 error "read $reads blocks, must be $writes blocks"
8756 }
8757 run_test 121 "read cancel race ========="
8758
8759 test_123a() { # was test 123, statahead(bug 11401)
8760         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8761         SLOWOK=0
8762         if [ -z "$(grep "processor.*: 1" /proc/cpuinfo)" ]; then
8763             log "testing on UP system. Performance may be not as good as expected."
8764                         SLOWOK=1
8765         fi
8766
8767         rm -rf $DIR/$tdir
8768         test_mkdir -p $DIR/$tdir
8769         NUMFREE=$(df -i -P $DIR | tail -n 1 | awk '{ print $4 }')
8770         [[ $NUMFREE -gt 100000 ]] && NUMFREE=100000 || NUMFREE=$((NUMFREE-1000))
8771         MULT=10
8772         for ((i=100, j=0; i<=$NUMFREE; j=$i, i=$((i * MULT)) )); do
8773                 createmany -o $DIR/$tdir/$tfile $j $((i - j))
8774
8775                 max=`lctl get_param -n llite.*.statahead_max | head -n 1`
8776                 lctl set_param -n llite.*.statahead_max 0
8777                 lctl get_param llite.*.statahead_max
8778                 cancel_lru_locks mdc
8779                 cancel_lru_locks osc
8780                 stime=`date +%s`
8781                 time ls -l $DIR/$tdir | wc -l
8782                 etime=`date +%s`
8783                 delta=$((etime - stime))
8784                 log "ls $i files without statahead: $delta sec"
8785                 lctl set_param llite.*.statahead_max=$max
8786
8787                 swrong=`lctl get_param -n llite.*.statahead_stats | grep "statahead wrong:" | awk '{print $3}'`
8788                 lctl get_param -n llite.*.statahead_max | grep '[0-9]'
8789                 cancel_lru_locks mdc
8790                 cancel_lru_locks osc
8791                 stime=`date +%s`
8792                 time ls -l $DIR/$tdir | wc -l
8793                 etime=`date +%s`
8794                 delta_sa=$((etime - stime))
8795                 log "ls $i files with statahead: $delta_sa sec"
8796                 lctl get_param -n llite.*.statahead_stats
8797                 ewrong=`lctl get_param -n llite.*.statahead_stats | grep "statahead wrong:" | awk '{print $3}'`
8798
8799                 [[ $swrong -lt $ewrong ]] &&
8800                         log "statahead was stopped, maybe too many locks held!"
8801                 [[ $delta -eq 0 || $delta_sa -eq 0 ]] && continue
8802
8803                 if [ $((delta_sa * 100)) -gt $((delta * 105)) -a $delta_sa -gt $((delta + 2)) ]; then
8804                     max=`lctl get_param -n llite.*.statahead_max | head -n 1`
8805                     lctl set_param -n llite.*.statahead_max 0
8806                     lctl get_param llite.*.statahead_max
8807                     cancel_lru_locks mdc
8808                     cancel_lru_locks osc
8809                     stime=`date +%s`
8810                     time ls -l $DIR/$tdir | wc -l
8811                     etime=`date +%s`
8812                     delta=$((etime - stime))
8813                     log "ls $i files again without statahead: $delta sec"
8814                     lctl set_param llite.*.statahead_max=$max
8815                     if [ $((delta_sa * 100)) -gt $((delta * 105)) -a $delta_sa -gt $((delta + 2)) ]; then
8816                         if [  $SLOWOK -eq 0 ]; then
8817                                 error "ls $i files is slower with statahead!"
8818                         else
8819                                 log "ls $i files is slower with statahead!"
8820                         fi
8821                         break
8822                     fi
8823                 fi
8824
8825                 [ $delta -gt 20 ] && break
8826                 [ $delta -gt 8 ] && MULT=$((50 / delta))
8827                 [ "$SLOW" = "no" -a $delta -gt 5 ] && break
8828         done
8829         log "ls done"
8830
8831         stime=`date +%s`
8832         rm -r $DIR/$tdir
8833         sync
8834         etime=`date +%s`
8835         delta=$((etime - stime))
8836         log "rm -r $DIR/$tdir/: $delta seconds"
8837         log "rm done"
8838         lctl get_param -n llite.*.statahead_stats
8839 }
8840 run_test 123a "verify statahead work"
8841
8842 test_123b () { # statahead(bug 15027)
8843         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8844         test_mkdir -p $DIR/$tdir
8845         createmany -o $DIR/$tdir/$tfile-%d 1000
8846
8847         cancel_lru_locks mdc
8848         cancel_lru_locks osc
8849
8850 #define OBD_FAIL_MDC_GETATTR_ENQUEUE     0x803
8851         lctl set_param fail_loc=0x80000803
8852         ls -lR $DIR/$tdir > /dev/null
8853         log "ls done"
8854         lctl set_param fail_loc=0x0
8855         lctl get_param -n llite.*.statahead_stats
8856         rm -r $DIR/$tdir
8857         sync
8858
8859 }
8860 run_test 123b "not panic with network error in statahead enqueue (bug 15027)"
8861
8862 test_124a() {
8863         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8864         [ -z "$($LCTL get_param -n mdc.*.connect_flags | grep lru_resize)" ] &&
8865                 skip "no lru resize on server" && return 0
8866         local NR=2000
8867         test_mkdir -p $DIR/$tdir || error "failed to create $DIR/$tdir"
8868
8869         log "create $NR files at $DIR/$tdir"
8870         createmany -o $DIR/$tdir/f $NR ||
8871                 error "failed to create $NR files in $DIR/$tdir"
8872
8873         cancel_lru_locks mdc
8874         ls -l $DIR/$tdir > /dev/null
8875
8876         local NSDIR=""
8877         local LRU_SIZE=0
8878         for VALUE in $($LCTL get_param ldlm.namespaces.*mdc-*.lru_size); do
8879                 local PARAM=$(echo ${VALUE[0]} | cut -d "=" -f1)
8880                 LRU_SIZE=$($LCTL get_param -n $PARAM)
8881                 if [[ $LRU_SIZE -gt $(default_lru_size) ]]; then
8882                         NSDIR=$(echo $PARAM | cut -d "." -f1-3)
8883                         log "NSDIR=$NSDIR"
8884                         log "NS=$(basename $NSDIR)"
8885                         break
8886                 fi
8887         done
8888
8889         if [[ -z "$NSDIR" || $LRU_SIZE -lt $(default_lru_size) ]]; then
8890                 skip "Not enough cached locks created!"
8891                 return 0
8892         fi
8893         log "LRU=$LRU_SIZE"
8894
8895         local SLEEP=30
8896
8897         # We know that lru resize allows one client to hold $LIMIT locks
8898         # for 10h. After that locks begin to be killed by client.
8899         local MAX_HRS=10
8900         local LIMIT=$($LCTL get_param -n $NSDIR.pool.limit)
8901         log "LIMIT=$LIMIT"
8902         if [ $LIMIT -lt $LRU_SIZE ]; then
8903             skip "Limit is too small $LIMIT"
8904             return 0
8905         fi
8906
8907         # Make LVF so higher that sleeping for $SLEEP is enough to _start_
8908         # killing locks. Some time was spent for creating locks. This means
8909         # that up to the moment of sleep finish we must have killed some of
8910         # them (10-100 locks). This depends on how fast ther were created.
8911         # Many of them were touched in almost the same moment and thus will
8912         # be killed in groups.
8913         local LVF=$(($MAX_HRS * 60 * 60 / $SLEEP * $LIMIT / $LRU_SIZE))
8914
8915         # Use $LRU_SIZE_B here to take into account real number of locks
8916         # created in the case of CMD, LRU_SIZE_B != $NR in most of cases
8917         local LRU_SIZE_B=$LRU_SIZE
8918         log "LVF=$LVF"
8919         local OLD_LVF=$($LCTL get_param -n $NSDIR.pool.lock_volume_factor)
8920         log "OLD_LVF=$OLD_LVF"
8921         $LCTL set_param -n $NSDIR.pool.lock_volume_factor $LVF
8922
8923         # Let's make sure that we really have some margin. Client checks
8924         # cached locks every 10 sec.
8925         SLEEP=$((SLEEP+20))
8926         log "Sleep ${SLEEP} sec"
8927         local SEC=0
8928         while ((SEC<$SLEEP)); do
8929                 echo -n "..."
8930                 sleep 5
8931                 SEC=$((SEC+5))
8932                 LRU_SIZE=$($LCTL get_param -n $NSDIR/lru_size)
8933                 echo -n "$LRU_SIZE"
8934         done
8935         echo ""
8936         $LCTL set_param -n $NSDIR.pool.lock_volume_factor $OLD_LVF
8937         local LRU_SIZE_A=$($LCTL get_param -n $NSDIR.lru_size)
8938
8939         [[ $LRU_SIZE_B -gt $LRU_SIZE_A ]] || {
8940                 error "No locks dropped in ${SLEEP}s. LRU size: $LRU_SIZE_A"
8941                 unlinkmany $DIR/$tdir/f $NR
8942                 return
8943         }
8944
8945         log "Dropped "$((LRU_SIZE_B-LRU_SIZE_A))" locks in ${SLEEP}s"
8946         log "unlink $NR files at $DIR/$tdir"
8947         unlinkmany $DIR/$tdir/f $NR
8948 }
8949 run_test 124a "lru resize ======================================="
8950
8951 get_max_pool_limit()
8952 {
8953         local limit=$($LCTL get_param \
8954                       -n ldlm.namespaces.*-MDT0000-mdc-*.pool.limit)
8955         local max=0
8956         for l in $limit; do
8957                 if [[ $l -gt $max ]]; then
8958                         max=$l
8959                 fi
8960         done
8961         echo $max
8962 }
8963
8964 test_124b() {
8965         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8966         [ -z "$($LCTL get_param -n mdc.*.connect_flags | grep lru_resize)" ] &&
8967                 skip "no lru resize on server" && return 0
8968
8969         LIMIT=$(get_max_pool_limit)
8970
8971         NR=$(($(default_lru_size)*20))
8972         if [[ $NR -gt $LIMIT ]]; then
8973                 log "Limit lock number by $LIMIT locks"
8974                 NR=$LIMIT
8975         fi
8976
8977         IFree=$(mdsrate_inodes_available)
8978         if [ $IFree -lt $NR ]; then
8979                 log "Limit lock number by $IFree inodes"
8980                 NR=$IFree
8981         fi
8982
8983         lru_resize_disable mdc
8984         test_mkdir -p $DIR/$tdir/disable_lru_resize ||
8985                 error "failed to create $DIR/$tdir/disable_lru_resize"
8986
8987         createmany -o $DIR/$tdir/disable_lru_resize/f $NR
8988         log "doing ls -la $DIR/$tdir/disable_lru_resize 3 times"
8989         cancel_lru_locks mdc
8990         stime=`date +%s`
8991         PID=""
8992         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
8993         PID="$PID $!"
8994         sleep 2
8995         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
8996         PID="$PID $!"
8997         sleep 2
8998         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
8999         PID="$PID $!"
9000         wait $PID
9001         etime=`date +%s`
9002         nolruresize_delta=$((etime-stime))
9003         log "ls -la time: $nolruresize_delta seconds"
9004         log "lru_size = $(lctl get_param -n ldlm.namespaces.*mdc*.lru_size)"
9005         unlinkmany $DIR/$tdir/disable_lru_resize/f $NR
9006
9007         lru_resize_enable mdc
9008         test_mkdir -p $DIR/$tdir/enable_lru_resize ||
9009                 error "failed to create $DIR/$tdir/enable_lru_resize"
9010
9011         createmany -o $DIR/$tdir/enable_lru_resize/f $NR
9012         log "doing ls -la $DIR/$tdir/enable_lru_resize 3 times"
9013         cancel_lru_locks mdc
9014         stime=`date +%s`
9015         PID=""
9016         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
9017         PID="$PID $!"
9018         sleep 2
9019         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
9020         PID="$PID $!"
9021         sleep 2
9022         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
9023         PID="$PID $!"
9024         wait $PID
9025         etime=`date +%s`
9026         lruresize_delta=$((etime-stime))
9027         log "ls -la time: $lruresize_delta seconds"
9028         log "lru_size = $(lctl get_param -n ldlm.namespaces.*mdc*.lru_size)"
9029
9030         if [ $lruresize_delta -gt $nolruresize_delta ]; then
9031                 log "ls -la is $(((lruresize_delta - $nolruresize_delta) * 100 / $nolruresize_delta))% slower with lru resize enabled"
9032         elif [ $nolruresize_delta -gt $lruresize_delta ]; then
9033                 log "ls -la is $(((nolruresize_delta - $lruresize_delta) * 100 / $nolruresize_delta))% faster with lru resize enabled"
9034         else
9035                 log "lru resize performs the same with no lru resize"
9036         fi
9037         unlinkmany $DIR/$tdir/enable_lru_resize/f $NR
9038 }
9039 run_test 124b "lru resize (performance test) ======================="
9040
9041 test_124c() {
9042         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9043         [ -z "$($LCTL get_param -n mdc.*.connect_flags | grep lru_resize)" ] &&
9044                 skip "no lru resize on server" && return 0
9045
9046         # cache ununsed locks on client
9047         local nr=100
9048         cancel_lru_locks mdc
9049         test_mkdir -p $DIR/$tdir || error "failed to create $DIR/$tdir"
9050         createmany -o $DIR/$tdir/f $nr ||
9051                 error "failed to create $nr files in $DIR/$tdir"
9052         ls -l $DIR/$tdir > /dev/null
9053
9054         local nsdir="ldlm.namespaces.*-MDT0000-mdc-*"
9055         local unused=$($LCTL get_param -n $nsdir.lock_unused_count)
9056         local max_age=$($LCTL get_param -n $nsdir.lru_max_age)
9057         local recalc_p=$($LCTL get_param -n $nsdir.pool.recalc_period)
9058         echo "unused=$unused, max_age=$max_age, recalc_p=$recalc_p"
9059
9060         # set lru_max_age to 1 sec
9061         $LCTL set_param $nsdir.lru_max_age=1000 # jiffies
9062         echo "sleep $((recalc_p * 2)) seconds..."
9063         sleep $((recalc_p * 2))
9064
9065         local remaining=$($LCTL get_param -n $nsdir.lock_unused_count)
9066         # restore lru_max_age
9067         $LCTL set_param -n $nsdir.lru_max_age $max_age
9068         [ $remaining -eq 0 ] || error "$remaining locks are not canceled"
9069         unlinkmany $DIR/$tdir/f $nr
9070 }
9071 run_test 124c "LRUR cancel very aged locks"
9072
9073 test_125() { # 13358
9074         [ -z "$(lctl get_param -n llite.*.client_type | grep local)" ] && skip "must run as local client" && return
9075         [ -z "$(lctl get_param -n mdc.*-mdc-*.connect_flags | grep acl)" ] && skip "must have acl enabled" && return
9076         [ -z "$(which setfacl)" ] && skip "must have setfacl tool" && return
9077         test_mkdir -p $DIR/d125 || error "mkdir failed"
9078         $SETSTRIPE -S 65536 -c -1 $DIR/d125 || error "setstripe failed"
9079         setfacl -R -m u:bin:rwx $DIR/d125 || error "setfacl $DIR/d125 failed"
9080         ls -ld $DIR/d125 || error "cannot access $DIR/d125"
9081 }
9082 run_test 125 "don't return EPROTO when a dir has a non-default striping and ACLs"
9083
9084 test_126() { # bug 12829/13455
9085         [ -z "$(lctl get_param -n llite.*.client_type | grep local)" ] && skip "must run as local client" && return
9086         [ "$UID" != 0 ] && skip_env "skipping $TESTNAME (must run as root)" && return
9087         $GSS && skip "must run as gss disabled" && return
9088
9089         $RUNAS -u 0 -g 1 touch $DIR/$tfile || error "touch failed"
9090         gid=`ls -n $DIR/$tfile | awk '{print $4}'`
9091         rm -f $DIR/$tfile
9092         [ $gid -eq "1" ] || error "gid is set to" $gid "instead of 1"
9093 }
9094 run_test 126 "check that the fsgid provided by the client is taken into account"
9095
9096 test_127a() { # bug 15521
9097         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9098         $SETSTRIPE -i 0 -c 1 $DIR/$tfile || error "setstripe failed"
9099         $LCTL set_param osc.*.stats=0
9100         FSIZE=$((2048 * 1024))
9101         dd if=/dev/zero of=$DIR/$tfile bs=$FSIZE count=1
9102         cancel_lru_locks osc
9103         dd if=$DIR/$tfile of=/dev/null bs=$FSIZE
9104
9105         $LCTL get_param osc.*0000-osc-*.stats | grep samples > $DIR/${tfile}.tmp
9106         while read NAME COUNT SAMP UNIT MIN MAX SUM SUMSQ; do
9107                 echo "got $COUNT $NAME"
9108                 [ ! $MIN ] && error "Missing min value for $NAME proc entry"
9109                 eval $NAME=$COUNT || error "Wrong proc format"
9110
9111                 case $NAME in
9112                         read_bytes|write_bytes)
9113                         [ $MIN -lt 4096 ] && error "min is too small: $MIN"
9114                         [ $MIN -gt $FSIZE ] && error "min is too big: $MIN"
9115                         [ $MAX -lt 4096 ] && error "max is too small: $MAX"
9116                         [ $MAX -gt $FSIZE ] && error "max is too big: $MAX"
9117                         [ $SUM -ne $FSIZE ] && error "sum is wrong: $SUM"
9118                         [ $SUMSQ -lt $(((FSIZE /4096) * (4096 * 4096))) ] &&
9119                                 error "sumsquare is too small: $SUMSQ"
9120                         [ $SUMSQ -gt $((FSIZE * FSIZE)) ] &&
9121                                 error "sumsquare is too big: $SUMSQ"
9122                         ;;
9123                         *) ;;
9124                 esac
9125         done < $DIR/${tfile}.tmp
9126
9127         #check that we actually got some stats
9128         [ "$read_bytes" ] || error "Missing read_bytes stats"
9129         [ "$write_bytes" ] || error "Missing write_bytes stats"
9130         [ "$read_bytes" != 0 ] || error "no read done"
9131         [ "$write_bytes" != 0 ] || error "no write done"
9132 }
9133 run_test 127a "verify the client stats are sane"
9134
9135 test_127b() { # bug LU-333
9136         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9137         $LCTL set_param llite.*.stats=0
9138         FSIZE=65536 # sized fixed to match PAGE_SIZE for most clients
9139         # perform 2 reads and writes so MAX is different from SUM.
9140         dd if=/dev/zero of=$DIR/$tfile bs=$FSIZE count=1
9141         dd if=/dev/zero of=$DIR/$tfile bs=$FSIZE count=1
9142         cancel_lru_locks osc
9143         dd if=$DIR/$tfile of=/dev/null bs=$FSIZE count=1
9144         dd if=$DIR/$tfile of=/dev/null bs=$FSIZE count=1
9145
9146         $LCTL get_param llite.*.stats | grep samples > $TMP/${tfile}.tmp
9147         while read NAME COUNT SAMP UNIT MIN MAX SUM SUMSQ; do
9148                 echo "got $COUNT $NAME"
9149                 eval $NAME=$COUNT || error "Wrong proc format"
9150
9151         case $NAME in
9152                 read_bytes)
9153                         [ $COUNT -ne 2 ] && error "count is not 2: $COUNT"
9154                         [ $MIN -ne $FSIZE ] && error "min is not $FSIZE: $MIN"
9155                         [ $MAX -ne $FSIZE ] && error "max is incorrect: $MAX"
9156                         [ $SUM -ne $((FSIZE * 2)) ] && error "sum is wrong: $SUM"
9157                         ;;
9158                 write_bytes)
9159                         [ $COUNT -ne 2 ] && error "count is not 2: $COUNT"
9160                         [ $MIN -ne $FSIZE ] && error "min is not $FSIZE: $MIN"
9161                         [ $MAX -ne $FSIZE ] && error "max is incorrect: $MAX"
9162                         [ $SUM -ne $((FSIZE * 2)) ] && error "sum is wrong: $SUM"
9163                         ;;
9164                         *) ;;
9165                 esac
9166         done < $TMP/${tfile}.tmp
9167
9168         #check that we actually got some stats
9169         [ "$read_bytes" ] || error "Missing read_bytes stats"
9170         [ "$write_bytes" ] || error "Missing write_bytes stats"
9171         [ "$read_bytes" != 0 ] || error "no read done"
9172         [ "$write_bytes" != 0 ] || error "no write done"
9173
9174         rm -f $TMP/${tfile}.tmp
9175 }
9176 run_test 127b "verify the llite client stats are sane"
9177
9178 test_128() { # bug 15212
9179         touch $DIR/$tfile
9180         $LFS 2>&1 <<-EOF | tee $TMP/$tfile.log
9181                 find $DIR/$tfile
9182                 find $DIR/$tfile
9183         EOF
9184
9185         result=$(grep error $TMP/$tfile.log)
9186         rm -f $DIR/$tfile $TMP/$tfile.log
9187         [ -z "$result" ] ||
9188                 error "consecutive find's under interactive lfs failed"
9189 }
9190 run_test 128 "interactive lfs for 2 consecutive find's"
9191
9192 set_dir_limits () {
9193         local mntdev
9194         local canondev
9195         local node
9196
9197         local ldproc=/proc/fs/ldiskfs
9198         local facets=$(get_facets MDS)
9199
9200         for facet in ${facets//,/ }; do
9201                 canondev=$(ldiskfs_canon \
9202                            *.$(convert_facet2label $facet).mntdev $facet)
9203                 do_facet $facet "test -e $ldproc/$canondev/max_dir_size" ||
9204                         ldproc=/sys/fs/ldiskfs
9205                 do_facet $facet "echo $1 >$ldproc/$canondev/max_dir_size"
9206                 do_facet $facet "echo $2 >$ldproc/$canondev/warning_dir_size"
9207         done
9208 }
9209
9210 check_mds_dmesg() {
9211         local facets=$(get_facets MDS)
9212         for facet in ${facets//,/ }; do
9213                 do_facet $facet "dmesg | tail -3 | grep -q $1" && return 0
9214         done
9215         return 1
9216 }
9217
9218 test_129() {
9219         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.5.56) ]] ||
9220                 { skip "Need MDS version with at least 2.5.56"; return 0; }
9221
9222         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9223         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
9224                 skip "Only applicable to ldiskfs-based MDTs"
9225                 return
9226         fi
9227         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9228         local ENOSPC=28
9229         local EFBIG=27
9230         local has_warning=false
9231
9232         rm -rf $DIR/$tdir
9233         mkdir -p $DIR/$tdir
9234
9235         # block size of mds1
9236         local maxsize=$(($($LCTL get_param -n mdc.*MDT0000*.blocksize) * 5))
9237         set_dir_limits $maxsize $maxsize
9238         local dirsize=$(stat -c%s "$DIR/$tdir")
9239         local nfiles=0
9240         while [[ $dirsize -le $maxsize ]]; do
9241                 $MULTIOP $DIR/$tdir/file_base_$nfiles Oc
9242                 rc=$?
9243                 if ! $has_warning; then
9244                         check_mds_dmesg '"is approaching"' && has_warning=true
9245                 fi
9246                 # check two errors:
9247                 # ENOSPC for new ext4 max_dir_size (kernel commit df981d03ee)
9248                 # EFBIG for previous versions included in ldiskfs series
9249                 if [ $rc -eq $EFBIG -o $rc -eq $ENOSPC ]; then
9250                         set_dir_limits 0 0
9251                         echo "return code $rc received as expected"
9252
9253                         createmany -o $DIR/$tdir/file_extra_$nfiles. 5 ||
9254                                 error_exit "create failed w/o dir size limit"
9255
9256                         check_mds_dmesg '"has reached"' ||
9257                                 error_exit "reached message should be output"
9258
9259                         [ $has_warning -eq 0 ] &&
9260                                 error_exit "warning message should be output"
9261
9262                         dirsize=$(stat -c%s "$DIR/$tdir")
9263
9264                         [[ $dirsize -ge $maxsize ]] && return 0
9265                         error_exit "current dir size $dirsize, " \
9266                                    "previous limit $maxsize"
9267                 elif [ $rc -ne 0 ]; then
9268                         set_dir_limits 0 0
9269                         error_exit "return $rc received instead of expected " \
9270                                    "$EFBIG or $ENOSPC, files in dir $dirsize"
9271                 fi
9272                 nfiles=$((nfiles + 1))
9273                 dirsize=$(stat -c%s "$DIR/$tdir")
9274         done
9275
9276         set_dir_limits 0 0
9277         error "exceeded dir size limit $maxsize($MDSCOUNT) : $dirsize bytes"
9278 }
9279 run_test 129 "test directory size limit ========================"
9280
9281 OLDIFS="$IFS"
9282 cleanup_130() {
9283         trap 0
9284         IFS="$OLDIFS"
9285 }
9286
9287 test_130a() {
9288         local filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
9289         [ -n "$filefrag_op" ] && skip_env "filefrag does not support FIEMAP" &&
9290                 return
9291
9292         trap cleanup_130 EXIT RETURN
9293
9294         local fm_file=$DIR/$tfile
9295         $SETSTRIPE -S 65536 -c 1 $fm_file || error "setstripe on $fm_file"
9296         dd if=/dev/zero of=$fm_file bs=65536 count=1 ||
9297                 error "dd failed for $fm_file"
9298
9299         # LU-1795: test filefrag/FIEMAP once, even if unsupported
9300         filefrag -ves $fm_file
9301         RC=$?
9302         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
9303                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
9304         [ $RC != 0 ] && error "filefrag $fm_file failed"
9305
9306         filefrag_op=$(filefrag -ve $fm_file |
9307                         sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
9308         lun=$($GETSTRIPE -i $fm_file)
9309
9310         start_blk=`echo $filefrag_op | cut -d: -f2 | cut -d. -f1`
9311         IFS=$'\n'
9312         tot_len=0
9313         for line in $filefrag_op
9314         do
9315                 frag_lun=`echo $line | cut -d: -f5`
9316                 ext_len=`echo $line | cut -d: -f4`
9317                 if (( $frag_lun != $lun )); then
9318                         cleanup_130
9319                         error "FIEMAP on 1-stripe file($fm_file) failed"
9320                         return
9321                 fi
9322                 (( tot_len += ext_len ))
9323         done
9324
9325         if (( lun != frag_lun || start_blk != 0 || tot_len != 64 )); then
9326                 cleanup_130
9327                 error "FIEMAP on 1-stripe file($fm_file) failed;"
9328                 return
9329         fi
9330
9331         cleanup_130
9332
9333         echo "FIEMAP on single striped file succeeded"
9334 }
9335 run_test 130a "FIEMAP (1-stripe file)"
9336
9337 test_130b() {
9338         [ "$OSTCOUNT" -lt "2" ] &&
9339                 skip_env "skipping FIEMAP on $OSTCOUNT-stripe file" && return
9340
9341         local filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
9342         [ -n "$filefrag_op" ] && skip_env "filefrag does not support FIEMAP" &&
9343                 return
9344
9345         trap cleanup_130 EXIT RETURN
9346
9347         local fm_file=$DIR/$tfile
9348         $SETSTRIPE -S 65536 -c $OSTCOUNT $fm_file ||
9349                         error "setstripe on $fm_file"
9350         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
9351                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
9352
9353         dd if=/dev/zero of=$fm_file bs=1M count=$OSTCOUNT ||
9354                 error "dd failed on $fm_file"
9355
9356         filefrag -ves $fm_file || error "filefrag $fm_file failed"
9357         filefrag_op=$(filefrag -ve $fm_file |
9358                         sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
9359
9360         last_lun=$(echo $filefrag_op | cut -d: -f5 |
9361                 sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
9362
9363         IFS=$'\n'
9364         tot_len=0
9365         num_luns=1
9366         for line in $filefrag_op
9367         do
9368                 frag_lun=$(echo $line | cut -d: -f5 |
9369                         sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
9370                 ext_len=$(echo $line | cut -d: -f4)
9371                 if (( $frag_lun != $last_lun )); then
9372                         if (( tot_len != 1024 )); then
9373                                 cleanup_130
9374                                 error "FIEMAP on $fm_file failed; returned " \
9375                                 "len $tot_len for OST $last_lun instead of 1024"
9376                                 return
9377                         else
9378                                 (( num_luns += 1 ))
9379                                 tot_len=0
9380                         fi
9381                 fi
9382                 (( tot_len += ext_len ))
9383                 last_lun=$frag_lun
9384         done
9385         if (( num_luns != $OSTCOUNT || tot_len != 1024 )); then
9386                 cleanup_130
9387                 error "FIEMAP on $fm_file failed; returned wrong number of " \
9388                         "luns or wrong len for OST $last_lun"
9389                 return
9390         fi
9391
9392         cleanup_130
9393
9394         echo "FIEMAP on $OSTCOUNT-stripe file succeeded"
9395 }
9396 run_test 130b "FIEMAP ($OSTCOUNT-stripe file)"
9397
9398 test_130c() {
9399         [ "$OSTCOUNT" -lt "2" ] &&
9400                 skip_env "skipping FIEMAP on 2-stripe file" && return
9401
9402         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
9403         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP" &&
9404                 return
9405
9406         trap cleanup_130 EXIT RETURN
9407
9408         local fm_file=$DIR/$tfile
9409         $SETSTRIPE -S 65536 -c 2 $fm_file || error "setstripe on $fm_file"
9410         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
9411                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
9412
9413         dd if=/dev/zero of=$fm_file seek=1 bs=1M count=1 ||
9414                         error "dd failed on $fm_file"
9415
9416         filefrag -ves $fm_file || error "filefrag $fm_file failed"
9417         filefrag_op=$(filefrag -ve $fm_file |
9418                 sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
9419
9420         last_lun=$(echo $filefrag_op | cut -d: -f5 |
9421                 sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
9422
9423         IFS=$'\n'
9424         tot_len=0
9425         num_luns=1
9426         for line in $filefrag_op
9427         do
9428                 frag_lun=$(echo $line | cut -d: -f5 |
9429                         sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
9430                 ext_len=$(echo $line | cut -d: -f4)
9431                 if (( $frag_lun != $last_lun )); then
9432                         logical=`echo $line | cut -d: -f2 | cut -d. -f1`
9433                         if (( logical != 512 )); then
9434                                 cleanup_130
9435                                 error "FIEMAP on $fm_file failed; returned " \
9436                                 "logical start for lun $logical instead of 512"
9437                                 return
9438                         fi
9439                         if (( tot_len != 512 )); then
9440                                 cleanup_130
9441                                 error "FIEMAP on $fm_file failed; returned " \
9442                                 "len $tot_len for OST $last_lun instead of 1024"
9443                                 return
9444                         else
9445                                 (( num_luns += 1 ))
9446                                 tot_len=0
9447                         fi
9448                 fi
9449                 (( tot_len += ext_len ))
9450                 last_lun=$frag_lun
9451         done
9452         if (( num_luns != 2 || tot_len != 512 )); then
9453                 cleanup_130
9454                 error "FIEMAP on $fm_file failed; returned wrong number of " \
9455                         "luns or wrong len for OST $last_lun"
9456                 return
9457         fi
9458
9459         cleanup_130
9460
9461         echo "FIEMAP on 2-stripe file with hole succeeded"
9462 }
9463 run_test 130c "FIEMAP (2-stripe file with hole)"
9464
9465 test_130d() {
9466         [ "$OSTCOUNT" -lt "3" ] &&
9467                 skip_env "skipping FIEMAP on N-stripe file test" && return
9468
9469         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
9470         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP" &&
9471                 return
9472
9473         trap cleanup_130 EXIT RETURN
9474
9475         local fm_file=$DIR/$tfile
9476         $SETSTRIPE -S 65536 -c $OSTCOUNT $fm_file ||
9477                         error "setstripe on $fm_file"
9478         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
9479                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
9480
9481         local actual_stripecnt=$($GETSTRIPE -c $fm_file)
9482         dd if=/dev/zero of=$fm_file bs=1M count=$actual_stripecnt ||
9483                 error "dd failed on $fm_file"
9484
9485         filefrag -ves $fm_file || error "filefrag $fm_file failed"
9486         filefrag_op=$(filefrag -ve $fm_file |
9487                         sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
9488
9489         last_lun=$(echo $filefrag_op | cut -d: -f5 |
9490                 sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
9491
9492         IFS=$'\n'
9493         tot_len=0
9494         num_luns=1
9495         for line in $filefrag_op
9496         do
9497                 frag_lun=$(echo $line | cut -d: -f5 |
9498                         sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
9499                 ext_len=$(echo $line | cut -d: -f4)
9500                 if (( $frag_lun != $last_lun )); then
9501                         if (( tot_len != 1024 )); then
9502                                 cleanup_130
9503                                 error "FIEMAP on $fm_file failed; returned " \
9504                                 "len $tot_len for OST $last_lun instead of 1024"
9505                                 return
9506                         else
9507                                 (( num_luns += 1 ))
9508                                 tot_len=0
9509                         fi
9510                 fi
9511                 (( tot_len += ext_len ))
9512                 last_lun=$frag_lun
9513         done
9514         if (( num_luns != actual_stripecnt || tot_len != 1024 )); then
9515                 cleanup_130
9516                 error "FIEMAP on $fm_file failed; returned wrong number of " \
9517                         "luns or wrong len for OST $last_lun"
9518                 return
9519         fi
9520
9521         cleanup_130
9522
9523         echo "FIEMAP on N-stripe file succeeded"
9524 }
9525 run_test 130d "FIEMAP (N-stripe file)"
9526
9527 test_130e() {
9528         [ "$OSTCOUNT" -lt "2" ] &&
9529                 skip_env "skipping continuation FIEMAP test" && return
9530
9531         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
9532         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP" && return
9533
9534         trap cleanup_130 EXIT RETURN
9535
9536         local fm_file=$DIR/$tfile
9537         $SETSTRIPE -S 131072 -c 2 $fm_file || error "setstripe on $fm_file"
9538         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
9539                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
9540
9541         NUM_BLKS=512
9542         EXPECTED_LEN=$(( (NUM_BLKS / 2) * 64 ))
9543         for ((i = 0; i < $NUM_BLKS; i++))
9544         do
9545                 dd if=/dev/zero of=$fm_file count=1 bs=64k seek=$((2*$i)) conv=notrunc > /dev/null 2>&1
9546         done
9547
9548         filefrag -ves $fm_file || error "filefrag $fm_file failed"
9549         filefrag_op=$(filefrag -ve $fm_file |
9550                         sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
9551
9552         last_lun=$(echo $filefrag_op | cut -d: -f5 |
9553                 sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
9554
9555         IFS=$'\n'
9556         tot_len=0
9557         num_luns=1
9558         for line in $filefrag_op
9559         do
9560                 frag_lun=$(echo $line | cut -d: -f5 |
9561                         sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
9562                 ext_len=$(echo $line | cut -d: -f4)
9563                 if (( $frag_lun != $last_lun )); then
9564                         if (( tot_len != $EXPECTED_LEN )); then
9565                                 cleanup_130
9566                                 error "FIEMAP on $fm_file failed; returned " \
9567                                 "len $tot_len for OST $last_lun instead " \
9568                                 "of $EXPECTED_LEN"
9569                                 return
9570                         else
9571                                 (( num_luns += 1 ))
9572                                 tot_len=0
9573                         fi
9574                 fi
9575                 (( tot_len += ext_len ))
9576                 last_lun=$frag_lun
9577         done
9578         if (( num_luns != 2 || tot_len != $EXPECTED_LEN )); then
9579                 cleanup_130
9580                 error "FIEMAP on $fm_file failed; returned wrong number " \
9581                         "of luns or wrong len for OST $last_lun"
9582                 return
9583         fi
9584
9585         cleanup_130
9586
9587         echo "FIEMAP with continuation calls succeeded"
9588 }
9589 run_test 130e "FIEMAP (test continuation FIEMAP calls)"
9590
9591 # Test for writev/readv
9592 test_131a() {
9593         rwv -f $DIR/$tfile -w -n 3 524288 1048576 1572864 ||
9594                 error "writev test failed"
9595         rwv -f $DIR/$tfile -r -v -n 2 1572864 1048576 ||
9596                 error "readv failed"
9597         rm -f $DIR/$tfile
9598 }
9599 run_test 131a "test iov's crossing stripe boundary for writev/readv"
9600
9601 test_131b() {
9602         local fsize=$((524288 + 1048576 + 1572864))
9603         rwv -f $DIR/$tfile -w -a -n 3 524288 1048576 1572864 &&
9604                 $CHECKSTAT -t file $DIR/$tfile -s $fsize ||
9605                         error "append writev test failed"
9606
9607         ((fsize += 1572864 + 1048576))
9608         rwv -f $DIR/$tfile -w -a -n 2 1572864 1048576 &&
9609                 $CHECKSTAT -t file $DIR/$tfile -s $fsize ||
9610                         error "append writev test failed"
9611         rm -f $DIR/$tfile
9612 }
9613 run_test 131b "test append writev"
9614
9615 test_131c() {
9616         rwv -f $DIR/$tfile -w -d -n 1 1048576 || return 0
9617         error "NOT PASS"
9618 }
9619 run_test 131c "test read/write on file w/o objects"
9620
9621 test_131d() {
9622         rwv -f $DIR/$tfile -w -n 1 1572864
9623         NOB=`rwv -f $DIR/$tfile -r -n 3 524288 524288 1048576 | awk '/error/ {print $6}'`
9624         if [ "$NOB" != 1572864 ]; then
9625                 error "Short read filed: read $NOB bytes instead of 1572864"
9626         fi
9627         rm -f $DIR/$tfile
9628 }
9629 run_test 131d "test short read"
9630
9631 test_131e() {
9632         rwv -f $DIR/$tfile -w -s 1048576 -n 1 1048576
9633         rwv -f $DIR/$tfile -r -z -s 0 -n 1 524288 || \
9634         error "read hitting hole failed"
9635         rm -f $DIR/$tfile
9636 }
9637 run_test 131e "test read hitting hole"
9638
9639 check_stats() {
9640         local facet=$1
9641         local op=$2
9642         local want=${3:-0}
9643         local res
9644
9645         case $facet in
9646         mds*) res=$(do_facet $facet \
9647                    $LCTL get_param mdt.$FSNAME-MDT0000.md_stats | grep "$op")
9648                  ;;
9649         ost*) res=$(do_facet $facet \
9650                    $LCTL get_param obdfilter.$FSNAME-OST0000.stats | grep "$op")
9651                  ;;
9652         *) error "Wrong facet '$facet'" ;;
9653         esac
9654         echo $res
9655         [ "$res" ] || error "The counter for $op on $facet was not incremented"
9656         # if the argument $3 is zero, it means any stat increment is ok.
9657         if [[ $want -gt 0 ]]; then
9658                 local count=$(echo $res | awk '{ print $2 }')
9659                 [[ $count -ne $want ]] &&
9660                         error "The $op counter on $facet is $count, not $want"
9661         fi
9662 }
9663
9664 test_133a() {
9665         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9666         remote_ost_nodsh && skip "remote OST with nodsh" && return
9667         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9668
9669         do_facet $SINGLEMDS $LCTL list_param mdt.*.rename_stats ||
9670                 { skip "MDS doesn't support rename stats"; return; }
9671         local testdir=$DIR/${tdir}/stats_testdir
9672         mkdir -p $DIR/${tdir}
9673
9674         # clear stats.
9675         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
9676         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
9677
9678         # verify mdt stats first.
9679         mkdir ${testdir} || error "mkdir failed"
9680         check_stats $SINGLEMDS "mkdir" 1
9681         touch ${testdir}/${tfile} || error "touch failed"
9682         check_stats $SINGLEMDS "open" 1
9683         check_stats $SINGLEMDS "close" 1
9684         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.8.54) ] && {
9685                 mknod ${testdir}/${tfile}-pipe p || error "mknod failed"
9686                 check_stats $SINGLEMDS "mknod" 2
9687         }
9688         rm -f ${testdir}/${tfile}-pipe || error "pipe remove failed"
9689         check_stats $SINGLEMDS "unlink" 1
9690         rm -f ${testdir}/${tfile} || error "file remove failed"
9691         check_stats $SINGLEMDS "unlink" 2
9692
9693         # remove working dir and check mdt stats again.
9694         rmdir ${testdir} || error "rmdir failed"
9695         check_stats $SINGLEMDS "rmdir" 1
9696
9697         local testdir1=$DIR/${tdir}/stats_testdir1
9698         mkdir -p ${testdir}
9699         mkdir -p ${testdir1}
9700         touch ${testdir1}/test1
9701         mv ${testdir1}/test1 ${testdir} || error "file crossdir rename"
9702         check_stats $SINGLEMDS "crossdir_rename" 1
9703
9704         mv ${testdir}/test1 ${testdir}/test0 || error "file samedir rename"
9705         check_stats $SINGLEMDS "samedir_rename" 1
9706
9707         rm -rf $DIR/${tdir}
9708 }
9709 run_test 133a "Verifying MDT stats ========================================"
9710
9711 test_133b() {
9712         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9713         remote_ost_nodsh && skip "remote OST with nodsh" && return
9714         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9715         local testdir=$DIR/${tdir}/stats_testdir
9716         mkdir -p ${testdir} || error "mkdir failed"
9717         touch ${testdir}/${tfile} || error "touch failed"
9718         cancel_lru_locks mdc
9719
9720         # clear stats.
9721         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
9722         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
9723
9724         # extra mdt stats verification.
9725         chmod 444 ${testdir}/${tfile} || error "chmod failed"
9726         check_stats $SINGLEMDS "setattr" 1
9727         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
9728         if [ $(lustre_version_code $SINGLEMDS) -ne $(version_code 2.2.0) ]
9729         then            # LU-1740
9730                 ls -l ${testdir}/${tfile} > /dev/null|| error "ls failed"
9731                 check_stats $SINGLEMDS "getattr" 1
9732         fi
9733         $LFS df || error "lfs failed"
9734         check_stats $SINGLEMDS "statfs" 1
9735
9736         rm -rf $DIR/${tdir}
9737 }
9738 run_test 133b "Verifying extra MDT stats =================================="
9739
9740 test_133c() {
9741         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9742         remote_ost_nodsh && skip "remote OST with nodsh" && return
9743         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9744         local testdir=$DIR/${tdir}/stats_testdir
9745         test_mkdir -p ${testdir} || error "mkdir failed"
9746
9747         # verify obdfilter stats.
9748         $SETSTRIPE -c 1 -i 0 ${testdir}/${tfile}
9749         sync
9750         cancel_lru_locks osc
9751         wait_delete_completed
9752
9753         # clear stats.
9754         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
9755         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
9756
9757         dd if=/dev/zero of=${testdir}/${tfile} conv=notrunc bs=512k count=1 || error "dd failed"
9758         sync
9759         cancel_lru_locks osc
9760         check_stats ost1 "write" 1
9761
9762         dd if=${testdir}/${tfile} of=/dev/null bs=1k count=1 || error "dd failed"
9763         check_stats ost1 "read" 1
9764
9765         > ${testdir}/${tfile} || error "truncate failed"
9766         check_stats ost1 "punch" 1
9767
9768         rm -f ${testdir}/${tfile} || error "file remove failed"
9769         wait_delete_completed
9770         check_stats ost1 "destroy" 1
9771
9772         rm -rf $DIR/${tdir}
9773 }
9774 run_test 133c "Verifying OST stats ========================================"
9775
9776 order_2() {
9777         local value=$1
9778         local orig=$value
9779         local order=1
9780
9781         while [ $value -ge 2 ]; do
9782                 order=$((order*2))
9783                 value=$((value/2))
9784         done
9785
9786         if [ $orig -gt $order ]; then
9787                 order=$((order*2))
9788         fi
9789         echo $order
9790 }
9791
9792 size_in_KMGT() {
9793     local value=$1
9794     local size=('K' 'M' 'G' 'T');
9795     local i=0
9796     local size_string=$value
9797
9798     while [ $value -ge 1024 ]; do
9799         if [ $i -gt 3 ]; then
9800             #T is the biggest unit we get here, if that is bigger,
9801             #just return XXXT
9802             size_string=${value}T
9803             break
9804         fi
9805         value=$((value >> 10))
9806         if [ $value -lt 1024 ]; then
9807             size_string=${value}${size[$i]}
9808             break
9809         fi
9810         i=$((i + 1))
9811     done
9812
9813     echo $size_string
9814 }
9815
9816 get_rename_size() {
9817     local size=$1
9818     local context=${2:-.}
9819     local sample=$(do_facet $SINGLEMDS $LCTL get_param mdt.*.rename_stats |
9820                 grep -A1 $context |
9821                 awk '/ '${size}'/ {print $4}' | sed -e "s/,//g")
9822     echo $sample
9823 }
9824
9825 test_133d() {
9826         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9827         remote_ost_nodsh && skip "remote OST with nodsh" && return
9828         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9829         do_facet $SINGLEMDS $LCTL list_param mdt.*.rename_stats ||
9830         { skip "MDS doesn't support rename stats"; return; }
9831
9832         local testdir1=$DIR/${tdir}/stats_testdir1
9833         local testdir2=$DIR/${tdir}/stats_testdir2
9834
9835         do_facet $SINGLEMDS $LCTL set_param mdt.*.rename_stats=clear
9836
9837         mkdir -p ${testdir1} || error "mkdir failed"
9838         mkdir -p ${testdir2} || error "mkdir failed"
9839
9840         createmany -o $testdir1/test 512 || error "createmany failed"
9841
9842         # check samedir rename size
9843         mv ${testdir1}/test0 ${testdir1}/test_0
9844
9845         local testdir1_size=$(ls -l $DIR/${tdir} |
9846                 awk '/stats_testdir1/ {print $5}')
9847         local testdir2_size=$(ls -l $DIR/${tdir} |
9848                 awk '/stats_testdir2/ {print $5}')
9849
9850         testdir1_size=$(order_2 $testdir1_size)
9851         testdir2_size=$(order_2 $testdir2_size)
9852
9853         testdir1_size=$(size_in_KMGT $testdir1_size)
9854         testdir2_size=$(size_in_KMGT $testdir2_size)
9855
9856         echo "source rename dir size: ${testdir1_size}"
9857         echo "target rename dir size: ${testdir2_size}"
9858
9859         local cmd="do_facet $SINGLEMDS $LCTL get_param mdt.*.rename_stats"
9860         eval $cmd || error "$cmd failed"
9861         local samedir=$($cmd | grep 'same_dir')
9862         local same_sample=$(get_rename_size $testdir1_size)
9863         [ -z "$samedir" ] && error "samedir_rename_size count error"
9864         [[ $same_sample -eq 1 ]] ||
9865                 error "samedir_rename_size error $same_sample"
9866         echo "Check same dir rename stats success"
9867
9868         do_facet $SINGLEMDS $LCTL set_param mdt.*.rename_stats=clear
9869
9870         # check crossdir rename size
9871         mv ${testdir1}/test_0 ${testdir2}/test_0
9872
9873         testdir1_size=$(ls -l $DIR/${tdir} |
9874                 awk '/stats_testdir1/ {print $5}')
9875         testdir2_size=$(ls -l $DIR/${tdir} |
9876                 awk '/stats_testdir2/ {print $5}')
9877
9878         testdir1_size=$(order_2 $testdir1_size)
9879         testdir2_size=$(order_2 $testdir2_size)
9880
9881         testdir1_size=$(size_in_KMGT $testdir1_size)
9882         testdir2_size=$(size_in_KMGT $testdir2_size)
9883
9884         echo "source rename dir size: ${testdir1_size}"
9885         echo "target rename dir size: ${testdir2_size}"
9886
9887         eval $cmd || error "$cmd failed"
9888         local crossdir=$($cmd | grep 'crossdir')
9889         local src_sample=$(get_rename_size $testdir1_size crossdir_src)
9890         local tgt_sample=$(get_rename_size $testdir2_size crossdir_tgt)
9891         [ -z "$crossdir" ] && error "crossdir_rename_size count error"
9892         [[ $src_sample -eq 1 ]] ||
9893                 error "crossdir_rename_size error $src_sample"
9894         [[ $tgt_sample -eq 1 ]] ||
9895                 error "crossdir_rename_size error $tgt_sample"
9896         echo "Check cross dir rename stats success"
9897         rm -rf $DIR/${tdir}
9898 }
9899 run_test 133d "Verifying rename_stats ========================================"
9900
9901 test_133e() {
9902         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9903         remote_ost_nodsh && skip "remote OST with nodsh" && return
9904         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9905         local testdir=$DIR/${tdir}/stats_testdir
9906         local ctr f0 f1 bs=32768 count=42 sum
9907
9908         mkdir -p ${testdir} || error "mkdir failed"
9909
9910         $SETSTRIPE -c 1 -i 0 ${testdir}/${tfile}
9911
9912         for ctr in {write,read}_bytes; do
9913                 sync
9914                 cancel_lru_locks osc
9915
9916                 do_facet ost1 $LCTL set_param -n \
9917                         "obdfilter.*.exports.clear=clear"
9918
9919                 if [ $ctr = write_bytes ]; then
9920                         f0=/dev/zero
9921                         f1=${testdir}/${tfile}
9922                 else
9923                         f0=${testdir}/${tfile}
9924                         f1=/dev/null
9925                 fi
9926
9927                 dd if=$f0 of=$f1 conv=notrunc bs=$bs count=$count || \
9928                         error "dd failed"
9929                 sync
9930                 cancel_lru_locks osc
9931
9932                 sum=$(do_facet ost1 $LCTL get_param \
9933                         "obdfilter.*.exports.*.stats" |
9934                         awk -v ctr=$ctr 'BEGIN { sum = 0 }
9935                                 $1 == ctr { sum += $7 }
9936                                 END { printf("%0.0f", sum) }')
9937
9938                 if ((sum != bs * count)); then
9939                         error "Bad $ctr sum, expected $((bs * count)), got $sum"
9940                 fi
9941         done
9942
9943         rm -rf $DIR/${tdir}
9944 }
9945 run_test 133e "Verifying OST {read,write}_bytes nid stats ================="
9946
9947 proc_regexp="/{proc,sys}/{fs,sys,kernel/debug}/{lustre,lnet}/"
9948
9949 test_133f() {
9950         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9951         remote_ost_nodsh && skip "remote OST with nodsh" && return
9952         # First without trusting modes.
9953         local proc_dirs=$(eval \ls -d $proc_regexp 2>/dev/null)
9954         echo "proc_dirs='$proc_dirs'"
9955         [ -n "$proc_dirs" ] || error "no proc_dirs on $HOSTNAME"
9956         find $proc_dirs -exec cat '{}' \; &> /dev/null
9957
9958         # Second verifying readability.
9959         $LCTL get_param -R '*' &> /dev/null || error "proc file read failed"
9960
9961         # eventually, this can also be replaced with "lctl get_param -R",
9962         # but not until that option is always available on the server
9963         local facet
9964         for facet in mds1 ost1; do
9965                 local facet_proc_dirs=$(do_facet $facet \
9966                                         \\\ls -d $proc_regexp 2>/dev/null)
9967                 echo "${facet}_proc_dirs='$facet_proc_dirs'"
9968                 [ -z "$facet_proc_dirs" ] && error "no proc_dirs on $facet"
9969                 do_facet $facet find $facet_proc_dirs \
9970                         ! -name req_history \
9971                         -exec cat '{}' \\\; &> /dev/null
9972
9973                 do_facet $facet find $facet_proc_dirs \
9974                         ! -name req_history \
9975                         -type f \
9976                         -exec cat '{}' \\\; &> /dev/null ||
9977                                 error "proc file read failed"
9978         done
9979 }
9980 run_test 133f "Check for LBUGs/Oopses/unreadable files in /proc"
9981
9982 test_133g() {
9983         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9984         remote_ost_nodsh && skip "remote OST with nodsh" && return
9985         # Second verifying writability.
9986         local proc_dirs=$(eval \ls -d $proc_regexp 2>/dev/null)
9987         echo "proc_dirs='$proc_dirs'"
9988         [ -n "$proc_dirs" ] || error "no proc_dirs on $HOSTNAME"
9989         find $proc_dirs \
9990                 -type f \
9991                 -not -name force_lbug \
9992                 -not -name changelog_mask \
9993                 -exec badarea_io '{}' \; &> /dev/null ||
9994                 error "find $proc_dirs failed"
9995
9996         local facet
9997         for facet in mds1 ost1; do
9998                 [ $(lustre_version_code $facet) -le $(version_code 2.5.54) ] &&
9999                         skip "Too old lustre on $facet" && continue
10000                 local facet_proc_dirs=$(do_facet $facet \
10001                                         \\\ls -d $proc_regexp 2> /dev/null)
10002                 echo "${facet}_proc_dirs='$facet_proc_dirs'"
10003                 [ -z "$facet_proc_dirs" ] && error "no proc_dirs on $facet"
10004                 do_facet $facet find $facet_proc_dirs \
10005                         -type f \
10006                         -not -name force_lbug \
10007                         -not -name changelog_mask \
10008                         -exec badarea_io '{}' \\\; &> /dev/null ||
10009                                 error "$facet find $facet_proc_dirs failed"
10010         done
10011
10012         # remount the FS in case writes/reads /proc break the FS
10013         cleanup || error "failed to unmount"
10014         setup || error "failed to setup"
10015         true
10016 }
10017 run_test 133g "Check for Oopses on bad io area writes/reads in /proc"
10018
10019 test_133h() {
10020         remote_mds_nodsh && skip "remote MDS with nodsh" && return
10021         remote_ost_nodsh && skip "remote OST with nodsh" && return
10022         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.9.54) ]] &&
10023                 skip "Need MDS version at least 2.9.54" && return
10024
10025         local facet
10026         for facet in client mds1 ost1; do
10027                 local facet_proc_dirs=$(do_facet $facet \
10028                                         \\\ls -d $proc_regexp 2> /dev/null)
10029                 [ -z "$facet_proc_dirs" ] && error "no proc_dirs on $facet"
10030                 echo "${facet}_proc_dirs='$facet_proc_dirs'"
10031                 # Get the list of files that are missing the terminating newline
10032                 local missing=($(do_facet $facet \
10033                         find ${facet_proc_dirs} -type f \|              \
10034                                 while read F\; do                       \
10035                                         awk -v FS='\v' -v RS='\v\v'     \
10036                                         "'END { if(NR>0 &&              \
10037                                         \\\$NF !~ /.*\\\n\$/)           \
10038                                                 print FILENAME}'"       \
10039                                         '\$F'\;                         \
10040                                 done 2>/dev/null))
10041                 [ ${#missing[*]} -eq 0 ] ||
10042                         error "files do not end with newline: ${missing[*]}"
10043         done
10044 }
10045 run_test 133h "Proc files should end with newlines"
10046
10047 test_134a() {
10048         remote_mds_nodsh && skip "remote MDS with nodsh" && return
10049         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.54) ]] &&
10050                 skip "Need MDS version at least 2.7.54" && return
10051
10052         mkdir -p $DIR/$tdir || error "failed to create $DIR/$tdir"
10053         cancel_lru_locks mdc
10054
10055         local nsdir="ldlm.namespaces.*-MDT0000-mdc-*"
10056         local unused=$($LCTL get_param -n $nsdir.lock_unused_count)
10057         [ $unused -eq 0 ] || error "$unused locks are not cleared"
10058
10059         local nr=1000
10060         createmany -o $DIR/$tdir/f $nr ||
10061                 error "failed to create $nr files in $DIR/$tdir"
10062         unused=$($LCTL get_param -n $nsdir.lock_unused_count)
10063
10064         #define OBD_FAIL_LDLM_WATERMARK_LOW     0x327
10065         do_facet mds1 $LCTL set_param fail_loc=0x327
10066         do_facet mds1 $LCTL set_param fail_val=500
10067         touch $DIR/$tdir/m
10068
10069         echo "sleep 10 seconds ..."
10070         sleep 10
10071         local lck_cnt=$($LCTL get_param -n $nsdir.lock_unused_count)
10072
10073         do_facet mds1 $LCTL set_param fail_loc=0
10074         do_facet mds1 $LCTL set_param fail_val=0
10075         [ $lck_cnt -lt $unused ] ||
10076                 error "No locks reclaimed, before:$unused, after:$lck_cnt"
10077
10078         rm $DIR/$tdir/m
10079         unlinkmany $DIR/$tdir/f $nr
10080 }
10081 run_test 134a "Server reclaims locks when reaching lock_reclaim_threshold"
10082
10083 test_134b() {
10084         remote_mds_nodsh && skip "remote MDS with nodsh" && return
10085         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.54) ]] &&
10086                 skip "Need MDS version at least 2.7.54" && return
10087
10088         mkdir -p $DIR/$tdir || error "failed to create $DIR/$tdir"
10089         cancel_lru_locks mdc
10090
10091         local low_wm=$(do_facet mds1 $LCTL get_param -n \
10092                         ldlm.lock_reclaim_threshold_mb)
10093         # disable reclaim temporarily
10094         do_facet mds1 $LCTL set_param ldlm.lock_reclaim_threshold_mb=0
10095
10096         #define OBD_FAIL_LDLM_WATERMARK_HIGH     0x328
10097         do_facet mds1 $LCTL set_param fail_loc=0x328
10098         do_facet mds1 $LCTL set_param fail_val=500
10099
10100         $LCTL set_param debug=+trace
10101
10102         local nr=600
10103         createmany -o $DIR/$tdir/f $nr &
10104         local create_pid=$!
10105
10106         echo "Sleep $TIMEOUT seconds ..."
10107         sleep $TIMEOUT
10108         if ! ps -p $create_pid  > /dev/null 2>&1; then
10109                 do_facet mds1 $LCTL set_param fail_loc=0
10110                 do_facet mds1 $LCTL set_param fail_val=0
10111                 do_facet mds1 $LCTL set_param \
10112                         ldlm.lock_reclaim_threshold_mb=${low_wm}m
10113                 error "createmany finished incorrectly!"
10114         fi
10115         do_facet mds1 $LCTL set_param fail_loc=0
10116         do_facet mds1 $LCTL set_param fail_val=0
10117         do_facet mds1 $LCTL set_param ldlm.lock_reclaim_threshold_mb=${low_wm}m
10118         wait $create_pid || return 1
10119
10120         unlinkmany $DIR/$tdir/f $nr
10121 }
10122 run_test 134b "Server rejects lock request when reaching lock_limit_mb"
10123
10124 test_140() { #bug-17379
10125         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10126         test_mkdir -p $DIR/$tdir || error "Creating dir $DIR/$tdir"
10127         cd $DIR/$tdir || error "Changing to $DIR/$tdir"
10128         cp $(which stat) . || error "Copying stat to $DIR/$tdir"
10129
10130         # VFS limits max symlink depth to 5(4KSTACK) or 7(8KSTACK) or 8
10131         # For kernel > 3.5, bellow only tests consecutive symlink (MAX 40)
10132         local i=0
10133         while i=`expr $i + 1`; do
10134                 test_mkdir -p $i || error "Creating dir $i"
10135                 cd $i || error "Changing to $i"
10136                 ln -s ../stat stat || error "Creating stat symlink"
10137                 # Read the symlink until ELOOP present,
10138                 # not LBUGing the system is considered success,
10139                 # we didn't overrun the stack.
10140                 $OPENFILE -f O_RDONLY stat >/dev/null 2>&1; ret=$?
10141                 [ $ret -ne 0 ] && {
10142                         if [ $ret -eq 40 ]; then
10143                                 break  # -ELOOP
10144                         else
10145                                 error "Open stat symlink"
10146                                 return
10147                         fi
10148                 }
10149         done
10150         i=`expr $i - 1`
10151         echo "The symlink depth = $i"
10152         [ $i -eq 5 -o $i -eq 7 -o $i -eq 8 -o $i -eq 40 ] ||
10153                                         error "Invalid symlink depth"
10154
10155         # Test recursive symlink
10156         ln -s symlink_self symlink_self
10157         $OPENFILE -f O_RDONLY symlink_self >/dev/null 2>&1; ret=$?
10158         echo "open symlink_self returns $ret"
10159         [ $ret -eq 40 ] || error "recursive symlink doesn't return -ELOOP"
10160 }
10161 run_test 140 "Check reasonable stack depth (shouldn't LBUG) ===="
10162
10163 test_150() {
10164         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10165         local TF="$TMP/$tfile"
10166
10167         dd if=/dev/urandom of=$TF bs=6096 count=1 || error "dd failed"
10168         cp $TF $DIR/$tfile
10169         cancel_lru_locks osc
10170         cmp $TF $DIR/$tfile || error "$TMP/$tfile $DIR/$tfile differ"
10171         remount_client $MOUNT
10172         df -P $MOUNT
10173         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (remount)"
10174
10175         $TRUNCATE $TF 6000
10176         $TRUNCATE $DIR/$tfile 6000
10177         cancel_lru_locks osc
10178         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (truncate1)"
10179
10180         echo "12345" >>$TF
10181         echo "12345" >>$DIR/$tfile
10182         cancel_lru_locks osc
10183         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (append1)"
10184
10185         echo "12345" >>$TF
10186         echo "12345" >>$DIR/$tfile
10187         cancel_lru_locks osc
10188         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (append2)"
10189
10190         rm -f $TF
10191         true
10192 }
10193 run_test 150 "truncate/append tests"
10194
10195 #LU-2902 roc_hit was not able to read all values from lproc
10196 function roc_hit_init() {
10197         local list=$(comma_list $(osts_nodes))
10198         local dir=$DIR/$tdir-check
10199         local file=$dir/file
10200         local BEFORE
10201         local AFTER
10202         local idx
10203
10204         test_mkdir -p $dir
10205         #use setstripe to do a write to every ost
10206         for i in $(seq 0 $((OSTCOUNT-1))); do
10207                 $SETSTRIPE -c 1 -i $i $dir || error "$SETSTRIPE $file failed"
10208                 dd if=/dev/urandom of=$file bs=4k count=4 2>&1 > /dev/null
10209                 idx=$(printf %04x $i)
10210                 BEFORE=$(get_osd_param $list *OST*$idx stats |
10211                         awk '$1 == "cache_access" {sum += $7}
10212                                 END { printf("%0.0f", sum) }')
10213
10214                 cancel_lru_locks osc
10215                 cat $file >/dev/null
10216
10217                 AFTER=$(get_osd_param $list *OST*$idx stats |
10218                         awk '$1 == "cache_access" {sum += $7}
10219                                 END { printf("%0.0f", sum) }')
10220
10221                 echo BEFORE:$BEFORE AFTER:$AFTER
10222                 if ! let "AFTER - BEFORE == 4"; then
10223                         rm -rf $dir
10224                         error "roc_hit is not safe to use"
10225                 fi
10226                 rm $file
10227         done
10228
10229         rm -rf $dir
10230 }
10231
10232 function roc_hit() {
10233         local list=$(comma_list $(osts_nodes))
10234         echo $(get_osd_param $list '' stats |
10235                 awk '$1 == "cache_hit" {sum += $7}
10236                         END { printf("%0.0f", sum) }')
10237 }
10238
10239 function set_cache() {
10240         local on=1
10241
10242         if [ "$2" == "off" ]; then
10243                 on=0;
10244         fi
10245         local list=$(comma_list $(osts_nodes))
10246         set_osd_param $list '' $1_cache_enable $on
10247
10248         cancel_lru_locks osc
10249 }
10250
10251 test_151() {
10252         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10253         remote_ost_nodsh && skip "remote OST with nodsh" && return
10254
10255         local CPAGES=3
10256         local list=$(comma_list $(osts_nodes))
10257
10258         # check whether obdfilter is cache capable at all
10259         if ! get_osd_param $list '' read_cache_enable >/dev/null; then
10260                 echo "not cache-capable obdfilter"
10261                 return 0
10262         fi
10263
10264         # check cache is enabled on all obdfilters
10265         if get_osd_param $list '' read_cache_enable | grep 0; then
10266                 echo "oss cache is disabled"
10267                 return 0
10268         fi
10269
10270         set_osd_param $list '' writethrough_cache_enable 1
10271
10272         # check write cache is enabled on all obdfilters
10273         if get_osd_param $list '' writethrough_cache_enable | grep 0; then
10274                 echo "oss write cache is NOT enabled"
10275                 return 0
10276         fi
10277
10278         roc_hit_init
10279
10280         #define OBD_FAIL_OBD_NO_LRU  0x609
10281         do_nodes $list $LCTL set_param fail_loc=0x609
10282
10283         # pages should be in the case right after write
10284         dd if=/dev/urandom of=$DIR/$tfile bs=4k count=$CPAGES ||
10285                 error "dd failed"
10286
10287         local BEFORE=$(roc_hit)
10288         cancel_lru_locks osc
10289         cat $DIR/$tfile >/dev/null
10290         local AFTER=$(roc_hit)
10291
10292         do_nodes $list $LCTL set_param fail_loc=0
10293
10294         if ! let "AFTER - BEFORE == CPAGES"; then
10295                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
10296         fi
10297
10298         # the following read invalidates the cache
10299         cancel_lru_locks osc
10300         set_osd_param $list '' read_cache_enable 0
10301         cat $DIR/$tfile >/dev/null
10302
10303         # now data shouldn't be found in the cache
10304         BEFORE=$(roc_hit)
10305         cancel_lru_locks osc
10306         cat $DIR/$tfile >/dev/null
10307         AFTER=$(roc_hit)
10308         if let "AFTER - BEFORE != 0"; then
10309                 error "IN CACHE: before: $BEFORE, after: $AFTER"
10310         fi
10311
10312         set_osd_param $list '' read_cache_enable 1
10313         rm -f $DIR/$tfile
10314 }
10315 run_test 151 "test cache on oss and controls ==============================="
10316
10317 test_152() {
10318         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10319         local TF="$TMP/$tfile"
10320
10321         # simulate ENOMEM during write
10322 #define OBD_FAIL_OST_NOMEM      0x226
10323         lctl set_param fail_loc=0x80000226
10324         dd if=/dev/urandom of=$TF bs=6096 count=1 || error "dd failed"
10325         cp $TF $DIR/$tfile
10326         sync || error "sync failed"
10327         lctl set_param fail_loc=0
10328
10329         # discard client's cache
10330         cancel_lru_locks osc
10331
10332         # simulate ENOMEM during read
10333         lctl set_param fail_loc=0x80000226
10334         cmp $TF $DIR/$tfile || error "cmp failed"
10335         lctl set_param fail_loc=0
10336
10337         rm -f $TF
10338 }
10339 run_test 152 "test read/write with enomem ============================"
10340
10341 test_153() {
10342         $MULTIOP $DIR/$tfile Ow4096Ycu || error "multiop failed"
10343 }
10344 run_test 153 "test if fdatasync does not crash ======================="
10345
10346 dot_lustre_fid_permission_check() {
10347         local fid=$1
10348         local ffid=$MOUNT/.lustre/fid/$fid
10349         local test_dir=$2
10350
10351         echo "stat fid $fid"
10352         stat $ffid > /dev/null || error "stat $ffid failed."
10353         echo "touch fid $fid"
10354         touch $ffid || error "touch $ffid failed."
10355         echo "write to fid $fid"
10356         cat /etc/hosts > $ffid || error "write $ffid failed."
10357         echo "read fid $fid"
10358         diff /etc/hosts $ffid || error "read $ffid failed."
10359         echo "append write to fid $fid"
10360         cat /etc/hosts >> $ffid || error "append write $ffid failed."
10361         echo "rename fid $fid"
10362         mv $ffid $test_dir/$tfile.1 &&
10363                 error "rename $ffid to $tfile.1 should fail."
10364         touch $test_dir/$tfile.1
10365         mv $test_dir/$tfile.1 $ffid &&
10366                 error "rename $tfile.1 to $ffid should fail."
10367         rm -f $test_dir/$tfile.1
10368         echo "truncate fid $fid"
10369         $TRUNCATE $ffid 777 || error "truncate $ffid failed."
10370         if [ $MDSCOUNT -lt 2 ]; then #FIXME when cross-MDT hard link is working
10371                 echo "link fid $fid"
10372                 ln -f $ffid $test_dir/tfile.lnk || error "link $ffid failed."
10373         fi
10374         if [ -n $(lctl get_param -n mdc.*-mdc-*.connect_flags | grep acl) ]; then
10375                 echo "setfacl fid $fid"
10376                 setfacl -R -m u:bin:rwx $ffid || error "setfacl $ffid failed."
10377                 echo "getfacl fid $fid"
10378                 getfacl $ffid >/dev/null || error "getfacl $ffid failed."
10379         fi
10380         echo "unlink fid $fid"
10381         unlink $MOUNT/.lustre/fid/$fid && error "unlink $ffid should fail."
10382         echo "mknod fid $fid"
10383         mknod $ffid c 1 3 && error "mknod $ffid should fail."
10384
10385         fid=[0xf00000400:0x1:0x0]
10386         ffid=$MOUNT/.lustre/fid/$fid
10387
10388         echo "stat non-exist fid $fid"
10389         stat $ffid > /dev/null && error "stat non-exist $ffid should fail."
10390         echo "write to non-exist fid $fid"
10391         cat /etc/hosts > $ffid && error "write non-exist $ffid should fail."
10392         echo "link new fid $fid"
10393         ln $test_dir/$tfile $ffid && error "link $ffid should fail."
10394
10395         mkdir -p $test_dir/$tdir
10396         touch $test_dir/$tdir/$tfile
10397         fid=$($LFS path2fid $test_dir/$tdir)
10398         rc=$?
10399         [ $rc -ne 0 ] &&
10400                 error "error: could not get fid for $test_dir/$dir/$tfile."
10401
10402         ffid=$MOUNT/.lustre/fid/$fid
10403
10404         echo "ls $fid"
10405         ls $ffid > /dev/null || error "ls $ffid failed."
10406         echo "touch $fid/$tfile.1"
10407         touch $ffid/$tfile.1 || error "touch $ffid/$tfile.1 failed."
10408
10409         echo "touch $MOUNT/.lustre/fid/$tfile"
10410         touch $MOUNT/.lustre/fid/$tfile && \
10411                 error "touch $MOUNT/.lustre/fid/$tfile should fail."
10412
10413         echo "setxattr to $MOUNT/.lustre/fid"
10414         setfattr -n trusted.name1 -v value1 $MOUNT/.lustre/fid
10415
10416         echo "listxattr for $MOUNT/.lustre/fid"
10417         getfattr -d -m "^trusted" $MOUNT/.lustre/fid
10418
10419         echo "delxattr from $MOUNT/.lustre/fid"
10420         setfattr -x trusted.name1 $MOUNT/.lustre/fid
10421
10422         echo "touch invalid fid: $MOUNT/.lustre/fid/[0x200000400:0x2:0x3]"
10423         touch $MOUNT/.lustre/fid/[0x200000400:0x2:0x3] &&
10424                 error "touch invalid fid should fail."
10425
10426         echo "touch non-normal fid: $MOUNT/.lustre/fid/[0x1:0x2:0x0]"
10427         touch $MOUNT/.lustre/fid/[0x1:0x2:0x0] &&
10428                 error "touch non-normal fid should fail."
10429
10430         echo "rename $tdir to $MOUNT/.lustre/fid"
10431         mrename $test_dir/$tdir $MOUNT/.lustre/fid &&
10432                 error "rename to $MOUNT/.lustre/fid should fail."
10433
10434         if [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.51) ]
10435         then            # LU-3547
10436                 local old_obf_mode=$(stat --format="%a" $DIR/.lustre/fid)
10437                 local new_obf_mode=777
10438
10439                 echo "change mode of $DIR/.lustre/fid to $new_obf_mode"
10440                 chmod $new_obf_mode $DIR/.lustre/fid ||
10441                         error "chmod $new_obf_mode $DIR/.lustre/fid failed"
10442
10443                 local obf_mode=$(stat --format=%a $DIR/.lustre/fid)
10444                 [ $obf_mode -eq $new_obf_mode ] ||
10445                         error "stat $DIR/.lustre/fid returned wrong mode $obf_mode"
10446
10447                 echo "restore mode of $DIR/.lustre/fid to $old_obf_mode"
10448                 chmod $old_obf_mode $DIR/.lustre/fid ||
10449                         error "chmod $old_obf_mode $DIR/.lustre/fid failed"
10450         fi
10451
10452         $OPENFILE -f O_LOV_DELAY_CREATE:O_CREAT $test_dir/$tfile-2
10453         fid=$($LFS path2fid $test_dir/$tfile-2)
10454
10455         if [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.50) ]
10456         then # LU-5424
10457                 echo "cp /etc/passwd $MOUNT/.lustre/fid/$fid"
10458                 cp /etc/passwd $MOUNT/.lustre/fid/$fid ||
10459                         error "create lov data thru .lustre failed"
10460         fi
10461         echo "cp /etc/passwd $test_dir/$tfile-2"
10462         cp /etc/passwd $test_dir/$tfile-2 ||
10463                 error "copy to $test_dir/$tfile-2 failed."
10464         echo "diff /etc/passwd $MOUNT/.lustre/fid/$fid"
10465         diff /etc/passwd $MOUNT/.lustre/fid/$fid ||
10466                 error "diff /etc/passwd $MOUNT/.lustre/fid/$fid failed."
10467
10468         rm -rf $test_dir/tfile.lnk
10469         rm -rf $test_dir/$tfile-2
10470 }
10471
10472 test_154A() {
10473         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.1) ]] &&
10474                 skip "Need MDS version at least 2.4.1" && return
10475
10476         local tf=$DIR/$tfile
10477         touch $tf
10478
10479         local fid=$($LFS path2fid $tf)
10480         [ -z "$fid" ] && error "path2fid unable to get $tf FID"
10481
10482         # check that we get the same pathname back
10483         local found=$($LFS fid2path $MOUNT "$fid")
10484         [ -z "$found" ] && error "fid2path unable to get '$fid' path"
10485         [ "$found" == "$tf" ] ||
10486                 error "fid2path($fid=path2fid($tf)) = $found != $tf"
10487 }
10488 run_test 154A "lfs path2fid and fid2path basic checks"
10489
10490 test_154B() {
10491         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.1) ]] &&
10492                 skip "Need MDS version at least 2.4.1" && return
10493
10494         mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
10495         touch $DIR/$tdir/$tfile || error "touch $DIR/$tdir/$tfile failed"
10496         local linkea=$($LL_DECODE_LINKEA $DIR/$tdir/$tfile | grep 'pfid')
10497         [ -z "$linkea" ] && error "decode linkea $DIR/$tdir/$tfile failed"
10498
10499         local name=$(echo $linkea | awk '/pfid/ {print $5}' | sed -e "s/'//g")
10500         local PFID=$(echo $linkea | awk '/pfid/ {print $3}' | sed -e "s/,//g")
10501
10502         # check that we get the same pathname
10503         echo "PFID: $PFID, name: $name"
10504         local FOUND=$($LFS fid2path $MOUNT "$PFID")
10505         [ -z "$FOUND" ] && error "fid2path unable to get $PFID path"
10506         [ "$FOUND/$name" != "$DIR/$tdir/$tfile" ] &&
10507                 error "ll_decode_linkea has $FOUND/$name != $DIR/$tdir/$tfile"
10508
10509         rm -rf $DIR/$tdir || error "Can not delete directory $DIR/$tdir"
10510 }
10511 run_test 154B "verify the ll_decode_linkea tool"
10512
10513 test_154a() {
10514         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10515         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ]] ||
10516                 { skip "Need MDS version at least 2.2.51"; return 0; }
10517         [ -z "$(which setfacl)" ] && skip "must have setfacl tool" && return
10518         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
10519
10520         cp /etc/hosts $DIR/$tfile
10521
10522         fid=$($LFS path2fid $DIR/$tfile)
10523         rc=$?
10524         [ $rc -ne 0 ] && error "error: could not get fid for $DIR/$tfile."
10525
10526         dot_lustre_fid_permission_check "$fid" $DIR ||
10527                 error "dot lustre permission check $fid failed"
10528
10529         rm -rf $MOUNT/.lustre && error ".lustre is not allowed to be unlinked"
10530
10531         touch $MOUNT/.lustre/file &&
10532                 error "creation is not allowed under .lustre"
10533
10534         mkdir $MOUNT/.lustre/dir &&
10535                 error "mkdir is not allowed under .lustre"
10536
10537         rm -rf $DIR/$tfile
10538 }
10539 run_test 154a "Open-by-FID"
10540
10541 test_154b() {
10542         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10543         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ]] ||
10544                 { skip "Need MDS version at least 2.2.51"; return 0; }
10545         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
10546
10547         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
10548
10549         local remote_dir=$DIR/$tdir/remote_dir
10550         local MDTIDX=1
10551         local rc=0
10552
10553         mkdir -p $DIR/$tdir
10554         $LFS mkdir -i $MDTIDX $remote_dir ||
10555                 error "create remote directory failed"
10556
10557         cp /etc/hosts $remote_dir/$tfile
10558
10559         fid=$($LFS path2fid $remote_dir/$tfile)
10560         rc=$?
10561         [ $rc -ne 0 ] && error "error: could not get fid for $remote_dir/$tfile"
10562
10563         dot_lustre_fid_permission_check "$fid" $remote_dir ||
10564                 error "dot lustre permission check $fid failed"
10565         rm -rf $DIR/$tdir
10566 }
10567 run_test 154b "Open-by-FID for remote directory"
10568
10569 test_154c() {
10570         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.1) ]] &&
10571                 skip "Need MDS version at least 2.4.1" && return
10572
10573         touch $DIR/$tfile.1 $DIR/$tfile.2 $DIR/$tfile.3
10574         local FID1=$($LFS path2fid $DIR/$tfile.1)
10575         local FID2=$($LFS path2fid $DIR/$tfile.2)
10576         local FID3=$($LFS path2fid $DIR/$tfile.3)
10577
10578         local N=1
10579         $LFS path2fid $DIR/$tfile.[123] | while read PATHNAME FID; do
10580                 [ "$PATHNAME" = "$DIR/$tfile.$N:" ] ||
10581                         error "path2fid pathname $PATHNAME != $DIR/$tfile.$N:"
10582                 local want=FID$N
10583                 [ "$FID" = "${!want}" ] ||
10584                         error "path2fid $PATHNAME FID $FID != FID$N ${!want}"
10585                 N=$((N + 1))
10586         done
10587
10588         $LFS fid2path $MOUNT "$FID1" "$FID2" "$FID3" | while read PATHNAME;
10589         do
10590                 [ "$PATHNAME" = "$DIR/$tfile.$N" ] ||
10591                         error "fid2path pathname $PATHNAME != $DIR/$tfile.$N:"
10592                 N=$((N + 1))
10593         done
10594 }
10595 run_test 154c "lfs path2fid and fid2path multiple arguments"
10596
10597 test_154d() {
10598         remote_mds_nodsh && skip "remote MDS with nodsh" && return
10599         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.5.53) ]] &&
10600                 skip "Need MDS version at least 2.5.53" && return
10601
10602         if remote_mds; then
10603                 nid=$($LCTL list_nids | sed  "s/\./\\\./g")
10604         else
10605                 nid="0@lo"
10606         fi
10607         local proc_ofile="mdt.*.exports.'$nid'.open_files"
10608         local fd
10609         local cmd
10610
10611         rm -f $DIR/$tfile
10612         touch $DIR/$tfile
10613
10614         local fid=$($LFS path2fid $DIR/$tfile)
10615         # Open the file
10616         fd=$(free_fd)
10617         cmd="exec $fd<$DIR/$tfile"
10618         eval $cmd
10619         local fid_list=$(do_facet $SINGLEMDS $LCTL get_param $proc_ofile)
10620         echo "$fid_list" | grep "$fid"
10621         rc=$?
10622
10623         cmd="exec $fd>/dev/null"
10624         eval $cmd
10625         if [ $rc -ne 0 ]; then
10626                 error "FID $fid not found in open files list $fid_list"
10627         fi
10628 }
10629 run_test 154d "Verify open file fid"
10630
10631 test_154e()
10632 {
10633         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.6.50) ]] &&
10634                 skip "Need MDS version at least 2.6.50" && return
10635
10636         if ls -a $MOUNT | grep -q '^\.lustre$'; then
10637                 error ".lustre returned by readdir"
10638         fi
10639 }
10640 run_test 154e ".lustre is not returned by readdir"
10641
10642 test_154f() {
10643         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
10644         # create parent directory on a single MDT to avoid cross-MDT hardlinks
10645         test_mkdir -p -c1 $DIR/$tdir/d
10646         # test dirs inherit from its stripe
10647         mkdir -p $DIR/$tdir/d/foo1 || error "mkdir error"
10648         mkdir -p $DIR/$tdir/d/foo2 || error "mkdir error"
10649         cp /etc/hosts $DIR/$tdir/d/foo1/$tfile
10650         ln $DIR/$tdir/d/foo1/$tfile $DIR/$tdir/d/foo2/link
10651         touch $DIR/f
10652
10653         # get fid of parents
10654         local FID0=$($LFS path2fid $DIR/$tdir/d)
10655         local FID1=$($LFS path2fid $DIR/$tdir/d/foo1)
10656         local FID2=$($LFS path2fid $DIR/$tdir/d/foo2)
10657         local FID3=$($LFS path2fid $DIR)
10658
10659         # check that path2fid --parents returns expected <parent_fid>/name
10660         # 1) test for a directory (single parent)
10661         local parent=$($LFS path2fid --parents $DIR/$tdir/d/foo1)
10662         [ "$parent" == "$FID0/foo1" ] ||
10663                 error "expected parent: $FID0/foo1, got: $parent"
10664
10665         # 2) test for a file with nlink > 1 (multiple parents)
10666         parent=$($LFS path2fid --parents $DIR/$tdir/d/foo1/$tfile)
10667         echo "$parent" | grep -F "$FID1/$tfile" ||
10668                 error "$FID1/$tfile not returned in parent list"
10669         echo "$parent" | grep -F "$FID2/link" ||
10670                 error "$FID2/link not returned in parent list"
10671
10672         # 3) get parent by fid
10673         local file_fid=$($LFS path2fid $DIR/$tdir/d/foo1/$tfile)
10674         parent=$($LFS path2fid --parents $MOUNT/.lustre/fid/$file_fid)
10675         echo "$parent" | grep -F "$FID1/$tfile" ||
10676                 error "$FID1/$tfile not returned in parent list (by fid)"
10677         echo "$parent" | grep -F "$FID2/link" ||
10678                 error "$FID2/link not returned in parent list (by fid)"
10679
10680         # 4) test for entry in root directory
10681         parent=$($LFS path2fid --parents $DIR/f)
10682         echo "$parent" | grep -F "$FID3/f" ||
10683                 error "$FID3/f not returned in parent list"
10684
10685         # 5) test it on root directory
10686         [ -z "$($LFS path2fid --parents $MOUNT 2>/dev/null)" ] ||
10687                 error "$MOUNT should not have parents"
10688
10689         # enable xattr caching and check that linkea is correctly updated
10690         local save="$TMP/$TESTSUITE-$TESTNAME.parameters"
10691         save_lustre_params client "llite.*.xattr_cache" > $save
10692         lctl set_param llite.*.xattr_cache 1
10693
10694         # 6.1) linkea update on rename
10695         mv $DIR/$tdir/d/foo1/$tfile $DIR/$tdir/d/foo2/$tfile.moved
10696
10697         # get parents by fid
10698         parent=$($LFS path2fid --parents $MOUNT/.lustre/fid/$file_fid)
10699         # foo1 should no longer be returned in parent list
10700         echo "$parent" | grep -F "$FID1" &&
10701                 error "$FID1 should no longer be in parent list"
10702         # the new path should appear
10703         echo "$parent" | grep -F "$FID2/$tfile.moved" ||
10704                 error "$FID2/$tfile.moved is not in parent list"
10705
10706         # 6.2) linkea update on unlink
10707         rm -f $DIR/$tdir/d/foo2/link
10708         parent=$($LFS path2fid --parents $MOUNT/.lustre/fid/$file_fid)
10709         # foo2/link should no longer be returned in parent list
10710         echo "$parent" | grep -F "$FID2/link" &&
10711                 error "$FID2/link should no longer be in parent list"
10712         true
10713
10714         rm -f $DIR/f
10715         restore_lustre_params < $save
10716         rm -f $save
10717 }
10718 run_test 154f "get parent fids by reading link ea"
10719
10720 test_154g()
10721 {
10722         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.92) ]] ||
10723                 { skip "Need MDS version at least 2.6.92"; return 0; }
10724         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
10725
10726         mkdir -p $DIR/$tdir
10727         llapi_fid_test -d $DIR/$tdir
10728 }
10729 run_test 154g "various llapi FID tests"
10730
10731 test_155_small_load() {
10732     local temp=$TMP/$tfile
10733     local file=$DIR/$tfile
10734
10735     dd if=/dev/urandom of=$temp bs=6096 count=1 || \
10736         error "dd of=$temp bs=6096 count=1 failed"
10737     cp $temp $file
10738     cancel_lru_locks osc
10739     cmp $temp $file || error "$temp $file differ"
10740
10741     $TRUNCATE $temp 6000
10742     $TRUNCATE $file 6000
10743     cmp $temp $file || error "$temp $file differ (truncate1)"
10744
10745     echo "12345" >>$temp
10746     echo "12345" >>$file
10747     cmp $temp $file || error "$temp $file differ (append1)"
10748
10749     echo "12345" >>$temp
10750     echo "12345" >>$file
10751     cmp $temp $file || error "$temp $file differ (append2)"
10752
10753     rm -f $temp $file
10754     true
10755 }
10756
10757 test_155_big_load() {
10758     remote_ost_nodsh && skip "remote OST with nodsh" && return
10759     local temp=$TMP/$tfile
10760     local file=$DIR/$tfile
10761
10762     free_min_max
10763     local cache_size=$(do_facet ost$((MAXI+1)) \
10764         "awk '/cache/ {sum+=\\\$4} END {print sum}' /proc/cpuinfo")
10765     local large_file_size=$((cache_size * 2))
10766
10767     echo "OSS cache size: $cache_size KB"
10768     echo "Large file size: $large_file_size KB"
10769
10770     [ $MAXV -le $large_file_size ] && \
10771         skip_env "max available OST size needs > $large_file_size KB" && \
10772         return 0
10773
10774     $SETSTRIPE $file -c 1 -i $MAXI || error "$SETSTRIPE $file failed"
10775
10776     dd if=/dev/urandom of=$temp bs=$large_file_size count=1k || \
10777         error "dd of=$temp bs=$large_file_size count=1k failed"
10778     cp $temp $file
10779     ls -lh $temp $file
10780     cancel_lru_locks osc
10781     cmp $temp $file || error "$temp $file differ"
10782
10783     rm -f $temp $file
10784     true
10785 }
10786
10787 save_writethrough() {
10788         local facets=$(get_facets OST)
10789
10790         save_lustre_params $facets "obdfilter.*.writethrough_cache_enable" > $1
10791         save_lustre_params $facets "osd-*.*.writethrough_cache_enable" >> $1
10792 }
10793
10794 test_155a() {
10795         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10796         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
10797         save_writethrough $p
10798
10799         set_cache read on
10800         set_cache writethrough on
10801         test_155_small_load
10802         restore_lustre_params < $p
10803         rm -f $p
10804 }
10805 run_test 155a "Verify small file correctness: read cache:on write_cache:on"
10806
10807 test_155b() {
10808         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10809         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
10810         save_writethrough $p
10811
10812         set_cache read on
10813         set_cache writethrough off
10814         test_155_small_load
10815         restore_lustre_params < $p
10816         rm -f $p
10817 }
10818 run_test 155b "Verify small file correctness: read cache:on write_cache:off"
10819
10820 test_155c() {
10821         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10822         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
10823         save_writethrough $p
10824
10825         set_cache read off
10826         set_cache writethrough on
10827         test_155_small_load
10828         restore_lustre_params < $p
10829         rm -f $p
10830 }
10831 run_test 155c "Verify small file correctness: read cache:off write_cache:on"
10832
10833 test_155d() {
10834         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10835         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
10836         save_writethrough $p
10837
10838         set_cache read off
10839         set_cache writethrough off
10840         test_155_small_load
10841         restore_lustre_params < $p
10842         rm -f $p
10843 }
10844 run_test 155d "Verify small file correctness: read cache:off write_cache:off"
10845
10846 test_155e() {
10847         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10848         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
10849         save_writethrough $p
10850
10851         set_cache read on
10852         set_cache writethrough on
10853         test_155_big_load
10854         restore_lustre_params < $p
10855         rm -f $p
10856 }
10857 run_test 155e "Verify big file correctness: read cache:on write_cache:on"
10858
10859 test_155f() {
10860         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10861         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
10862         save_writethrough $p
10863
10864         set_cache read on
10865         set_cache writethrough off
10866         test_155_big_load
10867         restore_lustre_params < $p
10868         rm -f $p
10869 }
10870 run_test 155f "Verify big file correctness: read cache:on write_cache:off"
10871
10872 test_155g() {
10873         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10874         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
10875         save_writethrough $p
10876
10877         set_cache read off
10878         set_cache writethrough on
10879         test_155_big_load
10880         restore_lustre_params < $p
10881         rm -f $p
10882 }
10883 run_test 155g "Verify big file correctness: read cache:off write_cache:on"
10884
10885 test_155h() {
10886         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10887         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
10888         save_writethrough $p
10889
10890         set_cache read off
10891         set_cache writethrough off
10892         test_155_big_load
10893         restore_lustre_params < $p
10894         rm -f $p
10895 }
10896 run_test 155h "Verify big file correctness: read cache:off write_cache:off"
10897
10898 test_156() {
10899         remote_ost_nodsh && skip "remote OST with nodsh" && return
10900         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10901         local CPAGES=3
10902         local BEFORE
10903         local AFTER
10904         local file="$DIR/$tfile"
10905         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
10906
10907         [ "$(facet_fstype ost1)" = "zfs" -a \
10908            $(lustre_version_code ost1 -lt $(version_code 2.6.93)) ] &&
10909                 skip "LU-1956/LU-2261: stats not implemented on OSD ZFS" &&
10910                 return
10911
10912         save_writethrough $p
10913         roc_hit_init
10914
10915         log "Turn on read and write cache"
10916         set_cache read on
10917         set_cache writethrough on
10918
10919         log "Write data and read it back."
10920         log "Read should be satisfied from the cache."
10921         dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
10922         BEFORE=$(roc_hit)
10923         cancel_lru_locks osc
10924         cat $file >/dev/null
10925         AFTER=$(roc_hit)
10926         if ! let "AFTER - BEFORE == CPAGES"; then
10927                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
10928         else
10929                 log "cache hits:: before: $BEFORE, after: $AFTER"
10930         fi
10931
10932         log "Read again; it should be satisfied from the cache."
10933         BEFORE=$AFTER
10934         cancel_lru_locks osc
10935         cat $file >/dev/null
10936         AFTER=$(roc_hit)
10937         if ! let "AFTER - BEFORE == CPAGES"; then
10938                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
10939         else
10940                 log "cache hits:: before: $BEFORE, after: $AFTER"
10941         fi
10942
10943         log "Turn off the read cache and turn on the write cache"
10944         set_cache read off
10945         set_cache writethrough on
10946
10947         log "Read again; it should be satisfied from the cache."
10948         BEFORE=$(roc_hit)
10949         cancel_lru_locks osc
10950         cat $file >/dev/null
10951         AFTER=$(roc_hit)
10952         if ! let "AFTER - BEFORE == CPAGES"; then
10953                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
10954         else
10955                 log "cache hits:: before: $BEFORE, after: $AFTER"
10956         fi
10957
10958         log "Read again; it should not be satisfied from the cache."
10959         BEFORE=$AFTER
10960         cancel_lru_locks osc
10961         cat $file >/dev/null
10962         AFTER=$(roc_hit)
10963         if ! let "AFTER - BEFORE == 0"; then
10964                 error "IN CACHE: before: $BEFORE, after: $AFTER"
10965         else
10966                 log "cache hits:: before: $BEFORE, after: $AFTER"
10967         fi
10968
10969         log "Write data and read it back."
10970         log "Read should be satisfied from the cache."
10971         dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
10972         BEFORE=$(roc_hit)
10973         cancel_lru_locks osc
10974         cat $file >/dev/null
10975         AFTER=$(roc_hit)
10976         if ! let "AFTER - BEFORE == CPAGES"; then
10977                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
10978         else
10979                 log "cache hits:: before: $BEFORE, after: $AFTER"
10980         fi
10981
10982         log "Read again; it should not be satisfied from the cache."
10983         BEFORE=$AFTER
10984         cancel_lru_locks osc
10985         cat $file >/dev/null
10986         AFTER=$(roc_hit)
10987         if ! let "AFTER - BEFORE == 0"; then
10988                 error "IN CACHE: before: $BEFORE, after: $AFTER"
10989         else
10990                 log "cache hits:: before: $BEFORE, after: $AFTER"
10991         fi
10992
10993         log "Turn off read and write cache"
10994         set_cache read off
10995         set_cache writethrough off
10996
10997         log "Write data and read it back"
10998         log "It should not be satisfied from the cache."
10999         rm -f $file
11000         dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
11001         cancel_lru_locks osc
11002         BEFORE=$(roc_hit)
11003         cat $file >/dev/null
11004         AFTER=$(roc_hit)
11005         if ! let "AFTER - BEFORE == 0"; then
11006                 error_ignore bz20762 "IN CACHE: before: $BEFORE, after: $AFTER"
11007         else
11008                 log "cache hits:: before: $BEFORE, after: $AFTER"
11009         fi
11010
11011         log "Turn on the read cache and turn off the write cache"
11012         set_cache read on
11013         set_cache writethrough off
11014
11015         log "Write data and read it back"
11016         log "It should not be satisfied from the cache."
11017         rm -f $file
11018         dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
11019         BEFORE=$(roc_hit)
11020         cancel_lru_locks osc
11021         cat $file >/dev/null
11022         AFTER=$(roc_hit)
11023         if ! let "AFTER - BEFORE == 0"; then
11024                 error_ignore bz20762 "IN CACHE: before: $BEFORE, after: $AFTER"
11025         else
11026                 log "cache hits:: before: $BEFORE, after: $AFTER"
11027         fi
11028
11029         log "Read again; it should be satisfied from the cache."
11030         BEFORE=$(roc_hit)
11031         cancel_lru_locks osc
11032         cat $file >/dev/null
11033         AFTER=$(roc_hit)
11034         if ! let "AFTER - BEFORE == CPAGES"; then
11035                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
11036         else
11037                 log "cache hits:: before: $BEFORE, after: $AFTER"
11038         fi
11039
11040         rm -f $file
11041         restore_lustre_params < $p
11042         rm -f $p
11043 }
11044 run_test 156 "Verification of tunables"
11045
11046 #Changelogs
11047 cleanup_changelog () {
11048         trap 0
11049         echo "Deregistering changelog client $CL_USER"
11050         do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister $CL_USER
11051 }
11052
11053 err17935 () {
11054         if [[ $MDSCOUNT -gt 1 ]]; then
11055                 error_ignore bz17935 $*
11056         else
11057                 error $*
11058         fi
11059 }
11060
11061 changelog_chmask()
11062 {
11063         local CL_MASK_PARAM="mdd.$MDT0.changelog_mask"
11064
11065         MASK=$(do_facet $SINGLEMDS $LCTL get_param $CL_MASK_PARAM| grep -c "$1")
11066
11067         if [ $MASK -eq 1 ]; then
11068                 do_facet $SINGLEMDS $LCTL set_param $CL_MASK_PARAM="-$1"
11069         else
11070                 do_facet $SINGLEMDS $LCTL set_param $CL_MASK_PARAM="+$1"
11071         fi
11072 }
11073
11074 changelog_extract_field() {
11075         local mdt=$1
11076         local cltype=$2
11077         local file=$3
11078         local identifier=$4
11079
11080         $LFS changelog $mdt | gawk "/$cltype.*$file$/ {
11081                 print gensub(/^.* "$identifier'(\[[^\]]*\]).*$/,"\\1",1)}' |
11082                 tail -1
11083 }
11084
11085 test_160a() {
11086         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11087         remote_mds_nodsh && skip "remote MDS with nodsh" && return
11088         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] ||
11089                 { skip "Need MDS version at least 2.2.0"; return; }
11090
11091         local CL_USERS="mdd.$MDT0.changelog_users"
11092         local GET_CL_USERS="do_facet $SINGLEMDS $LCTL get_param -n $CL_USERS"
11093         CL_USER=$(do_facet $SINGLEMDS $LCTL --device $MDT0 \
11094                 changelog_register -n)
11095         echo "Registered as changelog user $CL_USER"
11096         trap cleanup_changelog EXIT
11097         $GET_CL_USERS | grep -q $CL_USER ||
11098                 error "User $CL_USER not found in changelog_users"
11099
11100         # change something
11101         test_mkdir -p $DIR/$tdir/pics/2008/zachy
11102         touch $DIR/$tdir/pics/2008/zachy/timestamp
11103         cp /etc/hosts $DIR/$tdir/pics/2008/zachy/pic1.jpg
11104         mv $DIR/$tdir/pics/2008/zachy $DIR/$tdir/pics/zach
11105         ln $DIR/$tdir/pics/zach/pic1.jpg $DIR/$tdir/pics/2008/portland.jpg
11106         ln -s $DIR/$tdir/pics/2008/portland.jpg $DIR/$tdir/pics/desktop.jpg
11107         rm $DIR/$tdir/pics/desktop.jpg
11108
11109         $LFS changelog $MDT0 | tail -5
11110
11111         echo "verifying changelog mask"
11112         changelog_chmask "MKDIR"
11113         changelog_chmask "CLOSE"
11114
11115         test_mkdir -p $DIR/$tdir/pics/zach/sofia
11116         echo "zzzzzz" > $DIR/$tdir/pics/zach/file
11117
11118         changelog_chmask "MKDIR"
11119         changelog_chmask "CLOSE"
11120
11121         test_mkdir -p $DIR/$tdir/pics/2008/sofia
11122         echo "zzzzzz" > $DIR/$tdir/pics/zach/file
11123
11124         $LFS changelog $MDT0
11125         MKDIRS=$($LFS changelog $MDT0 | tail -5 | grep -c "MKDIR")
11126         CLOSES=$($LFS changelog $MDT0 | tail -5 | grep -c "CLOSE")
11127         [ $MKDIRS -eq 1 ] || err17935 "MKDIR changelog mask count $DIRS != 1"
11128         [ $CLOSES -eq 1 ] || err17935 "CLOSE changelog mask count $DIRS != 1"
11129
11130         # verify contents
11131         echo "verifying target fid"
11132         fidc=$(changelog_extract_field $MDT0 "CREAT" "timestamp" "t=")
11133         fidf=$($LFS path2fid $DIR/$tdir/pics/zach/timestamp)
11134         [ "$fidc" == "$fidf" ] ||
11135                 err17935 "fid in changelog $fidc != file fid $fidf"
11136         echo "verifying parent fid"
11137         fidc=$(changelog_extract_field $MDT0 "CREAT" "timestamp" "p=")
11138         fidf=$($LFS path2fid $DIR/$tdir/pics/zach)
11139         [ "$fidc" == "$fidf" ] ||
11140                 err17935 "pfid in changelog $fidc != dir fid $fidf"
11141
11142         USER_REC1=$($GET_CL_USERS | awk "\$1 == \"$CL_USER\" {print \$2}")
11143         $LFS changelog_clear $MDT0 $CL_USER $(($USER_REC1 + 5))
11144         USER_REC2=$($GET_CL_USERS | awk "\$1 == \"$CL_USER\" {print \$2}")
11145         echo "verifying user clear: $(( $USER_REC1 + 5 )) == $USER_REC2"
11146         [ $USER_REC2 == $(($USER_REC1 + 5)) ] ||
11147                 err17935 "user index expected $(($USER_REC1 + 5)) is $USER_REC2"
11148
11149         MIN_REC=$($GET_CL_USERS |
11150                 awk 'min == "" || $2 < min {min = $2}; END {print min}')
11151         FIRST_REC=$($LFS changelog $MDT0 | head -n1 | awk '{print $1}')
11152         echo "verifying min purge: $(( $MIN_REC + 1 )) == $FIRST_REC"
11153         [ $FIRST_REC == $(($MIN_REC + 1)) ] ||
11154                 err17935 "first index should be $(($MIN_REC + 1)) is $FIRST_REC"
11155
11156         # LU-3446 changelog index reset on MDT restart
11157         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
11158         CUR_REC1=$($GET_CL_USERS | head -n1 | cut -f3 -d' ')
11159         $LFS changelog_clear $MDT0 $CL_USER 0
11160         stop $SINGLEMDS || error "Fail to stop MDT."
11161         start $SINGLEMDS $MDT_DEV $MDS_MOUNT_OPTS || error "Fail to start MDT."
11162         CUR_REC2=$($GET_CL_USERS | head -n1 | cut -f3 -d' ')
11163         echo "verifying index survives MDT restart: $CUR_REC1 == $CUR_REC2"
11164         [ $CUR_REC1 == $CUR_REC2 ] ||
11165                 err17935 "current index should be $CUR_REC1 is $CUR_REC2"
11166
11167         echo "verifying user deregister"
11168         cleanup_changelog
11169         $GET_CL_USERS | grep -q $CL_USER &&
11170                 error "User $CL_USER still in changelog_users"
11171
11172         USERS=$(( $($GET_CL_USERS | wc -l) - 2 ))
11173         if [ $CL_USER -eq 0 ]; then
11174                 LAST_REC1=$($GET_CL_USERS | head -n1 | cut -f3 -d' ')
11175                 touch $DIR/$tdir/chloe
11176                 LAST_REC2=$($GET_CL_USERS | head -n1 | cut -f3 -d' ')
11177                 echo "verify changelogs are off: $LAST_REC1 == $LAST_REC2"
11178                 [ $LAST_REC1 == $LAST_REC2 ] || error "changelogs not off"
11179         else
11180                 echo "$CL_USER other changelog users; can't verify off"
11181         fi
11182 }
11183 run_test 160a "changelog sanity"
11184
11185 test_160b() { # LU-3587
11186         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11187         remote_mds_nodsh && skip "remote MDS with nodsh" && return
11188         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] ||
11189                 { skip "Need MDS version at least 2.2.0"; return; }
11190
11191         local CL_USERS="mdd.$MDT0.changelog_users"
11192         local GET_CL_USERS="do_facet $SINGLEMDS $LCTL get_param -n $CL_USERS"
11193         CL_USER=$(do_facet $SINGLEMDS $LCTL --device $MDT0 \
11194                 changelog_register -n)
11195         echo "Registered as changelog user $CL_USER"
11196         trap cleanup_changelog EXIT
11197         $GET_CL_USERS | grep -q $CL_USER ||
11198                 error "User $CL_USER not found in changelog_users"
11199
11200         local LONGNAME1=$(str_repeat a 255)
11201         local LONGNAME2=$(str_repeat b 255)
11202
11203         cd $DIR
11204         echo "creating very long named file"
11205         touch $LONGNAME1 || error "create of $LONGNAME1 failed"
11206         echo "moving very long named file"
11207         mv $LONGNAME1 $LONGNAME2
11208
11209         $LFS changelog $MDT0 | grep RENME
11210         rm -f $LONGNAME2
11211         cleanup_changelog
11212 }
11213 run_test 160b "Verify that very long rename doesn't crash in changelog"
11214
11215 test_160c() {
11216         remote_mds_nodsh && skip "remote MDS with nodsh" && return
11217
11218         local rc=0
11219         local server_version=$(lustre_version_code $SINGLEMDS)
11220
11221         [[ $server_version -gt $(version_code 2.5.57) ]] ||
11222                 [[ $server_version -gt $(version_code 2.5.1) &&
11223                    $server_version -lt $(version_code 2.5.50) ]] ||
11224                 { skip "Need MDS version at least 2.5.58 or 2.5.2+"; return; }
11225         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11226
11227         # Registration step
11228         CL_USER=$(do_facet $SINGLEMDS $LCTL --device $MDT0 \
11229                 changelog_register -n)
11230         trap cleanup_changelog EXIT
11231
11232         rm -rf $DIR/$tdir
11233         mkdir -p $DIR/$tdir
11234         $MCREATE $DIR/$tdir/foo_160c
11235         changelog_chmask "TRUNC"
11236         $TRUNCATE $DIR/$tdir/foo_160c 200
11237         changelog_chmask "TRUNC"
11238         $TRUNCATE $DIR/$tdir/foo_160c 199
11239         $LFS changelog $MDT0
11240         TRUNCS=$($LFS changelog $MDT0 | tail -5 | grep -c "TRUNC")
11241         [ $TRUNCS -eq 1 ] || err17935 "TRUNC changelog mask count $TRUNCS != 1"
11242         $LFS changelog_clear $MDT0 $CL_USER 0
11243
11244         # Deregistration step
11245         cleanup_changelog
11246 }
11247 run_test 160c "verify that changelog log catch the truncate event"
11248
11249 test_160d() {
11250         remote_mds_nodsh && skip "remote MDS with nodsh" && return
11251         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
11252
11253         local server_version=$(lustre_version_code mds1)
11254         local CL_MASK_PARAM="mdd.$MDT0.changelog_mask"
11255
11256         [[ $server_version -ge $(version_code 2.7.60) ]] ||
11257                 { skip "Need MDS version at least 2.7.60+"; return; }
11258         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11259
11260         # Registration step
11261         CL_USER=$(do_facet mds1 $LCTL --device $MDT0 \
11262                 changelog_register -n)
11263
11264         trap cleanup_changelog EXIT
11265         mkdir -p $DIR/$tdir/migrate_dir
11266         $LFS changelog_clear $MDT0 $CL_USER 0
11267
11268         $LFS migrate -m 1 $DIR/$tdir/migrate_dir || error "migrate fails"
11269         $LFS changelog $MDT0
11270         MIGRATES=$($LFS changelog $MDT0 | tail -5 | grep -c "MIGRT")
11271         $LFS changelog_clear $MDT0 $CL_USER 0
11272         [ $MIGRATES -eq 1 ] ||
11273                 error "MIGRATE changelog mask count $MIGRATES != 1"
11274
11275         # Deregistration step
11276         cleanup_changelog
11277 }
11278 run_test 160d "verify that changelog log catch the migrate event"
11279
11280 test_160e() {
11281         remote_mds_nodsh && skip "remote MDS with nodsh" && return
11282
11283         # Create a user
11284         CL_USER=$(do_facet $SINGLEMDS $LCTL --device $MDT0 \
11285                 changelog_register -n)
11286         echo "Registered as changelog user $CL_USER"
11287         trap cleanup_changelog EXIT
11288
11289         # Delete a future user (expect fail)
11290         do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister cl77
11291         local rc=$?
11292
11293         if [ $rc -eq 0 ]; then
11294                 error "Deleted non-existant user cl77"
11295         elif [ $rc -ne 2 ]; then
11296                 error "changelog_deregister failed with $rc, " \
11297                         "expected 2 (ENOENT)"
11298         fi
11299
11300         # Clear to a bad index (1 billion should be safe)
11301         $LFS changelog_clear $MDT0 $CL_USER 1000000000
11302         rc=$?
11303
11304         if [ $rc -eq 0 ]; then
11305                 error "Successfully cleared to invalid CL index"
11306         elif [ $rc -ne 22 ]; then
11307                 error "changelog_clear failed with $rc, expected 22 (EINVAL)"
11308         fi
11309 }
11310 run_test 160e "changelog negative testing"
11311
11312 test_161a() {
11313         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11314         test_mkdir -p -c1 $DIR/$tdir
11315         cp /etc/hosts $DIR/$tdir/$tfile
11316         test_mkdir -c1 $DIR/$tdir/foo1
11317         test_mkdir -c1 $DIR/$tdir/foo2
11318         ln $DIR/$tdir/$tfile $DIR/$tdir/foo1/sofia
11319         ln $DIR/$tdir/$tfile $DIR/$tdir/foo2/zachary
11320         ln $DIR/$tdir/$tfile $DIR/$tdir/foo1/luna
11321         ln $DIR/$tdir/$tfile $DIR/$tdir/foo2/thor
11322         local FID=$($LFS path2fid $DIR/$tdir/$tfile | tr -d '[]')
11323         if [ "$($LFS fid2path $DIR $FID | wc -l)" != "5" ]; then
11324                 $LFS fid2path $DIR $FID
11325                 err17935 "bad link ea"
11326         fi
11327     # middle
11328     rm $DIR/$tdir/foo2/zachary
11329     # last
11330     rm $DIR/$tdir/foo2/thor
11331     # first
11332     rm $DIR/$tdir/$tfile
11333     # rename
11334     mv $DIR/$tdir/foo1/sofia $DIR/$tdir/foo2/maggie
11335     if [ "$($LFS fid2path $FSNAME --link 1 $FID)" != "$tdir/foo2/maggie" ]
11336         then
11337         $LFS fid2path $DIR $FID
11338         err17935 "bad link rename"
11339     fi
11340     rm $DIR/$tdir/foo2/maggie
11341
11342         # overflow the EA
11343         local longname=filename_avg_len_is_thirty_two_
11344         createmany -l$DIR/$tdir/foo1/luna $DIR/$tdir/foo2/$longname 1000 ||
11345                 error "failed to hardlink many files"
11346         links=$($LFS fid2path $DIR $FID | wc -l)
11347         echo -n "${links}/1000 links in link EA"
11348         [[ $links -gt 60 ]] ||
11349                 err17935 "expected at least 60 links in link EA"
11350         unlinkmany $DIR/$tdir/foo2/$longname 1000 ||
11351                 error "failed to unlink many hardlinks"
11352 }
11353 run_test 161a "link ea sanity"
11354
11355 test_161b() {
11356         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11357         [ $MDSCOUNT -lt 2 ] && skip "skipping remote directory test" && return
11358         local MDTIDX=1
11359         local remote_dir=$DIR/$tdir/remote_dir
11360
11361         mkdir -p $DIR/$tdir
11362         $LFS mkdir -i $MDTIDX $remote_dir ||
11363                 error "create remote directory failed"
11364
11365         cp /etc/hosts $remote_dir/$tfile
11366         mkdir -p $remote_dir/foo1
11367         mkdir -p $remote_dir/foo2
11368         ln $remote_dir/$tfile $remote_dir/foo1/sofia
11369         ln $remote_dir/$tfile $remote_dir/foo2/zachary
11370         ln $remote_dir/$tfile $remote_dir/foo1/luna
11371         ln $remote_dir/$tfile $remote_dir/foo2/thor
11372
11373         local FID=$($LFS path2fid $remote_dir/$tfile | tr -d '[' |
11374                      tr -d ']')
11375         if [ "$($LFS fid2path $DIR $FID | wc -l)" != "5" ]; then
11376                 $LFS fid2path $DIR $FID
11377                 err17935 "bad link ea"
11378         fi
11379         # middle
11380         rm $remote_dir/foo2/zachary
11381         # last
11382         rm $remote_dir/foo2/thor
11383         # first
11384         rm $remote_dir/$tfile
11385         # rename
11386         mv $remote_dir/foo1/sofia $remote_dir/foo2/maggie
11387         local link_path=$($LFS fid2path $FSNAME --link 1 $FID)
11388         if [ "$DIR/$link_path" != "$remote_dir/foo2/maggie" ]; then
11389                 $LFS fid2path $DIR $FID
11390                 err17935 "bad link rename"
11391         fi
11392         rm $remote_dir/foo2/maggie
11393
11394         # overflow the EA
11395         local longname=filename_avg_len_is_thirty_two_
11396         createmany -l$remote_dir/foo1/luna $remote_dir/foo2/$longname 1000 ||
11397                 error "failed to hardlink many files"
11398         links=$($LFS fid2path $DIR $FID | wc -l)
11399         echo -n "${links}/1000 links in link EA"
11400         [[ ${links} -gt 60 ]] ||
11401                 err17935 "expected at least 60 links in link EA"
11402         unlinkmany $remote_dir/foo2/$longname 1000 ||
11403         error "failed to unlink many hardlinks"
11404 }
11405 run_test 161b "link ea sanity under remote directory"
11406
11407 test_161c() {
11408         remote_mds_nodsh && skip "remote MDS with nodsh" && return
11409         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11410         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.1.5) ]] &&
11411                 skip "Need MDS version at least 2.1.5" && return
11412
11413         # define CLF_RENAME_LAST 0x0001
11414         # rename overwrite a target having nlink = 1 (changelog flag 0x1)
11415         CL_USER=$(do_facet $SINGLEMDS $LCTL --device $MDT0 \
11416                 changelog_register -n)
11417
11418         trap cleanup_changelog EXIT
11419         rm -rf $DIR/$tdir
11420         mkdir -p $DIR/$tdir
11421         touch $DIR/$tdir/foo_161c
11422         touch $DIR/$tdir/bar_161c
11423         mv -f $DIR/$tdir/foo_161c $DIR/$tdir/bar_161c
11424         $LFS changelog $MDT0 | grep RENME
11425         local flags=$($LFS changelog $MDT0 | grep RENME | tail -1 | \
11426                 cut -f5 -d' ')
11427         $LFS changelog_clear $MDT0 $CL_USER 0
11428         if [ x$flags != "x0x1" ]; then
11429                 error "flag $flags is not 0x1"
11430         fi
11431         echo "rename overwrite a target having nlink = 1," \
11432                 "changelog record has flags of $flags"
11433
11434         # rename overwrite a target having nlink > 1 (changelog flag 0x0)
11435         touch $DIR/$tdir/foo_161c
11436         touch $DIR/$tdir/bar_161c
11437         ln $DIR/$tdir/bar_161c $DIR/$tdir/foobar_161c
11438         mv -f $DIR/$tdir/foo_161c $DIR/$tdir/bar_161c
11439         $LFS changelog $MDT0 | grep RENME
11440         flags=$($LFS changelog $MDT0 | grep RENME | tail -1 | cut -f5 -d' ')
11441         $LFS changelog_clear $MDT0 $CL_USER 0
11442         if [ x$flags != "x0x0" ]; then
11443                 error "flag $flags is not 0x0"
11444         fi
11445         echo "rename overwrite a target having nlink > 1," \
11446                 "changelog record has flags of $flags"
11447
11448         # rename doesn't overwrite a target (changelog flag 0x0)
11449         touch $DIR/$tdir/foo_161c
11450         mv -f $DIR/$tdir/foo_161c $DIR/$tdir/foo2_161c
11451         $LFS changelog $MDT0 | grep RENME
11452         flags=$($LFS changelog $MDT0 | grep RENME | tail -1 | cut -f5 -d' ')
11453         $LFS changelog_clear $MDT0 $CL_USER 0
11454         if [ x$flags != "x0x0" ]; then
11455                 error "flag $flags is not 0x0"
11456         fi
11457         echo "rename doesn't overwrite a target," \
11458                 "changelog record has flags of $flags"
11459
11460         # define CLF_UNLINK_LAST 0x0001
11461         # unlink a file having nlink = 1 (changelog flag 0x1)
11462         rm -f $DIR/$tdir/foo2_161c
11463         $LFS changelog $MDT0 | grep UNLNK
11464         flags=$($LFS changelog $MDT0 | grep UNLNK | tail -1 | cut -f5 -d' ')
11465         $LFS changelog_clear $MDT0 $CL_USER 0
11466         if [ x$flags != "x0x1" ]; then
11467                 error "flag $flags is not 0x1"
11468         fi
11469         echo "unlink a file having nlink = 1," \
11470                 "changelog record has flags of $flags"
11471
11472         # unlink a file having nlink > 1 (changelog flag 0x0)
11473         ln -f $DIR/$tdir/bar_161c $DIR/$tdir/foobar_161c
11474         rm -f $DIR/$tdir/foobar_161c
11475         $LFS changelog $MDT0 | grep UNLNK
11476         flags=$($LFS changelog $MDT0 | grep UNLNK | tail -1 | cut -f5 -d' ')
11477         $LFS changelog_clear $MDT0 $CL_USER 0
11478         if [ x$flags != "x0x0" ]; then
11479                 error "flag $flags is not 0x0"
11480         fi
11481         echo "unlink a file having nlink > 1," \
11482                 "changelog record has flags of $flags"
11483         cleanup_changelog
11484 }
11485 run_test 161c "check CL_RENME[UNLINK] changelog record flags"
11486
11487 test_161d() {
11488         local user
11489         local pid
11490         local fid
11491
11492         # cleanup previous run
11493         rm -rf $DIR/$tdir/$tfile
11494
11495         user=$(do_facet $SINGLEMDS $LCTL --device $MDT0 \
11496                 changelog_register -n)
11497         [[ $? -eq 0 ]] || error "changelog_register failed"
11498
11499         # work in a standalone dir to avoid locking on $DIR/$MOUNT to
11500         # interfer with $MOUNT/.lustre/fid/ access
11501         mkdir $DIR/$tdir
11502         [[ $? -eq 0 ]] || error "mkdir failed"
11503
11504         #define OBD_FAIL_LLITE_CREATE_NODE_PAUSE 0x140c | OBD_FAIL_ONCE
11505         $LCTL set_param fail_loc=0x8000140c
11506         # 5s pause
11507         $LCTL set_param fail_val=5
11508
11509         # create file
11510         echo foofoo > $DIR/$tdir/$tfile &
11511         pid=$!
11512
11513         # wait for create to be delayed
11514         sleep 2
11515
11516         ps -p $pid
11517         [[ $? -eq 0 ]] || error "create should be blocked"
11518
11519         local tempfile=$(mktemp)
11520         fid=$(changelog_extract_field $MDT0 "CREAT" "$tfile" "t=")
11521         cat $MOUNT/.lustre/fid/$fid 2>/dev/null >$tempfile || error "cat failed"
11522         # some delay may occur during ChangeLog publishing and file read just
11523         # above, that could allow file write to happen finally
11524         [[ -s $tempfile ]] && echo "file should be empty"
11525
11526         $LCTL set_param fail_loc=0
11527
11528         wait $pid
11529         [[ $? -eq 0 ]] || error "create failed"
11530
11531         $LFS changelog_clear $MDT0 $user 0
11532         do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister $user
11533 }
11534 run_test 161d "create with concurrent .lustre/fid access"
11535
11536 check_path() {
11537     local expected=$1
11538     shift
11539     local fid=$2
11540
11541     local path=$(${LFS} fid2path $*)
11542     # Remove the '//' indicating a remote directory
11543     path=$(echo $path | sed 's#//#/#g')
11544     RC=$?
11545
11546     if [ $RC -ne 0 ]; then
11547         err17935 "path looked up of $expected failed. Error $RC"
11548         return $RC
11549     elif [ "${path}" != "${expected}" ]; then
11550         err17935 "path looked up \"${path}\" instead of \"${expected}\""
11551         return 2
11552     fi
11553     echo "fid $fid resolves to path $path (expected $expected)"
11554 }
11555
11556 test_162a() { # was test_162
11557         # Make changes to filesystem
11558         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11559         test_mkdir -p -c1 $DIR/$tdir/d2
11560         touch $DIR/$tdir/d2/$tfile
11561         touch $DIR/$tdir/d2/x1
11562         touch $DIR/$tdir/d2/x2
11563         test_mkdir -p -c1 $DIR/$tdir/d2/a/b/c
11564         test_mkdir -p -c1 $DIR/$tdir/d2/p/q/r
11565         # regular file
11566         FID=$($LFS path2fid $DIR/$tdir/d2/$tfile | tr -d '[]')
11567         check_path "$tdir/d2/$tfile" $FSNAME $FID --link 0 ||
11568                 error "check path $tdir/d2/$tfile failed"
11569
11570         # softlink
11571         ln -s $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/p/q/r/slink
11572         FID=$($LFS path2fid $DIR/$tdir/d2/p/q/r/slink | tr -d '[]')
11573         check_path "$tdir/d2/p/q/r/slink" $FSNAME $FID --link 0 ||
11574                 error "check path $tdir/d2/p/q/r/slink failed"
11575
11576         # softlink to wrong file
11577         ln -s /this/is/garbage $DIR/$tdir/d2/p/q/r/slink.wrong
11578         FID=$($LFS path2fid $DIR/$tdir/d2/p/q/r/slink.wrong | tr -d '[]')
11579         check_path "$tdir/d2/p/q/r/slink.wrong" $FSNAME $FID --link 0 ||
11580                 error "check path $tdir/d2/p/q/r/slink.wrong failed"
11581
11582         # hardlink
11583         ln $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/p/q/r/hlink
11584         mv $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/a/b/c/new_file
11585         FID=$($LFS path2fid $DIR/$tdir/d2/a/b/c/new_file | tr -d '[]')
11586         # fid2path dir/fsname should both work
11587         check_path "$tdir/d2/a/b/c/new_file" $FSNAME $FID --link 1 ||
11588                 error "check path $tdir/d2/a/b/c/new_file failed"
11589         check_path "$DIR/$tdir/d2/p/q/r/hlink" $DIR $FID --link 0 ||
11590                 error "check path $DIR/$tdir/d2/p/q/r/hlink failed"
11591
11592         # hardlink count: check that there are 2 links
11593         # Doesnt work with CMD yet: 17935
11594         ${LFS} fid2path $DIR $FID | wc -l | grep -q 2 || \
11595                 err17935 "expected 2 links"
11596
11597         # hardlink indexing: remove the first link
11598         rm $DIR/$tdir/d2/p/q/r/hlink
11599         check_path "$tdir/d2/a/b/c/new_file" $FSNAME $FID --link 0 ||
11600                 error "check path $DIR/$tdir/d2/a/b/c/new_file failed"
11601
11602         return 0
11603 }
11604 run_test 162a "path lookup sanity"
11605
11606 test_162b() {
11607         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11608         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
11609
11610         mkdir $DIR/$tdir
11611         $LFS setdirstripe -i0 -c$MDSCOUNT -t all_char $DIR/$tdir/striped_dir ||
11612                                 error "create striped dir failed"
11613
11614         local FID=$($LFS getdirstripe $DIR/$tdir/striped_dir |
11615                                         tail -n 1 | awk '{print $2}')
11616         stat $MOUNT/.lustre/fid/$FID && error "sub_stripe can be accessed"
11617
11618         touch $DIR/$tdir/striped_dir/f{0..4} || error "touch f0..4 failed"
11619         mkdir $DIR/$tdir/striped_dir/d{0..4} || error "mkdir d0..4 failed"
11620
11621         # regular file
11622         for ((i=0;i<5;i++)); do
11623                 FID=$($LFS path2fid $DIR/$tdir/striped_dir/f$i | tr -d '[]') ||
11624                         error "get fid for f$i failed"
11625                 check_path "$tdir/striped_dir/f$i" $FSNAME $FID --link 0 ||
11626                         error "check path $tdir/striped_dir/f$i failed"
11627
11628                 FID=$($LFS path2fid $DIR/$tdir/striped_dir/d$i | tr -d '[]') ||
11629                         error "get fid for d$i failed"
11630                 check_path "$tdir/striped_dir/d$i" $FSNAME $FID --link 0 ||
11631                         error "check path $tdir/striped_dir/d$i failed"
11632         done
11633
11634         return 0
11635 }
11636 run_test 162b "striped directory path lookup sanity"
11637
11638 # LU-4239: Verify fid2path works with paths 100 or more directories deep
11639 test_162c() {
11640         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.51) ]] &&
11641                 skip "Need MDS version at least 2.7.51" && return
11642         test_mkdir $DIR/$tdir.local
11643         test_mkdir $DIR/$tdir.remote
11644         local lpath=$tdir.local
11645         local rpath=$tdir.remote
11646
11647         for ((i = 0; i <= 101; i++)); do
11648                 lpath="$lpath/$i"
11649                 mkdir $DIR/$lpath
11650                 FID=$($LFS path2fid $DIR/$lpath | tr -d '[]') ||
11651                         error "get fid for local directory $DIR/$lpath failed"
11652                 check_path "$DIR/$lpath" $MOUNT $FID --link 0 ||
11653                         error "check path for local directory $DIR/$lpath failed"
11654
11655                 rpath="$rpath/$i"
11656                 test_mkdir $DIR/$rpath
11657                 FID=$($LFS path2fid $DIR/$rpath | tr -d '[]') ||
11658                         error "get fid for remote directory $DIR/$rpath failed"
11659                 check_path "$DIR/$rpath" $MOUNT $FID --link 0 ||
11660                         error "check path for remote directory $DIR/$rpath failed"
11661         done
11662
11663         return 0
11664 }
11665 run_test 162c "fid2path works with paths 100 or more directories deep"
11666
11667 test_169() {
11668         # do directio so as not to populate the page cache
11669         log "creating a 10 Mb file"
11670         $MULTIOP $DIR/$tfile oO_CREAT:O_DIRECT:O_RDWR:w$((10*1048576))c || error "multiop failed while creating a file"
11671         log "starting reads"
11672         dd if=$DIR/$tfile of=/dev/null bs=4096 &
11673         log "truncating the file"
11674         $MULTIOP $DIR/$tfile oO_TRUNC:c || error "multiop failed while truncating the file"
11675         log "killing dd"
11676         kill %+ || true # reads might have finished
11677         echo "wait until dd is finished"
11678         wait
11679         log "removing the temporary file"
11680         rm -rf $DIR/$tfile || error "tmp file removal failed"
11681 }
11682 run_test 169 "parallel read and truncate should not deadlock"
11683
11684 test_170() {
11685         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11686         $LCTL clear     # bug 18514
11687         $LCTL debug_daemon start $TMP/${tfile}_log_good
11688         touch $DIR/$tfile
11689         $LCTL debug_daemon stop
11690         sed -e "s/^...../a/g" $TMP/${tfile}_log_good > $TMP/${tfile}_log_bad ||
11691                error "sed failed to read log_good"
11692
11693         $LCTL debug_daemon start $TMP/${tfile}_log_good
11694         rm -rf $DIR/$tfile
11695         $LCTL debug_daemon stop
11696
11697         $LCTL df $TMP/${tfile}_log_bad > $TMP/${tfile}_log_bad.out 2>&1 ||
11698                error "lctl df log_bad failed"
11699
11700         local bad_line=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $9}')
11701         local good_line1=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $5}')
11702
11703         $LCTL df $TMP/${tfile}_log_good > $TMP/${tfile}_log_good.out 2>&1
11704         local good_line2=$(tail -n 1 $TMP/${tfile}_log_good.out | awk '{print $5}')
11705
11706         [ "$bad_line" ] && [ "$good_line1" ] && [ "$good_line2" ] ||
11707                 error "bad_line good_line1 good_line2 are empty"
11708
11709         cat $TMP/${tfile}_log_good >> $TMP/${tfile}_logs_corrupt
11710         cat $TMP/${tfile}_log_bad >> $TMP/${tfile}_logs_corrupt
11711         cat $TMP/${tfile}_log_good >> $TMP/${tfile}_logs_corrupt
11712
11713         $LCTL df $TMP/${tfile}_logs_corrupt > $TMP/${tfile}_log_bad.out 2>&1
11714         local bad_line_new=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $9}')
11715         local good_line_new=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $5}')
11716
11717         [ "$bad_line_new" ] && [ "$good_line_new" ] ||
11718                 error "bad_line_new good_line_new are empty"
11719
11720         local expected_good=$((good_line1 + good_line2*2))
11721
11722         rm -f $TMP/${tfile}*
11723         # LU-231, short malformed line may not be counted into bad lines
11724         if [ $bad_line -ne $bad_line_new ] &&
11725                    [ $bad_line -ne $((bad_line_new - 1)) ]; then
11726                 error "expected $bad_line bad lines, but got $bad_line_new"
11727                 return 1
11728         fi
11729
11730         if [ $expected_good -ne $good_line_new ]; then
11731                 error "expected $expected_good good lines, but got $good_line_new"
11732                 return 2
11733         fi
11734         true
11735 }
11736 run_test 170 "test lctl df to handle corrupted log ====================="
11737
11738 test_171() { # bug20592
11739         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11740 #define OBD_FAIL_PTLRPC_DUMP_LOG         0x50e
11741         $LCTL set_param fail_loc=0x50e
11742         $LCTL set_param fail_val=3000
11743         multiop_bg_pause $DIR/$tfile O_s || true
11744         local MULTIPID=$!
11745         kill -USR1 $MULTIPID
11746         # cause log dump
11747         sleep 3
11748         wait $MULTIPID
11749         if dmesg | grep "recursive fault"; then
11750                 error "caught a recursive fault"
11751         fi
11752         $LCTL set_param fail_loc=0
11753         true
11754 }
11755 run_test 171 "test libcfs_debug_dumplog_thread stuck in do_exit() ======"
11756
11757 # it would be good to share it with obdfilter-survey/iokit-libecho code
11758 setup_obdecho_osc () {
11759         local rc=0
11760         local ost_nid=$1
11761         local obdfilter_name=$2
11762         echo "Creating new osc for $obdfilter_name on $ost_nid"
11763         # make sure we can find loopback nid
11764         $LCTL add_uuid $ost_nid $ost_nid >/dev/null 2>&1
11765
11766         [ $rc -eq 0 ] && { $LCTL attach osc ${obdfilter_name}_osc     \
11767                            ${obdfilter_name}_osc_UUID || rc=2; }
11768         [ $rc -eq 0 ] && { $LCTL --device ${obdfilter_name}_osc setup \
11769                            ${obdfilter_name}_UUID  $ost_nid || rc=3; }
11770         return $rc
11771 }
11772
11773 cleanup_obdecho_osc () {
11774         local obdfilter_name=$1
11775         $LCTL --device ${obdfilter_name}_osc cleanup >/dev/null
11776         $LCTL --device ${obdfilter_name}_osc detach  >/dev/null
11777         return 0
11778 }
11779
11780 obdecho_test() {
11781         local OBD=$1
11782         local node=$2
11783         local pages=${3:-64}
11784         local rc=0
11785         local id
11786
11787         local count=10
11788         local obd_size=$(get_obd_size $node $OBD)
11789         local page_size=$(get_page_size $node)
11790         if [[ -n "$obd_size" ]]; then
11791                 local new_count=$((obd_size / (pages * page_size / 1024)))
11792                 [[ $new_count -ge $count ]] || count=$new_count
11793         fi
11794
11795         do_facet $node "$LCTL attach echo_client ec ec_uuid" || rc=1
11796         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec setup $OBD" ||
11797                            rc=2; }
11798         if [ $rc -eq 0 ]; then
11799             id=$(do_facet $node "$LCTL --device ec create 1"  | awk '/object id/ {print $6}')
11800             [ ${PIPESTATUS[0]} -eq 0 -a -n "$id" ] || rc=3
11801         fi
11802         echo "New object id is $id"
11803         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec getattr $id" ||
11804                            rc=4; }
11805         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec "                 \
11806                            "test_brw $count w v $pages $id" || rc=4; }
11807         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec destroy $id 1" ||
11808                            rc=4; }
11809         [ $rc -eq 0 -o $rc -gt 2 ] && { do_facet $node "$LCTL --device ec "    \
11810                                         "cleanup" || rc=5; }
11811         [ $rc -eq 0 -o $rc -gt 1 ] && { do_facet $node "$LCTL --device ec "    \
11812                                         "detach" || rc=6; }
11813         [ $rc -ne 0 ] && echo "obecho_create_test failed: $rc"
11814         return $rc
11815 }
11816
11817 test_180a() {
11818         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11819         remote_ost_nodsh && skip "remote OST with nodsh" && return
11820         local rc=0
11821         local rmmod_local=0
11822
11823         if ! module_loaded obdecho; then
11824             load_module obdecho/obdecho
11825             rmmod_local=1
11826         fi
11827
11828         local osc=$($LCTL dl | grep -v mdt | awk '$3 == "osc" {print $4; exit}')
11829         local host=$(lctl get_param -n osc.$osc.import |
11830                              awk '/current_connection:/ {print $2}' )
11831         local target=$(lctl get_param -n osc.$osc.import |
11832                              awk '/target:/ {print $2}' )
11833         target=${target%_UUID}
11834
11835         [[ -n $target ]]  && { setup_obdecho_osc $host $target || rc=1; } || rc=1
11836         [ $rc -eq 0 ] && { obdecho_test ${target}_osc client || rc=2; }
11837         [[ -n $target ]] && cleanup_obdecho_osc $target
11838         [ $rmmod_local -eq 1 ] && rmmod obdecho
11839         return $rc
11840 }
11841 run_test 180a "test obdecho on osc"
11842
11843 test_180b() {
11844         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11845         remote_ost_nodsh && skip "remote OST with nodsh" && return
11846         local rc=0
11847         local rmmod_remote=0
11848
11849         do_rpc_nodes $(facet_active_host ost1) load_module obdecho/obdecho &&
11850                 rmmod_remote=true || error "failed to load module obdecho"
11851         target=$(do_facet ost1 $LCTL dl | awk '/obdfilter/ {print $4;exit}')
11852         [[ -n $target ]] && { obdecho_test $target ost1 || rc=1; }
11853         $rmmod_remote && do_facet ost1 "rmmod obdecho"
11854         return $rc
11855 }
11856 run_test 180b "test obdecho directly on obdfilter"
11857
11858 test_180c() { # LU-2598
11859         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11860         remote_ost_nodsh && skip "remote OST with nodsh" && return
11861         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.0) ]] &&
11862                 skip "Need MDS version at least 2.4.0" && return
11863
11864         local rc=0
11865         local rmmod_remote=false
11866         local pages=16384 # 64MB bulk I/O RPC size
11867         local target
11868
11869         do_rpc_nodes $(facet_active_host ost1) load_module obdecho/obdecho &&
11870                 rmmod_remote=true || error "failed to load module obdecho"
11871
11872         target=$(do_facet ost1 $LCTL dl | awk '/obdfilter/ { print $4 }' |
11873                 head -n1)
11874         if [ -n "$target" ]; then
11875                 obdecho_test "$target" ost1 "$pages" || rc=${PIPESTATUS[0]}
11876         else
11877                 echo "there is no obdfilter target on ost1"
11878                 rc=2
11879         fi
11880         $rmmod_remote && do_facet ost1 "rmmod obdecho" || true
11881         return $rc
11882 }
11883 run_test 180c "test huge bulk I/O size on obdfilter, don't LASSERT"
11884
11885 test_181() { # bug 22177
11886         test_mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
11887         # create enough files to index the directory
11888         createmany -o $DIR/$tdir/foobar 4000
11889         # print attributes for debug purpose
11890         lsattr -d .
11891         # open dir
11892         multiop_bg_pause $DIR/$tdir D_Sc || return 1
11893         MULTIPID=$!
11894         # remove the files & current working dir
11895         unlinkmany $DIR/$tdir/foobar 4000
11896         rmdir $DIR/$tdir
11897         kill -USR1 $MULTIPID
11898         wait $MULTIPID
11899         stat $DIR/$tdir && error "open-unlinked dir was not removed!"
11900         return 0
11901 }
11902 run_test 181 "Test open-unlinked dir ========================"
11903
11904 test_182() {
11905         local fcount=1000
11906         local tcount=10
11907
11908         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
11909
11910         $LCTL set_param mdc.*.rpc_stats=clear
11911
11912         for (( i = 0; i < $tcount; i++ )) ; do
11913                 mkdir $DIR/$tdir/$i
11914         done
11915
11916         for (( i = 0; i < $tcount; i++ )) ; do
11917                 createmany -o $DIR/$tdir/$i/f- $fcount &
11918         done
11919         wait
11920
11921         for (( i = 0; i < $tcount; i++ )) ; do
11922                 unlinkmany $DIR/$tdir/$i/f- $fcount &
11923         done
11924         wait
11925
11926         $LCTL get_param mdc.*.rpc_stats
11927
11928         rm -rf $DIR/$tdir
11929 }
11930 run_test 182 "Test parallel modify metadata operations ================"
11931
11932 test_183() { # LU-2275
11933         remote_mds_nodsh && skip "remote MDS with nodsh" && return
11934         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.56) ]] &&
11935                 skip "Need MDS version at least 2.3.56" && return
11936
11937         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11938         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
11939         echo aaa > $DIR/$tdir/$tfile
11940
11941 #define OBD_FAIL_MDS_NEGATIVE_POSITIVE  0x148
11942         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x148
11943
11944         ls -l $DIR/$tdir && error "ls succeeded, should have failed"
11945         cat $DIR/$tdir/$tfile && error "cat succeeded, should have failed"
11946
11947         do_facet $SINGLEMDS $LCTL set_param fail_loc=0
11948
11949         # Flush negative dentry cache
11950         touch $DIR/$tdir/$tfile
11951
11952         # We are not checking for any leaked references here, they'll
11953         # become evident next time we do cleanup with module unload.
11954         rm -rf $DIR/$tdir
11955 }
11956 run_test 183 "No crash or request leak in case of strange dispositions ========"
11957
11958 # test suite 184 is for LU-2016, LU-2017
11959 test_184a() {
11960         check_swap_layouts_support && return 0
11961
11962         dir0=$DIR/$tdir/$testnum
11963         test_mkdir -p -c1 $dir0 || error "creating dir $dir0"
11964         ref1=/etc/passwd
11965         ref2=/etc/group
11966         file1=$dir0/f1
11967         file2=$dir0/f2
11968         $SETSTRIPE -c1 $file1
11969         cp $ref1 $file1
11970         $SETSTRIPE -c2 $file2
11971         cp $ref2 $file2
11972         gen1=$($GETSTRIPE -g $file1)
11973         gen2=$($GETSTRIPE -g $file2)
11974
11975         $LFS swap_layouts $file1 $file2 || error "swap of file layout failed"
11976         gen=$($GETSTRIPE -g $file1)
11977         [[ $gen1 != $gen ]] ||
11978                 "Layout generation on $file1 does not change"
11979         gen=$($GETSTRIPE -g $file2)
11980         [[ $gen2 != $gen ]] ||
11981                 "Layout generation on $file2 does not change"
11982
11983         cmp $ref1 $file2 || error "content compare failed ($ref1 != $file2)"
11984         cmp $ref2 $file1 || error "content compare failed ($ref2 != $file1)"
11985 }
11986 run_test 184a "Basic layout swap"
11987
11988 test_184b() {
11989         check_swap_layouts_support && return 0
11990
11991         dir0=$DIR/$tdir/$testnum
11992         mkdir -p $dir0 || error "creating dir $dir0"
11993         file1=$dir0/f1
11994         file2=$dir0/f2
11995         file3=$dir0/f3
11996         dir1=$dir0/d1
11997         dir2=$dir0/d2
11998         mkdir $dir1 $dir2
11999         $SETSTRIPE -c1 $file1
12000         $SETSTRIPE -c2 $file2
12001         $SETSTRIPE -c1 $file3
12002         chown $RUNAS_ID $file3
12003         gen1=$($GETSTRIPE -g $file1)
12004         gen2=$($GETSTRIPE -g $file2)
12005
12006         $LFS swap_layouts $dir1 $dir2 &&
12007                 error "swap of directories layouts should fail"
12008         $LFS swap_layouts $dir1 $file1 &&
12009                 error "swap of directory and file layouts should fail"
12010         $RUNAS $LFS swap_layouts $file1 $file2 &&
12011                 error "swap of file we cannot write should fail"
12012         $LFS swap_layouts $file1 $file3 &&
12013                 error "swap of file with different owner should fail"
12014         /bin/true # to clear error code
12015 }
12016 run_test 184b "Forbidden layout swap (will generate errors)"
12017
12018 test_184c() {
12019         local cmpn_arg=$(cmp -n 2>&1 | grep "invalid option")
12020         [ -n "$cmpn_arg" ] && skip_env "cmp does not support -n" && return
12021         check_swap_layouts_support && return 0
12022
12023         local dir0=$DIR/$tdir/$testnum
12024         mkdir -p $dir0 || error "creating dir $dir0"
12025
12026         local ref1=$dir0/ref1
12027         local ref2=$dir0/ref2
12028         local file1=$dir0/file1
12029         local file2=$dir0/file2
12030         # create a file large enough for the concurrent test
12031         dd if=/dev/urandom of=$ref1 bs=1M count=$((RANDOM % 50 + 20))
12032         dd if=/dev/urandom of=$ref2 bs=1M count=$((RANDOM % 50 + 20))
12033         echo "ref file size: ref1($(stat -c %s $ref1))," \
12034              "ref2($(stat -c %s $ref2))"
12035
12036         cp $ref2 $file2
12037         dd if=$ref1 of=$file1 bs=16k &
12038         local DD_PID=$!
12039
12040         # Make sure dd starts to copy file
12041         while [ ! -f $file1 ]; do sleep 0.1; done
12042
12043         $LFS swap_layouts $file1 $file2
12044         local rc=$?
12045         wait $DD_PID
12046         [[ $? == 0 ]] || error "concurrent write on $file1 failed"
12047         [[ $rc == 0 ]] || error "swap of $file1 and $file2 failed"
12048
12049         # how many bytes copied before swapping layout
12050         local copied=$(stat -c %s $file2)
12051         local remaining=$(stat -c %s $ref1)
12052         remaining=$((remaining - copied))
12053         echo "Copied $copied bytes before swapping layout..."
12054
12055         cmp -n $copied $file1 $ref2 | grep differ &&
12056                 error "Content mismatch [0, $copied) of ref2 and file1"
12057         cmp -n $copied $file2 $ref1 ||
12058                 error "Content mismatch [0, $copied) of ref1 and file2"
12059         cmp -i $copied:$copied -n $remaining $file1 $ref1 ||
12060                 error "Content mismatch [$copied, EOF) of ref1 and file1"
12061
12062         # clean up
12063         rm -f $ref1 $ref2 $file1 $file2
12064 }
12065 run_test 184c "Concurrent write and layout swap"
12066
12067 test_184d() {
12068         check_swap_layouts_support && return 0
12069         [ -z "$(which getfattr 2>/dev/null)" ] &&
12070                 skip "no getfattr command" && return 0
12071
12072         local file1=$DIR/$tdir/$tfile-1
12073         local file2=$DIR/$tdir/$tfile-2
12074         local file3=$DIR/$tdir/$tfile-3
12075         local lovea1
12076         local lovea2
12077
12078         mkdir -p $DIR/$tdir
12079         touch $file1 || error "create $file1 failed"
12080         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file2 ||
12081                 error "create $file2 failed"
12082         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file3 ||
12083                 error "create $file3 failed"
12084         lovea1=$(get_layout_param $file1)
12085
12086         $LFS swap_layouts $file2 $file3 ||
12087                 error "swap $file2 $file3 layouts failed"
12088         $LFS swap_layouts $file1 $file2 ||
12089                 error "swap $file1 $file2 layouts failed"
12090
12091         lovea2=$(get_layout_param $file2)
12092         echo "$lovea1"
12093         echo "$lovea2"
12094         [ "$lovea1" == "$lovea2" ] || error "lovea $lovea1 != $lovea2"
12095
12096         lovea1=$(getfattr -n trusted.lov $file1 | grep ^trusted)
12097         [[ -z "$lovea1" ]] || error "$file1 shouldn't have lovea"
12098 }
12099 run_test 184d "allow stripeless layouts swap"
12100
12101 test_184e() {
12102         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.94) ]] ||
12103                 { skip "Need MDS version at least 2.6.94"; return 0; }
12104         check_swap_layouts_support && return 0
12105         [ -z "$(which getfattr 2>/dev/null)" ] &&
12106                 skip "no getfattr command" && return 0
12107
12108         local file1=$DIR/$tdir/$tfile-1
12109         local file2=$DIR/$tdir/$tfile-2
12110         local file3=$DIR/$tdir/$tfile-3
12111         local lovea
12112
12113         mkdir -p $DIR/$tdir
12114         touch $file1 || error "create $file1 failed"
12115         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file2 ||
12116                 error "create $file2 failed"
12117         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file3 ||
12118                 error "create $file3 failed"
12119
12120         $LFS swap_layouts $file1 $file2 ||
12121                 error "swap $file1 $file2 layouts failed"
12122
12123         lovea=$(getfattr -n trusted.lov $file1 | grep ^trusted)
12124         [[ -z "$lovea" ]] || error "$file1 shouldn't have lovea"
12125
12126         echo 123 > $file1 || error "Should be able to write into $file1"
12127
12128         $LFS swap_layouts $file1 $file3 ||
12129                 error "swap $file1 $file3 layouts failed"
12130
12131         echo 123 > $file1 || error "Should be able to write into $file1"
12132
12133         rm -rf $file1 $file2 $file3
12134 }
12135 run_test 184e "Recreate layout after stripeless layout swaps"
12136
12137 test_185() { # LU-2441
12138         # LU-3553 - no volatile file support in old servers
12139         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.60) ]] ||
12140                 { skip "Need MDS version at least 2.3.60"; return 0; }
12141
12142         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
12143         touch $DIR/$tdir/spoo
12144         local mtime1=$(stat -c "%Y" $DIR/$tdir)
12145         local fid=$($MULTIOP $DIR/$tdir VFw4096c) ||
12146                 error "cannot create/write a volatile file"
12147         [ "$FILESET" == "" ] &&
12148         $CHECKSTAT -t file $MOUNT/.lustre/fid/$fid 2>/dev/null &&
12149                 error "FID is still valid after close"
12150
12151         multiop_bg_pause $DIR/$tdir vVw4096_c
12152         local multi_pid=$!
12153
12154         local OLD_IFS=$IFS
12155         IFS=":"
12156         local fidv=($fid)
12157         IFS=$OLD_IFS
12158         # assume that the next FID for this client is sequential, since stdout
12159         # is unfortunately eaten by multiop_bg_pause
12160         local n=$((${fidv[1]} + 1))
12161         local next_fid="${fidv[0]}:$(printf "0x%x" $n):${fidv[2]}"
12162         if [ "$FILESET" == "" ]; then
12163                 $CHECKSTAT -t file $MOUNT/.lustre/fid/$next_fid ||
12164                         error "FID is missing before close"
12165         fi
12166         kill -USR1 $multi_pid
12167         # 1 second delay, so if mtime change we will see it
12168         sleep 1
12169         local mtime2=$(stat -c "%Y" $DIR/$tdir)
12170         [[ $mtime1 == $mtime2 ]] || error "mtime has changed"
12171 }
12172 run_test 185 "Volatile file support"
12173
12174 test_187a() {
12175         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12176         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.0) ] &&
12177                 skip "Need MDS version at least 2.3.0" && return
12178
12179         local dir0=$DIR/$tdir/$testnum
12180         mkdir -p $dir0 || error "creating dir $dir0"
12181
12182         local file=$dir0/file1
12183         dd if=/dev/urandom of=$file count=10 bs=1M conv=fsync
12184         local dv1=$($LFS data_version $file)
12185         dd if=/dev/urandom of=$file seek=10 count=1 bs=1M conv=fsync
12186         local dv2=$($LFS data_version $file)
12187         [[ $dv1 != $dv2 ]] ||
12188                 error "data version did not change on write $dv1 == $dv2"
12189
12190         # clean up
12191         rm -f $file1
12192 }
12193 run_test 187a "Test data version change"
12194
12195 test_187b() {
12196         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12197         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.0) ] &&
12198                 skip "Need MDS version at least 2.3.0" && return
12199
12200         local dir0=$DIR/$tdir/$testnum
12201         mkdir -p $dir0 || error "creating dir $dir0"
12202
12203         declare -a DV=$($MULTIOP $dir0 Vw1000xYw1000xY | cut -f3 -d" ")
12204         [[ ${DV[0]} != ${DV[1]} ]] ||
12205                 error "data version did not change on write"\
12206                       " ${DV[0]} == ${DV[1]}"
12207
12208         # clean up
12209         rm -f $file1
12210 }
12211 run_test 187b "Test data version change on volatile file"
12212
12213 test_200() {
12214         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12215         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
12216         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
12217
12218         local POOL=${POOL:-cea1}
12219         local POOL_ROOT=${POOL_ROOT:-$DIR/d200.pools}
12220         local POOL_DIR_NAME=${POOL_DIR_NAME:-dir_tst}
12221         # Pool OST targets
12222         local first_ost=0
12223         local last_ost=$(($OSTCOUNT - 1))
12224         local ost_step=2
12225         local ost_list=$(seq $first_ost $ost_step $last_ost)
12226         local ost_range="$first_ost $last_ost $ost_step"
12227         local test_path=$POOL_ROOT/$POOL_DIR_NAME
12228         local file_dir=$POOL_ROOT/file_tst
12229         local subdir=$test_path/subdir
12230
12231         local rc=0
12232         while : ; do
12233                 # former test_200a test_200b
12234                 pool_add $POOL                          || { rc=$? ; break; }
12235                 pool_add_targets  $POOL $ost_range      || { rc=$? ; break; }
12236                 # former test_200c test_200d
12237                 mkdir -p $test_path
12238                 pool_set_dir      $POOL $test_path      || { rc=$? ; break; }
12239                 pool_check_dir    $POOL $test_path      || { rc=$? ; break; }
12240                 mkdir -p $subdir
12241                 pool_check_dir    $POOL $subdir         || { rc=$? ; break; }
12242                 pool_dir_rel_path $POOL $POOL_DIR_NAME $POOL_ROOT \
12243                                                         || { rc=$? ; break; }
12244                 # former test_200e test_200f
12245                 local files=$((OSTCOUNT*3))
12246                 pool_alloc_files  $POOL $test_path $files "$ost_list" \
12247                                                         || { rc=$? ; break; }
12248                 pool_create_files $POOL $file_dir $files "$ost_list" \
12249                                                         || { rc=$? ; break; }
12250                 # former test_200g test_200h
12251                 pool_lfs_df $POOL                       || { rc=$? ; break; }
12252                 pool_file_rel_path $POOL $test_path     || { rc=$? ; break; }
12253
12254                 # former test_201a test_201b test_201c
12255                 pool_remove_first_target $POOL          || { rc=$? ; break; }
12256
12257                 local f=$test_path/$tfile
12258                 pool_remove_all_targets $POOL $f        || { rc=$? ; break; }
12259                 pool_remove $POOL $f                    || { rc=$? ; break; }
12260                 break
12261         done
12262
12263         destroy_test_pools
12264         return $rc
12265 }
12266 run_test 200 "OST pools"
12267
12268 # usage: default_attr <count | size | offset>
12269 default_attr() {
12270         $LCTL get_param -n lov.$FSNAME-clilov-\*.stripe${1}
12271 }
12272
12273 # usage: check_default_stripe_attr
12274 check_default_stripe_attr() {
12275         ACTUAL=$($GETSTRIPE $* $DIR/$tdir)
12276         case $1 in
12277         --stripe-count|-c)
12278                 [ -n "$2" ] && EXPECTED=0 || EXPECTED=$(default_attr count);;
12279         --stripe-size|-S)
12280                 [ -n "$2" ] && EXPECTED=0 || EXPECTED=$(default_attr size);;
12281         --stripe-index|-i)
12282                 EXPECTED=-1;;
12283         *)
12284                 error "unknown getstripe attr '$1'"
12285         esac
12286
12287         [ $ACTUAL != $EXPECTED ] &&
12288                 error "$DIR/$tdir has $1 '$ACTUAL', not '$EXPECTED'"
12289 }
12290
12291 test_204a() {
12292         test_mkdir -p $DIR/$tdir
12293         $SETSTRIPE --stripe-count 0 --stripe-size 0 --stripe-index -1 $DIR/$tdir
12294
12295         check_default_stripe_attr --stripe-count
12296         check_default_stripe_attr --stripe-size
12297         check_default_stripe_attr --stripe-index
12298
12299         return 0
12300 }
12301 run_test 204a "Print default stripe attributes ================="
12302
12303 test_204b() {
12304         test_mkdir -p $DIR/$tdir
12305         $SETSTRIPE --stripe-count 1 $DIR/$tdir
12306
12307         check_default_stripe_attr --stripe-size
12308         check_default_stripe_attr --stripe-index
12309
12310         return 0
12311 }
12312 run_test 204b "Print default stripe size and offset  ==========="
12313
12314 test_204c() {
12315         test_mkdir -p $DIR/$tdir
12316         $SETSTRIPE --stripe-size 65536 $DIR/$tdir
12317
12318         check_default_stripe_attr --stripe-count
12319         check_default_stripe_attr --stripe-index
12320
12321         return 0
12322 }
12323 run_test 204c "Print default stripe count and offset ==========="
12324
12325 test_204d() {
12326         test_mkdir -p $DIR/$tdir
12327         $SETSTRIPE --stripe-index 0 $DIR/$tdir
12328
12329         check_default_stripe_attr --stripe-count
12330         check_default_stripe_attr --stripe-size
12331
12332         return 0
12333 }
12334 run_test 204d "Print default stripe count and size ============="
12335
12336 test_204e() {
12337         test_mkdir -p $DIR/$tdir
12338         $SETSTRIPE -d $DIR/$tdir
12339
12340         check_default_stripe_attr --stripe-count --raw
12341         check_default_stripe_attr --stripe-size --raw
12342         check_default_stripe_attr --stripe-index --raw
12343
12344         return 0
12345 }
12346 run_test 204e "Print raw stripe attributes ================="
12347
12348 test_204f() {
12349         test_mkdir -p $DIR/$tdir
12350         $SETSTRIPE --stripe-count 1 $DIR/$tdir
12351
12352         check_default_stripe_attr --stripe-size --raw
12353         check_default_stripe_attr --stripe-index --raw
12354
12355         return 0
12356 }
12357 run_test 204f "Print raw stripe size and offset  ==========="
12358
12359 test_204g() {
12360         test_mkdir -p $DIR/$tdir
12361         $SETSTRIPE --stripe-size 65536 $DIR/$tdir
12362
12363         check_default_stripe_attr --stripe-count --raw
12364         check_default_stripe_attr --stripe-index --raw
12365
12366         return 0
12367 }
12368 run_test 204g "Print raw stripe count and offset ==========="
12369
12370 test_204h() {
12371         test_mkdir -p $DIR/$tdir
12372         $SETSTRIPE --stripe-index 0 $DIR/$tdir
12373
12374         check_default_stripe_attr --stripe-count --raw
12375         check_default_stripe_attr --stripe-size --raw
12376
12377         return 0
12378 }
12379 run_test 204h "Print raw stripe count and size ============="
12380
12381 # Figure out which job scheduler is being used, if any,
12382 # or use a fake one
12383 if [ -n "$SLURM_JOB_ID" ]; then # SLURM
12384         JOBENV=SLURM_JOB_ID
12385 elif [ -n "$LSB_JOBID" ]; then # Load Sharing Facility
12386         JOBENV=LSB_JOBID
12387 elif [ -n "$PBS_JOBID" ]; then # PBS/Maui/Moab
12388         JOBENV=PBS_JOBID
12389 elif [ -n "$LOADL_STEPID" ]; then # LoadLeveller
12390         JOBENV=LOADL_STEP_ID
12391 elif [ -n "$JOB_ID" ]; then # Sun Grid Engine
12392         JOBENV=JOB_ID
12393 else
12394         $LCTL list_param jobid_name > /dev/null 2>&1
12395         if [ $? -eq 0 ]; then
12396                 JOBENV=nodelocal
12397         else
12398                 JOBENV=FAKE_JOBID
12399         fi
12400 fi
12401
12402 verify_jobstats() {
12403         local cmd=($1)
12404         shift
12405         local facets="$@"
12406
12407 # we don't really need to clear the stats for this test to work, since each
12408 # command has a unique jobid, but it makes debugging easier if needed.
12409 #       for facet in $facets; do
12410 #               local dev=$(convert_facet2label $facet)
12411 #               # clear old jobstats
12412 #               do_facet $facet lctl set_param *.$dev.job_stats="clear"
12413 #       done
12414
12415         # use a new JobID for each test, or we might see an old one
12416         [ "$JOBENV" = "FAKE_JOBID" ] &&
12417                 FAKE_JOBID=id.$testnum.$(basename ${cmd[0]}).$RANDOM
12418
12419         JOBVAL=${!JOBENV}
12420
12421         [ "$JOBENV" = "nodelocal" ] && {
12422                 FAKE_JOBID=id.$testnum.$(basename ${cmd[0]}).$RANDOM
12423                 $LCTL set_param jobid_name=$FAKE_JOBID
12424                 JOBVAL=$FAKE_JOBID
12425         }
12426
12427         log "Test: ${cmd[*]}"
12428         log "Using JobID environment variable $JOBENV=$JOBVAL"
12429
12430         if [ $JOBENV = "FAKE_JOBID" ]; then
12431                 FAKE_JOBID=$JOBVAL ${cmd[*]}
12432         else
12433                 ${cmd[*]}
12434         fi
12435
12436         # all files are created on OST0000
12437         for facet in $facets; do
12438                 local stats="*.$(convert_facet2label $facet).job_stats"
12439                 if [ $(do_facet $facet lctl get_param $stats |
12440                        grep -c $JOBVAL) -ne 1 ]; then
12441                         do_facet $facet lctl get_param $stats
12442                         error "No jobstats for $JOBVAL found on $facet::$stats"
12443                 fi
12444         done
12445 }
12446
12447 jobstats_set() {
12448         trap 0
12449         NEW_JOBENV=${1:-$OLD_JOBENV}
12450         do_facet mgs $LCTL conf_param $FSNAME.sys.jobid_var=$NEW_JOBENV
12451         wait_update $HOSTNAME "$LCTL get_param -n jobid_var" $NEW_JOBENV
12452 }
12453
12454 cleanup_205() {
12455         trap 0
12456         do_facet $SINGLEMDS \
12457                 $LCTL set_param mdt.*.job_cleanup_interval=$OLD_INTERVAL
12458         [ $OLD_JOBENV != $JOBENV ] && jobstats_set $OLD_JOBENV
12459         cleanup_changelog
12460 }
12461
12462 test_205() { # Job stats
12463         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.7.1) ]] ||
12464                 { skip "Need MDS version with at least 2.7.1"; return 0; }
12465
12466         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12467         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
12468         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12469         remote_ost_nodsh && skip "remote OST with nodsh" && return
12470
12471         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep jobstats)" ] &&
12472                 skip "Server doesn't support jobstats" && return 0
12473         [[ $JOBID_VAR = disable ]] && skip "jobstats is disabled" && return
12474
12475         OLD_JOBENV=$($LCTL get_param -n jobid_var)
12476         if [ $OLD_JOBENV != $JOBENV ]; then
12477                 jobstats_set $JOBENV
12478                 trap cleanup_205 EXIT
12479         fi
12480
12481         CL_USER=$(do_facet $SINGLEMDS lctl --device $MDT0 changelog_register -n)
12482         echo "Registered as changelog user $CL_USER"
12483
12484         OLD_INTERVAL=$(do_facet $SINGLEMDS \
12485                        lctl get_param -n mdt.*.job_cleanup_interval)
12486         local interval_new=5
12487         do_facet $SINGLEMDS \
12488                 $LCTL set_param mdt.*.job_cleanup_interval=$interval_new
12489         local start=$SECONDS
12490
12491         local cmd
12492         # mkdir
12493         cmd="mkdir $DIR/$tdir"
12494         verify_jobstats "$cmd" "$SINGLEMDS"
12495         # rmdir
12496         cmd="rmdir $DIR/$tdir"
12497         verify_jobstats "$cmd" "$SINGLEMDS"
12498         # mkdir on secondary MDT
12499         if [ $MDSCOUNT -gt 1 ]; then
12500                 cmd="lfs mkdir -i 1 $DIR/$tdir.remote"
12501                 verify_jobstats "$cmd" "mds2"
12502         fi
12503         # mknod
12504         cmd="mknod $DIR/$tfile c 1 3"
12505         verify_jobstats "$cmd" "$SINGLEMDS"
12506         # unlink
12507         cmd="rm -f $DIR/$tfile"
12508         verify_jobstats "$cmd" "$SINGLEMDS"
12509         # create all files on OST0000 so verify_jobstats can find OST stats
12510         # open & close
12511         cmd="$SETSTRIPE -i 0 -c 1 $DIR/$tfile"
12512         verify_jobstats "$cmd" "$SINGLEMDS"
12513         # setattr
12514         cmd="touch $DIR/$tfile"
12515         verify_jobstats "$cmd" "$SINGLEMDS ost1"
12516         # write
12517         cmd="dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 oflag=sync"
12518         verify_jobstats "$cmd" "ost1"
12519         # read
12520         cancel_lru_locks osc
12521         cmd="dd if=$DIR/$tfile of=/dev/null bs=1M count=1 iflag=direct"
12522         verify_jobstats "$cmd" "ost1"
12523         # truncate
12524         cmd="$TRUNCATE $DIR/$tfile 0"
12525         verify_jobstats "$cmd" "$SINGLEMDS ost1"
12526         # rename
12527         cmd="mv -f $DIR/$tfile $DIR/$tdir.rename"
12528         verify_jobstats "$cmd" "$SINGLEMDS"
12529         # jobstats expiry - sleep until old stats should be expired
12530         local left=$((interval_new + 5 - (SECONDS - start)))
12531         [ $left -ge 0 ] && wait_update_facet $SINGLEMDS \
12532                 "lctl get_param *.*.job_stats | grep -c 'job_id.*mkdir'" \
12533                         "0" $left
12534         cmd="mkdir $DIR/$tdir.expire"
12535         verify_jobstats "$cmd" "$SINGLEMDS"
12536         [ $(do_facet $SINGLEMDS lctl get_param *.*.job_stats |
12537             grep -c "job_id.*mkdir") -gt 1 ] && error "old jobstats not expired"
12538
12539         # Ensure that jobid are present in changelog (if supported by MDS)
12540         if [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.52) ]
12541         then
12542                 $LFS changelog $MDT0 | tail -9
12543                 jobids=$($LFS changelog $MDT0 | tail -9 | grep -c "j=")
12544                 [ $jobids -eq 9 ] ||
12545                         error "Wrong changelog jobid count $jobids != 9"
12546
12547                 # LU-5862
12548                 JOBENV="disable"
12549                 jobstats_set $JOBENV
12550                 touch $DIR/$tfile
12551                 $LFS changelog $MDT0 | tail -1
12552                 jobids=$($LFS changelog $MDT0 | tail -1 | grep -c "j=")
12553                 [ $jobids -eq 0 ] ||
12554                         error "Unexpected jobids when jobid_var=$JOBENV"
12555         fi
12556
12557         cleanup_205
12558 }
12559 run_test 205 "Verify job stats"
12560
12561 # LU-1480, LU-1773 and LU-1657
12562 test_206() {
12563         mkdir -p $DIR/$tdir
12564         $SETSTRIPE -c -1 $DIR/$tdir
12565 #define OBD_FAIL_LOV_INIT 0x1403
12566         $LCTL set_param fail_loc=0xa0001403
12567         $LCTL set_param fail_val=1
12568         touch $DIR/$tdir/$tfile || true
12569 }
12570 run_test 206 "fail lov_init_raid0() doesn't lbug"
12571
12572 test_207a() {
12573         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((RANDOM%10+1))
12574         local fsz=`stat -c %s $DIR/$tfile`
12575         cancel_lru_locks mdc
12576
12577         # do not return layout in getattr intent
12578 #define OBD_FAIL_MDS_NO_LL_GETATTR 0x170
12579         $LCTL set_param fail_loc=0x170
12580         local sz=`stat -c %s $DIR/$tfile`
12581
12582         [ $fsz -eq $sz ] || error "file size expected $fsz, actual $sz"
12583
12584         rm -rf $DIR/$tfile
12585 }
12586 run_test 207a "can refresh layout at glimpse"
12587
12588 test_207b() {
12589         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((RANDOM%10+1))
12590         local cksum=`md5sum $DIR/$tfile`
12591         local fsz=`stat -c %s $DIR/$tfile`
12592         cancel_lru_locks mdc
12593         cancel_lru_locks osc
12594
12595         # do not return layout in getattr intent
12596 #define OBD_FAIL_MDS_NO_LL_OPEN 0x171
12597         $LCTL set_param fail_loc=0x171
12598
12599         # it will refresh layout after the file is opened but before read issues
12600         echo checksum is "$cksum"
12601         echo "$cksum" |md5sum -c --quiet || error "file differs"
12602
12603         rm -rf $DIR/$tfile
12604 }
12605 run_test 207b "can refresh layout at open"
12606
12607 test_208() {
12608         # FIXME: in this test suite, only RD lease is used. This is okay
12609         # for now as only exclusive open is supported. After generic lease
12610         # is done, this test suite should be revised. - Jinshan
12611
12612         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12613         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.4.52) ]] ||
12614                 { skip "Need MDS version at least 2.4.52"; return 0; }
12615
12616         echo "==== test 1: verify get lease work"
12617         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:eRE+eU || error "get lease error"
12618
12619         echo "==== test 2: verify lease can be broken by upcoming open"
12620         $MULTIOP $DIR/$tfile oO_RDONLY:eR_E-eUc &
12621         local PID=$!
12622         sleep 1
12623
12624         $MULTIOP $DIR/$tfile oO_RDONLY:c
12625         kill -USR1 $PID && wait $PID || error "break lease error"
12626
12627         echo "==== test 3: verify lease can't be granted if an open already exists"
12628         $MULTIOP $DIR/$tfile oO_RDONLY:_c &
12629         local PID=$!
12630         sleep 1
12631
12632         $MULTIOP $DIR/$tfile oO_RDONLY:eReUc && error "apply lease should fail"
12633         kill -USR1 $PID && wait $PID || error "open file error"
12634
12635         echo "==== test 4: lease can sustain over recovery"
12636         $MULTIOP $DIR/$tfile oO_RDONLY:eR_E+eUc &
12637         PID=$!
12638         sleep 1
12639
12640         fail mds1
12641
12642         kill -USR1 $PID && wait $PID || error "lease broken over recovery"
12643
12644         echo "==== test 5: lease broken can't be regained by replay"
12645         $MULTIOP $DIR/$tfile oO_RDONLY:eR_E-eUc &
12646         PID=$!
12647         sleep 1
12648
12649         # open file to break lease and then recovery
12650         $MULTIOP $DIR/$tfile oO_RDWR:c || error "open file error"
12651         fail mds1
12652
12653         kill -USR1 $PID && wait $PID || error "lease not broken over recovery"
12654
12655         rm -f $DIR/$tfile
12656 }
12657 run_test 208 "Exclusive open"
12658
12659 test_209() {
12660         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep disp_stripe)" ] &&
12661                 skip_env "must have disp_stripe" && return
12662
12663         touch $DIR/$tfile
12664         sync; sleep 5; sync;
12665
12666         echo 3 > /proc/sys/vm/drop_caches
12667         req_before=$(awk '/ptlrpc_cache / { print $2 }' /proc/slabinfo)
12668
12669         # open/close 500 times
12670         for i in $(seq 500); do
12671                 cat $DIR/$tfile
12672         done
12673
12674         echo 3 > /proc/sys/vm/drop_caches
12675         req_after=$(awk '/ptlrpc_cache / { print $2 }' /proc/slabinfo)
12676
12677         echo "before: $req_before, after: $req_after"
12678         [ $((req_after - req_before)) -ge 300 ] &&
12679                 error "open/close requests are not freed"
12680         return 0
12681 }
12682 run_test 209 "read-only open/close requests should be freed promptly"
12683
12684 test_212() {
12685         size=`date +%s`
12686         size=$((size % 8192 + 1))
12687         dd if=/dev/urandom of=$DIR/f212 bs=1k count=$size
12688         sendfile $DIR/f212 $DIR/f212.xyz || error "sendfile wrong"
12689         rm -f $DIR/f212 $DIR/f212.xyz
12690 }
12691 run_test 212 "Sendfile test ============================================"
12692
12693 test_213() {
12694         dd if=/dev/zero of=$DIR/$tfile bs=4k count=4
12695         cancel_lru_locks osc
12696         lctl set_param fail_loc=0x8000040f
12697         # generate a read lock
12698         cat $DIR/$tfile > /dev/null
12699         # write to the file, it will try to cancel the above read lock.
12700         cat /etc/hosts >> $DIR/$tfile
12701 }
12702 run_test 213 "OSC lock completion and cancel race don't crash - bug 18829"
12703
12704 test_214() { # for bug 20133
12705         mkdir -p $DIR/$tdir/d214c || error "mkdir $DIR/$tdir/d214c failed"
12706         for (( i=0; i < 340; i++ )) ; do
12707                 touch $DIR/$tdir/d214c/a$i
12708         done
12709
12710         ls -l $DIR/$tdir || error "ls -l $DIR/d214p failed"
12711         mv $DIR/$tdir/d214c $DIR/ || error "mv $DIR/d214p/d214c $DIR/ failed"
12712         ls $DIR/d214c || error "ls $DIR/d214c failed"
12713         rm -rf $DIR/$tdir || error "rm -rf $DIR/d214* failed"
12714         rm -rf $DIR/d214* || error "rm -rf $DIR/d214* failed"
12715 }
12716 run_test 214 "hash-indexed directory test - bug 20133"
12717
12718 # having "abc" as 1st arg, creates $TMP/lnet_abc.out and $TMP/lnet_abc.sys
12719 create_lnet_proc_files() {
12720         lctl get_param -n $1 >$TMP/lnet_$1.out || error "cannot read lnet.$1"
12721         sysctl lnet.$1 >$TMP/lnet_$1.sys_tmp || error "cannot read lnet.$1"
12722
12723         sed "s/^lnet.$1\ =\ //g" "$TMP/lnet_$1.sys_tmp" >$TMP/lnet_$1.sys
12724         rm -f "$TMP/lnet_$1.sys_tmp"
12725 }
12726
12727 # counterpart of create_lnet_proc_files
12728 remove_lnet_proc_files() {
12729         rm -f $TMP/lnet_$1.out $TMP/lnet_$1.sys
12730 }
12731
12732 # uses 1st arg as trailing part of filename, 2nd arg as description for reports,
12733 # 3rd arg as regexp for body
12734 check_lnet_proc_stats() {
12735         local l=$(cat "$TMP/lnet_$1" |wc -l)
12736         [ $l = 1 ] || (cat "$TMP/lnet_$1" && error "$2 is not of 1 line: $l")
12737
12738         grep -E "$3" "$TMP/lnet_$1" || (cat "$TMP/lnet_$1" && error "$2 misformatted")
12739 }
12740
12741 # uses 1st arg as trailing part of filename, 2nd arg as description for reports,
12742 # 3rd arg as regexp for body, 4th arg as regexp for 1st line, 5th arg is
12743 # optional and can be regexp for 2nd line (lnet.routes case)
12744 check_lnet_proc_entry() {
12745         local blp=2          # blp stands for 'position of 1st line of body'
12746         [ -z "$5" ] || blp=3 # lnet.routes case
12747
12748         local l=$(cat "$TMP/lnet_$1" |wc -l)
12749         # subtracting one from $blp because the body can be empty
12750         [ "$l" -ge "$(($blp - 1))" ] || (cat "$TMP/lnet_$1" && error "$2 is too short: $l")
12751
12752         sed -n '1 p' "$TMP/lnet_$1" |grep -E "$4" >/dev/null ||
12753                 (cat "$TMP/lnet_$1" && error "1st line of $2 misformatted")
12754
12755         [ "$5" = "" ] || sed -n '2 p' "$TMP/lnet_$1" |grep -E "$5" >/dev/null ||
12756                 (cat "$TMP/lnet_$1" && error "2nd line of $2 misformatted")
12757
12758         # bail out if any unexpected line happened
12759         sed -n "$blp p" "$TMP/lnet_$1" | grep -Ev "$3"
12760         [ "$?" != 0 ] || error "$2 misformatted"
12761 }
12762
12763 test_215() { # for bugs 18102, 21079, 21517
12764         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12765         local N='(0|[1-9][0-9]*)'       # non-negative numeric
12766         local P='[1-9][0-9]*'           # positive numeric
12767         local I='(0|-?[1-9][0-9]*|NA)'  # any numeric (0 | >0 | <0) or NA if no value
12768         local NET='[a-z][a-z0-9]*'      # LNET net like o2ib2
12769         local ADDR='[0-9.]+'            # LNET addr like 10.0.0.1
12770         local NID="$ADDR@$NET"          # LNET nid like 10.0.0.1@o2ib2
12771
12772         local L1 # regexp for 1st line
12773         local L2 # regexp for 2nd line (optional)
12774         local BR # regexp for the rest (body)
12775
12776         # lnet.stats should look as 11 space-separated non-negative numerics
12777         BR="^$N $N $N $N $N $N $N $N $N $N $N$"
12778         create_lnet_proc_files "stats"
12779         check_lnet_proc_stats "stats.sys" "lnet.stats" "$BR"
12780         remove_lnet_proc_files "stats"
12781
12782         # lnet.routes should look like this:
12783         # Routing disabled/enabled
12784         # net hops priority state router
12785         # where net is a string like tcp0, hops > 0, priority >= 0,
12786         # state is up/down,
12787         # router is a string like 192.168.1.1@tcp2
12788         L1="^Routing (disabled|enabled)$"
12789         L2="^net +hops +priority +state +router$"
12790         BR="^$NET +$N +(0|1) +(up|down) +$NID$"
12791         create_lnet_proc_files "routes"
12792         check_lnet_proc_entry "routes.sys" "lnet.routes" "$BR" "$L1" "$L2"
12793         remove_lnet_proc_files "routes"
12794
12795         # lnet.routers should look like this:
12796         # ref rtr_ref alive_cnt state last_ping ping_sent deadline down_ni router
12797         # where ref > 0, rtr_ref > 0, alive_cnt >= 0, state is up/down,
12798         # last_ping >= 0, ping_sent is boolean (0/1), deadline and down_ni are
12799         # numeric (0 or >0 or <0), router is a string like 192.168.1.1@tcp2
12800         L1="^ref +rtr_ref +alive_cnt +state +last_ping +ping_sent +deadline +down_ni +router$"
12801         BR="^$P +$P +$N +(up|down) +$N +(0|1) +$I +$I +$NID$"
12802         create_lnet_proc_files "routers"
12803         check_lnet_proc_entry "routers.sys" "lnet.routers" "$BR" "$L1"
12804         remove_lnet_proc_files "routers"
12805
12806         # lnet.peers should look like this:
12807         # nid refs state last max rtr min tx min queue
12808         # where nid is a string like 192.168.1.1@tcp2, refs > 0,
12809         # state is up/down/NA, max >= 0. last, rtr, min, tx, min are
12810         # numeric (0 or >0 or <0), queue >= 0.
12811         L1="^nid +refs +state +last +max +rtr +min +tx +min +queue$"
12812         BR="^$NID +$P +(up|down|NA) +$I +$N +$I +$I +$I +$I +$N$"
12813         create_lnet_proc_files "peers"
12814         check_lnet_proc_entry "peers.sys" "lnet.peers" "$BR" "$L1"
12815         remove_lnet_proc_files "peers"
12816
12817         # lnet.buffers  should look like this:
12818         # pages count credits min
12819         # where pages >=0, count >=0, credits and min are numeric (0 or >0 or <0)
12820         L1="^pages +count +credits +min$"
12821         BR="^ +$N +$N +$I +$I$"
12822         create_lnet_proc_files "buffers"
12823         check_lnet_proc_entry "buffers.sys" "lnet.buffers" "$BR" "$L1"
12824         remove_lnet_proc_files "buffers"
12825
12826         # lnet.nis should look like this:
12827         # nid status alive refs peer rtr max tx min
12828         # where nid is a string like 192.168.1.1@tcp2, status is up/down,
12829         # alive is numeric (0 or >0 or <0), refs >= 0, peer >= 0,
12830         # rtr >= 0, max >=0, tx and min are numeric (0 or >0 or <0).
12831         L1="^nid +status +alive +refs +peer +rtr +max +tx +min$"
12832         BR="^$NID +(up|down) +$I +$N +$N +$N +$N +$I +$I$"
12833         create_lnet_proc_files "nis"
12834         check_lnet_proc_entry "nis.sys" "lnet.nis" "$BR" "$L1"
12835         remove_lnet_proc_files "nis"
12836
12837         # can we successfully write to lnet.stats?
12838         lctl set_param -n stats=0 || error "cannot write to lnet.stats"
12839         sysctl -w lnet.stats=0 || error "cannot write to lnet.stats"
12840 }
12841 run_test 215 "lnet exists and has proper content - bugs 18102, 21079, 21517"
12842
12843 test_216() { # bug 20317
12844         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12845         remote_ost_nodsh && skip "remote OST with nodsh" && return
12846
12847         local node
12848         local facets=$(get_facets OST)
12849         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
12850
12851         save_lustre_params client "osc.*.contention_seconds" > $p
12852         save_lustre_params $facets \
12853                 "ldlm.namespaces.filter-*.max_nolock_bytes" >> $p
12854         save_lustre_params $facets \
12855                 "ldlm.namespaces.filter-*.contended_locks" >> $p
12856         save_lustre_params $facets \
12857                 "ldlm.namespaces.filter-*.contention_seconds" >> $p
12858         clear_stats osc.*.osc_stats
12859
12860         # agressive lockless i/o settings
12861         do_nodes $(comma_list $(osts_nodes)) \
12862                 "lctl set_param -n ldlm.namespaces.*.max_nolock_bytes=2000000 \
12863                         ldlm.namespaces.filter-*.contended_locks=0 \
12864                         ldlm.namespaces.filter-*.contention_seconds=60"
12865         lctl set_param -n osc.*.contention_seconds=60
12866
12867         $DIRECTIO write $DIR/$tfile 0 10 4096
12868         $CHECKSTAT -s 40960 $DIR/$tfile
12869
12870         # disable lockless i/o
12871         do_nodes $(comma_list $(osts_nodes)) \
12872                 "lctl set_param -n ldlm.namespaces.filter-*.max_nolock_bytes=0 \
12873                         ldlm.namespaces.filter-*.contended_locks=32 \
12874                         ldlm.namespaces.filter-*.contention_seconds=0"
12875         lctl set_param -n osc.*.contention_seconds=0
12876         clear_stats osc.*.osc_stats
12877
12878         dd if=/dev/zero of=$DIR/$tfile count=0
12879         $CHECKSTAT -s 0 $DIR/$tfile
12880
12881         restore_lustre_params <$p
12882         rm -f $p
12883         rm $DIR/$tfile
12884 }
12885 run_test 216 "check lockless direct write updates file size and kms correctly"
12886
12887 test_217() { # bug 22430
12888         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12889         local node
12890         local nid
12891
12892         for node in $(nodes_list); do
12893                 nid=$(host_nids_address $node $NETTYPE)
12894                 if [[ $nid = *-* ]] ; then
12895                         echo "lctl ping $(h2nettype $nid)"
12896                         lctl ping $(h2nettype $nid)
12897                 else
12898                         echo "skipping $node (no hyphen detected)"
12899                 fi
12900         done
12901 }
12902 run_test 217 "check lctl ping for hostnames with hiphen ('-')"
12903
12904 test_218() {
12905        # do directio so as not to populate the page cache
12906        log "creating a 10 Mb file"
12907        $MULTIOP $DIR/$tfile oO_CREAT:O_DIRECT:O_RDWR:w$((10*1048576))c || error "multiop failed while creating a file"
12908        log "starting reads"
12909        dd if=$DIR/$tfile of=/dev/null bs=4096 &
12910        log "truncating the file"
12911        $MULTIOP $DIR/$tfile oO_TRUNC:c || error "multiop failed while truncating the file"
12912        log "killing dd"
12913        kill %+ || true # reads might have finished
12914        echo "wait until dd is finished"
12915        wait
12916        log "removing the temporary file"
12917        rm -rf $DIR/$tfile || error "tmp file removal failed"
12918 }
12919 run_test 218 "parallel read and truncate should not deadlock ======================="
12920
12921 test_219() {
12922         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12923         # write one partial page
12924         dd if=/dev/zero of=$DIR/$tfile bs=1024 count=1
12925         # set no grant so vvp_io_commit_write will do sync write
12926         $LCTL set_param fail_loc=0x411
12927         # write a full page at the end of file
12928         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 seek=1 conv=notrunc
12929
12930         $LCTL set_param fail_loc=0
12931         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 seek=3
12932         $LCTL set_param fail_loc=0x411
12933         dd if=/dev/zero of=$DIR/$tfile bs=1024 count=1 seek=2 conv=notrunc
12934
12935         # LU-4201
12936         dd if=/dev/zero of=$DIR/$tfile-2 bs=1024 count=1
12937         $CHECKSTAT -s 1024 $DIR/$tfile-2 || error "checkstat wrong size"
12938 }
12939 run_test 219 "LU-394: Write partial won't cause uncontiguous pages vec at LND"
12940
12941 test_220() { #LU-325
12942         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12943         remote_ost_nodsh && skip "remote OST with nodsh" && return
12944         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12945         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
12946         local OSTIDX=0
12947
12948         # create on MDT0000 so the last_id and next_id are correct
12949         mkdir $DIR/$tdir
12950         local OST=$($LFS df $DIR | awk '/OST:'$OSTIDX'/ { print $1 }')
12951         OST=${OST%_UUID}
12952
12953         # on the mdt's osc
12954         local mdtosc_proc1=$(get_mdtosc_proc_path $SINGLEMDS $OST)
12955         local last_id=$(do_facet $SINGLEMDS lctl get_param -n \
12956                         osc.$mdtosc_proc1.prealloc_last_id)
12957         local next_id=$(do_facet $SINGLEMDS lctl get_param -n \
12958                         osc.$mdtosc_proc1.prealloc_next_id)
12959
12960         $LFS df -i
12961
12962         do_facet ost$((OSTIDX + 1)) lctl set_param fail_val=-1
12963         #define OBD_FAIL_OST_ENOINO              0x229
12964         do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=0x229
12965         create_pool $FSNAME.$TESTNAME || return 1
12966         do_facet mgs $LCTL pool_add $FSNAME.$TESTNAME $OST || return 2
12967
12968         $SETSTRIPE $DIR/$tdir -i $OSTIDX -c 1 -p $FSNAME.$TESTNAME
12969
12970         MDSOBJS=$((last_id - next_id))
12971         echo "preallocated objects on MDS is $MDSOBJS" "($last_id - $next_id)"
12972
12973         blocks=$($LFS df $MOUNT | awk '($1 == '$OSTIDX') { print $4 }')
12974         echo "OST still has $count kbytes free"
12975
12976         echo "create $MDSOBJS files @next_id..."
12977         createmany -o $DIR/$tdir/f $MDSOBJS || return 3
12978
12979         local last_id2=$(do_facet mds${MDSIDX} lctl get_param -n \
12980                         osc.$mdtosc_proc1.prealloc_last_id)
12981         local next_id2=$(do_facet mds${MDSIDX} lctl get_param -n \
12982                         osc.$mdtosc_proc1.prealloc_next_id)
12983
12984         echo "after creation, last_id=$last_id2, next_id=$next_id2"
12985         $LFS df -i
12986
12987         echo "cleanup..."
12988
12989         do_facet ost$((OSTIDX + 1)) lctl set_param fail_val=0
12990         do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=0
12991
12992         do_facet mgs $LCTL pool_remove $FSNAME.$TESTNAME $OST || return 4
12993         do_facet mgs $LCTL pool_destroy $FSNAME.$TESTNAME || return 5
12994         echo "unlink $MDSOBJS files @$next_id..."
12995         unlinkmany $DIR/$tdir/f $MDSOBJS || return 6
12996 }
12997 run_test 220 "preallocated MDS objects still used if ENOSPC from OST"
12998
12999 test_221() {
13000         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13001         dd if=`which date` of=$MOUNT/date oflag=sync
13002         chmod +x $MOUNT/date
13003
13004         #define OBD_FAIL_LLITE_FAULT_TRUNC_RACE  0x1401
13005         $LCTL set_param fail_loc=0x80001401
13006
13007         $MOUNT/date > /dev/null
13008         rm -f $MOUNT/date
13009 }
13010 run_test 221 "make sure fault and truncate race to not cause OOM"
13011
13012 test_222a () {
13013         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13014        rm -rf $DIR/$tdir
13015        test_mkdir -p $DIR/$tdir
13016        $SETSTRIPE -c 1 -i 0 $DIR/$tdir
13017        createmany -o $DIR/$tdir/$tfile 10
13018        cancel_lru_locks mdc
13019        cancel_lru_locks osc
13020        #define OBD_FAIL_LDLM_AGL_DELAY           0x31a
13021        $LCTL set_param fail_loc=0x31a
13022        ls -l $DIR/$tdir > /dev/null || error "AGL for ls failed"
13023        $LCTL set_param fail_loc=0
13024        rm -r $DIR/$tdir
13025 }
13026 run_test 222a "AGL for ls should not trigger CLIO lock failure ================"
13027
13028 test_222b () {
13029         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13030         rm -rf $DIR/$tdir
13031         test_mkdir -p $DIR/$tdir
13032         $SETSTRIPE -c 1 -i 0 $DIR/$tdir
13033         createmany -o $DIR/$tdir/$tfile 10
13034         cancel_lru_locks mdc
13035         cancel_lru_locks osc
13036         #define OBD_FAIL_LDLM_AGL_DELAY           0x31a
13037         $LCTL set_param fail_loc=0x31a
13038         rm -r $DIR/$tdir || error "AGL for rmdir failed"
13039         $LCTL set_param fail_loc=0
13040 }
13041 run_test 222b "AGL for rmdir should not trigger CLIO lock failure ============="
13042
13043 test_223 () {
13044         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13045        rm -rf $DIR/$tdir
13046        test_mkdir -p $DIR/$tdir
13047        $SETSTRIPE -c 1 -i 0 $DIR/$tdir
13048        createmany -o $DIR/$tdir/$tfile 10
13049        cancel_lru_locks mdc
13050        cancel_lru_locks osc
13051        #define OBD_FAIL_LDLM_AGL_NOLOCK          0x31b
13052        $LCTL set_param fail_loc=0x31b
13053        ls -l $DIR/$tdir > /dev/null || error "reenqueue failed"
13054        $LCTL set_param fail_loc=0
13055        rm -r $DIR/$tdir
13056 }
13057 run_test 223 "osc reenqueue if without AGL lock granted ======================="
13058
13059 test_224a() { # LU-1039, MRP-303
13060         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13061         #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB   0x508
13062         $LCTL set_param fail_loc=0x508
13063         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 conv=fsync
13064         $LCTL set_param fail_loc=0
13065         df $DIR
13066 }
13067 run_test 224a "Don't panic on bulk IO failure"
13068
13069 test_224b() { # LU-1039, MRP-303
13070         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13071         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1
13072         cancel_lru_locks osc
13073         #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB2   0x515
13074         $LCTL set_param fail_loc=0x515
13075         dd of=/dev/null if=$DIR/$tfile bs=4096 count=1
13076         $LCTL set_param fail_loc=0
13077         df $DIR
13078 }
13079 run_test 224b "Don't panic on bulk IO failure"
13080
13081 test_224c() { # LU-6441
13082         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13083         remote_mds_nodsh && skip "remote MDS with nodsh" && return
13084
13085         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
13086         save_writethrough $p
13087         set_cache writethrough on
13088
13089         local pages_per_rpc=$($LCTL get_param \
13090                                 osc.*.max_pages_per_rpc)
13091         local at_max=$($LCTL get_param -n at_max)
13092         local timeout=$($LCTL get_param -n timeout)
13093         local test_at="$LCTL get_param -n at_max"
13094         local param_at="$FSNAME.sys.at_max"
13095         local test_timeout="$LCTL get_param -n timeout"
13096         local param_timeout="$FSNAME.sys.timeout"
13097
13098         $LCTL set_param -n osc.*.max_pages_per_rpc=1024
13099
13100         set_conf_param_and_check client "$test_at" "$param_at" 0 ||
13101                 error "conf_param at_max=0 failed"
13102         set_conf_param_and_check client "$test_timeout" "$param_timeout" 5 ||
13103                 error "conf_param timeout=5 failed"
13104
13105         #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB3   0x520
13106         do_facet ost1 $LCTL set_param fail_loc=0x520
13107         $LFS setstripe -c 1 -i 0 $DIR/$tfile
13108         dd if=/dev/zero of=$DIR/$tfile bs=8MB count=1
13109         sync
13110         do_facet ost1 $LCTL set_param fail_loc=0
13111
13112         set_conf_param_and_check client "$test_at" "$param_at" $at_max ||
13113                 error "conf_param at_max=$at_max failed"
13114         set_conf_param_and_check client "$test_timeout" "$param_timeout" \
13115                 $timeout || error "conf_param timeout=$timeout failed"
13116
13117         $LCTL set_param -n $pages_per_rpc
13118         restore_lustre_params < $p
13119         rm -f $p
13120 }
13121 run_test 224c "Don't hang if one of md lost during large bulk RPC"
13122
13123 MDSSURVEY=${MDSSURVEY:-$(which mds-survey 2>/dev/null || true)}
13124 test_225a () {
13125         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13126         remote_mds_nodsh && skip "remote MDS with nodsh" && return
13127         if [ -z ${MDSSURVEY} ]; then
13128               skip_env "mds-survey not found" && return
13129         fi
13130
13131         [ $MDSCOUNT -ge 2 ] &&
13132                 skip "skipping now for more than one MDT" && return
13133
13134        [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ] ||
13135             { skip "Need MDS version at least 2.2.51"; return; }
13136
13137        local mds=$(facet_host $SINGLEMDS)
13138        local target=$(do_nodes $mds 'lctl dl' | \
13139                       awk "{if (\$2 == \"UP\" && \$3 == \"mdt\") {print \$4}}")
13140
13141        local cmd1="file_count=1000 thrhi=4"
13142        local cmd2="dir_count=2 layer=mdd stripe_count=0"
13143        local cmd3="rslt_loc=${TMP} targets=\"$mds:$target\" $MDSSURVEY"
13144        local cmd="$cmd1 $cmd2 $cmd3"
13145
13146        rm -f ${TMP}/mds_survey*
13147        echo + $cmd
13148        eval $cmd || error "mds-survey with zero-stripe failed"
13149        cat ${TMP}/mds_survey*
13150        rm -f ${TMP}/mds_survey*
13151 }
13152 run_test 225a "Metadata survey sanity with zero-stripe"
13153
13154 test_225b () {
13155         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13156         remote_mds_nodsh && skip "remote MDS with nodsh" && return
13157         if [ -z ${MDSSURVEY} ]; then
13158               skip_env "mds-survey not found" && return
13159         fi
13160         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ] ||
13161             { skip "Need MDS version at least 2.2.51"; return; }
13162
13163         if [ $($LCTL dl | grep -c osc) -eq 0 ]; then
13164               skip_env "Need to mount OST to test" && return
13165         fi
13166
13167         [ $MDSCOUNT -ge 2 ] &&
13168                 skip "skipping now for more than one MDT" && return
13169        local mds=$(facet_host $SINGLEMDS)
13170        local target=$(do_nodes $mds 'lctl dl' | \
13171                       awk "{if (\$2 == \"UP\" && \$3 == \"mdt\") {print \$4}}")
13172
13173        local cmd1="file_count=1000 thrhi=4"
13174        local cmd2="dir_count=2 layer=mdd stripe_count=1"
13175        local cmd3="rslt_loc=${TMP} targets=\"$mds:$target\" $MDSSURVEY"
13176        local cmd="$cmd1 $cmd2 $cmd3"
13177
13178        rm -f ${TMP}/mds_survey*
13179        echo + $cmd
13180        eval $cmd || error "mds-survey with stripe_count failed"
13181        cat ${TMP}/mds_survey*
13182        rm -f ${TMP}/mds_survey*
13183 }
13184 run_test 225b "Metadata survey sanity with stripe_count = 1"
13185
13186 mcreate_path2fid () {
13187         local mode=$1
13188         local major=$2
13189         local minor=$3
13190         local name=$4
13191         local desc=$5
13192         local path=$DIR/$tdir/$name
13193         local fid
13194         local rc
13195         local fid_path
13196
13197         $MCREATE --mode=$1 --major=$2 --minor=$3 $path ||
13198                 error "cannot create $desc"
13199
13200         fid=$($LFS path2fid $path | tr -d '[' | tr -d ']')
13201         rc=$?
13202         [ $rc -ne 0 ] && error "cannot get fid of a $desc"
13203
13204         fid_path=$($LFS fid2path $MOUNT $fid)
13205         rc=$?
13206         [ $rc -ne 0 ] && error "cannot get path of $desc by $DIR $path $fid"
13207
13208         [ "$path" == "$fid_path" ] ||
13209                 error "fid2path returned $fid_path, expected $path"
13210
13211         echo "pass with $path and $fid"
13212 }
13213
13214 test_226a () {
13215         rm -rf $DIR/$tdir
13216         mkdir -p $DIR/$tdir
13217
13218         mcreate_path2fid 0010666 0 0 fifo "FIFO"
13219         mcreate_path2fid 0020666 1 3 null "character special file (null)"
13220         mcreate_path2fid 0020666 1 255 none "character special file (no device)"
13221         mcreate_path2fid 0040666 0 0 dir "directory"
13222         mcreate_path2fid 0060666 7 0 loop0 "block special file (loop)"
13223         mcreate_path2fid 0100666 0 0 file "regular file"
13224         mcreate_path2fid 0120666 0 0 link "symbolic link"
13225         mcreate_path2fid 0140666 0 0 sock "socket"
13226 }
13227 run_test 226a "call path2fid and fid2path on files of all type"
13228
13229 test_226b () {
13230         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13231         rm -rf $DIR/$tdir
13232         local MDTIDX=1
13233
13234         mkdir -p $DIR/$tdir
13235         $LFS setdirstripe -i $MDTIDX $DIR/$tdir/remote_dir ||
13236                 error "create remote directory failed"
13237         mcreate_path2fid 0010666 0 0 "remote_dir/fifo" "FIFO"
13238         mcreate_path2fid 0020666 1 3 "remote_dir/null" \
13239                                 "character special file (null)"
13240         mcreate_path2fid 0020666 1 255 "remote_dir/none" \
13241                                 "character special file (no device)"
13242         mcreate_path2fid 0040666 0 0 "remote_dir/dir" "directory"
13243         mcreate_path2fid 0060666 7 0 "remote_dir/loop0" \
13244                                 "block special file (loop)"
13245         mcreate_path2fid 0100666 0 0 "remote_dir/file" "regular file"
13246         mcreate_path2fid 0120666 0 0 "remote_dir/link" "symbolic link"
13247         mcreate_path2fid 0140666 0 0 "remote_dir/sock" "socket"
13248 }
13249 run_test 226b "call path2fid and fid2path on files of all type under remote dir"
13250
13251 # LU-1299 Executing or running ldd on a truncated executable does not
13252 # cause an out-of-memory condition.
13253 test_227() {
13254         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13255         [ -z "$(which ldd)" ] && skip "should have ldd tool" && return
13256         dd if=$(which date) of=$MOUNT/date bs=1k count=1
13257         chmod +x $MOUNT/date
13258
13259         $MOUNT/date > /dev/null
13260         ldd $MOUNT/date > /dev/null
13261         rm -f $MOUNT/date
13262 }
13263 run_test 227 "running truncated executable does not cause OOM"
13264
13265 # LU-1512 try to reuse idle OI blocks
13266 test_228a() {
13267         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13268         remote_mds_nodsh && skip "remote MDS with nodsh" && return
13269         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
13270                 skip "non-ldiskfs backend" && return
13271
13272         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
13273         local myDIR=$DIR/$tdir
13274
13275         mkdir -p $myDIR
13276         #define OBD_FAIL_SEQ_EXHAUST             0x1002
13277         $LCTL set_param fail_loc=0x80001002
13278         createmany -o $myDIR/t- 10000
13279         $LCTL set_param fail_loc=0
13280         # The guard is current the largest FID holder
13281         touch $myDIR/guard
13282         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
13283                     tr -d '[')
13284         local IDX=$(($SEQ % 64))
13285
13286         do_facet $SINGLEMDS sync
13287         # Make sure journal flushed.
13288         sleep 6
13289         local blk1=$(do_facet $SINGLEMDS \
13290                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
13291                      grep Blockcount | awk '{print $4}')
13292
13293         # Remove old files, some OI blocks will become idle.
13294         unlinkmany $myDIR/t- 10000
13295         # Create new files, idle OI blocks should be reused.
13296         createmany -o $myDIR/t- 2000
13297         do_facet $SINGLEMDS sync
13298         # Make sure journal flushed.
13299         sleep 6
13300         local blk2=$(do_facet $SINGLEMDS \
13301                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
13302                      grep Blockcount | awk '{print $4}')
13303
13304         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
13305 }
13306 run_test 228a "try to reuse idle OI blocks"
13307
13308 test_228b() {
13309         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13310         remote_mds_nodsh && skip "remote MDS with nodsh" && return
13311         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
13312                 skip "non-ldiskfs backend" && return
13313
13314         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
13315         local myDIR=$DIR/$tdir
13316
13317         mkdir -p $myDIR
13318         #define OBD_FAIL_SEQ_EXHAUST             0x1002
13319         $LCTL set_param fail_loc=0x80001002
13320         createmany -o $myDIR/t- 10000
13321         $LCTL set_param fail_loc=0
13322         # The guard is current the largest FID holder
13323         touch $myDIR/guard
13324         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
13325                     tr -d '[')
13326         local IDX=$(($SEQ % 64))
13327
13328         do_facet $SINGLEMDS sync
13329         # Make sure journal flushed.
13330         sleep 6
13331         local blk1=$(do_facet $SINGLEMDS \
13332                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
13333                      grep Blockcount | awk '{print $4}')
13334
13335         # Remove old files, some OI blocks will become idle.
13336         unlinkmany $myDIR/t- 10000
13337
13338         # stop the MDT
13339         stop $SINGLEMDS || error "Fail to stop MDT."
13340         # remount the MDT
13341         start $SINGLEMDS $MDT_DEV $MDS_MOUNT_OPTS || error "Fail to start MDT."
13342
13343         df $MOUNT || error "Fail to df."
13344         # Create new files, idle OI blocks should be reused.
13345         createmany -o $myDIR/t- 2000
13346         do_facet $SINGLEMDS sync
13347         # Make sure journal flushed.
13348         sleep 6
13349         local blk2=$(do_facet $SINGLEMDS \
13350                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
13351                      grep Blockcount | awk '{print $4}')
13352
13353         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
13354 }
13355 run_test 228b "idle OI blocks can be reused after MDT restart"
13356
13357 #LU-1881
13358 test_228c() {
13359         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13360         remote_mds_nodsh && skip "remote MDS with nodsh" && return
13361         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
13362                 skip "non-ldiskfs backend" && return
13363
13364         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
13365         local myDIR=$DIR/$tdir
13366
13367         mkdir -p $myDIR
13368         #define OBD_FAIL_SEQ_EXHAUST             0x1002
13369         $LCTL set_param fail_loc=0x80001002
13370         # 20000 files can guarantee there are index nodes in the OI file
13371         createmany -o $myDIR/t- 20000
13372         $LCTL set_param fail_loc=0
13373         # The guard is current the largest FID holder
13374         touch $myDIR/guard
13375         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
13376                     tr -d '[')
13377         local IDX=$(($SEQ % 64))
13378
13379         do_facet $SINGLEMDS sync
13380         # Make sure journal flushed.
13381         sleep 6
13382         local blk1=$(do_facet $SINGLEMDS \
13383                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
13384                      grep Blockcount | awk '{print $4}')
13385
13386         # Remove old files, some OI blocks will become idle.
13387         unlinkmany $myDIR/t- 20000
13388         rm -f $myDIR/guard
13389         # The OI file should become empty now
13390
13391         # Create new files, idle OI blocks should be reused.
13392         createmany -o $myDIR/t- 2000
13393         do_facet $SINGLEMDS sync
13394         # Make sure journal flushed.
13395         sleep 6
13396         local blk2=$(do_facet $SINGLEMDS \
13397                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
13398                      grep Blockcount | awk '{print $4}')
13399
13400         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
13401 }
13402 run_test 228c "NOT shrink the last entry in OI index node to recycle idle leaf"
13403
13404 test_229() { # LU-2482, LU-3448
13405         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.53) ] &&
13406                 skip "No HSM $(lustre_build_version $SINGLEMDS) MDS < 2.4.53" &&
13407                 return
13408         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13409         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
13410
13411         rm -f $DIR/$tfile
13412
13413         # Create a file with a released layout and stripe count 2.
13414         $MULTIOP $DIR/$tfile H2c ||
13415                 error "failed to create file with released layout"
13416
13417         $GETSTRIPE -v $DIR/$tfile
13418
13419         local pattern=$($GETSTRIPE -L $DIR/$tfile)
13420         [ X"$pattern" = X"80000001" ] || error "pattern error ($pattern)"
13421
13422         local stripe_count=$($GETSTRIPE -c $DIR/$tfile) || error "getstripe"
13423         [ $stripe_count -eq 2 ] || error "stripe count not 2 ($stripe_count)"
13424         stat $DIR/$tfile || error "failed to stat released file"
13425
13426         chown $RUNAS_ID $DIR/$tfile ||
13427                 error "chown $RUNAS_ID $DIR/$tfile failed"
13428
13429         chgrp $RUNAS_ID $DIR/$tfile ||
13430                 error "chgrp $RUNAS_ID $DIR/$tfile failed"
13431
13432         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
13433         rm $DIR/$tfile || error "failed to remove released file"
13434 }
13435 run_test 229 "getstripe/stat/rm/attr changes work on released files"
13436
13437 test_230a() {
13438         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13439         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13440         local MDTIDX=1
13441
13442         test_mkdir $DIR/$tdir
13443         test_mkdir -i0 -c1 $DIR/$tdir/test_230_local
13444         local mdt_idx=$($GETSTRIPE -M $DIR/$tdir/test_230_local)
13445         [ $mdt_idx -ne 0 ] &&
13446                 error "create local directory on wrong MDT $mdt_idx"
13447
13448         $LFS mkdir -i $MDTIDX $DIR/$tdir/test_230 ||
13449                         error "create remote directory failed"
13450         local mdt_idx=$($GETSTRIPE -M $DIR/$tdir/test_230)
13451         [ $mdt_idx -ne $MDTIDX ] &&
13452                 error "create remote directory on wrong MDT $mdt_idx"
13453
13454         createmany -o $DIR/$tdir/test_230/t- 10 ||
13455                 error "create files on remote directory failed"
13456         mdt_idx=$($GETSTRIPE -M $DIR/$tdir/test_230/t-0)
13457         [ $mdt_idx -ne $MDTIDX ] && error "create files on wrong MDT $mdt_idx"
13458         rm -r $DIR/$tdir || error "unlink remote directory failed"
13459 }
13460 run_test 230a "Create remote directory and files under the remote directory"
13461
13462 test_230b() {
13463         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13464         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13465         local MDTIDX=1
13466         local mdt_index
13467         local i
13468         local file
13469         local pid
13470         local stripe_count
13471         local migrate_dir=$DIR/$tdir/migrate_dir
13472         local other_dir=$DIR/$tdir/other_dir
13473
13474         test_mkdir $DIR/$tdir
13475         test_mkdir -i0 -c1 $migrate_dir
13476         test_mkdir -i0 -c1 $other_dir
13477         for ((i=0; i<10; i++)); do
13478                 mkdir -p $migrate_dir/dir_${i}
13479                 createmany -o $migrate_dir/dir_${i}/f 10 ||
13480                         error "create files under remote dir failed $i"
13481         done
13482
13483         cp /etc/passwd $migrate_dir/$tfile
13484         cp /etc/passwd $other_dir/$tfile
13485         chattr +SAD $migrate_dir
13486         chattr +SAD $migrate_dir/$tfile
13487
13488         local old_dir_flag=$(lsattr -a $migrate_dir | awk '/\/\.$/ {print $1}')
13489         local old_file_flag=$(lsattr $migrate_dir/$tfile | awk '{print $1}')
13490         local old_dir_mode=$(stat -c%f $migrate_dir)
13491         local old_file_mode=$(stat -c%f $migrate_dir/$tfile)
13492
13493         mkdir -p $migrate_dir/dir_default_stripe2
13494         $SETSTRIPE -c 2 $migrate_dir/dir_default_stripe2
13495         $SETSTRIPE -c 2 $migrate_dir/${tfile}_stripe2
13496
13497         mkdir -p $other_dir
13498         ln $migrate_dir/$tfile $other_dir/luna
13499         ln $migrate_dir/$tfile $migrate_dir/sofia
13500         ln $other_dir/$tfile $migrate_dir/david
13501         ln -s $migrate_dir/$tfile $other_dir/zachary
13502         ln -s $migrate_dir/$tfile $migrate_dir/${tfile}_ln
13503         ln -s $other_dir/$tfile $migrate_dir/${tfile}_ln_other
13504
13505         $LFS migrate -m $MDTIDX $migrate_dir ||
13506                 error "fails on migrating remote dir to MDT1"
13507
13508         echo "migratate to MDT1, then checking.."
13509         for ((i = 0; i < 10; i++)); do
13510                 for file in $(find $migrate_dir/dir_${i}); do
13511                         mdt_index=$($LFS getstripe -M $file)
13512                         [ $mdt_index == $MDTIDX ] ||
13513                                 error "$file is not on MDT${MDTIDX}"
13514                 done
13515         done
13516
13517         # the multiple link file should still in MDT0
13518         mdt_index=$($LFS getstripe -M $migrate_dir/$tfile)
13519         [ $mdt_index == 0 ] ||
13520                 error "$file is not on MDT${MDTIDX}"
13521
13522         local new_dir_flag=$(lsattr -a $migrate_dir | awk '/\/\.$/ {print $1}')
13523         [ "$old_dir_flag" = "$new_dir_flag" ] ||
13524                 error " expect $old_dir_flag get $new_dir_flag"
13525
13526         local new_file_flag=$(lsattr $migrate_dir/$tfile | awk '{print $1}')
13527         [ "$old_file_flag" = "$new_file_flag" ] ||
13528                 error " expect $old_file_flag get $new_file_flag"
13529
13530         local new_dir_mode=$(stat -c%f $migrate_dir)
13531         [ "$old_dir_mode" = "$new_dir_mode" ] ||
13532                 error "expect mode $old_dir_mode get $new_dir_mode"
13533
13534         local new_file_mode=$(stat -c%f $migrate_dir/$tfile)
13535         [ "$old_file_mode" = "$new_file_mode" ] ||
13536                 error "expect mode $old_file_mode get $new_file_mode"
13537
13538         diff /etc/passwd $migrate_dir/$tfile ||
13539                 error "$tfile different after migration"
13540
13541         diff /etc/passwd $other_dir/luna ||
13542                 error "luna different after migration"
13543
13544         diff /etc/passwd $migrate_dir/sofia ||
13545                 error "sofia different after migration"
13546
13547         diff /etc/passwd $migrate_dir/david ||
13548                 error "david different after migration"
13549
13550         diff /etc/passwd $other_dir/zachary ||
13551                 error "zachary different after migration"
13552
13553         diff /etc/passwd $migrate_dir/${tfile}_ln ||
13554                 error "${tfile}_ln different after migration"
13555
13556         diff /etc/passwd $migrate_dir/${tfile}_ln_other ||
13557                 error "${tfile}_ln_other different after migration"
13558
13559         stripe_count=$($LFS getstripe -c $migrate_dir/dir_default_stripe2)
13560         [ $stripe_count = 2 ] ||
13561                 error "dir strpe_count $d != 2 after migration."
13562
13563         stripe_count=$($LFS getstripe -c $migrate_dir/${tfile}_stripe2)
13564         [ $stripe_count = 2 ] ||
13565                 error "file strpe_count $d != 2 after migration."
13566
13567         #migrate back to MDT0
13568         MDTIDX=0
13569
13570         $LFS migrate -m $MDTIDX $migrate_dir ||
13571                 error "fails on migrating remote dir to MDT0"
13572
13573         echo "migrate back to MDT0, checking.."
13574         for file in $(find $migrate_dir); do
13575                 mdt_index=$($LFS getstripe -M $file)
13576                 [ $mdt_index == $MDTIDX ] ||
13577                         error "$file is not on MDT${MDTIDX}"
13578         done
13579
13580         local new_dir_flag=$(lsattr -a $migrate_dir | awk '/\/\.$/ {print $1}')
13581         [ "$old_dir_flag" = "$new_dir_flag" ] ||
13582                 error " expect $old_dir_flag get $new_dir_flag"
13583
13584         local new_file_flag=$(lsattr $migrate_dir/$tfile | awk '{print $1}')
13585         [ "$old_file_flag" = "$new_file_flag" ] ||
13586                 error " expect $old_file_flag get $new_file_flag"
13587
13588         local new_dir_mode=$(stat -c%f $migrate_dir)
13589         [ "$old_dir_mode" = "$new_dir_mode" ] ||
13590                 error "expect mode $old_dir_mode get $new_dir_mode"
13591
13592         local new_file_mode=$(stat -c%f $migrate_dir/$tfile)
13593         [ "$old_file_mode" = "$new_file_mode" ] ||
13594                 error "expect mode $old_file_mode get $new_file_mode"
13595
13596         diff /etc/passwd ${migrate_dir}/$tfile ||
13597                 error "$tfile different after migration"
13598
13599         diff /etc/passwd ${other_dir}/luna ||
13600                 error "luna different after migration"
13601
13602         diff /etc/passwd ${migrate_dir}/sofia ||
13603                 error "sofia different after migration"
13604
13605         diff /etc/passwd ${other_dir}/zachary ||
13606                 error "zachary different after migration"
13607
13608         diff /etc/passwd $migrate_dir/${tfile}_ln ||
13609                 error "${tfile}_ln different after migration"
13610
13611         diff /etc/passwd $migrate_dir/${tfile}_ln_other ||
13612                 error "${tfile}_ln_other different after migration"
13613
13614         stripe_count=$($LFS getstripe -c ${migrate_dir}/dir_default_stripe2)
13615         [ $stripe_count = 2 ] ||
13616                 error "dir strpe_count $d != 2 after migration."
13617
13618         stripe_count=$($LFS getstripe -c ${migrate_dir}/${tfile}_stripe2)
13619         [ $stripe_count = 2 ] ||
13620                 error "file strpe_count $d != 2 after migration."
13621
13622         rm -rf $DIR/$tdir || error "rm dir failed after migration"
13623 }
13624 run_test 230b "migrate directory"
13625
13626 test_230c() {
13627         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13628         remote_mds_nodsh && skip "remote MDS with nodsh" && return
13629         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13630         local MDTIDX=1
13631         local mdt_index
13632         local file
13633         local migrate_dir=$DIR/$tdir/migrate_dir
13634
13635         #If migrating directory fails in the middle, all entries of
13636         #the directory is still accessiable.
13637         test_mkdir $DIR/$tdir
13638         test_mkdir -i0 -c1 $migrate_dir
13639         stat $migrate_dir
13640         createmany -o $migrate_dir/f 10 ||
13641                 error "create files under ${migrate_dir} failed"
13642
13643         #failed after migrating 5 entries
13644         #OBD_FAIL_MIGRATE_ENTRIES       0x1801
13645         do_facet mds1 lctl set_param fail_loc=0x20001801
13646         do_facet mds1 lctl  set_param fail_val=5
13647         local t=$(ls $migrate_dir | wc -l)
13648         $LFS migrate --mdt-index $MDTIDX $migrate_dir &&
13649                 error "migrate should fail after 5 entries"
13650
13651         mkdir $migrate_dir/dir &&
13652                 error "mkdir succeeds under migrating directory"
13653         touch $migrate_dir/file &&
13654                 error "touch file succeeds under migrating directory"
13655
13656         local u=$(ls $migrate_dir | wc -l)
13657         [ "$u" == "$t" ] || error "$u != $t during migration"
13658
13659         for file in $(find $migrate_dir); do
13660                 stat $file || error "stat $file failed"
13661         done
13662
13663         do_facet mds1 lctl set_param fail_loc=0
13664         do_facet mds1 lctl set_param fail_val=0
13665
13666         $LFS migrate -m $MDTIDX $migrate_dir ||
13667                 error "migrate open files should failed with open files"
13668
13669         echo "Finish migration, then checking.."
13670         for file in $(find $migrate_dir); do
13671                 mdt_index=$($LFS getstripe -M $file)
13672                 [ $mdt_index == $MDTIDX ] ||
13673                         error "$file is not on MDT${MDTIDX}"
13674         done
13675
13676         rm -rf $DIR/$tdir || error "rm dir failed after migration"
13677 }
13678 run_test 230c "check directory accessiblity if migration is failed"
13679
13680 test_230d() {
13681         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13682         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13683         local MDTIDX=1
13684         local mdt_index
13685         local migrate_dir=$DIR/$tdir/migrate_dir
13686         local i
13687         local j
13688
13689         test_mkdir $DIR/$tdir
13690         test_mkdir -i0 -c1 $migrate_dir
13691
13692         for ((i=0; i<100; i++)); do
13693                 test_mkdir -i0 -c1 $migrate_dir/dir_${i}
13694                 createmany -o $migrate_dir/dir_${i}/f 100 ||
13695                         error "create files under remote dir failed $i"
13696         done
13697
13698         $LFS migrate -m $MDTIDX $migrate_dir ||
13699                 error "migrate remote dir error"
13700
13701         echo "Finish migration, then checking.."
13702         for file in $(find $migrate_dir); do
13703                 mdt_index=$($LFS getstripe -M $file)
13704                 [ $mdt_index == $MDTIDX ] ||
13705                         error "$file is not on MDT${MDTIDX}"
13706         done
13707
13708         rm -rf $DIR/$tdir || error "rm dir failed after migration"
13709 }
13710 run_test 230d "check migrate big directory"
13711
13712 test_230e() {
13713         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13714         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13715         local i
13716         local j
13717         local a_fid
13718         local b_fid
13719
13720         mkdir -p $DIR/$tdir
13721         mkdir $DIR/$tdir/migrate_dir
13722         mkdir $DIR/$tdir/other_dir
13723         touch $DIR/$tdir/migrate_dir/a
13724         ln $DIR/$tdir/migrate_dir/a $DIR/$tdir/other_dir/b
13725         ls $DIR/$tdir/other_dir
13726
13727         $LFS migrate -m 1 $DIR/$tdir/migrate_dir ||
13728                 error "migrate dir fails"
13729
13730         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir)
13731         [ $mdt_index == 1 ] || error "migrate_dir is not on MDT1"
13732
13733         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir/a)
13734         [ $mdt_index == 0 ] || error "a is not on MDT0"
13735
13736         $LFS migrate -m 1 $DIR/$tdir/other_dir ||
13737                 error "migrate dir fails"
13738
13739         mdt_index=$($LFS getstripe -M $DIR/$tdir/other_dir)
13740         [ $mdt_index == 1 ] || error "other_dir is not on MDT1"
13741
13742         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir/a)
13743         [ $mdt_index == 1 ] || error "a is not on MDT1"
13744
13745         mdt_index=$($LFS getstripe -M $DIR/$tdir/other_dir/b)
13746         [ $mdt_index == 1 ] || error "b is not on MDT1"
13747
13748         a_fid=$($LFS path2fid $DIR/$tdir/migrate_dir/a)
13749         b_fid=$($LFS path2fid $DIR/$tdir/other_dir/b)
13750
13751         [ "$a_fid" = "$b_fid" ] || error "different fid after migration"
13752
13753         rm -rf $DIR/$tdir || error "rm dir failed after migration"
13754 }
13755 run_test 230e "migrate mulitple local link files"
13756
13757 test_230f() {
13758         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13759         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13760         local a_fid
13761         local ln_fid
13762
13763         mkdir -p $DIR/$tdir
13764         mkdir $DIR/$tdir/migrate_dir
13765         $LFS mkdir -i1 $DIR/$tdir/other_dir
13766         touch $DIR/$tdir/migrate_dir/a
13767         ln $DIR/$tdir/migrate_dir/a $DIR/$tdir/other_dir/ln1
13768         ln $DIR/$tdir/migrate_dir/a $DIR/$tdir/other_dir/ln2
13769         ls $DIR/$tdir/other_dir
13770
13771         # a should be migrated to MDT1, since no other links on MDT0
13772         $LFS migrate -m 1 $DIR/$tdir/migrate_dir ||
13773                 error "#1 migrate dir fails"
13774         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir)
13775         [ $mdt_index == 1 ] || error "migrate_dir is not on MDT1"
13776         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir/a)
13777         [ $mdt_index == 1 ] || error "a is not on MDT1"
13778
13779         # a should stay on MDT1, because it is a mulitple link file
13780         $LFS migrate -m 0 $DIR/$tdir/migrate_dir ||
13781                 error "#2 migrate dir fails"
13782         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir/a)
13783         [ $mdt_index == 1 ] || error "a is not on MDT1"
13784
13785         $LFS migrate -m 1 $DIR/$tdir/migrate_dir ||
13786                 error "#3 migrate dir fails"
13787
13788         a_fid=$($LFS path2fid $DIR/$tdir/migrate_dir/a)
13789         ln_fid=$($LFS path2fid $DIR/$tdir/other_dir/ln1)
13790         [ "$a_fid" = "$ln_fid" ] || error "different fid after migrate to MDT1"
13791
13792         rm -rf $DIR/$tdir/other_dir/ln1 || error "unlink ln1 fails"
13793         rm -rf $DIR/$tdir/other_dir/ln2 || error "unlink ln2 fails"
13794
13795         # a should be migrated to MDT0, since no other links on MDT1
13796         $LFS migrate -m 0 $DIR/$tdir/migrate_dir ||
13797                 error "#4 migrate dir fails"
13798         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir/a)
13799         [ $mdt_index == 0 ] || error "a is not on MDT0"
13800
13801         rm -rf $DIR/$tdir || error "rm dir failed after migration"
13802 }
13803 run_test 230f "migrate mulitple remote link files"
13804
13805 test_230g() {
13806         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13807         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13808
13809         mkdir -p $DIR/$tdir/migrate_dir
13810
13811         $LFS migrate -m 1000 $DIR/$tdir/migrate_dir &&
13812                 error "migrating dir to non-exist MDT succeeds"
13813         true
13814 }
13815 run_test 230g "migrate dir to non-exist MDT"
13816
13817 test_230h() {
13818         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13819         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13820         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.64) ] &&
13821                 skip "Need MDS version at least 2.7.64" && return
13822         local mdt_index
13823
13824         mkdir -p $DIR/$tdir/migrate_dir
13825
13826         $LFS migrate -m1 $DIR &&
13827                 error "migrating mountpoint1 should fail"
13828
13829         $LFS migrate -m1 $DIR/$tdir/.. &&
13830                 error "migrating mountpoint2 should fail"
13831
13832         $LFS migrate -m1 $DIR/$tdir/migrate_dir/.. ||
13833                 error "migrating $tdir fail"
13834
13835         mdt_index=$($LFS getstripe -M $DIR/$tdir)
13836         [ $mdt_index == 1 ] || error "$mdt_index != 1 after migration"
13837
13838         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir)
13839         [ $mdt_index == 1 ] || error "$mdt_index != 1 after migration"
13840
13841 }
13842 run_test 230h "migrate .. and root"
13843
13844 test_230i() {
13845         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13846         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13847
13848         mkdir -p $DIR/$tdir/migrate_dir
13849
13850         $LFS migrate -m 1 $DIR/$tdir/migrate_dir/ ||
13851                 error "migration fails with a tailing slash"
13852
13853         $LFS migrate -m 0 $DIR/$tdir/migrate_dir// ||
13854                 error "migration fails with two tailing slashes"
13855 }
13856 run_test 230i "lfs migrate -m tolerates trailing slashes"
13857
13858 test_231a()
13859 {
13860         # For simplicity this test assumes that max_pages_per_rpc
13861         # is the same across all OSCs
13862         local max_pages=$($LCTL get_param -n osc.*.max_pages_per_rpc | head -n1)
13863         local bulk_size=$((max_pages * 4096))
13864         local brw_size=$(do_facet ost1 $LCTL get_param -n obdfilter.*.brw_size |
13865                                        head -n 1)
13866
13867         mkdir -p $DIR/$tdir
13868         $LFS setstripe -S ${brw_size}M $DIR/$tdir ||
13869                 error "failed to set stripe with -S ${brw_size}M option"
13870
13871         # clear the OSC stats
13872         $LCTL set_param osc.*.stats=0 &>/dev/null
13873         stop_writeback
13874
13875         # Client writes $bulk_size - there must be 1 rpc for $max_pages.
13876         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=$bulk_size count=1 \
13877                 oflag=direct &>/dev/null || error "dd failed"
13878
13879         sync; sleep 1; sync # just to be safe
13880         local nrpcs=$($LCTL get_param osc.*.stats |awk '/ost_write/ {print $2}')
13881         if [ x$nrpcs != "x1" ]; then
13882                 $LCTL get_param osc.*.stats
13883                 error "found $nrpcs ost_write RPCs, not 1 as expected"
13884         fi
13885
13886         start_writeback
13887         # Drop the OSC cache, otherwise we will read from it
13888         cancel_lru_locks osc
13889
13890         # clear the OSC stats
13891         $LCTL set_param osc.*.stats=0 &>/dev/null
13892
13893         # Client reads $bulk_size.
13894         dd if=$DIR/$tdir/$tfile of=/dev/null bs=$bulk_size count=1 \
13895                 iflag=direct &>/dev/null || error "dd failed"
13896
13897         nrpcs=$($LCTL get_param osc.*.stats | awk '/ost_read/ { print $2 }')
13898         if [ x$nrpcs != "x1" ]; then
13899                 $LCTL get_param osc.*.stats
13900                 error "found $nrpcs ost_read RPCs, not 1 as expected"
13901         fi
13902 }
13903 run_test 231a "checking that reading/writing of BRW RPC size results in one RPC"
13904
13905 test_231b() {
13906         mkdir -p $DIR/$tdir
13907         local i
13908         for i in {0..1023}; do
13909                 dd if=/dev/zero of=$DIR/$tdir/$tfile conv=notrunc \
13910                         seek=$((2 * i)) bs=4096 count=1 &>/dev/null ||
13911                         error "dd of=$DIR/$tdir/$tfile seek=$((2 * i)) failed"
13912         done
13913         sync
13914 }
13915 run_test 231b "must not assert on fully utilized OST request buffer"
13916
13917 test_232() {
13918         mkdir -p $DIR/$tdir
13919         #define OBD_FAIL_LDLM_OST_LVB            0x31c
13920         $LCTL set_param fail_loc=0x31c
13921
13922         # ignore dd failure
13923         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=1 || true
13924
13925         $LCTL set_param fail_loc=0
13926         umount_client $MOUNT || error "umount failed"
13927         mount_client $MOUNT || error "mount failed"
13928 }
13929 run_test 232 "failed lock should not block umount"
13930
13931 test_233a() {
13932         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.64) ] ||
13933         { skip "Need MDS version at least 2.3.64"; return; }
13934         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
13935
13936         local fid=$($LFS path2fid $MOUNT)
13937         stat $MOUNT/.lustre/fid/$fid > /dev/null ||
13938                 error "cannot access $MOUNT using its FID '$fid'"
13939 }
13940 run_test 233a "checking that OBF of the FS root succeeds"
13941
13942 test_233b() {
13943         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.5.90) ] ||
13944         { skip "Need MDS version at least 2.5.90"; return; }
13945         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
13946
13947         local fid=$($LFS path2fid $MOUNT/.lustre)
13948         stat $MOUNT/.lustre/fid/$fid > /dev/null ||
13949                 error "cannot access $MOUNT/.lustre using its FID '$fid'"
13950
13951         fid=$($LFS path2fid $MOUNT/.lustre/fid)
13952         stat $MOUNT/.lustre/fid/$fid > /dev/null ||
13953                 error "cannot access $MOUNT/.lustre/fid using its FID '$fid'"
13954 }
13955 run_test 233b "checking that OBF of the FS .lustre succeeds"
13956
13957 test_234() {
13958         local p="$TMP/sanityN-$TESTNAME.parameters"
13959         save_lustre_params client "llite.*.xattr_cache" > $p
13960         lctl set_param llite.*.xattr_cache 1 ||
13961                 { skip "xattr cache is not supported"; return 0; }
13962
13963         mkdir -p $DIR/$tdir || error "mkdir failed"
13964         touch $DIR/$tdir/$tfile || error "touch failed"
13965         # OBD_FAIL_LLITE_XATTR_ENOMEM
13966         $LCTL set_param fail_loc=0x1405
13967         # output of the form: attr 2 4 44 3 fc13 x86_64
13968         V=($(IFS=".-" rpm -q attr))
13969         if [[ ${V[1]} > 2 || ${V[2]} > 4 || ${V[3]} > 44 ||
13970               ${V[1]} = 2 && ${V[2]} = 4 && ${V[3]} = 44 && ${V[4]} > 6 ]]; then
13971                 # attr pre-2.4.44-7 had a bug with rc
13972                 # LU-3703 - SLES 11 and FC13 clients have older attr
13973                 getfattr -n user.attr $DIR/$tdir/$tfile &&
13974                         error "getfattr should have failed with ENOMEM"
13975         else
13976                 skip "LU-3703: attr version $(getfattr --version) too old"
13977         fi
13978         $LCTL set_param fail_loc=0x0
13979         rm -rf $DIR/$tdir
13980
13981         restore_lustre_params < $p
13982         rm -f $p
13983 }
13984 run_test 234 "xattr cache should not crash on ENOMEM"
13985
13986 test_235() {
13987         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.52) ] &&
13988                 skip "Need MDS version at least 2.4.52" && return
13989         flock_deadlock $DIR/$tfile
13990         local RC=$?
13991         case $RC in
13992                 0)
13993                 ;;
13994                 124) error "process hangs on a deadlock"
13995                 ;;
13996                 *) error "error executing flock_deadlock $DIR/$tfile"
13997                 ;;
13998         esac
13999 }
14000 run_test 235 "LU-1715: flock deadlock detection does not work properly"
14001
14002 #LU-2935
14003 test_236() {
14004         check_swap_layouts_support && return 0
14005         test_mkdir -p -c1 $DIR/$tdir || error "mkdir $tdir failed"
14006
14007         local ref1=/etc/passwd
14008         local ref2=/etc/group
14009         local file1=$DIR/$tdir/f1
14010         local file2=$DIR/$tdir/f2
14011
14012         $SETSTRIPE -c 1 $file1 || error "cannot setstripe on '$file1': rc = $?"
14013         cp $ref1 $file1 || error "cp $ref1 $file1 failed: rc = $?"
14014         $SETSTRIPE -c 2 $file2 || error "cannot setstripe on '$file2': rc = $?"
14015         cp $ref2 $file2 || error "cp $ref2 $file2 failed: rc = $?"
14016         local fd=$(free_fd)
14017         local cmd="exec $fd<>$file2"
14018         eval $cmd
14019         rm $file2
14020         $LFS swap_layouts $file1 /proc/self/fd/${fd} ||
14021                 error "cannot swap layouts of '$file1' and /proc/self/fd/${fd}"
14022         cmd="exec $fd>&-"
14023         eval $cmd
14024         cmp $ref2 $file1 || error "content compare failed ($ref2 != $file1)"
14025
14026         #cleanup
14027         rm -rf $DIR/$tdir
14028 }
14029 run_test 236 "Layout swap on open unlinked file"
14030
14031 # test to verify file handle related system calls
14032 # (name_to_handle_at/open_by_handle_at)
14033 # The new system calls are supported in glibc >= 2.14.
14034
14035 test_237() {
14036         echo "Test file_handle syscalls" > $DIR/$tfile ||
14037                 error "write failed"
14038         check_fhandle_syscalls $DIR/$tfile ||
14039                 error "check_fhandle_syscalls failed"
14040 }
14041 run_test 237 "Verify name_to_handle_at/open_by_handle_at syscalls"
14042
14043 # LU-4659 linkea consistency
14044 test_238() {
14045         local server_version=$(lustre_version_code $SINGLEMDS)
14046
14047         [[ $server_version -gt $(version_code 2.5.57) ]] ||
14048                 [[ $server_version -gt $(version_code 2.5.1) &&
14049                    $server_version -lt $(version_code 2.5.50) ]] ||
14050                 { skip "Need MDS version at least 2.5.58 or 2.5.2+"; return; }
14051
14052         touch $DIR/$tfile
14053         ln $DIR/$tfile $DIR/$tfile.lnk
14054         touch $DIR/$tfile.new
14055         mv $DIR/$tfile.new $DIR/$tfile
14056         local fid1=$($LFS path2fid $DIR/$tfile)
14057         local fid2=$($LFS path2fid $DIR/$tfile.lnk)
14058         local path1=$($LFS fid2path $FSNAME "$fid1")
14059         [ $tfile == $path1 ] || error "linkea inconsistent: $tfile $fid1 $path1"
14060         local path2=$($LFS fid2path $FSNAME "$fid2")
14061         [ $tfile.lnk == $path2 ] ||
14062                 error "linkea inconsistent: $tfile.lnk $fid2 $path2!"
14063         rm -f $DIR/$tfile*
14064 }
14065 run_test 238 "Verify linkea consistency"
14066
14067 test_239() {
14068         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.5.60) ] &&
14069                 skip "Need MDS version at least 2.5.60" && return
14070         local list=$(comma_list $(mdts_nodes))
14071
14072         mkdir -p $DIR/$tdir
14073         createmany -o $DIR/$tdir/f- 5000
14074         unlinkmany $DIR/$tdir/f- 5000
14075         do_nodes $list "lctl set_param -n osp*.*.sync_changes 1"
14076         changes=$(do_nodes $list "lctl get_param -n osc.*MDT*.sync_changes \
14077                         osc.*MDT*.sync_in_flight" | calc_sum)
14078         [ "$changes" -eq 0 ] || error "$changes not synced"
14079 }
14080 run_test 239 "osp_sync test"
14081
14082 test_239a() { #LU-5297
14083         remote_mds_nodsh && skip "remote MDS with nodsh" && return
14084         touch $DIR/$tfile
14085         #define OBD_FAIL_OSP_CHECK_INVALID_REC     0x2100
14086         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x2100
14087         chgrp $RUNAS_GID $DIR/$tfile
14088         wait_delete_completed
14089 }
14090 run_test 239a "process invalid osp sync record correctly"
14091
14092 test_239b() { #LU-5297
14093         remote_mds_nodsh && skip "remote MDS with nodsh" && return
14094         touch $DIR/$tfile1
14095         #define OBD_FAIL_OSP_CHECK_ENOMEM     0x2101
14096         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x2101
14097         chgrp $RUNAS_GID $DIR/$tfile1
14098         wait_delete_completed
14099         do_facet $SINGLEMDS $LCTL set_param fail_loc=0
14100         touch $DIR/$tfile2
14101         chgrp $RUNAS_GID $DIR/$tfile2
14102         wait_delete_completed
14103 }
14104 run_test 239b "process osp sync record with ENOMEM error correctly"
14105
14106 test_240() {
14107         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
14108         remote_mds_nodsh && skip "remote MDS with nodsh" && return
14109
14110         mkdir -p $DIR/$tdir
14111
14112         $LFS mkdir -i 0 $DIR/$tdir/d0 ||
14113                 error "failed to mkdir $DIR/$tdir/d0 on MDT0"
14114         $LFS mkdir -i 1 $DIR/$tdir/d0/d1 ||
14115                 error "failed to mkdir $DIR/$tdir/d0/d1 on MDT1"
14116
14117         umount_client $MOUNT || error "umount failed"
14118         #define OBD_FAIL_TGT_DELAY_CONDITIONAL   0x713
14119         do_facet mds2 lctl set_param fail_loc=0x713 fail_val=1
14120         mount_client $MOUNT || error "failed to mount client"
14121
14122         echo "stat $DIR/$tdir/d0/d1, should not fail/ASSERT"
14123         stat $DIR/$tdir/d0/d1 || error "fail to stat $DIR/$tdir/d0/d1"
14124 }
14125 run_test 240 "race between ldlm enqueue and the connection RPC (no ASSERT)"
14126
14127 test_241_bio() {
14128         for LOOP in $(seq $1); do
14129                 dd if=$DIR/$tfile of=/dev/null bs=40960 count=1 2>/dev/null
14130                 cancel_lru_locks osc || true
14131         done
14132 }
14133
14134 test_241_dio() {
14135         for LOOP in $(seq $1); do
14136                 dd if=$DIR/$tfile of=/dev/null bs=40960 count=1 \
14137                                                 iflag=direct 2>/dev/null
14138         done
14139 }
14140
14141 test_241a() { # was test_241
14142         dd if=/dev/zero of=$DIR/$tfile count=1 bs=40960
14143         ls -la $DIR/$tfile
14144         cancel_lru_locks osc
14145         test_241_bio 1000 &
14146         PID=$!
14147         test_241_dio 1000
14148         wait $PID
14149 }
14150 run_test 241a "bio vs dio"
14151
14152 test_241b() {
14153         dd if=/dev/zero of=$DIR/$tfile count=1 bs=40960
14154         ls -la $DIR/$tfile
14155         test_241_dio 1000 &
14156         PID=$!
14157         test_241_dio 1000
14158         wait $PID
14159 }
14160 run_test 241b "dio vs dio"
14161
14162 test_242() {
14163         remote_mds_nodsh && skip "remote MDS with nodsh" && return
14164         mkdir -p $DIR/$tdir
14165         touch $DIR/$tdir/$tfile
14166
14167         #define OBD_FAIL_MDS_READPAGE_PACK      0x105
14168         do_facet mds1 lctl set_param fail_loc=0x105
14169         /bin/ls $DIR/$tdir && error "ls $DIR/$tdir should fail"
14170
14171         do_facet mds1 lctl set_param fail_loc=0
14172         /bin/ls $DIR/$tdir || error "ls $DIR/$tdir failed"
14173 }
14174 run_test 242 "mdt_readpage failure should not cause directory unreadable"
14175
14176 test_243()
14177 {
14178         test_mkdir -p $DIR/$tdir
14179         group_lock_test -d $DIR/$tdir || error "A group lock test failed"
14180 }
14181 run_test 243 "various group lock tests"
14182
14183 test_244()
14184 {
14185         test_mkdir -p $DIR/$tdir
14186         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=35
14187         sendfile_grouplock $DIR/$tdir/$tfile || \
14188                 error "sendfile+grouplock failed"
14189         rm -rf $DIR/$tdir
14190 }
14191 run_test 244 "sendfile with group lock tests"
14192
14193 test_245() {
14194         local flagname="multi_mod_rpcs"
14195         local connect_data_name="max_mod_rpcs"
14196         local out
14197
14198         # check if multiple modify RPCs flag is set
14199         out=$($LCTL get_param mdc.$FSNAME-MDT0000-*.import |
14200                 grep "connect_flags:")
14201         echo "$out"
14202
14203         echo "$out" | grep -qw $flagname
14204         if [ $? -ne 0 ]; then
14205                 echo "connect flag $flagname is not set"
14206                 return
14207         fi
14208
14209         # check if multiple modify RPCs data is set
14210         out=$($LCTL get_param mdc.$FSNAME-MDT0000-*.import)
14211         echo "$out"
14212
14213         echo "$out" | grep -qw $connect_data_name ||
14214                 error "import should have connect data $connect_data_name"
14215 }
14216 run_test 245 "check mdc connection flag/data: multiple modify RPCs"
14217
14218 test_246() { # LU-7371
14219         remote_ost_nodsh && skip "remote OST with nodsh" && return
14220         [ $(lustre_version_code ost1) -lt $(version_code 2.7.62) ] &&
14221                 skip "Need OST version >= 2.7.62" && return 0
14222         do_facet ost1 $LCTL set_param fail_val=4095
14223 #define OBD_FAIL_OST_READ_SIZE          0x234
14224         do_facet ost1 $LCTL set_param fail_loc=0x234
14225         $LFS setstripe $DIR/$tfile -i 0 -c 1
14226         dd if=/dev/zero of=$DIR/$tfile bs=4095 count=1 > /dev/null 2>&1
14227         cancel_lru_locks $FSNAME-OST0000
14228         dd if=$DIR/$tfile of=/dev/null bs=1048576 || error "Read failed"
14229 }
14230 run_test 246 "Read file of size 4095 should return right length"
14231
14232 test_247a() {
14233         lctl get_param -n mdc.$FSNAME-MDT0000*.import |
14234                 grep -q subtree ||
14235                 { skip "Fileset feature is not supported"; return; }
14236
14237         local submount=${MOUNT}_$tdir
14238
14239         mkdir $MOUNT/$tdir
14240         mkdir -p $submount || error "mkdir $submount failed"
14241         FILESET="$FILESET/$tdir" mount_client $submount ||
14242                 error "mount $submount failed"
14243         echo foo > $submount/$tfile || error "write $submount/$tfile failed"
14244         [ $(cat $MOUNT/$tdir/$tfile) = "foo" ] ||
14245                 error "read $MOUNT/$tdir/$tfile failed"
14246         umount_client $submount || error "umount $submount failed"
14247         rmdir $submount
14248 }
14249 run_test 247a "mount subdir as fileset"
14250
14251 test_247b() {
14252         lctl get_param -n mdc.$FSNAME-MDT0000*.import | grep -q subtree ||
14253                 { skip "Fileset feature is not supported"; return; }
14254
14255         local submount=${MOUNT}_$tdir
14256
14257         rm -rf $MOUNT/$tdir
14258         mkdir -p $submount || error "mkdir $submount failed"
14259         SKIP_FILESET=1
14260         FILESET="$FILESET/$tdir" mount_client $submount &&
14261                 error "mount $submount should fail"
14262         rmdir $submount
14263 }
14264 run_test 247b "mount subdir that dose not exist"
14265
14266 test_247c() {
14267         lctl get_param -n mdc.$FSNAME-MDT0000*.import | grep -q subtree ||
14268                 { skip "Fileset feature is not supported"; return; }
14269
14270         local submount=${MOUNT}_$tdir
14271
14272         mkdir -p $MOUNT/$tdir/dir1
14273         mkdir -p $submount || error "mkdir $submount failed"
14274         FILESET="$FILESET/$tdir" mount_client $submount ||
14275                 error "mount $submount failed"
14276         local fid=$($LFS path2fid $MOUNT/)
14277         $LFS fid2path $submount $fid && error "fid2path should fail"
14278         umount_client $submount || error "umount $submount failed"
14279         rmdir $submount
14280 }
14281 run_test 247c "running fid2path outside root"
14282
14283 test_247d() {
14284         lctl get_param -n mdc.$FSNAME-MDT0000*.import | grep -q subtree ||
14285                 { skip "Fileset feature is not supported"; return; }
14286
14287         local submount=${MOUNT}_$tdir
14288
14289         mkdir -p $MOUNT/$tdir/dir1
14290         mkdir -p $submount || error "mkdir $submount failed"
14291         FILESET="$FILESET/$tdir" mount_client $submount ||
14292                 error "mount $submount failed"
14293         local fid=$($LFS path2fid $submount/dir1)
14294         $LFS fid2path $submount $fid || error "fid2path should succeed"
14295         umount_client $submount || error "umount $submount failed"
14296         rmdir $submount
14297 }
14298 run_test 247d "running fid2path inside root"
14299
14300 # LU-8037
14301 test_247e() {
14302         lctl get_param -n mdc.$FSNAME-MDT0000*.import |
14303                 grep -q subtree ||
14304                 { skip "Fileset feature is not supported"; return; }
14305
14306         local submount=${MOUNT}_$tdir
14307
14308         mkdir $MOUNT/$tdir
14309         mkdir -p $submount || error "mkdir $submount failed"
14310         FILESET="$FILESET/.." mount_client $submount &&
14311                 error "mount $submount should fail"
14312         rmdir $submount
14313 }
14314 run_test 247e "mount .. as fileset"
14315
14316 test_248() {
14317         local fast_read_sav=$($LCTL get_param -n llite.*.fast_read 2>/dev/null)
14318         [ -z "$fast_read_sav" ] && skip "no fast read support" && return
14319
14320         # create a large file for fast read verification
14321         dd if=/dev/zero of=$DIR/$tfile bs=1M count=128 > /dev/null 2>&1
14322
14323         # make sure the file is created correctly
14324         $CHECKSTAT -s $((128*1024*1024)) $DIR/$tfile ||
14325                 { rm -f $DIR/$tfile; skip "file creation error" && return; }
14326
14327         echo "Test 1: verify that fast read is 4 times faster on cache read"
14328
14329         # small read with fast read enabled
14330         $LCTL set_param -n llite.*.fast_read=1
14331         local t_fast=$(dd if=$DIR/$tfile of=/dev/null bs=4k 2>&1 |
14332                 awk '/copied/ { print $6 }')
14333
14334         # small read with fast read disabled
14335         $LCTL set_param -n llite.*.fast_read=0
14336         local t_slow=$(dd if=$DIR/$tfile of=/dev/null bs=4k 2>&1 |
14337                 awk '/copied/ { print $6 }')
14338
14339         # verify that fast read is 4 times faster for cache read
14340         [ $(bc <<< "4 * $t_fast < $t_slow") -eq 1 ] ||
14341                 error_not_in_vm "fast read was not 4 times faster: " \
14342                            "$t_fast vs $t_slow"
14343
14344         echo "Test 2: verify the performance between big and small read"
14345         $LCTL set_param -n llite.*.fast_read=1
14346
14347         # 1k non-cache read
14348         cancel_lru_locks osc
14349         local t_1k=$(dd if=$DIR/$tfile of=/dev/null bs=1k 2>&1 |
14350                 awk '/copied/ { print $6 }')
14351
14352         # 1M non-cache read
14353         cancel_lru_locks osc
14354         local t_1m=$(dd if=$DIR/$tfile of=/dev/null bs=1k 2>&1 |
14355                 awk '/copied/ { print $6 }')
14356
14357         # verify that big IO is not 4 times faster than small IO
14358         [ $(bc <<< "4 * $t_1k >= $t_1m") -eq 1 ] ||
14359                 error_not_in_vm "bigger IO is way too fast: $t_1k vs $t_1m"
14360
14361         $LCTL set_param -n llite.*.fast_read=$fast_read_sav
14362         rm -f $DIR/$tfile
14363 }
14364 run_test 248 "fast read verification"
14365
14366 test_249() { # LU-7890
14367         rm -f $DIR/$tfile
14368         $SETSTRIPE -c 1 $DIR/$tfile
14369
14370         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.53) ] &&
14371         skip "Need at least version 2.8.54"
14372
14373         # Offset 2T == 4k * 512M
14374         dd if=/dev/zero of=$DIR/$tfile bs=4k count=1 seek=512M ||
14375                 error "dd to 2T offset failed"
14376 }
14377 run_test 249 "Write above 2T file size"
14378
14379 test_250() {
14380         [ "$(facet_fstype ost$(($($GETSTRIPE -i $DIR/$tfile) + 1)))" = "zfs" ] \
14381          && skip "no 16TB file size limit on ZFS" && return
14382
14383         $SETSTRIPE -c 1 $DIR/$tfile
14384         # ldiskfs extent file size limit is (16TB - 4KB - 1) bytes
14385         local size=$((16 * 1024 * 1024 * 1024 * 1024 - 4096 - 1))
14386         $TRUNCATE $DIR/$tfile $size || error "truncate $tfile to $size failed"
14387         dd if=/dev/zero of=$DIR/$tfile bs=10 count=1 oflag=append \
14388                 conv=notrunc,fsync && error "append succeeded"
14389         return 0
14390 }
14391 run_test 250 "Write above 16T limit"
14392
14393 test_251() {
14394         $SETSTRIPE -c -1 -S 1048576 $DIR/$tfile
14395
14396         #define OBD_FAIL_LLITE_LOST_LAYOUT 0x1407
14397         #Skip once - writing the first stripe will succeed
14398         $LCTL set_param fail_loc=0xa0001407 fail_val=1
14399         $MULTIOP $DIR/$tfile o:O_RDWR:w2097152c 2>&1 | grep -q "short write" &&
14400                 error "short write happened"
14401
14402         $LCTL set_param fail_loc=0xa0001407 fail_val=1
14403         $MULTIOP $DIR/$tfile or2097152c 2>&1 | grep -q "short read" &&
14404                 error "short read happened"
14405
14406         rm -f $DIR/$tfile
14407 }
14408 run_test 251 "Handling short read and write correctly"
14409
14410 test_252() {
14411         local tgt
14412         local dev
14413         local out
14414         local uuid
14415         local num
14416         local gen
14417
14418         remote_mds_nodsh && skip "remote MDS with nodsh" && return
14419         remote_ost_nodsh && skip "remote OST with nodsh" && return
14420         if [ "$(facet_fstype ost1)" != "ldiskfs" -o \
14421              "$(facet_fstype mds1)" != "ldiskfs" ]; then
14422                 skip "can only run lr_reader on ldiskfs target"
14423                 return
14424         fi
14425
14426         # check lr_reader on OST0000
14427         tgt=ost1
14428         dev=$(facet_device $tgt)
14429         out=$(do_facet $tgt $LR_READER $dev)
14430         [ $? -eq 0 ] || error "$LR_READER failed on target $tgt device $dev"
14431         echo "$out"
14432         uuid=$(echo "$out" | grep -i uuid | awk '{ print $2 }')
14433         [ "$uuid" == "$(ostuuid_from_index 0)" ] ||
14434                 error "Invalid uuid returned by $LR_READER on target $tgt"
14435         echo -e "uuid returned by $LR_READER is '$uuid'\n"
14436
14437         # check lr_reader -c on MDT0000
14438         tgt=mds1
14439         dev=$(facet_device $tgt)
14440         if ! do_facet $tgt $LR_READER -h | grep -q OPTIONS; then
14441                 echo "$LR_READER does not support additional options"
14442                 return 0
14443         fi
14444         out=$(do_facet $tgt $LR_READER -c $dev)
14445         [ $? -eq 0 ] || error "$LR_READER failed on target $tgt device $dev"
14446         echo "$out"
14447         num=$(echo "$out" | grep -c "mdtlov")
14448         [ "$num" -eq $((MDSCOUNT - 1)) ] ||
14449                 error "Invalid number of mdtlov clients returned by $LR_READER"
14450         echo -e "Number of mdtlov clients returned by $LR_READER is '$num'\n"
14451
14452         # check lr_reader -cr on MDT0000
14453         out=$(do_facet $tgt $LR_READER -cr $dev)
14454         [ $? -eq 0 ] || error "$LR_READER failed on target $tgt device $dev"
14455         echo "$out"
14456         echo "$out" | grep -q "^reply_data:$" ||
14457                 error "$LR_READER should have returned 'reply_data' section"
14458         num=$(echo "$out" | grep -c "client_generation")
14459         echo -e "Number of reply data returned by $LR_READER is '$num'\n"
14460 }
14461 run_test 252 "check lr_reader tool"
14462
14463 test_253_fill_ost() {
14464         local size_mb #how many MB should we write to pass watermark
14465         local lwm=$3  #low watermark
14466         local free_10mb #10% of free space
14467
14468         free_kb=$($LFS df $MOUNT | grep $1 | awk '{ print $4 }')
14469         size_mb=$((free_kb / 1024 - lwm))
14470         free_10mb=$((free_kb / 10240))
14471         #If 10% of free space cross low watermark use it
14472         if (( free_10mb > size_mb )); then
14473                 size_mb=$free_10mb
14474         else
14475                 #At least we need to store 1.1 of difference between
14476                 #free space and low watermark
14477                 size_mb=$((size_mb + size_mb / 10))
14478         fi
14479         if (( lwm <= $((free_kb / 1024)) )) || [ ! -f $DIR/$tdir/1 ]; then
14480                 dd if=/dev/zero of=$DIR/$tdir/1 bs=1M count=$size_mb \
14481                          oflag=append conv=notrunc
14482         fi
14483
14484         sleep_maxage
14485
14486         free_kb=$($LFS df $MOUNT | grep $1 | awk '{ print $4 }')
14487         echo "OST still has $((free_kb / 1024)) mbytes free"
14488 }
14489
14490 test_253() {
14491         local ostidx=0
14492         local rc=0
14493
14494         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14495         remote_mds_nodsh && skip "remote MDS with nodsh" && return
14496         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
14497
14498         local ost_name=$($LFS osts |
14499                 sed -n 's/^'$ostidx': \(.*\)_UUID .*/\1/p')
14500         # on the mdt's osc
14501         local mdtosc_proc1=$(get_mdtosc_proc_path $SINGLEMDS $ost_name)
14502         do_facet $SINGLEMDS $LCTL get_param -n \
14503                 osp.$mdtosc_proc1.reserved_mb_high ||
14504                 { skip  "remote MDS does not support reserved_mb_high" &&
14505                   return; }
14506
14507         rm -rf $DIR/$tdir
14508         wait_mds_ost_sync
14509         wait_delete_completed
14510         mkdir $DIR/$tdir
14511
14512         local last_wm_h=$(do_facet $SINGLEMDS $LCTL get_param -n \
14513                         osp.$mdtosc_proc1.reserved_mb_high)
14514         local last_wm_l=$(do_facet $SINGLEMDS $LCTL get_param -n \
14515                         osp.$mdtosc_proc1.reserved_mb_low)
14516         echo "prev high watermark $last_wm_h, prev low watermark $last_wm_l"
14517
14518         create_pool $FSNAME.$TESTNAME || error "Pool creation failed"
14519         do_facet mgs $LCTL pool_add $FSNAME.$TESTNAME $ost_name ||
14520                 error "Adding $ost_name to pool failed"
14521
14522         # Wait for client to see a OST at pool
14523         wait_update $HOSTNAME "$LCTL get_param -n
14524                 lov.$FSNAME-*.pools.$TESTNAME | sort -u |
14525                 grep $ost_name" "$ost_name""_UUID" $((TIMEOUT/2)) ||
14526                 error "Client can not see the pool"
14527         $SETSTRIPE $DIR/$tdir -i $ostidx -c 1 -p $FSNAME.$TESTNAME ||
14528                 error "Setstripe failed"
14529
14530         dd if=/dev/zero of=$DIR/$tdir/0 bs=1M count=10
14531         local blocks=$($LFS df $MOUNT | grep $ost_name | awk '{ print $4 }')
14532         echo "OST still has $((blocks/1024)) mbytes free"
14533
14534         local new_lwm=$((blocks/1024-10))
14535         do_facet $SINGLEMDS $LCTL set_param \
14536                         osp.$mdtosc_proc1.reserved_mb_high=$((new_lwm+5))
14537         do_facet $SINGLEMDS $LCTL set_param \
14538                         osp.$mdtosc_proc1.reserved_mb_low=$new_lwm
14539
14540         test_253_fill_ost $ost_name $mdtosc_proc1 $new_lwm
14541
14542         #First enospc could execute orphan deletion so repeat.
14543         test_253_fill_ost $ost_name $mdtosc_proc1 $new_lwm
14544
14545         local oa_status=$(do_facet $SINGLEMDS $LCTL get_param -n \
14546                         osp.$mdtosc_proc1.prealloc_status)
14547         echo "prealloc_status $oa_status"
14548
14549         dd if=/dev/zero of=$DIR/$tdir/2 bs=1M count=1 &&
14550                 error "File creation should fail"
14551         #object allocation was stopped, but we still able to append files
14552         dd if=/dev/zero of=$DIR/$tdir/1 bs=1M seek=6 count=5 oflag=append ||
14553                 error "Append failed"
14554         rm -f $DIR/$tdir/1 $DIR/$tdir/0 $DIR/$tdir/r*
14555
14556         wait_delete_completed
14557
14558         sleep_maxage
14559
14560         for i in $(seq 10 12); do
14561                 dd if=/dev/zero of=$DIR/$tdir/$i bs=1M count=1 2>/dev/null ||
14562                         error "File creation failed after rm";
14563         done
14564
14565         oa_status=$(do_facet $SINGLEMDS $LCTL get_param -n \
14566                         osp.$mdtosc_proc1.prealloc_status)
14567         echo "prealloc_status $oa_status"
14568
14569         if (( oa_status != 0 )); then
14570                 error "Object allocation still disable after rm"
14571         fi
14572         do_facet $SINGLEMDS $LCTL set_param \
14573                         osp.$mdtosc_proc1.reserved_mb_high=$last_wm_h
14574         do_facet $SINGLEMDS $LCTL set_param \
14575                         osp.$mdtosc_proc1.reserved_mb_low=$last_wm_l
14576
14577
14578         do_facet mgs $LCTL pool_remove $FSNAME.$TESTNAME $ost_name ||
14579                 error "Remove $ost_name from pool failed"
14580         do_facet mgs $LCTL pool_destroy $FSNAME.$TESTNAME ||
14581                 error "Pool destroy fialed"
14582 }
14583 run_test 253 "Check object allocation limit"
14584
14585 test_254() {
14586         local cl_user
14587
14588         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14589         remote_mds_nodsh && skip "remote MDS with nodsh" && return
14590         do_facet mds1 $LCTL get_param -n mdd.$MDT0.changelog_size ||
14591                 { skip "MDS does not support changelog_size" && return; }
14592
14593         cl_user=$(do_facet mds1 $LCTL --device $MDT0 changelog_register -n)
14594         echo "Registered as changelog user $cl_user"
14595
14596         $LFS changelog_clear $MDT0 $cl_user 0
14597
14598         local size1=$(do_facet mds1 \
14599                       $LCTL get_param -n mdd.$MDT0.changelog_size)
14600         echo "Changelog size $size1"
14601
14602         rm -rf $DIR/$tdir
14603         $LFS mkdir -i 0 $DIR/$tdir
14604         # change something
14605         mkdir -p $DIR/$tdir/pics/2008/zachy
14606         touch $DIR/$tdir/pics/2008/zachy/timestamp
14607         cp /etc/hosts $DIR/$tdir/pics/2008/zachy/pic1.jpg
14608         mv $DIR/$tdir/pics/2008/zachy $DIR/$tdir/pics/zach
14609         ln $DIR/$tdir/pics/zach/pic1.jpg $DIR/$tdir/pics/2008/portland.jpg
14610         ln -s $DIR/$tdir/pics/2008/portland.jpg $DIR/$tdir/pics/desktop.jpg
14611         rm $DIR/$tdir/pics/desktop.jpg
14612
14613         local size2=$(do_facet mds1 \
14614                       $LCTL get_param -n mdd.$MDT0.changelog_size)
14615         echo "Changelog size after work $size2"
14616
14617         do_facet mds1 $LCTL --device $MDT0 changelog_deregister $cl_user
14618
14619         if (( size2 <= size1 )); then
14620                 error "Changelog size after work should be greater than original"
14621         fi
14622         return 0
14623 }
14624 run_test 254 "Check changelog size"
14625
14626 ladvise_no_type()
14627 {
14628         local type=$1
14629         local file=$2
14630
14631         lfs ladvise -a invalid $file 2>&1 | grep "Valid types" |
14632                 awk -F: '{print $2}' | grep $type > /dev/null
14633         if [ $? -ne 0 ]; then
14634                 return 0
14635         fi
14636         return 1
14637 }
14638
14639 ladvise_no_ioctl()
14640 {
14641         local file=$1
14642
14643         lfs ladvise -a willread $file > /dev/null 2>&1
14644         if [ $? -eq 0 ]; then
14645                 return 1
14646         fi
14647
14648         lfs ladvise -a willread $file 2>&1 |
14649                 grep "Inappropriate ioctl for device" > /dev/null
14650         if [ $? -eq 0 ]; then
14651                 return 0
14652         fi
14653         return 1
14654 }
14655
14656 percent() {
14657         bc <<<"scale=2; ($1 - $2) * 100 / $2"
14658 }
14659
14660 # run a random read IO workload
14661 # usage: random_read_iops <filename> <filesize> <iosize>
14662 random_read_iops() {
14663         local file=$1
14664         local fsize=$2
14665         local iosize=${3:-4096}
14666
14667         $READS -f $file -s $fsize -b $iosize -n $((fsize / iosize)) -t 60 |
14668                 sed -e '/^$/d' -e 's#.*s, ##' -e 's#MB/s##'
14669 }
14670
14671 drop_file_oss_cache() {
14672         local file="$1"
14673         local nodes="$2"
14674
14675         $LFS ladvise -a dontneed $file 2>/dev/null ||
14676                 do_nodes $nodes "echo 3 > /proc/sys/vm/drop_caches"
14677 }
14678
14679 ladvise_willread_performance()
14680 {
14681         local repeat=10
14682         local average_origin=0
14683         local average_cache=0
14684         local average_ladvise=0
14685
14686         for ((i = 1; i <= $repeat; i++)); do
14687                 echo "Iter $i/$repeat: reading without willread hint"
14688                 cancel_lru_locks osc
14689                 drop_file_oss_cache $DIR/$tfile $(comma_list $(osts_nodes))
14690                 local speed_origin=$(random_read_iops $DIR/$tfile $size)
14691                 echo "Iter $i/$repeat: uncached speed: $speed_origin"
14692                 average_origin=$(bc <<<"$average_origin + $speed_origin")
14693
14694                 cancel_lru_locks osc
14695                 local speed_cache=$(random_read_iops $DIR/$tfile $size)
14696                 echo "Iter $i/$repeat: OSS cache speed: $speed_cache"
14697                 average_cache=$(bc <<<"$average_cache + $speed_cache")
14698
14699                 cancel_lru_locks osc
14700                 drop_file_oss_cache $DIR/$tfile $(comma_list $(osts_nodes))
14701                 $LFS ladvise -a willread $DIR/$tfile || error "ladvise failed"
14702                 local speed_ladvise=$(random_read_iops $DIR/$tfile $size)
14703                 echo "Iter $i/$repeat: ladvise speed: $speed_ladvise"
14704                 average_ladvise=$(bc <<<"$average_ladvise + $speed_ladvise")
14705         done
14706         average_origin=$(bc <<<"scale=2; $average_origin / $repeat")
14707         average_cache=$(bc <<<"scale=2; $average_cache / $repeat")
14708         average_ladvise=$(bc <<<"scale=2; $average_ladvise / $repeat")
14709
14710         speedup_cache=$(percent $average_cache $average_origin)
14711         speedup_ladvise=$(percent $average_ladvise $average_origin)
14712
14713         echo "Average uncached read: $average_origin"
14714         echo "Average speedup with OSS cached read: " \
14715                 "$average_cache = +$speedup_cache%"
14716         echo "Average speedup with ladvise willread: " \
14717                 "$average_ladvise = +$speedup_ladvise%"
14718
14719         local lowest_speedup=20
14720         if [ ${average_cache%.*} -lt $lowest_speedup ]; then
14721                 echo "Speedup with OSS cached read less than $lowest_speedup%, "
14722                         "got $average_cache%. Skipping ladvise willread check."
14723                 return 0
14724         fi
14725
14726         # the test won't work on ZFS until it supports 'ladvise dontneed', but
14727         # it is still good to run until then to exercise 'ladvise willread'
14728         ! $LFS ladvise -a dontneed $DIR/$tfile &&
14729                 [ "$(facet_fstype ost1)" = "zfs" ] &&
14730                 echo "osd-zfs does not support dontneed or drop_caches" &&
14731                 return 0
14732
14733         lowest_speedup=$(bc <<<"scale=2; $average_cache / 2")
14734         [ ${average_ladvise%.*} -gt $lowest_speedup ] ||
14735                 error_not_in_vm "Speedup with willread is less than " \
14736                         "$lowest_speedup%, got $average_ladvise%"
14737 }
14738
14739 test_255a() {
14740         [ $(lustre_version_code ost1) -lt $(version_code 2.8.54) ] &&
14741                 skip "lustre < 2.8.54 does not support ladvise " && return
14742         remote_ost_nodsh && skip "remote OST with nodsh" && return
14743
14744         lfs setstripe -c -1 -i 0 $DIR/$tfile || error "$tfile failed"
14745
14746         ladvise_no_type willread $DIR/$tfile &&
14747                 skip "willread ladvise is not supported" && return
14748
14749         ladvise_no_ioctl $DIR/$tfile &&
14750                 skip "ladvise ioctl is not supported" && return
14751
14752         local size_mb=100
14753         local size=$((size_mb * 1048576))
14754         dd if=/dev/zero of=$DIR/$tfile bs=1048576 count=$size_mb ||
14755                 error "dd to $DIR/$tfile failed"
14756
14757         lfs ladvise -a willread $DIR/$tfile ||
14758                 error "Ladvise failed with no range argument"
14759
14760         lfs ladvise -a willread -s 0 $DIR/$tfile ||
14761                 error "Ladvise failed with no -l or -e argument"
14762
14763         lfs ladvise -a willread -e 1 $DIR/$tfile ||
14764                 error "Ladvise failed with only -e argument"
14765
14766         lfs ladvise -a willread -l 1 $DIR/$tfile ||
14767                 error "Ladvise failed with only -l argument"
14768
14769         lfs ladvise -a willread -s 2 -e 1 $DIR/$tfile &&
14770                 error "End offset should not be smaller than start offset"
14771
14772         lfs ladvise -a willread -s 2 -e 2 $DIR/$tfile &&
14773                 error "End offset should not be equal to start offset"
14774
14775         lfs ladvise -a willread -s $size -l 1 $DIR/$tfile ||
14776                 error "Ladvise failed with overflowing -s argument"
14777
14778         lfs ladvise -a willread -s 1 -e $((size + 1)) $DIR/$tfile ||
14779                 error "Ladvise failed with overflowing -e argument"
14780
14781         lfs ladvise -a willread -s 1 -l $size $DIR/$tfile ||
14782                 error "Ladvise failed with overflowing -l argument"
14783
14784         lfs ladvise -a willread -l 1 -e 2 $DIR/$tfile &&
14785                 error "Ladvise succeeded with conflicting -l and -e arguments"
14786
14787         echo "Synchronous ladvise should wait"
14788         local delay=4
14789 #define OBD_FAIL_OST_LADVISE_PAUSE       0x237
14790         do_nodes $(comma_list $(osts_nodes)) \
14791                 $LCTL set_param fail_val=$delay fail_loc=0x237
14792
14793         local start_ts=$SECONDS
14794         lfs ladvise -a willread $DIR/$tfile ||
14795                 error "Ladvise failed with no range argument"
14796         local end_ts=$SECONDS
14797         local inteval_ts=$((end_ts - start_ts))
14798
14799         if [ $inteval_ts -lt $(($delay - 1)) ]; then
14800                 error "Synchronous advice didn't wait reply"
14801         fi
14802
14803         echo "Asynchronous ladvise shouldn't wait"
14804         local start_ts=$SECONDS
14805         lfs ladvise -a willread -b $DIR/$tfile ||
14806                 error "Ladvise failed with no range argument"
14807         local end_ts=$SECONDS
14808         local inteval_ts=$((end_ts - start_ts))
14809
14810         if [ $inteval_ts -gt $(($delay / 2)) ]; then
14811                 error "Asynchronous advice blocked"
14812         fi
14813
14814         do_nodes $(comma_list $(osts_nodes)) $LCTL set_param fail_loc=0
14815         ladvise_willread_performance
14816 }
14817 run_test 255a "check 'lfs ladvise -a willread'"
14818
14819 facet_meminfo() {
14820         local facet=$1
14821         local info=$2
14822
14823         do_facet $facet "cat /proc/meminfo | grep ^${info}:" | awk '{print $2}'
14824 }
14825
14826 test_255b() {
14827         remote_ost_nodsh && skip "remote OST with nodsh" && return
14828
14829         lfs setstripe -c 1 -i 0 $DIR/$tfile
14830
14831         ladvise_no_type dontneed $DIR/$tfile &&
14832                 skip "dontneed ladvise is not supported" && return
14833
14834         ladvise_no_ioctl $DIR/$tfile &&
14835                 skip "ladvise ioctl is not supported" && return
14836
14837         [ $(lustre_version_code ost1) -lt $(version_code 2.8.54) ] &&
14838                 skip "lustre < 2.8.54 does not support ladvise" && return
14839
14840         ! $LFS ladvise -a dontneed $DIR/$tfile &&
14841                 [ "$(facet_fstype ost1)" = "zfs" ] &&
14842                 skip "zfs-osd does not support 'ladvise dontneed'" && return
14843
14844         local size_mb=100
14845         local size=$((size_mb * 1048576))
14846         # In order to prevent disturbance of other processes, only check 3/4
14847         # of the memory usage
14848         local kibibytes=$((size_mb * 1024 * 3 / 4))
14849
14850         dd if=/dev/zero of=$DIR/$tfile bs=1048576 count=$size_mb ||
14851                 error "dd to $DIR/$tfile failed"
14852
14853         local total=$(facet_meminfo ost1 MemTotal)
14854         echo "Total memory: $total KiB"
14855
14856         do_facet ost1 "sync && echo 3 > /proc/sys/vm/drop_caches"
14857         local before_read=$(facet_meminfo ost1 Cached)
14858         echo "Cache used before read: $before_read KiB"
14859
14860         lfs ladvise -a willread $DIR/$tfile ||
14861                 error "Ladvise willread failed"
14862         local after_read=$(facet_meminfo ost1 Cached)
14863         echo "Cache used after read: $after_read KiB"
14864
14865         lfs ladvise -a dontneed $DIR/$tfile ||
14866                 error "Ladvise dontneed again failed"
14867         local no_read=$(facet_meminfo ost1 Cached)
14868         echo "Cache used after dontneed ladvise: $no_read KiB"
14869
14870         if [ $total -lt $((before_read + kibibytes)) ]; then
14871                 echo "Memory is too small, abort checking"
14872                 return 0
14873         fi
14874
14875         if [ $((before_read + kibibytes)) -gt $after_read ]; then
14876                 error "Ladvise willread should use more memory" \
14877                         "than $kibibytes KiB"
14878         fi
14879
14880         if [ $((no_read + kibibytes)) -gt $after_read ]; then
14881                 error "Ladvise dontneed should release more memory" \
14882                         "than $kibibytes KiB"
14883         fi
14884 }
14885 run_test 255b "check 'lfs ladvise -a dontneed'"
14886
14887 test_256() {
14888         local cl_user
14889         local cat_sl
14890         local mdt_dev
14891
14892         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14893         remote_mds_nodsh && skip "remote MDS with nodsh" && return
14894         [ "$(facet_fstype mds1)" != "ldiskfs" ] &&
14895                 skip "non-ldiskfs backend" && return
14896
14897         mdt_dev=$(mdsdevname 1)
14898         echo $mdt_dev
14899         cl_user=$(do_facet mds1 \
14900         "$LCTL get_param -n mdd.$MDT0.changelog_users | grep cl")
14901         if [[ -n $cl_user ]]; then
14902                 skip "active changelog user"
14903                 return
14904         fi
14905
14906         cl_user=$(do_facet mds1 $LCTL --device $MDT0 changelog_register -n)
14907         echo "Registered as changelog user $cl_user"
14908
14909         rm -rf $DIR/$tdir
14910         mkdir -p $DIR/$tdir
14911
14912         $LFS changelog_clear $MDT0 $cl_user 0
14913
14914         # change something
14915         touch $DIR/$tdir/{1..10}
14916
14917         # stop the MDT
14918         stop mds1 || error "Fail to stop MDT."
14919
14920         # remount the MDT
14921         start mds1 $mdt_dev $MDS_MOUNT_OPTS || error "Fail to start MDT."
14922
14923         #after mount new plainllog is used
14924         touch $DIR/$tdir/{11..19}
14925         cat_sl=$(do_facet mds1 \
14926         "$DEBUGFS -R \\\"dump changelog_catalog cat.dmp\\\" $mdt_dev; \
14927          llog_reader cat.dmp | grep \\\"type=1064553b\\\" | wc -l")
14928
14929         if (( cat_sl != 2 )); then
14930                 do_facet mds1 $LCTL --device $MDT0 changelog_deregister $cl_user
14931                 error "Changelog catalog has wrong number of slots $cat_sl"
14932         fi
14933
14934         $LFS changelog_clear $MDT0 $cl_user 0
14935
14936         cat_sl=$(do_facet mds1 \
14937         "$DEBUGFS -R \\\"dump changelog_catalog cat.dmp\\\" $mdt_dev; \
14938          llog_reader cat.dmp | grep \\\"type=1064553b\\\" | wc -l")
14939
14940         do_facet mds1 $LCTL --device $MDT0 changelog_deregister $cl_user
14941
14942         if (( cat_sl == 2 )); then
14943                 error "Empty plain llog was not deleted from changelog catalog"
14944         fi
14945         if (( cat_sl != 1 )); then
14946                 error "Active plain llog shouldn\`t be deleted from catalog"
14947         fi
14948 }
14949 run_test 256 "Check llog delete for empty and not full state"
14950
14951 test_257() {
14952         remote_mds_nodsh && skip "remote MDS with nodsh" && return
14953         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.55) ]] &&
14954                 skip "Need MDS version at least 2.8.55" && return
14955
14956         test_mkdir -p $DIR/$tdir
14957
14958         setfattr -n trusted.name1 -v value1 $DIR/$tdir ||
14959                 error "setfattr -n trusted.name1=value1 $DIR/$tdir failed"
14960         stat $DIR/$tdir
14961
14962 #define OBD_FAIL_MDS_XATTR_REP                  0x161
14963         local mdtidx=$($LFS getstripe -M $DIR/$tdir)
14964         local facet=mds$((mdtidx + 1))
14965         set_nodes_failloc $(facet_active_host $facet) 0x80000161
14966         getfattr -n trusted.name1 $DIR/$tdir 2> /dev/null
14967
14968         stop $facet || error "stop MDS failed"
14969         start $facet $(mdsdevname $((mdtidx + 1))) $MDS_MOUNT_OPTS ||
14970                 error "start MDS fail"
14971 }
14972 run_test 257 "xattr locks are not lost"
14973
14974 test_260() {
14975 #define OBD_FAIL_MDC_CLOSE               0x806
14976         $LCTL set_param fail_loc=0x80000806
14977         touch $DIR/$tfile
14978
14979 }
14980 run_test 260 "Check mdc_close fail"
14981
14982 cleanup_test_300() {
14983         trap 0
14984         umask $SAVE_UMASK
14985 }
14986 test_striped_dir() {
14987         local mdt_index=$1
14988         local stripe_count
14989         local stripe_index
14990
14991         mkdir -p $DIR/$tdir
14992
14993         SAVE_UMASK=$(umask)
14994         trap cleanup_test_300 RETURN EXIT
14995
14996         $LFS setdirstripe -i $mdt_index -c 2 -t all_char -m 755 \
14997                                                 $DIR/$tdir/striped_dir ||
14998                 error "set striped dir error"
14999
15000         local mode=$(stat -c%a $DIR/$tdir/striped_dir)
15001         [ "$mode" = "755" ] || error "expect 755 got $mode"
15002
15003         $LFS getdirstripe $DIR/$tdir/striped_dir > /dev/null 2>&1 ||
15004                 error "getdirstripe failed"
15005         stripe_count=$($LFS getdirstripe -c $DIR/$tdir/striped_dir)
15006         if [ "$stripe_count" != "2" ]; then
15007                 error "1:stripe_count is $stripe_count, expect 2"
15008         fi
15009         stripe_count=$($LFS getdirstripe -T $DIR/$tdir/striped_dir)
15010         if [ "$stripe_count" != "2" ]; then
15011                 error "2:stripe_count is $stripe_count, expect 2"
15012         fi
15013
15014         stripe_index=$($LFS getdirstripe -i $DIR/$tdir/striped_dir)
15015         if [ "$stripe_index" != "$mdt_index" ]; then
15016                 error "stripe_index is $stripe_index, expect $mdt_index"
15017         fi
15018
15019         [ $(stat -c%h $DIR/$tdir/striped_dir) == '2' ] ||
15020                 error "nlink error after create striped dir"
15021
15022         mkdir $DIR/$tdir/striped_dir/a
15023         mkdir $DIR/$tdir/striped_dir/b
15024
15025         stat $DIR/$tdir/striped_dir/a ||
15026                 error "create dir under striped dir failed"
15027         stat $DIR/$tdir/striped_dir/b ||
15028                 error "create dir under striped dir failed"
15029
15030         [ $(stat -c%h $DIR/$tdir/striped_dir) == '4' ] ||
15031                 error "nlink error after mkdir"
15032
15033         rmdir $DIR/$tdir/striped_dir/a
15034         [ $(stat -c%h $DIR/$tdir/striped_dir) == '3' ] ||
15035                 error "nlink error after rmdir"
15036
15037         rmdir $DIR/$tdir/striped_dir/b
15038         [ $(stat -c%h $DIR/$tdir/striped_dir) == '2' ] ||
15039                 error "nlink error after rmdir"
15040
15041         chattr +i $DIR/$tdir/striped_dir
15042         createmany -o $DIR/$tdir/striped_dir/f 10 &&
15043                 error "immutable flags not working under striped dir!"
15044         chattr -i $DIR/$tdir/striped_dir
15045
15046         rmdir $DIR/$tdir/striped_dir ||
15047                 error "rmdir striped dir error"
15048
15049         cleanup_test_300
15050
15051         true
15052 }
15053
15054 test_300a() {
15055         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.0) ] &&
15056                 skip "skipped for lustre < 2.7.0" && return
15057         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15058         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15059
15060         test_striped_dir 0 || error "failed on striped dir on MDT0"
15061         test_striped_dir 1 || error "failed on striped dir on MDT0"
15062 }
15063 run_test 300a "basic striped dir sanity test"
15064
15065 test_300b() {
15066         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.0) ] &&
15067                 skip "skipped for lustre < 2.7.0" && return
15068         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15069         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15070         local i
15071         local mtime1
15072         local mtime2
15073         local mtime3
15074
15075         test_mkdir $DIR/$tdir || error "mkdir fail"
15076         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir ||
15077                 error "set striped dir error"
15078         for ((i=0; i<10; i++)); do
15079                 mtime1=$(stat -c %Y $DIR/$tdir/striped_dir)
15080                 sleep 1
15081                 touch $DIR/$tdir/striped_dir/file_$i ||
15082                                         error "touch error $i"
15083                 mtime2=$(stat -c %Y $DIR/$tdir/striped_dir)
15084                 [ $mtime1 -eq $mtime2 ] &&
15085                         error "mtime not change after create"
15086                 sleep 1
15087                 rm -f $DIR/$tdir/striped_dir/file_$i ||
15088                                         error "unlink error $i"
15089                 mtime3=$(stat -c %Y $DIR/$tdir/striped_dir)
15090                 [ $mtime2 -eq $mtime3 ] &&
15091                         error "mtime did not change after unlink"
15092         done
15093         true
15094 }
15095 run_test 300b "check ctime/mtime for striped dir"
15096
15097 test_300c() {
15098         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.0) ] &&
15099                 skip "skipped for lustre < 2.7.0" && return
15100         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15101         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15102         local file_count
15103
15104         mkdir -p $DIR/$tdir
15105         $LFS setdirstripe -i 0 -c 2 $DIR/$tdir/striped_dir ||
15106                 error "set striped dir error"
15107
15108         chown $RUNAS_ID:$RUNAS_GID $DIR/$tdir/striped_dir ||
15109                 error "chown striped dir failed"
15110
15111         $RUNAS createmany -o $DIR/$tdir/striped_dir/f 5000 ||
15112                 error "create 5k files failed"
15113
15114         file_count=$(ls $DIR/$tdir/striped_dir | wc -l)
15115
15116         [ "$file_count" = 5000 ] || error "file count $file_count != 5000"
15117
15118         rm -rf $DIR/$tdir
15119 }
15120 run_test 300c "chown && check ls under striped directory"
15121
15122 test_300d() {
15123         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.0) ] &&
15124                 skip "skipped for lustre < 2.7.0" && return
15125         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15126         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15127         local stripe_count
15128         local file
15129
15130         mkdir -p $DIR/$tdir
15131         $SETSTRIPE -c 2 $DIR/$tdir
15132
15133         #local striped directory
15134         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir ||
15135                 error "set striped dir error"
15136         createmany -o $DIR/$tdir/striped_dir/f 10 ||
15137                 error "create 10 files failed"
15138
15139         #remote striped directory
15140         $LFS setdirstripe -i 1 -c 2 $DIR/$tdir/remote_striped_dir ||
15141                 error "set striped dir error"
15142         createmany -o $DIR/$tdir/remote_striped_dir/f 10 ||
15143                 error "create 10 files failed"
15144
15145         for file in $(find $DIR/$tdir); do
15146                 stripe_count=$($GETSTRIPE -c $file)
15147                 [ $stripe_count -eq 2 ] ||
15148                         error "wrong stripe $stripe_count for $file"
15149         done
15150
15151         rm -rf $DIR/$tdir
15152 }
15153 run_test 300d "check default stripe under striped directory"
15154
15155 test_300e() {
15156         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
15157                 skip "Need MDS version at least 2.7.55" && return
15158         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15159         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15160         local stripe_count
15161         local file
15162
15163         mkdir -p $DIR/$tdir
15164
15165         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir ||
15166                 error "set striped dir error"
15167
15168         touch $DIR/$tdir/striped_dir/a
15169         touch $DIR/$tdir/striped_dir/b
15170         touch $DIR/$tdir/striped_dir/c
15171
15172         mkdir $DIR/$tdir/striped_dir/dir_a
15173         mkdir $DIR/$tdir/striped_dir/dir_b
15174         mkdir $DIR/$tdir/striped_dir/dir_c
15175
15176         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir/stp_a ||
15177                 error "set striped adir under striped dir error"
15178
15179         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir/stp_b ||
15180                 error "set striped bdir under striped dir error"
15181
15182         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir/stp_c ||
15183                 error "set striped cdir under striped dir error"
15184
15185         mrename $DIR/$tdir/striped_dir/dir_a $DIR/$tdir/striped_dir/dir_b ||
15186                 error "rename dir under striped dir fails"
15187
15188         mrename $DIR/$tdir/striped_dir/stp_a $DIR/$tdir/striped_dir/stp_b ||
15189                 error "rename dir under different stripes fails"
15190
15191         mrename $DIR/$tdir/striped_dir/a $DIR/$tdir/striped_dir/c ||
15192                 error "rename file under striped dir should succeed"
15193
15194         mrename $DIR/$tdir/striped_dir/dir_b $DIR/$tdir/striped_dir/dir_c ||
15195                 error "rename dir under striped dir should succeed"
15196
15197         rm -rf $DIR/$tdir
15198 }
15199 run_test 300e "check rename under striped directory"
15200
15201 test_300f() {
15202         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
15203                 skip "Need MDS version at least 2.7.55" && return
15204         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15205         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15206         local stripe_count
15207         local file
15208
15209         rm -rf $DIR/$tdir
15210         mkdir -p $DIR/$tdir
15211
15212         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir ||
15213                 error "set striped dir error"
15214
15215         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir1 ||
15216                 error "set striped dir error"
15217
15218         touch $DIR/$tdir/striped_dir/a
15219         mkdir $DIR/$tdir/striped_dir/dir_a
15220         $LFS setdirstripe -i 0 -c 2 $DIR/$tdir/striped_dir/stp_a ||
15221                 error "create striped dir under striped dir fails"
15222
15223         touch $DIR/$tdir/striped_dir1/b
15224         mkdir $DIR/$tdir/striped_dir1/dir_b
15225         $LFS setdirstripe -i 0 -c 2 $DIR/$tdir/striped_dir/stp_b ||
15226                 error "create striped dir under striped dir fails"
15227
15228         mrename $DIR/$tdir/striped_dir/dir_a $DIR/$tdir/striped_dir1/dir_b ||
15229                 error "rename dir under different striped dir should fail"
15230
15231         mrename $DIR/$tdir/striped_dir/stp_a $DIR/$tdir/striped_dir1/stp_b ||
15232                 error "rename striped dir under diff striped dir should fail"
15233
15234         mrename $DIR/$tdir/striped_dir/a $DIR/$tdir/striped_dir1/a ||
15235                 error "rename file under diff striped dirs fails"
15236
15237         rm -rf $DIR/$tdir
15238 }
15239 run_test 300f "check rename cross striped directory"
15240
15241 test_300_check_default_striped_dir()
15242 {
15243         local dirname=$1
15244         local default_count=$2
15245         local default_index=$3
15246         local stripe_count
15247         local stripe_index
15248         local dir_stripe_index
15249         local dir
15250
15251         echo "checking $dirname $default_count $default_index"
15252         $LFS setdirstripe -D -c $default_count -i $default_index \
15253                                 -t all_char $DIR/$tdir/$dirname ||
15254                 error "set default stripe on striped dir error"
15255         stripe_count=$($LFS getdirstripe -D -c $DIR/$tdir/$dirname)
15256         [ $stripe_count -eq $default_count ] ||
15257                 error "expect $default_count get $stripe_count for $dirname"
15258
15259         stripe_index=$($LFS getdirstripe -D -i $DIR/$tdir/$dirname)
15260         [ $stripe_index -eq $default_index ] ||
15261                 error "expect $default_index get $stripe_index for $dirname"
15262
15263         mkdir $DIR/$tdir/$dirname/{test1,test2,test3,test4} ||
15264                                                 error "create dirs failed"
15265
15266         createmany -o $DIR/$tdir/$dirname/f- 10 || error "create files failed"
15267         unlinkmany $DIR/$tdir/$dirname/f- 10    || error "unlink files failed"
15268         for dir in $(find $DIR/$tdir/$dirname/*); do
15269                 stripe_count=$($LFS getdirstripe -c $dir)
15270                 [ $stripe_count -eq $default_count ] ||
15271                 [ $stripe_count -eq 0 -o $default_count -eq 1 ] ||
15272                 error "stripe count $default_count != $stripe_count for $dir"
15273
15274                 stripe_index=$($LFS getdirstripe -i $dir)
15275                 [ $default_index -eq -1 -o $stripe_index -eq $default_index ] ||
15276                         error "$stripe_index != $default_index for $dir"
15277
15278                 #check default stripe
15279                 stripe_count=$($LFS getdirstripe -D -c $dir)
15280                 [ $stripe_count -eq $default_count ] ||
15281                 error "default count $default_count != $stripe_count for $dir"
15282
15283                 stripe_index=$($LFS getdirstripe -D -i $dir)
15284                 [ $stripe_index -eq $default_index ] ||
15285                 error "default index $default_index != $stripe_index for $dir"
15286         done
15287         rmdir $DIR/$tdir/$dirname/* || error "rmdir failed"
15288 }
15289
15290 test_300g() {
15291         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
15292                 skip "Need MDS version at least 2.7.55" && return
15293         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15294         local dir
15295         local stripe_count
15296         local stripe_index
15297
15298         mkdir $DIR/$tdir
15299         mkdir $DIR/$tdir/normal_dir
15300
15301         #Checking when client cache stripe index
15302         $LFS setdirstripe -c$MDSCOUNT $DIR/$tdir/striped_dir
15303         $LFS setdirstripe -D -i1 $DIR/$tdir/striped_dir ||
15304                 error "create striped_dir failed"
15305
15306         mkdir $DIR/$tdir/striped_dir/dir1 ||
15307                 error "create dir1 fails"
15308         stripe_index=$($LFS getdirstripe -i $DIR/$tdir/striped_dir/dir1)
15309         [ $stripe_index -eq 1 ] ||
15310                 error "dir1 expect 1 got $stripe_index"
15311
15312         $LFS setdirstripe -i2 $DIR/$tdir/striped_dir/dir2 ||
15313                 error "create dir2 fails"
15314         stripe_index=$($LFS getdirstripe -i $DIR/$tdir/striped_dir/dir2)
15315         [ $stripe_index -eq 2 ] ||
15316                 error "dir2 expect 2 got $stripe_index"
15317
15318         #check default stripe count/stripe index
15319         test_300_check_default_striped_dir normal_dir $MDSCOUNT 1
15320         test_300_check_default_striped_dir normal_dir 1 0
15321         test_300_check_default_striped_dir normal_dir 2 1
15322         test_300_check_default_striped_dir normal_dir 2 -1
15323
15324         #delete default stripe information
15325         echo "delete default stripeEA"
15326         $LFS setdirstripe -d $DIR/$tdir/normal_dir ||
15327                 error "set default stripe on striped dir error"
15328
15329         mkdir -p $DIR/$tdir/normal_dir/{test1,test2,test3,test4}
15330         for dir in $(find $DIR/$tdir/normal_dir/*); do
15331                 stripe_count=$($LFS getdirstripe -c $dir)
15332                 [ $stripe_count -eq 0 ] ||
15333                         error "expect 1 get $stripe_count for $dir"
15334                 stripe_index=$($LFS getdirstripe -i $dir)
15335                 [ $stripe_index -eq 0 ] ||
15336                         error "expect 0 get $stripe_index for $dir"
15337         done
15338 }
15339 run_test 300g "check default striped directory for normal directory"
15340
15341 test_300h() {
15342         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
15343                 skip "Need MDS version at least 2.7.55" && return
15344         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15345         local dir
15346         local stripe_count
15347
15348         mkdir $DIR/$tdir
15349         $LFS setdirstripe -i 0 -c $MDSCOUNT -t all_char \
15350                                         $DIR/$tdir/striped_dir ||
15351                 error "set striped dir error"
15352
15353         test_300_check_default_striped_dir striped_dir $MDSCOUNT 1
15354         test_300_check_default_striped_dir striped_dir 1 0
15355         test_300_check_default_striped_dir striped_dir 2 1
15356         test_300_check_default_striped_dir striped_dir 2 -1
15357
15358         #delete default stripe information
15359         $LFS setdirstripe -d $DIR/$tdir/striped_dir ||
15360                 error "set default stripe on striped dir error"
15361
15362         mkdir -p $DIR/$tdir/striped_dir/{test1,test2,test3,test4}
15363         for dir in $(find $DIR/$tdir/striped_dir/*); do
15364                 stripe_count=$($LFS getdirstripe -c $dir)
15365                 [ $stripe_count -eq 0 ] ||
15366                         error "expect 1 get $stripe_count for $dir"
15367         done
15368 }
15369 run_test 300h "check default striped directory for striped directory"
15370
15371 test_300i() {
15372         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
15373                 skip "Need MDS version at least 2.7.55" && return
15374         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15375         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15376         local stripe_count
15377         local file
15378
15379         mkdir $DIR/$tdir
15380
15381         $LFS setdirstripe -i 0 -c$MDSCOUNT -t all_char $DIR/$tdir/striped_dir ||
15382                 error "set striped dir error"
15383
15384         createmany -o $DIR/$tdir/striped_dir/f- 10 ||
15385                 error "create files under striped dir failed"
15386
15387         $LFS setdirstripe -i0 -c$MDSCOUNT -H all_char $DIR/$tdir/hashdir ||
15388                 error "set striped hashdir error"
15389
15390         $LFS setdirstripe -i0 -c$MDSCOUNT -H all_char $DIR/$tdir/hashdir/d0 ||
15391                 error "create dir0 under hash dir failed"
15392         $LFS setdirstripe -i0 -c$MDSCOUNT -H fnv_1a_64 $DIR/$tdir/hashdir/d1 ||
15393                 error "create dir1 under hash dir failed"
15394
15395         # unfortunately, we need to umount to clear dir layout cache for now
15396         # once we fully implement dir layout, we can drop this
15397         umount_client $MOUNT || error "umount failed"
15398         mount_client $MOUNT || error "mount failed"
15399
15400         $LFS find -H fnv_1a_64 $DIR/$tdir/hashdir
15401         local dircnt=$($LFS find -H fnv_1a_64 $DIR/$tdir/hashdir | wc -l)
15402         [ $dircnt -eq 1 ] || error "lfs find striped dir got:$dircnt,except:1"
15403
15404         #set the stripe to be unknown hash type
15405         #define OBD_FAIL_UNKNOWN_LMV_STRIPE     0x1901
15406         $LCTL set_param fail_loc=0x1901
15407         for ((i = 0; i < 10; i++)); do
15408                 $CHECKSTAT -t file $DIR/$tdir/striped_dir/f-$i ||
15409                         error "stat f-$i failed"
15410                 rm $DIR/$tdir/striped_dir/f-$i || error "unlink f-$i failed"
15411         done
15412
15413         touch $DIR/$tdir/striped_dir/f0 &&
15414                 error "create under striped dir with unknown hash should fail"
15415
15416         $LCTL set_param fail_loc=0
15417
15418         umount_client $MOUNT || error "umount failed"
15419         mount_client $MOUNT || error "mount failed"
15420
15421         return 0
15422 }
15423 run_test 300i "client handle unknown hash type striped directory"
15424
15425 test_300j() {
15426         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15427         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
15428                 skip "Need MDS version at least 2.7.55" && return
15429         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15430         local stripe_count
15431         local file
15432
15433         mkdir $DIR/$tdir
15434
15435         #define OBD_FAIL_SPLIT_UPDATE_REC       0x1702
15436         $LCTL set_param fail_loc=0x1702
15437         $LFS setdirstripe -i 0 -c$MDSCOUNT -t all_char $DIR/$tdir/striped_dir ||
15438                 error "set striped dir error"
15439
15440         createmany -o $DIR/$tdir/striped_dir/f- 10 ||
15441                 error "create files under striped dir failed"
15442
15443         $LCTL set_param fail_loc=0
15444
15445         rm -rf $DIR/$tdir || error "unlink striped dir fails"
15446
15447         return 0
15448 }
15449 run_test 300j "test large update record"
15450
15451 test_300k() {
15452         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
15453                 skip "Need MDS version at least 2.7.55" && return
15454         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15455         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15456         local stripe_count
15457         local file
15458
15459         mkdir $DIR/$tdir
15460
15461         #define OBD_FAIL_LARGE_STRIPE   0x1703
15462         $LCTL set_param fail_loc=0x1703
15463         $LFS setdirstripe -i 0 -c512 $DIR/$tdir/striped_dir ||
15464                 error "set striped dir error"
15465         $LCTL set_param fail_loc=0
15466
15467         $LFS getdirstripe $DIR/$tdir/striped_dir ||
15468                 error "getstripeddir fails"
15469         rm -rf $DIR/$tdir/striped_dir ||
15470                 error "unlink striped dir fails"
15471
15472         return 0
15473 }
15474 run_test 300k "test large striped directory"
15475
15476 test_300l() {
15477         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
15478                 skip "Need MDS version at least 2.7.55" && return
15479         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15480         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15481         local stripe_index
15482
15483         test_mkdir -p $DIR/$tdir/striped_dir
15484         chown $RUNAS_ID $DIR/$tdir/striped_dir ||
15485                         error "chown $RUNAS_ID failed"
15486         $LFS setdirstripe -i 1 -D $DIR/$tdir/striped_dir ||
15487                 error "set default striped dir failed"
15488
15489         #define OBD_FAIL_MDS_STALE_DIR_LAYOUT    0x158
15490         $LCTL set_param fail_loc=0x80000158
15491         $RUNAS mkdir $DIR/$tdir/striped_dir/test_dir || error "create dir fails"
15492
15493         stripe_index=$($LFS getdirstripe -i $DIR/$tdir/striped_dir/test_dir)
15494         [ $stripe_index -eq 1 ] ||
15495                 error "expect 1 get $stripe_index for $dir"
15496 }
15497 run_test 300l "non-root user to create dir under striped dir with stale layout"
15498
15499 test_300m() {
15500         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
15501                 skip "Need MDS version at least 2.7.55" && return
15502         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15503         [ $MDSCOUNT -ge 2 ] && skip "Only for single MDT" && return
15504
15505         mkdir -p $DIR/$tdir/striped_dir
15506         $LFS setdirstripe -D -c 1 $DIR/$tdir/striped_dir ||
15507                 error "set default stripes dir error"
15508
15509         mkdir $DIR/$tdir/striped_dir/a || error "mkdir a fails"
15510
15511         stripe_count=$($LFS getdirstripe -c $DIR/$tdir/striped_dir/a)
15512         [ $stripe_count -eq 0 ] ||
15513                         error "expect 0 get $stripe_count for a"
15514
15515         $LFS setdirstripe -D -c 2 $DIR/$tdir/striped_dir ||
15516                 error "set default stripes dir error"
15517
15518         mkdir $DIR/$tdir/striped_dir/b || error "mkdir b fails"
15519
15520         stripe_count=$($LFS getdirstripe -c $DIR/$tdir/striped_dir/b)
15521         [ $stripe_count -eq 0 ] ||
15522                         error "expect 0 get $stripe_count for b"
15523
15524         $LFS setdirstripe -D -c1 -i2 $DIR/$tdir/striped_dir ||
15525                 error "set default stripes dir error"
15526
15527         mkdir $DIR/$tdir/striped_dir/c &&
15528                 error "default stripe_index is invalid, mkdir c should fails"
15529
15530         rm -rf $DIR/$tdir || error "rmdir fails"
15531 }
15532 run_test 300m "setstriped directory on single MDT FS"
15533
15534 cleanup_300n() {
15535         local list=$(comma_list $(mdts_nodes))
15536
15537         trap 0
15538         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=0
15539 }
15540
15541 test_300n() {
15542         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
15543                 skip "Need MDS version at least 2.7.55" && return
15544         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15545         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15546         remote_mds_nodsh && skip "remote MDS with nodsh" && return
15547
15548         local stripe_index
15549         local list=$(comma_list $(mdts_nodes))
15550
15551         trap cleanup_300n RETURN EXIT
15552         mkdir -p $DIR/$tdir
15553         chmod 777 $DIR/$tdir
15554         $RUNAS $LFS setdirstripe -i0 -c$MDSCOUNT \
15555                                 $DIR/$tdir/striped_dir > /dev/null 2>&1 &&
15556                 error "create striped dir succeeds with gid=0"
15557
15558         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=-1
15559         $RUNAS $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/striped_dir ||
15560                 error "create striped dir fails with gid=-1"
15561
15562         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=0
15563         $RUNAS $LFS setdirstripe -i 1 -c$MDSCOUNT -D \
15564                                 $DIR/$tdir/striped_dir > /dev/null 2>&1 &&
15565                 error "set default striped dir succeeds with gid=0"
15566
15567
15568         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=-1
15569         $RUNAS $LFS setdirstripe -i 1 -c$MDSCOUNT -D $DIR/$tdir/striped_dir ||
15570                 error "set default striped dir fails with gid=-1"
15571
15572
15573         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=0
15574         $RUNAS mkdir $DIR/$tdir/striped_dir/test_dir ||
15575                                         error "create test_dir fails"
15576         $RUNAS mkdir $DIR/$tdir/striped_dir/test_dir1 ||
15577                                         error "create test_dir1 fails"
15578         $RUNAS mkdir $DIR/$tdir/striped_dir/test_dir2 ||
15579                                         error "create test_dir2 fails"
15580         cleanup_300n
15581 }
15582 run_test 300n "non-root user to create dir under striped dir with default EA"
15583
15584 test_300o() {
15585         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
15586                 skip "Need MDS version at least 2.7.55" && return
15587         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15588         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15589         local numfree1
15590         local numfree2
15591
15592         mkdir -p $DIR/$tdir
15593
15594         numfree1=$(lctl get_param -n mdc.*MDT0000*.filesfree)
15595         numfree2=$(lctl get_param -n mdc.*MDT0001*.filesfree)
15596         if [ $numfree1 -lt 66000 -o $numfree2 -lt 66000 ]; then
15597                 skip "not enough free inodes $numfree1 $numfree2"
15598                 return
15599         fi
15600
15601         numfree1=$(lctl get_param -n mdc.*MDT0000-mdc-*.kbytesfree)
15602         numfree2=$(lctl get_param -n mdc.*MDT0001-mdc-*.kbytesfree)
15603         if [ $numfree1 -lt 300000 -o $numfree2 -lt 300000 ]; then
15604                 skip "not enough free space $numfree1 $numfree2"
15605                 return
15606         fi
15607
15608         $LFS setdirstripe -c2 $DIR/$tdir/striped_dir ||
15609                 error "setdirstripe fails"
15610
15611         createmany -d $DIR/$tdir/striped_dir/d 131000 ||
15612                 error "create dirs fails"
15613
15614         $LCTL set_param ldlm.namespaces.*mdc-*.lru_size=0
15615         ls $DIR/$tdir/striped_dir > /dev/null ||
15616                 error "ls striped dir fails"
15617         unlinkmany -d $DIR/$tdir/striped_dir/d 131000 ||
15618                 error "unlink big striped dir fails"
15619 }
15620 run_test 300o "unlink big sub stripe(> 65000 subdirs)"
15621
15622 test_300p() {
15623         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15624         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15625         remote_mds_nodsh && skip "remote MDS with nodsh" && return
15626
15627         mkdir -p $DIR/$tdir
15628
15629         #define OBD_FAIL_OUT_ENOSPC     0x1704
15630         do_facet mds2 lctl set_param fail_loc=0x80001704
15631         $LFS setdirstripe -c2 $DIR/$tdir/bad_striped_dir > /dev/null 2>&1 &&
15632                         error "create striped directory should fail"
15633
15634         [ -e $DIR/$tdir/bad_striped_dir ] && error "striped dir exists"
15635
15636         $LFS setdirstripe -c2 $DIR/$tdir/bad_striped_dir
15637         true
15638 }
15639 run_test 300p "create striped directory without space"
15640
15641 test_300q() {
15642         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15643         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15644
15645         local fd=$(free_fd)
15646         local cmd="exec $fd<$tdir"
15647         cd $DIR
15648         $LFS mkdir -c $MDSCOUNT $tdir || error "create $tdir fails"
15649         eval $cmd
15650         cmd="exec $fd<&-"
15651         trap "eval $cmd" EXIT
15652         cd $tdir || error "cd $tdir fails"
15653         rmdir  ../$tdir || error "rmdir $tdir fails"
15654         mkdir local_dir && error "create dir succeeds"
15655         $LFS setdirstripe -i1 remote_dir && error "create remote dir succeeds"
15656         eval $cmd
15657         return 0
15658 }
15659 run_test 300q "create remote directory under orphan directory"
15660
15661 prepare_remote_file() {
15662         mkdir $DIR/$tdir/src_dir ||
15663                 error "create remote source failed"
15664
15665         cp /etc/hosts $DIR/$tdir/src_dir/a || error
15666         touch $DIR/$tdir/src_dir/a
15667
15668         $LFS mkdir -i 1 $DIR/$tdir/tgt_dir ||
15669                 error "create remote target dir failed"
15670
15671         touch $DIR/$tdir/tgt_dir/b
15672
15673         mrename $DIR/$tdir/src_dir/a $DIR/$tdir/tgt_dir/b ||
15674                 error "rename dir cross MDT failed!"
15675
15676         $CHECKSTAT -t file $DIR/$tdir/src_dir/a &&
15677                 error "src_child still exists after rename"
15678
15679         $CHECKSTAT -t file $DIR/$tdir/tgt_dir/b ||
15680                 error "missing file(a) after rename"
15681
15682         diff /etc/hosts $DIR/$tdir/tgt_dir/b ||
15683                 error "diff after rename"
15684 }
15685
15686 test_310a() {
15687         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 4 MDTs" && return
15688         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15689         local remote_file=$DIR/$tdir/tgt_dir/b
15690
15691         mkdir -p $DIR/$tdir
15692
15693         prepare_remote_file || error "prepare remote file failed"
15694
15695         #open-unlink file
15696         $OPENUNLINK $remote_file $remote_file || error
15697         $CHECKSTAT -a $remote_file || error
15698 }
15699 run_test 310a "open unlink remote file"
15700
15701 test_310b() {
15702         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 4 MDTs" && return
15703         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15704         local remote_file=$DIR/$tdir/tgt_dir/b
15705
15706         mkdir -p $DIR/$tdir
15707
15708         prepare_remote_file || error "prepare remote file failed"
15709
15710         ln $remote_file $DIR/$tfile || error "link failed for remote file"
15711         $MULTIOP $DIR/$tfile Ouc || error "mulitop failed"
15712         $CHECKSTAT -t file $remote_file || error "check file failed"
15713 }
15714 run_test 310b "unlink remote file with multiple links while open"
15715
15716 test_310c() {
15717         [[ $MDSCOUNT -lt 4 ]] && skip "needs >= 4 MDTs" && return
15718         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15719         local remote_file=$DIR/$tdir/tgt_dir/b
15720
15721         mkdir -p $DIR/$tdir
15722
15723         prepare_remote_file || error "prepare remote file failed"
15724
15725         ln $remote_file $DIR/$tfile || error "link failed for remote file"
15726         multiop_bg_pause $remote_file O_uc ||
15727                         error "mulitop failed for remote file"
15728         MULTIPID=$!
15729         $MULTIOP $DIR/$tfile Ouc
15730         kill -USR1 $MULTIPID
15731         wait $MULTIPID
15732 }
15733 run_test 310c "open-unlink remote file with multiple links"
15734
15735 #LU-4825
15736 test_311() {
15737         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.54) ] &&
15738                 skip "lustre < 2.8.54 does not contain LU-4825 fix" && return
15739         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15740         remote_mds_nodsh && skip "remote MDS with nodsh" && return
15741
15742         local old_iused=$($LFS df -i | grep OST0000 | awk '{ print $3 }')
15743
15744         mkdir -p $DIR/$tdir
15745         $SETSTRIPE -i 0 -c 1 $DIR/$tdir
15746         createmany -o $DIR/$tdir/$tfile. 1000
15747
15748         # statfs data is not real time, let's just calculate it
15749         old_iused=$((old_iused + 1000))
15750
15751         local count=$(do_facet $SINGLEMDS "lctl get_param -n \
15752                         osp.*OST0000*MDT0000.create_count")
15753         local max_count=$(do_facet $SINGLEMDS "lctl get_param -n \
15754                                 osp.*OST0000*MDT0000.max_create_count")
15755         for idx in $(seq $MDSCOUNT); do
15756                 do_facet mds$idx "lctl set_param -n \
15757                         osp.*OST0000*MDT000?.max_create_count=0"
15758         done
15759
15760         $SETSTRIPE -i 0 $DIR/$tdir/$tfile || error "setstripe failed"
15761         local index=$($GETSTRIPE -i $DIR/$tdir/$tfile)
15762         [ $index -ne 0 ] || error "$tfile stripe index is 0"
15763
15764         unlinkmany $DIR/$tdir/$tfile. 1000
15765
15766         for idx in $(seq $MDSCOUNT); do
15767                 do_facet mds$idx "lctl set_param -n \
15768                         osp.*OST0000*MDT000?.max_create_count=$max_count"
15769                 do_facet mds$idx "lctl set_param -n \
15770                         osp.*OST0000*MDT000?.create_count=$count"
15771         done
15772
15773         local new_iused
15774         for i in $(seq 120); do
15775                 new_iused=$($LFS df -i | grep OST0000 | awk '{ print $3 }')
15776                 # system may be too busy to destroy all objs in time, use
15777                 # a somewhat small value to not fail autotest
15778                 [ $((old_iused - new_iused)) -gt 400 ] && break
15779                 sleep 1
15780         done
15781
15782         echo "waited $i sec, old Iused $old_iused, new Iused $new_iused"
15783         [ $((old_iused - new_iused)) -gt 400 ] ||
15784                 error "objs not destroyed after unlink"
15785 }
15786 run_test 311 "disable OSP precreate, and unlink should destroy objs"
15787
15788 zfs_oid_to_objid()
15789 {
15790         local ost=$1
15791         local objid=$2
15792
15793         local vdevdir=$(dirname $(facet_vdevice $ost))
15794         local cmd="$ZDB -e -p $vdevdir -ddddd $(facet_device $ost)"
15795         local zfs_zapid=$(do_facet $ost $cmd |
15796                           grep -w "/O/0/d$((objid%32))" -C 5 |
15797                           awk '/Object/{getline; print $1}')
15798         local zfs_objid=$(do_facet $ost $cmd $zfs_zapid |
15799                           awk "/$objid = /"'{printf $3}')
15800
15801         echo $zfs_objid
15802 }
15803
15804 zfs_object_blksz() {
15805         local ost=$1
15806         local objid=$2
15807
15808         local vdevdir=$(dirname $(facet_vdevice $ost))
15809         local cmd="$ZDB -e -p $vdevdir -dddd $(facet_device $ost)"
15810         local blksz=$(do_facet $ost $cmd $objid |
15811                       awk '/dblk/{getline; printf $4}')
15812
15813         case "${blksz: -1}" in
15814                 k|K) blksz=$((${blksz:0:$((${#blksz} - 1))}*1024)) ;;
15815                 m|M) blksz=$((${blksz:0:$((${#blksz} - 1))}*1024*1024)) ;;
15816                 *) ;;
15817         esac
15818
15819         echo $blksz
15820 }
15821
15822 test_312() { # LU-4856
15823         remote_ost_nodsh && skip "remote OST with nodsh" && return
15824
15825         [ $(facet_fstype ost1) = "zfs" ] ||
15826                 { skip "the test only applies to zfs" && return; }
15827
15828         local max_blksz=$(do_facet ost1 \
15829                           $ZFS get -p recordsize $(facet_device ost1) |
15830                           awk '!/VALUE/{print $3}')
15831         local min_blksz=$(getconf PAGE_SIZE)
15832
15833         # to make life a little bit easier
15834         $LFS mkdir -c 1 -i 0 $DIR/$tdir
15835         $LFS setstripe -c 1 -i 0 $DIR/$tdir
15836
15837         local tf=$DIR/$tdir/$tfile
15838         touch $tf
15839         local oid=$($LFS getstripe $tf | awk '/obdidx/{getline; print $2}')
15840
15841         # Get ZFS object id
15842         local zfs_objid=$(zfs_oid_to_objid ost1 $oid)
15843
15844         # block size change by sequential over write
15845         local blksz
15846         for ((bs=$min_blksz; bs <= max_blksz; bs <<= 2)); do
15847                 dd if=/dev/zero of=$tf bs=$bs count=1 oflag=sync conv=notrunc
15848
15849                 blksz=$(zfs_object_blksz ost1 $zfs_objid)
15850                 [ $blksz -eq $bs ] || error "blksz error: $blksz, expected: $bs"
15851         done
15852         rm -f $tf
15853
15854         # block size change by sequential append write
15855         dd if=/dev/zero of=$tf bs=$min_blksz count=1 oflag=sync conv=notrunc
15856         oid=$($LFS getstripe $tf | awk '/obdidx/{getline; print $2}')
15857         zfs_objid=$(zfs_oid_to_objid ost1 $oid)
15858
15859         for ((count = 1; count < $((max_blksz / min_blksz)); count *= 2)); do
15860                 dd if=/dev/zero of=$tf bs=$min_blksz count=$count seek=$count \
15861                         oflag=sync conv=notrunc
15862
15863                 blksz=$(zfs_object_blksz ost1 $zfs_objid)
15864                 [ $blksz -eq $((2 * count * min_blksz)) ] ||
15865                         error "blksz error, actual $blksz, "    \
15866                                 "expected: 2 * $count * $min_blksz"
15867         done
15868         rm -f $tf
15869
15870         # random write
15871         touch $tf
15872         oid=$($LFS getstripe $tf | awk '/obdidx/{getline; print $2}')
15873         zfs_objid=$(zfs_oid_to_objid ost1 $oid)
15874
15875         dd if=/dev/zero of=$tf bs=1K count=1 oflag=sync conv=notrunc
15876         blksz=$(zfs_object_blksz ost1 $zfs_objid)
15877         [ $blksz -eq $min_blksz ] ||
15878                 error "blksz error: $blksz, expected: $min_blksz"
15879
15880         dd if=/dev/zero of=$tf bs=64K count=1 oflag=sync conv=notrunc seek=128
15881         blksz=$(zfs_object_blksz ost1 $zfs_objid)
15882         [ $blksz -eq 65536 ] || error "blksz error: $blksz, expected: 64k"
15883
15884         dd if=/dev/zero of=$tf bs=1M count=1 oflag=sync conv=notrunc
15885         blksz=$(zfs_object_blksz ost1 $zfs_objid)
15886         [ $blksz -eq 65536 ] || error "rewrite error: $blksz, expected: 64k"
15887 }
15888 run_test 312 "make sure ZFS adjusts its block size by write pattern"
15889
15890 test_313() {
15891         remote_ost_nodsh && skip "remote OST with nodsh" && return
15892
15893         local file=$DIR/$tfile
15894         rm -f $file
15895         $SETSTRIPE -c 1 -i 0 $file || error "setstripe failed"
15896
15897         # define OBD_FAIL_TGT_RCVD_EIO           0x720
15898         do_facet ost1 "$LCTL set_param fail_loc=0x720"
15899         dd if=/dev/zero of=$file bs=4096 oflag=direct count=1 &&
15900                 error "write should failed"
15901         do_facet ost1 "$LCTL set_param fail_loc=0"
15902         rm -f $file
15903 }
15904 run_test 313 "io should fail after last_rcvd update fail"
15905
15906 test_fake_rw() {
15907         local read_write=$1
15908         if [ "$read_write" = "write" ]; then
15909                 local dd_cmd="dd if=/dev/zero of=$DIR/$tfile"
15910         elif [ "$read_write" = "read" ]; then
15911                 local dd_cmd="dd of=/dev/null if=$DIR/$tfile"
15912         else
15913                 error "argument error"
15914         fi
15915
15916         # turn off debug for performance testing
15917         local saved_debug=$($LCTL get_param -n debug)
15918         $LCTL set_param debug=0
15919
15920         $SETSTRIPE -c 1 -i 0 $DIR/$tfile
15921
15922         # get ost1 size - lustre-OST0000
15923         local ost1_avail_size=$($LFS df | awk /${ost1_svc}/'{ print $4 }')
15924         local blocks=$((ost1_avail_size/2/1024)) # half avail space by megabytes
15925         [ $blocks -gt 1000 ] && blocks=1000 # 1G in maximum
15926
15927         if [ "$read_write" = "read" ]; then
15928                 truncate -s $(expr 1048576 \* $blocks) $DIR/$tfile
15929         fi
15930
15931         local start_time=$(date +%s.%N)
15932         $dd_cmd bs=1M count=$blocks oflag=sync ||
15933                 error "real dd $read_write error"
15934         local duration=$(bc <<< "$(date +%s.%N) - $start_time")
15935
15936         if [ "$read_write" = "write" ]; then
15937                 rm -f $DIR/$tfile
15938         fi
15939
15940         # define OBD_FAIL_OST_FAKE_RW           0x238
15941         do_facet ost1 $LCTL set_param fail_loc=0x238
15942
15943         local start_time=$(date +%s.%N)
15944         $dd_cmd bs=1M count=$blocks oflag=sync ||
15945                 error "fake dd $read_write error"
15946         local duration_fake=$(bc <<< "$(date +%s.%N) - $start_time")
15947
15948         if [ "$read_write" = "write" ]; then
15949                 # verify file size
15950                 cancel_lru_locks osc
15951                 $CHECKSTAT -t file -s $((blocks * 1024 * 1024)) $DIR/$tfile ||
15952                         error "$tfile size not $blocks MB"
15953         fi
15954         do_facet ost1 $LCTL set_param fail_loc=0
15955
15956         echo "fake $read_write $duration_fake vs. normal $read_write" \
15957                 "$duration in seconds"
15958         [ $(bc <<< "$duration_fake < $duration") -eq 1 ] ||
15959                 error_not_in_vm "fake write is slower"
15960
15961         $LCTL set_param -n debug="$saved_debug"
15962         rm -f $DIR/$tfile
15963 }
15964 test_399a() { # LU-7655 for OST fake write
15965         remote_ost_nodsh && skip "remote OST with nodsh" && return
15966
15967         test_fake_rw write
15968 }
15969 run_test 399a "fake write should not be slower than normal write"
15970
15971 test_399b() { # LU-8726 for OST fake read
15972         remote_ost_nodsh && skip "remote OST with nodsh" && return
15973
15974         if [ "$(facet_fstype ost1)" != "ldiskfs" ]; then
15975                 skip "only for ldiskfs" && return 0
15976         fi
15977         test_fake_rw read
15978 }
15979 run_test 399b "fake read should not be slower than normal read"
15980
15981 test_400a() { # LU-1606, was conf-sanity test_74
15982         local extra_flags=''
15983         local out=$TMP/$tfile
15984         local prefix=/usr/include/lustre
15985         local prog
15986
15987         if ! which $CC > /dev/null 2>&1; then
15988                 skip_env "$CC is not installed"
15989                 return 0
15990         fi
15991
15992         if ! [[ -d $prefix ]]; then
15993                 # Assume we're running in tree and fixup the include path.
15994                 extra_flags+=" -I$LUSTRE/../libcfs/include"
15995                 extra_flags+=" -I$LUSTRE/include"
15996                 extra_flags+=" -L$LUSTRE/utils"
15997         fi
15998
15999         for prog in $LUSTRE_TESTS_API_DIR/*.c; do
16000                 $CC -Wall -Werror $extra_flags -llustreapi -o $out $prog ||
16001                         error "client api broken"
16002         done
16003         rm -f $out
16004 }
16005 run_test 400a "Lustre client api program can compile and link"
16006
16007 test_400b() { # LU-1606, LU-5011
16008         local header
16009         local out=$TMP/$tfile
16010         local prefix=/usr/include/lustre
16011
16012         # We use a hard coded prefix so that this test will not fail
16013         # when run in tree. There are headers in lustre/include/lustre/
16014         # that are not packaged (like lustre_idl.h) and have more
16015         # complicated include dependencies (like config.h and lnet/types.h).
16016         # Since this test about correct packaging we just skip them when
16017         # they don't exist (see below) rather than try to fixup cppflags.
16018
16019         if ! which $CC > /dev/null 2>&1; then
16020                 skip_env "$CC is not installed"
16021                 return 0
16022         fi
16023
16024         for header in $prefix/*.h; do
16025                 if ! [[ -f "$header" ]]; then
16026                         continue
16027                 fi
16028
16029                 if [[ "$(basename $header)" == liblustreapi.h ]]; then
16030                         continue # liblustreapi.h is deprecated.
16031                 fi
16032
16033                 $CC -Wall -Werror -include $header -c -x c /dev/null -o $out ||
16034                         error "cannot compile '$header'"
16035         done
16036         rm -f $out
16037 }
16038 run_test 400b "packaged headers can be compiled"
16039
16040 test_401a() { #LU-7437
16041         local printf_arg=$(find -printf 2>&1 | grep "unrecognized:")
16042         [ -n "$printf_arg" ] && skip_env "find does not support -printf" &&
16043                 return
16044         #count the number of parameters by "list_param -R"
16045         local params=$($LCTL list_param -R '*' 2>/dev/null | wc -l)
16046         #count the number of parameters by listing proc files
16047         local proc_dirs=$(eval \ls -d $proc_regexp 2>/dev/null)
16048         echo "proc_dirs='$proc_dirs'"
16049         [ -n "$proc_dirs" ] || error "no proc_dirs on $HOSTNAME"
16050         local procs=$(find -L $proc_dirs -mindepth 1 -printf '%P\n' 2>/dev/null|
16051                       sort -u | wc -l)
16052
16053         [ $params -eq $procs ] ||
16054                 error "found $params parameters vs. $procs proc files"
16055
16056         # test the list_param -D option only returns directories
16057         params=$($LCTL list_param -R -D '*' 2>/dev/null | wc -l)
16058         #count the number of parameters by listing proc directories
16059         procs=$(find -L $proc_dirs -mindepth 1 -type d -printf '%P\n' 2>/dev/null |
16060                 sort -u | wc -l)
16061
16062         [ $params -eq $procs ] ||
16063                 error "found $params parameters vs. $procs proc files"
16064 }
16065 run_test 401a "Verify if 'lctl list_param -R' can list parameters recursively"
16066
16067 test_401b() {
16068         local save=$($LCTL get_param -n jobid_var)
16069         local tmp=testing
16070
16071         $LCTL set_param foo=bar jobid_var=$tmp bar=baz &&
16072                 error "no error returned when setting bad parameters"
16073
16074         local jobid_new=$($LCTL get_param -n foe jobid_var baz)
16075         [[ "$jobid_new" == "$tmp" ]] || error "jobid tmp $jobid_new != $tmp"
16076
16077         $LCTL set_param -n fog=bam jobid_var=$save bat=fog
16078         local jobid_old=$($LCTL get_param -n foe jobid_var bag)
16079         [[ "$jobid_old" == "$save" ]] || error "jobid new $jobid_old != $save"
16080 }
16081 run_test 401b "Verify 'lctl {get,set}_param' continue after error"
16082
16083 test_401c() {
16084         local jobid_var_old=$($LCTL get_param -n jobid_var)
16085         local jobid_var_new
16086
16087         $LCTL set_param jobid_var= &&
16088                 error "no error returned for 'set_param a='"
16089
16090         jobid_var_new=$($LCTL get_param -n jobid_var)
16091         [[ "$jobid_var_old" == "$jobid_var_new" ]] ||
16092                 error "jobid_var was changed by setting without value"
16093
16094         $LCTL set_param jobid_var &&
16095                 error "no error returned for 'set_param a'"
16096
16097         jobid_var_new=$($LCTL get_param -n jobid_var)
16098         [[ "$jobid_var_old" == "$jobid_var_new" ]] ||
16099                 error "jobid_var was changed by setting without value"
16100 }
16101 run_test 401c "Verify 'lctl set_param' without value fails in either format."
16102
16103 test_401d() {
16104         local jobid_var_old=$($LCTL get_param -n jobid_var)
16105         local jobid_var_new
16106         local new_value="foo=bar"
16107
16108         $LCTL set_param jobid_var=$new_value ||
16109                 error "'set_param a=b' did not accept a value containing '='"
16110
16111         jobid_var_new=$($LCTL get_param -n jobid_var)
16112         [[ "$jobid_var_new" == "$new_value" ]] ||
16113                 error "'set_param a=b' failed on a value containing '='"
16114
16115         # Reset the jobid_var to test the other format
16116         $LCTL set_param jobid_var=$jobid_var_old
16117         jobid_var_new=$($LCTL get_param -n jobid_var)
16118         [[ "$jobid_var_new" == "$jobid_var_old" ]] ||
16119                 error "failed to reset jobid_var"
16120
16121         $LCTL set_param jobid_var $new_value ||
16122                 error "'set_param a b' did not accept a value containing '='"
16123
16124         jobid_var_new=$($LCTL get_param -n jobid_var)
16125         [[ "$jobid_var_new" == "$new_value" ]] ||
16126                 error "'set_param a b' failed on a value containing '='"
16127
16128         $LCTL set_param jobid_var $jobid_var_old
16129         jobid_var_new=$($LCTL get_param -n jobid_var)
16130         [[ "$jobid_var_new" == "$jobid_var_old" ]] ||
16131                 error "failed to reset jobid_var"
16132 }
16133 run_test 401d "Verify 'lctl set_param' accepts values containing '='"
16134
16135 test_402() {
16136         local server_version=$(lustre_version_code $SINGLEMDS)
16137         [[ $server_version -ge $(version_code 2.7.66) ]] ||
16138         [[ $server_version -ge $(version_code 2.7.18.4) &&
16139                 $server_version -lt $(version_code 2.7.50) ]] ||
16140         [[ $server_version -ge $(version_code 2.7.2) &&
16141                 $server_version -lt $(version_code 2.7.11) ]] ||
16142                 { skip "Need MDS version 2.7.2+ or 2.7.18.4+ or 2.7.66+";
16143                         return; }
16144         remote_mds_nodsh && skip "remote MDS with nodsh" && return
16145         $LFS setdirstripe -i 0 $DIR/$tdir || error "setdirstripe -i 0 failed"
16146 #define OBD_FAIL_MDS_FLD_LOOKUP 0x15c
16147         do_facet mds1 "lctl set_param fail_loc=0x8000015c"
16148         touch $DIR/$tdir/$tfile && error "touch should fail with ENOENT" ||
16149                 echo "Touch failed - OK"
16150 }
16151 run_test 402 "Return ENOENT to lod_generate_and_set_lovea"
16152
16153 test_403() {
16154         local file1=$DIR/$tfile.1
16155         local file2=$DIR/$tfile.2
16156         local tfile=$TMP/$tfile
16157
16158         rm -f $file1 $file2 $tfile
16159
16160         touch $file1
16161         ln $file1 $file2
16162
16163         # 30 sec OBD_TIMEOUT in ll_getattr()
16164         # right before populating st_nlink
16165         $LCTL set_param fail_loc=0x80001409
16166         stat -c %h $file1 > $tfile &
16167
16168         # create an alias, drop all locks and reclaim the dentry
16169         < $file2
16170         cancel_lru_locks mdc
16171         cancel_lru_locks osc
16172         sysctl -w vm.drop_caches=2
16173
16174         wait
16175
16176         [ `cat $tfile` -gt 0 ] || error "wrong nlink count: `cat $tfile`"
16177
16178         rm -f $tfile $file1 $file2
16179 }
16180 run_test 403 "i_nlink should not drop to zero due to aliasing"
16181
16182 test_404() { # LU-6601
16183         local server_version=$(lustre_version_code $SINGLEMDS)
16184         [[ $server_version -ge $(version_code 2.8.53) ]] ||
16185                 { skip "Need server version newer than 2.8.52"; return 0; }
16186
16187         remote_mds_nodsh && skip "remote MDS with nodsh" && return
16188         local mosps=$(do_facet $SINGLEMDS $LCTL dl |
16189                 awk '/osp .*-osc-MDT/ { print $4}')
16190
16191         local osp
16192         for osp in $mosps; do
16193                 echo "Deactivate: " $osp
16194                 do_facet $SINGLEMDS $LCTL --device %$osp deactivate
16195                 local stat=$(do_facet $SINGLEMDS $LCTL dl |
16196                         awk -vp=$osp '$4 == p { print $2 }')
16197                 [ $stat = IN ] || {
16198                         do_facet $SINGLEMDS $LCTL dl | grep -w $osp
16199                         error "deactivate error"
16200                 }
16201                 echo "Activate: " $osp
16202                 do_facet $SINGLEMDS $LCTL --device %$osp activate
16203                 local stat=$(do_facet $SINGLEMDS $LCTL dl |
16204                         awk -vp=$osp '$4 == p { print $2 }')
16205                 [ $stat = UP ] || {
16206                         do_facet $SINGLEMDS $LCTL dl | grep -w $osp
16207                         error "activate error"
16208                 }
16209         done
16210 }
16211 run_test 404 "validate manual {de}activated works properly for OSPs"
16212
16213 test_405() {
16214         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.6.92) ] &&
16215                 skip "Layout swap lock is not supported" && return
16216
16217         check_swap_layouts_support && return 0
16218
16219         test_mkdir -p $DIR/$tdir
16220         swap_lock_test -d $DIR/$tdir ||
16221                 error "One layout swap locked test failed"
16222 }
16223 run_test 405 "Various layout swap lock tests"
16224
16225 test_406() {
16226         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
16227         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
16228         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
16229         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
16230         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.50) ] &&
16231                 skip "Need MDS version at least 2.8.50" && return
16232
16233         local def_stripenr=$($GETSTRIPE -c $MOUNT)
16234         local def_stripe_size=$($GETSTRIPE -S $MOUNT)
16235         local def_stripe_offset=$($GETSTRIPE -i $MOUNT)
16236         local def_pool=$($GETSTRIPE -p $MOUNT)
16237
16238         local test_pool=$TESTNAME
16239         pool_add $test_pool || error "pool_add failed"
16240         pool_add_targets $test_pool 0 $(($OSTCOUNT - 1)) 1 ||
16241                 error "pool_add_targets failed"
16242
16243         # parent set default stripe count only, child will stripe from both
16244         # parent and fs default
16245         $SETSTRIPE -c 1 -i 1 -S $((def_stripe_size * 2)) -p $test_pool $MOUNT ||
16246                 error "setstripe $MOUNT failed"
16247         $LFS mkdir -c $MDSCOUNT $DIR/$tdir || error "mkdir $tdir failed"
16248         $SETSTRIPE -c $OSTCOUNT $DIR/$tdir || error "setstripe $tdir failed"
16249         for i in $(seq 10); do
16250                 local f=$DIR/$tdir/$tfile.$i
16251                 touch $f || error "touch failed"
16252                 local count=$($GETSTRIPE -c $f)
16253                 [ $count -eq $OSTCOUNT ] ||
16254                         error "$f stripe count $count != $OSTCOUNT"
16255                 local offset=$($GETSTRIPE -i $f)
16256                 [ $offset -eq 1 ] || error "$f stripe offset $offset != 1"
16257                 local size=$($GETSTRIPE -S $f)
16258                 [ $size -eq $((def_stripe_size * 2)) ] ||
16259                         error "$f stripe size $size != $((def_stripe_size * 2))"
16260                 local pool=$($GETSTRIPE -p $f)
16261                 [ $pool == $test_pool ] || error "$f pool $pool != $test_pool"
16262         done
16263
16264         # change fs default striping, delete parent default striping, now child
16265         # will stripe from new fs default striping only
16266         $SETSTRIPE -c 1 -S $def_stripe_size -i 0 $MOUNT ||
16267                 error "change $MOUNT default stripe failed"
16268         $SETSTRIPE -c 0 $DIR/$tdir || error "delete $tdir default stripe failed"
16269         for i in $(seq 11 20); do
16270                 local f=$DIR/$tdir/$tfile.$i
16271                 touch $f || error "touch $f failed"
16272                 local count=$($GETSTRIPE -c $f)
16273                 [ $count -eq 1 ] || error "$f stripe count $count != 1"
16274                 local offset=$($GETSTRIPE -i $f)
16275                 [ $offset -eq 0 ] || error "$f stripe offset $offset != 0"
16276                 local size=$($GETSTRIPE -S $f)
16277                 [ $size -eq $def_stripe_size ] ||
16278                         error "$f stripe size $size != $def_stripe_size"
16279                 local pool=$($GETSTRIPE -p $f)
16280                 [ "#$pool" == "#" ] || error "$f pool $pool is set"
16281
16282         done
16283
16284         unlinkmany $DIR/$tdir/$tfile. 1 20
16285
16286         # restore FS default striping
16287         if [ -z $def_pool ]; then
16288                 $SETSTRIPE -c $def_stripenr -S $def_stripe_size \
16289                         -i $def_stripe_offset $MOUNT ||
16290                         error "restore default striping failed"
16291         else
16292                 $SETSTRIPE -c $def_stripenr -S $def_stripe_size -p $def_pool \
16293                         -i $def_stripe_offset $MOUNT ||
16294                         error "restore default striping with $def_pool failed"
16295         fi
16296
16297         local f=$DIR/$tdir/$tfile
16298         pool_remove_all_targets $test_pool $f
16299         pool_remove $test_pool $f
16300 }
16301 run_test 406 "DNE support fs default striping"
16302
16303 test_407() {
16304         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
16305         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.55) ]] &&
16306                 skip "Need MDS version at least 2.8.55" && return
16307         remote_mds_nodsh && skip "remote MDS with nodsh" && return
16308
16309         $LFS mkdir -i 0 -c 1 $DIR/$tdir.0 ||
16310                 error "$LFS mkdir -i 0 -c 1 $tdir.0 failed"
16311         $LFS mkdir -i 1 -c 1 $DIR/$tdir.1 ||
16312                 error "$LFS mkdir -i 1 -c 1 $tdir.1 failed"
16313         touch $DIR/$tdir.0/$tfile.0 || error "touch $tdir.0/$tfile.0 failed"
16314
16315         #define OBD_FAIL_DT_TXN_STOP    0x2019
16316         for idx in $(seq $MDSCOUNT); do
16317                 do_facet mds$idx "lctl set_param fail_loc=0x2019"
16318         done
16319         $LFS mkdir -c 2 $DIR/$tdir && error "$LFS mkdir -c 2 $tdir should fail"
16320         mv $DIR/$tdir.0/$tfile.0 $DIR/$tdir.1/$tfile.1 &&
16321                 error "mv $tdir.0/$tfile.0 $tdir.1/$tfile.1 should fail"
16322         true
16323 }
16324 run_test 407 "transaction fail should cause operation fail"
16325
16326 test_408() {
16327         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 oflag=direct
16328
16329         #define OBD_FAIL_OSC_BRW_PREP_REQ2        0x40a
16330         lctl set_param fail_loc=0x8000040a
16331         # let ll_prepare_partial_page() fail
16332         dd if=/dev/zero of=$DIR/$tfile bs=2048 count=1 conv=notrunc || true
16333
16334         rm -f $DIR/$tfile
16335
16336         # create at least 100 unused inodes so that
16337         # shrink_icache_memory(0) should not return 0
16338         touch $DIR/$tfile-{0..100}
16339         rm -f $DIR/$tfile-{0..100}
16340         sync
16341
16342         echo 2 > /proc/sys/vm/drop_caches
16343 }
16344 run_test 408 "drop_caches should not hang due to page leaks"
16345
16346 test_409()
16347 {
16348         [ $MDSCOUNT -lt 2 ] &&
16349                 skip "We need at least 2 MDTs for this test" && return
16350
16351         check_mount_and_prep
16352
16353         mkdir -p $DIR/$tdir || error "(0) Fail to mkdir"
16354         $LFS mkdir -i 1 -c 2 $DIR/$tdir/foo || error "(1) Fail to mkdir"
16355         touch $DIR/$tdir/guard || error "(2) Fail to create"
16356
16357         local PREFIX=$(str_repeat 'A' 128)
16358         echo "Create 1K hard links start at $(date)"
16359         createmany -l $DIR/$tdir/guard $DIR/$tdir/foo/${PREFIX}_ 1000 ||
16360                 error "(3) Fail to hard link"
16361
16362         echo "Links count should be right although linkEA overflow"
16363         stat $DIR/$tdir/guard || error "(4) Fail to stat"
16364         local linkcount=$(stat --format=%h $DIR/$tdir/guard)
16365         [ $linkcount -eq 1001 ] ||
16366                 error "(5) Unexpected hard links count: $linkcount"
16367
16368         echo "List all links start at $(date)"
16369         ls -l $DIR/$tdir/foo > /dev/null ||
16370                 error "(6) Fail to list $DIR/$tdir/foo"
16371
16372         echo "Unlink hard links start at $(date)"
16373         unlinkmany $DIR/$tdir/foo/${PREFIX}_ 1000 ||
16374                 error "(7) Fail to unlink"
16375 }
16376 run_test 409 "Large amount of cross-MDTs hard links on the same file"
16377
16378 prep_801() {
16379         [[ $(lustre_version_code mds1) -lt $(version_code 2.9.55) ]] ||
16380         [[ $(lustre_version_code ost1) -lt $(version_code 2.9.55) ]] &&
16381                 skip "Need server version at least 2.9.55" & exit 0
16382         start_full_debug_logging
16383 }
16384
16385 post_801() {
16386         stop_full_debug_logging
16387 }
16388
16389 test_801a() {
16390         prep_801
16391
16392         #define OBD_FAIL_BARRIER_DELAY          0x2202
16393         do_facet mgs $LCTL set_param fail_val=3 fail_loc=0x2202
16394         do_facet mgs $LCTL barrier_freeze $FSNAME 10 &
16395
16396         sleep 1
16397         local b_status=$(do_facet mgs $LCTL barrier_stat $FSNAME |
16398                                awk '/The barrier for/ { print $7 }')
16399         [ "$b_status" = "'freezing_p1'" ] ||
16400                 error "(1) unexpected barrier status $b_status"
16401
16402         do_facet mgs $LCTL set_param fail_val=0 fail_loc=0
16403         wait
16404         b_status=$(do_facet mgs $LCTL barrier_stat $FSNAME |
16405                          awk '/The barrier for/ { print $7 }')
16406         [ "$b_status" = "'frozen'" ] ||
16407                 error "(2) unexpected barrier status $b_status"
16408
16409         local expired=$(do_facet mgs $LCTL barrier_stat $FSNAME |
16410                         awk '/will be expired/ { print $7 }')
16411         echo "sleep $((expired + 3)) seconds, then the barrier will be expired"
16412         sleep $((expired + 3))
16413
16414         b_status=$(do_facet mgs $LCTL barrier_stat $FSNAME |
16415                          awk '/The barrier for/ { print $7 }')
16416         [ "$b_status" = "'expired'" ] ||
16417                 error "(3) unexpected barrier status $b_status"
16418
16419         do_facet mgs $LCTL barrier_freeze $FSNAME 10 ||
16420                 error "(4) fail to freeze barrier"
16421
16422         b_status=$(do_facet mgs $LCTL barrier_stat $FSNAME |
16423                          awk '/The barrier for/ { print $7 }')
16424         [ "$b_status" = "'frozen'" ] ||
16425                 error "(5) unexpected barrier status $b_status"
16426
16427         #define OBD_FAIL_BARRIER_DELAY          0x2202
16428         do_facet mgs $LCTL set_param fail_val=3 fail_loc=0x2202
16429         do_facet mgs $LCTL barrier_thaw $FSNAME &
16430
16431         sleep 1
16432         b_status=$(do_facet mgs $LCTL barrier_stat $FSNAME |
16433                          awk '/The barrier for/ { print $7 }')
16434         [ "$b_status" = "'thawing'" ] ||
16435                 error "(6) unexpected barrier status $b_status"
16436
16437         do_facet mgs $LCTL set_param fail_val=0 fail_loc=0
16438         wait
16439         b_status=$(do_facet mgs $LCTL barrier_stat $FSNAME |
16440                          awk '/The barrier for/ { print $7 }')
16441         [ "$b_status" = "'thawed'" ] ||
16442                 error "(7) unexpected barrier status $b_status"
16443
16444         #define OBD_FAIL_BARRIER_FAILURE        0x2203
16445         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x2203
16446         do_facet mgs $LCTL barrier_freeze $FSNAME
16447
16448         b_status=$(do_facet mgs $LCTL barrier_stat $FSNAME |
16449                                awk '/The barrier for/ { print $7 }')
16450         [ "$b_status" = "'failed'" ] ||
16451                 error "(8) unexpected barrier status $b_status"
16452
16453         do_facet $SINGLEMDS $LCTL set_param fail_loc=0
16454         do_facet mgs $LCTL barrier_thaw $FSNAME
16455
16456         post_801
16457 }
16458 run_test 801a "write barrier user interfaces and stat machine"
16459
16460 test_801b() {
16461         prep_801
16462
16463         mkdir $DIR/$tdir || error "(1) fail to mkdir"
16464         createmany -d $DIR/$tdir/d 6 || "(2) fail to mkdir"
16465         touch $DIR/$tdir/d2/f10 || error "(3) fail to touch"
16466         touch $DIR/$tdir/d3/f11 || error "(4) fail to touch"
16467         touch $DIR/$tdir/d4/f12 || error "(5) fail to touch"
16468
16469         cancel_lru_locks mdc
16470
16471         # 180 seconds should be long enough
16472         do_facet mgs $LCTL barrier_freeze $FSNAME 180
16473
16474         local b_status=$(do_facet mgs $LCTL barrier_stat $FSNAME |
16475                                awk '/The barrier for/ { print $7 }')
16476         [ "$b_status" = "'frozen'" ] ||
16477                 error "(6) unexpected barrier status $b_status"
16478
16479         mkdir $DIR/$tdir/d0/d10 &
16480         mkdir_pid=$!
16481
16482         touch $DIR/$tdir/d1/f13 &
16483         touch_pid=$!
16484
16485         ln $DIR/$tdir/d2/f10 $DIR/$tdir/d2/f14 &
16486         ln_pid=$!
16487
16488         mv $DIR/$tdir/d3/f11 $DIR/$tdir/d3/f15 &
16489         mv_pid=$!
16490
16491         rm -f $DIR/$tdir/d4/f12 &
16492         rm_pid=$!
16493
16494         stat $DIR/$tdir/d5 || error "(7) stat should succeed"
16495
16496         # To guarantee taht the 'stat' is not blocked
16497         b_status=$(do_facet mgs $LCTL barrier_stat $FSNAME |
16498                          awk '/The barrier for/ { print $7 }')
16499         [ "$b_status" = "'frozen'" ] ||
16500                 error "(8) unexpected barrier status $b_status"
16501
16502         # let above commands to run at background
16503         sleep 5
16504
16505         ps -p $mkdir_pid || error "(9) mkdir should be blocked"
16506         ps -p $touch_pid || error "(10) touch should be blocked"
16507         ps -p $ln_pid || error "(11) link should be blocked"
16508         ps -p $mv_pid || error "(12) rename should be blocked"
16509         ps -p $rm_pid || error "(13) unlink should be blocked"
16510
16511         b_status=$(do_facet mgs $LCTL barrier_stat $FSNAME |
16512                          awk '/The barrier for/ { print $7 }')
16513         [ "$b_status" = "'frozen'" ] ||
16514                 error "(14) unexpected barrier status $b_status"
16515
16516         do_facet mgs $LCTL barrier_thaw $FSNAME
16517         b_status=$(do_facet mgs $LCTL barrier_stat $FSNAME |
16518                          awk '/The barrier for/ { print $7 }')
16519         [ "$b_status" = "'thawed'" ] ||
16520                 error "(15) unexpected barrier status $b_status"
16521
16522         wait $mkdir_pid || error "(16) mkdir should succeed"
16523         wait $touch_pid || error "(17) touch should succeed"
16524         wait $ln_pid || error "(18) link should succeed"
16525         wait $mv_pid || error "(19) rename should succeed"
16526         wait $rm_pid || error "(20) unlink should succeed"
16527
16528         post_801
16529 }
16530 run_test 801b "modification will be blocked by write barrier"
16531
16532 test_801c() {
16533         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 2 MDTs" && return
16534
16535         prep_801
16536
16537         stop mds2 || error "(1) Fail to stop mds2"
16538
16539         do_facet mgs $LCTL barrier_freeze $FSNAME 30
16540
16541         local b_status=$(do_facet mgs $LCTL barrier_stat $FSNAME |
16542                                awk '/The barrier for/ { print $7 }')
16543         [ "$b_status" = "'expired'" -o "$b_status" = "'failed'" ] || {
16544                 do_facet mgs $LCTL barrier_thaw $FSNAME
16545                 error "(2) unexpected barrier status $b_status"
16546         }
16547
16548         do_facet mgs $LCTL barrier_rescan $FSNAME ||
16549                 error "(3) Fail to rescan barrier bitmap"
16550
16551         do_facet mgs $LCTL barrier_freeze $FSNAME 10
16552
16553         b_status=$(do_facet mgs $LCTL barrier_stat $FSNAME |
16554                          awk '/The barrier for/ { print $7 }')
16555         [ "$b_status" = "'frozen'" ] ||
16556                 error "(4) unexpected barrier status $b_status"
16557
16558         do_facet mgs $LCTL barrier_thaw $FSNAME
16559         b_status=$(do_facet mgs $LCTL barrier_stat $FSNAME |
16560                          awk '/The barrier for/ { print $7 }')
16561         [ "$b_status" = "'thawed'" ] ||
16562                 error "(5) unexpected barrier status $b_status"
16563
16564         local devname=$(mdsdevname 2)
16565
16566         start mds2 $devname $MDS_MOUNT_OPTS || error "(6) Fail to start mds2"
16567
16568         do_facet mgs $LCTL barrier_rescan $FSNAME ||
16569                 error "(7) Fail to rescan barrier bitmap"
16570
16571         post_801
16572 }
16573 run_test 801c "rescan barrier bitmap"
16574
16575 saved_MGS_MOUNT_OPTS=$MGS_MOUNT_OPTS
16576 saved_MDS_MOUNT_OPTS=$MDS_MOUNT_OPTS
16577 saved_OST_MOUNT_OPTS=$OST_MOUNT_OPTS
16578
16579 cleanup_802() {
16580         trap 0
16581
16582         stopall
16583         MGS_MOUNT_OPTS=$saved_MGS_MOUNT_OPTS
16584         MDS_MOUNT_OPTS=$saved_MDS_MOUNT_OPTS
16585         OST_MOUNT_OPTS=$saved_OST_MOUNT_OPTS
16586         setupall
16587 }
16588
16589 test_802() {
16590
16591         [[ $(lustre_version_code mds1) -lt $(version_code 2.9.55) ]] ||
16592         [[ $(lustre_version_code ost1) -lt $(version_code 2.9.55) ]] &&
16593                 skip "Need server version at least 2.9.55" & exit 0
16594
16595         mkdir $DIR/$tdir || error "(1) fail to mkdir"
16596
16597         cp $LUSTRE/tests/test-framework.sh $DIR/$tdir/ ||
16598                 error "(2) Fail to copy"
16599
16600         trap cleanup_802 EXIT
16601
16602         # sync by force before remount as readonly
16603         sync; sync_all_data; sleep 3; sync_all_data
16604
16605         stopall
16606
16607         MGS_MOUNT_OPTS=$(csa_add "$MGS_MOUNT_OPTS" -o rdonly_dev)
16608         MDS_MOUNT_OPTS=$(csa_add "$MDS_MOUNT_OPTS" -o rdonly_dev)
16609         OST_MOUNT_OPTS=$(csa_add "$OST_MOUNT_OPTS" -o rdonly_dev)
16610
16611         echo "Mount the server as read only"
16612         setupall server_only || error "(3) Fail to start servers"
16613
16614         echo "Mount client without ro should fail"
16615         mount_client $MOUNT &&
16616                 error "(4) Mount client without 'ro' should fail"
16617
16618         echo "Mount client with ro should succeed"
16619         mount_client $MOUNT ro ||
16620                 error "(5) Mount client with 'ro' should succeed"
16621
16622         echo "Modify should be refused"
16623         touch $DIR/$tdir/guard && error "(6) Touch should fail under ro mode"
16624
16625         echo "Read should be allowed"
16626         diff $LUSTRE/tests/test-framework.sh $DIR/$tdir/test-framework.sh ||
16627                 error "(7) Read should succeed under ro mode"
16628
16629         cleanup_802
16630 }
16631 run_test 802 "simulate readonly device"
16632
16633 #
16634 # tests that do cleanup/setup should be run at the end
16635 #
16636
16637 test_900() {
16638         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
16639         local ls
16640         #define OBD_FAIL_MGC_PAUSE_PROCESS_LOG   0x903
16641         $LCTL set_param fail_loc=0x903
16642
16643         cancel_lru_locks MGC
16644
16645         FAIL_ON_ERROR=true cleanup
16646         FAIL_ON_ERROR=true setup
16647 }
16648 run_test 900 "umount should not race with any mgc requeue thread"
16649
16650 complete $SECONDS
16651 [ -f $EXT2_DEV ] && rm $EXT2_DEV || true
16652 check_and_cleanup_lustre
16653 if [ "$I_MOUNTED" != "yes" ]; then
16654         lctl set_param debug="$OLDDEBUG" 2> /dev/null || true
16655 fi
16656 exit_status