Whamcloud - gitweb
c059a2bdd8e29a9af74ad2287e707ae5acc38e94
[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-9693 LU-6493 LU-9693 3561 5188
12 ALWAYS_EXCEPT="                42a    42b      42c     45   68b $SANITY_EXCEPT"
13 # UPDATE THE COMMENT ABOVE WITH BUG NUMBERS WHEN CHANGING ALWAYS_EXCEPT!
14
15 # skipped tests: LU-2036 LU-8411 LU-9096 LU-9054
16 ALWAYS_EXCEPT="  76      407     253     312 $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-1957
85         ALWAYS_EXCEPT="$ALWAYS_EXCEPT  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         touch $DIR/$tfile
763         rm $DIR/$tfile
764         touch $DIR/$tfile
765         rm $DIR/$tfile
766         $CHECKSTAT -a $DIR/$tfile || error "$tfile was not removed"
767 }
768 run_test 20 "touch .../f ; ls -l ... ==========================="
769
770 test_21() {
771         test_mkdir -p $DIR/$tdir
772         [ -f $DIR/$tdir/dangle ] && rm -f $DIR/$tdir/dangle
773         ln -s dangle $DIR/$tdir/link
774         echo foo >> $DIR/$tdir/link
775         cat $DIR/$tdir/dangle
776         $CHECKSTAT -t link $DIR/$tdir/link || error "$tdir/link not a link"
777         $CHECKSTAT -f -t file $DIR/$tdir/link ||
778                 error "$tdir/link not linked to a file"
779 }
780 run_test 21 "write to dangling link ============================"
781
782 test_22() {
783         WDIR=$DIR/$tdir
784         test_mkdir -p $DIR/$tdir
785         chown $RUNAS_ID:$RUNAS_GID $WDIR
786         (cd $WDIR || error "cd $WDIR failed";
787         $RUNAS tar cf - /etc/hosts /etc/sysconfig/network | \
788         $RUNAS tar xf -)
789         ls -lR $WDIR/etc || error "ls -lR $WDIR/etc failed"
790         $CHECKSTAT -t dir $WDIR/etc || error "checkstat -t dir failed"
791         $CHECKSTAT -u \#$RUNAS_ID -g \#$RUNAS_GID $WDIR/etc || error "checkstat -u failed"
792 }
793 run_test 22 "unpack tar archive as non-root user ==============="
794
795 # was test_23
796 test_23a() {
797         test_mkdir -p $DIR/$tdir
798         local file=$DIR/$tdir/$tfile
799
800         openfile -f O_CREAT:O_EXCL $file || error "$file create failed"
801         openfile -f O_CREAT:O_EXCL $file &&
802                 error "$file recreate succeeded" || true
803 }
804 run_test 23a "O_CREAT|O_EXCL in subdir =========================="
805
806 test_23b() { # bug 18988
807         test_mkdir -p $DIR/$tdir
808         local file=$DIR/$tdir/$tfile
809
810         rm -f $file
811         echo foo > $file || error "write filed"
812         echo bar >> $file || error "append filed"
813         $CHECKSTAT -s 8 $file || error "wrong size"
814         rm $file
815 }
816 run_test 23b "O_APPEND check =========================="
817
818 # rename sanity
819 test_24a() {
820         echo '-- same directory rename'
821         test_mkdir $DIR/$tdir
822         touch $DIR/$tdir/$tfile.1
823         mv $DIR/$tdir/$tfile.1 $DIR/$tdir/$tfile.2
824         $CHECKSTAT -t file $DIR/$tdir/$tfile.2 || error "$tfile.2 not a file"
825 }
826 run_test 24a "rename file to non-existent target"
827
828 test_24b() {
829         test_mkdir $DIR/$tdir
830         touch $DIR/$tdir/$tfile.{1,2}
831         mv $DIR/$tdir/$tfile.1 $DIR/$tdir/$tfile.2
832         $CHECKSTAT -a $DIR/$tdir/$tfile.1 || error "$tfile.1 exists"
833         $CHECKSTAT -t file $DIR/$tdir/$tfile.2 || error "$tfile.2 not a file"
834 }
835 run_test 24b "rename file to existing target"
836
837 test_24c() {
838         test_mkdir $DIR/$tdir
839         test_mkdir $DIR/$tdir/d$testnum.1
840         mv $DIR/$tdir/d$testnum.1 $DIR/$tdir/d$testnum.2
841         $CHECKSTAT -a $DIR/$tdir/d$testnum.1 || error "d$testnum.1 exists"
842         $CHECKSTAT -t dir $DIR/$tdir/d$testnum.2 || error "d$testnum.2 not dir"
843 }
844 run_test 24c "rename directory to non-existent target"
845
846 test_24d() {
847         test_mkdir -c1 $DIR/$tdir
848         test_mkdir -c1 $DIR/$tdir/d$testnum.1
849         test_mkdir -c1 $DIR/$tdir/d$testnum.2
850         mrename $DIR/$tdir/d$testnum.1 $DIR/$tdir/d$testnum.2
851         $CHECKSTAT -a $DIR/$tdir/d$testnum.1 || error "d$testnum.1 exists"
852         $CHECKSTAT -t dir $DIR/$tdir/d$testnum.2 || error "d$testnum.2 not dir"
853 }
854 run_test 24d "rename directory to existing target"
855
856 test_24e() {
857         echo '-- cross directory renames --'
858         test_mkdir $DIR/R5a
859         test_mkdir $DIR/R5b
860         touch $DIR/R5a/f
861         mv $DIR/R5a/f $DIR/R5b/g
862         $CHECKSTAT -a $DIR/R5a/f || error
863         $CHECKSTAT -t file $DIR/R5b/g || error
864 }
865 run_test 24e "touch .../R5a/f; rename .../R5a/f .../R5b/g ======"
866
867 test_24f() {
868         test_mkdir $DIR/R6a
869         test_mkdir $DIR/R6b
870         touch $DIR/R6a/f $DIR/R6b/g
871         mv $DIR/R6a/f $DIR/R6b/g
872         $CHECKSTAT -a $DIR/R6a/f || error
873         $CHECKSTAT -t file $DIR/R6b/g || error
874 }
875 run_test 24f "touch .../R6a/f R6b/g; mv .../R6a/f .../R6b/g ===="
876
877 test_24g() {
878         test_mkdir $DIR/R7a
879         test_mkdir $DIR/R7b
880         test_mkdir $DIR/R7a/d
881         mv $DIR/R7a/d $DIR/R7b/e
882         $CHECKSTAT -a $DIR/R7a/d || error
883         $CHECKSTAT -t dir $DIR/R7b/e || error
884 }
885 run_test 24g "mkdir .../R7{a,b}/d; mv .../R7a/d .../R7b/e ======"
886
887 test_24h() {
888         test_mkdir -c1 $DIR/R8a
889         test_mkdir -c1 $DIR/R8b
890         test_mkdir -c1 $DIR/R8a/d
891         test_mkdir -c1 $DIR/R8b/e
892         mrename $DIR/R8a/d $DIR/R8b/e
893         $CHECKSTAT -a $DIR/R8a/d || error
894         $CHECKSTAT -t dir $DIR/R8b/e || error
895 }
896 run_test 24h "mkdir .../R8{a,b}/{d,e}; rename .../R8a/d .../R8b/e"
897
898 test_24i() {
899         echo "-- rename error cases"
900         test_mkdir $DIR/R9
901         test_mkdir $DIR/R9/a
902         touch $DIR/R9/f
903         mrename $DIR/R9/f $DIR/R9/a
904         $CHECKSTAT -t file $DIR/R9/f || error
905         $CHECKSTAT -t dir  $DIR/R9/a || error
906         $CHECKSTAT -a $DIR/R9/a/f || error
907 }
908 run_test 24i "rename file to dir error: touch f ; mkdir a ; rename f a"
909
910 test_24j() {
911         test_mkdir $DIR/R10
912         mrename $DIR/R10/f $DIR/R10/g
913         $CHECKSTAT -t dir $DIR/R10 || error
914         $CHECKSTAT -a $DIR/R10/f || error
915         $CHECKSTAT -a $DIR/R10/g || error
916 }
917 run_test 24j "source does not exist ============================"
918
919 test_24k() {
920         test_mkdir $DIR/R11a
921         test_mkdir $DIR/R11a/d
922         touch $DIR/R11a/f
923         mv $DIR/R11a/f $DIR/R11a/d
924         $CHECKSTAT -a $DIR/R11a/f || error
925         $CHECKSTAT -t file $DIR/R11a/d/f || error
926 }
927 run_test 24k "touch .../R11a/f; mv .../R11a/f .../R11a/d ======="
928
929 # bug 2429 - rename foo foo foo creates invalid file
930 test_24l() {
931         f="$DIR/f24l"
932         $MULTIOP $f OcNs || error
933 }
934 run_test 24l "Renaming a file to itself ========================"
935
936 test_24m() {
937         f="$DIR/f24m"
938         $MULTIOP $f OcLN ${f}2 ${f}2 || error "link ${f}2 ${f}2 failed"
939         # on ext3 this does not remove either the source or target files
940         # though the "expected" operation would be to remove the source
941         $CHECKSTAT -t file ${f} || error "${f} missing"
942         $CHECKSTAT -t file ${f}2 || error "${f}2 missing"
943 }
944 run_test 24m "Renaming a file to a hard link to itself ========="
945
946 test_24n() {
947     f="$DIR/f24n"
948     # this stats the old file after it was renamed, so it should fail
949     touch ${f}
950     $CHECKSTAT ${f}
951     mv ${f} ${f}.rename
952     $CHECKSTAT ${f}.rename
953     $CHECKSTAT -a ${f}
954 }
955 run_test 24n "Statting the old file after renaming (Posix rename 2)"
956
957 test_24o() {
958         test_mkdir -p $DIR/d24o
959         rename_many -s random -v -n 10 $DIR/d24o
960 }
961 run_test 24o "rename of files during htree split ==============="
962
963 test_24p() {
964         test_mkdir $DIR/R12a
965         test_mkdir $DIR/R12b
966         DIRINO=`ls -lid $DIR/R12a | awk '{ print $1 }'`
967         mrename $DIR/R12a $DIR/R12b
968         $CHECKSTAT -a $DIR/R12a || error
969         $CHECKSTAT -t dir $DIR/R12b || error
970         DIRINO2=`ls -lid $DIR/R12b | awk '{ print $1 }'`
971         [ "$DIRINO" = "$DIRINO2" ] || error "R12a $DIRINO != R12b $DIRINO2"
972 }
973 run_test 24p "mkdir .../R12{a,b}; rename .../R12a .../R12b"
974
975 cleanup_multiop_pause() {
976         trap 0
977         kill -USR1 $MULTIPID
978 }
979
980 test_24q() {
981         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
982         test_mkdir $DIR/R13a
983         test_mkdir $DIR/R13b
984         local DIRINO=$(ls -lid $DIR/R13a | awk '{ print $1 }')
985         multiop_bg_pause $DIR/R13b D_c || error "multiop failed to start"
986         MULTIPID=$!
987
988         trap cleanup_multiop_pause EXIT
989         mrename $DIR/R13a $DIR/R13b
990         $CHECKSTAT -a $DIR/R13a || error "R13a still exists"
991         $CHECKSTAT -t dir $DIR/R13b || error "R13b does not exist"
992         local DIRINO2=$(ls -lid $DIR/R13b | awk '{ print $1 }')
993         [ "$DIRINO" = "$DIRINO2" ] || error "R13a $DIRINO != R13b $DIRINO2"
994         cleanup_multiop_pause
995         wait $MULTIPID || error "multiop close failed"
996 }
997 run_test 24q "mkdir .../R13{a,b}; open R13b rename R13a R13b ==="
998
999 test_24r() { #bug 3789
1000         test_mkdir $DIR/R14a
1001         test_mkdir $DIR/R14a/b
1002         mrename $DIR/R14a $DIR/R14a/b && error "rename to subdir worked!"
1003         $CHECKSTAT -t dir $DIR/R14a || error "$DIR/R14a missing"
1004         $CHECKSTAT -t dir $DIR/R14a/b || error "$DIR/R14a/b missing"
1005 }
1006 run_test 24r "mkdir .../R14a/b; rename .../R14a .../R14a/b ====="
1007
1008 test_24s() {
1009         test_mkdir $DIR/R15a
1010         test_mkdir $DIR/R15a/b
1011         test_mkdir $DIR/R15a/b/c
1012         mrename $DIR/R15a $DIR/R15a/b/c && error "rename to sub-subdir worked!"
1013         $CHECKSTAT -t dir $DIR/R15a || error "$DIR/R15a missing"
1014         $CHECKSTAT -t dir $DIR/R15a/b/c || error "$DIR/R15a/b/c missing"
1015 }
1016 run_test 24s "mkdir .../R15a/b/c; rename .../R15a .../R15a/b/c ="
1017 test_24t() {
1018         test_mkdir $DIR/R16a
1019         test_mkdir $DIR/R16a/b
1020         test_mkdir $DIR/R16a/b/c
1021         mrename $DIR/R16a/b/c $DIR/R16a && error "rename to sub-subdir worked!"
1022         $CHECKSTAT -t dir $DIR/R16a || error "$DIR/R16a missing"
1023         $CHECKSTAT -t dir $DIR/R16a/b/c || error "$DIR/R16a/b/c missing"
1024 }
1025 run_test 24t "mkdir .../R16a/b/c; rename .../R16a/b/c .../R16a ="
1026
1027 test_24u() { # bug12192
1028         $MULTIOP $DIR/$tfile C2w$((2048 * 1024))c || error
1029         $CHECKSTAT -s $((2048 * 1024)) $DIR/$tfile || error "wrong file size"
1030 }
1031 run_test 24u "create stripe file"
1032
1033 page_size() {
1034         local size
1035         size=$(getconf PAGE_SIZE 2>/dev/null)
1036         echo -n ${size:-4096}
1037 }
1038
1039 simple_cleanup_common() {
1040         local rc=0
1041         trap 0
1042         [ -z "$DIR" -o -z "$tdir" ] && return 0
1043
1044         local start=$SECONDS
1045         rm -rf $DIR/$tdir
1046         rc=$?
1047         wait_delete_completed
1048         echo "cleanup time $((SECONDS - start))"
1049         return $rc
1050 }
1051
1052 max_pages_per_rpc() {
1053         local mdtname="$(printf "MDT%04x" ${1:-0})"
1054         $LCTL get_param -n mdc.*$mdtname*.max_pages_per_rpc
1055 }
1056
1057 test_24v() {
1058         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1059         local nrfiles=${COUNT:-100000}
1060         # Performance issue on ZFS see LU-4072 (c.f. LU-2887)
1061         [ $(facet_fstype $SINGLEMDS) = "zfs" ] && nrfiles=${COUNT:-10000}
1062
1063         local fname="$DIR/$tdir/$tfile"
1064         test_mkdir "$(dirname $fname)"
1065         # assume MDT0000 has the fewest inodes
1066         local stripes=$($LFS getdirstripe -c $(dirname $fname))
1067         local free_inodes=$(($(mdt_free_inodes 0) * stripes))
1068         [[ $free_inodes -lt $nrfiles ]] && nrfiles=$free_inodes
1069
1070         trap simple_cleanup_common EXIT
1071
1072         createmany -m "$fname" $nrfiles
1073
1074         cancel_lru_locks mdc
1075         lctl set_param mdc.*.stats clear
1076
1077         # was previously test_24D: LU-6101
1078         # readdir() returns correct number of entries after cursor reload
1079         local num_ls=$(ls $DIR/$tdir | wc -l)
1080         local num_uniq=$(ls $DIR/$tdir | sort -u | wc -l)
1081         local num_all=$(ls -a $DIR/$tdir | wc -l)
1082         if [ $num_ls -ne $nrfiles -o $num_uniq -ne $nrfiles -o \
1083              $num_all -ne $((nrfiles + 2)) ]; then
1084                 error "Expected $nrfiles files, got $num_ls " \
1085                         "($num_uniq unique $num_all .&..)"
1086         fi
1087         # LU-5 large readdir
1088         # dirent_size = 32 bytes for sizeof(struct lu_dirent) +
1089         #               N bytes for name (len($nrfiles) rounded to 8 bytes) +
1090         #               8 bytes for luda_type (4 bytes rounded to 8 bytes)
1091         # take into account of overhead in lu_dirpage header and end mark in
1092         # each page, plus one in rpc_num calculation.
1093         local dirent_size=$((32 + (${#tfile} | 7) + 1 + 8))
1094         local page_entries=$((($(page_size) - 24) / dirent_size))
1095         local mdt_idx=$($LFS getdirstripe -i $(dirname $fname))
1096         local rpc_pages=$(max_pages_per_rpc $mdt_idx)
1097         local rpc_max=$((nrfiles / (page_entries * rpc_pages) + stripes))
1098         local mds_readpage=$(calc_stats mdc.*.stats mds_readpage)
1099         echo "readpages: $mds_readpage rpc_max: $rpc_max"
1100         (( $mds_readpage < $rpc_max - 2 || $mds_readpage > $rpc_max + 1)) &&
1101                 error "large readdir doesn't take effect: " \
1102                       "$mds_readpage should be about $rpc_max"
1103
1104         simple_cleanup_common
1105 }
1106 run_test 24v "list large directory (test hash collision, b=17560)"
1107
1108 test_24w() { # bug21506
1109         SZ1=234852
1110         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=4096 || return 1
1111         dd if=/dev/zero bs=$SZ1 count=1 >> $DIR/$tfile || return 2
1112         dd if=$DIR/$tfile of=$DIR/${tfile}_left bs=1M skip=4097 || return 3
1113         SZ2=`ls -l $DIR/${tfile}_left | awk '{print $5}'`
1114         [[ "$SZ1" -eq "$SZ2" ]] ||
1115                 error "Error reading at the end of the file $tfile"
1116 }
1117 run_test 24w "Reading a file larger than 4Gb"
1118
1119 test_24x() {
1120         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 2 MDTs" && return
1121
1122         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.56) ]] &&
1123                 skip "Need MDS version at least 2.7.56" && return
1124
1125         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1126         local MDTIDX=1
1127         local remote_dir=$DIR/$tdir/remote_dir
1128
1129         test_mkdir -p $DIR/$tdir
1130         $LFS mkdir -i $MDTIDX $remote_dir ||
1131                 error "create remote directory failed"
1132
1133         test_mkdir -p $DIR/$tdir/src_dir
1134         touch $DIR/$tdir/src_file
1135         test_mkdir -p $remote_dir/tgt_dir
1136         touch $remote_dir/tgt_file
1137
1138         mrename $DIR/$tdir/src_dir $remote_dir/tgt_dir ||
1139                 error "rename dir cross MDT failed!"
1140
1141         mrename $DIR/$tdir/src_file $remote_dir/tgt_file ||
1142                 error "rename file cross MDT failed!"
1143
1144         touch $DIR/$tdir/ln_file
1145         ln $DIR/$tdir/ln_file $remote_dir/ln_name ||
1146                 error "ln file cross MDT failed"
1147
1148         rm -rf $DIR/$tdir || error "Can not delete directories"
1149 }
1150 run_test 24x "cross MDT rename/link"
1151
1152 test_24y() {
1153         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 2 MDTs" && return
1154         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1155         local MDTIDX=1
1156         local remote_dir=$DIR/$tdir/remote_dir
1157
1158         test_mkdir -p $DIR/$tdir
1159         $LFS mkdir -i $MDTIDX $remote_dir ||
1160                    error "create remote directory failed"
1161
1162         test_mkdir -p $remote_dir/src_dir
1163         touch $remote_dir/src_file
1164         test_mkdir -p $remote_dir/tgt_dir
1165         touch $remote_dir/tgt_file
1166
1167         mrename $remote_dir/src_dir $remote_dir/tgt_dir ||
1168                 error "rename subdir in the same remote dir failed!"
1169
1170         mrename $remote_dir/src_file $remote_dir/tgt_file ||
1171                 error "rename files in the same remote dir failed!"
1172
1173         ln $remote_dir/tgt_file $remote_dir/tgt_file1 ||
1174                 error "link files in the same remote dir failed!"
1175
1176         rm -rf $DIR/$tdir || error "Can not delete directories"
1177 }
1178 run_test 24y "rename/link on the same dir should succeed"
1179
1180 test_24A() { # LU-3182
1181         local NFILES=5000
1182
1183         rm -rf $DIR/$tdir
1184         test_mkdir -p $DIR/$tdir
1185         trap simple_cleanup_common EXIT
1186         createmany -m $DIR/$tdir/$tfile $NFILES
1187         local t=$(ls $DIR/$tdir | wc -l)
1188         local u=$(ls $DIR/$tdir | sort -u | wc -l)
1189         local v=$(ls -ai $DIR/$tdir | sort -u | wc -l)
1190         if [ $t -ne $NFILES -o $u -ne $NFILES -o $v -ne $((NFILES + 2)) ] ; then
1191                 error "Expected $NFILES files, got $t ($u unique $v .&..)"
1192         fi
1193
1194         simple_cleanup_common || error "Can not delete directories"
1195 }
1196 run_test 24A "readdir() returns correct number of entries."
1197
1198 test_24B() { # LU-4805
1199         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
1200         local count
1201
1202         test_mkdir $DIR/$tdir
1203         $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/striped_dir ||
1204                 error "create striped dir failed"
1205
1206         count=$(ls -ai $DIR/$tdir/striped_dir | wc -l)
1207         [ $count -eq 2 ] || error "Expected 2, got $count"
1208
1209         touch $DIR/$tdir/striped_dir/a
1210
1211         count=$(ls -ai $DIR/$tdir/striped_dir | wc -l)
1212         [ $count -eq 3 ] || error "Expected 3, got $count"
1213
1214         touch $DIR/$tdir/striped_dir/.f
1215
1216         count=$(ls -ai $DIR/$tdir/striped_dir | wc -l)
1217         [ $count -eq 4 ] || error "Expected 4, got $count"
1218
1219         rm -rf $DIR/$tdir || error "Can not delete directories"
1220 }
1221 run_test 24B "readdir for striped dir return correct number of entries"
1222
1223 test_24C() {
1224         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
1225
1226         mkdir $DIR/$tdir
1227         mkdir $DIR/$tdir/d0
1228         mkdir $DIR/$tdir/d1
1229
1230         $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/d0/striped_dir ||
1231                 error "create striped dir failed"
1232
1233         cd $DIR/$tdir/d0/striped_dir
1234
1235         local d0_ino=$(ls -i -l -a $DIR/$tdir | grep "d0" | awk '{print $1}')
1236         local d1_ino=$(ls -i -l -a $DIR/$tdir | grep "d1" | awk '{print $1}')
1237         local parent_ino=$(ls -i -l -a | grep "\.\." | awk '{print $1}')
1238
1239         [ "$d0_ino" = "$parent_ino" ] ||
1240                 error ".. wrong, expect $d0_ino, get $parent_ino"
1241
1242         mv $DIR/$tdir/d0/striped_dir $DIR/$tdir/d1/ ||
1243                 error "mv striped dir failed"
1244
1245         parent_ino=$(ls -i -l -a | grep "\.\." | awk '{print $1}')
1246
1247         [ "$d1_ino" = "$parent_ino" ] ||
1248                 error ".. wrong after mv, expect $d1_ino, get $parent_ino"
1249 }
1250 run_test 24C "check .. in striped dir"
1251
1252 test_24E() {
1253         [[ $MDSCOUNT -lt 4 ]] && skip "needs >= 4 MDTs" && return
1254         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1255
1256         mkdir -p $DIR/$tdir
1257         mkdir $DIR/$tdir/src_dir
1258         $LFS mkdir -i 1 $DIR/$tdir/src_dir/src_child ||
1259                 error "create remote source failed"
1260
1261         touch $DIR/$tdir/src_dir/src_child/a
1262
1263         $LFS mkdir -i 2 $DIR/$tdir/tgt_dir ||
1264                 error "create remote target dir failed"
1265
1266         $LFS mkdir -i 3 $DIR/$tdir/tgt_dir/tgt_child ||
1267                 error "create remote target child failed"
1268
1269         mrename $DIR/$tdir/src_dir/src_child $DIR/$tdir/tgt_dir/tgt_child ||
1270                 error "rename dir cross MDT failed!"
1271
1272         find $DIR/$tdir
1273
1274         $CHECKSTAT -t dir $DIR/$tdir/src_dir/src_child &&
1275                 error "src_child still exists after rename"
1276
1277         $CHECKSTAT -t file $DIR/$tdir/tgt_dir/tgt_child/a ||
1278                 error "missing file(a) after rename"
1279
1280         rm -rf $DIR/$tdir || error "Can not delete directories"
1281 }
1282 run_test 24E "cross MDT rename/link"
1283
1284 test_25a() {
1285         echo '== symlink sanity ============================================='
1286
1287         test_mkdir $DIR/d25
1288         ln -s d25 $DIR/s25
1289         touch $DIR/s25/foo || error
1290 }
1291 run_test 25a "create file in symlinked directory ==============="
1292
1293 test_25b() {
1294         [ ! -d $DIR/d25 ] && test_25a
1295         $CHECKSTAT -t file $DIR/s25/foo || error
1296 }
1297 run_test 25b "lookup file in symlinked directory ==============="
1298
1299 test_26a() {
1300         test_mkdir $DIR/d26
1301         test_mkdir $DIR/d26/d26-2
1302         ln -s d26/d26-2 $DIR/s26
1303         touch $DIR/s26/foo || error
1304 }
1305 run_test 26a "multiple component symlink ======================="
1306
1307 test_26b() {
1308         test_mkdir -p $DIR/d26b/d26-2
1309         ln -s d26b/d26-2/foo $DIR/s26-2
1310         touch $DIR/s26-2 || error
1311 }
1312 run_test 26b "multiple component symlink at end of lookup ======"
1313
1314 test_26c() {
1315         test_mkdir $DIR/d26.2
1316         touch $DIR/d26.2/foo
1317         ln -s d26.2 $DIR/s26.2-1
1318         ln -s s26.2-1 $DIR/s26.2-2
1319         ln -s s26.2-2 $DIR/s26.2-3
1320         chmod 0666 $DIR/s26.2-3/foo
1321 }
1322 run_test 26c "chain of symlinks ================================"
1323
1324 # recursive symlinks (bug 439)
1325 test_26d() {
1326         ln -s d26-3/foo $DIR/d26-3
1327 }
1328 run_test 26d "create multiple component recursive symlink ======"
1329
1330 test_26e() {
1331         [ ! -h $DIR/d26-3 ] && test_26d
1332         rm $DIR/d26-3
1333 }
1334 run_test 26e "unlink multiple component recursive symlink ======"
1335
1336 # recursive symlinks (bug 7022)
1337 test_26f() {
1338         test_mkdir -p $DIR/$tdir
1339         test_mkdir $DIR/$tdir/$tfile   || error "mkdir $DIR/$tdir/$tfile failed"
1340         cd $DIR/$tdir/$tfile           || error "cd $DIR/$tdir/$tfile failed"
1341         test_mkdir -p lndir/bar1      || error "mkdir lndir/bar1 failed"
1342         test_mkdir $DIR/$tdir/$tfile/$tfile   || error "mkdir $tfile failed"
1343         cd $tfile                || error "cd $tfile failed"
1344         ln -s .. dotdot          || error "ln dotdot failed"
1345         ln -s dotdot/lndir lndir || error "ln lndir failed"
1346         cd $DIR/$tdir                 || error "cd $DIR/$tdir failed"
1347         output=`ls $tfile/$tfile/lndir/bar1`
1348         [ "$output" = bar1 ] && error "unexpected output"
1349         rm -r $tfile             || error "rm $tfile failed"
1350         $CHECKSTAT -a $DIR/$tfile || error "$tfile not gone"
1351 }
1352 run_test 26f "rm -r of a directory which has recursive symlink"
1353
1354 test_27a() {
1355         test_mkdir -p $DIR/d27 || error "mkdir failed"
1356         $LFS getstripe $DIR/d27
1357         $LFS setstripe -c 1 $DIR/d27/f0 || error "setstripe failed"
1358         $CHECKSTAT -t file $DIR/d27/f0 || error "checkstat failed"
1359         cp /etc/hosts $DIR/d27/f0 || error
1360 }
1361 run_test 27a "one stripe file"
1362
1363 test_27b() {
1364         [[ $OSTCOUNT -lt 2 ]] && skip_env "skipping 2-stripe test" && return
1365         test_mkdir -p $DIR/d27
1366         $LFS setstripe -c 2 $DIR/d27/f01 || error "setstripe failed"
1367         $LFS getstripe -c $DIR/d27/f01
1368         [ $($LFS getstripe -c $DIR/d27/f01) -eq 2 ] ||
1369                 error "two-stripe file doesn't have two stripes"
1370
1371         dd if=/dev/zero of=$DIR/d27/f01 bs=4k count=4 || error "dd failed"
1372 }
1373 run_test 27b "create and write to two stripe file"
1374
1375 test_27d() {
1376         test_mkdir -p $DIR/d27
1377         $LFS setstripe -c 0 -i -1 -S 0 $DIR/d27/fdef || error "setstripe failed"
1378         $CHECKSTAT -t file $DIR/d27/fdef || error "checkstat failed"
1379         dd if=/dev/zero of=$DIR/d27/fdef bs=4k count=4 || error
1380 }
1381 run_test 27d "create file with default settings"
1382
1383 test_27e() {
1384         # LU-5839 adds check for existed layout before setting it
1385         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.56) ]] &&
1386                 skip "Need MDS version at least 2.7.56" && return
1387         test_mkdir -p $DIR/d27
1388         $LFS setstripe -c 2 $DIR/d27/f12 || error "setstripe failed"
1389         $LFS setstripe -c 2 $DIR/d27/f12 && error "setstripe succeeded twice"
1390         $CHECKSTAT -t file $DIR/d27/f12 || error "checkstat failed"
1391 }
1392 run_test 27e "setstripe existing file (should return error)"
1393
1394 test_27f() {
1395         test_mkdir $DIR/$tdir
1396         $LFS setstripe -S 100 -i 0 -c 1 $DIR/$tdir/$tfile &&
1397                 error "$SETSTRIPE $DIR/$tdir/$tfile failed"
1398         $CHECKSTAT -t file $DIR/$tdir/$tfile &&
1399                 error "$CHECKSTAT -t file $DIR/$tdir/$tfile should fail"
1400         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=4k count=4 || error "dd failed"
1401         $LFS getstripe $DIR/$tdir/$tfile || error "$LFS getstripe failed"
1402 }
1403 run_test 27f "setstripe with bad stripe size (should return error)"
1404
1405 test_27g() {
1406         test_mkdir -p $DIR/d27
1407         $MCREATE $DIR/d27/fnone || error "mcreate failed"
1408         $LFS getstripe $DIR/d27/fnone 2>&1 | grep "no stripe info" ||
1409                 error "$DIR/d27/fnone has object"
1410 }
1411 run_test 27g "$LFS getstripe with no objects"
1412
1413 test_27i() {
1414         test_mkdir $DIR/$tdir
1415         touch $DIR/$tdir/$tfile || error "touch failed"
1416         [[ $($LFS getstripe -c $DIR/$tdir/$tfile) -gt 0 ]] ||
1417                 error "missing objects"
1418 }
1419 run_test 27i "$LFS getstripe with some objects"
1420
1421 test_27j() {
1422         test_mkdir -p $DIR/d27
1423         $LFS setstripe -i $OSTCOUNT $DIR/d27/f27j &&
1424                 error "setstripe failed" || true
1425 }
1426 run_test 27j "setstripe with bad stripe offset (should return error)"
1427
1428 test_27k() { # bug 2844
1429         test_mkdir -p $DIR/d27
1430         FILE=$DIR/d27/f27k
1431         LL_MAX_BLKSIZE=$((4 * 1024 * 1024))
1432         [ ! -d $DIR/d27 ] && test_mkdir -p $DIR d27
1433         $LFS setstripe -S 67108864 $FILE || error "setstripe failed"
1434         BLKSIZE=$(stat $FILE | awk '/IO Block:/ { print $7 }')
1435         [ $BLKSIZE -le $LL_MAX_BLKSIZE ] || error "1:$BLKSIZE > $LL_MAX_BLKSIZE"
1436         dd if=/dev/zero of=$FILE bs=4k count=1
1437         BLKSIZE=$(stat $FILE | awk '/IO Block:/ { print $7 }')
1438         [ $BLKSIZE -le $LL_MAX_BLKSIZE ] || error "2:$BLKSIZE > $LL_MAX_BLKSIZE"
1439 }
1440 run_test 27k "limit i_blksize for broken user apps"
1441
1442 test_27l() {
1443         test_mkdir -p $DIR/d27
1444         mcreate $DIR/f27l || error "creating file"
1445         $RUNAS $SETSTRIPE -c 1 $DIR/f27l &&
1446                 error "setstripe should have failed" || true
1447 }
1448 run_test 27l "check setstripe permissions (should return error)"
1449
1450 test_27m() {
1451         [[ $OSTCOUNT -lt 2 ]] && skip_env "$OSTCOUNT < 2 OSTs -- skipping" &&
1452                 return
1453
1454         ORIGFREE=$($LCTL get_param -n lov.$FSNAME-clilov-*.kbytesavail |
1455                    head -n1)
1456         if [[ $ORIGFREE -gt $MAXFREE ]]; then
1457                 skip "$ORIGFREE > $MAXFREE skipping out-of-space test on OST0"
1458                 return
1459         fi
1460         trap simple_cleanup_common EXIT
1461         test_mkdir -p $DIR/$tdir
1462         $LFS setstripe -i 0 -c 1 $DIR/$tdir/f27m_1
1463         dd if=/dev/zero of=$DIR/$tdir/f27m_1 bs=1024 count=$MAXFREE &&
1464                 error "dd should fill OST0"
1465         i=2
1466         while $LFS setstripe -i 0 -c 1 $DIR/$tdir/f27m_$i; do
1467                 i=$((i + 1))
1468                 [ $i -gt 256 ] && break
1469         done
1470         i=$((i + 1))
1471         touch $DIR/$tdir/f27m_$i
1472         [ $($LFS getstripe $DIR/$tdir/f27m_$i | grep -A 10 obdidx |
1473             awk '{print $1}' | grep -w "0") ] &&
1474                 error "OST0 was full but new created file still use it"
1475         i=$((i + 1))
1476         touch $DIR/$tdir/f27m_$i
1477         [ $($LFS getstripe $DIR/$tdir/f27m_$i | grep -A 10 obdidx |
1478             awk '{print $1}'| grep -w "0") ] &&
1479                 error "OST0 was full but new created file still use it"
1480         simple_cleanup_common
1481 }
1482 run_test 27m "create file while OST0 was full"
1483
1484 sleep_maxage() {
1485         local DELAY=$(do_facet $SINGLEMDS lctl get_param -n lov.*.qos_maxage |
1486                       head -n 1 | awk '{print $1 * 2}')
1487         sleep $DELAY
1488 }
1489
1490 # OSCs keep a NOSPC flag that will be reset after ~5s (qos_maxage)
1491 # if the OST isn't full anymore.
1492 reset_enospc() {
1493         local OSTIDX=${1:-""}
1494
1495         local list=$(comma_list $(osts_nodes))
1496         [ "$OSTIDX" ] && list=$(facet_host ost$((OSTIDX + 1)))
1497
1498         do_nodes $list lctl set_param fail_loc=0
1499         sync    # initiate all OST_DESTROYs from MDS to OST
1500         sleep_maxage
1501 }
1502
1503 exhaust_precreations() {
1504         local OSTIDX=$1
1505         local FAILLOC=$2
1506         local FAILIDX=${3:-$OSTIDX}
1507         local ofacet=ost$((OSTIDX + 1))
1508
1509         test_mkdir -p -c1 $DIR/$tdir
1510         local mdtidx=$($LFS getstripe -M $DIR/$tdir)
1511         local mfacet=mds$((mdtidx + 1))
1512         echo OSTIDX=$OSTIDX MDTIDX=$mdtidx
1513
1514         local OST=$(ostname_from_index $OSTIDX)
1515
1516         # on the mdt's osc
1517         local mdtosc_proc1=$(get_mdtosc_proc_path $mfacet $OST)
1518         local last_id=$(do_facet $mfacet lctl get_param -n \
1519                         osc.$mdtosc_proc1.prealloc_last_id)
1520         local next_id=$(do_facet $mfacet lctl get_param -n \
1521                         osc.$mdtosc_proc1.prealloc_next_id)
1522
1523         local mdtosc_proc2=$(get_mdtosc_proc_path $mfacet)
1524         do_facet $mfacet lctl get_param osc.$mdtosc_proc2.prealloc*
1525
1526         test_mkdir -p $DIR/$tdir/${OST}
1527         $SETSTRIPE -i $OSTIDX -c 1 $DIR/$tdir/${OST}
1528 #define OBD_FAIL_OST_ENOSPC              0x215
1529         do_facet $ofacet lctl set_param fail_val=$FAILIDX fail_loc=0x215
1530         echo "Creating to objid $last_id on ost $OST..."
1531         createmany -o $DIR/$tdir/${OST}/f $next_id $((last_id - next_id + 2))
1532         do_facet $mfacet lctl get_param osc.$mdtosc_proc2.prealloc*
1533         do_facet $ofacet lctl set_param fail_loc=$FAILLOC
1534         sleep_maxage
1535 }
1536
1537 exhaust_all_precreations() {
1538         local i
1539         for (( i=0; i < OSTCOUNT; i++ )) ; do
1540                 exhaust_precreations $i $1 -1
1541         done
1542 }
1543
1544 test_27n() {
1545         [[ $OSTCOUNT -lt 2 ]] && skip_env "too few OSTs" && return
1546         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1547         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1548         remote_ost_nodsh && skip "remote OST with nodsh" && return
1549
1550         reset_enospc
1551         rm -f $DIR/$tdir/$tfile
1552         exhaust_precreations 0 0x80000215
1553         $LFS setstripe -c -1 $DIR/$tdir
1554         touch $DIR/$tdir/$tfile || error
1555         $LFS getstripe $DIR/$tdir/$tfile
1556         reset_enospc
1557 }
1558 run_test 27n "create file with some full OSTs"
1559
1560 test_27o() {
1561         [[ $OSTCOUNT -lt 2 ]] && skip_env "too few OSTs" && return
1562         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1563         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1564         remote_ost_nodsh && skip "remote OST with nodsh" && return
1565
1566         reset_enospc
1567         rm -f $DIR/$tdir/$tfile
1568         exhaust_all_precreations 0x215
1569
1570         touch $DIR/$tdir/$tfile && error "able to create $DIR/$tdir/$tfile"
1571
1572         reset_enospc
1573         rm -rf $DIR/$tdir/*
1574 }
1575 run_test 27o "create file with all full OSTs (should error)"
1576
1577 test_27p() {
1578         [[ $OSTCOUNT -lt 2 ]] && skip_env "too few OSTs" && return
1579         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1580         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1581         remote_ost_nodsh && skip "remote OST with nodsh" && return
1582
1583         reset_enospc
1584         rm -f $DIR/$tdir/$tfile
1585         test_mkdir -p $DIR/$tdir
1586
1587         $MCREATE $DIR/$tdir/$tfile || error "mcreate failed"
1588         $TRUNCATE $DIR/$tdir/$tfile 80000000 || error "truncate failed"
1589         $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat failed"
1590
1591         exhaust_precreations 0 0x80000215
1592         echo foo >> $DIR/$tdir/$tfile || error "append failed"
1593         $CHECKSTAT -s 80000004 $DIR/$tdir/$tfile || error "checkstat failed"
1594         $LFS getstripe $DIR/$tdir/$tfile
1595
1596         reset_enospc
1597 }
1598 run_test 27p "append to a truncated file with some full OSTs"
1599
1600 test_27q() {
1601         [[ $OSTCOUNT -lt 2 ]] && skip_env "too few OSTs" && return
1602         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1603         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1604         remote_ost_nodsh && skip "remote OST with nodsh" && return
1605
1606         reset_enospc
1607         rm -f $DIR/$tdir/$tfile
1608
1609         test_mkdir -p $DIR/$tdir
1610         $MCREATE $DIR/$tdir/$tfile || error "mcreate $DIR/$tdir/$tfile failed"
1611         $TRUNCATE $DIR/$tdir/$tfile 80000000 ||
1612                 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         $LFS 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         $LFS 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         $LFS 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 $DIR/$tdir
1694         $LFS 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 $DIR/$tdir || error "mkdir failed"
1717         $LFS setstripe -S 65536 $DIR/$tdir/f0 || error "setstripe failed"
1718         [ $($LFS getstripe -S $DIR/$tdir/f0) -ne 65536 ] &&
1719                 error "stripe size $size != 65536" || true
1720         [ $($LFS getstripe -d $DIR/$tdir | grep -c "stripe_count") -ne 1 ] &&
1721                 error "$LFS getstripe -d $DIR/$tdir failed" || true
1722 }
1723 run_test 27w "check $LFS 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 $DIR/$tdir || error "mkdir failed"
1730         for i in $(seq 1 $OSTCOUNT); do
1731                 offset=$((i - 1))
1732                 $LFS setstripe -c $i -i $offset $DIR/$tdir/f$i ||
1733                         error "setstripe -c $i -i $offset failed"
1734                 count=$($LFS getstripe -c $DIR/$tdir/f$i)
1735                 index=$($LFS 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 $LFS 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         $LFS 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                 [ $($LFS getstripe $DIR/$tdir/$tfile$i | grep -A 10 obdidx |
1758                     awk '{print $1}' | grep -w "$OSTIDX") ] &&
1759                 error "OST0 was degraded but new created file still use it"
1760         done
1761         do_facet ost$((OSTIDX + 1)) lctl set_param -n obdfilter.$OST.degraded 0
1762 }
1763 run_test 27x "create files while OST0 is degraded"
1764
1765 test_27y() {
1766         [[ $OSTCOUNT -lt 2 ]] &&
1767                 skip_env "$OSTCOUNT < 2 OSTs -- skipping" && return
1768         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1769         remote_ost_nodsh && skip "remote OST with nodsh" && return
1770         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1771
1772         local mdtosc=$(get_mdtosc_proc_path $SINGLEMDS $FSNAME-OST0000)
1773         local last_id=$(do_facet $SINGLEMDS lctl get_param -n \
1774                 osc.$mdtosc.prealloc_last_id)
1775         local next_id=$(do_facet $SINGLEMDS lctl get_param -n \
1776                 osc.$mdtosc.prealloc_next_id)
1777         local fcount=$((last_id - next_id))
1778         [[ $fcount -eq 0 ]] && skip "not enough space on OST0" && return
1779         [[ $fcount -gt $OSTCOUNT ]] && fcount=$OSTCOUNT
1780
1781         local MDS_OSCS=$(do_facet $SINGLEMDS lctl dl |
1782                          awk '/[oO][sS][cC].*md[ts]/ { print $4 }')
1783         local OST_DEACTIVE_IDX=-1
1784         local OSC
1785         local OSTIDX
1786         local OST
1787
1788         for OSC in $MDS_OSCS; do
1789                 OST=$(osc_to_ost $OSC)
1790                 OSTIDX=$(index_from_ostuuid $OST)
1791                 if [ $OST_DEACTIVE_IDX == -1 ]; then
1792                         OST_DEACTIVE_IDX=$OSTIDX
1793                 fi
1794                 if [ $OSTIDX != $OST_DEACTIVE_IDX ]; then
1795                         echo $OSC "is Deactivated:"
1796                         do_facet $SINGLEMDS lctl --device  %$OSC deactivate
1797                 fi
1798         done
1799
1800         OSTIDX=$(index_from_ostuuid $OST)
1801         test_mkdir -p $DIR/$tdir
1802         $LFS setstripe -c 1 $DIR/$tdir      # 1 stripe / file
1803
1804         for OSC in $MDS_OSCS; do
1805                 OST=$(osc_to_ost $OSC)
1806                 OSTIDX=$(index_from_ostuuid $OST)
1807                 if [ $OSTIDX == $OST_DEACTIVE_IDX ]; then
1808                         echo $OST "is degraded:"
1809                         do_facet ost$((OSTIDX+1)) lctl set_param -n \
1810                                                 obdfilter.$OST.degraded=1
1811                 fi
1812         done
1813
1814         sleep_maxage
1815         createmany -o $DIR/$tdir/$tfile $fcount
1816
1817         for OSC in $MDS_OSCS; do
1818                 OST=$(osc_to_ost $OSC)
1819                 OSTIDX=$(index_from_ostuuid $OST)
1820                 if [ $OSTIDX == $OST_DEACTIVE_IDX ]; then
1821                         echo $OST "is recovered from degraded:"
1822                         do_facet ost$((OSTIDX+1)) lctl set_param -n \
1823                                                 obdfilter.$OST.degraded=0
1824                 else
1825                         do_facet $SINGLEMDS lctl --device %$OSC activate
1826                 fi
1827         done
1828
1829         # all osp devices get activated, hence -1 stripe count restored
1830         local stripecnt=0
1831
1832         # sleep 2*lod_qos_maxage seconds waiting for lod qos to notice osp
1833         # devices get activated.
1834         sleep_maxage
1835         $LFS setstripe -c -1 $DIR/$tfile
1836         stripecnt=$($LFS getstripe -c $DIR/$tfile)
1837         rm -f $DIR/$tfile
1838         [ $stripecnt -ne $OSTCOUNT ] &&
1839                 error "Of $OSTCOUNT OSTs, only $stripecnt is available"
1840         return 0
1841 }
1842 run_test 27y "create files while OST0 is degraded and the rest inactive"
1843
1844 check_seq_oid()
1845 {
1846         log "check file $1"
1847
1848         lmm_count=$($GETSTRIPE -c $1)
1849         lmm_seq=$($GETSTRIPE -v $1 | awk '/lmm_seq/ { print $2 }')
1850         lmm_oid=$($GETSTRIPE -v $1 | awk '/lmm_object_id/ { print $2 }')
1851
1852         local old_ifs="$IFS"
1853         IFS=$'[:]'
1854         fid=($($LFS path2fid $1))
1855         IFS="$old_ifs"
1856
1857         log "FID seq ${fid[1]}, oid ${fid[2]} ver ${fid[3]}"
1858         log "LOV seq $lmm_seq, oid $lmm_oid, count: $lmm_count"
1859
1860         # compare lmm_seq and lu_fid->f_seq
1861         [ $lmm_seq = ${fid[1]} ] || { error "SEQ mismatch"; return 1; }
1862         # compare lmm_object_id and lu_fid->oid
1863         [ $lmm_oid = ${fid[2]} ] || { error "OID mismatch"; return 2; }
1864
1865         # check the trusted.fid attribute of the OST objects of the file
1866         local have_obdidx=false
1867         local stripe_nr=0
1868         $GETSTRIPE $1 | while read obdidx oid hex seq; do
1869                 # skip lines up to and including "obdidx"
1870                 [ -z "$obdidx" ] && break
1871                 [ "$obdidx" = "obdidx" ] && have_obdidx=true && continue
1872                 $have_obdidx || continue
1873
1874                 local ost=$((obdidx + 1))
1875                 local dev=$(ostdevname $ost)
1876                 local oid_hex
1877
1878                 log "want: stripe:$stripe_nr ost:$obdidx oid:$oid/$hex seq:$seq"
1879
1880                 seq=$(echo $seq | sed -e "s/^0x//g")
1881                 if [ $seq == 0 ] || [ $(facet_fstype ost$ost) == zfs ]; then
1882                         oid_hex=$(echo $oid)
1883                 else
1884                         oid_hex=$(echo $hex | sed -e "s/^0x//g")
1885                 fi
1886                 local obj_file="O/$seq/d$((oid %32))/$oid_hex"
1887
1888                 local ff=""
1889                 #
1890                 # Don't unmount/remount the OSTs if we don't need to do that.
1891                 # LU-2577 changes filter_fid to be smaller, so debugfs needs
1892                 # update too, until that use mount/ll_decode_filter_fid/mount.
1893                 # Re-enable when debugfs will understand new filter_fid.
1894                 #
1895                 if [ $(facet_fstype ost$ost) == ldiskfs ]; then
1896                         ff=$(do_facet ost$ost "$DEBUGFS -c -R 'stat $obj_file' \
1897                                 $dev 2>/dev/null" | grep "parent=")
1898                 fi
1899                 if [ -z "$ff" ]; then
1900                         stop ost$ost
1901                         mount_fstype ost$ost
1902                         ff=$(do_facet ost$ost $LL_DECODE_FILTER_FID \
1903                                 $(facet_mntpt ost$ost)/$obj_file)
1904                         unmount_fstype ost$ost
1905                         start ost$ost $dev $OST_MOUNT_OPTS
1906                         clients_up
1907                 fi
1908
1909                 [ -z "$ff" ] && error "$obj_file: no filter_fid info"
1910
1911                 echo "$ff" | sed -e 's#.*objid=#got: objid=#'
1912
1913                 # /mnt/O/0/d23/23: objid=23 seq=0 parent=[0x200000400:0x1e:0x1]
1914                 # fid: objid=23 seq=0 parent=[0x200000400:0x1e:0x0] stripe=1
1915                 #
1916                 # fid: parent=[0x200000400:0x1e:0x0] stripe=1 stripe_count=2 \
1917                 #       stripe_size=1048576 component_id=1 component_start=0 \
1918                 #       component_end=33554432
1919                 local ff_parent=$(sed -e 's/.*parent=.//' <<<$ff)
1920                 local ff_pseq=$(cut -d: -f1 <<<$ff_parent)
1921                 local ff_poid=$(cut -d: -f2 <<<$ff_parent)
1922                 local ff_pstripe
1923                 if grep -q 'stripe=' <<<$ff; then
1924                         ff_pstripe=$(sed -e 's/.*stripe=//' -e 's/ .*//' <<<$ff)
1925                 else
1926                         # $LL_DECODE_FILTER_FID does not print "stripe="; look
1927                         # into f_ver in this case.  See comment on ff_parent.
1928                         ff_pstripe=$(cut -d: -f3 <<<$ff_parent | sed -e 's/]//')
1929                 fi
1930
1931                 if grep -q 'stripe_count=' <<<$ff; then
1932                         local ff_scnt=$(sed -e 's/.*stripe_count=//' \
1933                                             -e 's/ .*//' <<<$ff)
1934                         [ $lmm_count = $ff_scnt ] ||
1935                                 error "FF stripe count $lmm_count != $ff_scnt"
1936                 fi
1937                 # compare lmm_seq and filter_fid->ff_parent.f_seq
1938                 [ $ff_pseq = $lmm_seq ] ||
1939                         error "FF parent SEQ $ff_pseq != $lmm_seq"
1940                 # compare lmm_object_id and filter_fid->ff_parent.f_oid
1941                 [ $ff_poid = $lmm_oid ] ||
1942                         error "FF parent OID $ff_poid != $lmm_oid"
1943                 (($ff_pstripe == $stripe_nr)) ||
1944                         error "FF stripe $ff_pstripe != $stripe_nr"
1945
1946                 stripe_nr=$((stripe_nr + 1))
1947         done
1948 }
1949
1950 test_27z() {
1951         remote_ost_nodsh && skip "remote OST with nodsh" && return
1952         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1953         test_mkdir -p $DIR/$tdir
1954
1955         $SETSTRIPE -c 1 -i 0 -S 64k $DIR/$tdir/$tfile-1 ||
1956                 { error "setstripe -c -1 failed"; return 1; }
1957         # We need to send a write to every object to get parent FID info set.
1958         # This _should_ also work for setattr, but does not currently.
1959         # touch $DIR/$tdir/$tfile-1 ||
1960         dd if=/dev/zero of=$DIR/$tdir/$tfile-1 bs=1M count=1 ||
1961                 { error "dd $tfile-1 failed"; return 2; }
1962         $SETSTRIPE -c -1 -i $((OSTCOUNT - 1)) -S 1M $DIR/$tdir/$tfile-2 ||
1963                 { error "setstripe -c -1 failed"; return 3; }
1964         dd if=/dev/zero of=$DIR/$tdir/$tfile-2 bs=1M count=$OSTCOUNT ||
1965                 { error "dd $tfile-2 failed"; return 4; }
1966
1967         # make sure write RPCs have been sent to OSTs
1968         sync; sleep 5; sync
1969
1970         check_seq_oid $DIR/$tdir/$tfile-1 || return 5
1971         check_seq_oid $DIR/$tdir/$tfile-2 || return 6
1972 }
1973 run_test 27z "check SEQ/OID on the MDT and OST filesystems"
1974
1975 test_27A() { # b=19102
1976         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1977         local restore_size=$($GETSTRIPE -S $MOUNT)
1978         local restore_count=$($GETSTRIPE -c $MOUNT)
1979         local restore_offset=$($GETSTRIPE -i $MOUNT)
1980         $SETSTRIPE -c 0 -i -1 -S 0 $MOUNT
1981         wait_update $HOSTNAME "$GETSTRIPE -c $MOUNT | sed 's/  *//g'" "1" 20 ||
1982                 error "stripe count $($GETSTRIPE -c $MOUNT) != 1"
1983         local default_size=$($GETSTRIPE -S $MOUNT)
1984         local default_offset=$($GETSTRIPE -i $MOUNT)
1985         local dsize=$((1024 * 1024))
1986         [ $default_size -eq $dsize ] ||
1987                 error "stripe size $default_size != $dsize"
1988         [ $default_offset -eq -1 ] ||error "stripe offset $default_offset != -1"
1989         $SETSTRIPE -c $restore_count -i $restore_offset -S $restore_size $MOUNT
1990 }
1991 run_test 27A "check filesystem-wide default LOV EA values"
1992
1993 test_27B() { # LU-2523
1994         test_mkdir -p $DIR/$tdir
1995         rm -f $DIR/$tdir/f0 $DIR/$tdir/f1
1996         touch $DIR/$tdir/f0
1997         # open f1 with O_LOV_DELAY_CREATE
1998         # rename f0 onto f1
1999         # call setstripe ioctl on open file descriptor for f1
2000         # close
2001         multiop $DIR/$tdir/f1 oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:nB1c \
2002                 $DIR/$tdir/f0
2003
2004         rm -f $DIR/$tdir/f1
2005         # open f1 with O_LOV_DELAY_CREATE
2006         # unlink f1
2007         # call setstripe ioctl on open file descriptor for f1
2008         # close
2009         multiop $DIR/$tdir/f1 oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:uB1c
2010
2011         # Allow multiop to fail in imitation of NFS's busted semantics.
2012         true
2013 }
2014 run_test 27B "call setstripe on open unlinked file/rename victim"
2015
2016 test_27C() { #LU-2871
2017         [[ $OSTCOUNT -lt 2 ]] && skip "needs >= 2 OSTs" && return
2018
2019         declare -a ost_idx
2020         local index
2021         local found
2022         local i
2023         local j
2024
2025         test_mkdir -p $DIR/$tdir
2026         cd $DIR/$tdir
2027         for i in $(seq 0 $((OSTCOUNT - 1))); do
2028                 # set stripe across all OSTs starting from OST$i
2029                 $SETSTRIPE -i $i -c -1 $tfile$i
2030                 # get striping information
2031                 ost_idx=($($GETSTRIPE $tfile$i |
2032                          tail -n $((OSTCOUNT + 1)) | awk '{print $1}'))
2033                 echo ${ost_idx[@]}
2034
2035                 # check the layout
2036                 [ ${#ost_idx[@]} -eq $OSTCOUNT ] ||
2037                         error "${#ost_idx[@]} != $OSTCOUNT"
2038
2039                 for index in $(seq 0 $((OSTCOUNT - 1))); do
2040                         found=0
2041                         for j in $(echo ${ost_idx[@]}); do
2042                                 if [ $index -eq $j ]; then
2043                                         found=1
2044                                         break
2045                                 fi
2046                         done
2047                         [ $found = 1 ] ||
2048                                 error "Can not find $index in ${ost_idx[@]}"
2049                 done
2050         done
2051 }
2052 run_test 27C "check full striping across all OSTs"
2053
2054 test_27D() {
2055         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
2056         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
2057         remote_mds_nodsh && skip "remote MDS with nodsh" && return
2058         local POOL=${POOL:-testpool}
2059         local first_ost=0
2060         local last_ost=$(($OSTCOUNT - 1))
2061         local ost_step=1
2062         local ost_list=$(seq $first_ost $ost_step $last_ost)
2063         local ost_range="$first_ost $last_ost $ost_step"
2064
2065         test_mkdir -p $DIR/$tdir
2066         pool_add $POOL || error "pool_add failed"
2067         pool_add_targets $POOL $ost_range || error "pool_add_targets failed"
2068
2069         local skip27D
2070         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.55) ] &&
2071                 skip27D += "-s 29"
2072         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.9.55) ] &&
2073                 skip27D += "-s 30,31"
2074         llapi_layout_test -d$DIR/$tdir -p$POOL -o$OSTCOUNT $skip27D ||
2075                 error "llapi_layout_test failed"
2076
2077         destroy_test_pools || error "destroy test pools failed"
2078 }
2079 run_test 27D "validate llapi_layout API"
2080
2081 # Verify that default_easize is increased from its initial value after
2082 # accessing a widely striped file.
2083 test_27E() {
2084         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
2085         [ $(lustre_version_code client) -lt $(version_code 2.5.57) ] &&
2086                 skip "client does not have LU-3338 fix" && return
2087
2088         # 72 bytes is the minimum space required to store striping
2089         # information for a file striped across one OST:
2090         # (sizeof(struct lov_user_md_v3) +
2091         #  sizeof(struct lov_user_ost_data_v1))
2092         local min_easize=72
2093         $LCTL set_param -n llite.*.default_easize $min_easize ||
2094                 error "lctl set_param failed"
2095         local easize=$($LCTL get_param -n llite.*.default_easize)
2096
2097         [ $easize -eq $min_easize ] ||
2098                 error "failed to set default_easize"
2099
2100         $LFS setstripe -c $OSTCOUNT $DIR/$tfile ||
2101                 error "setstripe failed"
2102         cat $DIR/$tfile
2103         rm $DIR/$tfile
2104
2105         easize=$($LCTL get_param -n llite.*.default_easize)
2106
2107         [ $easize -gt $min_easize ] ||
2108                 error "default_easize not updated"
2109 }
2110 run_test 27E "check that default extended attribute size properly increases"
2111
2112 test_27F() { # LU-5346/LU-7975
2113         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2114         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.51) ]] &&
2115                 skip "Need MDS version at least 2.8.51" && return
2116         remote_ost_nodsh && skip "remote OST with nodsh" && return
2117
2118         test_mkdir -p $DIR/$tdir
2119         rm -f $DIR/$tdir/f0
2120         $SETSTRIPE -c 2 $DIR/$tdir
2121
2122         # stop all OSTs to reproduce situation for LU-7975 ticket
2123         for num in $(seq $OSTCOUNT); do
2124                 stop ost$num
2125         done
2126
2127         # open/create f0 with O_LOV_DELAY_CREATE
2128         # truncate f0 to a non-0 size
2129         # close
2130         multiop $DIR/$tdir/f0 oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:T1050000c
2131
2132         $CHECKSTAT -s 1050000 $DIR/$tdir/f0 || error "checkstat failed"
2133         # open/write it again to force delayed layout creation
2134         cat /etc/hosts > $DIR/$tdir/f0 &
2135         catpid=$!
2136
2137         # restart OSTs
2138         for num in $(seq $OSTCOUNT); do
2139                 start ost$num $(ostdevname $num) $OST_MOUNT_OPTS ||
2140                         error "ost$num failed to start"
2141         done
2142
2143         wait $catpid || error "cat failed"
2144
2145         cmp /etc/hosts $DIR/$tdir/f0 || error "cmp failed"
2146         [[ $($GETSTRIPE -c $DIR/$tdir/f0) == 2 ]] || error "wrong stripecount"
2147
2148 }
2149 run_test 27F "Client resend delayed layout creation with non-zero size"
2150
2151 # createtest also checks that device nodes are created and
2152 # then visible correctly (#2091)
2153 test_28() { # bug 2091
2154         test_mkdir $DIR/d28
2155         $CREATETEST $DIR/d28/ct || error
2156 }
2157 run_test 28 "create/mknod/mkdir with bad file types ============"
2158
2159 test_29() {
2160         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return 0
2161         sync; sleep 1; sync # flush out any dirty pages from previous tests
2162         cancel_lru_locks
2163         test_mkdir $DIR/d29
2164         touch $DIR/d29/foo
2165         log 'first d29'
2166         ls -l $DIR/d29
2167
2168         declare -i LOCKCOUNTORIG=0
2169         for lock_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_count); do
2170                 let LOCKCOUNTORIG=$LOCKCOUNTORIG+$lock_count
2171         done
2172         [ $LOCKCOUNTORIG -eq 0 ] && error "No mdc lock count" && return 1
2173
2174         declare -i LOCKUNUSEDCOUNTORIG=0
2175         for unused_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_unused_count); do
2176                 let LOCKUNUSEDCOUNTORIG=$LOCKUNUSEDCOUNTORIG+$unused_count
2177         done
2178
2179         log 'second d29'
2180         ls -l $DIR/d29
2181         log 'done'
2182
2183         declare -i LOCKCOUNTCURRENT=0
2184         for lock_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_count); do
2185                 let LOCKCOUNTCURRENT=$LOCKCOUNTCURRENT+$lock_count
2186         done
2187
2188         declare -i LOCKUNUSEDCOUNTCURRENT=0
2189         for unused_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_unused_count); do
2190                 let LOCKUNUSEDCOUNTCURRENT=$LOCKUNUSEDCOUNTCURRENT+$unused_count
2191         done
2192
2193         if [[ $LOCKCOUNTCURRENT -gt $LOCKCOUNTORIG ]]; then
2194                 $LCTL set_param -n ldlm.dump_namespaces ""
2195                 error "CURRENT: $LOCKCOUNTCURRENT > $LOCKCOUNTORIG"
2196                 $LCTL dk | sort -k4 -t: > $TMP/test_29.dk
2197                 log "dumped log to $TMP/test_29.dk (bug 5793)"
2198                 return 2
2199         fi
2200         if [[ $LOCKUNUSEDCOUNTCURRENT -gt $LOCKUNUSEDCOUNTORIG ]]; then
2201                 error "UNUSED: $LOCKUNUSEDCOUNTCURRENT > $LOCKUNUSEDCOUNTORIG"
2202                 $LCTL dk | sort -k4 -t: > $TMP/test_29.dk
2203                 log "dumped log to $TMP/test_29.dk (bug 5793)"
2204                 return 3
2205         fi
2206 }
2207 run_test 29 "IT_GETATTR regression  ============================"
2208
2209 test_30a() { # was test_30
2210         cp $(which ls) $DIR || cp /bin/ls $DIR
2211         $DIR/ls / || error
2212         rm $DIR/ls
2213 }
2214 run_test 30a "execute binary from Lustre (execve) =============="
2215
2216 test_30b() {
2217         cp `which ls` $DIR || cp /bin/ls $DIR
2218         chmod go+rx $DIR/ls
2219         $RUNAS $DIR/ls / || error
2220         rm $DIR/ls
2221 }
2222 run_test 30b "execute binary from Lustre as non-root ==========="
2223
2224 test_30c() { # b=22376
2225         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2226         cp `which ls` $DIR || cp /bin/ls $DIR
2227         chmod a-rw $DIR/ls
2228         cancel_lru_locks mdc
2229         cancel_lru_locks osc
2230         $RUNAS $DIR/ls / || error
2231         rm -f $DIR/ls
2232 }
2233 run_test 30c "execute binary from Lustre without read perms ===="
2234
2235 test_31a() {
2236         $OPENUNLINK $DIR/f31 $DIR/f31 || error
2237         $CHECKSTAT -a $DIR/f31 || error
2238 }
2239 run_test 31a "open-unlink file =================================="
2240
2241 test_31b() {
2242         touch $DIR/f31 || error
2243         ln $DIR/f31 $DIR/f31b || error
2244         $MULTIOP $DIR/f31b Ouc || error
2245         $CHECKSTAT -t file $DIR/f31 || error
2246 }
2247 run_test 31b "unlink file with multiple links while open ======="
2248
2249 test_31c() {
2250         touch $DIR/f31 || error
2251         ln $DIR/f31 $DIR/f31c || error
2252         multiop_bg_pause $DIR/f31 O_uc || return 1
2253         MULTIPID=$!
2254         $MULTIOP $DIR/f31c Ouc
2255         kill -USR1 $MULTIPID
2256         wait $MULTIPID
2257 }
2258 run_test 31c "open-unlink file with multiple links ============="
2259
2260 test_31d() {
2261         opendirunlink $DIR/d31d $DIR/d31d || error
2262         $CHECKSTAT -a $DIR/d31d || error
2263 }
2264 run_test 31d "remove of open directory ========================="
2265
2266 test_31e() { # bug 2904
2267         openfilleddirunlink $DIR/d31e || error
2268 }
2269 run_test 31e "remove of open non-empty directory ==============="
2270
2271 test_31f() { # bug 4554
2272         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2273         set -vx
2274         test_mkdir $DIR/d31f
2275         $SETSTRIPE -S 1048576 -c 1 $DIR/d31f
2276         cp /etc/hosts $DIR/d31f
2277         ls -l $DIR/d31f
2278         $GETSTRIPE $DIR/d31f/hosts
2279         multiop_bg_pause $DIR/d31f D_c || return 1
2280         MULTIPID=$!
2281
2282         rm -rv $DIR/d31f || error "first of $DIR/d31f"
2283         test_mkdir $DIR/d31f
2284         $SETSTRIPE -S 1048576 -c 1 $DIR/d31f
2285         cp /etc/hosts $DIR/d31f
2286         ls -l $DIR/d31f
2287         $GETSTRIPE $DIR/d31f/hosts
2288         multiop_bg_pause $DIR/d31f D_c || return 1
2289         MULTIPID2=$!
2290
2291         kill -USR1 $MULTIPID || error "first opendir $MULTIPID not running"
2292         wait $MULTIPID || error "first opendir $MULTIPID failed"
2293
2294         sleep 6
2295
2296         kill -USR1 $MULTIPID2 || error "second opendir $MULTIPID not running"
2297         wait $MULTIPID2 || error "second opendir $MULTIPID2 failed"
2298         set +vx
2299 }
2300 run_test 31f "remove of open directory with open-unlink file ==="
2301
2302 test_31g() {
2303         echo "-- cross directory link --"
2304         test_mkdir -c1 $DIR/${tdir}ga
2305         test_mkdir -c1 $DIR/${tdir}gb
2306         touch $DIR/${tdir}ga/f
2307         ln $DIR/${tdir}ga/f $DIR/${tdir}gb/g
2308         $CHECKSTAT -t file $DIR/${tdir}ga/f || error "source"
2309         [ `stat -c%h $DIR/${tdir}ga/f` == '2' ] || error "source nlink"
2310         $CHECKSTAT -t file $DIR/${tdir}gb/g || error "target"
2311         [ `stat -c%h $DIR/${tdir}gb/g` == '2' ] || error "target nlink"
2312 }
2313 run_test 31g "cross directory link==============="
2314
2315 test_31h() {
2316         echo "-- cross directory link --"
2317         test_mkdir -c1 $DIR/${tdir}
2318         test_mkdir -c1 $DIR/${tdir}/dir
2319         touch $DIR/${tdir}/f
2320         ln $DIR/${tdir}/f $DIR/${tdir}/dir/g
2321         $CHECKSTAT -t file $DIR/${tdir}/f || error "source"
2322         [ `stat -c%h $DIR/${tdir}/f` == '2' ] || error "source nlink"
2323         $CHECKSTAT -t file $DIR/${tdir}/dir/g || error "target"
2324         [ `stat -c%h $DIR/${tdir}/dir/g` == '2' ] || error "target nlink"
2325 }
2326 run_test 31h "cross directory link under child==============="
2327
2328 test_31i() {
2329         echo "-- cross directory link --"
2330         test_mkdir -c1 $DIR/$tdir
2331         test_mkdir -c1 $DIR/$tdir/dir
2332         touch $DIR/$tdir/dir/f
2333         ln $DIR/$tdir/dir/f $DIR/$tdir/g
2334         $CHECKSTAT -t file $DIR/$tdir/dir/f || error "source"
2335         [ `stat -c%h $DIR/$tdir/dir/f` == '2' ] || error "source nlink"
2336         $CHECKSTAT -t file $DIR/$tdir/g || error "target"
2337         [ `stat -c%h $DIR/$tdir/g` == '2' ] || error "target nlink"
2338 }
2339 run_test 31i "cross directory link under parent==============="
2340
2341 test_31j() {
2342         test_mkdir -c1 -p $DIR/$tdir
2343         test_mkdir -c1 -p $DIR/$tdir/dir1
2344         ln $DIR/$tdir/dir1 $DIR/$tdir/dir2 && error "ln for dir"
2345         link $DIR/$tdir/dir1 $DIR/$tdir/dir3 && error "link for dir"
2346         mlink $DIR/$tdir/dir1 $DIR/$tdir/dir4 && error "mlink for dir"
2347         mlink $DIR/$tdir/dir1 $DIR/$tdir/dir1 && error "mlink to the same dir"
2348         return 0
2349 }
2350 run_test 31j "link for directory==============="
2351
2352 test_31k() {
2353         test_mkdir -c1 -p $DIR/$tdir
2354         touch $DIR/$tdir/s
2355         touch $DIR/$tdir/exist
2356         mlink $DIR/$tdir/s $DIR/$tdir/t || error "mlink"
2357         mlink $DIR/$tdir/s $DIR/$tdir/exist && error "mlink to exist file"
2358         mlink $DIR/$tdir/s $DIR/$tdir/s && error "mlink to the same file"
2359         mlink $DIR/$tdir/s $DIR/$tdir && error "mlink to parent dir"
2360         mlink $DIR/$tdir $DIR/$tdir/s && error "mlink parent dir to target"
2361         mlink $DIR/$tdir/not-exist $DIR/$tdir/foo && error "mlink non-existing to new"
2362         mlink $DIR/$tdir/not-exist $DIR/$tdir/s && error "mlink non-existing to exist"
2363         return 0
2364 }
2365 run_test 31k "link to file: the same, non-existing, dir==============="
2366
2367 test_31m() {
2368         mkdir $DIR/d31m
2369         touch $DIR/d31m/s
2370         mkdir $DIR/d31m2
2371         touch $DIR/d31m2/exist
2372         mlink $DIR/d31m/s $DIR/d31m2/t || error "mlink"
2373         mlink $DIR/d31m/s $DIR/d31m2/exist && error "mlink to exist file"
2374         mlink $DIR/d31m/s $DIR/d31m2 && error "mlink to parent dir"
2375         mlink $DIR/d31m2 $DIR/d31m/s && error "mlink parent dir to target"
2376         mlink $DIR/d31m/not-exist $DIR/d31m2/foo && error "mlink non-existing to new"
2377         mlink $DIR/d31m/not-exist $DIR/d31m2/s && error "mlink non-existing to exist"
2378         return 0
2379 }
2380 run_test 31m "link to file: the same, non-existing, dir==============="
2381
2382 test_31n() {
2383         touch $DIR/$tfile || error "cannot create '$DIR/$tfile'"
2384         nlink=$(stat --format=%h $DIR/$tfile)
2385         [ ${nlink:--1} -eq 1 ] || error "nlink is $nlink, expected 1"
2386         local fd=$(free_fd)
2387         local cmd="exec $fd<$DIR/$tfile"
2388         eval $cmd
2389         cmd="exec $fd<&-"
2390         trap "eval $cmd" EXIT
2391         nlink=$(stat --dereference --format=%h /proc/self/fd/$fd)
2392         [ ${nlink:--1} -eq 1 ] || error "nlink is $nlink, expected 1"
2393         rm $DIR/$tfile || error "cannot remove '$DIR/$tfile'"
2394         nlink=$(stat --dereference --format=%h /proc/self/fd/$fd)
2395         [ ${nlink:--1} -eq 0 ] || error "nlink is $nlink, expected 0"
2396         eval $cmd
2397 }
2398 run_test 31n "check link count of unlinked file"
2399
2400 link_one() {
2401         local TEMPNAME=$(mktemp $1_XXXXXX)
2402         mlink $TEMPNAME $1 2> /dev/null &&
2403                 echo "$BASHPID: link $TEMPNAME to $1 succeeded"
2404         munlink $TEMPNAME
2405 }
2406
2407 test_31o() { # LU-2901
2408         test_mkdir -p $DIR/$tdir
2409         for LOOP in $(seq 100); do
2410                 rm -f $DIR/$tdir/$tfile*
2411                 for THREAD in $(seq 8); do
2412                         link_one $DIR/$tdir/$tfile.$LOOP &
2413                 done
2414                 wait
2415                 local LINKS=$(ls -1 $DIR/$tdir | grep -c $tfile.$LOOP)
2416                 [[ $LINKS -gt 1 ]] && ls $DIR/$tdir &&
2417                         error "$LINKS duplicate links to $tfile.$LOOP" &&
2418                         break || true
2419         done
2420 }
2421 run_test 31o "duplicate hard links with same filename"
2422
2423 test_31p() {
2424         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
2425
2426         test_mkdir $DIR/$tdir
2427         $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
2428         $LFS setdirstripe -D -c2 -t all_char $DIR/$tdir/striped_dir
2429
2430         opendirunlink $DIR/$tdir/striped_dir/test1 ||
2431                 error "open unlink test1 failed"
2432         opendirunlink $DIR/$tdir/striped_dir/test2 ||
2433                 error "open unlink test2 failed"
2434
2435         $CHECKSTAT -a $DIR/$tdir/striped_dir/test1 ||
2436                 error "test1 still exists"
2437         $CHECKSTAT -a $DIR/$tdir/striped_dir/test2 ||
2438                 error "test2 still exists"
2439 }
2440 run_test 31p "remove of open striped directory"
2441
2442 cleanup_test32_mount() {
2443         local rc=0
2444         trap 0
2445         local loopdev=$(losetup -a | grep $EXT2_DEV | sed -ne 's/:.*$//p')
2446         $UMOUNT $DIR/$tdir/ext2-mountpoint || rc=$?
2447         losetup -d $loopdev || true
2448         rm -rf $DIR/$tdir
2449         return $rc
2450 }
2451
2452 test_32a() {
2453         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2454         echo "== more mountpoints and symlinks ================="
2455         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2456         trap cleanup_test32_mount EXIT
2457         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2458         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2459         $CHECKSTAT -t dir $DIR/$tdir/ext2-mountpoint/.. || error
2460         cleanup_test32_mount
2461 }
2462 run_test 32a "stat d32a/ext2-mountpoint/.. ====================="
2463
2464 test_32b() {
2465         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2466         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2467         trap cleanup_test32_mount EXIT
2468         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2469         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2470         ls -al $DIR/$tdir/ext2-mountpoint/.. || error
2471         cleanup_test32_mount
2472 }
2473 run_test 32b "open d32b/ext2-mountpoint/.. ====================="
2474
2475 test_32c() {
2476         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2477         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2478         trap cleanup_test32_mount EXIT
2479         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2480         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2481         test_mkdir -p $DIR/$tdir/d2/test_dir
2482         $CHECKSTAT -t dir $DIR/$tdir/ext2-mountpoint/../d2/test_dir || error
2483         cleanup_test32_mount
2484 }
2485 run_test 32c "stat d32c/ext2-mountpoint/../d2/test_dir ========="
2486
2487 test_32d() {
2488         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2489         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2490         trap cleanup_test32_mount EXIT
2491         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2492         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2493         test_mkdir -p $DIR/$tdir/d2/test_dir
2494         ls -al $DIR/$tdir/ext2-mountpoint/../d2/test_dir || error
2495         cleanup_test32_mount
2496 }
2497 run_test 32d "open d32d/ext2-mountpoint/../d2/test_dir ========="
2498
2499 test_32e() {
2500         [ -e $DIR/d32e ] && rm -fr $DIR/d32e
2501         test_mkdir -p $DIR/d32e/tmp
2502         TMP_DIR=$DIR/d32e/tmp
2503         ln -s $DIR/d32e $TMP_DIR/symlink11
2504         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2505         $CHECKSTAT -t link $DIR/d32e/tmp/symlink11 || error
2506         $CHECKSTAT -t link $DIR/d32e/symlink01 || error
2507 }
2508 run_test 32e "stat d32e/symlink->tmp/symlink->lustre-subdir ===="
2509
2510 test_32f() {
2511         [ -e $DIR/d32f ] && rm -fr $DIR/d32f
2512         test_mkdir -p $DIR/d32f/tmp
2513         TMP_DIR=$DIR/d32f/tmp
2514         ln -s $DIR/d32f $TMP_DIR/symlink11
2515         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2516         ls $DIR/d32f/tmp/symlink11  || error
2517         ls $DIR/d32f/symlink01 || error
2518 }
2519 run_test 32f "open d32f/symlink->tmp/symlink->lustre-subdir ===="
2520
2521 test_32g() {
2522         TMP_DIR=$DIR/$tdir/tmp
2523         test_mkdir -p $DIR/$tdir/tmp
2524         test_mkdir $DIR/${tdir}2
2525         ln -s $DIR/${tdir}2 $TMP_DIR/symlink12
2526         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2527         $CHECKSTAT -t link $TMP_DIR/symlink12 || error
2528         $CHECKSTAT -t link $DIR/$tdir/symlink02 || error
2529         $CHECKSTAT -t dir -f $TMP_DIR/symlink12 || error
2530         $CHECKSTAT -t dir -f $DIR/$tdir/symlink02 || error
2531 }
2532 run_test 32g "stat d32g/symlink->tmp/symlink->lustre-subdir/${tdir}2"
2533
2534 test_32h() {
2535         rm -fr $DIR/$tdir $DIR/${tdir}2
2536         TMP_DIR=$DIR/$tdir/tmp
2537         test_mkdir -p $DIR/$tdir/tmp
2538         test_mkdir $DIR/${tdir}2
2539         ln -s $DIR/${tdir}2 $TMP_DIR/symlink12
2540         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2541         ls $TMP_DIR/symlink12 || error
2542         ls $DIR/$tdir/symlink02  || error
2543 }
2544 run_test 32h "open d32h/symlink->tmp/symlink->lustre-subdir/${tdir}2"
2545
2546 test_32i() {
2547         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2548         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2549         trap cleanup_test32_mount EXIT
2550         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2551         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2552         touch $DIR/$tdir/test_file
2553         $CHECKSTAT -t file $DIR/$tdir/ext2-mountpoint/../test_file || error
2554         cleanup_test32_mount
2555 }
2556 run_test 32i "stat d32i/ext2-mountpoint/../test_file ==========="
2557
2558 test_32j() {
2559         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2560         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2561         trap cleanup_test32_mount EXIT
2562         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2563         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2564         touch $DIR/$tdir/test_file
2565         cat $DIR/$tdir/ext2-mountpoint/../test_file || error
2566         cleanup_test32_mount
2567 }
2568 run_test 32j "open d32j/ext2-mountpoint/../test_file ==========="
2569
2570 test_32k() {
2571         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2572         rm -fr $DIR/$tdir
2573         trap cleanup_test32_mount EXIT
2574         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2575         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint
2576         test_mkdir -p $DIR/$tdir/d2
2577         touch $DIR/$tdir/d2/test_file || error
2578         $CHECKSTAT -t file $DIR/$tdir/ext2-mountpoint/../d2/test_file || error
2579         cleanup_test32_mount
2580 }
2581 run_test 32k "stat d32k/ext2-mountpoint/../d2/test_file ========"
2582
2583 test_32l() {
2584         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2585         rm -fr $DIR/$tdir
2586         trap cleanup_test32_mount EXIT
2587         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2588         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2589         test_mkdir -p $DIR/$tdir/d2
2590         touch $DIR/$tdir/d2/test_file
2591         cat  $DIR/$tdir/ext2-mountpoint/../d2/test_file || error
2592         cleanup_test32_mount
2593 }
2594 run_test 32l "open d32l/ext2-mountpoint/../d2/test_file ========"
2595
2596 test_32m() {
2597         rm -fr $DIR/d32m
2598         test_mkdir -p $DIR/d32m/tmp
2599         TMP_DIR=$DIR/d32m/tmp
2600         ln -s $DIR $TMP_DIR/symlink11
2601         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2602         $CHECKSTAT -t link $DIR/d32m/tmp/symlink11 || error
2603         $CHECKSTAT -t link $DIR/d32m/symlink01 || error
2604 }
2605 run_test 32m "stat d32m/symlink->tmp/symlink->lustre-root ======"
2606
2607 test_32n() {
2608         rm -fr $DIR/d32n
2609         test_mkdir -p $DIR/d32n/tmp
2610         TMP_DIR=$DIR/d32n/tmp
2611         ln -s $DIR $TMP_DIR/symlink11
2612         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2613         ls -l $DIR/d32n/tmp/symlink11  || error
2614         ls -l $DIR/d32n/symlink01 || error
2615 }
2616 run_test 32n "open d32n/symlink->tmp/symlink->lustre-root ======"
2617
2618 test_32o() {
2619         touch $DIR/$tfile
2620         test_mkdir -p $DIR/d32o/tmp
2621         TMP_DIR=$DIR/d32o/tmp
2622         ln -s $DIR/$tfile $TMP_DIR/symlink12
2623         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2624         $CHECKSTAT -t link $DIR/d32o/tmp/symlink12 || error
2625         $CHECKSTAT -t link $DIR/d32o/symlink02 || error
2626         $CHECKSTAT -t file -f $DIR/d32o/tmp/symlink12 || error
2627         $CHECKSTAT -t file -f $DIR/d32o/symlink02 || error
2628 }
2629 run_test 32o "stat d32o/symlink->tmp/symlink->lustre-root/$tfile"
2630
2631 test_32p() {
2632         log 32p_1
2633         rm -fr $DIR/d32p
2634         log 32p_2
2635         rm -f $DIR/$tfile
2636         log 32p_3
2637         touch $DIR/$tfile
2638         log 32p_4
2639         test_mkdir -p $DIR/d32p/tmp
2640         log 32p_5
2641         TMP_DIR=$DIR/d32p/tmp
2642         log 32p_6
2643         ln -s $DIR/$tfile $TMP_DIR/symlink12
2644         log 32p_7
2645         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2646         log 32p_8
2647         cat $DIR/d32p/tmp/symlink12 || error
2648         log 32p_9
2649         cat $DIR/d32p/symlink02 || error
2650         log 32p_10
2651 }
2652 run_test 32p "open d32p/symlink->tmp/symlink->lustre-root/$tfile"
2653
2654 test_32q() {
2655         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2656         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2657         trap cleanup_test32_mount EXIT
2658         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2659         touch $DIR/$tdir/ext2-mountpoint/under_the_mount
2660         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint
2661         ls $DIR/$tdir/ext2-mountpoint | grep "\<under_the_mount\>" && error
2662         cleanup_test32_mount
2663 }
2664 run_test 32q "stat follows mountpoints in Lustre (should return error)"
2665
2666 test_32r() {
2667         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2668         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2669         trap cleanup_test32_mount EXIT
2670         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2671         touch $DIR/$tdir/ext2-mountpoint/under_the_mount
2672         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint
2673         ls $DIR/$tdir/ext2-mountpoint | grep -q under_the_mount && error || true
2674         cleanup_test32_mount
2675 }
2676 run_test 32r "opendir follows mountpoints in Lustre (should return error)"
2677
2678 test_33aa() {
2679         rm -f $DIR/$tfile
2680         touch $DIR/$tfile
2681         chmod 444 $DIR/$tfile
2682         chown $RUNAS_ID $DIR/$tfile
2683         log 33_1
2684         $RUNAS $OPENFILE -f O_RDWR $DIR/$tfile && error || true
2685         log 33_2
2686 }
2687 run_test 33aa "write file with mode 444 (should return error) ===="
2688
2689 test_33a() {
2690         rm -fr $DIR/d33
2691         test_mkdir -p $DIR/d33
2692         chown $RUNAS_ID $DIR/d33
2693         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $DIR/d33/f33|| error "create"
2694         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $DIR/d33/f33 && \
2695                 error "open RDWR" || true
2696 }
2697 run_test 33a "test open file(mode=0444) with O_RDWR (should return error)"
2698
2699 test_33b() {
2700         rm -fr $DIR/d33
2701         test_mkdir -p $DIR/d33
2702         chown $RUNAS_ID $DIR/d33
2703         $RUNAS $OPENFILE -f 1286739555 $DIR/d33/f33 || true
2704 }
2705 run_test 33b "test open file with malformed flags (No panic)"
2706
2707 test_33c() {
2708         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2709         local ostnum
2710         local ostname
2711         local write_bytes
2712         local all_zeros
2713
2714         remote_ost_nodsh && skip "remote OST with nodsh" && return
2715         all_zeros=:
2716         rm -fr $DIR/d33
2717         test_mkdir -p $DIR/d33
2718         # Read: 0, Write: 4, create/destroy: 2/0, stat: 1, punch: 0
2719
2720         sync
2721         for ostnum in $(seq $OSTCOUNT); do
2722                 # test-framework's OST numbering is one-based, while Lustre's
2723                 # is zero-based
2724                 ostname=$(printf "$FSNAME-OST%.4x" $((ostnum - 1)))
2725                 # Parsing llobdstat's output sucks; we could grep the /proc
2726                 # path, but that's likely to not be as portable as using the
2727                 # llobdstat utility.  So we parse lctl output instead.
2728                 write_bytes=$(do_facet ost$ostnum lctl get_param -n \
2729                         obdfilter/$ostname/stats |
2730                         awk '/^write_bytes/ {print $7}' )
2731                 echo "baseline_write_bytes@$OSTnum/$ostname=$write_bytes"
2732                 if (( ${write_bytes:-0} > 0 ))
2733                 then
2734                         all_zeros=false
2735                         break;
2736                 fi
2737         done
2738
2739         $all_zeros || return 0
2740
2741         # Write four bytes
2742         echo foo > $DIR/d33/bar
2743         # Really write them
2744         sync
2745
2746         # Total up write_bytes after writing.  We'd better find non-zeros.
2747         for ostnum in $(seq $OSTCOUNT); do
2748                 ostname=$(printf "$FSNAME-OST%.4x" $((ostnum - 1)))
2749                 write_bytes=$(do_facet ost$ostnum lctl get_param -n \
2750                         obdfilter/$ostname/stats |
2751                         awk '/^write_bytes/ {print $7}' )
2752                 echo "write_bytes@$OSTnum/$ostname=$write_bytes"
2753                 if (( ${write_bytes:-0} > 0 ))
2754                 then
2755                         all_zeros=false
2756                         break;
2757                 fi
2758         done
2759
2760         if $all_zeros
2761         then
2762                 for ostnum in $(seq $OSTCOUNT); do
2763                         ostname=$(printf "$FSNAME-OST%.4x" $((ostnum - 1)))
2764                         echo "Check that write_bytes is present in obdfilter/*/stats:"
2765                         do_facet ost$ostnum lctl get_param -n \
2766                                 obdfilter/$ostname/stats
2767                 done
2768                 error "OST not keeping write_bytes stats (b22312)"
2769         fi
2770 }
2771 run_test 33c "test llobdstat and write_bytes"
2772
2773 test_33d() {
2774         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 2 MDTs" && return
2775         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2776         local MDTIDX=1
2777         local remote_dir=$DIR/$tdir/remote_dir
2778
2779         test_mkdir -p $DIR/$tdir
2780         $LFS mkdir -i $MDTIDX $remote_dir ||
2781                 error "create remote directory failed"
2782
2783         touch $remote_dir/$tfile
2784         chmod 444 $remote_dir/$tfile
2785         chown $RUNAS_ID $remote_dir/$tfile
2786
2787         $RUNAS $OPENFILE -f O_RDWR $DIR/$tfile && error || true
2788
2789         chown $RUNAS_ID $remote_dir
2790         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $remote_dir/f33 ||
2791                                         error "create" || true
2792         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $remote_dir/f33 &&
2793                                     error "open RDWR" || true
2794         $RUNAS $OPENFILE -f 1286739555 $remote_dir/f33 || true
2795 }
2796 run_test 33d "openfile with 444 modes and malformed flags under remote dir"
2797
2798 test_33e() {
2799         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
2800
2801         mkdir $DIR/$tdir
2802
2803         $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
2804         $LFS setdirstripe -i1 -c2 $DIR/$tdir/striped_dir1
2805         mkdir $DIR/$tdir/local_dir
2806
2807         local s0_mode=$(stat -c%f $DIR/$tdir/striped_dir)
2808         local s1_mode=$(stat -c%f $DIR/$tdir/striped_dir1)
2809         local l_mode=$(stat -c%f $DIR/$tdir/local_dir)
2810
2811         [ "$l_mode" = "$s0_mode" -a "$l_mode" = "$s1_mode" ] ||
2812                 error "mkdir $l_mode striped0 $s0_mode striped1 $s1_mode"
2813
2814         rmdir $DIR/$tdir/* || error "rmdir failed"
2815
2816         umask 777
2817         $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
2818         $LFS setdirstripe -i1 -c2 $DIR/$tdir/striped_dir1
2819         mkdir $DIR/$tdir/local_dir
2820
2821         s0_mode=$(stat -c%f $DIR/$tdir/striped_dir)
2822         s1_mode=$(stat -c%f $DIR/$tdir/striped_dir1)
2823         l_mode=$(stat -c%f $DIR/$tdir/local_dir)
2824
2825         [ "$l_mode" = "$s0_mode" -a "$l_mode" = "$s1_mode" ] ||
2826                 error "mkdir $l_mode striped0 $s0_mode striped1 $s1_mode 777"
2827
2828         rmdir $DIR/$tdir/* || error "rmdir(umask 777) failed"
2829
2830         umask 000
2831         $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
2832         $LFS setdirstripe -i1 -c2 $DIR/$tdir/striped_dir1
2833         mkdir $DIR/$tdir/local_dir
2834
2835         s0_mode=$(stat -c%f $DIR/$tdir/striped_dir)
2836         s1_mode=$(stat -c%f $DIR/$tdir/striped_dir1)
2837         l_mode=$(stat -c%f $DIR/$tdir/local_dir)
2838
2839         [ "$l_mode" = "$s0_mode" -a "$l_mode" = "$s1_mode" ] ||
2840                 error "mkdir $l_mode striped0 $s0_mode striped1 $s1_mode 0"
2841 }
2842 run_test 33e "mkdir and striped directory should have same mode"
2843
2844 cleanup_33f() {
2845         trap 0
2846         do_facet $SINGLEMDS $LCTL set_param mdt.*.enable_remote_dir_gid=0
2847 }
2848
2849 test_33f() {
2850         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
2851         remote_mds_nodsh && skip "remote MDS with nodsh" && return
2852
2853         mkdir $DIR/$tdir
2854         chmod go+rwx $DIR/$tdir
2855         do_facet $SINGLEMDS $LCTL set_param mdt.*.enable_remote_dir_gid=-1
2856         trap cleanup_33f EXIT
2857
2858         $RUNAS lfs mkdir -c$MDSCOUNT $DIR/$tdir/striped_dir ||
2859                 error "cannot create striped directory"
2860
2861         $RUNAS touch $DIR/$tdir/striped_dir/{0..16} ||
2862                 error "cannot create files in striped directory"
2863
2864         $RUNAS rm $DIR/$tdir/striped_dir/{0..16} ||
2865                 error "cannot remove files in striped directory"
2866
2867         $RUNAS rmdir $DIR/$tdir/striped_dir ||
2868                 error "cannot remove striped directory"
2869
2870         cleanup_33f
2871 }
2872 run_test 33f "nonroot user can create, access, and remove a striped directory"
2873
2874 test_33g() {
2875         mkdir -p $DIR/$tdir/dir2
2876
2877         local err=$($RUNAS mkdir $DIR/$tdir/dir2 2>&1)
2878         echo $err
2879         [[ $err =~ "exists" ]] || error "Not exists error"
2880 }
2881 run_test 33g "nonroot user create already existing root created file"
2882
2883 TEST_34_SIZE=${TEST_34_SIZE:-2000000000000}
2884 test_34a() {
2885         rm -f $DIR/f34
2886         $MCREATE $DIR/f34 || error
2887         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" || error
2888         $TRUNCATE $DIR/f34 $TEST_34_SIZE || error
2889         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" || error
2890         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2891 }
2892 run_test 34a "truncate file that has not been opened ==========="
2893
2894 test_34b() {
2895         [ ! -f $DIR/f34 ] && test_34a
2896         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2897         $OPENFILE -f O_RDONLY $DIR/f34
2898         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" || error
2899         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2900 }
2901 run_test 34b "O_RDONLY opening file doesn't create objects ====="
2902
2903 test_34c() {
2904         [ ! -f $DIR/f34 ] && test_34a
2905         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2906         $OPENFILE -f O_RDWR $DIR/f34
2907         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" && error
2908         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2909 }
2910 run_test 34c "O_RDWR opening file-with-size works =============="
2911
2912 test_34d() {
2913         [ ! -f $DIR/f34 ] && test_34a
2914         dd if=/dev/zero of=$DIR/f34 conv=notrunc bs=4k count=1 || error
2915         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2916         rm $DIR/f34
2917 }
2918 run_test 34d "write to sparse file ============================="
2919
2920 test_34e() {
2921         rm -f $DIR/f34e
2922         $MCREATE $DIR/f34e || error
2923         $TRUNCATE $DIR/f34e 1000 || error
2924         $CHECKSTAT -s 1000 $DIR/f34e || error
2925         $OPENFILE -f O_RDWR $DIR/f34e
2926         $CHECKSTAT -s 1000 $DIR/f34e || error
2927 }
2928 run_test 34e "create objects, some with size and some without =="
2929
2930 test_34f() { # bug 6242, 6243
2931         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2932         SIZE34F=48000
2933         rm -f $DIR/f34f
2934         $MCREATE $DIR/f34f || error
2935         $TRUNCATE $DIR/f34f $SIZE34F || error "truncating $DIR/f3f to $SIZE34F"
2936         dd if=$DIR/f34f of=$TMP/f34f
2937         $CHECKSTAT -s $SIZE34F $TMP/f34f || error "$TMP/f34f not $SIZE34F bytes"
2938         dd if=/dev/zero of=$TMP/f34fzero bs=$SIZE34F count=1
2939         cmp $DIR/f34f $TMP/f34fzero || error "$DIR/f34f not all zero"
2940         cmp $TMP/f34f $TMP/f34fzero || error "$TMP/f34f not all zero"
2941         rm $TMP/f34f $TMP/f34fzero $DIR/f34f
2942 }
2943 run_test 34f "read from a file with no objects until EOF ======="
2944
2945 test_34g() {
2946         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2947         dd if=/dev/zero of=$DIR/$tfile bs=1 count=100 seek=$TEST_34_SIZE || error
2948         $TRUNCATE $DIR/$tfile $((TEST_34_SIZE / 2))|| error
2949         $CHECKSTAT -s $((TEST_34_SIZE / 2)) $DIR/$tfile || error "truncate failed"
2950         cancel_lru_locks osc
2951         $CHECKSTAT -s $((TEST_34_SIZE / 2)) $DIR/$tfile || \
2952                 error "wrong size after lock cancel"
2953
2954         $TRUNCATE $DIR/$tfile $TEST_34_SIZE || error
2955         $CHECKSTAT -s $TEST_34_SIZE $DIR/$tfile || \
2956                 error "expanding truncate failed"
2957         cancel_lru_locks osc
2958         $CHECKSTAT -s $TEST_34_SIZE $DIR/$tfile || \
2959                 error "wrong expanded size after lock cancel"
2960 }
2961 run_test 34g "truncate long file ==============================="
2962
2963 test_34h() {
2964         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2965         local gid=10
2966         local sz=1000
2967
2968         dd if=/dev/zero of=$DIR/$tfile bs=1M count=10 || error
2969         sync # Flush the cache so that multiop below does not block on cache
2970              # flush when getting the group lock
2971         $MULTIOP $DIR/$tfile OG${gid}T${sz}g${gid}c &
2972         MULTIPID=$!
2973
2974         # Since just timed wait is not good enough, let's do a sync write
2975         # that way we are sure enough time for a roundtrip + processing
2976         # passed + 2 seconds of extra margin.
2977         dd if=/dev/zero of=$DIR/${tfile}-1 bs=4096 oflag=direct count=1
2978         rm $DIR/${tfile}-1
2979         sleep 2
2980
2981         if [[ `ps h -o comm -p $MULTIPID` == "multiop" ]]; then
2982                 error "Multiop blocked on ftruncate, pid=$MULTIPID"
2983                 kill -9 $MULTIPID
2984         fi
2985         wait $MULTIPID
2986         local nsz=`stat -c %s $DIR/$tfile`
2987         [[ $nsz == $sz ]] || error "New size wrong $nsz != $sz"
2988 }
2989 run_test 34h "ftruncate file under grouplock should not block"
2990
2991 test_35a() {
2992         cp /bin/sh $DIR/f35a
2993         chmod 444 $DIR/f35a
2994         chown $RUNAS_ID $DIR/f35a
2995         $RUNAS $DIR/f35a && error || true
2996         rm $DIR/f35a
2997 }
2998 run_test 35a "exec file with mode 444 (should return and not leak) ====="
2999
3000 test_36a() {
3001         rm -f $DIR/f36
3002         utime $DIR/f36 || error
3003 }
3004 run_test 36a "MDS utime check (mknod, utime) ==================="
3005
3006 test_36b() {
3007         echo "" > $DIR/f36
3008         utime $DIR/f36 || error
3009 }
3010 run_test 36b "OST utime check (open, utime) ===================="
3011
3012 test_36c() {
3013         rm -f $DIR/d36/f36
3014         test_mkdir $DIR/d36
3015         chown $RUNAS_ID $DIR/d36
3016         $RUNAS utime $DIR/d36/f36 || error
3017 }
3018 run_test 36c "non-root MDS utime check (mknod, utime) =========="
3019
3020 test_36d() {
3021         [ ! -d $DIR/d36 ] && test_36c
3022         echo "" > $DIR/d36/f36
3023         $RUNAS utime $DIR/d36/f36 || error
3024 }
3025 run_test 36d "non-root OST utime check (open, utime) ==========="
3026
3027 test_36e() {
3028         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID -- skipping" && return
3029         test_mkdir -p $DIR/$tdir
3030         touch $DIR/$tdir/$tfile
3031         $RUNAS utime $DIR/$tdir/$tfile && \
3032                 error "utime worked, expected failure" || true
3033 }
3034 run_test 36e "utime on non-owned file (should return error) ===="
3035
3036 subr_36fh() {
3037         local fl="$1"
3038         local LANG_SAVE=$LANG
3039         local LC_LANG_SAVE=$LC_LANG
3040         export LANG=C LC_LANG=C # for date language
3041
3042         DATESTR="Dec 20  2000"
3043         test_mkdir -p $DIR/$tdir
3044         lctl set_param fail_loc=$fl
3045         date; date +%s
3046         cp /etc/hosts $DIR/$tdir/$tfile
3047         sync & # write RPC generated with "current" inode timestamp, but delayed
3048         sleep 1
3049         touch --date="$DATESTR" $DIR/$tdir/$tfile # setattr timestamp in past
3050         LS_BEFORE="`ls -l $DIR/$tdir/$tfile`" # old timestamp from client cache
3051         cancel_lru_locks osc
3052         LS_AFTER="`ls -l $DIR/$tdir/$tfile`"  # timestamp from OST object
3053         date; date +%s
3054         [ "$LS_BEFORE" != "$LS_AFTER" ] && \
3055                 echo "BEFORE: $LS_BEFORE" && \
3056                 echo "AFTER : $LS_AFTER" && \
3057                 echo "WANT  : $DATESTR" && \
3058                 error "$DIR/$tdir/$tfile timestamps changed" || true
3059
3060         export LANG=$LANG_SAVE LC_LANG=$LC_LANG_SAVE
3061 }
3062
3063 test_36f() {
3064         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3065         #define OBD_FAIL_OST_BRW_PAUSE_BULK 0x214
3066         subr_36fh "0x80000214"
3067 }
3068 run_test 36f "utime on file racing with OST BRW write =========="
3069
3070 test_36g() {
3071         remote_ost_nodsh && skip "remote OST with nodsh" && return
3072         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3073         local fmd_max_age
3074         local fmd_before
3075         local fmd_after
3076
3077         test_mkdir -p $DIR/$tdir
3078         fmd_max_age=$(do_facet ost1 \
3079                 "lctl get_param -n obdfilter.*.client_cache_seconds 2> /dev/null | \
3080                 head -n 1")
3081
3082         fmd_before=$(do_facet ost1 \
3083                 "awk '/ll_fmd_cache/ {print \\\$2}' /proc/slabinfo")
3084         touch $DIR/$tdir/$tfile
3085         sleep $((fmd_max_age + 12))
3086         fmd_after=$(do_facet ost1 \
3087                 "awk '/ll_fmd_cache/ {print \\\$2}' /proc/slabinfo")
3088
3089         echo "fmd_before: $fmd_before"
3090         echo "fmd_after: $fmd_after"
3091         [[ $fmd_after -gt $fmd_before ]] &&
3092                 echo "AFTER: $fmd_after > BEFORE: $fmd_before" &&
3093                 error "fmd didn't expire after ping" || true
3094 }
3095 run_test 36g "filter mod data cache expiry ====================="
3096
3097 test_36h() {
3098         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3099         #define OBD_FAIL_OST_BRW_PAUSE_BULK2 0x227
3100         subr_36fh "0x80000227"
3101 }
3102 run_test 36h "utime on file racing with OST BRW write =========="
3103
3104 test_36i() {
3105         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
3106
3107         test_mkdir $DIR/$tdir
3108         $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/striped_dir
3109
3110         local mtime=$(stat -c%Y $DIR/$tdir/striped_dir)
3111         local new_mtime=$((mtime + 200))
3112
3113         #change Modify time of striped dir
3114         touch -m -d @$new_mtime $DIR/$tdir/striped_dir ||
3115                         error "change mtime failed"
3116
3117         local got=$(stat -c%Y $DIR/$tdir/striped_dir)
3118
3119         [ "$new_mtime" = "$got" ] || error "expect $new_mtime got $got"
3120 }
3121 run_test 36i "change mtime on striped directory"
3122
3123 # test_37 - duplicate with tests 32q 32r
3124
3125 test_38() {
3126         local file=$DIR/$tfile
3127         touch $file
3128         openfile -f O_DIRECTORY $file
3129         local RC=$?
3130         local ENOTDIR=20
3131         [ $RC -eq 0 ] && error "opened file $file with O_DIRECTORY" || true
3132         [ $RC -eq $ENOTDIR ] || error "error $RC should be ENOTDIR ($ENOTDIR)"
3133 }
3134 run_test 38 "open a regular file with O_DIRECTORY should return -ENOTDIR ==="
3135
3136 test_39a() { # was test_39
3137         touch $DIR/$tfile
3138         touch $DIR/${tfile}2
3139 #       ls -l  $DIR/$tfile $DIR/${tfile}2
3140 #       ls -lu  $DIR/$tfile $DIR/${tfile}2
3141 #       ls -lc  $DIR/$tfile $DIR/${tfile}2
3142         sleep 2
3143         $OPENFILE -f O_CREAT:O_TRUNC:O_WRONLY $DIR/${tfile}2
3144         if [ ! $DIR/${tfile}2 -nt $DIR/$tfile ]; then
3145                 echo "mtime"
3146                 ls -l --full-time $DIR/$tfile $DIR/${tfile}2
3147                 echo "atime"
3148                 ls -lu --full-time $DIR/$tfile $DIR/${tfile}2
3149                 echo "ctime"
3150                 ls -lc --full-time $DIR/$tfile $DIR/${tfile}2
3151                 error "O_TRUNC didn't change timestamps"
3152         fi
3153 }
3154 run_test 39a "mtime changed on create ==========================="
3155
3156 test_39b() {
3157         test_mkdir -p -c1 $DIR/$tdir
3158         cp -p /etc/passwd $DIR/$tdir/fopen
3159         cp -p /etc/passwd $DIR/$tdir/flink
3160         cp -p /etc/passwd $DIR/$tdir/funlink
3161         cp -p /etc/passwd $DIR/$tdir/frename
3162         ln $DIR/$tdir/funlink $DIR/$tdir/funlink2
3163
3164         sleep 1
3165         echo "aaaaaa" >> $DIR/$tdir/fopen
3166         echo "aaaaaa" >> $DIR/$tdir/flink
3167         echo "aaaaaa" >> $DIR/$tdir/funlink
3168         echo "aaaaaa" >> $DIR/$tdir/frename
3169
3170         local open_new=`stat -c %Y $DIR/$tdir/fopen`
3171         local link_new=`stat -c %Y $DIR/$tdir/flink`
3172         local unlink_new=`stat -c %Y $DIR/$tdir/funlink`
3173         local rename_new=`stat -c %Y $DIR/$tdir/frename`
3174
3175         cat $DIR/$tdir/fopen > /dev/null
3176         ln $DIR/$tdir/flink $DIR/$tdir/flink2
3177         rm -f $DIR/$tdir/funlink2
3178         mv -f $DIR/$tdir/frename $DIR/$tdir/frename2
3179
3180         for (( i=0; i < 2; i++ )) ; do
3181                 local open_new2=`stat -c %Y $DIR/$tdir/fopen`
3182                 local link_new2=`stat -c %Y $DIR/$tdir/flink`
3183                 local unlink_new2=`stat -c %Y $DIR/$tdir/funlink`
3184                 local rename_new2=`stat -c %Y $DIR/$tdir/frename2`
3185
3186                 [ $open_new2 -eq $open_new ] || error "open file reverses mtime"
3187                 [ $link_new2 -eq $link_new ] || error "link file reverses mtime"
3188                 [ $unlink_new2 -eq $unlink_new ] || error "unlink file reverses mtime"
3189                 [ $rename_new2 -eq $rename_new ] || error "rename file reverses mtime"
3190
3191                 cancel_lru_locks osc
3192                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3193         done
3194 }
3195 run_test 39b "mtime change on open, link, unlink, rename  ======"
3196
3197 # this should be set to past
3198 TEST_39_MTIME=`date -d "1 year ago" +%s`
3199
3200 # bug 11063
3201 test_39c() {
3202         touch $DIR1/$tfile
3203         sleep 2
3204         local mtime0=`stat -c %Y $DIR1/$tfile`
3205
3206         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3207         local mtime1=`stat -c %Y $DIR1/$tfile`
3208         [ "$mtime1" = $TEST_39_MTIME ] || \
3209                 error "mtime is not set to past: $mtime1, should be $TEST_39_MTIME"
3210
3211         local d1=`date +%s`
3212         echo hello >> $DIR1/$tfile
3213         local d2=`date +%s`
3214         local mtime2=`stat -c %Y $DIR1/$tfile`
3215         [ "$mtime2" -ge "$d1" ] && [ "$mtime2" -le "$d2" ] || \
3216                 error "mtime is not updated on write: $d1 <= $mtime2 <= $d2"
3217
3218         mv $DIR1/$tfile $DIR1/$tfile-1
3219
3220         for (( i=0; i < 2; i++ )) ; do
3221                 local mtime3=`stat -c %Y $DIR1/$tfile-1`
3222                 [ "$mtime2" = "$mtime3" ] || \
3223                         error "mtime ($mtime2) changed (to $mtime3) on rename"
3224
3225                 cancel_lru_locks osc
3226                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3227         done
3228 }
3229 run_test 39c "mtime change on rename ==========================="
3230
3231 # bug 21114
3232 test_39d() {
3233         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3234         touch $DIR1/$tfile
3235
3236         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3237
3238         for (( i=0; i < 2; i++ )) ; do
3239                 local mtime=`stat -c %Y $DIR1/$tfile`
3240                 [ $mtime = $TEST_39_MTIME ] || \
3241                         error "mtime($mtime) is not set to $TEST_39_MTIME"
3242
3243                 cancel_lru_locks osc
3244                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3245         done
3246 }
3247 run_test 39d "create, utime, stat =============================="
3248
3249 # bug 21114
3250 test_39e() {
3251         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3252         touch $DIR1/$tfile
3253         local mtime1=`stat -c %Y $DIR1/$tfile`
3254
3255         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3256
3257         for (( i=0; i < 2; i++ )) ; do
3258                 local mtime2=`stat -c %Y $DIR1/$tfile`
3259                 [ $mtime2 = $TEST_39_MTIME ] || \
3260                         error "mtime($mtime2) is not set to $TEST_39_MTIME"
3261
3262                 cancel_lru_locks osc
3263                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3264         done
3265 }
3266 run_test 39e "create, stat, utime, stat ========================"
3267
3268 # bug 21114
3269 test_39f() {
3270         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3271         touch $DIR1/$tfile
3272         mtime1=`stat -c %Y $DIR1/$tfile`
3273
3274         sleep 2
3275         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3276
3277         for (( i=0; i < 2; i++ )) ; do
3278                 local mtime2=`stat -c %Y $DIR1/$tfile`
3279                 [ $mtime2 = $TEST_39_MTIME ] || \
3280                         error "mtime($mtime2) is not set to $TEST_39_MTIME"
3281
3282                 cancel_lru_locks osc
3283                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3284         done
3285 }
3286 run_test 39f "create, stat, sleep, utime, stat ================="
3287
3288 # bug 11063
3289 test_39g() {
3290         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3291         echo hello >> $DIR1/$tfile
3292         local mtime1=`stat -c %Y $DIR1/$tfile`
3293
3294         sleep 2
3295         chmod o+r $DIR1/$tfile
3296
3297         for (( i=0; i < 2; i++ )) ; do
3298                 local mtime2=`stat -c %Y $DIR1/$tfile`
3299                 [ "$mtime1" = "$mtime2" ] || \
3300                         error "lost mtime: $mtime2, should be $mtime1"
3301
3302                 cancel_lru_locks osc
3303                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3304         done
3305 }
3306 run_test 39g "write, chmod, stat ==============================="
3307
3308 # bug 11063
3309 test_39h() {
3310         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3311         touch $DIR1/$tfile
3312         sleep 1
3313
3314         local d1=`date`
3315         echo hello >> $DIR1/$tfile
3316         local mtime1=`stat -c %Y $DIR1/$tfile`
3317
3318         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3319         local d2=`date`
3320         if [ "$d1" != "$d2" ]; then
3321                 echo "write and touch not within one second"
3322         else
3323                 for (( i=0; i < 2; i++ )) ; do
3324                         local mtime2=`stat -c %Y $DIR1/$tfile`
3325                         [ "$mtime2" = $TEST_39_MTIME ] || \
3326                                 error "lost mtime: $mtime2, should be $TEST_39_MTIME"
3327
3328                         cancel_lru_locks osc
3329                         if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3330                 done
3331         fi
3332 }
3333 run_test 39h "write, utime within one second, stat ============="
3334
3335 test_39i() {
3336         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3337         touch $DIR1/$tfile
3338         sleep 1
3339
3340         echo hello >> $DIR1/$tfile
3341         local mtime1=`stat -c %Y $DIR1/$tfile`
3342
3343         mv $DIR1/$tfile $DIR1/$tfile-1
3344
3345         for (( i=0; i < 2; i++ )) ; do
3346                 local mtime2=`stat -c %Y $DIR1/$tfile-1`
3347
3348                 [ "$mtime1" = "$mtime2" ] || \
3349                         error "lost mtime: $mtime2, should be $mtime1"
3350
3351                 cancel_lru_locks osc
3352                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3353         done
3354 }
3355 run_test 39i "write, rename, stat =============================="
3356
3357 test_39j() {
3358         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3359         start_full_debug_logging
3360         touch $DIR1/$tfile
3361         sleep 1
3362
3363         #define OBD_FAIL_OSC_DELAY_SETTIME       0x412
3364         lctl set_param fail_loc=0x80000412
3365         multiop_bg_pause $DIR1/$tfile oO_RDWR:w2097152_c ||
3366                 error "multiop failed"
3367         local multipid=$!
3368         local mtime1=`stat -c %Y $DIR1/$tfile`
3369
3370         mv $DIR1/$tfile $DIR1/$tfile-1
3371
3372         kill -USR1 $multipid
3373         wait $multipid || error "multiop close failed"
3374
3375         for (( i=0; i < 2; i++ )) ; do
3376                 local mtime2=`stat -c %Y $DIR1/$tfile-1`
3377                 [ "$mtime1" = "$mtime2" ] ||
3378                         error "mtime is lost on close: $mtime2, " \
3379                               "should be $mtime1"
3380
3381                 cancel_lru_locks osc
3382                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3383         done
3384         lctl set_param fail_loc=0
3385         stop_full_debug_logging
3386 }
3387 run_test 39j "write, rename, close, stat ======================="
3388
3389 test_39k() {
3390         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3391         touch $DIR1/$tfile
3392         sleep 1
3393
3394         multiop_bg_pause $DIR1/$tfile oO_RDWR:w2097152_c || error "multiop failed"
3395         local multipid=$!
3396         local mtime1=`stat -c %Y $DIR1/$tfile`
3397
3398         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3399
3400         kill -USR1 $multipid
3401         wait $multipid || error "multiop close failed"
3402
3403         for (( i=0; i < 2; i++ )) ; do
3404                 local mtime2=`stat -c %Y $DIR1/$tfile`
3405
3406                 [ "$mtime2" = $TEST_39_MTIME ] || \
3407                         error "mtime is lost on close: $mtime2, should be $TEST_39_MTIME"
3408
3409                 cancel_lru_locks osc
3410                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3411         done
3412 }
3413 run_test 39k "write, utime, close, stat ========================"
3414
3415 # this should be set to future
3416 TEST_39_ATIME=`date -d "1 year" +%s`
3417
3418 test_39l() {
3419         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3420         remote_mds_nodsh && skip "remote MDS with nodsh" && return
3421         local atime_diff=$(do_facet $SINGLEMDS \
3422                                 lctl get_param -n mdd.*MDT0000*.atime_diff)
3423         rm -rf $DIR/$tdir
3424         mkdir -p $DIR/$tdir
3425
3426         # test setting directory atime to future
3427         touch -a -d @$TEST_39_ATIME $DIR/$tdir
3428         local atime=$(stat -c %X $DIR/$tdir)
3429         [ "$atime" = $TEST_39_ATIME ] ||
3430                 error "atime is not set to future: $atime, $TEST_39_ATIME"
3431
3432         # test setting directory atime from future to now
3433         local now=$(date +%s)
3434         touch -a -d @$now $DIR/$tdir
3435
3436         atime=$(stat -c %X $DIR/$tdir)
3437         [ "$atime" -eq "$now"  ] ||
3438                 error "atime is not updated from future: $atime, $now"
3439
3440         do_facet $SINGLEMDS lctl set_param -n mdd.*MDT0000*.atime_diff=2
3441         sleep 3
3442
3443         # test setting directory atime when now > dir atime + atime_diff
3444         local d1=$(date +%s)
3445         ls $DIR/$tdir
3446         local d2=$(date +%s)
3447         cancel_lru_locks mdc
3448         atime=$(stat -c %X $DIR/$tdir)
3449         [ "$atime" -ge "$d1" -a "$atime" -le "$d2" ] ||
3450                 error "atime is not updated  : $atime, should be $d2"
3451
3452         do_facet $SINGLEMDS lctl set_param -n mdd.*MDT0000*.atime_diff=60
3453         sleep 3
3454
3455         # test not setting directory atime when now < dir atime + atime_diff
3456         ls $DIR/$tdir
3457         cancel_lru_locks mdc
3458         atime=$(stat -c %X $DIR/$tdir)
3459         [ "$atime" -ge "$d1" -a "$atime" -le "$d2" ] ||
3460                 error "atime is updated to $atime, should remain $d1<atime<$d2"
3461
3462         do_facet $SINGLEMDS \
3463                 lctl set_param -n mdd.*MDT0000*.atime_diff=$atime_diff
3464 }
3465 run_test 39l "directory atime update ==========================="
3466
3467 test_39m() {
3468         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3469         touch $DIR1/$tfile
3470         sleep 2
3471         local far_past_mtime=$(date -d "May 29 1953" +%s)
3472         local far_past_atime=$(date -d "Dec 17 1903" +%s)
3473
3474         touch -m -d @$far_past_mtime $DIR1/$tfile
3475         touch -a -d @$far_past_atime $DIR1/$tfile
3476
3477         for (( i=0; i < 2; i++ )) ; do
3478                 local timestamps=$(stat -c "%X %Y" $DIR1/$tfile)
3479                 [ "$timestamps" = "$far_past_atime $far_past_mtime" ] || \
3480                         error "atime or mtime set incorrectly"
3481
3482                 cancel_lru_locks osc
3483                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3484         done
3485 }
3486 run_test 39m "test atime and mtime before 1970"
3487
3488 test_39n() { # LU-3832
3489         remote_mds_nodsh && skip "remote MDS with nodsh" && return
3490         local atime_diff=$(do_facet $SINGLEMDS \
3491                 lctl get_param -n mdd.*MDT0000*.atime_diff)
3492         local atime0
3493         local atime1
3494         local atime2
3495
3496         do_facet $SINGLEMDS lctl set_param -n mdd.*MDT0000*.atime_diff=1
3497
3498         rm -rf $DIR/$tfile
3499         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 status=noxfer
3500         atime0=$(stat -c %X $DIR/$tfile)
3501
3502         sleep 5
3503         $MULTIOP $DIR/$tfile oO_RDONLY:O_NOATIME:r4096c
3504         atime1=$(stat -c %X $DIR/$tfile)
3505
3506         sleep 5
3507         cancel_lru_locks mdc
3508         cancel_lru_locks osc
3509         $MULTIOP $DIR/$tfile oO_RDONLY:O_NOATIME:r4096c
3510         atime2=$(stat -c %X $DIR/$tfile)
3511
3512         do_facet $SINGLEMDS \
3513                 lctl set_param -n mdd.*MDT0000*.atime_diff=$atime_diff
3514
3515         [ "$atime0" -eq "$atime1" ] || error "atime0 $atime0 != atime1 $atime1"
3516         [ "$atime1" -eq "$atime2" ] || error "atime0 $atime0 != atime1 $atime1"
3517 }
3518 run_test 39n "check that O_NOATIME is honored"
3519
3520 test_39o() {
3521         TESTDIR=$DIR/$tdir/$tfile
3522         [ -e $TESTDIR ] && rm -rf $TESTDIR
3523         mkdir -p $TESTDIR
3524         cd $TESTDIR
3525         links1=2
3526         ls
3527         mkdir a b
3528         ls
3529         links2=$(stat -c %h .)
3530         [ $(($links1 + 2)) != $links2 ] &&
3531                 error "wrong links count $(($links1 + 2)) != $links2"
3532         rmdir b
3533         links3=$(stat -c %h .)
3534         [ $(($links1 + 1)) != $links3 ] &&
3535                 error "wrong links count $links1 != $links3"
3536         return 0
3537 }
3538 run_test 39o "directory cached attributes updated after create ========"
3539
3540 test_39p() {
3541         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 2 MDTs" && return
3542         local MDTIDX=1
3543         TESTDIR=$DIR/$tdir/$tfile
3544         [ -e $TESTDIR ] && rm -rf $TESTDIR
3545         test_mkdir -p $TESTDIR
3546         cd $TESTDIR
3547         links1=2
3548         ls
3549         $LFS mkdir -i $MDTIDX $TESTDIR/remote_dir1
3550         $LFS mkdir -i $MDTIDX $TESTDIR/remote_dir2
3551         ls
3552         links2=$(stat -c %h .)
3553         [ $(($links1 + 2)) != $links2 ] &&
3554                 error "wrong links count $(($links1 + 2)) != $links2"
3555         rmdir remote_dir2
3556         links3=$(stat -c %h .)
3557         [ $(($links1 + 1)) != $links3 ] &&
3558                 error "wrong links count $links1 != $links3"
3559         return 0
3560 }
3561 run_test 39p "remote directory cached attributes updated after create ========"
3562
3563
3564 test_39q() { # LU-8041
3565         local testdir=$DIR/$tdir
3566         mkdir -p $testdir
3567         multiop_bg_pause $testdir D_c || error "multiop failed"
3568         local multipid=$!
3569         cancel_lru_locks mdc
3570         kill -USR1 $multipid
3571         local atime=$(stat -c %X $testdir)
3572         [ "$atime" -ne 0 ] || error "atime is zero"
3573 }
3574 run_test 39q "close won't zero out atime"
3575
3576 test_40() {
3577         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1
3578         $RUNAS $OPENFILE -f O_WRONLY:O_TRUNC $DIR/$tfile &&
3579                 error "openfile O_WRONLY:O_TRUNC $tfile failed"
3580         $CHECKSTAT -t file -s 4096 $DIR/$tfile ||
3581                 error "$tfile is not 4096 bytes in size"
3582 }
3583 run_test 40 "failed open(O_TRUNC) doesn't truncate ============="
3584
3585 test_41() {
3586         # bug 1553
3587         small_write $DIR/f41 18
3588 }
3589 run_test 41 "test small file write + fstat ====================="
3590
3591 count_ost_writes() {
3592         lctl get_param -n osc.*.stats |
3593                 awk -vwrites=0 '/ost_write/ { writes += $2 } \
3594                         END { printf("%0.0f", writes) }'
3595 }
3596
3597 # decent default
3598 WRITEBACK_SAVE=500
3599 DIRTY_RATIO_SAVE=40
3600 MAX_DIRTY_RATIO=50
3601 BG_DIRTY_RATIO_SAVE=10
3602 MAX_BG_DIRTY_RATIO=25
3603
3604 start_writeback() {
3605         trap 0
3606         # in 2.6, restore /proc/sys/vm/dirty_writeback_centisecs,
3607         # dirty_ratio, dirty_background_ratio
3608         if [ -f /proc/sys/vm/dirty_writeback_centisecs ]; then
3609                 sysctl -w vm.dirty_writeback_centisecs=$WRITEBACK_SAVE
3610                 sysctl -w vm.dirty_background_ratio=$BG_DIRTY_RATIO_SAVE
3611                 sysctl -w vm.dirty_ratio=$DIRTY_RATIO_SAVE
3612         else
3613                 # if file not here, we are a 2.4 kernel
3614                 kill -CONT `pidof kupdated`
3615         fi
3616 }
3617
3618 stop_writeback() {
3619         # setup the trap first, so someone cannot exit the test at the
3620         # exact wrong time and mess up a machine
3621         trap start_writeback EXIT
3622         # in 2.6, save and 0 /proc/sys/vm/dirty_writeback_centisecs
3623         if [ -f /proc/sys/vm/dirty_writeback_centisecs ]; then
3624                 WRITEBACK_SAVE=`sysctl -n vm.dirty_writeback_centisecs`
3625                 sysctl -w vm.dirty_writeback_centisecs=0
3626                 sysctl -w vm.dirty_writeback_centisecs=0
3627                 # save and increase /proc/sys/vm/dirty_ratio
3628                 DIRTY_RATIO_SAVE=`sysctl -n vm.dirty_ratio`
3629                 sysctl -w vm.dirty_ratio=$MAX_DIRTY_RATIO
3630                 # save and increase /proc/sys/vm/dirty_background_ratio
3631                 BG_DIRTY_RATIO_SAVE=`sysctl -n vm.dirty_background_ratio`
3632                 sysctl -w vm.dirty_background_ratio=$MAX_BG_DIRTY_RATIO
3633         else
3634                 # if file not here, we are a 2.4 kernel
3635                 kill -STOP `pidof kupdated`
3636         fi
3637 }
3638
3639 # ensure that all stripes have some grant before we test client-side cache
3640 setup_test42() {
3641         for i in `seq -f $DIR/f42-%g 1 $OSTCOUNT`; do
3642                 dd if=/dev/zero of=$i bs=4k count=1
3643                 rm $i
3644         done
3645 }
3646
3647 # Tests 42* verify that our behaviour is correct WRT caching, file closure,
3648 # file truncation, and file removal.
3649 test_42a() {
3650         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3651         setup_test42
3652         cancel_lru_locks osc
3653         stop_writeback
3654         sync; sleep 1; sync # just to be safe
3655         BEFOREWRITES=`count_ost_writes`
3656         lctl get_param -n osc.*[oO][sS][cC][_-]*.cur_grant_bytes | grep "[0-9]"
3657         dd if=/dev/zero of=$DIR/f42a bs=1024 count=100
3658         AFTERWRITES=`count_ost_writes`
3659         [ $BEFOREWRITES -eq $AFTERWRITES ] || \
3660                 error "$BEFOREWRITES < $AFTERWRITES"
3661         start_writeback
3662 }
3663 run_test 42a "ensure that we don't flush on close"
3664
3665 test_42b() {
3666         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3667         setup_test42
3668         cancel_lru_locks osc
3669         stop_writeback
3670         sync
3671         dd if=/dev/zero of=$DIR/f42b bs=1024 count=100
3672         BEFOREWRITES=$(count_ost_writes)
3673         $MUNLINK $DIR/f42b || error "$MUNLINK $DIR/f42b: $?"
3674         AFTERWRITES=$(count_ost_writes)
3675         if [[ $BEFOREWRITES -lt $AFTERWRITES ]]; then
3676                 error "$BEFOREWRITES < $AFTERWRITES on unlink"
3677         fi
3678         BEFOREWRITES=$(count_ost_writes)
3679         sync || error "sync: $?"
3680         AFTERWRITES=$(count_ost_writes)
3681         if [[ $BEFOREWRITES -lt $AFTERWRITES ]]; then
3682                 error "$BEFOREWRITES < $AFTERWRITES on sync"
3683         fi
3684         dmesg | grep 'error from obd_brw_async' && error 'error writing back'
3685         start_writeback
3686         return 0
3687 }
3688 run_test 42b "test destroy of file with cached dirty data ======"
3689
3690 # if these tests just want to test the effect of truncation,
3691 # they have to be very careful.  consider:
3692 # - the first open gets a {0,EOF}PR lock
3693 # - the first write conflicts and gets a {0, count-1}PW
3694 # - the rest of the writes are under {count,EOF}PW
3695 # - the open for truncate tries to match a {0,EOF}PR
3696 #   for the filesize and cancels the PWs.
3697 # any number of fixes (don't get {0,EOF} on open, match
3698 # composite locks, do smarter file size management) fix
3699 # this, but for now we want these tests to verify that
3700 # the cancellation with truncate intent works, so we
3701 # start the file with a full-file pw lock to match against
3702 # until the truncate.
3703 trunc_test() {
3704         test=$1
3705         file=$DIR/$test
3706         offset=$2
3707         cancel_lru_locks osc
3708         stop_writeback
3709         # prime the file with 0,EOF PW to match
3710         touch $file
3711         $TRUNCATE $file 0
3712         sync; sync
3713         # now the real test..
3714         dd if=/dev/zero of=$file bs=1024 count=100
3715         BEFOREWRITES=`count_ost_writes`
3716         $TRUNCATE $file $offset
3717         cancel_lru_locks osc
3718         AFTERWRITES=`count_ost_writes`
3719         start_writeback
3720 }
3721
3722 test_42c() {
3723         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3724         trunc_test 42c 1024
3725         [ $BEFOREWRITES -eq $AFTERWRITES ] && \
3726             error "beforewrites $BEFOREWRITES == afterwrites $AFTERWRITES on truncate"
3727         rm $file
3728 }
3729 run_test 42c "test partial truncate of file with cached dirty data"
3730
3731 test_42d() {
3732         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3733         trunc_test 42d 0
3734         [ $BEFOREWRITES -eq $AFTERWRITES ] || \
3735             error "beforewrites $BEFOREWRITES != afterwrites $AFTERWRITES on truncate"
3736         rm $file
3737 }
3738 run_test 42d "test complete truncate of file with cached dirty data"
3739
3740 test_42e() { # bug22074
3741         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3742         local TDIR=$DIR/${tdir}e
3743         local pagesz=$(page_size)
3744         local pages=16 # hardcoded 16 pages, don't change it.
3745         local files=$((OSTCOUNT * 500)) # hopefully 500 files on each OST
3746         local proc_osc0="osc.${FSNAME}-OST0000-osc-[^MDT]*"
3747         local max_dirty_mb
3748         local warmup_files
3749
3750         test_mkdir -p $DIR/${tdir}e
3751         $SETSTRIPE -c 1 $TDIR
3752         createmany -o $TDIR/f $files
3753
3754         max_dirty_mb=$($LCTL get_param -n $proc_osc0/max_dirty_mb)
3755
3756         # we assume that with $OSTCOUNT files, at least one of them will
3757         # be allocated on OST0.
3758         warmup_files=$((OSTCOUNT * max_dirty_mb))
3759         createmany -o $TDIR/w $warmup_files
3760
3761         # write a large amount of data into one file and sync, to get good
3762         # avail_grant number from OST.
3763         for ((i=0; i<$warmup_files; i++)); do
3764                 idx=$($GETSTRIPE -i $TDIR/w$i)
3765                 [ $idx -ne 0 ] && continue
3766                 dd if=/dev/zero of=$TDIR/w$i bs="$max_dirty_mb"M count=1
3767                 break
3768         done
3769         [[ $i -gt $warmup_files ]] && error "OST0 is still cold"
3770         sync
3771         $LCTL get_param $proc_osc0/cur_dirty_bytes
3772         $LCTL get_param $proc_osc0/cur_grant_bytes
3773
3774         # create as much dirty pages as we can while not to trigger the actual
3775         # RPCs directly. but depends on the env, VFS may trigger flush during this
3776         # period, hopefully we are good.
3777         for ((i=0; i<$warmup_files; i++)); do
3778                 idx=$($GETSTRIPE -i $TDIR/w$i)
3779                 [ $idx -ne 0 ] && continue
3780                 dd if=/dev/zero of=$TDIR/w$i bs=1M count=1 2>/dev/null
3781         done
3782         $LCTL get_param $proc_osc0/cur_dirty_bytes
3783         $LCTL get_param $proc_osc0/cur_grant_bytes
3784
3785         # perform the real test
3786         $LCTL set_param $proc_osc0/rpc_stats 0
3787         for ((;i<$files; i++)); do
3788                 [ $($GETSTRIPE -i $TDIR/f$i) -eq 0 ] || continue
3789                 dd if=/dev/zero of=$TDIR/f$i bs=$pagesz count=$pages 2>/dev/null
3790         done
3791         sync
3792         $LCTL get_param $proc_osc0/rpc_stats
3793
3794         local percent=0
3795         local have_ppr=false
3796         $LCTL get_param $proc_osc0/rpc_stats |
3797                 while read PPR RRPC RPCT RCUM BAR WRPC WPCT WCUM; do
3798                         # skip lines until we are at the RPC histogram data
3799                         [ "$PPR" == "pages" ] && have_ppr=true && continue
3800                         $have_ppr || continue
3801
3802                         # we only want the percent stat for < 16 pages
3803                         [[ $(echo $PPR | tr -d ':') -ge $pages ]] && break
3804
3805                         percent=$((percent + WPCT))
3806                         if [[ $percent -gt 15 ]]; then
3807                                 error "less than 16-pages write RPCs" \
3808                                       "$percent% > 15%"
3809                                 break
3810                         fi
3811                 done
3812         rm -rf $TDIR
3813 }
3814 run_test 42e "verify sub-RPC writes are not done synchronously"
3815
3816 test_43A() { # was test_43
3817         test_mkdir -p $DIR/$tdir
3818         cp -p /bin/ls $DIR/$tdir/$tfile
3819         $MULTIOP $DIR/$tdir/$tfile Ow_c &
3820         pid=$!
3821         # give multiop a chance to open
3822         sleep 1
3823
3824         $DIR/$tdir/$tfile && error "execute $DIR/$tdir/$tfile succeeded" || true
3825         kill -USR1 $pid
3826 }
3827 run_test 43A "execution of file opened for write should return -ETXTBSY"
3828
3829 test_43a() {
3830         test_mkdir $DIR/$tdir
3831         cp -p $(which $MULTIOP) $DIR/$tdir/multiop ||
3832                 cp -p multiop $DIR/$tdir/multiop
3833         MULTIOP_PROG=$DIR/$tdir/multiop multiop_bg_pause $TMP/$tfile.junk O_c ||
3834                 error "multiop open $TMP/$tfile.junk failed"
3835         MULTIOP_PID=$!
3836         $MULTIOP $DIR/$tdir/multiop Oc && error "expected error, got success"
3837         kill -USR1 $MULTIOP_PID || error "kill -USR1 PID $MULTIOP_PID failed"
3838         wait $MULTIOP_PID || error "wait PID $MULTIOP_PID failed"
3839 }
3840 run_test 43a "open(RDWR) of file being executed should return -ETXTBSY"
3841
3842 test_43b() {
3843         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3844         test_mkdir $DIR/$tdir
3845         cp -p $(which $MULTIOP) $DIR/$tdir/multiop ||
3846                 cp -p multiop $DIR/$tdir/multiop
3847         MULTIOP_PROG=$DIR/$tdir/multiop multiop_bg_pause $TMP/$tfile.junk O_c ||
3848                 error "multiop open $TMP/$tfile.junk failed"
3849         MULTIOP_PID=$!
3850         $TRUNCATE $DIR/$tdir/multiop 0 && error "expected error, got success"
3851         kill -USR1 $MULTIOP_PID || error "kill -USR1 PID $MULTIOP_PID failed"
3852         wait $MULTIOP_PID || error "wait PID $MULTIOP_PID failed"
3853 }
3854 run_test 43b "truncate of file being executed should return -ETXTBSY"
3855
3856 test_43c() {
3857         local testdir="$DIR/$tdir"
3858         test_mkdir $testdir
3859         cp $SHELL $testdir/
3860         ( cd $(dirname $SHELL) && md5sum $(basename $SHELL) ) |
3861                 ( cd $testdir && md5sum -c )
3862 }
3863 run_test 43c "md5sum of copy into lustre"
3864
3865 test_44A() { # was test_44
3866         [[ $OSTCOUNT -lt 2 ]] && skip_env "skipping 2-stripe test" && return
3867         dd if=/dev/zero of=$DIR/f1 bs=4k count=1 seek=1023
3868         dd if=$DIR/f1 bs=4k count=1 > /dev/null
3869 }
3870 run_test 44A "zero length read from a sparse stripe"
3871
3872 test_44a() {
3873         local nstripe=$($LCTL lov_getconfig $DIR | grep default_stripe_count: |
3874                 awk '{ print $2 }')
3875         [ -z "$nstripe" ] && skip "can't get stripe info" && return
3876         [[ $nstripe -gt $OSTCOUNT ]] &&
3877             skip "Wrong default_stripe_count: $nstripe (OSTCOUNT: $OSTCOUNT)" &&
3878             return
3879         local stride=$($LCTL lov_getconfig $DIR | grep default_stripe_size: |
3880                 awk '{ print $2 }')
3881         if [[ $nstripe -eq 0 || $nstripe -eq -1 ]]; then
3882                 nstripe=$($LCTL lov_getconfig $DIR | grep obd_count: |
3883                         awk '{ print $2 }')
3884         fi
3885
3886         OFFSETS="0 $((stride/2)) $((stride-1))"
3887         for offset in $OFFSETS; do
3888                 for i in $(seq 0 $((nstripe-1))); do
3889                         local GLOBALOFFSETS=""
3890                         # size in Bytes
3891                         local size=$((((i + 2 * $nstripe )*$stride + $offset)))
3892                         local myfn=$DIR/d44a-$size
3893                         echo "--------writing $myfn at $size"
3894                         ll_sparseness_write $myfn $size ||
3895                                 error "ll_sparseness_write"
3896                         GLOBALOFFSETS="$GLOBALOFFSETS $size"
3897                         ll_sparseness_verify $myfn $GLOBALOFFSETS ||
3898                                 error "ll_sparseness_verify $GLOBALOFFSETS"
3899
3900                         for j in $(seq 0 $((nstripe-1))); do
3901                                 # size in Bytes
3902                                 size=$((((j + $nstripe )*$stride + $offset)))
3903                                 ll_sparseness_write $myfn $size ||
3904                                         error "ll_sparseness_write"
3905                                 GLOBALOFFSETS="$GLOBALOFFSETS $size"
3906                         done
3907                         ll_sparseness_verify $myfn $GLOBALOFFSETS ||
3908                                 error "ll_sparseness_verify $GLOBALOFFSETS"
3909                         rm -f $myfn
3910                 done
3911         done
3912 }
3913 run_test 44a "test sparse pwrite ==============================="
3914
3915 dirty_osc_total() {
3916         tot=0
3917         for d in `lctl get_param -n osc.*.cur_dirty_bytes`; do
3918                 tot=$(($tot + $d))
3919         done
3920         echo $tot
3921 }
3922 do_dirty_record() {
3923         before=`dirty_osc_total`
3924         echo executing "\"$*\""
3925         eval $*
3926         after=`dirty_osc_total`
3927         echo before $before, after $after
3928 }
3929 test_45() {
3930         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3931         f="$DIR/f45"
3932         # Obtain grants from OST if it supports it
3933         echo blah > ${f}_grant
3934         stop_writeback
3935         sync
3936         do_dirty_record "echo blah > $f"
3937         [[ $before -eq $after ]] && error "write wasn't cached"
3938         do_dirty_record "> $f"
3939         [[ $before -gt $after ]] || error "truncate didn't lower dirty count"
3940         do_dirty_record "echo blah > $f"
3941         [[ $before -eq $after ]] && error "write wasn't cached"
3942         do_dirty_record "sync"
3943         [[ $before -gt $after ]] || error "writeback didn't lower dirty count"
3944         do_dirty_record "echo blah > $f"
3945         [[ $before -eq $after ]] && error "write wasn't cached"
3946         do_dirty_record "cancel_lru_locks osc"
3947         [[ $before -gt $after ]] ||
3948                 error "lock cancellation didn't lower dirty count"
3949         start_writeback
3950 }
3951 run_test 45 "osc io page accounting ============================"
3952
3953 # in a 2 stripe file (lov.sh), page 1023 maps to page 511 in its object.  this
3954 # test tickles a bug where re-dirtying a page was failing to be mapped to the
3955 # objects offset and an assert hit when an rpc was built with 1023's mapped
3956 # offset 511 and 511's raw 511 offset. it also found general redirtying bugs.
3957 test_46() {
3958         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3959         f="$DIR/f46"
3960         stop_writeback
3961         sync
3962         dd if=/dev/zero of=$f bs=`page_size` seek=511 count=1
3963         sync
3964         dd conv=notrunc if=/dev/zero of=$f bs=`page_size` seek=1023 count=1
3965         dd conv=notrunc if=/dev/zero of=$f bs=`page_size` seek=511 count=1
3966         sync
3967         start_writeback
3968 }
3969 run_test 46 "dirtying a previously written page ================"
3970
3971 # test_47 is removed "Device nodes check" is moved to test_28
3972
3973 test_48a() { # bug 2399
3974         [ $(facet_fstype $SINGLEMDS) = "zfs" ] &&
3975         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.63) ] &&
3976                 skip "MDS prior to 2.3.63 handle ZFS dir .. incorrectly" &&
3977                 return
3978         test_mkdir $DIR/$tdir
3979         cd $DIR/$tdir
3980         mv $DIR/$tdir $DIR/$tdir.new || error "move directory failed"
3981         test_mkdir $DIR/$tdir || error "recreate directory failed"
3982         touch foo || error "'touch foo' failed after recreating cwd"
3983         test_mkdir bar || error "'mkdir foo' failed after recreating cwd"
3984         touch .foo || error "'touch .foo' failed after recreating cwd"
3985         test_mkdir .bar || error "'mkdir .foo' failed after recreating cwd"
3986         ls . > /dev/null || error "'ls .' failed after recreating cwd"
3987         ls .. > /dev/null || error "'ls ..' failed after removing cwd"
3988         cd . || error "'cd .' failed after recreating cwd"
3989         test_mkdir . && error "'mkdir .' worked after recreating cwd"
3990         rmdir . && error "'rmdir .' worked after recreating cwd"
3991         ln -s . baz || error "'ln -s .' failed after recreating cwd"
3992         cd .. || error "'cd ..' failed after recreating cwd"
3993 }
3994 run_test 48a "Access renamed working dir (should return errors)="
3995
3996 test_48b() { # bug 2399
3997         rm -rf $DIR/$tdir
3998         test_mkdir $DIR/$tdir
3999         cd $DIR/$tdir
4000         rmdir $DIR/$tdir || error "remove cwd $DIR/$tdir failed"
4001         touch foo && error "'touch foo' worked after removing cwd"
4002         test_mkdir foo && error "'mkdir foo' worked after removing cwd"
4003         touch .foo && error "'touch .foo' worked after removing cwd"
4004         test_mkdir .foo && error "'mkdir .foo' worked after removing cwd"
4005         ls . > /dev/null && error "'ls .' worked after removing cwd"
4006         ls .. > /dev/null || error "'ls ..' failed after removing cwd"
4007         test_mkdir . && error "'mkdir .' worked after removing cwd"
4008         rmdir . && error "'rmdir .' worked after removing cwd"
4009         ln -s . foo && error "'ln -s .' worked after removing cwd"
4010         cd .. || echo "'cd ..' failed after removing cwd `pwd`"  #bug 3517
4011 }
4012 run_test 48b "Access removed working dir (should return errors)="
4013
4014 test_48c() { # bug 2350
4015         #lctl set_param debug=-1
4016         #set -vx
4017         rm -rf $DIR/$tdir
4018         test_mkdir -p $DIR/$tdir/dir
4019         cd $DIR/$tdir/dir
4020         $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
4021         $TRACE touch foo && error "touch foo worked after removing cwd"
4022         $TRACE test_mkdir foo && error "'mkdir foo' worked after removing cwd"
4023         touch .foo && error "touch .foo worked after removing cwd"
4024         test_mkdir .foo && error "mkdir .foo worked after removing cwd"
4025         $TRACE ls . && error "'ls .' worked after removing cwd"
4026         $TRACE ls .. || error "'ls ..' failed after removing cwd"
4027         $TRACE test_mkdir . && error "'mkdir .' worked after removing cwd"
4028         $TRACE rmdir . && error "'rmdir .' worked after removing cwd"
4029         $TRACE ln -s . foo && error "'ln -s .' worked after removing cwd"
4030         $TRACE cd .. || echo "'cd ..' failed after removing cwd `pwd`" #bug 3415
4031 }
4032 run_test 48c "Access removed working subdir (should return errors)"
4033
4034 test_48d() { # bug 2350
4035         #lctl set_param debug=-1
4036         #set -vx
4037         rm -rf $DIR/$tdir
4038         test_mkdir -p $DIR/$tdir/dir
4039         cd $DIR/$tdir/dir
4040         $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
4041         $TRACE rmdir $DIR/$tdir || error "remove parent $DIR/$tdir failed"
4042         $TRACE touch foo && error "'touch foo' worked after removing parent"
4043         $TRACE test_mkdir foo && error "mkdir foo worked after removing parent"
4044         touch .foo && error "'touch .foo' worked after removing parent"
4045         test_mkdir .foo && error "mkdir .foo worked after removing parent"
4046         $TRACE ls . && error "'ls .' worked after removing parent"
4047         $TRACE ls .. && error "'ls ..' worked after removing parent"
4048         $TRACE test_mkdir . && error "'mkdir .' worked after removing parent"
4049         $TRACE rmdir . && error "'rmdir .' worked after removing parent"
4050         $TRACE ln -s . foo && error "'ln -s .' worked after removing parent"
4051         true
4052 }
4053 run_test 48d "Access removed parent subdir (should return errors)"
4054
4055 test_48e() { # bug 4134
4056         #lctl set_param debug=-1
4057         #set -vx
4058         rm -rf $DIR/$tdir
4059         test_mkdir -p $DIR/$tdir/dir
4060         cd $DIR/$tdir/dir
4061         $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
4062         $TRACE rmdir $DIR/$tdir || error "remove parent $DIR/$tdir failed"
4063         $TRACE touch $DIR/$tdir || error "'touch $DIR/$tdir' failed"
4064         $TRACE chmod +x $DIR/$tdir || error "'chmod +x $DIR/$tdir' failed"
4065         # On a buggy kernel addition of "touch foo" after cd .. will
4066         # produce kernel oops in lookup_hash_it
4067         touch ../foo && error "'cd ..' worked after recreate parent"
4068         cd $DIR
4069         $TRACE rm $DIR/$tdir || error "rm '$DIR/$tdir' failed"
4070 }
4071 run_test 48e "Access to recreated parent subdir (should return errors)"
4072
4073 test_49() { # LU-1030
4074         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4075         remote_ost_nodsh && skip "remote OST with nodsh" && return
4076         # get ost1 size - lustre-OST0000
4077         ost1_size=$(do_facet ost1 $LFS df | grep ${ost1_svc} |
4078                 awk '{ print $4 }')
4079         # write 800M at maximum
4080         [[ $ost1_size -lt 2 ]] && ost1_size=2
4081         [[ $ost1_size -gt 819200 ]] && ost1_size=819200
4082
4083         $SETSTRIPE -c 1 -i 0 $DIR/$tfile
4084         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((ost1_size >> 2)) &
4085         local dd_pid=$!
4086
4087         # change max_pages_per_rpc while writing the file
4088         local osc1_mppc=osc.$(get_osc_import_name client ost1).max_pages_per_rpc
4089         local orig_mppc=$($LCTL get_param -n $osc1_mppc)
4090         # loop until dd process exits
4091         while ps ax -opid | grep -wq $dd_pid; do
4092                 $LCTL set_param $osc1_mppc=$((RANDOM % 256 + 1))
4093                 sleep $((RANDOM % 5 + 1))
4094         done
4095         # restore original max_pages_per_rpc
4096         $LCTL set_param $osc1_mppc=$orig_mppc
4097         rm $DIR/$tfile || error "rm $DIR/$tfile failed"
4098 }
4099 run_test 49 "Change max_pages_per_rpc won't break osc extent"
4100
4101 test_50() {
4102         # bug 1485
4103         test_mkdir $DIR/$tdir
4104         cd $DIR/$tdir
4105         ls /proc/$$/cwd || error "ls /proc/$$/cwd failed"
4106 }
4107 run_test 50 "special situations: /proc symlinks  ==============="
4108
4109 test_51a() {    # was test_51
4110         # bug 1516 - create an empty entry right after ".." then split dir
4111         test_mkdir -c1 $DIR/$tdir
4112         touch $DIR/$tdir/foo
4113         $MCREATE $DIR/$tdir/bar
4114         rm $DIR/$tdir/foo
4115         createmany -m $DIR/$tdir/longfile 201
4116         FNUM=202
4117         while [[ $(ls -sd $DIR/$tdir | awk '{ print $1 }') -eq 4 ]]; do
4118                 $MCREATE $DIR/$tdir/longfile$FNUM
4119                 FNUM=$(($FNUM + 1))
4120                 echo -n "+"
4121         done
4122         echo
4123         ls -l $DIR/$tdir > /dev/null || error "ls -l $DIR/$tdir failed"
4124 }
4125 run_test 51a "special situations: split htree with empty entry =="
4126
4127 cleanup_print_lfs_df () {
4128         trap 0
4129         $LFS df
4130         $LFS df -i
4131 }
4132
4133 test_51b() {
4134         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4135         local dir=$DIR/$tdir
4136
4137         local nrdirs=$((65536 + 100))
4138
4139         # cleanup the directory
4140         rm -fr $dir
4141
4142         test_mkdir -p -c1 $dir
4143
4144         $LFS df
4145         $LFS df -i
4146         local mdtidx=$(printf "%04x" $($LFS getstripe -M $dir))
4147         local numfree=$(lctl get_param -n mdc.$FSNAME-MDT$mdtidx*.filesfree)
4148         [[ $numfree -lt $nrdirs ]] &&
4149                 skip "not enough free inodes ($numfree) on MDT$mdtidx" &&
4150                 return
4151
4152         # need to check free space for the directories as well
4153         local blkfree=$(lctl get_param -n mdc.$FSNAME-MDT$mdtidx*.kbytesavail)
4154         numfree=$(( blkfree / $(fs_inode_ksize) ))
4155         [[ $numfree -lt $nrdirs ]] && skip "not enough blocks ($numfree)" &&
4156                 return
4157
4158         trap cleanup_print_lfsdf EXIT
4159
4160         # create files
4161         createmany -d $dir/d $nrdirs ||
4162                 error "failed to create $nrdirs subdirs in MDT$mdtidx:$dir"
4163
4164         # really created :
4165         nrdirs=$(ls -U $dir | wc -l)
4166
4167         # unlink all but 100 subdirectories, then check it still works
4168         local left=100
4169         local delete=$((nrdirs - left))
4170
4171         $LFS df
4172         $LFS df -i
4173
4174         # for ldiskfs the nlink count should be 1, but this is OSD specific
4175         # and so this is listed for informational purposes only
4176         echo "nlink before: $(stat -c %h $dir), created before: $nrdirs"
4177         unlinkmany -d $dir/d $delete ||
4178                 error "unlink of first $delete subdirs failed"
4179
4180         echo "nlink between: $(stat -c %h $dir)"
4181         local found=$(ls -U $dir | wc -l)
4182         [ $found -ne $left ] &&
4183                 error "can't find subdirs: found only $found, expected $left"
4184
4185         unlinkmany -d $dir/d $delete $left ||
4186                 error "unlink of second $left subdirs failed"
4187         # regardless of whether the backing filesystem tracks nlink accurately
4188         # or not, the nlink count shouldn't be more than "." and ".." here
4189         local after=$(stat -c %h $dir)
4190         [[ $after -gt 2 ]] && error "nlink after: $after > 2" ||
4191                 echo "nlink after: $after"
4192
4193         cleanup_print_lfs_df
4194 }
4195 run_test 51b "exceed 64k subdirectory nlink limit on create, verify unlink"
4196
4197 test_51d() {
4198         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4199         [[ $OSTCOUNT -lt 3 ]] &&
4200                 skip_env "skipping test with few OSTs" && return
4201         test_mkdir -p $DIR/$tdir
4202         createmany -o $DIR/$tdir/t- 1000
4203         $GETSTRIPE $DIR/$tdir > $TMP/$tfile
4204         for N in $(seq 0 $((OSTCOUNT - 1))); do
4205                 OBJS[$N]=$(awk -vobjs=0 '($1 == '$N') { objs += 1 } \
4206                         END { printf("%0.0f", objs) }' $TMP/$tfile)
4207                 OBJS0[$N]=$(grep -A 1 idx $TMP/$tfile | awk -vobjs=0 \
4208                         '($1 == '$N') { objs += 1 } \
4209                         END { printf("%0.0f", objs) }')
4210                 log "OST$N has ${OBJS[$N]} objects, ${OBJS0[$N]} are index 0"
4211         done
4212         unlinkmany $DIR/$tdir/t- 1000
4213
4214         NLAST=0
4215         for N in $(seq 1 $((OSTCOUNT - 1))); do
4216                 [[ ${OBJS[$N]} -lt $((${OBJS[$NLAST]} - 20)) ]] &&
4217                         error "OST $N has less objects vs OST $NLAST" \
4218                               " (${OBJS[$N]} < ${OBJS[$NLAST]}"
4219                 [[ ${OBJS[$N]} -gt $((${OBJS[$NLAST]} + 20)) ]] &&
4220                         error "OST $N has less objects vs OST $NLAST" \
4221                               " (${OBJS[$N]} < ${OBJS[$NLAST]}"
4222
4223                 [[ ${OBJS0[$N]} -lt $((${OBJS0[$NLAST]} - 20)) ]] &&
4224                         error "OST $N has less #0 objects vs OST $NLAST" \
4225                               " (${OBJS0[$N]} < ${OBJS0[$NLAST]}"
4226                 [[ ${OBJS0[$N]} -gt $((${OBJS0[$NLAST]} + 20)) ]] &&
4227                         error "OST $N has less #0 objects vs OST $NLAST" \
4228                               " (${OBJS0[$N]} < ${OBJS0[$NLAST]}"
4229                 NLAST=$N
4230         done
4231         rm -f $TMP/$tfile
4232 }
4233 run_test 51d "check object distribution"
4234
4235 test_51e() {
4236         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
4237                 skip "Only applicable to ldiskfs-based MDTs"
4238                 return
4239         fi
4240
4241         test_mkdir -c1 $DIR/$tdir       || error "create $tdir failed"
4242         test_mkdir -c1 $DIR/$tdir/d0    || error "create d0 failed"
4243
4244         touch $DIR/$tdir/d0/foo
4245         createmany -l $DIR/$tdir/d0/foo $DIR/$tdir/d0/f- 65001 &&
4246                 error "file exceed 65000 nlink limit!"
4247         unlinkmany $DIR/$tdir/d0/f- 65001
4248         return 0
4249 }
4250 run_test 51e "check file nlink limit"
4251
4252 test_51f() {
4253         test_mkdir $DIR/$tdir
4254
4255         local max=100000
4256         local ulimit_old=$(ulimit -n)
4257         local spare=20 # number of spare fd's for scripts/libraries, etc.
4258         local mdt=$(lfs getstripe -M $DIR/$tdir)
4259         local numfree=$(lfs df -i $DIR/$tdir | awk '/MDT:'$mdt'/ { print $4 }')
4260
4261         echo "MDT$mdt numfree=$numfree, max=$max"
4262         [[ $numfree -gt $max ]] && numfree=$max || numfree=$((numfree * 7 / 8))
4263         if [ $((numfree + spare)) -gt $ulimit_old ]; then
4264                 while ! ulimit -n $((numfree + spare)); do
4265                         numfree=$((numfree * 3 / 4))
4266                 done
4267                 echo "changed ulimit from $ulimit_old to $((numfree + spare))"
4268         else
4269                 echo "left ulimit at $ulimit_old"
4270         fi
4271
4272         createmany -o -k -t 120 $DIR/$tdir/f $numfree ||
4273                 error "create+open $numfree files in $DIR/$tdir failed"
4274         ulimit -n $ulimit_old
4275
4276         # if createmany exits at 120s there will be fewer than $numfree files
4277         unlinkmany $DIR/$tdir/f $numfree || true
4278 }
4279 run_test 51f "check many open files limit"
4280
4281 test_52a() {
4282         [ -f $DIR/$tdir/foo ] && chattr -a $DIR/$tdir/foo
4283         test_mkdir -p $DIR/$tdir
4284         touch $DIR/$tdir/foo
4285         chattr +a $DIR/$tdir/foo || error "chattr +a failed"
4286         echo bar >> $DIR/$tdir/foo || error "append bar failed"
4287         cp /etc/hosts $DIR/$tdir/foo && error "cp worked"
4288         rm -f $DIR/$tdir/foo 2>/dev/null && error "rm worked"
4289         link $DIR/$tdir/foo $DIR/$tdir/foo_link 2>/dev/null &&
4290                                         error "link worked"
4291         echo foo >> $DIR/$tdir/foo || error "append foo failed"
4292         mrename $DIR/$tdir/foo $DIR/$tdir/foo_ren && error "rename worked"
4293         lsattr $DIR/$tdir/foo | egrep -q "^-+a[-e]+ $DIR/$tdir/foo" ||
4294                                                      error "lsattr"
4295         chattr -a $DIR/$tdir/foo || error "chattr -a failed"
4296         cp -r $DIR/$tdir $TMP/
4297         rm -fr $DIR/$tdir $TMP/$tdir || error "cleanup rm failed"
4298 }
4299 run_test 52a "append-only flag test (should return errors)"
4300
4301 test_52b() {
4302         [ -f $DIR/$tdir/foo ] && chattr -i $DIR/$tdir/foo
4303         test_mkdir -p $DIR/$tdir
4304         touch $DIR/$tdir/foo
4305         chattr +i $DIR/$tdir/foo || error "chattr +i failed"
4306         cat test > $DIR/$tdir/foo && error "cat test worked"
4307         cp /etc/hosts $DIR/$tdir/foo && error "cp worked"
4308         rm -f $DIR/$tdir/foo 2>/dev/null && error "rm worked"
4309         link $DIR/$tdir/foo $DIR/$tdir/foo_link 2>/dev/null &&
4310                                         error "link worked"
4311         echo foo >> $DIR/$tdir/foo && error "echo worked"
4312         mrename $DIR/$tdir/foo $DIR/$tdir/foo_ren && error "rename worked"
4313         [ -f $DIR/$tdir/foo ] || error "$tdir/foo is not a file"
4314         [ -f $DIR/$tdir/foo_ren ] && error "$tdir/foo_ren is not a file"
4315         lsattr $DIR/$tdir/foo | egrep -q "^-+i[-e]+ $DIR/$tdir/foo" ||
4316                                                         error "lsattr"
4317         chattr -i $DIR/$tdir/foo || error "chattr failed"
4318
4319         rm -fr $DIR/$tdir || error "unable to remove $DIR/$tdir"
4320 }
4321 run_test 52b "immutable flag test (should return errors) ======="
4322
4323 test_53() {
4324         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4325         remote_mds_nodsh && skip "remote MDS with nodsh" && return
4326         remote_ost_nodsh && skip "remote OST with nodsh" && return
4327
4328         local param
4329         local param_seq
4330         local ostname
4331         local mds_last
4332         local mds_last_seq
4333         local ost_last
4334         local ost_last_seq
4335         local ost_last_id
4336         local ostnum
4337         local node
4338         local found=false
4339         local support_last_seq=true
4340
4341         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.60) ]] ||
4342                 support_last_seq=false
4343
4344         # only test MDT0000
4345         local mdtosc=$(get_mdtosc_proc_path $SINGLEMDS)
4346         local value
4347         for value in $(do_facet $SINGLEMDS \
4348                        $LCTL get_param osc.$mdtosc.prealloc_last_id) ; do
4349                 param=$(echo ${value[0]} | cut -d "=" -f1)
4350                 ostname=$(echo $param | cut -d "." -f2 | cut -d - -f 1-2)
4351
4352                 if $support_last_seq; then
4353                         param_seq=$(echo $param |
4354                                 sed -e s/prealloc_last_id/prealloc_last_seq/g)
4355                         mds_last_seq=$(do_facet $SINGLEMDS \
4356                                        $LCTL get_param -n $param_seq)
4357                 fi
4358                 mds_last=$(do_facet $SINGLEMDS $LCTL get_param -n $param)
4359
4360                 ostnum=$(index_from_ostuuid ${ostname}_UUID)
4361                 node=$(facet_active_host ost$((ostnum+1)))
4362                 param="obdfilter.$ostname.last_id"
4363                 for ost_last in $(do_node $node $LCTL get_param -n $param) ; do
4364                         echo "$ostname.last_id=$ost_last; MDS.last_id=$mds_last"
4365                         ost_last_id=$ost_last
4366
4367                         if $support_last_seq; then
4368                                 ost_last_id=$(echo $ost_last |
4369                                               awk -F':' '{print $2}' |
4370                                               sed -e "s/^0x//g")
4371                                 ost_last_seq=$(echo $ost_last |
4372                                                awk -F':' '{print $1}')
4373                                 [[ $ost_last_seq = $mds_last_seq ]] || continue
4374                         fi
4375
4376                         if [[ $ost_last_id != $mds_last ]]; then
4377                                 error "$ost_last_id != $mds_last"
4378                         else
4379                                 found=true
4380                                 break
4381                         fi
4382                 done
4383         done
4384         $found || error "can not match last_seq/last_id for $mdtosc"
4385         return 0
4386 }
4387 run_test 53 "verify that MDS and OSTs agree on pre-creation ===="
4388
4389 test_54a() {
4390         perl -MSocket -e ';' || { skip "no Socket perl module installed" && return; }
4391
4392         $SOCKETSERVER $DIR/socket ||
4393                 error "$SOCKETSERVER $DIR/socket failed: $?"
4394         $SOCKETCLIENT $DIR/socket ||
4395                 error "$SOCKETCLIENT $DIR/socket failed: $?"
4396         $MUNLINK $DIR/socket || error "$MUNLINK $DIR/socket failed: $?"
4397 }
4398 run_test 54a "unix domain socket test =========================="
4399
4400 test_54b() {
4401         f="$DIR/f54b"
4402         mknod $f c 1 3
4403         chmod 0666 $f
4404         dd if=/dev/zero of=$f bs=$(page_size) count=1
4405 }
4406 run_test 54b "char device works in lustre ======================"
4407
4408 find_loop_dev() {
4409         [ -b /dev/loop/0 ] && LOOPBASE=/dev/loop/
4410         [ -b /dev/loop0 ] && LOOPBASE=/dev/loop
4411         [ -z "$LOOPBASE" ] && echo "/dev/loop/0 and /dev/loop0 gone?" && return
4412
4413         for i in $(seq 3 7); do
4414                 losetup $LOOPBASE$i > /dev/null 2>&1 && continue
4415                 LOOPDEV=$LOOPBASE$i
4416                 LOOPNUM=$i
4417                 break
4418         done
4419 }
4420
4421 cleanup_54c() {
4422         local rc=0
4423         loopdev="$DIR/loop54c"
4424
4425         trap 0
4426         $UMOUNT $DIR/$tdir || rc=$?
4427         losetup -d $loopdev || true
4428         losetup -d $LOOPDEV || true
4429         rm -rf $loopdev $DIR/$tfile $DIR/$tdir
4430         return $rc
4431 }
4432
4433 test_54c() {
4434         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4435         loopdev="$DIR/loop54c"
4436
4437         find_loop_dev
4438         [ -z "$LOOPNUM" ] && echo "couldn't find empty loop device" && return
4439         trap cleanup_54c EXIT
4440         mknod $loopdev b 7 $LOOPNUM
4441         echo "make a loop file system with $DIR/$tfile on $loopdev ($LOOPNUM)."
4442         dd if=/dev/zero of=$DIR/$tfile bs=$(get_page_size client) seek=1024 count=1 > /dev/null
4443         losetup $loopdev $DIR/$tfile ||
4444                 error "can't set up $loopdev for $DIR/$tfile"
4445         mkfs.ext2 $loopdev || error "mke2fs on $loopdev"
4446         test_mkdir -p $DIR/$tdir
4447         mount -t ext2 $loopdev $DIR/$tdir ||
4448                 error "error mounting $loopdev on $DIR/$tdir"
4449         dd if=/dev/zero of=$DIR/$tdir/tmp bs=$(get_page_size client) count=30 ||
4450                 error "dd write"
4451         df $DIR/$tdir
4452         dd if=$DIR/$tdir/tmp of=/dev/zero bs=$(get_page_size client) count=30 ||
4453                 error "dd read"
4454         cleanup_54c
4455 }
4456 run_test 54c "block device works in lustre ====================="
4457
4458 test_54d() {
4459         f="$DIR/f54d"
4460         string="aaaaaa"
4461         mknod $f p
4462         [ "$string" = $(echo $string > $f | cat $f) ] || error "$f != $string"
4463 }
4464 run_test 54d "fifo device works in lustre ======================"
4465
4466 test_54e() {
4467         f="$DIR/f54e"
4468         string="aaaaaa"
4469         cp -aL /dev/console $f
4470         echo $string > $f || error "echo $string to $f failed"
4471 }
4472 run_test 54e "console/tty device works in lustre ======================"
4473
4474 #The test_55 used to be iopen test and it was removed by bz#24037.
4475 #run_test 55 "check iopen_connect_dentry() ======================"
4476
4477 test_56a() {    # was test_56
4478         rm -rf $DIR/$tdir
4479         $SETSTRIPE -d $DIR
4480         test_mkdir -p $DIR/$tdir/dir
4481         NUMFILES=3
4482         NUMFILESx2=$(($NUMFILES * 2))
4483         for i in $(seq 1 $NUMFILES); do
4484                 touch $DIR/$tdir/file$i
4485                 touch $DIR/$tdir/dir/file$i
4486         done
4487
4488         # test lfs getstripe with --recursive
4489         FILENUM=$($GETSTRIPE --recursive $DIR/$tdir | grep -c obdidx)
4490         [[ $FILENUM -eq $NUMFILESx2 ]] ||
4491                 error "$GETSTRIPE --recursive: found $FILENUM, not $NUMFILESx2"
4492         FILENUM=$($GETSTRIPE $DIR/$tdir | grep -c obdidx)
4493         [[ $FILENUM -eq $NUMFILES ]] ||
4494                 error "$GETSTRIPE $DIR/$tdir: found $FILENUM, not $NUMFILES"
4495         echo "$GETSTRIPE --recursive passed."
4496
4497         # test lfs getstripe with file instead of dir
4498         FILENUM=$($GETSTRIPE $DIR/$tdir/file1 | grep -c obdidx)
4499         [[ $FILENUM -eq 1 ]] ||
4500                 error "$GETSTRIPE $DIR/$tdir/file1: found $FILENUM, not 1"
4501         echo "$GETSTRIPE file1 passed."
4502
4503         #test lfs getstripe with --verbose
4504         [[ $($GETSTRIPE --verbose $DIR/$tdir |
4505                 grep -c lmm_magic) -eq $NUMFILES ]] ||
4506                 error "$GETSTRIPE --verbose $DIR/$tdir: want $NUMFILES"
4507         [[ $($GETSTRIPE $DIR/$tdir | grep -c lmm_magic) -eq 0 ]] ||
4508                 error "$GETSTRIPE $DIR/$tdir: showed lmm_magic"
4509
4510         #test lfs getstripe with -v prints lmm_fid
4511         [[ $($GETSTRIPE -v $DIR/$tdir | grep -c lmm_fid) -eq $NUMFILES ]] ||
4512                 error "$GETSTRIPE -v $DIR/$tdir: want $NUMFILES lmm_fid: lines"
4513         [[ $($GETSTRIPE $DIR/$tdir | grep -c lmm_fid) -eq 0 ]] ||
4514                 error "$GETSTRIPE $DIR/$tdir: showed lmm_fid"
4515         echo "$GETSTRIPE --verbose passed."
4516
4517         #check for FID information
4518         local fid1=$($GETSTRIPE --fid $DIR/$tdir/file1)
4519         local fid2=$($GETSTRIPE --verbose $DIR/$tdir/file1 |
4520                        awk '/lmm_fid: / { print $2 }')
4521         local fid3=$($LFS path2fid $DIR/$tdir/file1)
4522         [ "$fid1" != "$fid2" ] &&
4523                 error "getstripe --fid $fid1 != getstripe --verbose $fid2"
4524         [ "$fid1" != "$fid3" ] &&
4525                 error "getstripe --fid $fid1 != lfs path2fid $fid3"
4526         echo "$GETSTRIPE --fid passed."
4527
4528         #test lfs getstripe with --obd
4529         $GETSTRIPE --obd wrong_uuid $DIR/$tdir 2>&1 |
4530                 grep -q "unknown obduuid" ||
4531                 error "$GETSTRIPE --obd wrong_uuid should return error message"
4532
4533         [[ $OSTCOUNT -lt 2 ]] &&
4534                 skip_env "skipping other $GETSTRIPE --obd test" && return
4535
4536         OSTIDX=1
4537         OBDUUID=$(ostuuid_from_index $OSTIDX)
4538         FILENUM=$($GETSTRIPE -ir $DIR/$tdir | grep "^$OSTIDX\$" | wc -l)
4539         FOUND=$($GETSTRIPE -r --obd $OBDUUID $DIR/$tdir | grep obdidx | wc -l)
4540         [[ $FOUND -eq $FILENUM ]] ||
4541                 error "$GETSTRIPE --obd wrong: found $FOUND, expected $FILENUM"
4542         [[ $($GETSTRIPE -r -v --obd $OBDUUID $DIR/$tdir |
4543                 sed '/^[         ]*'${OSTIDX}'[  ]/d' |
4544                 sed -n '/^[      ]*[0-9][0-9]*[  ]/p' | wc -l) -eq 0 ]] ||
4545                 error "$GETSTRIPE --obd: should not show file on other obd"
4546         echo "$GETSTRIPE --obd passed"
4547 }
4548 run_test 56a "check $GETSTRIPE"
4549
4550 test_56b() {
4551         test_mkdir $DIR/$tdir
4552         NUMDIRS=3
4553         for i in $(seq 1 $NUMDIRS); do
4554                 test_mkdir $DIR/$tdir/dir$i
4555         done
4556
4557         # test lfs getdirstripe default mode is non-recursion, which is
4558         # different from lfs getstripe
4559         dircnt=$($LFS getdirstripe $DIR/$tdir | grep -c lmv_stripe_count)
4560         [[ $dircnt -eq 1 ]] ||
4561                 error "$LFS getdirstripe: found $dircnt, not 1"
4562         dircnt=$($LFS getdirstripe --recursive $DIR/$tdir |
4563                 grep -c lmv_stripe_count)
4564         [[ $dircnt -eq $((NUMDIRS + 1)) ]] ||
4565                 error "$LFS getdirstripe --recursive: found $dircnt, \
4566                         not $((NUMDIRS + 1))"
4567 }
4568 run_test 56b "check $LFS getdirstripe"
4569
4570 test_56c() {
4571         local ost_idx=0
4572         local ost_name=$(ostname_from_index $ost_idx)
4573
4574         local old_status=$(ost_dev_status $ost_idx)
4575         [[ -z "$old_status" ]] ||
4576                 { skip_env "OST $ost_name is in $old_status status"; return 0; }
4577
4578         do_facet ost1 $LCTL set_param -n obdfilter.$ost_name.degraded=1
4579         sleep_maxage
4580
4581         local new_status=$(ost_dev_status $ost_idx)
4582         [[ "$new_status" = "D" ]] ||
4583                 error "OST $ost_name is in status of '$new_status', not 'D'"
4584
4585         do_facet ost1 $LCTL set_param -n obdfilter.$ost_name.degraded=0
4586         sleep_maxage
4587
4588         new_status=$(ost_dev_status $ost_idx)
4589         [[ -z "$new_status" ]] ||
4590                 error "OST $ost_name is in status of '$new_status', not ''"
4591 }
4592 run_test 56c "check 'lfs df' showing device status"
4593
4594 NUMFILES=3
4595 NUMDIRS=3
4596 setup_56() {
4597         local LOCAL_NUMFILES="$1"
4598         local LOCAL_NUMDIRS="$2"
4599         local MKDIR_PARAMS="$3"
4600         local DIR_STRIPE_PARAMS="$4"
4601
4602         if [ ! -d "$TDIR" ] ; then
4603                 test_mkdir -p $DIR_STRIPE_PARAMS $TDIR
4604                 [ "$MKDIR_PARAMS" ] && $SETSTRIPE $MKDIR_PARAMS $TDIR
4605                 for i in `seq 1 $LOCAL_NUMFILES` ; do
4606                         touch $TDIR/file$i
4607                 done
4608                 for i in `seq 1 $LOCAL_NUMDIRS` ; do
4609                         test_mkdir $DIR_STRIPE_PARAMS $TDIR/dir$i
4610                         for j in `seq 1 $LOCAL_NUMFILES` ; do
4611                                 touch $TDIR/dir$i/file$j
4612                         done
4613                 done
4614         fi
4615 }
4616
4617 setup_56_special() {
4618         LOCAL_NUMFILES=$1
4619         LOCAL_NUMDIRS=$2
4620         setup_56 $1 $2
4621         if [ ! -e "$TDIR/loop1b" ] ; then
4622                 for i in `seq 1 $LOCAL_NUMFILES` ; do
4623                         mknod $TDIR/loop${i}b b 7 $i
4624                         mknod $TDIR/null${i}c c 1 3
4625                         ln -s $TDIR/file1 $TDIR/link${i}l
4626                 done
4627                 for i in `seq 1 $LOCAL_NUMDIRS` ; do
4628                         mknod $TDIR/dir$i/loop${i}b b 7 $i
4629                         mknod $TDIR/dir$i/null${i}c c 1 3
4630                         ln -s $TDIR/dir$i/file1 $TDIR/dir$i/link${i}l
4631                 done
4632         fi
4633 }
4634
4635 test_56g() {
4636         $SETSTRIPE -d $DIR
4637
4638         TDIR=$DIR/${tdir}g
4639         setup_56 $NUMFILES $NUMDIRS
4640
4641         EXPECTED=$(($NUMDIRS + 2))
4642         # test lfs find with -name
4643         for i in $(seq 1 $NUMFILES) ; do
4644                 NUMS=$($LFIND -name "*$i" $TDIR | wc -l)
4645                 [ $NUMS -eq $EXPECTED ] ||
4646                         error "lfs find -name \"*$i\" $TDIR wrong: "\
4647                               "found $NUMS, expected $EXPECTED"
4648         done
4649 }
4650 run_test 56g "check lfs find -name ============================="
4651
4652 test_56h() {
4653         $SETSTRIPE -d $DIR
4654
4655         TDIR=$DIR/${tdir}g
4656         setup_56 $NUMFILES $NUMDIRS
4657
4658         EXPECTED=$(((NUMDIRS + 1) * (NUMFILES - 1) + NUMFILES))
4659         # test lfs find with ! -name
4660         for i in $(seq 1 $NUMFILES) ; do
4661                 NUMS=$($LFIND ! -name "*$i" $TDIR | wc -l)
4662                 [ $NUMS -eq $EXPECTED ] ||
4663                         error "lfs find ! -name \"*$i\" $TDIR wrong: "\
4664                               "found $NUMS, expected $EXPECTED"
4665         done
4666 }
4667 run_test 56h "check lfs find ! -name ============================="
4668
4669 test_56i() {
4670        tdir=${tdir}i
4671        test_mkdir -p $DIR/$tdir
4672        UUID=$(ostuuid_from_index 0 $DIR/$tdir)
4673        CMD="$LFIND -ost $UUID $DIR/$tdir"
4674        OUT=$($CMD)
4675        [ -z "$OUT" ] || error "\"$CMD\" returned directory '$OUT'"
4676 }
4677 run_test 56i "check 'lfs find -ost UUID' skips directories ======="
4678
4679 test_56j() {
4680         TDIR=$DIR/${tdir}g
4681         setup_56_special $NUMFILES $NUMDIRS
4682
4683         EXPECTED=$((NUMDIRS + 1))
4684         CMD="$LFIND -type d $TDIR"
4685         NUMS=$($CMD | wc -l)
4686         [ $NUMS -eq $EXPECTED ] ||
4687                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4688 }
4689 run_test 56j "check lfs find -type d ============================="
4690
4691 test_56k() {
4692         TDIR=$DIR/${tdir}g
4693         setup_56_special $NUMFILES $NUMDIRS
4694
4695         EXPECTED=$(((NUMDIRS + 1) * NUMFILES))
4696         CMD="$LFIND -type f $TDIR"
4697         NUMS=$($CMD | wc -l)
4698         [ $NUMS -eq $EXPECTED ] ||
4699                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4700 }
4701 run_test 56k "check lfs find -type f ============================="
4702
4703 test_56l() {
4704         TDIR=$DIR/${tdir}g
4705         setup_56_special $NUMFILES $NUMDIRS
4706
4707         EXPECTED=$((NUMDIRS + NUMFILES))
4708         CMD="$LFIND -type b $TDIR"
4709         NUMS=$($CMD | wc -l)
4710         [ $NUMS -eq $EXPECTED ] ||
4711                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4712 }
4713 run_test 56l "check lfs find -type b ============================="
4714
4715 test_56m() {
4716         TDIR=$DIR/${tdir}g
4717         setup_56_special $NUMFILES $NUMDIRS
4718
4719         EXPECTED=$((NUMDIRS + NUMFILES))
4720         CMD="$LFIND -type c $TDIR"
4721         NUMS=$($CMD | wc -l)
4722         [ $NUMS -eq $EXPECTED ] ||
4723                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4724 }
4725 run_test 56m "check lfs find -type c ============================="
4726
4727 test_56n() {
4728         TDIR=$DIR/${tdir}g
4729         setup_56_special $NUMFILES $NUMDIRS
4730
4731         EXPECTED=$((NUMDIRS + NUMFILES))
4732         CMD="$LFIND -type l $TDIR"
4733         NUMS=$($CMD | wc -l)
4734         [ $NUMS -eq $EXPECTED ] ||
4735                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4736 }
4737 run_test 56n "check lfs find -type l ============================="
4738
4739 test_56o() {
4740         TDIR=$DIR/${tdir}o
4741         setup_56 $NUMFILES $NUMDIRS
4742         utime $TDIR/file1 > /dev/null || error "utime (1)"
4743         utime $TDIR/file2 > /dev/null || error "utime (2)"
4744         utime $TDIR/dir1 > /dev/null || error "utime (3)"
4745         utime $TDIR/dir2 > /dev/null || error "utime (4)"
4746         utime $TDIR/dir1/file1 > /dev/null || error "utime (5)"
4747         dd if=/dev/zero count=1 >> $TDIR/dir1/file1 && sync
4748
4749         EXPECTED=4
4750         NUMS=`$LFIND -mtime +0 $TDIR | wc -l`
4751         [ $NUMS -eq $EXPECTED ] || \
4752                 error "lfs find -mtime +0 $TDIR wrong: found $NUMS, expected $EXPECTED"
4753
4754         EXPECTED=12
4755         CMD="$LFIND -mtime 0 $TDIR"
4756         NUMS=$($CMD | wc -l)
4757         [ $NUMS -eq $EXPECTED ] ||
4758                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4759 }
4760 run_test 56o "check lfs find -mtime for old files =========================="
4761
4762 test_56p() {
4763         [ $RUNAS_ID -eq $UID ] &&
4764                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
4765
4766         TDIR=$DIR/${tdir}p
4767         setup_56 $NUMFILES $NUMDIRS
4768
4769         chown $RUNAS_ID $TDIR/file* || error "chown $DIR/${tdir}g/file$i failed"
4770         EXPECTED=$NUMFILES
4771         CMD="$LFIND -uid $RUNAS_ID $TDIR"
4772         NUMS=$($CMD | wc -l)
4773         [ $NUMS -eq $EXPECTED ] || \
4774                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4775
4776         EXPECTED=$(((NUMFILES + 1) * NUMDIRS + 1))
4777         CMD="$LFIND ! -uid $RUNAS_ID $TDIR"
4778         NUMS=$($CMD | wc -l)
4779         [ $NUMS -eq $EXPECTED ] || \
4780                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4781 }
4782 run_test 56p "check lfs find -uid and ! -uid ==============================="
4783
4784 test_56q() {
4785         [ $RUNAS_ID -eq $UID ] &&
4786                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
4787
4788         TDIR=$DIR/${tdir}q
4789         setup_56 $NUMFILES $NUMDIRS
4790
4791         chgrp $RUNAS_GID $TDIR/file* || error "chown $TDIR/file$i failed"
4792
4793         EXPECTED=$NUMFILES
4794         CMD="$LFIND -gid $RUNAS_GID $TDIR"
4795         NUMS=$($CMD | wc -l)
4796         [ $NUMS -eq $EXPECTED ] ||
4797                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4798
4799         EXPECTED=$(( ($NUMFILES+1) * $NUMDIRS + 1))
4800         CMD="$LFIND ! -gid $RUNAS_GID $TDIR"
4801         NUMS=$($CMD | wc -l)
4802         [ $NUMS -eq $EXPECTED ] ||
4803                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4804 }
4805 run_test 56q "check lfs find -gid and ! -gid ==============================="
4806
4807 test_56r() {
4808         TDIR=$DIR/${tdir}r
4809         setup_56 $NUMFILES $NUMDIRS
4810
4811         EXPECTED=12
4812         CMD="$LFIND -size 0 -type f $TDIR"
4813         NUMS=$($CMD | wc -l)
4814         [ $NUMS -eq $EXPECTED ] ||
4815                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4816         EXPECTED=0
4817         CMD="$LFIND ! -size 0 -type f $TDIR"
4818         NUMS=$($CMD | wc -l)
4819         [ $NUMS -eq $EXPECTED ] ||
4820                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4821         echo "test" > $TDIR/$tfile
4822         echo "test2" > $TDIR/$tfile.2 && sync
4823         EXPECTED=1
4824         CMD="$LFIND -size 5 -type f $TDIR"
4825         NUMS=$($CMD | wc -l)
4826         [ $NUMS -eq $EXPECTED ] ||
4827                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4828         EXPECTED=1
4829         CMD="$LFIND -size +5 -type f $TDIR"
4830         NUMS=$($CMD | wc -l)
4831         [ $NUMS -eq $EXPECTED ] ||
4832                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4833         EXPECTED=2
4834         CMD="$LFIND -size +0 -type f $TDIR"
4835         NUMS=$($CMD | wc -l)
4836         [ $NUMS -eq $EXPECTED ] ||
4837                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4838         EXPECTED=2
4839         CMD="$LFIND ! -size -5 -type f $TDIR"
4840         NUMS=$($CMD | wc -l)
4841         [ $NUMS -eq $EXPECTED ] ||
4842                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4843         EXPECTED=12
4844         CMD="$LFIND -size -5 -type f $TDIR"
4845         NUMS=$($CMD | wc -l)
4846         [ $NUMS -eq $EXPECTED ] ||
4847                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4848 }
4849 run_test 56r "check lfs find -size works =========================="
4850
4851 test_56s() { # LU-611
4852         TDIR=$DIR/${tdir}s
4853
4854         #LU-9369
4855         setup_56 0 $NUMDIRS
4856         for i in $(seq 1 $NUMDIRS); do
4857                 $SETSTRIPE -c $((OSTCOUNT + 1)) $TDIR/dir$i/$tfile
4858         done
4859         EXPECTED=$NUMDIRS
4860         CMD="$LFIND -c $OSTCOUNT $TDIR"
4861         NUMS=$($CMD | wc -l)
4862         [ $NUMS -eq $EXPECTED ] || {
4863                 $GETSTRIPE -R $TDIR
4864                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4865         }
4866         rm -rf $TDIR
4867
4868         setup_56 $NUMFILES $NUMDIRS "-c $OSTCOUNT"
4869         if [[ $OSTCOUNT -gt 1 ]]; then
4870                 $SETSTRIPE -c 1 $TDIR/$tfile.{0,1,2,3}
4871                 ONESTRIPE=4
4872                 EXTRA=4
4873         else
4874                 ONESTRIPE=$(((NUMDIRS + 1) * NUMFILES))
4875                 EXTRA=0
4876         fi
4877
4878         EXPECTED=$(((NUMDIRS + 1) * NUMFILES))
4879         CMD="$LFIND -stripe-count $OSTCOUNT -type f $TDIR"
4880         NUMS=$($CMD | wc -l)
4881         [ $NUMS -eq $EXPECTED ] || {
4882                 $GETSTRIPE -R $TDIR
4883                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4884         }
4885
4886         EXPECTED=$(((NUMDIRS + 1) * NUMFILES + EXTRA))
4887         CMD="$LFIND -stripe-count +0 -type f $TDIR"
4888         NUMS=$($CMD | wc -l)
4889         [ $NUMS -eq $EXPECTED ] || {
4890                 $GETSTRIPE -R $TDIR
4891                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4892         }
4893
4894         EXPECTED=$ONESTRIPE
4895         CMD="$LFIND -stripe-count 1 -type f $TDIR"
4896         NUMS=$($CMD | wc -l)
4897         [ $NUMS -eq $EXPECTED ] || {
4898                 $GETSTRIPE -R $TDIR
4899                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4900         }
4901
4902         CMD="$LFIND -stripe-count -2 -type f $TDIR"
4903         NUMS=$($CMD | wc -l)
4904         [ $NUMS -eq $EXPECTED ] || {
4905                 $GETSTRIPE -R $TDIR
4906                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4907         }
4908
4909         EXPECTED=0
4910         CMD="$LFIND -stripe-count $((OSTCOUNT + 1)) -type f $TDIR"
4911         NUMS=$($CMD | wc -l)
4912         [ $NUMS -eq $EXPECTED ] || {
4913                 $GETSTRIPE -R $TDIR
4914                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4915         }
4916 }
4917 run_test 56s "check lfs find -stripe-count works"
4918
4919 test_56t() { # LU-611
4920         TDIR=$DIR/${tdir}t
4921
4922         #LU-9369
4923         setup_56 0 $NUMDIRS
4924         for i in $(seq 1 $NUMDIRS); do
4925                 $SETSTRIPE -S 4M $TDIR/dir$i/$tfile
4926         done
4927         EXPECTED=$NUMDIRS
4928         CMD="$LFIND -S 4M $TDIR"
4929         NUMS=$($CMD | wc -l)
4930         [ $NUMS -eq $EXPECTED ] || {
4931                 $GETSTRIPE -R $TDIR
4932                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4933         }
4934         rm -rf $TDIR
4935
4936         setup_56 $NUMFILES $NUMDIRS "--stripe-size 512k"
4937
4938         $SETSTRIPE -S 256k $TDIR/$tfile.{0,1,2,3}
4939
4940         EXPECTED=$(((NUMDIRS + 1) * NUMFILES))
4941         CMD="$LFIND -stripe-size 512k -type f $TDIR"
4942         NUMS=$($CMD | wc -l)
4943         [ $NUMS -eq $EXPECTED ] ||
4944                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4945
4946         CMD="$LFIND -stripe-size +320k -type f $TDIR"
4947         NUMS=$($CMD | wc -l)
4948         [ $NUMS -eq $EXPECTED ] ||
4949                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4950
4951         EXPECTED=$(((NUMDIRS + 1) * NUMFILES + 4))
4952         CMD="$LFIND -stripe-size +200k -type f $TDIR"
4953         NUMS=$($CMD | wc -l)
4954         [ $NUMS -eq $EXPECTED ] ||
4955                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4956
4957         CMD="$LFIND -stripe-size -640k -type f $TDIR"
4958         NUMS=$($CMD | wc -l)
4959         [ $NUMS -eq $EXPECTED ] ||
4960                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4961
4962         EXPECTED=4
4963         CMD="$LFIND -stripe-size 256k -type f $TDIR"
4964         NUMS=$($CMD | wc -l)
4965         [ $NUMS -eq $EXPECTED ] ||
4966                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4967
4968         CMD="$LFIND -stripe-size -320k -type f $TDIR"
4969         NUMS=$($CMD | wc -l)
4970         [ $NUMS -eq $EXPECTED ] ||
4971                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4972
4973         EXPECTED=0
4974         CMD="$LFIND -stripe-size 1024k -type f $TDIR"
4975         NUMS=$($CMD | wc -l)
4976         [ $NUMS -eq $EXPECTED ] ||
4977                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4978 }
4979 run_test 56t "check lfs find -stripe-size works"
4980
4981 test_56u() { # LU-611
4982         TDIR=$DIR/${tdir}u
4983         setup_56 $NUMFILES $NUMDIRS "-i 0"
4984
4985         if [[ $OSTCOUNT -gt 1 ]]; then
4986                 $SETSTRIPE -i 1 $TDIR/$tfile.{0,1,2,3}
4987                 ONESTRIPE=4
4988         else
4989                 ONESTRIPE=0
4990         fi
4991
4992         EXPECTED=$(((NUMDIRS + 1) * NUMFILES))
4993         CMD="$LFIND -stripe-index 0 -type f $TDIR"
4994         NUMS=$($CMD | wc -l)
4995         [ $NUMS -eq $EXPECTED ] ||
4996                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4997
4998         EXPECTED=$ONESTRIPE
4999         CMD="$LFIND -stripe-index 1 -type f $TDIR"
5000         NUMS=$($CMD | wc -l)
5001         [ $NUMS -eq $EXPECTED ] ||
5002                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
5003
5004         CMD="$LFIND ! -stripe-index 0 -type f $TDIR"
5005         NUMS=$($CMD | wc -l)
5006         [ $NUMS -eq $EXPECTED ] ||
5007                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
5008
5009         EXPECTED=0
5010         # This should produce an error and not return any files
5011         CMD="$LFIND -stripe-index $OSTCOUNT -type f $TDIR"
5012         NUMS=$($CMD 2>/dev/null | wc -l)
5013         [ $NUMS -eq $EXPECTED ] ||
5014                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
5015
5016         if [[ $OSTCOUNT -gt 1 ]]; then
5017                 EXPECTED=$(((NUMDIRS + 1) * NUMFILES + ONESTRIPE))
5018                 CMD="$LFIND -stripe-index 0,1 -type f $TDIR"
5019                 NUMS=$($CMD | wc -l)
5020                 [ $NUMS -eq $EXPECTED ] ||
5021                         error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
5022         fi
5023 }
5024 run_test 56u "check lfs find -stripe-index works"
5025
5026 test_56v() {
5027     local MDT_IDX=0
5028
5029     TDIR=$DIR/${tdir}v
5030     rm -rf $TDIR
5031     setup_56 $NUMFILES $NUMDIRS
5032
5033     UUID=$(mdtuuid_from_index $MDT_IDX $TDIR)
5034     [ -z "$UUID" ] && error "mdtuuid_from_index cannot find MDT index $MDT_IDX"
5035
5036     for file in $($LFIND -mdt $UUID $TDIR); do
5037         file_mdt_idx=$($GETSTRIPE -M $file)
5038         [ $file_mdt_idx -eq $MDT_IDX ] ||
5039             error "'lfind -mdt $UUID' != 'getstripe -M' ($file_mdt_idx)"
5040     done
5041 }
5042 run_test 56v "check 'lfs find -mdt match with lfs getstripe -M' ======="
5043
5044 test_56w() {
5045         [[ $OSTCOUNT -lt 2 ]] && skip_env "$OSTCOUNT < 2 OSTs -- skipping" &&
5046                 return
5047         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5048         TDIR=$DIR/${tdir}w
5049
5050         rm -rf $TDIR || error "remove $TDIR failed"
5051         setup_56 $NUMFILES $NUMDIRS "-c $OSTCOUNT" "-c1"
5052
5053         local stripe_size
5054         stripe_size=$($GETSTRIPE -S -d $TDIR) ||
5055                 error "$GETSTRIPE -S -d $TDIR failed"
5056         stripe_size=${stripe_size%% *}
5057
5058         local file_size=$((stripe_size * OSTCOUNT))
5059         local file_num=$((NUMDIRS * NUMFILES + NUMFILES))
5060         local required_space=$((file_num * file_size))
5061
5062         local free_space=$($LCTL get_param -n lov.$FSNAME-clilov-*.kbytesavail |
5063                            head -n1)
5064         [[ $free_space -le $((required_space / 1024)) ]] &&
5065                 skip_env "need $required_space bytes, have $free_space KB" &&
5066                 return
5067
5068         local dd_bs=65536
5069         local dd_count=$((file_size / dd_bs))
5070
5071         # write data into the files
5072         local i
5073         local j
5074         local file
5075         for i in $(seq 1 $NUMFILES); do
5076                 file=$TDIR/file$i
5077                 yes | dd bs=$dd_bs count=$dd_count of=$file &>/dev/null ||
5078                         error "write data into $file failed"
5079         done
5080         for i in $(seq 1 $NUMDIRS); do
5081                 for j in $(seq 1 $NUMFILES); do
5082                         file=$TDIR/dir$i/file$j
5083                         yes|dd bs=$dd_bs count=$dd_count of=$file &>/dev/null ||
5084                                 error "write data into $file failed"
5085                 done
5086         done
5087
5088         # $LFS_MIGRATE will fail if hard link migration is unsupported
5089         if [[ $(lustre_version_code mds1) -gt $(version_code 2.5.55) ]]; then
5090                 createmany -l$TDIR/dir1/file1 $TDIR/dir1/link 200 ||
5091                         error "creating links to $TDIR/dir1/file1 failed"
5092         fi
5093
5094         local expected=-1
5095         [[ $OSTCOUNT -gt 1 ]] && expected=$((OSTCOUNT - 1))
5096
5097         # lfs_migrate file
5098         local cmd="$LFS_MIGRATE -y -c $expected $TDIR/file1"
5099         echo "$cmd"
5100         eval $cmd || error "$cmd failed"
5101
5102         check_stripe_count $TDIR/file1 $expected
5103
5104         if [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.90) ];
5105         then
5106                 # lfs_migrate file onto OST 0 if it is on OST 1, or onto
5107                 # OST 1 if it is on OST 0. This file is small enough to
5108                 # be on only one stripe.
5109                 file=$TDIR/migr_1_ost
5110                 dd bs=$dd_bs count=1 if=/dev/urandom of=$file >/dev/null 2>&1 ||
5111                         error "write data into $file failed"
5112                 local obdidx=$($LFS getstripe -i $file)
5113                 local oldmd5=$(md5sum $file)
5114                 local newobdidx=0
5115                 [[ $obdidx -eq 0 ]] && newobdidx=1
5116                 cmd="$LFS migrate -i $newobdidx $file"
5117                 echo $cmd
5118                 eval $cmd || error "$cmd failed"
5119                 local realobdix=$($LFS getstripe -i $file)
5120                 local newmd5=$(md5sum $file)
5121                 [[ $newobdidx -ne $realobdix ]] &&
5122                         error "new OST is different (was=$obdidx, wanted=$newobdidx, got=$realobdix)"
5123                 [[ "$oldmd5" != "$newmd5" ]] &&
5124                         error "md5sum differ: $oldmd5, $newmd5"
5125         fi
5126
5127     # lfs_migrate dir
5128     cmd="$LFS_MIGRATE -y -c $expected $TDIR/dir1"
5129     echo "$cmd"
5130     eval $cmd || error "$cmd failed"
5131
5132     for j in $(seq 1 $NUMFILES); do
5133         check_stripe_count $TDIR/dir1/file$j $expected
5134     done
5135
5136     # lfs_migrate works with lfs find
5137     cmd="$LFIND -stripe_count $OSTCOUNT -type f $TDIR |
5138          $LFS_MIGRATE -y -c $expected"
5139     echo "$cmd"
5140     eval $cmd || error "$cmd failed"
5141
5142     for i in $(seq 2 $NUMFILES); do
5143         check_stripe_count $TDIR/file$i $expected
5144     done
5145     for i in $(seq 2 $NUMDIRS); do
5146         for j in $(seq 1 $NUMFILES); do
5147             check_stripe_count $TDIR/dir$i/file$j $expected
5148         done
5149     done
5150 }
5151 run_test 56w "check lfs_migrate -c stripe_count works"
5152
5153 test_56x() {
5154         check_swap_layouts_support && return 0
5155         [[ $OSTCOUNT -lt 2 ]] &&
5156                 skip_env "need 2 OST, skipping test" && return
5157
5158         local dir0=$DIR/$tdir/$testnum
5159         test_mkdir -p $dir0 || error "creating dir $dir0"
5160
5161         local ref1=/etc/passwd
5162         local file1=$dir0/file1
5163
5164         $SETSTRIPE -c 2 $file1
5165         cp $ref1 $file1
5166         $LFS migrate -c 1 $file1 || error "migrate failed rc = $?"
5167         stripe=$($GETSTRIPE -c $file1)
5168         [[ $stripe == 1 ]] || error "stripe of $file1 is $stripe != 1"
5169         cmp $file1 $ref1 || error "content mismatch $file1 differs from $ref1"
5170
5171         # clean up
5172         rm -f $file1
5173 }
5174 run_test 56x "lfs migration support"
5175
5176 test_56xa() {
5177         check_swap_layouts_support && return 0
5178         [[ $OSTCOUNT -lt 2 ]] &&
5179                 skip_env "need 2 OST, skipping test" && return
5180
5181         local dir0=$DIR/$tdir/$testnum
5182         test_mkdir -p $dir0 || error "creating dir $dir0"
5183
5184         local ref1=/etc/passwd
5185         local file1=$dir0/file1
5186
5187         $SETSTRIPE -c 2 $file1
5188         cp $ref1 $file1
5189         $LFS migrate --block -c 1 $file1 || error "migrate failed rc = $?"
5190         local stripe=$($GETSTRIPE -c $file1)
5191         [[ $stripe == 1 ]] || error "stripe of $file1 is $stripe != 1"
5192         cmp $file1 $ref1 || error "content mismatch $file1 differs from $ref1"
5193
5194         # clean up
5195         rm -f $file1
5196 }
5197 run_test 56xa "lfs migration --block support"
5198
5199 test_56y() {
5200         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.53) ] &&
5201                 skip "No HSM $(lustre_build_version $SINGLEMDS) MDS < 2.4.53" &&
5202                 return
5203
5204         local res=""
5205         local dir0=$DIR/$tdir/$testnum
5206         test_mkdir -p $dir0 || error "creating dir $dir0"
5207         local f1=$dir0/file1
5208         local f2=$dir0/file2
5209
5210         touch $f1 || error "creating std file $f1"
5211         $MULTIOP $f2 H2c || error "creating released file $f2"
5212
5213         # a directory can be raid0, so ask only for files
5214         res=$($LFIND $dir0 -L raid0 -type f | wc -l)
5215         [[ $res == 2 ]] || error "search raid0: found $res files != 2"
5216
5217         res=$($LFIND $dir0 \! -L raid0 -type f | wc -l)
5218         [[ $res == 0 ]] || error "search !raid0: found $res files != 0"
5219
5220         # only files can be released, so no need to force file search
5221         res=$($LFIND $dir0 -L released)
5222         [[ $res == $f2 ]] || error "search released: found $res != $f2"
5223
5224         res=$($LFIND $dir0 \! -L released)
5225         [[ $res == $f1 ]] || error "search !released: found $res != $f1"
5226
5227 }
5228 run_test 56y "lfs find -L raid0|released"
5229
5230 test_56z() { # LU-4824
5231         # This checks to make sure 'lfs find' continues after errors
5232         # There are two classes of errors that should be caught:
5233         # - If multiple paths are provided, all should be searched even if one
5234         #   errors out
5235         # - If errors are encountered during the search, it should not terminate
5236         #   early
5237         local i
5238         test_mkdir $DIR/$tdir
5239         for i in d{0..9}; do
5240                 test_mkdir $DIR/$tdir/$i
5241         done
5242         touch $DIR/$tdir/d{0..9}/$tfile
5243         $LFS find $DIR/non_existent_dir $DIR/$tdir &&
5244                 error "$LFS find did not return an error"
5245         # Make a directory unsearchable. This should NOT be the last entry in
5246         # directory order.  Arbitrarily pick the 6th entry
5247         chmod 700 $($LFS find $DIR/$tdir -type d | sed '6!d')
5248         local count=$($RUNAS $LFS find $DIR/non_existent $DIR/$tdir | wc -l)
5249         # The user should be able to see 10 directories and 9 files
5250         [ $count == 19 ] || error "$LFS find did not continue after error"
5251 }
5252 run_test 56z "lfs find should continue after an error"
5253
5254 test_56aa() { # LU-5937
5255         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
5256
5257         mkdir $DIR/$tdir
5258         $LFS setdirstripe -c$MDSCOUNT $DIR/$tdir/striped_dir
5259
5260         createmany -o $DIR/$tdir/striped_dir/${tfile}- 1024
5261         local dirs=$(lfs find --size +8k $DIR/$tdir/)
5262
5263         [ -n "$dirs" ] || error "lfs find --size wrong under striped dir"
5264 }
5265 run_test 56aa "lfs find --size under striped dir"
5266
5267 test_57a() {
5268         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5269         # note test will not do anything if MDS is not local
5270         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
5271                 skip "Only applicable to ldiskfs-based MDTs"
5272                 return
5273         fi
5274
5275         remote_mds_nodsh && skip "remote MDS with nodsh" && return
5276         local MNTDEV="osd*.*MDT*.mntdev"
5277         DEV=$(do_facet $SINGLEMDS lctl get_param -n $MNTDEV)
5278         [ -z "$DEV" ] && error "can't access $MNTDEV"
5279         for DEV in $(do_facet $SINGLEMDS lctl get_param -n $MNTDEV); do
5280                 do_facet $SINGLEMDS $DUMPE2FS -h $DEV > $TMP/t57a.dump ||
5281                         error "can't access $DEV"
5282                 DEVISIZE=$(awk '/Inode size:/ { print $3 }' $TMP/t57a.dump)
5283                 [[ $DEVISIZE -gt 128 ]] || error "inode size $DEVISIZE"
5284                 rm $TMP/t57a.dump
5285         done
5286 }
5287 run_test 57a "verify MDS filesystem created with large inodes =="
5288
5289 test_57b() {
5290         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5291         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
5292                 skip "Only applicable to ldiskfs-based MDTs"
5293                 return
5294         fi
5295
5296         remote_mds_nodsh && skip "remote MDS with nodsh" && return
5297         local dir=$DIR/$tdir
5298
5299         local FILECOUNT=100
5300         local FILE1=$dir/f1
5301         local FILEN=$dir/f$FILECOUNT
5302
5303         rm -rf $dir || error "removing $dir"
5304         test_mkdir -p -c1 $dir || error "creating $dir"
5305         local mdtidx=$($LFS getstripe -M $dir)
5306         local mdtname=MDT$(printf %04x $mdtidx)
5307         local facet=mds$((mdtidx + 1))
5308
5309         echo "mcreating $FILECOUNT files"
5310         createmany -m $dir/f 1 $FILECOUNT || \
5311                 error "creating files in $dir"
5312
5313         # verify that files do not have EAs yet
5314         $GETSTRIPE $FILE1 2>&1 | grep -q "no stripe" || error "$FILE1 has an EA"
5315         $GETSTRIPE $FILEN 2>&1 | grep -q "no stripe" || error "$FILEN has an EA"
5316
5317         sync
5318         sleep 1
5319         df $dir  #make sure we get new statfs data
5320         local MDSFREE=$(do_facet $facet \
5321                 lctl get_param -n osd*.*$mdtname.kbytesfree)
5322         local MDCFREE=$(lctl get_param -n mdc.*$mdtname-mdc-*.kbytesfree)
5323         echo "opening files to create objects/EAs"
5324         local FILE
5325         for FILE in `seq -f $dir/f%g 1 $FILECOUNT`; do
5326                 $OPENFILE -f O_RDWR $FILE > /dev/null 2>&1 || error "opening $FILE"
5327         done
5328
5329         # verify that files have EAs now
5330         $GETSTRIPE $FILE1 | grep -q "obdidx" || error "$FILE1 missing EA"
5331         $GETSTRIPE $FILEN | grep -q "obdidx" || error "$FILEN missing EA"
5332
5333         sleep 1  #make sure we get new statfs data
5334         df $dir
5335         local MDSFREE2=$(do_facet $facet \
5336                 lctl get_param -n osd*.*$mdtname.kbytesfree)
5337         local MDCFREE2=$(lctl get_param -n mdc.*$mdtname-mdc-*.kbytesfree)
5338         if [[ $MDCFREE2 -lt $((MDCFREE - 16)) ]]; then
5339                 if [ "$MDSFREE" != "$MDSFREE2" ]; then
5340                         error "MDC before $MDCFREE != after $MDCFREE2"
5341                 else
5342                         echo "MDC before $MDCFREE != after $MDCFREE2"
5343                         echo "unable to confirm if MDS has large inodes"
5344                 fi
5345         fi
5346         rm -rf $dir
5347 }
5348 run_test 57b "default LOV EAs are stored inside large inodes ==="
5349
5350 test_58() {
5351         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5352         [ -z "$(which wiretest 2>/dev/null)" ] &&
5353                         skip_env "could not find wiretest" && return
5354         wiretest
5355 }
5356 run_test 58 "verify cross-platform wire constants =============="
5357
5358 test_59() {
5359         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5360         echo "touch 130 files"
5361         createmany -o $DIR/f59- 130
5362         echo "rm 130 files"
5363         unlinkmany $DIR/f59- 130
5364         sync
5365         # wait for commitment of removal
5366         wait_delete_completed
5367 }
5368 run_test 59 "verify cancellation of llog records async ========="
5369
5370 TEST60_HEAD="test_60 run $RANDOM"
5371 test_60a() {
5372         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5373         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
5374         do_facet mgs "! which run-llog.sh &> /dev/null" &&
5375                 do_facet mgs "! ls run-llog.sh &> /dev/null" &&
5376                         skip_env "missing subtest run-llog.sh" && return
5377
5378         log "$TEST60_HEAD - from kernel mode"
5379         do_facet mgs "$LCTL set_param debug=warning; $LCTL dk > /dev/null"
5380         do_facet mgs sh run-llog.sh
5381         do_facet mgs $LCTL dk > $TMP/$tfile
5382
5383         # LU-6388: test llog_reader
5384         local llog_reader=$(do_facet mgs "which llog_reader 2> /dev/null")
5385         llog_reader=${llog_reader:-$LUSTRE/utils/llog_reader}
5386         [ -z $(do_facet mgs ls -d $llog_reader 2> /dev/null) ] &&
5387                         skip_env "missing llog_reader" && return
5388         local fstype=$(facet_fstype mgs)
5389         [ $fstype != ldiskfs -a $fstype != zfs ] &&
5390                 skip_env "Only for ldiskfs or zfs type mgs" && return
5391
5392         local mntpt=$(facet_mntpt mgs)
5393         local mgsdev=$(mgsdevname 1)
5394         local fid_list
5395         local fid
5396         local rec_list
5397         local rec
5398         local rec_type
5399         local obj_file
5400         local path
5401         local seq
5402         local oid
5403         local pass=true
5404
5405         #get fid and record list
5406         fid_list=($(awk '/9_sub.*record/ { print $NF }' /$TMP/$tfile |
5407                 tail -n 4))
5408         rec_list=($(awk '/9_sub.*record/ { print $((NF-3)) }' /$TMP/$tfile |
5409                 tail -n 4))
5410         #remount mgs as ldiskfs or zfs type
5411         stop mgs || error "stop mgs failed"
5412         mount_fstype mgs || error "remount mgs failed"
5413         for ((i = 0; i < ${#fid_list[@]}; i++)); do
5414                 fid=${fid_list[i]}
5415                 rec=${rec_list[i]}
5416                 seq=$(echo $fid | awk -F ':' '{ print $1 }' | sed -e "s/^0x//g")
5417                 oid=$(echo $fid | awk -F ':' '{ print $2 }' | sed -e "s/^0x//g")
5418                 oid=$((16#$oid))
5419
5420                 case $fstype in
5421                         ldiskfs )
5422                                 obj_file=$mntpt/O/$seq/d$((oid%32))/$oid ;;
5423                         zfs )
5424                                 obj_file=$mntpt/oi.$(($((16#$seq))&127))/$fid ;;
5425                 esac
5426                 echo "obj_file is $obj_file"
5427                 do_facet mgs $llog_reader $obj_file
5428
5429                 rec_type=$(do_facet mgs $llog_reader $obj_file | grep "type=" |
5430                         awk '{ print $3 }' | sed -e "s/^type=//g")
5431                 if [ $rec_type != $rec ]; then
5432                         echo "FAILED test_60a wrong record type $rec_type," \
5433                               "should be $rec"
5434                         pass=false
5435                         break
5436                 fi
5437
5438                 #check obj path if record type is LLOG_LOGID_MAGIC
5439                 if [ "$rec" == "1064553b" ]; then
5440                         path=$(do_facet mgs $llog_reader $obj_file |
5441                                 grep "path=" | awk '{ print $NF }' |
5442                                 sed -e "s/^path=//g")
5443                         if [ $obj_file != $mntpt/$path ]; then
5444                                 echo "FAILED test_60a wrong obj path" \
5445                                       "$montpt/$path, should be $obj_file"
5446                                 pass=false
5447                                 break
5448                         fi
5449                 fi
5450         done
5451         rm -f $TMP/$tfile
5452         #restart mgs before "error", otherwise it will block the next test
5453         stop mgs || error "stop mgs failed"
5454         start mgs $(mgsdevname) $MGS_MOUNT_OPTS || error "start mgs failed"
5455         $pass || error "test failed, see FAILED test_60a messages for specifics"
5456 }
5457 run_test 60a "llog_test run from kernel module and test llog_reader"
5458
5459 test_60aa() {
5460         # test old logid format
5461         if [ $(lustre_version_code mgs) -le $(version_code 3.1.53) ]; then
5462                 do_facet mgs $LCTL dl | grep MGS
5463                 do_facet mgs "$LCTL --device %MGS llog_print \\\\\\\$$FSNAME-client" ||
5464                         error "old llog_print failed"
5465         fi
5466
5467         # test new logid format
5468         if [ $(lustre_version_code mgs) -ge $(version_code 2.9.53) ]; then
5469                 do_facet mgs "$LCTL --device MGS llog_print $FSNAME-client" ||
5470                         error "new llog_print failed"
5471         fi
5472 }
5473 run_test 60aa "llog_print works with FIDs and simple names"
5474
5475 test_60b() { # bug 6411
5476         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5477         dmesg > $DIR/$tfile
5478         LLOG_COUNT=$(dmesg | awk "/$TEST60_HEAD/ { marker = 1; from_marker = 0; }
5479                                 /llog.test/ {
5480                                         if (marker)
5481                                                 from_marker++
5482                                         from_begin++
5483                                 }
5484                                 END {
5485                                         if (marker)
5486                                                 print from_marker
5487                                         else
5488                                                 print from_begin
5489                                 }")
5490         [[ $LLOG_COUNT -gt 100 ]] &&
5491                 error "CDEBUG_LIMIT not limiting messages ($LLOG_COUNT)" || true
5492 }
5493 run_test 60b "limit repeated messages from CERROR/CWARN ========"
5494
5495 test_60c() {
5496         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5497         echo "create 5000 files"
5498         createmany -o $DIR/f60c- 5000
5499 #define OBD_FAIL_MDS_LLOG_CREATE_FAILED  0x137
5500         lctl set_param fail_loc=0x80000137
5501         unlinkmany $DIR/f60c- 5000
5502         lctl set_param fail_loc=0
5503 }
5504 run_test 60c "unlink file when mds full"
5505
5506 test_60d() {
5507         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5508         SAVEPRINTK=$(lctl get_param -n printk)
5509
5510         # verify "lctl mark" is even working"
5511         MESSAGE="test message ID $RANDOM $$"
5512         $LCTL mark "$MESSAGE" || error "$LCTL mark failed"
5513         dmesg | grep -q "$MESSAGE" || error "didn't find debug marker in log"
5514
5515         lctl set_param printk=0 || error "set lnet.printk failed"
5516         lctl get_param -n printk | grep emerg || error "lnet.printk dropped emerg"
5517         MESSAGE="new test message ID $RANDOM $$"
5518         # Assume here that libcfs_debug_mark_buffer() uses D_WARNING
5519         $LCTL mark "$MESSAGE" || error "$LCTL mark failed"
5520         dmesg | grep -q "$MESSAGE" && error "D_WARNING wasn't masked" || true
5521
5522         lctl set_param -n printk="$SAVEPRINTK"
5523 }
5524 run_test 60d "test printk console message masking"
5525
5526 test_60e() {
5527         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5528         remote_mds_nodsh && skip "remote MDS with nodsh" && return
5529         touch $DIR/$tfile
5530 #define OBD_FAIL_MDS_LLOG_CREATE_FAILED2  0x15b
5531         do_facet mds1 lctl set_param fail_loc=0x15b
5532         rm $DIR/$tfile
5533 }
5534 run_test 60e "no space while new llog is being created"
5535
5536 test_61() {
5537         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5538         f="$DIR/f61"
5539         dd if=/dev/zero of=$f bs=$(page_size) count=1 || error "dd $f failed"
5540         cancel_lru_locks osc
5541         $MULTIOP $f OSMWUc || error "$MULTIOP $f failed"
5542         sync
5543 }
5544 run_test 61 "mmap() writes don't make sync hang ================"
5545
5546 # bug 2330 - insufficient obd_match error checking causes LBUG
5547 test_62() {
5548         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5549         f="$DIR/f62"
5550         echo foo > $f
5551         cancel_lru_locks osc
5552         lctl set_param fail_loc=0x405
5553         cat $f && error "cat succeeded, expect -EIO"
5554         lctl set_param fail_loc=0
5555 }
5556 # This test is now irrelevant (as of bug 10718 inclusion), we no longer
5557 # match every page all of the time.
5558 #run_test 62 "verify obd_match failure doesn't LBUG (should -EIO)"
5559
5560 # bug 2319 - oig_wait() interrupted causes crash because of invalid waitq.
5561 # Though this test is irrelevant anymore, it helped to reveal some
5562 # other grant bugs (LU-4482), let's keep it.
5563 test_63a() {   # was test_63
5564         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5565         MAX_DIRTY_MB=`lctl get_param -n osc.*.max_dirty_mb | head -n 1`
5566         for i in `seq 10` ; do
5567                 dd if=/dev/zero of=$DIR/f63 bs=8k &
5568                 sleep 5
5569                 kill $!
5570                 sleep 1
5571         done
5572
5573         rm -f $DIR/f63 || true
5574 }
5575 run_test 63a "Verify oig_wait interruption does not crash ======="
5576
5577 # bug 2248 - async write errors didn't return to application on sync
5578 # bug 3677 - async write errors left page locked
5579 test_63b() {
5580         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5581         debugsave
5582         lctl set_param debug=-1
5583
5584         # ensure we have a grant to do async writes
5585         dd if=/dev/zero of=$DIR/$tfile bs=4k count=1
5586         rm $DIR/$tfile
5587
5588         sync    # sync lest earlier test intercept the fail_loc
5589
5590         #define OBD_FAIL_OSC_BRW_PREP_REQ        0x406
5591         lctl set_param fail_loc=0x80000406
5592         $MULTIOP $DIR/$tfile Owy && \
5593                 error "sync didn't return ENOMEM"
5594         sync; sleep 2; sync     # do a real sync this time to flush page
5595         lctl get_param -n llite.*.dump_page_cache | grep locked && \
5596                 error "locked page left in cache after async error" || true
5597         debugrestore
5598 }
5599 run_test 63b "async write errors should be returned to fsync ==="
5600
5601 test_64a () {
5602         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5603         df $DIR
5604         lctl get_param -n osc.*[oO][sS][cC][_-]*.cur* | grep "[0-9]"
5605 }
5606 run_test 64a "verify filter grant calculations (in kernel) ====="
5607
5608 test_64b () {
5609         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5610         sh oos.sh $MOUNT || error "oos.sh failed: $?"
5611 }
5612 run_test 64b "check out-of-space detection on client ==========="
5613
5614 test_64c() {
5615         $LCTL set_param osc.*OST0000-osc-[^mM]*.cur_grant_bytes=0
5616 }
5617 run_test 64c "verify grant shrink ========================------"
5618
5619 # bug 1414 - set/get directories' stripe info
5620 test_65a() {
5621         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5622         test_mkdir -p $DIR/$tdir
5623         touch $DIR/$tdir/f1
5624         $LVERIFY $DIR/$tdir $DIR/$tdir/f1 || error "lverify failed"
5625 }
5626 run_test 65a "directory with no stripe info ===================="
5627
5628 test_65b() {
5629         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5630         test_mkdir -p $DIR/$tdir
5631         local STRIPESIZE=$($GETSTRIPE -S $DIR/$tdir)
5632
5633         $SETSTRIPE -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
5634                                                 error "setstripe"
5635         touch $DIR/$tdir/f2
5636         $LVERIFY $DIR/$tdir $DIR/$tdir/f2 || error "lverify failed"
5637 }
5638 run_test 65b "directory setstripe -S stripe_size*2 -i 0 -c 1"
5639
5640 test_65c() {
5641         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5642         if [[ $OSTCOUNT -gt 1 ]]; then
5643                 test_mkdir -p $DIR/$tdir
5644                 local STRIPESIZE=$($GETSTRIPE -S $DIR/$tdir)
5645
5646                 $SETSTRIPE -S $(($STRIPESIZE * 4)) -i 1 \
5647                         -c $(($OSTCOUNT - 1)) $DIR/$tdir || error "setstripe"
5648                 touch $DIR/$tdir/f3
5649                 $LVERIFY $DIR/$tdir $DIR/$tdir/f3 || error "lverify failed"
5650         fi
5651 }
5652 run_test 65c "directory setstripe -S stripe_size*4 -i 1 -c $((OSTCOUNT-1))"
5653
5654 test_65d() {
5655         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5656         test_mkdir -p $DIR/$tdir
5657         local STRIPECOUNT=$($GETSTRIPE -c $DIR/$tdir)
5658         local STRIPESIZE=$($GETSTRIPE -S $DIR/$tdir)
5659
5660         if [[ $STRIPECOUNT -le 0 ]]; then
5661                 sc=1
5662         elif [[ $STRIPECOUNT -gt 2000 ]]; then
5663 #LOV_MAX_STRIPE_COUNT is 2000
5664                 [[ $OSTCOUNT -gt 2000 ]] && sc=2000 || sc=$(($OSTCOUNT - 1))
5665         else
5666                 sc=$(($STRIPECOUNT - 1))
5667         fi
5668         $SETSTRIPE -S $STRIPESIZE -c $sc $DIR/$tdir || error "setstripe"
5669         touch $DIR/$tdir/f4 $DIR/$tdir/f5
5670         $LVERIFY $DIR/$tdir $DIR/$tdir/f4 $DIR/$tdir/f5 ||
5671                 error "lverify failed"
5672 }
5673 run_test 65d "directory setstripe -S stripe_size -c stripe_count"
5674
5675 test_65e() {
5676         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5677         test_mkdir -p $DIR/$tdir
5678
5679         $SETSTRIPE $DIR/$tdir || error "setstripe"
5680         $GETSTRIPE -v $DIR/$tdir | grep "Default" ||
5681                                         error "no stripe info failed"
5682         touch $DIR/$tdir/f6
5683         $LVERIFY $DIR/$tdir $DIR/$tdir/f6 || error "lverify failed"
5684 }
5685 run_test 65e "directory setstripe defaults ======================="
5686
5687 test_65f() {
5688         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5689         test_mkdir -p $DIR/${tdir}f
5690         $RUNAS $SETSTRIPE $DIR/${tdir}f && error "setstripe succeeded" || true
5691 }
5692 run_test 65f "dir setstripe permission (should return error) ==="
5693
5694 test_65g() {
5695         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5696         test_mkdir -p $DIR/$tdir
5697         local STRIPESIZE=$($GETSTRIPE -S $DIR/$tdir)
5698
5699         $SETSTRIPE -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
5700                                                         error "setstripe"
5701         $SETSTRIPE -d $DIR/$tdir || error "setstripe"
5702         $GETSTRIPE -v $DIR/$tdir | grep "Default" ||
5703                 error "delete default stripe failed"
5704 }
5705 run_test 65g "directory setstripe -d ==========================="
5706
5707 test_65h() {
5708         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5709         test_mkdir -p $DIR/$tdir
5710         local STRIPESIZE=$($GETSTRIPE -S $DIR/$tdir)
5711
5712         $SETSTRIPE -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
5713                                                         error "setstripe"
5714         test_mkdir -p $DIR/$tdir/dd1
5715         [ $($GETSTRIPE -c $DIR/$tdir) == $($GETSTRIPE -c $DIR/$tdir/dd1) ] ||
5716                 error "stripe info inherit failed"
5717 }
5718 run_test 65h "directory stripe info inherit ===================="
5719
5720 test_65i() { # bug6367
5721         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5722         $SETSTRIPE -S 65536 -c -1 $MOUNT
5723 }
5724 run_test 65i "set non-default striping on root directory (bug 6367)="
5725
5726 test_65ia() { # bug12836
5727         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5728         $GETSTRIPE $MOUNT || error "getstripe $MOUNT failed"
5729 }
5730 run_test 65ia "getstripe on -1 default directory striping"
5731
5732 test_65ib() { # bug12836
5733         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5734         $GETSTRIPE -v $MOUNT || error "getstripe -v $MOUNT failed"
5735 }
5736 run_test 65ib "getstripe -v on -1 default directory striping"
5737
5738 test_65ic() { # bug12836
5739         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5740         $LFS find -mtime -1 $MOUNT > /dev/null || error "find $MOUNT failed"
5741 }
5742 run_test 65ic "new find on -1 default directory striping"
5743
5744 test_65j() { # bug6367
5745         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5746         sync; sleep 1
5747         # if we aren't already remounting for each test, do so for this test
5748         if [ "$CLEANUP" = ":" -a "$I_MOUNTED" = "yes" ]; then
5749                 cleanup || error "failed to unmount"
5750                 setup
5751         fi
5752         $SETSTRIPE -d $MOUNT || error "setstripe failed"
5753 }
5754 run_test 65j "set default striping on root directory (bug 6367)="
5755
5756 test_65k() { # bug11679
5757         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5758         [[ $OSTCOUNT -lt 2 ]] && skip_env "too few OSTs" && return
5759         remote_mds_nodsh && skip "remote MDS with nodsh" && return
5760
5761         local disable_precreate=true
5762         [ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.8.54) ] &&
5763                 disable_precreate=false
5764
5765         echo "Check OST status: "
5766         local MDS_OSCS=$(do_facet $SINGLEMDS lctl dl |
5767                 awk '/[oO][sS][cC].*md[ts]/ { print $4 }')
5768
5769         for OSC in $MDS_OSCS; do
5770                 echo $OSC "is active"
5771                 do_facet $SINGLEMDS lctl --device %$OSC activate
5772         done
5773
5774         for INACTIVE_OSC in $MDS_OSCS; do
5775                 local ost=$(osc_to_ost $INACTIVE_OSC)
5776                 local ostnum=$(do_facet $SINGLEMDS lctl get_param -n \
5777                                lov.*md*.target_obd |
5778                                awk -F: /$ost/'{ print $1 }' | head -n 1)
5779
5780                 mkdir -p $DIR/$tdir
5781                 $SETSTRIPE -i $ostnum -c 1 $DIR/$tdir
5782                 createmany -o $DIR/$tdir/$tfile.$ostnum. 1000
5783
5784                 echo "Deactivate: " $INACTIVE_OSC
5785                 do_facet $SINGLEMDS lctl --device %$INACTIVE_OSC deactivate
5786
5787                 local count=$(do_facet $SINGLEMDS "lctl get_param -n \
5788                               osp.$ost*MDT0000.create_count")
5789                 local max_count=$(do_facet $SINGLEMDS "lctl get_param -n \
5790                                   osp.$ost*MDT0000.max_create_count")
5791                 $disable_precreate &&
5792                         do_facet $SINGLEMDS "lctl set_param -n \
5793                                 osp.$ost*MDT0000.max_create_count=0"
5794
5795                 for idx in $(seq 0 $((OSTCOUNT - 1))); do
5796                         [ -f $DIR/$tdir/$idx ] && continue
5797                         echo "$SETSTRIPE -i $idx -c 1 $DIR/$tdir/$idx"
5798                         $SETSTRIPE -i $idx -c 1 $DIR/$tdir/$idx ||
5799                                 error "setstripe $idx should succeed"
5800                         rm -f $DIR/$tdir/$idx || error "rm $idx failed"
5801                 done
5802                 unlinkmany $DIR/$tdir/$tfile.$ostnum. 1000
5803                 rmdir $DIR/$tdir
5804
5805                 do_facet $SINGLEMDS "lctl set_param -n \
5806                         osp.$ost*MDT0000.max_create_count=$max_count"
5807                 do_facet $SINGLEMDS "lctl set_param -n \
5808                         osp.$ost*MDT0000.create_count=$count"
5809                 do_facet $SINGLEMDS lctl --device  %$INACTIVE_OSC activate
5810                 echo $INACTIVE_OSC "is Activate"
5811
5812                 wait_osc_import_state mds ost$ostnum FULL
5813         done
5814 }
5815 run_test 65k "validate manual striping works properly with deactivated OSCs"
5816
5817 test_65l() { # bug 12836
5818         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5819         test_mkdir -p $DIR/$tdir/test_dir
5820         $SETSTRIPE -c -1 $DIR/$tdir/test_dir
5821         $LFS find -mtime -1 $DIR/$tdir >/dev/null
5822 }
5823 run_test 65l "lfs find on -1 stripe dir ========================"
5824
5825 test_65m() {
5826         $RUNAS $SETSTRIPE -c 2 $MOUNT && error "setstripe should fail"
5827         true
5828 }
5829 run_test 65m "normal user can't set filesystem default stripe"
5830
5831 # bug 2543 - update blocks count on client
5832 test_66() {
5833         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5834         COUNT=${COUNT:-8}
5835         dd if=/dev/zero of=$DIR/f66 bs=1k count=$COUNT
5836         sync; sync_all_data; sync; sync_all_data
5837         cancel_lru_locks osc
5838         BLOCKS=`ls -s $DIR/f66 | awk '{ print $1 }'`
5839         [ $BLOCKS -ge $COUNT ] || error "$DIR/f66 blocks $BLOCKS < $COUNT"
5840 }
5841 run_test 66 "update inode blocks count on client ==============="
5842
5843 meminfo() {
5844         awk '($1 == "'$1':") { print $2 }' /proc/meminfo
5845 }
5846
5847 swap_used() {
5848         swapon -s | awk '($1 == "'$1'") { print $4 }'
5849 }
5850
5851 # bug5265, obdfilter oa2dentry return -ENOENT
5852 # #define OBD_FAIL_SRV_ENOENT 0x217
5853 test_69() {
5854         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5855         remote_ost_nodsh && skip "remote OST with nodsh" && return
5856
5857         f="$DIR/$tfile"
5858         $SETSTRIPE -c 1 -i 0 $f
5859
5860         $DIRECTIO write ${f}.2 0 1 || error "directio write error"
5861
5862         do_facet ost1 lctl set_param fail_loc=0x217
5863         $TRUNCATE $f 1 # vmtruncate() will ignore truncate() error.
5864         $DIRECTIO write $f 0 2 && error "write succeeded, expect -ENOENT"
5865
5866         do_facet ost1 lctl set_param fail_loc=0
5867         $DIRECTIO write $f 0 2 || error "write error"
5868
5869         cancel_lru_locks osc
5870         $DIRECTIO read $f 0 1 || error "read error"
5871
5872         do_facet ost1 lctl set_param fail_loc=0x217
5873         $DIRECTIO read $f 1 1 && error "read succeeded, expect -ENOENT"
5874
5875         do_facet ost1 lctl set_param fail_loc=0
5876         rm -f $f
5877 }
5878 run_test 69 "verify oa2dentry return -ENOENT doesn't LBUG ======"
5879
5880 test_71() {
5881         test_mkdir -p $DIR/$tdir
5882         $LFS setdirstripe -D -c$MDSCOUNT $DIR/$tdir
5883         sh rundbench -C -D $DIR/$tdir 2 || error "dbench failed!"
5884 }
5885 run_test 71 "Running dbench on lustre (don't segment fault) ===="
5886
5887 test_72a() { # bug 5695 - Test that on 2.6 remove_suid works properly
5888         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5889         [ "$RUNAS_ID" = "$UID" ] &&
5890                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
5891
5892         # Check that testing environment is properly set up. Skip if not
5893         FAIL_ON_ERROR=false check_runas_id_ret $RUNAS_ID $RUNAS_GID $RUNAS || {
5894                 skip_env "User $RUNAS_ID does not exist - skipping"
5895                 return 0
5896         }
5897         touch $DIR/$tfile
5898         chmod 777 $DIR/$tfile
5899         chmod ug+s $DIR/$tfile
5900         $RUNAS dd if=/dev/zero of=$DIR/$tfile bs=512 count=1 ||
5901                 error "$RUNAS dd $DIR/$tfile failed"
5902         # See if we are still setuid/sgid
5903         test -u $DIR/$tfile -o -g $DIR/$tfile &&
5904                 error "S/gid is not dropped on write"
5905         # Now test that MDS is updated too
5906         cancel_lru_locks mdc
5907         test -u $DIR/$tfile -o -g $DIR/$tfile &&
5908                 error "S/gid is not dropped on MDS"
5909         rm -f $DIR/$tfile
5910 }
5911 run_test 72a "Test that remove suid works properly (bug5695) ===="
5912
5913 test_72b() { # bug 24226 -- keep mode setting when size is not changing
5914         local perm
5915
5916         [ "$RUNAS_ID" = "$UID" ] && \
5917                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
5918         [ "$RUNAS_ID" -eq 0 ] && \
5919                 skip_env "RUNAS_ID = 0 -- skipping" && return
5920
5921         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5922         # Check that testing environment is properly set up. Skip if not
5923         FAIL_ON_ERROR=false check_runas_id_ret $RUNAS_ID $RUNAS_ID $RUNAS || {
5924                 skip_env "User $RUNAS_ID does not exist - skipping"
5925                 return 0
5926         }
5927         touch $DIR/${tfile}-f{g,u}
5928         test_mkdir $DIR/${tfile}-dg
5929         test_mkdir $DIR/${tfile}-du
5930         chmod 770 $DIR/${tfile}-{f,d}{g,u}
5931         chmod g+s $DIR/${tfile}-{f,d}g
5932         chmod u+s $DIR/${tfile}-{f,d}u
5933         for perm in 777 2777 4777; do
5934                 $RUNAS chmod $perm $DIR/${tfile}-fg && error "S/gid file allowed improper chmod to $perm"
5935                 $RUNAS chmod $perm $DIR/${tfile}-fu && error "S/uid file allowed improper chmod to $perm"
5936                 $RUNAS chmod $perm $DIR/${tfile}-dg && error "S/gid dir allowed improper chmod to $perm"
5937                 $RUNAS chmod $perm $DIR/${tfile}-du && error "S/uid dir allowed improper chmod to $perm"
5938         done
5939         true
5940 }
5941 run_test 72b "Test that we keep mode setting if without file data changed (bug 24226)"
5942
5943 # bug 3462 - multiple simultaneous MDC requests
5944 test_73() {
5945         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5946         test_mkdir $DIR/d73-1
5947         test_mkdir $DIR/d73-2
5948         multiop_bg_pause $DIR/d73-1/f73-1 O_c || return 1
5949         pid1=$!
5950
5951         lctl set_param fail_loc=0x80000129
5952         $MULTIOP $DIR/d73-1/f73-2 Oc &
5953         sleep 1
5954         lctl set_param fail_loc=0
5955
5956         $MULTIOP $DIR/d73-2/f73-3 Oc &
5957         pid3=$!
5958
5959         kill -USR1 $pid1
5960         wait $pid1 || return 1
5961
5962         sleep 25
5963
5964         $CHECKSTAT -t file $DIR/d73-1/f73-1 || return 4
5965         $CHECKSTAT -t file $DIR/d73-1/f73-2 || return 5
5966         $CHECKSTAT -t file $DIR/d73-2/f73-3 || return 6
5967
5968         rm -rf $DIR/d73-*
5969 }
5970 run_test 73 "multiple MDC requests (should not deadlock)"
5971
5972 test_74a() { # bug 6149, 6184
5973         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5974         #define OBD_FAIL_LDLM_ENQUEUE_OLD_EXPORT 0x30e
5975         #
5976         # very important to OR with OBD_FAIL_ONCE (0x80000000) -- otherwise it
5977         # will spin in a tight reconnection loop
5978         touch $DIR/f74a
5979         $LCTL set_param fail_loc=0x8000030e
5980         # get any lock that won't be difficult - lookup works.
5981         ls $DIR/f74a
5982         $LCTL set_param fail_loc=0
5983         rm -f $DIR/f74a
5984         true
5985 }
5986 run_test 74a "ldlm_enqueue freed-export error path, ls (shouldn't LBUG)"
5987
5988 test_74b() { # bug 13310
5989         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5990         #define OBD_FAIL_LDLM_ENQUEUE_OLD_EXPORT 0x30e
5991         #
5992         # very important to OR with OBD_FAIL_ONCE (0x80000000) -- otherwise it
5993         # will spin in a tight reconnection loop
5994         $LCTL set_param fail_loc=0x8000030e
5995         # get a "difficult" lock
5996         touch $DIR/f74b
5997         $LCTL set_param fail_loc=0
5998         rm -f $DIR/f74b
5999         true
6000 }
6001 run_test 74b "ldlm_enqueue freed-export error path, touch (shouldn't LBUG)"
6002
6003 test_74c() {
6004         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6005         #define OBD_FAIL_LDLM_NEW_LOCK
6006         $LCTL set_param fail_loc=0x319
6007         touch $DIR/$tfile && error "touch successful"
6008         $LCTL set_param fail_loc=0
6009         true
6010 }
6011 run_test 74c "ldlm_lock_create error path, (shouldn't LBUG)"
6012
6013 num_inodes() {
6014         awk '/lustre_inode_cache/ {print $2; exit}' /proc/slabinfo
6015 }
6016
6017 get_inode_slab_tunables() {
6018         awk '/lustre_inode_cache/ {print $9," ",$10," ",$11; exit}' /proc/slabinfo
6019 }
6020
6021 set_inode_slab_tunables() {
6022         echo "lustre_inode_cache $1" > /proc/slabinfo
6023 }
6024
6025 test_76() { # Now for bug 20433, added originally in bug 1443
6026         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6027         local SLAB_SETTINGS=$(get_inode_slab_tunables)
6028         local CPUS=$(getconf _NPROCESSORS_ONLN 2>/dev/null)
6029         # we cannot set limit below 1 which means 1 inode in each
6030         # per-cpu cache is still allowed
6031         set_inode_slab_tunables "1 1 0"
6032         cancel_lru_locks osc
6033         BEFORE_INODES=$(num_inodes)
6034         echo "before inodes: $BEFORE_INODES"
6035         local COUNT=1000
6036         [ "$SLOW" = "no" ] && COUNT=100
6037         for i in $(seq $COUNT); do
6038                 touch $DIR/$tfile
6039                 rm -f $DIR/$tfile
6040         done
6041         cancel_lru_locks osc
6042         AFTER_INODES=$(num_inodes)
6043         echo "after inodes: $AFTER_INODES"
6044         local wait=0
6045         while [[ $((AFTER_INODES-1*${CPUS:-1})) -gt $BEFORE_INODES ]]; do
6046                 sleep 2
6047                 AFTER_INODES=$(num_inodes)
6048                 wait=$((wait+2))
6049                 echo "wait $wait seconds inodes: $AFTER_INODES"
6050                 if [ $wait -gt 30 ]; then
6051                         error "inode slab grew from $BEFORE_INODES to $AFTER_INODES"
6052                 fi
6053         done
6054         set_inode_slab_tunables "$SLAB_SETTINGS"
6055 }
6056 run_test 76 "confirm clients recycle inodes properly ===="
6057
6058
6059 export ORIG_CSUM=""
6060 set_checksums()
6061 {
6062         # Note: in sptlrpc modes which enable its own bulk checksum, the
6063         # original crc32_le bulk checksum will be automatically disabled,
6064         # and the OBD_FAIL_OSC_CHECKSUM_SEND/OBD_FAIL_OSC_CHECKSUM_RECEIVE
6065         # will be checked by sptlrpc code against sptlrpc bulk checksum.
6066         # In this case set_checksums() will not be no-op, because sptlrpc
6067         # bulk checksum will be enabled all through the test.
6068
6069         [ "$ORIG_CSUM" ] || ORIG_CSUM=`lctl get_param -n osc.*.checksums | head -n1`
6070         lctl set_param -n osc.*.checksums $1
6071         return 0
6072 }
6073
6074 export ORIG_CSUM_TYPE="`lctl get_param -n osc.*osc-[^mM]*.checksum_type |
6075                         sed 's/.*\[\(.*\)\].*/\1/g' | head -n1`"
6076 CKSUM_TYPES=${CKSUM_TYPES:-"crc32 adler"}
6077 [ "$ORIG_CSUM_TYPE" = "crc32c" ] && CKSUM_TYPES="$CKSUM_TYPES crc32c"
6078 set_checksum_type()
6079 {
6080         lctl set_param -n osc.*osc-[^mM]*.checksum_type $1
6081         log "set checksum type to $1"
6082         return 0
6083 }
6084 F77_TMP=$TMP/f77-temp
6085 F77SZ=8
6086 setup_f77() {
6087         dd if=/dev/urandom of=$F77_TMP bs=1M count=$F77SZ || \
6088                 error "error writing to $F77_TMP"
6089 }
6090
6091 test_77a() { # bug 10889
6092         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6093         $GSS && skip "could not run with gss" && return
6094         [ ! -f $F77_TMP ] && setup_f77
6095         set_checksums 1
6096         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ || error "dd error"
6097         set_checksums 0
6098         rm -f $DIR/$tfile
6099 }
6100 run_test 77a "normal checksum read/write operation"
6101
6102 test_77b() { # 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         #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
6107         $LCTL set_param fail_loc=0x80000409
6108         set_checksums 1
6109
6110         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ conv=sync ||
6111                 error "dd error: $?"
6112         $LCTL set_param fail_loc=0
6113
6114         for algo in $CKSUM_TYPES; do
6115                 cancel_lru_locks osc
6116                 set_checksum_type $algo
6117                 #define OBD_FAIL_OSC_CHECKSUM_RECEIVE    0x408
6118                 $LCTL set_param fail_loc=0x80000408
6119                 cmp $F77_TMP $DIR/$tfile || error "file compare failed"
6120                 $LCTL set_param fail_loc=0
6121         done
6122         set_checksums 0
6123         set_checksum_type $ORIG_CSUM_TYPE
6124         rm -f $DIR/$tfile
6125 }
6126 run_test 77b "checksum error on client write, read"
6127
6128 cleanup_77c() {
6129         trap 0
6130         set_checksums 0
6131         $LCTL set_param osc.*osc-[^mM]*.checksum_dump=0
6132         $check_ost &&
6133                 do_facet ost1 $LCTL set_param obdfilter.*-OST*.checksum_dump=0
6134         [ -n $osc_file_prefix ] && rm -f ${osc_file_prefix}*
6135         $check_ost && [ -n $ost_file_prefix ] &&
6136                 do_facet ost1 rm -f ${ost_file_prefix}\*
6137 }
6138
6139 test_77c() {
6140         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6141         $GSS && skip "could not run with gss" && return
6142
6143         local bad1
6144         local osc_file_prefix
6145         local osc_file
6146         local check_ost=false
6147         local ost_file_prefix
6148         local ost_file
6149         local orig_cksum
6150         local dump_cksum
6151         local fid
6152
6153         # ensure corruption will occur on first OSS/OST
6154         $LFS setstripe -i 0 $DIR/$tfile
6155
6156         [ ! -f $F77_TMP ] && setup_f77
6157         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ conv=sync ||
6158                 error "dd write error: $?"
6159         fid=$($LFS path2fid $DIR/$tfile)
6160
6161         if [ $(lustre_version_code ost1) -ge $(version_code 2.9.57) ]
6162         then
6163                 check_ost=true
6164                 ost_file_prefix=$(do_facet ost1 $LCTL get_param -n debug_path)
6165                 ost_file_prefix=${ost_file_prefix}-checksum_dump-ost-\\${fid}
6166         else
6167                 echo "OSS do not support bulk pages dump upon error"
6168         fi
6169
6170         osc_file_prefix=$($LCTL get_param -n debug_path)
6171         osc_file_prefix=${osc_file_prefix}-checksum_dump-osc-\\${fid}
6172
6173         trap cleanup_77c EXIT
6174
6175         set_checksums 1
6176         # enable bulk pages dump upon error on Client
6177         $LCTL set_param osc.*osc-[^mM]*.checksum_dump=1
6178         # enable bulk pages dump upon error on OSS
6179         $check_ost &&
6180                 do_facet ost1 $LCTL set_param obdfilter.*-OST*.checksum_dump=1
6181
6182         # flush Client cache to allow next read to reach OSS
6183         cancel_lru_locks osc
6184
6185         #define OBD_FAIL_OSC_CHECKSUM_RECEIVE       0x408
6186         $LCTL set_param fail_loc=0x80000408
6187         dd if=$DIR/$tfile of=/dev/null bs=1M || error "dd read error: $?"
6188         $LCTL set_param fail_loc=0
6189
6190         rm -f $DIR/$tfile
6191
6192         # check cksum dump on Client
6193         osc_file=$(ls ${osc_file_prefix}*)
6194         [ -n "$osc_file" ] || error "no checksum dump file on Client"
6195         # OBD_FAIL_OSC_CHECKSUM_RECEIVE corrupts with "bad1" at start of file
6196         bad1=$(dd if=$osc_file bs=1 count=4 2>/dev/null) || error "dd error: $?"
6197         [ $bad1 == "bad1" ] || error "unexpected corrupt pattern"
6198         orig_cksum=$(dd if=$F77_TMP bs=1 skip=4 count=1048572 2>/dev/null |
6199                      cksum)
6200         dump_cksum=$(dd if=$osc_file bs=1 skip=4 2>/dev/null | cksum)
6201         [[ "$orig_cksum" == "$dump_cksum" ]] ||
6202                 error "dump content does not match on Client"
6203
6204         $check_ost || skip "No need to check cksum dump on OSS"
6205
6206         # check cksum dump on OSS
6207         ost_file=$(do_facet ost1 ls ${ost_file_prefix}\*)
6208         [ -n "$ost_file" ] || error "no checksum dump file on OSS"
6209         orig_cksum=$(dd if=$F77_TMP bs=1048576 count=1 2>/dev/null | cksum)
6210         dump_cksum=$(do_facet ost1 dd if=$ost_file 2>/dev/null \| cksum)
6211         [[ "$orig_cksum" == "$dump_cksum" ]] ||
6212                 error "dump content does not match on OSS"
6213
6214         cleanup_77c
6215 }
6216 run_test 77c "checksum error on client read with debug"
6217
6218 test_77d() { # bug 10889
6219         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6220         $GSS && skip "could not run with gss" && return
6221         #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
6222         $LCTL set_param fail_loc=0x80000409
6223         set_checksums 1
6224         $DIRECTIO write $DIR/$tfile 0 $F77SZ $((1024 * 1024)) ||
6225                 error "direct write: rc=$?"
6226         $LCTL set_param fail_loc=0
6227         set_checksums 0
6228
6229         #define OBD_FAIL_OSC_CHECKSUM_RECEIVE    0x408
6230         $LCTL set_param fail_loc=0x80000408
6231         set_checksums 1
6232         cancel_lru_locks osc
6233         $DIRECTIO read $DIR/$tfile 0 $F77SZ $((1024 * 1024)) ||
6234                 error "direct read: rc=$?"
6235         $LCTL set_param fail_loc=0
6236         set_checksums 0
6237 }
6238 run_test 77d "checksum error on OST direct write, read"
6239
6240 test_77f() { # bug 10889
6241         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6242         $GSS && skip "could not run with gss" && return
6243         set_checksums 1
6244         for algo in $CKSUM_TYPES; do
6245                 cancel_lru_locks osc
6246                 set_checksum_type $algo
6247                 #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
6248                 $LCTL set_param fail_loc=0x409
6249                 $DIRECTIO write $DIR/$tfile 0 $F77SZ $((1024 * 1024)) &&
6250                         error "direct write succeeded"
6251                 $LCTL set_param fail_loc=0
6252         done
6253         set_checksum_type $ORIG_CSUM_TYPE
6254         set_checksums 0
6255 }
6256 run_test 77f "repeat checksum error on write (expect error)"
6257
6258 test_77g() { # bug 10889
6259         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6260         $GSS && skip "could not run with gss" && return
6261         remote_ost_nodsh && skip "remote OST with nodsh" && return
6262
6263         [ ! -f $F77_TMP ] && setup_f77
6264
6265         $SETSTRIPE -c 1 -i 0 $DIR/$tfile
6266         #define OBD_FAIL_OST_CHECKSUM_RECEIVE       0x21a
6267         do_facet ost1 lctl set_param fail_loc=0x8000021a
6268         set_checksums 1
6269         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ ||
6270                 error "write error: rc=$?"
6271         do_facet ost1 lctl set_param fail_loc=0
6272         set_checksums 0
6273
6274         cancel_lru_locks osc
6275         #define OBD_FAIL_OST_CHECKSUM_SEND          0x21b
6276         do_facet ost1 lctl set_param fail_loc=0x8000021b
6277         set_checksums 1
6278         cmp $F77_TMP $DIR/$tfile || error "file compare failed"
6279         do_facet ost1 lctl set_param fail_loc=0
6280         set_checksums 0
6281 }
6282 run_test 77g "checksum error on OST write, read"
6283
6284 test_77j() { # bug 13805
6285         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6286         $GSS && skip "could not run with gss" && return
6287         #define OBD_FAIL_OSC_CKSUM_ADLER_ONLY    0x40c
6288         lctl set_param fail_loc=0x40c
6289         remount_client $MOUNT
6290         lctl set_param fail_loc=0
6291         # wait async osc connect to finish and reflect updated state value
6292         local i
6293         for (( i=0; i < OSTCOUNT; i++ )) ; do
6294                 wait_osc_import_state client ost$((i+1)) FULL
6295         done
6296
6297         for VALUE in $(lctl get_param osc.*osc-[^mM]*.checksum_type); do
6298                 PARAM=$(echo ${VALUE[0]} | cut -d "=" -f1)
6299                 algo=$(lctl get_param -n $PARAM | sed 's/.*\[\(.*\)\].*/\1/g')
6300                 [ "$algo" = "adler" ] || error "algo set to $algo instead of adler"
6301         done
6302         remount_client $MOUNT
6303 }
6304 run_test 77j "client only supporting ADLER32"
6305
6306 [ "$ORIG_CSUM" ] && set_checksums $ORIG_CSUM || true
6307 rm -f $F77_TMP
6308 unset F77_TMP
6309
6310 cleanup_test_78() {
6311         trap 0
6312         rm -f $DIR/$tfile
6313 }
6314
6315 test_78() { # bug 10901
6316         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6317         remote_ost || { skip_env "local OST" && return; }
6318
6319         NSEQ=5
6320         F78SIZE=$(($(awk '/MemFree:/ { print $2 }' /proc/meminfo) / 1024))
6321         echo "MemFree: $F78SIZE, Max file size: $MAXFREE"
6322         MEMTOTAL=$(($(awk '/MemTotal:/ { print $2 }' /proc/meminfo) / 1024))
6323         echo "MemTotal: $MEMTOTAL"
6324
6325         # reserve 256MB of memory for the kernel and other running processes,
6326         # and then take 1/2 of the remaining memory for the read/write buffers.
6327         if [ $MEMTOTAL -gt 512 ] ;then
6328                 MEMTOTAL=$(((MEMTOTAL - 256 ) / 2))
6329         else
6330                 # for those poor memory-starved high-end clusters...
6331                 MEMTOTAL=$((MEMTOTAL / 2))
6332         fi
6333         echo "Mem to use for directio: $MEMTOTAL"
6334
6335         [[ $F78SIZE -gt $MEMTOTAL ]] && F78SIZE=$MEMTOTAL
6336         [[ $F78SIZE -gt 512 ]] && F78SIZE=512
6337         [[ $F78SIZE -gt $((MAXFREE / 1024)) ]] && F78SIZE=$((MAXFREE / 1024))
6338         SMALLESTOST=$($LFS df $DIR | grep OST | awk '{ print $4 }' | sort -n |
6339                 head -n1)
6340         echo "Smallest OST: $SMALLESTOST"
6341         [[ $SMALLESTOST -lt 10240 ]] &&
6342                 skip "too small OSTSIZE, useless to run large O_DIRECT test" && return 0
6343
6344         trap cleanup_test_78 EXIT
6345
6346         [[ $F78SIZE -gt $((SMALLESTOST * $OSTCOUNT / 1024 - 80)) ]] &&
6347                 F78SIZE=$((SMALLESTOST * $OSTCOUNT / 1024 - 80))
6348
6349         [ "$SLOW" = "no" ] && NSEQ=1 && [ $F78SIZE -gt 32 ] && F78SIZE=32
6350         echo "File size: $F78SIZE"
6351         $SETSTRIPE -c $OSTCOUNT $DIR/$tfile || error "setstripe failed"
6352         for i in $(seq 1 $NSEQ); do
6353                 FSIZE=$(($F78SIZE / ($NSEQ - $i + 1)))
6354                 echo directIO rdwr round $i of $NSEQ
6355                 $DIRECTIO rdwr $DIR/$tfile 0 $FSIZE 1048576||error "rdwr failed"
6356         done
6357
6358         cleanup_test_78
6359 }
6360 run_test 78 "handle large O_DIRECT writes correctly ============"
6361
6362 test_79() { # bug 12743
6363         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6364         wait_delete_completed
6365
6366         BKTOTAL=$(calc_osc_kbytes kbytestotal)
6367         BKFREE=$(calc_osc_kbytes kbytesfree)
6368         BKAVAIL=$(calc_osc_kbytes kbytesavail)
6369
6370         STRING=`df -P $MOUNT | tail -n 1 | awk '{print $2","$3","$4}'`
6371         DFTOTAL=`echo $STRING | cut -d, -f1`
6372         DFUSED=`echo $STRING  | cut -d, -f2`
6373         DFAVAIL=`echo $STRING | cut -d, -f3`
6374         DFFREE=$(($DFTOTAL - $DFUSED))
6375
6376         ALLOWANCE=$((64 * $OSTCOUNT))
6377
6378         if [ $DFTOTAL -lt $(($BKTOTAL - $ALLOWANCE)) ] ||
6379            [ $DFTOTAL -gt $(($BKTOTAL + $ALLOWANCE)) ] ; then
6380                 error "df total($DFTOTAL) mismatch OST total($BKTOTAL)"
6381         fi
6382         if [ $DFFREE -lt $(($BKFREE - $ALLOWANCE)) ] ||
6383            [ $DFFREE -gt $(($BKFREE + $ALLOWANCE)) ] ; then
6384                 error "df free($DFFREE) mismatch OST free($BKFREE)"
6385         fi
6386         if [ $DFAVAIL -lt $(($BKAVAIL - $ALLOWANCE)) ] ||
6387            [ $DFAVAIL -gt $(($BKAVAIL + $ALLOWANCE)) ] ; then
6388                 error "df avail($DFAVAIL) mismatch OST avail($BKAVAIL)"
6389         fi
6390 }
6391 run_test 79 "df report consistency check ======================="
6392
6393 test_80() { # bug 10718
6394         remote_ost_nodsh && skip "remote OST with nodsh" && return
6395         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6396         # relax strong synchronous semantics for slow backends like ZFS
6397         local soc="obdfilter.*.sync_on_lock_cancel"
6398         local soc_old=$(do_facet ost1 lctl get_param -n $soc | head -n1)
6399         local hosts=
6400         if [ "$soc_old" != "never" -a "$(facet_fstype ost1)" != "ldiskfs" ]; then
6401                 hosts=$(for host in $(seq -f "ost%g" 1 $OSTCOUNT); do
6402                           facet_active_host $host; done | sort -u)
6403                 do_nodes $hosts lctl set_param $soc=never
6404         fi
6405
6406         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=1M
6407         sync; sleep 1; sync
6408         local BEFORE=`date +%s`
6409         cancel_lru_locks osc
6410         local AFTER=`date +%s`
6411         local DIFF=$((AFTER-BEFORE))
6412         if [ $DIFF -gt 1 ] ; then
6413                 error "elapsed for 1M@1T = $DIFF"
6414         fi
6415
6416         [ -n "$hosts" ] && do_nodes $hosts lctl set_param $soc=$soc_old
6417
6418         rm -f $DIR/$tfile
6419 }
6420 run_test 80 "Page eviction is equally fast at high offsets too  ===="
6421
6422 test_81a() { # LU-456
6423         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6424         remote_ost_nodsh && skip "remote OST with nodsh" && return
6425         # define OBD_FAIL_OST_MAPBLK_ENOSPC    0x228
6426         # MUST OR with the OBD_FAIL_ONCE (0x80000000)
6427         do_facet ost1 lctl set_param fail_loc=0x80000228
6428
6429         # write should trigger a retry and success
6430         $SETSTRIPE -i 0 -c 1 $DIR/$tfile
6431         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
6432         RC=$?
6433         if [ $RC -ne 0 ] ; then
6434                 error "write should success, but failed for $RC"
6435         fi
6436 }
6437 run_test 81a "OST should retry write when get -ENOSPC ==============="
6438
6439 test_81b() { # LU-456
6440         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6441         remote_ost_nodsh && skip "remote OST with nodsh" && return
6442         # define OBD_FAIL_OST_MAPBLK_ENOSPC    0x228
6443         # Don't OR with the OBD_FAIL_ONCE (0x80000000)
6444         do_facet ost1 lctl set_param fail_loc=0x228
6445
6446         # write should retry several times and return -ENOSPC finally
6447         $SETSTRIPE -i 0 -c 1 $DIR/$tfile
6448         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
6449         RC=$?
6450         ENOSPC=28
6451         if [ $RC -ne $ENOSPC ] ; then
6452                 error "dd should fail for -ENOSPC, but succeed."
6453         fi
6454 }
6455 run_test 81b "OST should return -ENOSPC when retry still fails ======="
6456
6457 test_82() { # LU-1031
6458         dd if=/dev/zero of=$DIR/$tfile bs=1M count=10
6459         local gid1=14091995
6460         local gid2=16022000
6461
6462         multiop_bg_pause $DIR/$tfile OG${gid1}_g${gid1}c || return 1
6463         local MULTIPID1=$!
6464         multiop_bg_pause $DIR/$tfile O_G${gid2}r10g${gid2}c || return 2
6465         local MULTIPID2=$!
6466         kill -USR1 $MULTIPID2
6467         sleep 2
6468         if [[ `ps h -o comm -p $MULTIPID2` == "" ]]; then
6469                 error "First grouplock does not block second one"
6470         else
6471                 echo "Second grouplock blocks first one"
6472         fi
6473         kill -USR1 $MULTIPID1
6474         wait $MULTIPID1
6475         wait $MULTIPID2
6476 }
6477 run_test 82 "Basic grouplock test ==============================="
6478
6479 test_83() {
6480         local sfile="/boot/System.map-$(uname -r)"
6481         # define OBD_FAIL_LLITE_PTASK_IO_FAIL 0x140d
6482         $LCTL set_param fail_loc=0x140d
6483         cp $sfile $DIR/$tfile || error "write failed"
6484         diff -c $sfile $DIR/$tfile || error "files are different"
6485         $LCTL set_param fail_loc=0
6486         rm -f $DIR/$tfile
6487 }
6488 run_test 83 "Short write in ptask ==============================="
6489
6490 test_99a() {
6491         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" &&
6492                 return
6493         test_mkdir -p $DIR/d99cvsroot
6494         chown $RUNAS_ID $DIR/d99cvsroot
6495         local oldPWD=$PWD       # bug 13584, use $TMP as working dir
6496         cd $TMP
6497
6498         $RUNAS cvs -d $DIR/d99cvsroot init || error "cvs init failed"
6499         cd $oldPWD
6500 }
6501 run_test 99a "cvs init ========================================="
6502
6503 test_99b() {
6504         [ -z "$(which cvs 2>/dev/null)" ] &&
6505                 skip_env "could not find cvs" && return
6506         [ ! -d $DIR/d99cvsroot ] && test_99a
6507         cd /etc/init.d
6508         # some versions of cvs import exit(1) when asked to import links or
6509         # files they can't read.  ignore those files.
6510         TOIGNORE=$(find . -type l -printf '-I %f\n' -o \
6511                         ! -perm /4 -printf '-I %f\n')
6512         $RUNAS cvs -d $DIR/d99cvsroot import -m "nomesg" $TOIGNORE \
6513                 d99reposname vtag rtag
6514 }
6515 run_test 99b "cvs import ======================================="
6516
6517 test_99c() {
6518         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && return
6519         [ ! -d $DIR/d99cvsroot ] && test_99b
6520         cd $DIR
6521         test_mkdir -p $DIR/d99reposname
6522         chown $RUNAS_ID $DIR/d99reposname
6523         $RUNAS cvs -d $DIR/d99cvsroot co d99reposname
6524 }
6525 run_test 99c "cvs checkout ====================================="
6526
6527 test_99d() {
6528         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && return
6529         [ ! -d $DIR/d99cvsroot ] && test_99c
6530         cd $DIR/d99reposname
6531         $RUNAS touch foo99
6532         $RUNAS cvs add -m 'addmsg' foo99
6533 }
6534 run_test 99d "cvs add =========================================="
6535
6536 test_99e() {
6537         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && return
6538         [ ! -d $DIR/d99cvsroot ] && test_99c
6539         cd $DIR/d99reposname
6540         $RUNAS cvs update
6541 }
6542 run_test 99e "cvs update ======================================="
6543
6544 test_99f() {
6545         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && return
6546         [ ! -d $DIR/d99cvsroot ] && test_99d
6547         cd $DIR/d99reposname
6548         $RUNAS cvs commit -m 'nomsg' foo99
6549     rm -fr $DIR/d99cvsroot
6550 }
6551 run_test 99f "cvs commit ======================================="
6552
6553 test_100() {
6554         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6555         [[ "$NETTYPE" =~ tcp ]] ||
6556                 { skip "TCP secure port test, not useful for NETTYPE=$NETTYPE" &&
6557                         return ; }
6558
6559         remote_ost_nodsh && skip "remote OST with nodsh" && return
6560         remote_mds_nodsh && skip "remote MDS with nodsh" && return
6561         remote_servers ||
6562                 { skip "useless for local single node setup" && return; }
6563
6564         netstat -tna | ( rc=1; while read PROT SND RCV LOCAL REMOTE STAT; do
6565                 [ "$PROT" != "tcp" ] && continue
6566                 RPORT=$(echo $REMOTE | cut -d: -f2)
6567                 [ "$RPORT" != "$ACCEPTOR_PORT" ] && continue
6568
6569                 rc=0
6570                 LPORT=`echo $LOCAL | cut -d: -f2`
6571                 if [ $LPORT -ge 1024 ]; then
6572                         echo "bad: $PROT $SND $RCV $LOCAL $REMOTE $STAT"
6573                         netstat -tna
6574                         error_exit "local: $LPORT > 1024, remote: $RPORT"
6575                 fi
6576         done
6577         [ "$rc" = 0 ] || error_exit "privileged port not found" )
6578 }
6579 run_test 100 "check local port using privileged port ==========="
6580
6581 function get_named_value()
6582 {
6583     local tag
6584
6585     tag=$1
6586     while read ;do
6587         line=$REPLY
6588         case $line in
6589         $tag*)
6590             echo $line | sed "s/^$tag[ ]*//"
6591             break
6592             ;;
6593         esac
6594     done
6595 }
6596
6597 export CACHE_MAX=$($LCTL get_param -n llite.*.max_cached_mb |
6598                    awk '/^max_cached_mb/ { print $2 }')
6599
6600 cleanup_101a() {
6601         $LCTL set_param -n llite.*.max_cached_mb $CACHE_MAX
6602         trap 0
6603 }
6604
6605 test_101a() {
6606         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6607         [ $MDSCOUNT -ge 2 ] && skip "skip now for >= 2 MDTs" && return #LU-4322
6608         local s
6609         local discard
6610         local nreads=10000
6611         local cache_limit=32
6612
6613         $LCTL set_param -n osc.*-osc*.rpc_stats 0
6614         trap cleanup_101a EXIT
6615         $LCTL set_param -n llite.*.read_ahead_stats 0
6616         $LCTL set_param -n llite.*.max_cached_mb $cache_limit
6617
6618         #
6619         # randomly read 10000 of 64K chunks from file 3x 32MB in size
6620         #
6621         echo "nreads: $nreads file size: $((cache_limit * 3))MB"
6622         $READS -f $DIR/$tfile -s$((cache_limit * 3192 * 1024)) -b65536 -C -n$nreads -t 180
6623
6624         discard=0
6625         for s in $($LCTL get_param -n llite.*.read_ahead_stats |
6626                 get_named_value 'read but discarded' | cut -d" " -f1); do
6627                         discard=$(($discard + $s))
6628         done
6629         cleanup_101a
6630
6631         if [[ $(($discard * 10)) -gt $nreads ]]; then
6632                 $LCTL get_param osc.*-osc*.rpc_stats
6633                 $LCTL get_param llite.*.read_ahead_stats
6634                 error "too many ($discard) discarded pages"
6635         fi
6636         rm -f $DIR/$tfile || true
6637 }
6638 run_test 101a "check read-ahead for random reads ================"
6639
6640 setup_test101bc() {
6641         test_mkdir -p $DIR/$tdir
6642         local STRIPE_SIZE=$1
6643         local FILE_LENGTH=$2
6644         STRIPE_OFFSET=0
6645
6646         local FILE_SIZE_MB=$((FILE_LENGTH / STRIPE_SIZE))
6647
6648         local list=$(comma_list $(osts_nodes))
6649         set_osd_param $list '' read_cache_enable 0
6650         set_osd_param $list '' writethrough_cache_enable 0
6651
6652         trap cleanup_test101bc EXIT
6653         # prepare the read-ahead file
6654         $SETSTRIPE -S $STRIPE_SIZE -i $STRIPE_OFFSET -c $OSTCOUNT $DIR/$tfile
6655
6656         dd if=/dev/zero of=$DIR/$tfile bs=$STRIPE_SIZE \
6657                                 count=$FILE_SIZE_MB 2> /dev/null
6658
6659 }
6660
6661 cleanup_test101bc() {
6662         trap 0
6663         rm -rf $DIR/$tdir
6664         rm -f $DIR/$tfile
6665
6666         local list=$(comma_list $(osts_nodes))
6667         set_osd_param $list '' read_cache_enable 1
6668         set_osd_param $list '' writethrough_cache_enable 1
6669 }
6670
6671 calc_total() {
6672         awk 'BEGIN{total=0}; {total+=$1}; END{print total}'
6673 }
6674
6675 ra_check_101() {
6676         local READ_SIZE=$1
6677         local STRIPE_SIZE=$2
6678         local FILE_LENGTH=$3
6679         local RA_INC=1048576
6680         local STRIDE_LENGTH=$((STRIPE_SIZE/READ_SIZE))
6681         local discard_limit=$((((STRIDE_LENGTH - 1)*3/(STRIDE_LENGTH*OSTCOUNT))* \
6682                              (STRIDE_LENGTH*OSTCOUNT - STRIDE_LENGTH)))
6683         DISCARD=$($LCTL get_param -n llite.*.read_ahead_stats |
6684                         get_named_value 'read but discarded' |
6685                         cut -d" " -f1 | calc_total)
6686         if [[ $DISCARD -gt $discard_limit ]]; then
6687                 $LCTL get_param llite.*.read_ahead_stats
6688                 error "Too many ($DISCARD) discarded pages with size (${READ_SIZE})"
6689         else
6690                 echo "Read-ahead success for size ${READ_SIZE}"
6691         fi
6692 }
6693
6694 test_101b() {
6695         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6696         [[ $OSTCOUNT -lt 2 ]] &&
6697                 skip_env "skipping stride IO stride-ahead test" && return
6698         local STRIPE_SIZE=1048576
6699         local STRIDE_SIZE=$((STRIPE_SIZE*OSTCOUNT))
6700         if [ $SLOW == "yes" ]; then
6701                 local FILE_LENGTH=$((STRIDE_SIZE * 64))
6702         else
6703                 local FILE_LENGTH=$((STRIDE_SIZE * 8))
6704         fi
6705
6706         local ITERATION=$((FILE_LENGTH / STRIDE_SIZE))
6707
6708         # prepare the read-ahead file
6709         setup_test101bc $STRIPE_SIZE $FILE_LENGTH
6710         cancel_lru_locks osc
6711         for BIDX in 2 4 8 16 32 64 128 256
6712         do
6713                 local BSIZE=$((BIDX*4096))
6714                 local READ_COUNT=$((STRIPE_SIZE/BSIZE))
6715                 local STRIDE_LENGTH=$((STRIDE_SIZE/BSIZE))
6716                 local OFFSET=$((STRIPE_SIZE/BSIZE*(OSTCOUNT - 1)))
6717                 $LCTL set_param -n llite.*.read_ahead_stats 0
6718                 $READS -f $DIR/$tfile  -l $STRIDE_LENGTH -o $OFFSET \
6719                               -s $FILE_LENGTH -b $STRIPE_SIZE -a $READ_COUNT -n $ITERATION
6720                 cancel_lru_locks osc
6721                 ra_check_101 $BSIZE $STRIPE_SIZE $FILE_LENGTH
6722         done
6723         cleanup_test101bc
6724         true
6725 }
6726 run_test 101b "check stride-io mode read-ahead ================="
6727
6728 test_101c() {
6729         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6730         local STRIPE_SIZE=1048576
6731         local FILE_LENGTH=$((STRIPE_SIZE*100))
6732         local nreads=10000
6733         local osc_rpc_stats
6734
6735         setup_test101bc $STRIPE_SIZE $FILE_LENGTH
6736
6737         cancel_lru_locks osc
6738         $LCTL set_param osc.*.rpc_stats 0
6739         $READS -f $DIR/$tfile -s$FILE_LENGTH -b65536 -n$nreads -t 180
6740         for osc_rpc_stats in $($LCTL get_param -N osc.*.rpc_stats); do
6741                 local stats=$($LCTL get_param -n $osc_rpc_stats)
6742                 local lines=$(echo "$stats" | awk 'END {print NR;}')
6743                 local size
6744
6745                 if [ $lines -le 20 ]; then
6746                         continue
6747                 fi
6748                 for size in 1 2 4 8; do
6749                         local rpc=$(echo "$stats" |
6750                                     awk '($1 == "'$size':") {print $2; exit; }')
6751                         [ $rpc != 0 ] &&
6752                                 error "Small $((size*4))k read IO $rpc !"
6753                 done
6754                 echo "$osc_rpc_stats check passed!"
6755         done
6756         cleanup_test101bc
6757         true
6758 }
6759 run_test 101c "check stripe_size aligned read-ahead ================="
6760
6761 set_read_ahead() {
6762         $LCTL get_param -n llite.*.max_read_ahead_mb | head -n 1
6763         $LCTL set_param -n llite.*.max_read_ahead_mb $1 > /dev/null 2>&1
6764 }
6765
6766 test_101d() {
6767         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6768         local file=$DIR/$tfile
6769         local sz_MB=${FILESIZE_101d:-500}
6770         local ra_MB=${READAHEAD_MB:-40}
6771
6772         local free_MB=$(($(df -P $DIR | tail -n 1 | awk '{ print $4 }') / 1024))
6773         [ $free_MB -lt $sz_MB ] &&
6774                 skip "Need free space ${sz_MB}M, have ${free_MB}M" && return
6775
6776         echo "Create test file $file size ${sz_MB}M, ${free_MB}M free"
6777         $SETSTRIPE -c -1 $file || error "setstripe failed"
6778
6779         dd if=/dev/zero of=$file bs=1M count=$sz_MB || error "dd failed"
6780         echo Cancel LRU locks on lustre client to flush the client cache
6781         cancel_lru_locks osc
6782
6783         echo Disable read-ahead
6784         local old_READAHEAD=$(set_read_ahead 0)
6785
6786         echo Reading the test file $file with read-ahead disabled
6787         local raOFF=$(do_and_time "dd if=$file of=/dev/null bs=1M count=$sz_MB")
6788
6789         echo Cancel LRU locks on lustre client to flush the client cache
6790         cancel_lru_locks osc
6791         echo Enable read-ahead with ${ra_MB}MB
6792         set_read_ahead $ra_MB
6793
6794         echo Reading the test file $file with read-ahead enabled
6795         local raON=$(do_and_time "dd if=$file of=/dev/null bs=1M count=$sz_MB")
6796
6797         echo "read-ahead disabled time read $raOFF"
6798         echo "read-ahead enabled  time read $raON"
6799
6800         set_read_ahead $old_READAHEAD
6801         rm -f $file
6802         wait_delete_completed
6803
6804         [ $raOFF -le 1 -o $raON -lt $raOFF ] ||
6805                 error "readahead ${raON}s > no-readahead ${raOFF}s ${sz_MB}M"
6806 }
6807 run_test 101d "file read with and without read-ahead enabled"
6808
6809 test_101e() {
6810         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6811         local file=$DIR/$tfile
6812         local size_KB=500  #KB
6813         local count=100
6814         local bsize=1024
6815
6816         local free_KB=$(df -P $DIR | tail -n 1 | awk '{ print $4 }')
6817         local need_KB=$((count * size_KB))
6818         [[ $free_KB -le $need_KB ]] &&
6819                 skip_env "Need free space $need_KB, have $free_KB" && return
6820
6821         echo "Creating $count ${size_KB}K test files"
6822         for ((i = 0; i < $count; i++)); do
6823                 dd if=/dev/zero of=$file.$i bs=$bsize count=$size_KB 2>/dev/null
6824         done
6825
6826         echo "Cancel LRU locks on lustre client to flush the client cache"
6827         cancel_lru_locks osc
6828
6829         echo "Reset readahead stats"
6830         $LCTL set_param -n llite.*.read_ahead_stats 0
6831
6832         for ((i = 0; i < $count; i++)); do
6833                 dd if=$file.$i of=/dev/null bs=$bsize count=$size_KB 2>/dev/null
6834         done
6835
6836         local miss=$($LCTL get_param -n llite.*.read_ahead_stats |
6837                      get_named_value 'misses' | cut -d" " -f1 | calc_total)
6838
6839         for ((i = 0; i < $count; i++)); do
6840                 rm -rf $file.$i 2>/dev/null
6841         done
6842
6843         #10000 means 20% reads are missing in readahead
6844         [[ $miss -lt 10000 ]] ||  error "misses too much for small reads"
6845 }
6846 run_test 101e "check read-ahead for small read(1k) for small files(500k)"
6847
6848 test_101f() {
6849         which iozone || { skip "no iozone installed" && return; }
6850
6851         local old_debug=$($LCTL get_param debug)
6852         old_debug=${old_debug#*=}
6853         $LCTL set_param debug="reada mmap"
6854
6855         # create a test file
6856         iozone -i 0 -+n -r 1m -s 128m -w -f $DIR/$tfile > /dev/null 2>&1
6857
6858         echo Cancel LRU locks on lustre client to flush the client cache
6859         cancel_lru_locks osc
6860
6861         echo Reset readahead stats
6862         $LCTL set_param -n llite.*.read_ahead_stats 0
6863
6864         echo mmap read the file with small block size
6865         iozone -i 1 -u 1 -l 1 -+n -r 32k -s 128m -B -f $DIR/$tfile \
6866                 > /dev/null 2>&1
6867
6868         echo checking missing pages
6869         $LCTL get_param llite.*.read_ahead_stats
6870         local miss=$($LCTL get_param -n llite.*.read_ahead_stats |
6871                         get_named_value 'misses' | cut -d" " -f1 | calc_total)
6872
6873         $LCTL set_param debug="$old_debug"
6874         [ $miss -lt 3 ] || error "misses too much pages ('$miss')!"
6875         rm -f $DIR/$tfile
6876 }
6877 run_test 101f "check mmap read performance"
6878
6879 test_101g_brw_size_test() {
6880         local mb=$1
6881         local pages=$((mb * 1048576 / $(page_size)))
6882
6883         $LCTL set_param osc.*.max_pages_per_rpc=${mb}M ||
6884                 { error "unable to set max_pages_per_rpc=${mb}M"; return 1; }
6885         for mp in $($LCTL get_param -n osc.*.max_pages_per_rpc); do
6886                 [ $mp -ne $pages ] && error "max_pages_per_rpc $mp != $pages" &&
6887                         return 2
6888         done
6889
6890         $LCTL set_param -n osc.*.rpc_stats=0
6891
6892         # 10 RPCs should be enough for the test
6893         local count=10
6894         dd if=/dev/zero of=$DIR/$tfile bs=${mb}M count=$count ||
6895                 { error "dd write ${mb} MB blocks failed"; return 3; }
6896         cancel_lru_locks osc
6897         dd of=/dev/null if=$DIR/$tfile bs=${mb}M count=$count ||
6898                 { error "dd write ${mb} MB blocks failed"; return 4; }
6899
6900         # calculate number of full-sized read and write RPCs
6901         rpcs=($($LCTL get_param -n 'osc.*.rpc_stats' |
6902                 sed -n '/pages per rpc/,/^$/p' |
6903                 awk '/'$pages':/ { reads += $2; writes += $6 }; \
6904                 END { print reads,writes }'))
6905         [ ${rpcs[0]} -ne $count ] && error "${rpcs[0]} != $count read RPCs" &&
6906                 return 5
6907         [ ${rpcs[1]} -ne $count ] && error "${rpcs[1]} != $count write RPCs" &&
6908                 return 6
6909
6910         return 0
6911 }
6912
6913 test_101g() {
6914         local rpcs
6915         local osts=$(get_facets OST)
6916         local list=$(comma_list $(osts_nodes))
6917         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
6918         local brw_size="obdfilter.*.brw_size"
6919
6920         $LFS setstripe -i 0 -c 1 $DIR/$tfile
6921
6922         local orig_mb=$(do_facet ost1 $LCTL get_param -n $brw_size | head -n 1)
6923         if [ $(lustre_version_code ost1) -ge $(version_code 2.8.52) ]; then
6924                 [ $(lustre_version_code ost1) -ge $(version_code 2.9.52) ] &&
6925                         suffix="M"
6926                 if [[ $orig_mb -lt 16 ]]; then
6927                         save_lustre_params $osts "$brw_size" > $p
6928                         do_nodes $list $LCTL set_param -n $brw_size=16$suffix ||
6929                                 error "set 16MB RPC size failed"
6930
6931                         echo "remount client to enable new RPC size"
6932                         remount_client $MOUNT || error "remount_client failed"
6933                 fi
6934
6935                 test_101g_brw_size_test 16 || error "16MB RPC test failed"
6936                 # should be able to set brw_size=12, but no rpc_stats for that
6937                 test_101g_brw_size_test 8 || error "8MB RPC test failed"
6938         fi
6939
6940         test_101g_brw_size_test 4 || error "4MB RPC test failed"
6941
6942         if [[ $orig_mb -lt 16 ]]; then
6943                 restore_lustre_params < $p
6944                 remount_client $MOUNT || error "remount_client restore failed"
6945         fi
6946
6947         rm -f $p $DIR/$tfile
6948 }
6949 run_test 101g "Big bulk(4/16 MiB) readahead"
6950
6951 setup_test102() {
6952         test_mkdir -p $DIR/$tdir
6953         chown $RUNAS_ID $DIR/$tdir
6954         STRIPE_SIZE=65536
6955         STRIPE_OFFSET=1
6956         STRIPE_COUNT=$OSTCOUNT
6957         [[ $OSTCOUNT -gt 4 ]] && STRIPE_COUNT=4
6958
6959         trap cleanup_test102 EXIT
6960         cd $DIR
6961         $1 $SETSTRIPE -S $STRIPE_SIZE -i $STRIPE_OFFSET -c $STRIPE_COUNT $tdir
6962         cd $DIR/$tdir
6963         for num in 1 2 3 4; do
6964                 for count in $(seq 1 $STRIPE_COUNT); do
6965                         for idx in $(seq 0 $[$STRIPE_COUNT - 1]); do
6966                                 local size=`expr $STRIPE_SIZE \* $num`
6967                                 local file=file"$num-$idx-$count"
6968                                 $1 $SETSTRIPE -S $size -i $idx -c $count $file
6969                         done
6970                 done
6971         done
6972
6973         cd $DIR
6974         $1 $TAR cf $TMP/f102.tar $tdir --xattrs
6975 }
6976
6977 cleanup_test102() {
6978         trap 0
6979         rm -f $TMP/f102.tar
6980         rm -rf $DIR/d0.sanity/d102
6981 }
6982
6983 test_102a() {
6984         local testfile=$DIR/$tfile
6985
6986         touch $testfile
6987
6988         [ "$UID" != 0 ] && skip_env "must run as root" && return
6989         [ -z "$(lctl get_param -n mdc.*-mdc-*.connect_flags | grep xattr)" ] &&
6990                 skip_env "must have user_xattr" && return
6991
6992         [ -z "$(which setfattr 2>/dev/null)" ] &&
6993                 skip_env "could not find setfattr" && return
6994
6995         echo "set/get xattr..."
6996         setfattr -n trusted.name1 -v value1 $testfile ||
6997                 error "setfattr -n trusted.name1=value1 $testfile failed"
6998         getfattr -n trusted.name1 $testfile 2> /dev/null |
6999           grep "trusted.name1=.value1" ||
7000                 error "$testfile missing trusted.name1=value1"
7001
7002         setfattr -n user.author1 -v author1 $testfile ||
7003                 error "setfattr -n user.author1=author1 $testfile failed"
7004         getfattr -n user.author1 $testfile 2> /dev/null |
7005           grep "user.author1=.author1" ||
7006                 error "$testfile missing trusted.author1=author1"
7007
7008         echo "listxattr..."
7009         setfattr -n trusted.name2 -v value2 $testfile ||
7010                 error "$testfile unable to set trusted.name2"
7011         setfattr -n trusted.name3 -v value3 $testfile ||
7012                 error "$testfile unable to set trusted.name3"
7013         [ $(getfattr -d -m "^trusted" $testfile 2> /dev/null |
7014             grep "trusted.name" | wc -l) -eq 3 ] ||
7015                 error "$testfile missing 3 trusted.name xattrs"
7016
7017         setfattr -n user.author2 -v author2 $testfile ||
7018                 error "$testfile unable to set user.author2"
7019         setfattr -n user.author3 -v author3 $testfile ||
7020                 error "$testfile unable to set user.author3"
7021         [ $(getfattr -d -m "^user" $testfile 2> /dev/null |
7022             grep "user.author" | wc -l) -eq 3 ] ||
7023                 error "$testfile missing 3 user.author xattrs"
7024
7025         echo "remove xattr..."
7026         setfattr -x trusted.name1 $testfile ||
7027                 error "$testfile error deleting trusted.name1"
7028         getfattr -d -m trusted $testfile 2> /dev/null | grep "trusted.name1" &&
7029                 error "$testfile did not delete trusted.name1 xattr"
7030
7031         setfattr -x user.author1 $testfile ||
7032                 error "$testfile error deleting user.author1"
7033         echo "set lustre special xattr ..."
7034         $LFS setstripe -c1 $testfile
7035         local lovea=$(getfattr -n "trusted.lov" -e hex $testfile |
7036                 awk -F "=" '/trusted.lov/ { print $2 }' )
7037         setfattr -n "trusted.lov" -v $lovea $testfile ||
7038                 error "$testfile doesn't ignore setting trusted.lov again"
7039         setfattr -n "trusted.lov" -v "invalid_value" $testfile &&
7040                 error "$testfile allow setting invalid trusted.lov"
7041         rm -f $testfile
7042 }
7043 run_test 102a "user xattr test =================================="
7044
7045 test_102b() {
7046         [ -z "$(which setfattr 2>/dev/null)" ] &&
7047                 skip_env "could not find setfattr" && return
7048
7049         # b10930: get/set/list trusted.lov xattr
7050         echo "get/set/list trusted.lov xattr ..."
7051         [[ $OSTCOUNT -lt 2 ]] && skip_env "skipping 2-stripe test" && return
7052         local testfile=$DIR/$tfile
7053         $SETSTRIPE -S 65536 -i 1 -c $OSTCOUNT $testfile ||
7054                 error "setstripe failed"
7055         local STRIPECOUNT=$($GETSTRIPE -c $testfile) ||
7056                 error "getstripe failed"
7057         getfattr -d -m "^trusted" $testfile 2>/dev/null | grep "trusted.lov" ||
7058                 error "can't get trusted.lov from $testfile"
7059
7060         local testfile2=${testfile}2
7061         local value=$(getfattr -n trusted.lov $testfile 2>/dev/null |
7062                         grep "trusted.lov" | sed -e 's/[^=]\+=//')
7063
7064         $MCREATE $testfile2
7065         setfattr -n trusted.lov -v $value $testfile2
7066         local stripe_size=$($GETSTRIPE -S $testfile2)
7067         local stripe_count=$($GETSTRIPE -c $testfile2)
7068         [[ $stripe_size -eq 65536 ]] ||
7069                 error "stripe size $stripe_size != 65536"
7070         [[ $stripe_count -eq $STRIPECOUNT ]] ||
7071                 error "stripe count $stripe_count != $STRIPECOUNT"
7072         rm -f $DIR/$tfile
7073 }
7074 run_test 102b "getfattr/setfattr for trusted.lov EAs ============"
7075
7076 test_102c() {
7077         [ -z "$(which setfattr 2>/dev/null)" ] &&
7078                 skip_env "could not find setfattr" && return
7079
7080         # b10930: get/set/list lustre.lov xattr
7081         echo "get/set/list lustre.lov xattr ..."
7082         [[ $OSTCOUNT -lt 2 ]] && skip_env "skipping 2-stripe test" && return
7083         test_mkdir -p $DIR/$tdir
7084         chown $RUNAS_ID $DIR/$tdir
7085         local testfile=$DIR/$tdir/$tfile
7086         $RUNAS $SETSTRIPE -S 65536 -i 1 -c $OSTCOUNT $testfile ||
7087                 error "setstripe failed"
7088         local STRIPECOUNT=$($RUNAS $GETSTRIPE -c $testfile) ||
7089                 error "getstripe failed"
7090         $RUNAS getfattr -d -m "^lustre" $testfile 2> /dev/null | \
7091         grep "lustre.lov" || error "can't get lustre.lov from $testfile"
7092
7093         local testfile2=${testfile}2
7094         local value=`getfattr -n lustre.lov $testfile 2> /dev/null | \
7095                      grep "lustre.lov" |sed -e 's/[^=]\+=//'  `
7096
7097         $RUNAS $MCREATE $testfile2
7098         $RUNAS setfattr -n lustre.lov -v $value $testfile2
7099         local stripe_size=$($RUNAS $GETSTRIPE -S $testfile2)
7100         local stripe_count=$($RUNAS $GETSTRIPE -c $testfile2)
7101         [ $stripe_size -eq 65536 ] || error "stripe size $stripe_size != 65536"
7102         [ $stripe_count -eq $STRIPECOUNT ] ||
7103                 error "stripe count $stripe_count != $STRIPECOUNT"
7104 }
7105 run_test 102c "non-root getfattr/setfattr for lustre.lov EAs ==========="
7106
7107 compare_stripe_info1() {
7108         local stripe_index_all_zero=true
7109
7110         for num in 1 2 3 4; do
7111                 for count in $(seq 1 $STRIPE_COUNT); do
7112                         for offset in $(seq 0 $[$STRIPE_COUNT - 1]); do
7113                                 local size=$((STRIPE_SIZE * num))
7114                                 local file=file"$num-$offset-$count"
7115                                 stripe_size=$($LFS getstripe -S $PWD/$file)
7116                                 [[ $stripe_size -ne $size ]] &&
7117                                     error "$file: size $stripe_size != $size"
7118                                 stripe_count=$($LFS getstripe -c $PWD/$file)
7119                                 # allow fewer stripes to be created, ORI-601
7120                                 [[ $stripe_count -lt $(((3 * count + 3) / 4)) ]] &&
7121                                     error "$file: count $stripe_count != $count"
7122                                 stripe_index=$($LFS getstripe -i $PWD/$file)
7123                                 [[ $stripe_index -ne 0 ]] &&
7124                                         stripe_index_all_zero=false
7125                         done
7126                 done
7127         done
7128         $stripe_index_all_zero &&
7129                 error "all files are being extracted starting from OST index 0"
7130         return 0
7131 }
7132
7133 find_lustre_tar() {
7134         [ -n "$(which tar 2>/dev/null)" ] &&
7135                 strings $(which tar) | grep -q "lustre" && echo tar
7136 }
7137
7138 test_102d() {
7139         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7140         # b10930: tar test for trusted.lov xattr
7141         TAR=$(find_lustre_tar)
7142         [ -z "$TAR" ] && skip_env "lustre-aware tar is not installed" && return
7143         [[ $OSTCOUNT -lt 2 ]] && skip_env "skipping N-stripe test" && return
7144         setup_test102
7145         test_mkdir -p $DIR/d102d
7146         $TAR xf $TMP/f102.tar -C $DIR/d102d --xattrs
7147         cd $DIR/d102d/$tdir
7148         compare_stripe_info1
7149 }
7150 run_test 102d "tar restore stripe info from tarfile,not keep osts ==========="
7151
7152 test_102f() {
7153         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7154         # b10930: tar test for trusted.lov xattr
7155         TAR=$(find_lustre_tar)
7156         [ -z "$TAR" ] && skip_env "lustre-aware tar is not installed" && return
7157         [[ $OSTCOUNT -lt 2 ]] && skip_env "skipping N-stripe test" && return
7158         setup_test102
7159         test_mkdir -p $DIR/d102f
7160         cd $DIR
7161         $TAR cf - --xattrs $tdir | $TAR xf - --xattrs -C $DIR/d102f
7162         cd $DIR/d102f/$tdir
7163         compare_stripe_info1
7164 }
7165 run_test 102f "tar copy files, not keep osts ==========="
7166
7167 grow_xattr() {
7168         local xsize=${1:-1024}  # in bytes
7169         local file=$DIR/$tfile
7170
7171         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep xattr)" ] &&
7172                 skip "must have user_xattr" && return 0
7173         [ -z "$(which setfattr 2>/dev/null)" ] &&
7174                 skip_env "could not find setfattr" && return 0
7175         [ -z "$(which getfattr 2>/dev/null)" ] &&
7176                 skip_env "could not find getfattr" && return 0
7177
7178         touch $file
7179
7180         local value="$(generate_string $xsize)"
7181
7182         local xbig=trusted.big
7183         log "save $xbig on $file"
7184         setfattr -n $xbig -v $value $file ||
7185                 error "saving $xbig on $file failed"
7186
7187         local orig=$(get_xattr_value $xbig $file)
7188         [[ "$orig" != "$value" ]] && error "$xbig different after saving $xbig"
7189
7190         local xsml=trusted.sml
7191         log "save $xsml on $file"
7192         setfattr -n $xsml -v val $file || error "saving $xsml on $file failed"
7193
7194         local new=$(get_xattr_value $xbig $file)
7195         [[ "$new" != "$orig" ]] && error "$xbig different after saving $xsml"
7196
7197         log "grow $xsml on $file"
7198         setfattr -n $xsml -v "$value" $file ||
7199                 error "growing $xsml on $file failed"
7200
7201         new=$(get_xattr_value $xbig $file)
7202         [[ "$new" != "$orig" ]] && error "$xbig different after growing $xsml"
7203         log "$xbig still valid after growing $xsml"
7204
7205         rm -f $file
7206 }
7207
7208 test_102h() { # bug 15777
7209         grow_xattr 1024
7210 }
7211 run_test 102h "grow xattr from inside inode to external block"
7212
7213 test_102ha() {
7214         large_xattr_enabled || { skip "large_xattr disabled" && return; }
7215         grow_xattr $(max_xattr_size)
7216 }
7217 run_test 102ha "grow xattr from inside inode to external inode"
7218
7219 test_102i() { # bug 17038
7220         [ -z "$(which getfattr 2>/dev/null)" ] &&
7221                 skip "could not find getfattr" && return
7222         touch $DIR/$tfile
7223         ln -s $DIR/$tfile $DIR/${tfile}link
7224         getfattr -n trusted.lov $DIR/$tfile ||
7225                 error "lgetxattr on $DIR/$tfile failed"
7226         getfattr -h -n trusted.lov $DIR/${tfile}link 2>&1 |
7227                 grep -i "no such attr" ||
7228                 error "error for lgetxattr on $DIR/${tfile}link is not ENODATA"
7229         rm -f $DIR/$tfile $DIR/${tfile}link
7230 }
7231 run_test 102i "lgetxattr test on symbolic link ============"
7232
7233 test_102j() {
7234         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7235         TAR=$(find_lustre_tar)
7236         [ -z "$TAR" ] && skip_env "lustre-aware tar is not installed" && return
7237         [[ $OSTCOUNT -lt 2 ]] && skip_env "skipping N-stripe test" && return
7238         setup_test102 "$RUNAS"
7239         test_mkdir -p $DIR/d102j
7240         chown $RUNAS_ID $DIR/d102j
7241         $RUNAS $TAR xf $TMP/f102.tar -C $DIR/d102j --xattrs
7242         cd $DIR/d102j/$tdir
7243         compare_stripe_info1 "$RUNAS"
7244 }
7245 run_test 102j "non-root tar restore stripe info from tarfile, not keep osts ==="
7246
7247 test_102k() {
7248         [ -z "$(which setfattr 2>/dev/null)" ] &&
7249                 skip "could not find setfattr" && return
7250         touch $DIR/$tfile
7251         # b22187 just check that does not crash for regular file.
7252         setfattr -n trusted.lov $DIR/$tfile
7253         # b22187 'setfattr -n trusted.lov' should work as remove LOV EA for directories
7254         local test_kdir=$DIR/d102k
7255         test_mkdir $test_kdir
7256         local default_size=`$GETSTRIPE -S $test_kdir`
7257         local default_count=`$GETSTRIPE -c $test_kdir`
7258         local default_offset=`$GETSTRIPE -i $test_kdir`
7259         $SETSTRIPE -S 65536 -i 0 -c $OSTCOUNT $test_kdir ||
7260                 error 'dir setstripe failed'
7261         setfattr -n trusted.lov $test_kdir
7262         local stripe_size=`$GETSTRIPE -S $test_kdir`
7263         local stripe_count=`$GETSTRIPE -c $test_kdir`
7264         local stripe_offset=`$GETSTRIPE -i $test_kdir`
7265         [ $stripe_size -eq $default_size ] ||
7266                 error "stripe size $stripe_size != $default_size"
7267         [ $stripe_count -eq $default_count ] ||
7268                 error "stripe count $stripe_count != $default_count"
7269         [ $stripe_offset -eq $default_offset ] ||
7270                 error "stripe offset $stripe_offset != $default_offset"
7271         rm -rf $DIR/$tfile $test_kdir
7272 }
7273 run_test 102k "setfattr without parameter of value shouldn't cause a crash"
7274
7275 test_102l() {
7276         [ -z "$(which getfattr 2>/dev/null)" ] &&
7277                 skip "could not find getfattr" && return
7278
7279         # LU-532 trusted. xattr is invisible to non-root
7280         local testfile=$DIR/$tfile
7281
7282         touch $testfile
7283
7284         echo "listxattr as user..."
7285         chown $RUNAS_ID $testfile
7286         $RUNAS getfattr -d -m '.*' $testfile 2>&1 |
7287             grep -q "trusted" &&
7288                 error "$testfile trusted xattrs are user visible"
7289
7290         return 0;
7291 }
7292 run_test 102l "listxattr size test =================================="
7293
7294 test_102m() { # LU-3403 llite: error of listxattr when buffer is small
7295         local path=$DIR/$tfile
7296         touch $path
7297
7298         listxattr_size_check $path || error "listattr_size_check $path failed"
7299 }
7300 run_test 102m "Ensure listxattr fails on small bufffer ========"
7301
7302 cleanup_test102
7303
7304 getxattr() { # getxattr path name
7305         # Return the base64 encoding of the value of xattr name on path.
7306         local path=$1
7307         local name=$2
7308
7309         # # getfattr --absolute-names --encoding=base64 --name=trusted.lov $path
7310         # file: $path
7311         # trusted.lov=0s0AvRCwEAAAAGAAAAAAAAAAAEAAACAAAAAAAQAAEAA...AAAAAAAAA=
7312         #
7313         # We print just 0s0AvRCwEAAAAGAAAAAAAAAAAEAAACAAAAAAAQAAEAA...AAAAAAAAA=
7314
7315         getfattr --absolute-names --encoding=base64 --name=$name $path |
7316                 awk -F= -v name=$name '$1 == name {
7317                         print substr($0, index($0, "=") + 1);
7318         }'
7319 }
7320
7321 test_102n() { # LU-4101 mdt: protect internal xattrs
7322         [ -z "$(which setfattr 2>/dev/null)" ] &&
7323                 skip "could not find setfattr" && return
7324         if [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.5.50) ]
7325         then
7326                 skip "MDT < 2.5.50 allows setxattr on internal trusted xattrs"
7327                 return
7328         fi
7329
7330         local file0=$DIR/$tfile.0
7331         local file1=$DIR/$tfile.1
7332         local xattr0=$TMP/$tfile.0
7333         local xattr1=$TMP/$tfile.1
7334         local namelist="lov lma lmv link fid version som hsm"
7335         local name
7336         local value
7337
7338         rm -rf $file0 $file1 $xattr0 $xattr1
7339         touch $file0 $file1
7340
7341         # Get 'before' xattrs of $file1.
7342         getfattr --absolute-names --dump --match=- $file1 > $xattr0
7343
7344         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.53) ] &&
7345                 namelist+=" lfsck_namespace"
7346         for name in $namelist; do
7347                 # Try to copy xattr from $file0 to $file1.
7348                 value=$(getxattr $file0 trusted.$name 2> /dev/null)
7349
7350                 setfattr --name=trusted.$name --value="$value" $file1 ||
7351                         error "setxattr 'trusted.$name' failed"
7352
7353                 # Try to set a garbage xattr.
7354                 value=0sVGhlIHF1aWNrIGJyb3duIGZveCBqdW1wcyBvdmVyIGl0c2VsZi4=
7355
7356                 if [[ x$name == "xlov" ]]; then
7357                         setfattr --name=trusted.lov --value="$value" $file1 &&
7358                         error "setxattr invalid 'trusted.lov' success"
7359                 else
7360                         setfattr --name=trusted.$name --value="$value" $file1 ||
7361                                 error "setxattr invalid 'trusted.$name' failed"
7362                 fi
7363
7364                 # Try to remove the xattr from $file1. We don't care if this
7365                 # appears to succeed or fail, we just don't want there to be
7366                 # any changes or crashes.
7367                 setfattr --remove=$trusted.$name $file1 2> /dev/null
7368         done
7369
7370         if [ $(lustre_version_code $SINGLEMDS) -gt $(version_code 2.6.50) ]
7371         then
7372                 name="lfsck_ns"
7373                 # Try to copy xattr from $file0 to $file1.
7374                 value=$(getxattr $file0 trusted.$name 2> /dev/null)
7375
7376                 setfattr --name=trusted.$name --value="$value" $file1 ||
7377                         error "setxattr 'trusted.$name' failed"
7378
7379                 # Try to set a garbage xattr.
7380                 value=0sVGhlIHF1aWNrIGJyb3duIGZveCBqdW1wcyBvdmVyIGl0c2VsZi4=
7381
7382                 setfattr --name=trusted.$name --value="$value" $file1 ||
7383                         error "setxattr 'trusted.$name' failed"
7384
7385                 # Try to remove the xattr from $file1. We don't care if this
7386                 # appears to succeed or fail, we just don't want there to be
7387                 # any changes or crashes.
7388                 setfattr --remove=$trusted.$name $file1 2> /dev/null
7389         fi
7390
7391         # Get 'after' xattrs of file1.
7392         getfattr --absolute-names --dump --match=- $file1 > $xattr1
7393
7394         if ! diff $xattr0 $xattr1; then
7395                 error "before and after xattrs of '$file1' differ"
7396         fi
7397
7398         rm -rf $file0 $file1 $xattr0 $xattr1
7399
7400         return 0
7401 }
7402 run_test 102n "silently ignore setxattr on internal trusted xattrs"
7403
7404 test_102p() { # LU-4703 setxattr did not check ownership
7405         local testfile=$DIR/$tfile
7406
7407         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.5.56) ] &&
7408                 skip "MDS needs to be at least 2.5.56" && return
7409
7410         touch $testfile
7411
7412         echo "setfacl as user..."
7413         $RUNAS setfacl -m "u:$RUNAS_ID:rwx" $testfile
7414         [ $? -ne 0 ] || error "setfacl by $RUNAS_ID was allowed on $testfile"
7415
7416         echo "setfattr as user..."
7417         setfacl -m "u:$RUNAS_ID:---" $testfile
7418         $RUNAS setfattr -x system.posix_acl_access $testfile
7419         [ $? -ne 0 ] || error "setfattr by $RUNAS_ID was allowed on $testfile"
7420 }
7421 run_test 102p "check setxattr(2) correctly fails without permission"
7422
7423 test_102q() {
7424         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.6.92) ] &&
7425                 skip "MDS needs to be at least 2.6.92" && return
7426         orphan_linkea_check $DIR/$tfile || error "orphan_linkea_check"
7427 }
7428 run_test 102q "flistxattr should not return trusted.link EAs for orphans"
7429
7430 test_102r() {
7431         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.6.93) ] &&
7432                 skip "MDS needs to be at least 2.6.93" && return
7433         touch $DIR/$tfile || error "touch"
7434         setfattr -n user.$(basename $tfile) $DIR/$tfile || error "setfattr"
7435         getfattr -n user.$(basename $tfile) $DIR/$tfile || error "getfattr"
7436         rm $DIR/$tfile || error "rm"
7437
7438         #normal directory
7439         mkdir -p $DIR/$tdir || error "mkdir"
7440         setfattr -n user.$(basename $tdir) $DIR/$tdir || error "setfattr dir"
7441         getfattr -n user.$(basename $tdir) $DIR/$tdir || error "getfattr dir"
7442         setfattr -x user.$(basename $tdir) $DIR/$tdir ||
7443                 error "$testfile error deleting user.author1"
7444         getfattr -d -m user.$(basename $tdir) 2> /dev/null |
7445                 grep "user.$(basename $tdir)" &&
7446                 error "$tdir did not delete user.$(basename $tdir)"
7447         rmdir $DIR/$tdir || error "rmdir"
7448
7449         #striped directory
7450         test_mkdir -p $DIR/$tdir || error "make striped dir"
7451         setfattr -n user.$(basename $tdir) $DIR/$tdir || error "setfattr dir"
7452         getfattr -n user.$(basename $tdir) $DIR/$tdir || error "getfattr dir"
7453         setfattr -x user.$(basename $tdir) $DIR/$tdir ||
7454                 error "$testfile error deleting user.author1"
7455         getfattr -d -m user.$(basename $tdir) 2> /dev/null |
7456                 grep "user.$(basename $tdir)" &&
7457                 error "$tdir did not delete user.$(basename $tdir)"
7458         rmdir $DIR/$tdir || error "rm striped dir"
7459 }
7460 run_test 102r "set EAs with empty values"
7461
7462 run_acl_subtest()
7463 {
7464     $LUSTRE/tests/acl/run $LUSTRE/tests/acl/$1.test
7465     return $?
7466 }
7467
7468 test_103a() {
7469         [ "$UID" != 0 ] && skip_env "must run as root" && return
7470         [ -z "$(lctl get_param -n mdc.*-mdc-*.connect_flags | grep acl)" ] &&
7471                 skip "must have acl enabled" && return
7472         [ -z "$(which setfacl 2>/dev/null)" ] &&
7473                 skip_env "could not find setfacl" && return
7474         $GSS && skip "could not run under gss" && return
7475         remote_mds_nodsh && skip "remote MDS with nodsh" && return
7476
7477         gpasswd -a daemon bin                           # LU-5641
7478         do_facet $SINGLEMDS gpasswd -a daemon bin       # LU-5641
7479
7480         declare -a identity_old
7481
7482         for num in $(seq $MDSCOUNT); do
7483                 switch_identity $num true || identity_old[$num]=$?
7484         done
7485
7486         SAVE_UMASK=$(umask)
7487         umask 0022
7488         mkdir -p $DIR/$tdir
7489         cd $DIR/$tdir
7490
7491         echo "performing cp ..."
7492         run_acl_subtest cp || error "run_acl_subtest cp failed"
7493         echo "performing getfacl-noacl..."
7494         run_acl_subtest getfacl-noacl || error "getfacl-noacl test failed"
7495         echo "performing misc..."
7496         run_acl_subtest misc || error  "misc test failed"
7497         echo "performing permissions..."
7498         run_acl_subtest permissions || error "permissions failed"
7499         # LU-1482 mdd: Setting xattr are properly checked with and without ACLs
7500         if [ $(lustre_version_code $SINGLEMDS) -gt $(version_code 2.8.55) -o \
7501              \( $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.6) -a \
7502              $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.5.29) \) ]
7503         then
7504                 echo "performing permissions xattr..."
7505                 run_acl_subtest permissions_xattr ||
7506                         error "permissions_xattr failed"
7507         fi
7508         echo "performing setfacl..."
7509         run_acl_subtest setfacl || error  "setfacl test failed"
7510
7511         # inheritance test got from HP
7512         echo "performing inheritance..."
7513         cp $LUSTRE/tests/acl/make-tree . || error "cannot copy make-tree"
7514         chmod +x make-tree || error "chmod +x failed"
7515         run_acl_subtest inheritance || error "inheritance test failed"
7516         rm -f make-tree
7517
7518         echo "LU-974 ignore umask when acl is enabled..."
7519         run_acl_subtest 974 || error "LU-974 umask test failed"
7520         if [ $MDSCOUNT -ge 2 ]; then
7521                 run_acl_subtest 974_remote ||
7522                         error "LU-974 umask test failed under remote dir"
7523         fi
7524
7525         echo "LU-2561 newly created file is same size as directory..."
7526         if [ $(facet_fstype $SINGLEMDS) != "zfs" ]; then
7527                 run_acl_subtest 2561 || error "LU-2561 test failed"
7528         else
7529                 run_acl_subtest 2561_zfs || error "LU-2561 zfs test failed"
7530         fi
7531
7532         run_acl_subtest 4924 || error "LU-4924 test failed"
7533
7534         cd $SAVE_PWD
7535         umask $SAVE_UMASK
7536
7537         for num in $(seq $MDSCOUNT); do
7538                 if [ "${identity_old[$num]}" = 1 ]; then
7539                         switch_identity $num false || identity_old[$num]=$?
7540                 fi
7541         done
7542 }
7543 run_test 103a "acl test ========================================="
7544
7545 test_103b() {
7546         remote_mds_nodsh && skip "remote MDS with nodsh" && return
7547         local noacl=false
7548         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
7549         local mountopts=$MDS_MOUNT_OPTS
7550
7551         if [[ "$MDS_MOUNT_OPTS" =~ "noacl" ]]; then
7552                 noacl=true
7553         else
7554                 # stop the MDT
7555                 stop $SINGLEMDS || error "failed to stop MDT."
7556                 # remount the MDT
7557                 if [ -z "$MDS_MOUNT_OPTS" ]; then
7558                         MDS_MOUNT_OPTS="-o noacl"
7559                 else
7560                         MDS_MOUNT_OPTS="${MDS_MOUNT_OPTS},noacl"
7561                 fi
7562                 start $SINGLEMDS $MDT_DEV $MDS_MOUNT_OPTS ||
7563                         error "failed to start MDT."
7564                 MDS_MOUNT_OPTS=$mountopts
7565         fi
7566
7567         touch $DIR/$tfile
7568         setfacl -m u:bin:rw $DIR/$tfile && error "setfacl should fail"
7569
7570         if ! $noacl; then
7571                 # stop the MDT
7572                 stop $SINGLEMDS || error "failed to stop MDT."
7573                 # remount the MDT
7574                 start $SINGLEMDS $MDT_DEV $MDS_MOUNT_OPTS ||
7575                         error "failed to start MDT."
7576         fi
7577
7578         true
7579 }
7580 run_test 103b "MDS mount option 'noacl'"
7581
7582 test_103c() {
7583         mkdir -p $DIR/$tdir
7584         cp -rp $DIR/$tdir $DIR/$tdir.bak
7585
7586         [ -n "$(getfattr -d -m. $DIR/$tdir | grep posix_acl_default)" ] &&
7587                 error "$DIR/$tdir shouldn't contain default ACL"
7588         [ -n "$(getfattr -d -m. $DIR/$tdir.bak | grep posix_acl_default)" ] &&
7589                 error "$DIR/$tdir.bak shouldn't contain default ACL"
7590         true
7591 }
7592 run_test 103c "'cp -rp' won't set empty acl"
7593
7594 test_104a() {
7595         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7596         touch $DIR/$tfile
7597         lfs df || error "lfs df failed"
7598         lfs df -ih || error "lfs df -ih failed"
7599         lfs df -h $DIR || error "lfs df -h $DIR failed"
7600         lfs df -i $DIR || error "lfs df -i $DIR failed"
7601         lfs df $DIR/$tfile || error "lfs df $DIR/$tfile failed"
7602         lfs df -ih $DIR/$tfile || error "lfs df -ih $DIR/$tfile failed"
7603
7604         local OSC=$(lctl dl | grep OST0000-osc-[^M] | awk '{ print $4 }')
7605         lctl --device %$OSC deactivate
7606         lfs df || error "lfs df with deactivated OSC failed"
7607         lctl --device %$OSC activate
7608         # wait the osc back to normal
7609         wait_osc_import_state client ost FULL
7610
7611         lfs df || error "lfs df with reactivated OSC failed"
7612         rm -f $DIR/$tfile
7613 }
7614 run_test 104a "lfs df [-ih] [path] test ========================="
7615
7616 test_104b() {
7617         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7618         [ $RUNAS_ID -eq $UID ] &&
7619                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
7620         chmod 666 /dev/obd
7621         denied_cnt=$(($($RUNAS $LFS check servers 2>&1 |
7622                         grep "Permission denied" | wc -l)))
7623         if [ $denied_cnt -ne 0 ]; then
7624                 error "lfs check servers test failed"
7625         fi
7626 }
7627 run_test 104b "$RUNAS lfs check servers test ===================="
7628
7629 test_105a() {
7630         # doesn't work on 2.4 kernels
7631         touch $DIR/$tfile
7632         if $(flock_is_enabled); then
7633                 flocks_test 1 on -f $DIR/$tfile || error "fail flock on"
7634         else
7635                 flocks_test 1 off -f $DIR/$tfile || error "fail flock off"
7636         fi
7637         rm -f $DIR/$tfile
7638 }
7639 run_test 105a "flock when mounted without -o flock test ========"
7640
7641 test_105b() {
7642         touch $DIR/$tfile
7643         if $(flock_is_enabled); then
7644                 flocks_test 1 on -c $DIR/$tfile || error "fail flock on"
7645         else
7646                 flocks_test 1 off -c $DIR/$tfile || error "fail flock off"
7647         fi
7648         rm -f $DIR/$tfile
7649 }
7650 run_test 105b "fcntl when mounted without -o flock test ========"
7651
7652 test_105c() {
7653         touch $DIR/$tfile
7654         if $(flock_is_enabled); then
7655                 flocks_test 1 on -l $DIR/$tfile || error "fail flock on"
7656         else
7657                 flocks_test 1 off -l $DIR/$tfile || error "fail flock off"
7658         fi
7659         rm -f $DIR/$tfile
7660 }
7661 run_test 105c "lockf when mounted without -o flock test ========"
7662
7663 test_105d() { # bug 15924
7664         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7665         test_mkdir -p $DIR/$tdir
7666         flock_is_enabled || { skip "mount w/o flock enabled" && return; }
7667         #define OBD_FAIL_LDLM_CP_CB_WAIT  0x315
7668         $LCTL set_param fail_loc=0x80000315
7669         flocks_test 2 $DIR/$tdir
7670 }
7671 run_test 105d "flock race (should not freeze) ========"
7672
7673 test_105e() { # bug 22660 && 22040
7674         flock_is_enabled || { skip "mount w/o flock enabled" && return; }
7675         touch $DIR/$tfile
7676         flocks_test 3 $DIR/$tfile
7677 }
7678 run_test 105e "Two conflicting flocks from same process ======="
7679
7680 test_106() { #bug 10921
7681         test_mkdir -p $DIR/$tdir
7682         $DIR/$tdir && error "exec $DIR/$tdir succeeded"
7683         chmod 777 $DIR/$tdir || error "chmod $DIR/$tdir failed"
7684 }
7685 run_test 106 "attempt exec of dir followed by chown of that dir"
7686
7687 test_107() {
7688         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7689         CDIR=`pwd`
7690         cd $DIR
7691
7692         local file=core
7693         rm -f $file
7694
7695         local save_pattern=$(sysctl -n kernel.core_pattern)
7696         local save_uses_pid=$(sysctl -n kernel.core_uses_pid)
7697         sysctl -w kernel.core_pattern=$file
7698         sysctl -w kernel.core_uses_pid=0
7699
7700         ulimit -c unlimited
7701         sleep 60 &
7702         SLEEPPID=$!
7703
7704         sleep 1
7705
7706         kill -s 11 $SLEEPPID
7707         wait $SLEEPPID
7708         if [ -e $file ]; then
7709                 size=`stat -c%s $file`
7710                 [ $size -eq 0 ] && error "Fail to create core file $file"
7711         else
7712                 error "Fail to create core file $file"
7713         fi
7714         rm -f $file
7715         sysctl -w kernel.core_pattern=$save_pattern
7716         sysctl -w kernel.core_uses_pid=$save_uses_pid
7717         cd $CDIR
7718 }
7719 run_test 107 "Coredump on SIG"
7720
7721 test_110() {
7722         test_mkdir -p $DIR/$tdir
7723         test_mkdir $DIR/$tdir/$(str_repeat 'a' 255) ||
7724                 error "mkdir with 255 char failed"
7725         test_mkdir $DIR/$tdir/$(str_repeat 'b' 256) &&
7726                 error "mkdir with 256 char should fail, but did not"
7727         touch $DIR/$tdir/$(str_repeat 'x' 255) ||
7728                 error "create with 255 char failed"
7729         touch $DIR/$tdir/$(str_repeat 'y' 256) &&
7730                 error "create with 256 char should fail, but did not"
7731
7732         ls -l $DIR/$tdir
7733         rm -rf $DIR/$tdir
7734 }
7735 run_test 110 "filename length checking"
7736
7737 #
7738 # Purpose: To verify dynamic thread (OSS) creation.
7739 #
7740 test_115() {
7741         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7742         remote_ost_nodsh && skip "remote OST with nodsh" && return
7743
7744         # Lustre does not stop service threads once they are started.
7745         # Reset number of running threads to default.
7746         stopall
7747         setupall
7748
7749         local OSTIO_pre
7750         local save_params="$TMP/sanity-$TESTNAME.parameters"
7751
7752         # Get ll_ost_io count before I/O
7753         OSTIO_pre=$(do_facet ost1 \
7754                 "$LCTL get_param ost.OSS.ost_io.threads_started | cut -d= -f2")
7755         # Exit if lustre is not running (ll_ost_io not running).
7756         [ -z "$OSTIO_pre" ] && error "no OSS threads"
7757
7758         echo "Starting with $OSTIO_pre threads"
7759         local thread_max=$((OSTIO_pre * 2))
7760         local rpc_in_flight=$((thread_max * 2))
7761         # Number of I/O Process proposed to be started.
7762         local nfiles
7763         local facets=$(get_facets OST)
7764
7765         save_lustre_params client \
7766                 "osc.*OST*.max_rpcs_in_flight" > $save_params
7767         save_lustre_params $facets \
7768                 "ost.OSS.ost_io.threads_max" >> $save_params
7769
7770         # Set in_flight to $rpc_in_flight
7771         $LCTL set_param osc.*OST*.max_rpcs_in_flight=$rpc_in_flight ||
7772                 error "Failed to set max_rpcs_in_flight to $rpc_in_flight"
7773         nfiles=${rpc_in_flight}
7774         # Set ost thread_max to $thread_max
7775         do_facet ost1 \
7776                 "$LCTL set_param ost.OSS.ost_io.threads_max=$thread_max"
7777
7778         # 5 Minutes should be sufficient for max number of OSS
7779         # threads(thread_max) to be created.
7780         local timeout=300
7781
7782         # Start I/O.
7783         local WTL=${WTL:-"$LUSTRE/tests/write_time_limit"}
7784         mkdir -p $DIR/$tdir
7785         for i in $(seq $nfiles); do
7786                 local file=$DIR/$tdir/${tfile}-$i
7787                 $LFS setstripe -c -1 -i 0 $file
7788                 ($WTL $file $timeout)&
7789         done
7790
7791         # I/O Started - Wait for thread_started to reach thread_max or report
7792         # error if thread_started is more than thread_max.
7793         echo "Waiting for thread_started to reach thread_max"
7794         local thread_started=0
7795         local end_time=$((SECONDS + timeout))
7796
7797         while [ $SECONDS -le $end_time ] ; do
7798                 echo -n "."
7799                 # Get ost i/o thread_started count.
7800                 thread_started=$(do_facet ost1 \
7801                         "$LCTL get_param \
7802                         ost.OSS.ost_io.threads_started | cut -d= -f2")
7803                 # Break out if thread_started is equal/greater than thread_max
7804                 if [[ $thread_started -ge $thread_max ]]; then
7805                         echo ll_ost_io thread_started $thread_started, \
7806                                 equal/greater than thread_max $thread_max
7807                         break
7808                 fi
7809                 sleep 1
7810         done
7811
7812         # Cleanup - We have the numbers, Kill i/o jobs if running.
7813         jobcount=($(jobs -p))
7814         for i in $(seq 0 $((${#jobcount[@]}-1)))
7815         do
7816                 kill -9 ${jobcount[$i]}
7817                 if [ $? -ne 0 ] ; then
7818                         echo Warning: \
7819                         Failed to Kill \'WTL\(I/O\)\' with pid ${jobcount[$i]}
7820                 fi
7821         done
7822
7823         # Cleanup files left by WTL binary.
7824         for i in $(seq $nfiles); do
7825                 local file=$DIR/$tdir/${tfile}-$i
7826                 rm -rf $file
7827                 if [ $? -ne 0 ] ; then
7828                         echo "Warning: Failed to delete file $file"
7829                 fi
7830         done
7831
7832         restore_lustre_params <$save_params
7833         rm -f $save_params || echo "Warning: delete file '$save_params' failed"
7834
7835         # Error out if no new thread has started or Thread started is greater
7836         # than thread max.
7837         if [[ $thread_started -le $OSTIO_pre ||
7838                         $thread_started -gt $thread_max ]]; then
7839                 error "ll_ost_io: thread_started $thread_started" \
7840                       "OSTIO_pre $OSTIO_pre, thread_max $thread_max." \
7841                       "No new thread started or thread started greater " \
7842                       "than thread_max."
7843         fi
7844 }
7845 run_test 115 "verify dynamic thread creation===================="
7846
7847 free_min_max () {
7848         wait_delete_completed
7849         AVAIL=($(lctl get_param -n osc.*[oO][sS][cC]-[^M]*.kbytesavail))
7850         echo "OST kbytes available: ${AVAIL[@]}"
7851         MAXV=${AVAIL[0]}
7852         MAXI=0
7853         MINV=${AVAIL[0]}
7854         MINI=0
7855         for ((i = 0; i < ${#AVAIL[@]}; i++)); do
7856                 #echo OST $i: ${AVAIL[i]}kb
7857                 if [[ ${AVAIL[i]} -gt $MAXV ]]; then
7858                         MAXV=${AVAIL[i]}
7859                         MAXI=$i
7860                 fi
7861                 if [[ ${AVAIL[i]} -lt $MINV ]]; then
7862                         MINV=${AVAIL[i]}
7863                         MINI=$i
7864                 fi
7865         done
7866         echo "Min free space: OST $MINI: $MINV"
7867         echo "Max free space: OST $MAXI: $MAXV"
7868 }
7869
7870 test_116a() { # was previously test_116()
7871         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7872         remote_mds_nodsh && skip "remote MDS with nodsh" && return
7873
7874         [[ $OSTCOUNT -lt 2 ]] && skip_env "$OSTCOUNT < 2 OSTs" && return
7875
7876         echo -n "Free space priority "
7877         do_facet $SINGLEMDS lctl get_param -n lo*.*-mdtlov.qos_prio_free |
7878                 head -n1
7879         declare -a AVAIL
7880         free_min_max
7881
7882         [ $MINV -eq 0 ] && skip "no free space in OST$MINI, skip" && return
7883         [ $MINV -gt 10000000 ] && skip "too much free space in OST$MINI, skip" \
7884                 && return
7885         trap simple_cleanup_common EXIT
7886
7887
7888         # Check if we need to generate uneven OSTs
7889         test_mkdir -p $DIR/$tdir/OST${MINI}
7890         local FILL=$((MINV / 4))
7891         local DIFF=$((MAXV - MINV))
7892         local DIFF2=$((DIFF * 100 / MINV))
7893
7894         local threshold=$(do_facet $SINGLEMDS \
7895                 lctl get_param -n *.*MDT0000-mdtlov.qos_threshold_rr | head -n1)
7896         threshold=${threshold%%%}
7897         echo -n "Check for uneven OSTs: "
7898         echo -n "diff=${DIFF}KB (${DIFF2}%) must be > ${threshold}% ..."
7899
7900         if [[ $DIFF2 -gt $threshold ]]; then
7901                 echo "ok"
7902                 echo "Don't need to fill OST$MINI"
7903         else
7904                 # generate uneven OSTs. Write 2% over the QOS threshold value
7905                 echo "no"
7906                 DIFF=$((threshold - DIFF2 + 2))
7907                 DIFF2=$((MINV * DIFF / 100))
7908                 echo "Fill $DIFF% remaining space in OST$MINI with ${DIFF2}KB"
7909                 $SETSTRIPE -i $MINI -c 1 $DIR/$tdir/OST${MINI} ||
7910                         error "setstripe failed"
7911                 DIFF=$((DIFF2 / 2048))
7912                 i=0
7913                 while [ $i -lt $DIFF ]; do
7914                         i=$((i + 1))
7915                         dd if=/dev/zero of=$DIR/$tdir/OST${MINI}/$tfile-$i \
7916                                 bs=2M count=1 2>/dev/null
7917                         echo -n .
7918                 done
7919                 echo .
7920                 sync
7921                 sleep_maxage
7922                 free_min_max
7923         fi
7924
7925         DIFF=$((MAXV - MINV))
7926         DIFF2=$((DIFF * 100 / MINV))
7927         echo -n "diff=$DIFF=$DIFF2% must be > $threshold% for QOS mode..."
7928         if [ $DIFF2 -gt $threshold ]; then
7929                 echo "ok"
7930         else
7931                 echo "failed - QOS mode won't be used"
7932                 skip "QOS imbalance criteria not met"
7933                 simple_cleanup_common
7934                 return
7935         fi
7936
7937         MINI1=$MINI
7938         MINV1=$MINV
7939         MAXI1=$MAXI
7940         MAXV1=$MAXV
7941
7942         # now fill using QOS
7943         $SETSTRIPE -c 1 $DIR/$tdir
7944         FILL=$((FILL / 200))
7945         if [ $FILL -gt 600 ]; then
7946                 FILL=600
7947         fi
7948         echo "writing $FILL files to QOS-assigned OSTs"
7949         i=0
7950         while [ $i -lt $FILL ]; do
7951                 i=$((i + 1))
7952                 dd if=/dev/zero of=$DIR/$tdir/$tfile-$i bs=200k \
7953                         count=1 2>/dev/null
7954                 echo -n .
7955         done
7956         echo "wrote $i 200k files"
7957         sync
7958         sleep_maxage
7959
7960         echo "Note: free space may not be updated, so measurements might be off"
7961         free_min_max
7962         DIFF2=$((MAXV - MINV))
7963         echo "free space delta: orig $DIFF final $DIFF2"
7964         [ $DIFF2 -gt $DIFF ] && echo "delta got worse!"
7965         DIFF=$((MINV1 - ${AVAIL[$MINI1]}))
7966         echo "Wrote ${DIFF}KB to smaller OST $MINI1"
7967         DIFF2=$((MAXV1 - ${AVAIL[$MAXI1]}))
7968         echo "Wrote ${DIFF2}KB to larger OST $MAXI1"
7969         if [[ $DIFF -gt 0 ]]; then
7970                 FILL=$((DIFF2 * 100 / DIFF - 100))
7971                 echo "Wrote ${FILL}% more data to larger OST $MAXI1"
7972         fi
7973
7974         # Figure out which files were written where
7975         UUID=$(lctl get_param -n lov.${FSNAME}-clilov-*.target_obd |
7976                awk '/'$MINI1': / {print $2; exit}')
7977         echo $UUID
7978         MINC=$($GETSTRIPE --ost $UUID $DIR/$tdir | grep $DIR | wc -l)
7979         echo "$MINC files created on smaller OST $MINI1"
7980         UUID=$(lctl get_param -n lov.${FSNAME}-clilov-*.target_obd |
7981                awk '/'$MAXI1': / {print $2; exit}')
7982         echo $UUID
7983         MAXC=$($GETSTRIPE --ost $UUID $DIR/$tdir | grep $DIR | wc -l)
7984         echo "$MAXC files created on larger OST $MAXI1"
7985         if [[ $MINC -gt 0 ]]; then
7986                 FILL=$((MAXC * 100 / MINC - 100))
7987                 echo "Wrote ${FILL}% more files to larger OST $MAXI1"
7988         fi
7989         [[ $MAXC -gt $MINC ]] ||
7990                 error_ignore LU-9 "stripe QOS didn't balance free space"
7991         simple_cleanup_common
7992 }
7993 run_test 116a "stripe QOS: free space balance ==================="
7994
7995 test_116b() { # LU-2093
7996         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7997         remote_mds_nodsh && skip "remote MDS with nodsh" && return
7998
7999 #define OBD_FAIL_MDS_OSC_CREATE_FAIL     0x147
8000         local old_rr=$(do_facet $SINGLEMDS lctl get_param -n \
8001                        lo*.$FSNAME-MDT0000-mdtlov.qos_threshold_rr | head -1)
8002         [ -z "$old_rr" ] && skip "no QOS" && return 0
8003         do_facet $SINGLEMDS lctl set_param \
8004                 lo*.$FSNAME-MDT0000-mdtlov.qos_threshold_rr=0
8005         mkdir -p $DIR/$tdir
8006         do_facet $SINGLEMDS lctl set_param fail_loc=0x147
8007         createmany -o $DIR/$tdir/f- 20 || error "can't create"
8008         do_facet $SINGLEMDS lctl set_param fail_loc=0
8009         rm -rf $DIR/$tdir
8010         do_facet $SINGLEMDS lctl set_param \
8011                 lo*.$FSNAME-MDT0000-mdtlov.qos_threshold_rr=$old_rr
8012 }
8013 run_test 116b "QoS shouldn't LBUG if not enough OSTs found on the 2nd pass"
8014
8015 test_117() # bug 10891
8016 {
8017         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8018         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1
8019         #define OBD_FAIL_OST_SETATTR_CREDITS 0x21e
8020         lctl set_param fail_loc=0x21e
8021         > $DIR/$tfile || error "truncate failed"
8022         lctl set_param fail_loc=0
8023         echo "Truncate succeeded."
8024         rm -f $DIR/$tfile
8025 }
8026 run_test 117 "verify osd extend =========="
8027
8028 NO_SLOW_RESENDCOUNT=4
8029 export OLD_RESENDCOUNT=""
8030 set_resend_count () {
8031         local PROC_RESENDCOUNT="osc.${FSNAME}-OST*-osc-*.resend_count"
8032         OLD_RESENDCOUNT=$(lctl get_param -n $PROC_RESENDCOUNT | head -n1)
8033         lctl set_param -n $PROC_RESENDCOUNT $1
8034         echo resend_count is set to $(lctl get_param -n $PROC_RESENDCOUNT)
8035 }
8036
8037 # for reduce test_118* time (b=14842)
8038 [ "$SLOW" = "no" ] && set_resend_count $NO_SLOW_RESENDCOUNT
8039
8040 # Reset async IO behavior after error case
8041 reset_async() {
8042         FILE=$DIR/reset_async
8043
8044         # Ensure all OSCs are cleared
8045         $SETSTRIPE -c -1 $FILE
8046         dd if=/dev/zero of=$FILE bs=64k count=$OSTCOUNT
8047         sync
8048         rm $FILE
8049 }
8050
8051 test_118a() #bug 11710
8052 {
8053         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8054         reset_async
8055
8056         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
8057         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
8058         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
8059
8060         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
8061                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
8062                 return 1;
8063         fi
8064         rm -f $DIR/$tfile
8065 }
8066 run_test 118a "verify O_SYNC works =========="
8067
8068 test_118b()
8069 {
8070         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8071         remote_ost_nodsh && skip "remote OST with nodsh" && return
8072
8073         reset_async
8074
8075         #define OBD_FAIL_SRV_ENOENT 0x217
8076         set_nodes_failloc "$(osts_nodes)" 0x217
8077         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
8078         RC=$?
8079         set_nodes_failloc "$(osts_nodes)" 0
8080         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
8081         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
8082                     grep -c writeback)
8083
8084         if [[ $RC -eq 0 ]]; then
8085                 error "Must return error due to dropped pages, rc=$RC"
8086                 return 1;
8087         fi
8088
8089         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
8090                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
8091                 return 1;
8092         fi
8093
8094         echo "Dirty pages not leaked on ENOENT"
8095
8096         # Due to the above error the OSC will issue all RPCs syncronously
8097         # until a subsequent RPC completes successfully without error.
8098         $MULTIOP $DIR/$tfile Ow4096yc
8099         rm -f $DIR/$tfile
8100
8101         return 0
8102 }
8103 run_test 118b "Reclaim dirty pages on fatal error =========="
8104
8105 test_118c()
8106 {
8107         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8108
8109         # for 118c, restore the original resend count, LU-1940
8110         [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] &&
8111                                 set_resend_count $OLD_RESENDCOUNT
8112         remote_ost_nodsh && skip "remote OST with nodsh" && return
8113
8114         reset_async
8115
8116         #define OBD_FAIL_OST_EROFS               0x216
8117         set_nodes_failloc "$(osts_nodes)" 0x216
8118
8119         # multiop should block due to fsync until pages are written
8120         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
8121         MULTIPID=$!
8122         sleep 1
8123
8124         if [[ `ps h -o comm -p $MULTIPID` != "multiop" ]]; then
8125                 error "Multiop failed to block on fsync, pid=$MULTIPID"
8126         fi
8127
8128         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
8129                     grep -c writeback)
8130         if [[ $WRITEBACK -eq 0 ]]; then
8131                 error "No page in writeback, writeback=$WRITEBACK"
8132         fi
8133
8134         set_nodes_failloc "$(osts_nodes)" 0
8135         wait $MULTIPID
8136         RC=$?
8137         if [[ $RC -ne 0 ]]; then
8138                 error "Multiop fsync failed, rc=$RC"
8139         fi
8140
8141         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
8142         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
8143                     grep -c writeback)
8144         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
8145                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
8146         fi
8147
8148         rm -f $DIR/$tfile
8149         echo "Dirty pages flushed via fsync on EROFS"
8150         return 0
8151 }
8152 run_test 118c "Fsync blocks on EROFS until dirty pages are flushed =========="
8153
8154 # continue to use small resend count to reduce test_118* time (b=14842)
8155 [ "$SLOW" = "no" ] && set_resend_count $NO_SLOW_RESENDCOUNT
8156
8157 test_118d()
8158 {
8159         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8160         remote_ost_nodsh && skip "remote OST with nodsh" && return
8161
8162         reset_async
8163
8164         #define OBD_FAIL_OST_BRW_PAUSE_BULK
8165         set_nodes_failloc "$(osts_nodes)" 0x214
8166         # multiop should block due to fsync until pages are written
8167         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
8168         MULTIPID=$!
8169         sleep 1
8170
8171         if [[ `ps h -o comm -p $MULTIPID` != "multiop" ]]; then
8172                 error "Multiop failed to block on fsync, pid=$MULTIPID"
8173         fi
8174
8175         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
8176                     grep -c writeback)
8177         if [[ $WRITEBACK -eq 0 ]]; then
8178                 error "No page in writeback, writeback=$WRITEBACK"
8179         fi
8180
8181         wait $MULTIPID || error "Multiop fsync failed, rc=$?"
8182         set_nodes_failloc "$(osts_nodes)" 0
8183
8184         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
8185         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
8186                     grep -c writeback)
8187         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
8188                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
8189         fi
8190
8191         rm -f $DIR/$tfile
8192         echo "Dirty pages gaurenteed flushed via fsync"
8193         return 0
8194 }
8195 run_test 118d "Fsync validation inject a delay of the bulk =========="
8196
8197 test_118f() {
8198         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8199         reset_async
8200
8201         #define OBD_FAIL_OSC_BRW_PREP_REQ2        0x40a
8202         lctl set_param fail_loc=0x8000040a
8203
8204         # Should simulate EINVAL error which is fatal
8205         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
8206         RC=$?
8207         if [[ $RC -eq 0 ]]; then
8208                 error "Must return error due to dropped pages, rc=$RC"
8209         fi
8210
8211         lctl set_param fail_loc=0x0
8212
8213         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
8214         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
8215         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
8216                     grep -c writeback)
8217         if [[ $LOCKED -ne 0 ]]; then
8218                 error "Locked pages remain in cache, locked=$LOCKED"
8219         fi
8220
8221         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
8222                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
8223         fi
8224
8225         rm -f $DIR/$tfile
8226         echo "No pages locked after fsync"
8227
8228         reset_async
8229         return 0
8230 }
8231 run_test 118f "Simulate unrecoverable OSC side error =========="
8232
8233 test_118g() {
8234         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8235         reset_async
8236
8237         #define OBD_FAIL_OSC_BRW_PREP_REQ        0x406
8238         lctl set_param fail_loc=0x406
8239
8240         # simulate local -ENOMEM
8241         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
8242         RC=$?
8243
8244         lctl set_param fail_loc=0
8245         if [[ $RC -eq 0 ]]; then
8246                 error "Must return error due to dropped pages, rc=$RC"
8247         fi
8248
8249         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
8250         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
8251         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
8252                         grep -c writeback)
8253         if [[ $LOCKED -ne 0 ]]; then
8254                 error "Locked pages remain in cache, locked=$LOCKED"
8255         fi
8256
8257         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
8258                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
8259         fi
8260
8261         rm -f $DIR/$tfile
8262         echo "No pages locked after fsync"
8263
8264         reset_async
8265         return 0
8266 }
8267 run_test 118g "Don't stay in wait if we got local -ENOMEM  =========="
8268
8269 test_118h() {
8270         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8271         remote_ost_nodsh && skip "remote OST with nodsh" && return
8272
8273         reset_async
8274
8275         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
8276         set_nodes_failloc "$(osts_nodes)" 0x20e
8277         # Should simulate ENOMEM error which is recoverable and should be handled by timeout
8278         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
8279         RC=$?
8280
8281         set_nodes_failloc "$(osts_nodes)" 0
8282         if [[ $RC -eq 0 ]]; then
8283                 error "Must return error due to dropped pages, rc=$RC"
8284         fi
8285
8286         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
8287         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
8288         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
8289                     grep -c writeback)
8290         if [[ $LOCKED -ne 0 ]]; then
8291                 error "Locked pages remain in cache, locked=$LOCKED"
8292         fi
8293
8294         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
8295                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
8296         fi
8297
8298         rm -f $DIR/$tfile
8299         echo "No pages locked after fsync"
8300
8301         return 0
8302 }
8303 run_test 118h "Verify timeout in handling recoverables errors  =========="
8304
8305 [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] && set_resend_count $OLD_RESENDCOUNT
8306
8307 test_118i() {
8308         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8309         remote_ost_nodsh && skip "remote OST with nodsh" && return
8310
8311         reset_async
8312
8313         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
8314         set_nodes_failloc "$(osts_nodes)" 0x20e
8315
8316         # Should simulate ENOMEM error which is recoverable and should be handled by timeout
8317         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
8318         PID=$!
8319         sleep 5
8320         set_nodes_failloc "$(osts_nodes)" 0
8321
8322         wait $PID
8323         RC=$?
8324         if [[ $RC -ne 0 ]]; then
8325                 error "got error, but should be not, rc=$RC"
8326         fi
8327
8328         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
8329         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
8330         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
8331         if [[ $LOCKED -ne 0 ]]; then
8332                 error "Locked pages remain in cache, locked=$LOCKED"
8333         fi
8334
8335         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
8336                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
8337         fi
8338
8339         rm -f $DIR/$tfile
8340         echo "No pages locked after fsync"
8341
8342         return 0
8343 }
8344 run_test 118i "Fix error before timeout in recoverable error  =========="
8345
8346 [ "$SLOW" = "no" ] && set_resend_count 4
8347
8348 test_118j() {
8349         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8350         remote_ost_nodsh && skip "remote OST with nodsh" && return
8351
8352         reset_async
8353
8354         #define OBD_FAIL_OST_BRW_WRITE_BULK2     0x220
8355         set_nodes_failloc "$(osts_nodes)" 0x220
8356
8357         # return -EIO from OST
8358         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
8359         RC=$?
8360         set_nodes_failloc "$(osts_nodes)" 0x0
8361         if [[ $RC -eq 0 ]]; then
8362                 error "Must return error due to dropped pages, rc=$RC"
8363         fi
8364
8365         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
8366         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
8367         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
8368         if [[ $LOCKED -ne 0 ]]; then
8369                 error "Locked pages remain in cache, locked=$LOCKED"
8370         fi
8371
8372         # in recoverable error on OST we want resend and stay until it finished
8373         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
8374                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
8375         fi
8376
8377         rm -f $DIR/$tfile
8378         echo "No pages locked after fsync"
8379
8380         return 0
8381 }
8382 run_test 118j "Simulate unrecoverable OST side error =========="
8383
8384 test_118k()
8385 {
8386         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8387         remote_ost_nodsh && skip "remote OSTs with nodsh" && return
8388
8389         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
8390         set_nodes_failloc "$(osts_nodes)" 0x20e
8391         test_mkdir -p $DIR/$tdir
8392
8393         for ((i=0;i<10;i++)); do
8394                 (dd if=/dev/zero of=$DIR/$tdir/$tfile-$i bs=1M count=10 || \
8395                         error "dd to $DIR/$tdir/$tfile-$i failed" )&
8396                 SLEEPPID=$!
8397                 sleep 0.500s
8398                 kill $SLEEPPID
8399                 wait $SLEEPPID
8400         done
8401
8402         set_nodes_failloc "$(osts_nodes)" 0
8403         rm -rf $DIR/$tdir
8404 }
8405 run_test 118k "bio alloc -ENOMEM and IO TERM handling ========="
8406
8407 test_118l()
8408 {
8409         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8410         # LU-646
8411         test_mkdir -p $DIR/$tdir
8412         $MULTIOP $DIR/$tdir Dy || error "fsync dir failed"
8413         rm -rf $DIR/$tdir
8414 }
8415 run_test 118l "fsync dir ========="
8416
8417 test_118m() # LU-3066
8418 {
8419         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8420         test_mkdir -p $DIR/$tdir
8421         $MULTIOP $DIR/$tdir DY || error "fdatasync dir failed"
8422         rm -rf $DIR/$tdir
8423 }
8424 run_test 118m "fdatasync dir ========="
8425
8426 [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] && set_resend_count $OLD_RESENDCOUNT
8427
8428 test_119a() # bug 11737
8429 {
8430         BSIZE=$((512 * 1024))
8431         directio write $DIR/$tfile 0 1 $BSIZE
8432         # We ask to read two blocks, which is more than a file size.
8433         # directio will indicate an error when requested and actual
8434         # sizes aren't equeal (a normal situation in this case) and
8435         # print actual read amount.
8436         NOB=`directio read $DIR/$tfile 0 2 $BSIZE | awk '/error/ {print $6}'`
8437         if [ "$NOB" != "$BSIZE" ]; then
8438                 error "read $NOB bytes instead of $BSIZE"
8439         fi
8440         rm -f $DIR/$tfile
8441 }
8442 run_test 119a "Short directIO read must return actual read amount"
8443
8444 test_119b() # bug 11737
8445 {
8446         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping 2-stripe test" && return
8447
8448         $SETSTRIPE -c 2 $DIR/$tfile || error "setstripe failed"
8449         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=1 || error "dd failed"
8450         sync
8451         $MULTIOP $DIR/$tfile oO_RDONLY:O_DIRECT:r$((2048 * 1024)) || \
8452                 error "direct read failed"
8453         rm -f $DIR/$tfile
8454 }
8455 run_test 119b "Sparse directIO read must return actual read amount"
8456
8457 test_119c() # bug 13099
8458 {
8459         BSIZE=1048576
8460         directio write $DIR/$tfile 3 1 $BSIZE || error "direct write failed"
8461         directio readhole $DIR/$tfile 0 2 $BSIZE || error "reading hole failed"
8462         rm -f $DIR/$tfile
8463 }
8464 run_test 119c "Testing for direct read hitting hole"
8465
8466 test_119d() # bug 15950
8467 {
8468         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8469         MAX_RPCS_IN_FLIGHT=`$LCTL get_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight`
8470         $LCTL set_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight 1
8471         BSIZE=1048576
8472         $SETSTRIPE $DIR/$tfile -i 0 -c 1 || error "setstripe failed"
8473         $DIRECTIO write $DIR/$tfile 0 1 $BSIZE || error "first directio failed"
8474         #define OBD_FAIL_OSC_DIO_PAUSE           0x40d
8475         lctl set_param fail_loc=0x40d
8476         $DIRECTIO write $DIR/$tfile 1 4 $BSIZE &
8477         pid_dio=$!
8478         sleep 1
8479         cat $DIR/$tfile > /dev/null &
8480         lctl set_param fail_loc=0
8481         pid_reads=$!
8482         wait $pid_dio
8483         log "the DIO writes have completed, now wait for the reads (should not block very long)"
8484         sleep 2
8485         [ -n "`ps h -p $pid_reads -o comm`" ] && \
8486         error "the read rpcs have not completed in 2s"
8487         rm -f $DIR/$tfile
8488         $LCTL set_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight $MAX_RPCS_IN_FLIGHT
8489 }
8490 run_test 119d "The DIO path should try to send a new rpc once one is completed"
8491
8492 test_120a() {
8493         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8494         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8495         test_mkdir -p $DIR/$tdir
8496         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
8497                skip "no early lock cancel on server" && return 0
8498
8499         lru_resize_disable mdc
8500         lru_resize_disable osc
8501         cancel_lru_locks mdc
8502         # asynchronous object destroy at MDT could cause bl ast to client
8503         cancel_lru_locks osc
8504
8505         stat $DIR/$tdir > /dev/null
8506         can1=$(do_facet $SINGLEMDS \
8507                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8508                awk '/ldlm_cancel/ {print $2}')
8509         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8510                awk '/ldlm_bl_callback/ {print $2}')
8511         test_mkdir -c1 $DIR/$tdir/d1
8512         can2=$(do_facet $SINGLEMDS \
8513                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8514                awk '/ldlm_cancel/ {print $2}')
8515         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8516                awk '/ldlm_bl_callback/ {print $2}')
8517         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
8518         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
8519         lru_resize_enable mdc
8520         lru_resize_enable osc
8521 }
8522 run_test 120a "Early Lock Cancel: mkdir test"
8523
8524 test_120b() {
8525         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8526         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8527         test_mkdir $DIR/$tdir
8528         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel)" ] && \
8529                skip "no early lock cancel on server" && return 0
8530         lru_resize_disable mdc
8531         lru_resize_disable osc
8532         cancel_lru_locks mdc
8533         stat $DIR/$tdir > /dev/null
8534         can1=$(do_facet $SINGLEMDS \
8535                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8536                awk '/ldlm_cancel/ {print $2}')
8537         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8538                awk '/ldlm_bl_callback/ {print $2}')
8539         touch $DIR/$tdir/f1
8540         can2=$(do_facet $SINGLEMDS \
8541                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8542                awk '/ldlm_cancel/ {print $2}')
8543         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8544                awk '/ldlm_bl_callback/ {print $2}')
8545         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
8546         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
8547         lru_resize_enable mdc
8548         lru_resize_enable osc
8549 }
8550 run_test 120b "Early Lock Cancel: create test"
8551
8552 test_120c() {
8553         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8554         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8555         test_mkdir -c1 $DIR/$tdir
8556         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel)" ] && \
8557                skip "no early lock cancel on server" && return 0
8558         lru_resize_disable mdc
8559         lru_resize_disable osc
8560         test_mkdir -p -c1 $DIR/$tdir/d1
8561         test_mkdir -p -c1 $DIR/$tdir/d2
8562         touch $DIR/$tdir/d1/f1
8563         cancel_lru_locks mdc
8564         stat $DIR/$tdir/d1 $DIR/$tdir/d2 $DIR/$tdir/d1/f1 > /dev/null
8565         can1=$(do_facet $SINGLEMDS \
8566                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8567                awk '/ldlm_cancel/ {print $2}')
8568         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8569                awk '/ldlm_bl_callback/ {print $2}')
8570         ln $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2
8571         can2=$(do_facet $SINGLEMDS \
8572                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8573                awk '/ldlm_cancel/ {print $2}')
8574         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8575                awk '/ldlm_bl_callback/ {print $2}')
8576         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
8577         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
8578         lru_resize_enable mdc
8579         lru_resize_enable osc
8580 }
8581 run_test 120c "Early Lock Cancel: link test"
8582
8583 test_120d() {
8584         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8585         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8586         test_mkdir -p -c1 $DIR/$tdir
8587         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel)" ] && \
8588                skip "no early lock cancel on server" && return 0
8589         lru_resize_disable mdc
8590         lru_resize_disable osc
8591         touch $DIR/$tdir
8592         cancel_lru_locks mdc
8593         stat $DIR/$tdir > /dev/null
8594         can1=$(do_facet $SINGLEMDS \
8595                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8596                awk '/ldlm_cancel/ {print $2}')
8597         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8598                awk '/ldlm_bl_callback/ {print $2}')
8599         chmod a+x $DIR/$tdir
8600         can2=$(do_facet $SINGLEMDS \
8601                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8602                awk '/ldlm_cancel/ {print $2}')
8603         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8604                awk '/ldlm_bl_callback/ {print $2}')
8605         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
8606         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
8607         lru_resize_enable mdc
8608         lru_resize_enable osc
8609 }
8610 run_test 120d "Early Lock Cancel: setattr test"
8611
8612 test_120e() {
8613         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8614         ! $($LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_can) &&
8615                 skip "no early lock cancel on server" && return 0
8616         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8617         local dlmtrace_set=false
8618
8619         test_mkdir -p -c1 $DIR/$tdir
8620         lru_resize_disable mdc
8621         lru_resize_disable osc
8622         ! $LCTL get_param debug | grep -q dlmtrace &&
8623                 $LCTL set_param debug=+dlmtrace && dlmtrace_set=true
8624         dd if=/dev/zero of=$DIR/$tdir/f1 count=1
8625         cancel_lru_locks mdc
8626         cancel_lru_locks osc
8627         dd if=$DIR/$tdir/f1 of=/dev/null
8628         stat $DIR/$tdir $DIR/$tdir/f1 > /dev/null
8629         # XXX client can not do early lock cancel of OST lock
8630         # during unlink (LU-4206), so cancel osc lock now.
8631         sleep 2
8632         cancel_lru_locks osc
8633         can1=$(do_facet $SINGLEMDS \
8634                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8635                awk '/ldlm_cancel/ {print $2}')
8636         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8637                awk '/ldlm_bl_callback/ {print $2}')
8638         unlink $DIR/$tdir/f1
8639         sleep 5
8640         can2=$(do_facet $SINGLEMDS \
8641                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8642                awk '/ldlm_cancel/ {print $2}')
8643         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8644                awk '/ldlm_bl_callback/ {print $2}')
8645         [ $can1 -ne $can2 ] && error "$((can2 - can1)) cancel RPC occured" &&
8646                 $LCTL dk $TMP/cancel.debug.txt
8647         [ $blk1 -ne $blk2 ] && error "$((blk2 - blk1)) blocking RPC occured" &&
8648                 $LCTL dk $TMP/blocking.debug.txt
8649         $dlmtrace_set && $LCTL set_param debug=-dlmtrace
8650         lru_resize_enable mdc
8651         lru_resize_enable osc
8652 }
8653 run_test 120e "Early Lock Cancel: unlink test"
8654
8655 test_120f() {
8656         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8657         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
8658                skip "no early lock cancel on server" && return 0
8659         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8660         test_mkdir -p -c1 $DIR/$tdir
8661         lru_resize_disable mdc
8662         lru_resize_disable osc
8663         test_mkdir -p -c1 $DIR/$tdir/d1
8664         test_mkdir -p -c1 $DIR/$tdir/d2
8665         dd if=/dev/zero of=$DIR/$tdir/d1/f1 count=1
8666         dd if=/dev/zero of=$DIR/$tdir/d2/f2 count=1
8667         cancel_lru_locks mdc
8668         cancel_lru_locks osc
8669         dd if=$DIR/$tdir/d1/f1 of=/dev/null
8670         dd if=$DIR/$tdir/d2/f2 of=/dev/null
8671         stat $DIR/$tdir/d1 $DIR/$tdir/d2 $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2 > /dev/null
8672         # XXX client can not do early lock cancel of OST lock
8673         # during rename (LU-4206), so cancel osc lock now.
8674         sleep 2
8675         cancel_lru_locks osc
8676         can1=$(do_facet $SINGLEMDS \
8677                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8678                awk '/ldlm_cancel/ {print $2}')
8679         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8680                awk '/ldlm_bl_callback/ {print $2}')
8681         mrename $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2
8682         sleep 5
8683         can2=$(do_facet $SINGLEMDS \
8684                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8685                awk '/ldlm_cancel/ {print $2}')
8686         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8687                awk '/ldlm_bl_callback/ {print $2}')
8688         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
8689         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
8690         lru_resize_enable mdc
8691         lru_resize_enable osc
8692 }
8693 run_test 120f "Early Lock Cancel: rename test"
8694
8695 test_120g() {
8696         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8697         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
8698                skip "no early lock cancel on server" && return 0
8699         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8700         lru_resize_disable mdc
8701         lru_resize_disable osc
8702         count=10000
8703         echo create $count files
8704         test_mkdir -p $DIR/$tdir
8705         cancel_lru_locks mdc
8706         cancel_lru_locks osc
8707         t0=`date +%s`
8708
8709         can0=$(do_facet $SINGLEMDS \
8710                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8711                awk '/ldlm_cancel/ {print $2}')
8712         blk0=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8713                awk '/ldlm_bl_callback/ {print $2}')
8714         createmany -o $DIR/$tdir/f $count
8715         sync
8716         can1=$(do_facet $SINGLEMDS \
8717                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8718                awk '/ldlm_cancel/ {print $2}')
8719         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8720                awk '/ldlm_bl_callback/ {print $2}')
8721         t1=$(date +%s)
8722         echo total: $((can1-can0)) cancels, $((blk1-blk0)) blockings
8723         echo rm $count files
8724         rm -r $DIR/$tdir
8725         sync
8726         can2=$(do_facet $SINGLEMDS \
8727                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8728                awk '/ldlm_cancel/ {print $2}')
8729         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8730                awk '/ldlm_bl_callback/ {print $2}')
8731         t2=$(date +%s)
8732         echo total: $count removes in $((t2-t1))
8733         echo total: $((can2-can1)) cancels, $((blk2-blk1)) blockings
8734         sleep 2
8735         # wait for commitment of removal
8736         lru_resize_enable mdc
8737         lru_resize_enable osc
8738 }
8739 run_test 120g "Early Lock Cancel: performance test"
8740
8741 test_121() { #bug #10589
8742         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8743         rm -rf $DIR/$tfile
8744         writes=$(LANG=C dd if=/dev/zero of=$DIR/$tfile count=1 2>&1 | awk -F '+' '/out$/ {print $1}')
8745 #define OBD_FAIL_LDLM_CANCEL_RACE        0x310
8746         lctl set_param fail_loc=0x310
8747         cancel_lru_locks osc > /dev/null
8748         reads=$(LANG=C dd if=$DIR/$tfile of=/dev/null 2>&1 | awk -F '+' '/in$/ {print $1}')
8749         lctl set_param fail_loc=0
8750         [[ $reads -eq $writes ]] ||
8751                 error "read $reads blocks, must be $writes blocks"
8752 }
8753 run_test 121 "read cancel race ========="
8754
8755 test_123a() { # was test 123, statahead(bug 11401)
8756         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8757         SLOWOK=0
8758         if [ -z "$(grep "processor.*: 1" /proc/cpuinfo)" ]; then
8759             log "testing on UP system. Performance may be not as good as expected."
8760                         SLOWOK=1
8761         fi
8762
8763         rm -rf $DIR/$tdir
8764         test_mkdir -p $DIR/$tdir
8765         NUMFREE=$(df -i -P $DIR | tail -n 1 | awk '{ print $4 }')
8766         [[ $NUMFREE -gt 100000 ]] && NUMFREE=100000 || NUMFREE=$((NUMFREE-1000))
8767         MULT=10
8768         for ((i=100, j=0; i<=$NUMFREE; j=$i, i=$((i * MULT)) )); do
8769                 createmany -o $DIR/$tdir/$tfile $j $((i - j))
8770
8771                 max=`lctl get_param -n llite.*.statahead_max | head -n 1`
8772                 lctl set_param -n llite.*.statahead_max 0
8773                 lctl get_param llite.*.statahead_max
8774                 cancel_lru_locks mdc
8775                 cancel_lru_locks osc
8776                 stime=`date +%s`
8777                 time ls -l $DIR/$tdir | wc -l
8778                 etime=`date +%s`
8779                 delta=$((etime - stime))
8780                 log "ls $i files without statahead: $delta sec"
8781                 lctl set_param llite.*.statahead_max=$max
8782
8783                 swrong=`lctl get_param -n llite.*.statahead_stats | grep "statahead wrong:" | awk '{print $3}'`
8784                 lctl get_param -n llite.*.statahead_max | grep '[0-9]'
8785                 cancel_lru_locks mdc
8786                 cancel_lru_locks osc
8787                 stime=`date +%s`
8788                 time ls -l $DIR/$tdir | wc -l
8789                 etime=`date +%s`
8790                 delta_sa=$((etime - stime))
8791                 log "ls $i files with statahead: $delta_sa sec"
8792                 lctl get_param -n llite.*.statahead_stats
8793                 ewrong=`lctl get_param -n llite.*.statahead_stats | grep "statahead wrong:" | awk '{print $3}'`
8794
8795                 [[ $swrong -lt $ewrong ]] &&
8796                         log "statahead was stopped, maybe too many locks held!"
8797                 [[ $delta -eq 0 || $delta_sa -eq 0 ]] && continue
8798
8799                 if [ $((delta_sa * 100)) -gt $((delta * 105)) -a $delta_sa -gt $((delta + 2)) ]; then
8800                     max=`lctl get_param -n llite.*.statahead_max | head -n 1`
8801                     lctl set_param -n llite.*.statahead_max 0
8802                     lctl get_param llite.*.statahead_max
8803                     cancel_lru_locks mdc
8804                     cancel_lru_locks osc
8805                     stime=`date +%s`
8806                     time ls -l $DIR/$tdir | wc -l
8807                     etime=`date +%s`
8808                     delta=$((etime - stime))
8809                     log "ls $i files again without statahead: $delta sec"
8810                     lctl set_param llite.*.statahead_max=$max
8811                     if [ $((delta_sa * 100)) -gt $((delta * 105)) -a $delta_sa -gt $((delta + 2)) ]; then
8812                         if [  $SLOWOK -eq 0 ]; then
8813                                 error "ls $i files is slower with statahead!"
8814                         else
8815                                 log "ls $i files is slower with statahead!"
8816                         fi
8817                         break
8818                     fi
8819                 fi
8820
8821                 [ $delta -gt 20 ] && break
8822                 [ $delta -gt 8 ] && MULT=$((50 / delta))
8823                 [ "$SLOW" = "no" -a $delta -gt 5 ] && break
8824         done
8825         log "ls done"
8826
8827         stime=`date +%s`
8828         rm -r $DIR/$tdir
8829         sync
8830         etime=`date +%s`
8831         delta=$((etime - stime))
8832         log "rm -r $DIR/$tdir/: $delta seconds"
8833         log "rm done"
8834         lctl get_param -n llite.*.statahead_stats
8835 }
8836 run_test 123a "verify statahead work"
8837
8838 test_123b () { # statahead(bug 15027)
8839         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8840         test_mkdir -p $DIR/$tdir
8841         createmany -o $DIR/$tdir/$tfile-%d 1000
8842
8843         cancel_lru_locks mdc
8844         cancel_lru_locks osc
8845
8846 #define OBD_FAIL_MDC_GETATTR_ENQUEUE     0x803
8847         lctl set_param fail_loc=0x80000803
8848         ls -lR $DIR/$tdir > /dev/null
8849         log "ls done"
8850         lctl set_param fail_loc=0x0
8851         lctl get_param -n llite.*.statahead_stats
8852         rm -r $DIR/$tdir
8853         sync
8854
8855 }
8856 run_test 123b "not panic with network error in statahead enqueue (bug 15027)"
8857
8858 test_124a() {
8859         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8860         [ -z "$($LCTL get_param -n mdc.*.connect_flags | grep lru_resize)" ] &&
8861                 skip "no lru resize on server" && return 0
8862         local NR=2000
8863         test_mkdir -p $DIR/$tdir || error "failed to create $DIR/$tdir"
8864
8865         log "create $NR files at $DIR/$tdir"
8866         createmany -o $DIR/$tdir/f $NR ||
8867                 error "failed to create $NR files in $DIR/$tdir"
8868
8869         cancel_lru_locks mdc
8870         ls -l $DIR/$tdir > /dev/null
8871
8872         local NSDIR=""
8873         local LRU_SIZE=0
8874         for VALUE in $($LCTL get_param ldlm.namespaces.*mdc-*.lru_size); do
8875                 local PARAM=$(echo ${VALUE[0]} | cut -d "=" -f1)
8876                 LRU_SIZE=$($LCTL get_param -n $PARAM)
8877                 if [[ $LRU_SIZE -gt $(default_lru_size) ]]; then
8878                         NSDIR=$(echo $PARAM | cut -d "." -f1-3)
8879                         log "NSDIR=$NSDIR"
8880                         log "NS=$(basename $NSDIR)"
8881                         break
8882                 fi
8883         done
8884
8885         if [[ -z "$NSDIR" || $LRU_SIZE -lt $(default_lru_size) ]]; then
8886                 skip "Not enough cached locks created!"
8887                 return 0
8888         fi
8889         log "LRU=$LRU_SIZE"
8890
8891         local SLEEP=30
8892
8893         # We know that lru resize allows one client to hold $LIMIT locks
8894         # for 10h. After that locks begin to be killed by client.
8895         local MAX_HRS=10
8896         local LIMIT=$($LCTL get_param -n $NSDIR.pool.limit)
8897         log "LIMIT=$LIMIT"
8898         if [ $LIMIT -lt $LRU_SIZE ]; then
8899             skip "Limit is too small $LIMIT"
8900             return 0
8901         fi
8902
8903         # Make LVF so higher that sleeping for $SLEEP is enough to _start_
8904         # killing locks. Some time was spent for creating locks. This means
8905         # that up to the moment of sleep finish we must have killed some of
8906         # them (10-100 locks). This depends on how fast ther were created.
8907         # Many of them were touched in almost the same moment and thus will
8908         # be killed in groups.
8909         local LVF=$(($MAX_HRS * 60 * 60 / $SLEEP * $LIMIT / $LRU_SIZE))
8910
8911         # Use $LRU_SIZE_B here to take into account real number of locks
8912         # created in the case of CMD, LRU_SIZE_B != $NR in most of cases
8913         local LRU_SIZE_B=$LRU_SIZE
8914         log "LVF=$LVF"
8915         local OLD_LVF=$($LCTL get_param -n $NSDIR.pool.lock_volume_factor)
8916         log "OLD_LVF=$OLD_LVF"
8917         $LCTL set_param -n $NSDIR.pool.lock_volume_factor $LVF
8918
8919         # Let's make sure that we really have some margin. Client checks
8920         # cached locks every 10 sec.
8921         SLEEP=$((SLEEP+20))
8922         log "Sleep ${SLEEP} sec"
8923         local SEC=0
8924         while ((SEC<$SLEEP)); do
8925                 echo -n "..."
8926                 sleep 5
8927                 SEC=$((SEC+5))
8928                 LRU_SIZE=$($LCTL get_param -n $NSDIR/lru_size)
8929                 echo -n "$LRU_SIZE"
8930         done
8931         echo ""
8932         $LCTL set_param -n $NSDIR.pool.lock_volume_factor $OLD_LVF
8933         local LRU_SIZE_A=$($LCTL get_param -n $NSDIR.lru_size)
8934
8935         [[ $LRU_SIZE_B -gt $LRU_SIZE_A ]] || {
8936                 error "No locks dropped in ${SLEEP}s. LRU size: $LRU_SIZE_A"
8937                 unlinkmany $DIR/$tdir/f $NR
8938                 return
8939         }
8940
8941         log "Dropped "$((LRU_SIZE_B-LRU_SIZE_A))" locks in ${SLEEP}s"
8942         log "unlink $NR files at $DIR/$tdir"
8943         unlinkmany $DIR/$tdir/f $NR
8944 }
8945 run_test 124a "lru resize ======================================="
8946
8947 get_max_pool_limit()
8948 {
8949         local limit=$($LCTL get_param \
8950                       -n ldlm.namespaces.*-MDT0000-mdc-*.pool.limit)
8951         local max=0
8952         for l in $limit; do
8953                 if [[ $l -gt $max ]]; then
8954                         max=$l
8955                 fi
8956         done
8957         echo $max
8958 }
8959
8960 test_124b() {
8961         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8962         [ -z "$($LCTL get_param -n mdc.*.connect_flags | grep lru_resize)" ] &&
8963                 skip "no lru resize on server" && return 0
8964
8965         LIMIT=$(get_max_pool_limit)
8966
8967         NR=$(($(default_lru_size)*20))
8968         if [[ $NR -gt $LIMIT ]]; then
8969                 log "Limit lock number by $LIMIT locks"
8970                 NR=$LIMIT
8971         fi
8972
8973         IFree=$(mdsrate_inodes_available)
8974         if [ $IFree -lt $NR ]; then
8975                 log "Limit lock number by $IFree inodes"
8976                 NR=$IFree
8977         fi
8978
8979         lru_resize_disable mdc
8980         test_mkdir -p $DIR/$tdir/disable_lru_resize ||
8981                 error "failed to create $DIR/$tdir/disable_lru_resize"
8982
8983         createmany -o $DIR/$tdir/disable_lru_resize/f $NR
8984         log "doing ls -la $DIR/$tdir/disable_lru_resize 3 times"
8985         cancel_lru_locks mdc
8986         stime=`date +%s`
8987         PID=""
8988         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
8989         PID="$PID $!"
8990         sleep 2
8991         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
8992         PID="$PID $!"
8993         sleep 2
8994         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
8995         PID="$PID $!"
8996         wait $PID
8997         etime=`date +%s`
8998         nolruresize_delta=$((etime-stime))
8999         log "ls -la time: $nolruresize_delta seconds"
9000         log "lru_size = $(lctl get_param -n ldlm.namespaces.*mdc*.lru_size)"
9001         unlinkmany $DIR/$tdir/disable_lru_resize/f $NR
9002
9003         lru_resize_enable mdc
9004         test_mkdir -p $DIR/$tdir/enable_lru_resize ||
9005                 error "failed to create $DIR/$tdir/enable_lru_resize"
9006
9007         createmany -o $DIR/$tdir/enable_lru_resize/f $NR
9008         log "doing ls -la $DIR/$tdir/enable_lru_resize 3 times"
9009         cancel_lru_locks mdc
9010         stime=`date +%s`
9011         PID=""
9012         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
9013         PID="$PID $!"
9014         sleep 2
9015         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
9016         PID="$PID $!"
9017         sleep 2
9018         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
9019         PID="$PID $!"
9020         wait $PID
9021         etime=`date +%s`
9022         lruresize_delta=$((etime-stime))
9023         log "ls -la time: $lruresize_delta seconds"
9024         log "lru_size = $(lctl get_param -n ldlm.namespaces.*mdc*.lru_size)"
9025
9026         if [ $lruresize_delta -gt $nolruresize_delta ]; then
9027                 log "ls -la is $(((lruresize_delta - $nolruresize_delta) * 100 / $nolruresize_delta))% slower with lru resize enabled"
9028         elif [ $nolruresize_delta -gt $lruresize_delta ]; then
9029                 log "ls -la is $(((nolruresize_delta - $lruresize_delta) * 100 / $nolruresize_delta))% faster with lru resize enabled"
9030         else
9031                 log "lru resize performs the same with no lru resize"
9032         fi
9033         unlinkmany $DIR/$tdir/enable_lru_resize/f $NR
9034 }
9035 run_test 124b "lru resize (performance test) ======================="
9036
9037 test_124c() {
9038         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9039         [ -z "$($LCTL get_param -n mdc.*.connect_flags | grep lru_resize)" ] &&
9040                 skip "no lru resize on server" && return 0
9041
9042         # cache ununsed locks on client
9043         local nr=100
9044         cancel_lru_locks mdc
9045         test_mkdir -p $DIR/$tdir || error "failed to create $DIR/$tdir"
9046         createmany -o $DIR/$tdir/f $nr ||
9047                 error "failed to create $nr files in $DIR/$tdir"
9048         ls -l $DIR/$tdir > /dev/null
9049
9050         local nsdir="ldlm.namespaces.*-MDT0000-mdc-*"
9051         local unused=$($LCTL get_param -n $nsdir.lock_unused_count)
9052         local max_age=$($LCTL get_param -n $nsdir.lru_max_age)
9053         local recalc_p=$($LCTL get_param -n $nsdir.pool.recalc_period)
9054         echo "unused=$unused, max_age=$max_age, recalc_p=$recalc_p"
9055
9056         # set lru_max_age to 1 sec
9057         $LCTL set_param $nsdir.lru_max_age=1000 # jiffies
9058         echo "sleep $((recalc_p * 2)) seconds..."
9059         sleep $((recalc_p * 2))
9060
9061         local remaining=$($LCTL get_param -n $nsdir.lock_unused_count)
9062         # restore lru_max_age
9063         $LCTL set_param -n $nsdir.lru_max_age $max_age
9064         [ $remaining -eq 0 ] || error "$remaining locks are not canceled"
9065         unlinkmany $DIR/$tdir/f $nr
9066 }
9067 run_test 124c "LRUR cancel very aged locks"
9068
9069 test_125() { # 13358
9070         [ -z "$(lctl get_param -n llite.*.client_type | grep local)" ] && skip "must run as local client" && return
9071         [ -z "$(lctl get_param -n mdc.*-mdc-*.connect_flags | grep acl)" ] && skip "must have acl enabled" && return
9072         [ -z "$(which setfacl)" ] && skip "must have setfacl tool" && return
9073         test_mkdir -p $DIR/d125 || error "mkdir failed"
9074         $SETSTRIPE -S 65536 -c -1 $DIR/d125 || error "setstripe failed"
9075         setfacl -R -m u:bin:rwx $DIR/d125 || error "setfacl $DIR/d125 failed"
9076         ls -ld $DIR/d125 || error "cannot access $DIR/d125"
9077 }
9078 run_test 125 "don't return EPROTO when a dir has a non-default striping and ACLs"
9079
9080 test_126() { # bug 12829/13455
9081         [ -z "$(lctl get_param -n llite.*.client_type | grep local)" ] && skip "must run as local client" && return
9082         [ "$UID" != 0 ] && skip_env "skipping $TESTNAME (must run as root)" && return
9083         $GSS && skip "must run as gss disabled" && return
9084
9085         $RUNAS -u 0 -g 1 touch $DIR/$tfile || error "touch failed"
9086         gid=`ls -n $DIR/$tfile | awk '{print $4}'`
9087         rm -f $DIR/$tfile
9088         [ $gid -eq "1" ] || error "gid is set to" $gid "instead of 1"
9089 }
9090 run_test 126 "check that the fsgid provided by the client is taken into account"
9091
9092 test_127a() { # bug 15521
9093         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9094         $SETSTRIPE -i 0 -c 1 $DIR/$tfile || error "setstripe failed"
9095         $LCTL set_param osc.*.stats=0
9096         FSIZE=$((2048 * 1024))
9097         dd if=/dev/zero of=$DIR/$tfile bs=$FSIZE count=1
9098         cancel_lru_locks osc
9099         dd if=$DIR/$tfile of=/dev/null bs=$FSIZE
9100
9101         $LCTL get_param osc.*0000-osc-*.stats | grep samples > $DIR/${tfile}.tmp
9102         while read NAME COUNT SAMP UNIT MIN MAX SUM SUMSQ; do
9103                 echo "got $COUNT $NAME"
9104                 [ ! $MIN ] && error "Missing min value for $NAME proc entry"
9105                 eval $NAME=$COUNT || error "Wrong proc format"
9106
9107                 case $NAME in
9108                         read_bytes|write_bytes)
9109                         [ $MIN -lt 4096 ] && error "min is too small: $MIN"
9110                         [ $MIN -gt $FSIZE ] && error "min is too big: $MIN"
9111                         [ $MAX -lt 4096 ] && error "max is too small: $MAX"
9112                         [ $MAX -gt $FSIZE ] && error "max is too big: $MAX"
9113                         [ $SUM -ne $FSIZE ] && error "sum is wrong: $SUM"
9114                         [ $SUMSQ -lt $(((FSIZE /4096) * (4096 * 4096))) ] &&
9115                                 error "sumsquare is too small: $SUMSQ"
9116                         [ $SUMSQ -gt $((FSIZE * FSIZE)) ] &&
9117                                 error "sumsquare is too big: $SUMSQ"
9118                         ;;
9119                         *) ;;
9120                 esac
9121         done < $DIR/${tfile}.tmp
9122
9123         #check that we actually got some stats
9124         [ "$read_bytes" ] || error "Missing read_bytes stats"
9125         [ "$write_bytes" ] || error "Missing write_bytes stats"
9126         [ "$read_bytes" != 0 ] || error "no read done"
9127         [ "$write_bytes" != 0 ] || error "no write done"
9128 }
9129 run_test 127a "verify the client stats are sane"
9130
9131 test_127b() { # bug LU-333
9132         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9133         $LCTL set_param llite.*.stats=0
9134         FSIZE=65536 # sized fixed to match PAGE_SIZE for most clients
9135         # perform 2 reads and writes so MAX is different from SUM.
9136         dd if=/dev/zero of=$DIR/$tfile bs=$FSIZE count=1
9137         dd if=/dev/zero of=$DIR/$tfile bs=$FSIZE count=1
9138         cancel_lru_locks osc
9139         dd if=$DIR/$tfile of=/dev/null bs=$FSIZE count=1
9140         dd if=$DIR/$tfile of=/dev/null bs=$FSIZE count=1
9141
9142         $LCTL get_param llite.*.stats | grep samples > $TMP/${tfile}.tmp
9143         while read NAME COUNT SAMP UNIT MIN MAX SUM SUMSQ; do
9144                 echo "got $COUNT $NAME"
9145                 eval $NAME=$COUNT || error "Wrong proc format"
9146
9147         case $NAME in
9148                 read_bytes)
9149                         [ $COUNT -ne 2 ] && error "count is not 2: $COUNT"
9150                         [ $MIN -ne $FSIZE ] && error "min is not $FSIZE: $MIN"
9151                         [ $MAX -ne $FSIZE ] && error "max is incorrect: $MAX"
9152                         [ $SUM -ne $((FSIZE * 2)) ] && error "sum is wrong: $SUM"
9153                         ;;
9154                 write_bytes)
9155                         [ $COUNT -ne 2 ] && error "count is not 2: $COUNT"
9156                         [ $MIN -ne $FSIZE ] && error "min is not $FSIZE: $MIN"
9157                         [ $MAX -ne $FSIZE ] && error "max is incorrect: $MAX"
9158                         [ $SUM -ne $((FSIZE * 2)) ] && error "sum is wrong: $SUM"
9159                         ;;
9160                         *) ;;
9161                 esac
9162         done < $TMP/${tfile}.tmp
9163
9164         #check that we actually got some stats
9165         [ "$read_bytes" ] || error "Missing read_bytes stats"
9166         [ "$write_bytes" ] || error "Missing write_bytes stats"
9167         [ "$read_bytes" != 0 ] || error "no read done"
9168         [ "$write_bytes" != 0 ] || error "no write done"
9169
9170         rm -f $TMP/${tfile}.tmp
9171 }
9172 run_test 127b "verify the llite client stats are sane"
9173
9174 test_128() { # bug 15212
9175         touch $DIR/$tfile
9176         $LFS 2>&1 <<-EOF | tee $TMP/$tfile.log
9177                 find $DIR/$tfile
9178                 find $DIR/$tfile
9179         EOF
9180
9181         result=$(grep error $TMP/$tfile.log)
9182         rm -f $DIR/$tfile $TMP/$tfile.log
9183         [ -z "$result" ] ||
9184                 error "consecutive find's under interactive lfs failed"
9185 }
9186 run_test 128 "interactive lfs for 2 consecutive find's"
9187
9188 set_dir_limits () {
9189         local mntdev
9190         local canondev
9191         local node
9192
9193         local ldproc=/proc/fs/ldiskfs
9194         local facets=$(get_facets MDS)
9195
9196         for facet in ${facets//,/ }; do
9197                 canondev=$(ldiskfs_canon \
9198                            *.$(convert_facet2label $facet).mntdev $facet)
9199                 do_facet $facet "test -e $ldproc/$canondev/max_dir_size" ||
9200                         ldproc=/sys/fs/ldiskfs
9201                 do_facet $facet "echo $1 >$ldproc/$canondev/max_dir_size"
9202                 do_facet $facet "echo $2 >$ldproc/$canondev/warning_dir_size"
9203         done
9204 }
9205
9206 check_mds_dmesg() {
9207         local facets=$(get_facets MDS)
9208         for facet in ${facets//,/ }; do
9209                 do_facet $facet "dmesg | tail -3 | grep -q $1" && return 0
9210         done
9211         return 1
9212 }
9213
9214 test_129() {
9215         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.5.56) ]] ||
9216                 { skip "Need MDS version with at least 2.5.56"; return 0; }
9217
9218         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9219         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
9220                 skip "Only applicable to ldiskfs-based MDTs"
9221                 return
9222         fi
9223         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9224         local ENOSPC=28
9225         local EFBIG=27
9226         local has_warning=false
9227
9228         rm -rf $DIR/$tdir
9229         mkdir -p $DIR/$tdir
9230
9231         # block size of mds1
9232         local maxsize=$(($($LCTL get_param -n mdc.*MDT0000*.blocksize) * 5))
9233         set_dir_limits $maxsize $maxsize
9234         local dirsize=$(stat -c%s "$DIR/$tdir")
9235         local nfiles=0
9236         while [[ $dirsize -le $maxsize ]]; do
9237                 $MULTIOP $DIR/$tdir/file_base_$nfiles Oc
9238                 rc=$?
9239                 if ! $has_warning; then
9240                         check_mds_dmesg '"is approaching"' && has_warning=true
9241                 fi
9242                 # check two errors:
9243                 # ENOSPC for new ext4 max_dir_size (kernel commit df981d03ee)
9244                 # EFBIG for previous versions included in ldiskfs series
9245                 if [ $rc -eq $EFBIG -o $rc -eq $ENOSPC ]; then
9246                         set_dir_limits 0 0
9247                         echo "return code $rc received as expected"
9248
9249                         createmany -o $DIR/$tdir/file_extra_$nfiles. 5 ||
9250                                 error_exit "create failed w/o dir size limit"
9251
9252                         check_mds_dmesg '"has reached"' ||
9253                                 error_exit "reached message should be output"
9254
9255                         [ $has_warning -eq 0 ] &&
9256                                 error_exit "warning message should be output"
9257
9258                         dirsize=$(stat -c%s "$DIR/$tdir")
9259
9260                         [[ $dirsize -ge $maxsize ]] && return 0
9261                         error_exit "current dir size $dirsize, " \
9262                                    "previous limit $maxsize"
9263                 elif [ $rc -ne 0 ]; then
9264                         set_dir_limits 0 0
9265                         error_exit "return $rc received instead of expected " \
9266                                    "$EFBIG or $ENOSPC, files in dir $dirsize"
9267                 fi
9268                 nfiles=$((nfiles + 1))
9269                 dirsize=$(stat -c%s "$DIR/$tdir")
9270         done
9271
9272         set_dir_limits 0 0
9273         error "exceeded dir size limit $maxsize($MDSCOUNT) : $dirsize bytes"
9274 }
9275 run_test 129 "test directory size limit ========================"
9276
9277 OLDIFS="$IFS"
9278 cleanup_130() {
9279         trap 0
9280         IFS="$OLDIFS"
9281 }
9282
9283 test_130a() {
9284         local filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
9285         [ -n "$filefrag_op" ] && skip_env "filefrag does not support FIEMAP" &&
9286                 return
9287
9288         trap cleanup_130 EXIT RETURN
9289
9290         local fm_file=$DIR/$tfile
9291         $SETSTRIPE -S 65536 -c 1 $fm_file || error "setstripe on $fm_file"
9292         dd if=/dev/zero of=$fm_file bs=65536 count=1 ||
9293                 error "dd failed for $fm_file"
9294
9295         # LU-1795: test filefrag/FIEMAP once, even if unsupported
9296         filefrag -ves $fm_file
9297         RC=$?
9298         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
9299                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
9300         [ $RC != 0 ] && error "filefrag $fm_file failed"
9301
9302         filefrag_op=$(filefrag -ve $fm_file |
9303                         sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
9304         lun=$($GETSTRIPE -i $fm_file)
9305
9306         start_blk=`echo $filefrag_op | cut -d: -f2 | cut -d. -f1`
9307         IFS=$'\n'
9308         tot_len=0
9309         for line in $filefrag_op
9310         do
9311                 frag_lun=`echo $line | cut -d: -f5`
9312                 ext_len=`echo $line | cut -d: -f4`
9313                 if (( $frag_lun != $lun )); then
9314                         cleanup_130
9315                         error "FIEMAP on 1-stripe file($fm_file) failed"
9316                         return
9317                 fi
9318                 (( tot_len += ext_len ))
9319         done
9320
9321         if (( lun != frag_lun || start_blk != 0 || tot_len != 64 )); then
9322                 cleanup_130
9323                 error "FIEMAP on 1-stripe file($fm_file) failed;"
9324                 return
9325         fi
9326
9327         cleanup_130
9328
9329         echo "FIEMAP on single striped file succeeded"
9330 }
9331 run_test 130a "FIEMAP (1-stripe file)"
9332
9333 test_130b() {
9334         [ "$OSTCOUNT" -lt "2" ] &&
9335                 skip_env "skipping FIEMAP on $OSTCOUNT-stripe file" && return
9336
9337         local filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
9338         [ -n "$filefrag_op" ] && skip_env "filefrag does not support FIEMAP" &&
9339                 return
9340
9341         trap cleanup_130 EXIT RETURN
9342
9343         local fm_file=$DIR/$tfile
9344         $SETSTRIPE -S 65536 -c $OSTCOUNT $fm_file ||
9345                         error "setstripe on $fm_file"
9346         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
9347                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
9348
9349         dd if=/dev/zero of=$fm_file bs=1M count=$OSTCOUNT ||
9350                 error "dd failed on $fm_file"
9351
9352         filefrag -ves $fm_file || error "filefrag $fm_file failed"
9353         filefrag_op=$(filefrag -ve $fm_file |
9354                         sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
9355
9356         last_lun=$(echo $filefrag_op | cut -d: -f5 |
9357                 sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
9358
9359         IFS=$'\n'
9360         tot_len=0
9361         num_luns=1
9362         for line in $filefrag_op
9363         do
9364                 frag_lun=$(echo $line | cut -d: -f5 |
9365                         sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
9366                 ext_len=$(echo $line | cut -d: -f4)
9367                 if (( $frag_lun != $last_lun )); then
9368                         if (( tot_len != 1024 )); then
9369                                 cleanup_130
9370                                 error "FIEMAP on $fm_file failed; returned " \
9371                                 "len $tot_len for OST $last_lun instead of 1024"
9372                                 return
9373                         else
9374                                 (( num_luns += 1 ))
9375                                 tot_len=0
9376                         fi
9377                 fi
9378                 (( tot_len += ext_len ))
9379                 last_lun=$frag_lun
9380         done
9381         if (( num_luns != $OSTCOUNT || tot_len != 1024 )); then
9382                 cleanup_130
9383                 error "FIEMAP on $fm_file failed; returned wrong number of " \
9384                         "luns or wrong len for OST $last_lun"
9385                 return
9386         fi
9387
9388         cleanup_130
9389
9390         echo "FIEMAP on $OSTCOUNT-stripe file succeeded"
9391 }
9392 run_test 130b "FIEMAP ($OSTCOUNT-stripe file)"
9393
9394 test_130c() {
9395         [ "$OSTCOUNT" -lt "2" ] &&
9396                 skip_env "skipping FIEMAP on 2-stripe file" && return
9397
9398         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
9399         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP" &&
9400                 return
9401
9402         trap cleanup_130 EXIT RETURN
9403
9404         local fm_file=$DIR/$tfile
9405         $SETSTRIPE -S 65536 -c 2 $fm_file || error "setstripe on $fm_file"
9406         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
9407                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
9408
9409         dd if=/dev/zero of=$fm_file seek=1 bs=1M count=1 ||
9410                         error "dd failed on $fm_file"
9411
9412         filefrag -ves $fm_file || error "filefrag $fm_file failed"
9413         filefrag_op=$(filefrag -ve $fm_file |
9414                 sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
9415
9416         last_lun=$(echo $filefrag_op | cut -d: -f5 |
9417                 sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
9418
9419         IFS=$'\n'
9420         tot_len=0
9421         num_luns=1
9422         for line in $filefrag_op
9423         do
9424                 frag_lun=$(echo $line | cut -d: -f5 |
9425                         sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
9426                 ext_len=$(echo $line | cut -d: -f4)
9427                 if (( $frag_lun != $last_lun )); then
9428                         logical=`echo $line | cut -d: -f2 | cut -d. -f1`
9429                         if (( logical != 512 )); then
9430                                 cleanup_130
9431                                 error "FIEMAP on $fm_file failed; returned " \
9432                                 "logical start for lun $logical instead of 512"
9433                                 return
9434                         fi
9435                         if (( tot_len != 512 )); then
9436                                 cleanup_130
9437                                 error "FIEMAP on $fm_file failed; returned " \
9438                                 "len $tot_len for OST $last_lun instead of 1024"
9439                                 return
9440                         else
9441                                 (( num_luns += 1 ))
9442                                 tot_len=0
9443                         fi
9444                 fi
9445                 (( tot_len += ext_len ))
9446                 last_lun=$frag_lun
9447         done
9448         if (( num_luns != 2 || tot_len != 512 )); then
9449                 cleanup_130
9450                 error "FIEMAP on $fm_file failed; returned wrong number of " \
9451                         "luns or wrong len for OST $last_lun"
9452                 return
9453         fi
9454
9455         cleanup_130
9456
9457         echo "FIEMAP on 2-stripe file with hole succeeded"
9458 }
9459 run_test 130c "FIEMAP (2-stripe file with hole)"
9460
9461 test_130d() {
9462         [ "$OSTCOUNT" -lt "3" ] &&
9463                 skip_env "skipping FIEMAP on N-stripe file test" && return
9464
9465         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
9466         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP" &&
9467                 return
9468
9469         trap cleanup_130 EXIT RETURN
9470
9471         local fm_file=$DIR/$tfile
9472         $SETSTRIPE -S 65536 -c $OSTCOUNT $fm_file ||
9473                         error "setstripe on $fm_file"
9474         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
9475                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
9476
9477         local actual_stripecnt=$($GETSTRIPE -c $fm_file)
9478         dd if=/dev/zero of=$fm_file bs=1M count=$actual_stripecnt ||
9479                 error "dd failed on $fm_file"
9480
9481         filefrag -ves $fm_file || error "filefrag $fm_file failed"
9482         filefrag_op=$(filefrag -ve $fm_file |
9483                         sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
9484
9485         last_lun=$(echo $filefrag_op | cut -d: -f5 |
9486                 sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
9487
9488         IFS=$'\n'
9489         tot_len=0
9490         num_luns=1
9491         for line in $filefrag_op
9492         do
9493                 frag_lun=$(echo $line | cut -d: -f5 |
9494                         sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
9495                 ext_len=$(echo $line | cut -d: -f4)
9496                 if (( $frag_lun != $last_lun )); then
9497                         if (( tot_len != 1024 )); then
9498                                 cleanup_130
9499                                 error "FIEMAP on $fm_file failed; returned " \
9500                                 "len $tot_len for OST $last_lun instead of 1024"
9501                                 return
9502                         else
9503                                 (( num_luns += 1 ))
9504                                 tot_len=0
9505                         fi
9506                 fi
9507                 (( tot_len += ext_len ))
9508                 last_lun=$frag_lun
9509         done
9510         if (( num_luns != actual_stripecnt || tot_len != 1024 )); then
9511                 cleanup_130
9512                 error "FIEMAP on $fm_file failed; returned wrong number of " \
9513                         "luns or wrong len for OST $last_lun"
9514                 return
9515         fi
9516
9517         cleanup_130
9518
9519         echo "FIEMAP on N-stripe file succeeded"
9520 }
9521 run_test 130d "FIEMAP (N-stripe file)"
9522
9523 test_130e() {
9524         [ "$OSTCOUNT" -lt "2" ] &&
9525                 skip_env "skipping continuation FIEMAP test" && return
9526
9527         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
9528         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP" && return
9529
9530         trap cleanup_130 EXIT RETURN
9531
9532         local fm_file=$DIR/$tfile
9533         $SETSTRIPE -S 131072 -c 2 $fm_file || error "setstripe on $fm_file"
9534         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
9535                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
9536
9537         NUM_BLKS=512
9538         EXPECTED_LEN=$(( (NUM_BLKS / 2) * 64 ))
9539         for ((i = 0; i < $NUM_BLKS; i++))
9540         do
9541                 dd if=/dev/zero of=$fm_file count=1 bs=64k seek=$((2*$i)) conv=notrunc > /dev/null 2>&1
9542         done
9543
9544         filefrag -ves $fm_file || error "filefrag $fm_file failed"
9545         filefrag_op=$(filefrag -ve $fm_file |
9546                         sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
9547
9548         last_lun=$(echo $filefrag_op | cut -d: -f5 |
9549                 sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
9550
9551         IFS=$'\n'
9552         tot_len=0
9553         num_luns=1
9554         for line in $filefrag_op
9555         do
9556                 frag_lun=$(echo $line | cut -d: -f5 |
9557                         sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
9558                 ext_len=$(echo $line | cut -d: -f4)
9559                 if (( $frag_lun != $last_lun )); then
9560                         if (( tot_len != $EXPECTED_LEN )); then
9561                                 cleanup_130
9562                                 error "FIEMAP on $fm_file failed; returned " \
9563                                 "len $tot_len for OST $last_lun instead " \
9564                                 "of $EXPECTED_LEN"
9565                                 return
9566                         else
9567                                 (( num_luns += 1 ))
9568                                 tot_len=0
9569                         fi
9570                 fi
9571                 (( tot_len += ext_len ))
9572                 last_lun=$frag_lun
9573         done
9574         if (( num_luns != 2 || tot_len != $EXPECTED_LEN )); then
9575                 cleanup_130
9576                 error "FIEMAP on $fm_file failed; returned wrong number " \
9577                         "of luns or wrong len for OST $last_lun"
9578                 return
9579         fi
9580
9581         cleanup_130
9582
9583         echo "FIEMAP with continuation calls succeeded"
9584 }
9585 run_test 130e "FIEMAP (test continuation FIEMAP calls)"
9586
9587 # Test for writev/readv
9588 test_131a() {
9589         rwv -f $DIR/$tfile -w -n 3 524288 1048576 1572864 ||
9590                 error "writev test failed"
9591         rwv -f $DIR/$tfile -r -v -n 2 1572864 1048576 ||
9592                 error "readv failed"
9593         rm -f $DIR/$tfile
9594 }
9595 run_test 131a "test iov's crossing stripe boundary for writev/readv"
9596
9597 test_131b() {
9598         local fsize=$((524288 + 1048576 + 1572864))
9599         rwv -f $DIR/$tfile -w -a -n 3 524288 1048576 1572864 &&
9600                 $CHECKSTAT -t file $DIR/$tfile -s $fsize ||
9601                         error "append writev test failed"
9602
9603         ((fsize += 1572864 + 1048576))
9604         rwv -f $DIR/$tfile -w -a -n 2 1572864 1048576 &&
9605                 $CHECKSTAT -t file $DIR/$tfile -s $fsize ||
9606                         error "append writev test failed"
9607         rm -f $DIR/$tfile
9608 }
9609 run_test 131b "test append writev"
9610
9611 test_131c() {
9612         rwv -f $DIR/$tfile -w -d -n 1 1048576 || return 0
9613         error "NOT PASS"
9614 }
9615 run_test 131c "test read/write on file w/o objects"
9616
9617 test_131d() {
9618         rwv -f $DIR/$tfile -w -n 1 1572864
9619         NOB=`rwv -f $DIR/$tfile -r -n 3 524288 524288 1048576 | awk '/error/ {print $6}'`
9620         if [ "$NOB" != 1572864 ]; then
9621                 error "Short read filed: read $NOB bytes instead of 1572864"
9622         fi
9623         rm -f $DIR/$tfile
9624 }
9625 run_test 131d "test short read"
9626
9627 test_131e() {
9628         rwv -f $DIR/$tfile -w -s 1048576 -n 1 1048576
9629         rwv -f $DIR/$tfile -r -z -s 0 -n 1 524288 || \
9630         error "read hitting hole failed"
9631         rm -f $DIR/$tfile
9632 }
9633 run_test 131e "test read hitting hole"
9634
9635 check_stats() {
9636         local facet=$1
9637         local op=$2
9638         local want=${3:-0}
9639         local res
9640
9641         case $facet in
9642         mds*) res=$(do_facet $facet \
9643                    $LCTL get_param mdt.$FSNAME-MDT0000.md_stats | grep "$op")
9644                  ;;
9645         ost*) res=$(do_facet $facet \
9646                    $LCTL get_param obdfilter.$FSNAME-OST0000.stats | grep "$op")
9647                  ;;
9648         *) error "Wrong facet '$facet'" ;;
9649         esac
9650         echo $res
9651         [ "$res" ] || error "The counter for $op on $facet was not incremented"
9652         # if the argument $3 is zero, it means any stat increment is ok.
9653         if [[ $want -gt 0 ]]; then
9654                 local count=$(echo $res | awk '{ print $2 }')
9655                 [[ $count -ne $want ]] &&
9656                         error "The $op counter on $facet is $count, not $want"
9657         fi
9658 }
9659
9660 test_133a() {
9661         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9662         remote_ost_nodsh && skip "remote OST with nodsh" && return
9663         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9664
9665         do_facet $SINGLEMDS $LCTL list_param mdt.*.rename_stats ||
9666                 { skip "MDS doesn't support rename stats"; return; }
9667         local testdir=$DIR/${tdir}/stats_testdir
9668         mkdir -p $DIR/${tdir}
9669
9670         # clear stats.
9671         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
9672         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
9673
9674         # verify mdt stats first.
9675         mkdir ${testdir} || error "mkdir failed"
9676         check_stats $SINGLEMDS "mkdir" 1
9677         touch ${testdir}/${tfile} || error "touch failed"
9678         check_stats $SINGLEMDS "open" 1
9679         check_stats $SINGLEMDS "close" 1
9680         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.8.54) ] && {
9681                 mknod ${testdir}/${tfile}-pipe p || error "mknod failed"
9682                 check_stats $SINGLEMDS "mknod" 2
9683         }
9684         rm -f ${testdir}/${tfile}-pipe || error "pipe remove failed"
9685         check_stats $SINGLEMDS "unlink" 1
9686         rm -f ${testdir}/${tfile} || error "file remove failed"
9687         check_stats $SINGLEMDS "unlink" 2
9688
9689         # remove working dir and check mdt stats again.
9690         rmdir ${testdir} || error "rmdir failed"
9691         check_stats $SINGLEMDS "rmdir" 1
9692
9693         local testdir1=$DIR/${tdir}/stats_testdir1
9694         mkdir -p ${testdir}
9695         mkdir -p ${testdir1}
9696         touch ${testdir1}/test1
9697         mv ${testdir1}/test1 ${testdir} || error "file crossdir rename"
9698         check_stats $SINGLEMDS "crossdir_rename" 1
9699
9700         mv ${testdir}/test1 ${testdir}/test0 || error "file samedir rename"
9701         check_stats $SINGLEMDS "samedir_rename" 1
9702
9703         rm -rf $DIR/${tdir}
9704 }
9705 run_test 133a "Verifying MDT stats ========================================"
9706
9707 test_133b() {
9708         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9709         remote_ost_nodsh && skip "remote OST with nodsh" && return
9710         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9711         local testdir=$DIR/${tdir}/stats_testdir
9712         mkdir -p ${testdir} || error "mkdir failed"
9713         touch ${testdir}/${tfile} || error "touch failed"
9714         cancel_lru_locks mdc
9715
9716         # clear stats.
9717         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
9718         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
9719
9720         # extra mdt stats verification.
9721         chmod 444 ${testdir}/${tfile} || error "chmod failed"
9722         check_stats $SINGLEMDS "setattr" 1
9723         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
9724         if [ $(lustre_version_code $SINGLEMDS) -ne $(version_code 2.2.0) ]
9725         then            # LU-1740
9726                 ls -l ${testdir}/${tfile} > /dev/null|| error "ls failed"
9727                 check_stats $SINGLEMDS "getattr" 1
9728         fi
9729         $LFS df || error "lfs failed"
9730         check_stats $SINGLEMDS "statfs" 1
9731
9732         rm -rf $DIR/${tdir}
9733 }
9734 run_test 133b "Verifying extra MDT stats =================================="
9735
9736 test_133c() {
9737         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9738         remote_ost_nodsh && skip "remote OST with nodsh" && return
9739         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9740         local testdir=$DIR/${tdir}/stats_testdir
9741         test_mkdir -p ${testdir} || error "mkdir failed"
9742
9743         # verify obdfilter stats.
9744         $SETSTRIPE -c 1 -i 0 ${testdir}/${tfile}
9745         sync
9746         cancel_lru_locks osc
9747         wait_delete_completed
9748
9749         # clear stats.
9750         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
9751         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
9752
9753         dd if=/dev/zero of=${testdir}/${tfile} conv=notrunc bs=512k count=1 || error "dd failed"
9754         sync
9755         cancel_lru_locks osc
9756         check_stats ost1 "write" 1
9757
9758         dd if=${testdir}/${tfile} of=/dev/null bs=1k count=1 || error "dd failed"
9759         check_stats ost1 "read" 1
9760
9761         > ${testdir}/${tfile} || error "truncate failed"
9762         check_stats ost1 "punch" 1
9763
9764         rm -f ${testdir}/${tfile} || error "file remove failed"
9765         wait_delete_completed
9766         check_stats ost1 "destroy" 1
9767
9768         rm -rf $DIR/${tdir}
9769 }
9770 run_test 133c "Verifying OST stats ========================================"
9771
9772 order_2() {
9773         local value=$1
9774         local orig=$value
9775         local order=1
9776
9777         while [ $value -ge 2 ]; do
9778                 order=$((order*2))
9779                 value=$((value/2))
9780         done
9781
9782         if [ $orig -gt $order ]; then
9783                 order=$((order*2))
9784         fi
9785         echo $order
9786 }
9787
9788 size_in_KMGT() {
9789     local value=$1
9790     local size=('K' 'M' 'G' 'T');
9791     local i=0
9792     local size_string=$value
9793
9794     while [ $value -ge 1024 ]; do
9795         if [ $i -gt 3 ]; then
9796             #T is the biggest unit we get here, if that is bigger,
9797             #just return XXXT
9798             size_string=${value}T
9799             break
9800         fi
9801         value=$((value >> 10))
9802         if [ $value -lt 1024 ]; then
9803             size_string=${value}${size[$i]}
9804             break
9805         fi
9806         i=$((i + 1))
9807     done
9808
9809     echo $size_string
9810 }
9811
9812 get_rename_size() {
9813     local size=$1
9814     local context=${2:-.}
9815     local sample=$(do_facet $SINGLEMDS $LCTL get_param mdt.*.rename_stats |
9816                 grep -A1 $context |
9817                 awk '/ '${size}'/ {print $4}' | sed -e "s/,//g")
9818     echo $sample
9819 }
9820
9821 test_133d() {
9822         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9823         remote_ost_nodsh && skip "remote OST with nodsh" && return
9824         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9825         do_facet $SINGLEMDS $LCTL list_param mdt.*.rename_stats ||
9826         { skip "MDS doesn't support rename stats"; return; }
9827
9828         local testdir1=$DIR/${tdir}/stats_testdir1
9829         local testdir2=$DIR/${tdir}/stats_testdir2
9830
9831         do_facet $SINGLEMDS $LCTL set_param mdt.*.rename_stats=clear
9832
9833         mkdir -p ${testdir1} || error "mkdir failed"
9834         mkdir -p ${testdir2} || error "mkdir failed"
9835
9836         createmany -o $testdir1/test 512 || error "createmany failed"
9837
9838         # check samedir rename size
9839         mv ${testdir1}/test0 ${testdir1}/test_0
9840
9841         local testdir1_size=$(ls -l $DIR/${tdir} |
9842                 awk '/stats_testdir1/ {print $5}')
9843         local testdir2_size=$(ls -l $DIR/${tdir} |
9844                 awk '/stats_testdir2/ {print $5}')
9845
9846         testdir1_size=$(order_2 $testdir1_size)
9847         testdir2_size=$(order_2 $testdir2_size)
9848
9849         testdir1_size=$(size_in_KMGT $testdir1_size)
9850         testdir2_size=$(size_in_KMGT $testdir2_size)
9851
9852         echo "source rename dir size: ${testdir1_size}"
9853         echo "target rename dir size: ${testdir2_size}"
9854
9855         local cmd="do_facet $SINGLEMDS $LCTL get_param mdt.*.rename_stats"
9856         eval $cmd || error "$cmd failed"
9857         local samedir=$($cmd | grep 'same_dir')
9858         local same_sample=$(get_rename_size $testdir1_size)
9859         [ -z "$samedir" ] && error "samedir_rename_size count error"
9860         [[ $same_sample -eq 1 ]] ||
9861                 error "samedir_rename_size error $same_sample"
9862         echo "Check same dir rename stats success"
9863
9864         do_facet $SINGLEMDS $LCTL set_param mdt.*.rename_stats=clear
9865
9866         # check crossdir rename size
9867         mv ${testdir1}/test_0 ${testdir2}/test_0
9868
9869         testdir1_size=$(ls -l $DIR/${tdir} |
9870                 awk '/stats_testdir1/ {print $5}')
9871         testdir2_size=$(ls -l $DIR/${tdir} |
9872                 awk '/stats_testdir2/ {print $5}')
9873
9874         testdir1_size=$(order_2 $testdir1_size)
9875         testdir2_size=$(order_2 $testdir2_size)
9876
9877         testdir1_size=$(size_in_KMGT $testdir1_size)
9878         testdir2_size=$(size_in_KMGT $testdir2_size)
9879
9880         echo "source rename dir size: ${testdir1_size}"
9881         echo "target rename dir size: ${testdir2_size}"
9882
9883         eval $cmd || error "$cmd failed"
9884         local crossdir=$($cmd | grep 'crossdir')
9885         local src_sample=$(get_rename_size $testdir1_size crossdir_src)
9886         local tgt_sample=$(get_rename_size $testdir2_size crossdir_tgt)
9887         [ -z "$crossdir" ] && error "crossdir_rename_size count error"
9888         [[ $src_sample -eq 1 ]] ||
9889                 error "crossdir_rename_size error $src_sample"
9890         [[ $tgt_sample -eq 1 ]] ||
9891                 error "crossdir_rename_size error $tgt_sample"
9892         echo "Check cross dir rename stats success"
9893         rm -rf $DIR/${tdir}
9894 }
9895 run_test 133d "Verifying rename_stats ========================================"
9896
9897 test_133e() {
9898         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9899         remote_ost_nodsh && skip "remote OST with nodsh" && return
9900         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9901         local testdir=$DIR/${tdir}/stats_testdir
9902         local ctr f0 f1 bs=32768 count=42 sum
9903
9904         mkdir -p ${testdir} || error "mkdir failed"
9905
9906         $SETSTRIPE -c 1 -i 0 ${testdir}/${tfile}
9907
9908         for ctr in {write,read}_bytes; do
9909                 sync
9910                 cancel_lru_locks osc
9911
9912                 do_facet ost1 $LCTL set_param -n \
9913                         "obdfilter.*.exports.clear=clear"
9914
9915                 if [ $ctr = write_bytes ]; then
9916                         f0=/dev/zero
9917                         f1=${testdir}/${tfile}
9918                 else
9919                         f0=${testdir}/${tfile}
9920                         f1=/dev/null
9921                 fi
9922
9923                 dd if=$f0 of=$f1 conv=notrunc bs=$bs count=$count || \
9924                         error "dd failed"
9925                 sync
9926                 cancel_lru_locks osc
9927
9928                 sum=$(do_facet ost1 $LCTL get_param \
9929                         "obdfilter.*.exports.*.stats" |
9930                         awk -v ctr=$ctr 'BEGIN { sum = 0 }
9931                                 $1 == ctr { sum += $7 }
9932                                 END { printf("%0.0f", sum) }')
9933
9934                 if ((sum != bs * count)); then
9935                         error "Bad $ctr sum, expected $((bs * count)), got $sum"
9936                 fi
9937         done
9938
9939         rm -rf $DIR/${tdir}
9940 }
9941 run_test 133e "Verifying OST {read,write}_bytes nid stats ================="
9942
9943 proc_regexp="/{proc,sys}/{fs,sys,kernel/debug}/{lustre,lnet}/"
9944
9945 test_133f() {
9946         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9947         remote_ost_nodsh && skip "remote OST with nodsh" && return
9948         # First without trusting modes.
9949         local proc_dirs=$(eval \ls -d $proc_regexp 2>/dev/null)
9950         echo "proc_dirs='$proc_dirs'"
9951         [ -n "$proc_dirs" ] || error "no proc_dirs on $HOSTNAME"
9952         find $proc_dirs -exec cat '{}' \; &> /dev/null
9953
9954         # Second verifying readability.
9955         $LCTL get_param -R '*' &> /dev/null || error "proc file read failed"
9956
9957         # eventually, this can also be replaced with "lctl get_param -R",
9958         # but not until that option is always available on the server
9959         local facet
9960         for facet in mds1 ost1; do
9961                 local facet_proc_dirs=$(do_facet $facet \
9962                                         \\\ls -d $proc_regexp 2>/dev/null)
9963                 echo "${facet}_proc_dirs='$facet_proc_dirs'"
9964                 [ -z "$facet_proc_dirs" ] && error "no proc_dirs on $facet"
9965                 do_facet $facet find $facet_proc_dirs \
9966                         ! -name req_history \
9967                         -exec cat '{}' \\\; &> /dev/null
9968
9969                 do_facet $facet find $facet_proc_dirs \
9970                         ! -name req_history \
9971                         -type f \
9972                         -exec cat '{}' \\\; &> /dev/null ||
9973                                 error "proc file read failed"
9974         done
9975 }
9976 run_test 133f "Check for LBUGs/Oopses/unreadable files in /proc"
9977
9978 test_133g() {
9979         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9980         remote_ost_nodsh && skip "remote OST with nodsh" && return
9981         # Second verifying writability.
9982         local proc_dirs=$(eval \ls -d $proc_regexp 2>/dev/null)
9983         echo "proc_dirs='$proc_dirs'"
9984         [ -n "$proc_dirs" ] || error "no proc_dirs on $HOSTNAME"
9985         find $proc_dirs \
9986                 -type f \
9987                 -not -name force_lbug \
9988                 -not -name changelog_mask \
9989                 -exec badarea_io '{}' \; &> /dev/null ||
9990                 error "find $proc_dirs failed"
9991
9992         local facet
9993         for facet in mds1 ost1; do
9994                 [ $(lustre_version_code $facet) -le $(version_code 2.5.54) ] &&
9995                         skip "Too old lustre on $facet" && continue
9996                 local facet_proc_dirs=$(do_facet $facet \
9997                                         \\\ls -d $proc_regexp 2> /dev/null)
9998                 echo "${facet}_proc_dirs='$facet_proc_dirs'"
9999                 [ -z "$facet_proc_dirs" ] && error "no proc_dirs on $facet"
10000                 do_facet $facet find $facet_proc_dirs \
10001                         -type f \
10002                         -not -name force_lbug \
10003                         -not -name changelog_mask \
10004                         -exec badarea_io '{}' \\\; &> /dev/null ||
10005                                 error "$facet find $facet_proc_dirs failed"
10006         done
10007
10008         # remount the FS in case writes/reads /proc break the FS
10009         cleanup || error "failed to unmount"
10010         setup || error "failed to setup"
10011         true
10012 }
10013 run_test 133g "Check for Oopses on bad io area writes/reads in /proc"
10014
10015 test_133h() {
10016         remote_mds_nodsh && skip "remote MDS with nodsh" && return
10017         remote_ost_nodsh && skip "remote OST with nodsh" && return
10018         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.9.54) ]] &&
10019                 skip "Need MDS version at least 2.9.54" && return
10020
10021         local facet
10022         for facet in client mds1 ost1; do
10023                 local facet_proc_dirs=$(do_facet $facet \
10024                                         \\\ls -d $proc_regexp 2> /dev/null)
10025                 [ -z "$facet_proc_dirs" ] && error "no proc_dirs on $facet"
10026                 echo "${facet}_proc_dirs='$facet_proc_dirs'"
10027                 # Get the list of files that are missing the terminating newline
10028                 local missing=($(do_facet $facet \
10029                         find ${facet_proc_dirs} -type f \|              \
10030                                 while read F\; do                       \
10031                                         awk -v FS='\v' -v RS='\v\v'     \
10032                                         "'END { if(NR>0 &&              \
10033                                         \\\$NF !~ /.*\\\n\$/)           \
10034                                                 print FILENAME}'"       \
10035                                         '\$F'\;                         \
10036                                 done 2>/dev/null))
10037                 [ ${#missing[*]} -eq 0 ] ||
10038                         error "files do not end with newline: ${missing[*]}"
10039         done
10040 }
10041 run_test 133h "Proc files should end with newlines"
10042
10043 test_134a() {
10044         remote_mds_nodsh && skip "remote MDS with nodsh" && return
10045         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.54) ]] &&
10046                 skip "Need MDS version at least 2.7.54" && return
10047
10048         mkdir -p $DIR/$tdir || error "failed to create $DIR/$tdir"
10049         cancel_lru_locks mdc
10050
10051         local nsdir="ldlm.namespaces.*-MDT0000-mdc-*"
10052         local unused=$($LCTL get_param -n $nsdir.lock_unused_count)
10053         [ $unused -eq 0 ] || error "$unused locks are not cleared"
10054
10055         local nr=1000
10056         createmany -o $DIR/$tdir/f $nr ||
10057                 error "failed to create $nr files in $DIR/$tdir"
10058         unused=$($LCTL get_param -n $nsdir.lock_unused_count)
10059
10060         #define OBD_FAIL_LDLM_WATERMARK_LOW     0x327
10061         do_facet mds1 $LCTL set_param fail_loc=0x327
10062         do_facet mds1 $LCTL set_param fail_val=500
10063         touch $DIR/$tdir/m
10064
10065         echo "sleep 10 seconds ..."
10066         sleep 10
10067         local lck_cnt=$($LCTL get_param -n $nsdir.lock_unused_count)
10068
10069         do_facet mds1 $LCTL set_param fail_loc=0
10070         do_facet mds1 $LCTL set_param fail_val=0
10071         [ $lck_cnt -lt $unused ] ||
10072                 error "No locks reclaimed, before:$unused, after:$lck_cnt"
10073
10074         rm $DIR/$tdir/m
10075         unlinkmany $DIR/$tdir/f $nr
10076 }
10077 run_test 134a "Server reclaims locks when reaching lock_reclaim_threshold"
10078
10079 test_134b() {
10080         remote_mds_nodsh && skip "remote MDS with nodsh" && return
10081         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.54) ]] &&
10082                 skip "Need MDS version at least 2.7.54" && return
10083
10084         mkdir -p $DIR/$tdir || error "failed to create $DIR/$tdir"
10085         cancel_lru_locks mdc
10086
10087         local low_wm=$(do_facet mds1 $LCTL get_param -n \
10088                         ldlm.lock_reclaim_threshold_mb)
10089         # disable reclaim temporarily
10090         do_facet mds1 $LCTL set_param ldlm.lock_reclaim_threshold_mb=0
10091
10092         #define OBD_FAIL_LDLM_WATERMARK_HIGH     0x328
10093         do_facet mds1 $LCTL set_param fail_loc=0x328
10094         do_facet mds1 $LCTL set_param fail_val=500
10095
10096         $LCTL set_param debug=+trace
10097
10098         local nr=600
10099         createmany -o $DIR/$tdir/f $nr &
10100         local create_pid=$!
10101
10102         echo "Sleep $TIMEOUT seconds ..."
10103         sleep $TIMEOUT
10104         if ! ps -p $create_pid  > /dev/null 2>&1; then
10105                 do_facet mds1 $LCTL set_param fail_loc=0
10106                 do_facet mds1 $LCTL set_param fail_val=0
10107                 do_facet mds1 $LCTL set_param \
10108                         ldlm.lock_reclaim_threshold_mb=${low_wm}m
10109                 error "createmany finished incorrectly!"
10110         fi
10111         do_facet mds1 $LCTL set_param fail_loc=0
10112         do_facet mds1 $LCTL set_param fail_val=0
10113         do_facet mds1 $LCTL set_param ldlm.lock_reclaim_threshold_mb=${low_wm}m
10114         wait $create_pid || return 1
10115
10116         unlinkmany $DIR/$tdir/f $nr
10117 }
10118 run_test 134b "Server rejects lock request when reaching lock_limit_mb"
10119
10120 test_140() { #bug-17379
10121         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10122         test_mkdir -p $DIR/$tdir || error "Creating dir $DIR/$tdir"
10123         cd $DIR/$tdir || error "Changing to $DIR/$tdir"
10124         cp $(which stat) . || error "Copying stat to $DIR/$tdir"
10125
10126         # VFS limits max symlink depth to 5(4KSTACK) or 7(8KSTACK) or 8
10127         # For kernel > 3.5, bellow only tests consecutive symlink (MAX 40)
10128         local i=0
10129         while i=`expr $i + 1`; do
10130                 test_mkdir -p $i || error "Creating dir $i"
10131                 cd $i || error "Changing to $i"
10132                 ln -s ../stat stat || error "Creating stat symlink"
10133                 # Read the symlink until ELOOP present,
10134                 # not LBUGing the system is considered success,
10135                 # we didn't overrun the stack.
10136                 $OPENFILE -f O_RDONLY stat >/dev/null 2>&1; ret=$?
10137                 [ $ret -ne 0 ] && {
10138                         if [ $ret -eq 40 ]; then
10139                                 break  # -ELOOP
10140                         else
10141                                 error "Open stat symlink"
10142                                 return
10143                         fi
10144                 }
10145         done
10146         i=`expr $i - 1`
10147         echo "The symlink depth = $i"
10148         [ $i -eq 5 -o $i -eq 7 -o $i -eq 8 -o $i -eq 40 ] ||
10149                                         error "Invalid symlink depth"
10150
10151         # Test recursive symlink
10152         ln -s symlink_self symlink_self
10153         $OPENFILE -f O_RDONLY symlink_self >/dev/null 2>&1; ret=$?
10154         echo "open symlink_self returns $ret"
10155         [ $ret -eq 40 ] || error "recursive symlink doesn't return -ELOOP"
10156 }
10157 run_test 140 "Check reasonable stack depth (shouldn't LBUG) ===="
10158
10159 test_150() {
10160         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10161         local TF="$TMP/$tfile"
10162
10163         dd if=/dev/urandom of=$TF bs=6096 count=1 || error "dd failed"
10164         cp $TF $DIR/$tfile
10165         cancel_lru_locks osc
10166         cmp $TF $DIR/$tfile || error "$TMP/$tfile $DIR/$tfile differ"
10167         remount_client $MOUNT
10168         df -P $MOUNT
10169         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (remount)"
10170
10171         $TRUNCATE $TF 6000
10172         $TRUNCATE $DIR/$tfile 6000
10173         cancel_lru_locks osc
10174         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (truncate1)"
10175
10176         echo "12345" >>$TF
10177         echo "12345" >>$DIR/$tfile
10178         cancel_lru_locks osc
10179         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (append1)"
10180
10181         echo "12345" >>$TF
10182         echo "12345" >>$DIR/$tfile
10183         cancel_lru_locks osc
10184         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (append2)"
10185
10186         rm -f $TF
10187         true
10188 }
10189 run_test 150 "truncate/append tests"
10190
10191 #LU-2902 roc_hit was not able to read all values from lproc
10192 function roc_hit_init() {
10193         local list=$(comma_list $(osts_nodes))
10194         local dir=$DIR/$tdir-check
10195         local file=$dir/file
10196         local BEFORE
10197         local AFTER
10198         local idx
10199
10200         test_mkdir -p $dir
10201         #use setstripe to do a write to every ost
10202         for i in $(seq 0 $((OSTCOUNT-1))); do
10203                 $SETSTRIPE -c 1 -i $i $dir || error "$SETSTRIPE $file failed"
10204                 dd if=/dev/urandom of=$file bs=4k count=4 2>&1 > /dev/null
10205                 idx=$(printf %04x $i)
10206                 BEFORE=$(get_osd_param $list *OST*$idx stats |
10207                         awk '$1 == "cache_access" {sum += $7}
10208                                 END { printf("%0.0f", sum) }')
10209
10210                 cancel_lru_locks osc
10211                 cat $file >/dev/null
10212
10213                 AFTER=$(get_osd_param $list *OST*$idx stats |
10214                         awk '$1 == "cache_access" {sum += $7}
10215                                 END { printf("%0.0f", sum) }')
10216
10217                 echo BEFORE:$BEFORE AFTER:$AFTER
10218                 if ! let "AFTER - BEFORE == 4"; then
10219                         rm -rf $dir
10220                         error "roc_hit is not safe to use"
10221                 fi
10222                 rm $file
10223         done
10224
10225         rm -rf $dir
10226 }
10227
10228 function roc_hit() {
10229         local list=$(comma_list $(osts_nodes))
10230         echo $(get_osd_param $list '' stats |
10231                 awk '$1 == "cache_hit" {sum += $7}
10232                         END { printf("%0.0f", sum) }')
10233 }
10234
10235 function set_cache() {
10236         local on=1
10237
10238         if [ "$2" == "off" ]; then
10239                 on=0;
10240         fi
10241         local list=$(comma_list $(osts_nodes))
10242         set_osd_param $list '' $1_cache_enable $on
10243
10244         cancel_lru_locks osc
10245 }
10246
10247 test_151() {
10248         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10249         remote_ost_nodsh && skip "remote OST with nodsh" && return
10250
10251         local CPAGES=3
10252         local list=$(comma_list $(osts_nodes))
10253
10254         # check whether obdfilter is cache capable at all
10255         if ! get_osd_param $list '' read_cache_enable >/dev/null; then
10256                 echo "not cache-capable obdfilter"
10257                 return 0
10258         fi
10259
10260         # check cache is enabled on all obdfilters
10261         if get_osd_param $list '' read_cache_enable | grep 0; then
10262                 echo "oss cache is disabled"
10263                 return 0
10264         fi
10265
10266         set_osd_param $list '' writethrough_cache_enable 1
10267
10268         # check write cache is enabled on all obdfilters
10269         if get_osd_param $list '' writethrough_cache_enable | grep 0; then
10270                 echo "oss write cache is NOT enabled"
10271                 return 0
10272         fi
10273
10274         roc_hit_init
10275
10276         #define OBD_FAIL_OBD_NO_LRU  0x609
10277         do_nodes $list $LCTL set_param fail_loc=0x609
10278
10279         # pages should be in the case right after write
10280         dd if=/dev/urandom of=$DIR/$tfile bs=4k count=$CPAGES ||
10281                 error "dd failed"
10282
10283         local BEFORE=$(roc_hit)
10284         cancel_lru_locks osc
10285         cat $DIR/$tfile >/dev/null
10286         local AFTER=$(roc_hit)
10287
10288         do_nodes $list $LCTL set_param fail_loc=0
10289
10290         if ! let "AFTER - BEFORE == CPAGES"; then
10291                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
10292         fi
10293
10294         # the following read invalidates the cache
10295         cancel_lru_locks osc
10296         set_osd_param $list '' read_cache_enable 0
10297         cat $DIR/$tfile >/dev/null
10298
10299         # now data shouldn't be found in the cache
10300         BEFORE=$(roc_hit)
10301         cancel_lru_locks osc
10302         cat $DIR/$tfile >/dev/null
10303         AFTER=$(roc_hit)
10304         if let "AFTER - BEFORE != 0"; then
10305                 error "IN CACHE: before: $BEFORE, after: $AFTER"
10306         fi
10307
10308         set_osd_param $list '' read_cache_enable 1
10309         rm -f $DIR/$tfile
10310 }
10311 run_test 151 "test cache on oss and controls ==============================="
10312
10313 test_152() {
10314         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10315         local TF="$TMP/$tfile"
10316
10317         # simulate ENOMEM during write
10318 #define OBD_FAIL_OST_NOMEM      0x226
10319         lctl set_param fail_loc=0x80000226
10320         dd if=/dev/urandom of=$TF bs=6096 count=1 || error "dd failed"
10321         cp $TF $DIR/$tfile
10322         sync || error "sync failed"
10323         lctl set_param fail_loc=0
10324
10325         # discard client's cache
10326         cancel_lru_locks osc
10327
10328         # simulate ENOMEM during read
10329         lctl set_param fail_loc=0x80000226
10330         cmp $TF $DIR/$tfile || error "cmp failed"
10331         lctl set_param fail_loc=0
10332
10333         rm -f $TF
10334 }
10335 run_test 152 "test read/write with enomem ============================"
10336
10337 test_153() {
10338         $MULTIOP $DIR/$tfile Ow4096Ycu || error "multiop failed"
10339 }
10340 run_test 153 "test if fdatasync does not crash ======================="
10341
10342 dot_lustre_fid_permission_check() {
10343         local fid=$1
10344         local ffid=$MOUNT/.lustre/fid/$fid
10345         local test_dir=$2
10346
10347         echo "stat fid $fid"
10348         stat $ffid > /dev/null || error "stat $ffid failed."
10349         echo "touch fid $fid"
10350         touch $ffid || error "touch $ffid failed."
10351         echo "write to fid $fid"
10352         cat /etc/hosts > $ffid || error "write $ffid failed."
10353         echo "read fid $fid"
10354         diff /etc/hosts $ffid || error "read $ffid failed."
10355         echo "append write to fid $fid"
10356         cat /etc/hosts >> $ffid || error "append write $ffid failed."
10357         echo "rename fid $fid"
10358         mv $ffid $test_dir/$tfile.1 &&
10359                 error "rename $ffid to $tfile.1 should fail."
10360         touch $test_dir/$tfile.1
10361         mv $test_dir/$tfile.1 $ffid &&
10362                 error "rename $tfile.1 to $ffid should fail."
10363         rm -f $test_dir/$tfile.1
10364         echo "truncate fid $fid"
10365         $TRUNCATE $ffid 777 || error "truncate $ffid failed."
10366         if [ $MDSCOUNT -lt 2 ]; then #FIXME when cross-MDT hard link is working
10367                 echo "link fid $fid"
10368                 ln -f $ffid $test_dir/tfile.lnk || error "link $ffid failed."
10369         fi
10370         if [ -n $(lctl get_param -n mdc.*-mdc-*.connect_flags | grep acl) ]; then
10371                 echo "setfacl fid $fid"
10372                 setfacl -R -m u:bin:rwx $ffid || error "setfacl $ffid failed."
10373                 echo "getfacl fid $fid"
10374                 getfacl $ffid >/dev/null || error "getfacl $ffid failed."
10375         fi
10376         echo "unlink fid $fid"
10377         unlink $MOUNT/.lustre/fid/$fid && error "unlink $ffid should fail."
10378         echo "mknod fid $fid"
10379         mknod $ffid c 1 3 && error "mknod $ffid should fail."
10380
10381         fid=[0xf00000400:0x1:0x0]
10382         ffid=$MOUNT/.lustre/fid/$fid
10383
10384         echo "stat non-exist fid $fid"
10385         stat $ffid > /dev/null && error "stat non-exist $ffid should fail."
10386         echo "write to non-exist fid $fid"
10387         cat /etc/hosts > $ffid && error "write non-exist $ffid should fail."
10388         echo "link new fid $fid"
10389         ln $test_dir/$tfile $ffid && error "link $ffid should fail."
10390
10391         mkdir -p $test_dir/$tdir
10392         touch $test_dir/$tdir/$tfile
10393         fid=$($LFS path2fid $test_dir/$tdir)
10394         rc=$?
10395         [ $rc -ne 0 ] &&
10396                 error "error: could not get fid for $test_dir/$dir/$tfile."
10397
10398         ffid=$MOUNT/.lustre/fid/$fid
10399
10400         echo "ls $fid"
10401         ls $ffid > /dev/null || error "ls $ffid failed."
10402         echo "touch $fid/$tfile.1"
10403         touch $ffid/$tfile.1 || error "touch $ffid/$tfile.1 failed."
10404
10405         echo "touch $MOUNT/.lustre/fid/$tfile"
10406         touch $MOUNT/.lustre/fid/$tfile && \
10407                 error "touch $MOUNT/.lustre/fid/$tfile should fail."
10408
10409         echo "setxattr to $MOUNT/.lustre/fid"
10410         setfattr -n trusted.name1 -v value1 $MOUNT/.lustre/fid
10411
10412         echo "listxattr for $MOUNT/.lustre/fid"
10413         getfattr -d -m "^trusted" $MOUNT/.lustre/fid
10414
10415         echo "delxattr from $MOUNT/.lustre/fid"
10416         setfattr -x trusted.name1 $MOUNT/.lustre/fid
10417
10418         echo "touch invalid fid: $MOUNT/.lustre/fid/[0x200000400:0x2:0x3]"
10419         touch $MOUNT/.lustre/fid/[0x200000400:0x2:0x3] &&
10420                 error "touch invalid fid should fail."
10421
10422         echo "touch non-normal fid: $MOUNT/.lustre/fid/[0x1:0x2:0x0]"
10423         touch $MOUNT/.lustre/fid/[0x1:0x2:0x0] &&
10424                 error "touch non-normal fid should fail."
10425
10426         echo "rename $tdir to $MOUNT/.lustre/fid"
10427         mrename $test_dir/$tdir $MOUNT/.lustre/fid &&
10428                 error "rename to $MOUNT/.lustre/fid should fail."
10429
10430         if [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.51) ]
10431         then            # LU-3547
10432                 local old_obf_mode=$(stat --format="%a" $DIR/.lustre/fid)
10433                 local new_obf_mode=777
10434
10435                 echo "change mode of $DIR/.lustre/fid to $new_obf_mode"
10436                 chmod $new_obf_mode $DIR/.lustre/fid ||
10437                         error "chmod $new_obf_mode $DIR/.lustre/fid failed"
10438
10439                 local obf_mode=$(stat --format=%a $DIR/.lustre/fid)
10440                 [ $obf_mode -eq $new_obf_mode ] ||
10441                         error "stat $DIR/.lustre/fid returned wrong mode $obf_mode"
10442
10443                 echo "restore mode of $DIR/.lustre/fid to $old_obf_mode"
10444                 chmod $old_obf_mode $DIR/.lustre/fid ||
10445                         error "chmod $old_obf_mode $DIR/.lustre/fid failed"
10446         fi
10447
10448         $OPENFILE -f O_LOV_DELAY_CREATE:O_CREAT $test_dir/$tfile-2
10449         fid=$($LFS path2fid $test_dir/$tfile-2)
10450
10451         if [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.50) ]
10452         then # LU-5424
10453                 echo "cp /etc/passwd $MOUNT/.lustre/fid/$fid"
10454                 cp /etc/passwd $MOUNT/.lustre/fid/$fid ||
10455                         error "create lov data thru .lustre failed"
10456         fi
10457         echo "cp /etc/passwd $test_dir/$tfile-2"
10458         cp /etc/passwd $test_dir/$tfile-2 ||
10459                 error "copy to $test_dir/$tfile-2 failed."
10460         echo "diff /etc/passwd $MOUNT/.lustre/fid/$fid"
10461         diff /etc/passwd $MOUNT/.lustre/fid/$fid ||
10462                 error "diff /etc/passwd $MOUNT/.lustre/fid/$fid failed."
10463
10464         rm -rf $test_dir/tfile.lnk
10465         rm -rf $test_dir/$tfile-2
10466 }
10467
10468 test_154A() {
10469         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.1) ]] &&
10470                 skip "Need MDS version at least 2.4.1" && return
10471
10472         local tf=$DIR/$tfile
10473         touch $tf
10474
10475         local fid=$($LFS path2fid $tf)
10476         [ -z "$fid" ] && error "path2fid unable to get $tf FID"
10477
10478         # check that we get the same pathname back
10479         local found=$($LFS fid2path $MOUNT "$fid")
10480         [ -z "$found" ] && error "fid2path unable to get '$fid' path"
10481         [ "$found" == "$tf" ] ||
10482                 error "fid2path($fid=path2fid($tf)) = $found != $tf"
10483 }
10484 run_test 154A "lfs path2fid and fid2path basic checks"
10485
10486 test_154B() {
10487         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.1) ]] &&
10488                 skip "Need MDS version at least 2.4.1" && return
10489
10490         mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
10491         touch $DIR/$tdir/$tfile || error "touch $DIR/$tdir/$tfile failed"
10492         local linkea=$($LL_DECODE_LINKEA $DIR/$tdir/$tfile | grep 'pfid')
10493         [ -z "$linkea" ] && error "decode linkea $DIR/$tdir/$tfile failed"
10494
10495         local name=$(echo $linkea | awk '/pfid/ {print $5}' | sed -e "s/'//g")
10496         local PFID=$(echo $linkea | awk '/pfid/ {print $3}' | sed -e "s/,//g")
10497
10498         # check that we get the same pathname
10499         echo "PFID: $PFID, name: $name"
10500         local FOUND=$($LFS fid2path $MOUNT "$PFID")
10501         [ -z "$FOUND" ] && error "fid2path unable to get $PFID path"
10502         [ "$FOUND/$name" != "$DIR/$tdir/$tfile" ] &&
10503                 error "ll_decode_linkea has $FOUND/$name != $DIR/$tdir/$tfile"
10504
10505         rm -rf $DIR/$tdir || error "Can not delete directory $DIR/$tdir"
10506 }
10507 run_test 154B "verify the ll_decode_linkea tool"
10508
10509 test_154a() {
10510         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10511         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ]] ||
10512                 { skip "Need MDS version at least 2.2.51"; return 0; }
10513         [ -z "$(which setfacl)" ] && skip "must have setfacl tool" && return
10514         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
10515
10516         cp /etc/hosts $DIR/$tfile
10517
10518         fid=$($LFS path2fid $DIR/$tfile)
10519         rc=$?
10520         [ $rc -ne 0 ] && error "error: could not get fid for $DIR/$tfile."
10521
10522         dot_lustre_fid_permission_check "$fid" $DIR ||
10523                 error "dot lustre permission check $fid failed"
10524
10525         rm -rf $MOUNT/.lustre && error ".lustre is not allowed to be unlinked"
10526
10527         touch $MOUNT/.lustre/file &&
10528                 error "creation is not allowed under .lustre"
10529
10530         mkdir $MOUNT/.lustre/dir &&
10531                 error "mkdir is not allowed under .lustre"
10532
10533         rm -rf $DIR/$tfile
10534 }
10535 run_test 154a "Open-by-FID"
10536
10537 test_154b() {
10538         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10539         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ]] ||
10540                 { skip "Need MDS version at least 2.2.51"; return 0; }
10541         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
10542
10543         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
10544
10545         local remote_dir=$DIR/$tdir/remote_dir
10546         local MDTIDX=1
10547         local rc=0
10548
10549         mkdir -p $DIR/$tdir
10550         $LFS mkdir -i $MDTIDX $remote_dir ||
10551                 error "create remote directory failed"
10552
10553         cp /etc/hosts $remote_dir/$tfile
10554
10555         fid=$($LFS path2fid $remote_dir/$tfile)
10556         rc=$?
10557         [ $rc -ne 0 ] && error "error: could not get fid for $remote_dir/$tfile"
10558
10559         dot_lustre_fid_permission_check "$fid" $remote_dir ||
10560                 error "dot lustre permission check $fid failed"
10561         rm -rf $DIR/$tdir
10562 }
10563 run_test 154b "Open-by-FID for remote directory"
10564
10565 test_154c() {
10566         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.1) ]] &&
10567                 skip "Need MDS version at least 2.4.1" && return
10568
10569         touch $DIR/$tfile.1 $DIR/$tfile.2 $DIR/$tfile.3
10570         local FID1=$($LFS path2fid $DIR/$tfile.1)
10571         local FID2=$($LFS path2fid $DIR/$tfile.2)
10572         local FID3=$($LFS path2fid $DIR/$tfile.3)
10573
10574         local N=1
10575         $LFS path2fid $DIR/$tfile.[123] | while read PATHNAME FID; do
10576                 [ "$PATHNAME" = "$DIR/$tfile.$N:" ] ||
10577                         error "path2fid pathname $PATHNAME != $DIR/$tfile.$N:"
10578                 local want=FID$N
10579                 [ "$FID" = "${!want}" ] ||
10580                         error "path2fid $PATHNAME FID $FID != FID$N ${!want}"
10581                 N=$((N + 1))
10582         done
10583
10584         $LFS fid2path $MOUNT "$FID1" "$FID2" "$FID3" | while read PATHNAME;
10585         do
10586                 [ "$PATHNAME" = "$DIR/$tfile.$N" ] ||
10587                         error "fid2path pathname $PATHNAME != $DIR/$tfile.$N:"
10588                 N=$((N + 1))
10589         done
10590 }
10591 run_test 154c "lfs path2fid and fid2path multiple arguments"
10592
10593 test_154d() {
10594         remote_mds_nodsh && skip "remote MDS with nodsh" && return
10595         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.5.53) ]] &&
10596                 skip "Need MDS version at least 2.5.53" && return
10597
10598         if remote_mds; then
10599                 nid=$($LCTL list_nids | sed  "s/\./\\\./g")
10600         else
10601                 nid="0@lo"
10602         fi
10603         local proc_ofile="mdt.*.exports.'$nid'.open_files"
10604         local fd
10605         local cmd
10606
10607         rm -f $DIR/$tfile
10608         touch $DIR/$tfile
10609
10610         local fid=$($LFS path2fid $DIR/$tfile)
10611         # Open the file
10612         fd=$(free_fd)
10613         cmd="exec $fd<$DIR/$tfile"
10614         eval $cmd
10615         local fid_list=$(do_facet $SINGLEMDS $LCTL get_param $proc_ofile)
10616         echo "$fid_list" | grep "$fid"
10617         rc=$?
10618
10619         cmd="exec $fd>/dev/null"
10620         eval $cmd
10621         if [ $rc -ne 0 ]; then
10622                 error "FID $fid not found in open files list $fid_list"
10623         fi
10624 }
10625 run_test 154d "Verify open file fid"
10626
10627 test_154e()
10628 {
10629         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.6.50) ]] &&
10630                 skip "Need MDS version at least 2.6.50" && return
10631
10632         if ls -a $MOUNT | grep -q '^\.lustre$'; then
10633                 error ".lustre returned by readdir"
10634         fi
10635 }
10636 run_test 154e ".lustre is not returned by readdir"
10637
10638 test_154f() {
10639         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
10640         # create parent directory on a single MDT to avoid cross-MDT hardlinks
10641         test_mkdir -p -c1 $DIR/$tdir/d
10642         # test dirs inherit from its stripe
10643         mkdir -p $DIR/$tdir/d/foo1 || error "mkdir error"
10644         mkdir -p $DIR/$tdir/d/foo2 || error "mkdir error"
10645         cp /etc/hosts $DIR/$tdir/d/foo1/$tfile
10646         ln $DIR/$tdir/d/foo1/$tfile $DIR/$tdir/d/foo2/link
10647         touch $DIR/f
10648
10649         # get fid of parents
10650         local FID0=$($LFS path2fid $DIR/$tdir/d)
10651         local FID1=$($LFS path2fid $DIR/$tdir/d/foo1)
10652         local FID2=$($LFS path2fid $DIR/$tdir/d/foo2)
10653         local FID3=$($LFS path2fid $DIR)
10654
10655         # check that path2fid --parents returns expected <parent_fid>/name
10656         # 1) test for a directory (single parent)
10657         local parent=$($LFS path2fid --parents $DIR/$tdir/d/foo1)
10658         [ "$parent" == "$FID0/foo1" ] ||
10659                 error "expected parent: $FID0/foo1, got: $parent"
10660
10661         # 2) test for a file with nlink > 1 (multiple parents)
10662         parent=$($LFS path2fid --parents $DIR/$tdir/d/foo1/$tfile)
10663         echo "$parent" | grep -F "$FID1/$tfile" ||
10664                 error "$FID1/$tfile not returned in parent list"
10665         echo "$parent" | grep -F "$FID2/link" ||
10666                 error "$FID2/link not returned in parent list"
10667
10668         # 3) get parent by fid
10669         local file_fid=$($LFS path2fid $DIR/$tdir/d/foo1/$tfile)
10670         parent=$($LFS path2fid --parents $MOUNT/.lustre/fid/$file_fid)
10671         echo "$parent" | grep -F "$FID1/$tfile" ||
10672                 error "$FID1/$tfile not returned in parent list (by fid)"
10673         echo "$parent" | grep -F "$FID2/link" ||
10674                 error "$FID2/link not returned in parent list (by fid)"
10675
10676         # 4) test for entry in root directory
10677         parent=$($LFS path2fid --parents $DIR/f)
10678         echo "$parent" | grep -F "$FID3/f" ||
10679                 error "$FID3/f not returned in parent list"
10680
10681         # 5) test it on root directory
10682         [ -z "$($LFS path2fid --parents $MOUNT 2>/dev/null)" ] ||
10683                 error "$MOUNT should not have parents"
10684
10685         # enable xattr caching and check that linkea is correctly updated
10686         local save="$TMP/$TESTSUITE-$TESTNAME.parameters"
10687         save_lustre_params client "llite.*.xattr_cache" > $save
10688         lctl set_param llite.*.xattr_cache 1
10689
10690         # 6.1) linkea update on rename
10691         mv $DIR/$tdir/d/foo1/$tfile $DIR/$tdir/d/foo2/$tfile.moved
10692
10693         # get parents by fid
10694         parent=$($LFS path2fid --parents $MOUNT/.lustre/fid/$file_fid)
10695         # foo1 should no longer be returned in parent list
10696         echo "$parent" | grep -F "$FID1" &&
10697                 error "$FID1 should no longer be in parent list"
10698         # the new path should appear
10699         echo "$parent" | grep -F "$FID2/$tfile.moved" ||
10700                 error "$FID2/$tfile.moved is not in parent list"
10701
10702         # 6.2) linkea update on unlink
10703         rm -f $DIR/$tdir/d/foo2/link
10704         parent=$($LFS path2fid --parents $MOUNT/.lustre/fid/$file_fid)
10705         # foo2/link should no longer be returned in parent list
10706         echo "$parent" | grep -F "$FID2/link" &&
10707                 error "$FID2/link should no longer be in parent list"
10708         true
10709
10710         rm -f $DIR/f
10711         restore_lustre_params < $save
10712         rm -f $save
10713 }
10714 run_test 154f "get parent fids by reading link ea"
10715
10716 test_154g()
10717 {
10718         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.92) ]] ||
10719                 { skip "Need MDS version at least 2.6.92"; return 0; }
10720         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
10721
10722         mkdir -p $DIR/$tdir
10723         llapi_fid_test -d $DIR/$tdir
10724 }
10725 run_test 154g "various llapi FID tests"
10726
10727 test_155_small_load() {
10728     local temp=$TMP/$tfile
10729     local file=$DIR/$tfile
10730
10731     dd if=/dev/urandom of=$temp bs=6096 count=1 || \
10732         error "dd of=$temp bs=6096 count=1 failed"
10733     cp $temp $file
10734     cancel_lru_locks osc
10735     cmp $temp $file || error "$temp $file differ"
10736
10737     $TRUNCATE $temp 6000
10738     $TRUNCATE $file 6000
10739     cmp $temp $file || error "$temp $file differ (truncate1)"
10740
10741     echo "12345" >>$temp
10742     echo "12345" >>$file
10743     cmp $temp $file || error "$temp $file differ (append1)"
10744
10745     echo "12345" >>$temp
10746     echo "12345" >>$file
10747     cmp $temp $file || error "$temp $file differ (append2)"
10748
10749     rm -f $temp $file
10750     true
10751 }
10752
10753 test_155_big_load() {
10754     remote_ost_nodsh && skip "remote OST with nodsh" && return
10755     local temp=$TMP/$tfile
10756     local file=$DIR/$tfile
10757
10758     free_min_max
10759     local cache_size=$(do_facet ost$((MAXI+1)) \
10760         "awk '/cache/ {sum+=\\\$4} END {print sum}' /proc/cpuinfo")
10761     local large_file_size=$((cache_size * 2))
10762
10763     echo "OSS cache size: $cache_size KB"
10764     echo "Large file size: $large_file_size KB"
10765
10766     [ $MAXV -le $large_file_size ] && \
10767         skip_env "max available OST size needs > $large_file_size KB" && \
10768         return 0
10769
10770     $SETSTRIPE $file -c 1 -i $MAXI || error "$SETSTRIPE $file failed"
10771
10772     dd if=/dev/urandom of=$temp bs=$large_file_size count=1k || \
10773         error "dd of=$temp bs=$large_file_size count=1k failed"
10774     cp $temp $file
10775     ls -lh $temp $file
10776     cancel_lru_locks osc
10777     cmp $temp $file || error "$temp $file differ"
10778
10779     rm -f $temp $file
10780     true
10781 }
10782
10783 save_writethrough() {
10784         local facets=$(get_facets OST)
10785
10786         save_lustre_params $facets "obdfilter.*.writethrough_cache_enable" > $1
10787         save_lustre_params $facets "osd-*.*.writethrough_cache_enable" >> $1
10788 }
10789
10790 test_155a() {
10791         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10792         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
10793         save_writethrough $p
10794
10795         set_cache read on
10796         set_cache writethrough on
10797         test_155_small_load
10798         restore_lustre_params < $p
10799         rm -f $p
10800 }
10801 run_test 155a "Verify small file correctness: read cache:on write_cache:on"
10802
10803 test_155b() {
10804         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10805         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
10806         save_writethrough $p
10807
10808         set_cache read on
10809         set_cache writethrough off
10810         test_155_small_load
10811         restore_lustre_params < $p
10812         rm -f $p
10813 }
10814 run_test 155b "Verify small file correctness: read cache:on write_cache:off"
10815
10816 test_155c() {
10817         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10818         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
10819         save_writethrough $p
10820
10821         set_cache read off
10822         set_cache writethrough on
10823         test_155_small_load
10824         restore_lustre_params < $p
10825         rm -f $p
10826 }
10827 run_test 155c "Verify small file correctness: read cache:off write_cache:on"
10828
10829 test_155d() {
10830         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10831         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
10832         save_writethrough $p
10833
10834         set_cache read off
10835         set_cache writethrough off
10836         test_155_small_load
10837         restore_lustre_params < $p
10838         rm -f $p
10839 }
10840 run_test 155d "Verify small file correctness: read cache:off write_cache:off"
10841
10842 test_155e() {
10843         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10844         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
10845         save_writethrough $p
10846
10847         set_cache read on
10848         set_cache writethrough on
10849         test_155_big_load
10850         restore_lustre_params < $p
10851         rm -f $p
10852 }
10853 run_test 155e "Verify big file correctness: read cache:on write_cache:on"
10854
10855 test_155f() {
10856         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10857         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
10858         save_writethrough $p
10859
10860         set_cache read on
10861         set_cache writethrough off
10862         test_155_big_load
10863         restore_lustre_params < $p
10864         rm -f $p
10865 }
10866 run_test 155f "Verify big file correctness: read cache:on write_cache:off"
10867
10868 test_155g() {
10869         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10870         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
10871         save_writethrough $p
10872
10873         set_cache read off
10874         set_cache writethrough on
10875         test_155_big_load
10876         restore_lustre_params < $p
10877         rm -f $p
10878 }
10879 run_test 155g "Verify big file correctness: read cache:off write_cache:on"
10880
10881 test_155h() {
10882         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10883         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
10884         save_writethrough $p
10885
10886         set_cache read off
10887         set_cache writethrough off
10888         test_155_big_load
10889         restore_lustre_params < $p
10890         rm -f $p
10891 }
10892 run_test 155h "Verify big file correctness: read cache:off write_cache:off"
10893
10894 test_156() {
10895         remote_ost_nodsh && skip "remote OST with nodsh" && return
10896         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10897         local CPAGES=3
10898         local BEFORE
10899         local AFTER
10900         local file="$DIR/$tfile"
10901         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
10902
10903         [ "$(facet_fstype ost1)" = "zfs" -a \
10904            $(lustre_version_code ost1 -lt $(version_code 2.6.93)) ] &&
10905                 skip "LU-1956/LU-2261: stats not implemented on OSD ZFS" &&
10906                 return
10907
10908         save_writethrough $p
10909         roc_hit_init
10910
10911         log "Turn on read and write cache"
10912         set_cache read on
10913         set_cache writethrough on
10914
10915         log "Write data and read it back."
10916         log "Read should be satisfied from the cache."
10917         dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
10918         BEFORE=$(roc_hit)
10919         cancel_lru_locks osc
10920         cat $file >/dev/null
10921         AFTER=$(roc_hit)
10922         if ! let "AFTER - BEFORE == CPAGES"; then
10923                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
10924         else
10925                 log "cache hits:: before: $BEFORE, after: $AFTER"
10926         fi
10927
10928         log "Read again; it should be satisfied from the cache."
10929         BEFORE=$AFTER
10930         cancel_lru_locks osc
10931         cat $file >/dev/null
10932         AFTER=$(roc_hit)
10933         if ! let "AFTER - BEFORE == CPAGES"; then
10934                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
10935         else
10936                 log "cache hits:: before: $BEFORE, after: $AFTER"
10937         fi
10938
10939         log "Turn off the read cache and turn on the write cache"
10940         set_cache read off
10941         set_cache writethrough on
10942
10943         log "Read again; it should be satisfied from the cache."
10944         BEFORE=$(roc_hit)
10945         cancel_lru_locks osc
10946         cat $file >/dev/null
10947         AFTER=$(roc_hit)
10948         if ! let "AFTER - BEFORE == CPAGES"; then
10949                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
10950         else
10951                 log "cache hits:: before: $BEFORE, after: $AFTER"
10952         fi
10953
10954         log "Read again; it should not be satisfied from the cache."
10955         BEFORE=$AFTER
10956         cancel_lru_locks osc
10957         cat $file >/dev/null
10958         AFTER=$(roc_hit)
10959         if ! let "AFTER - BEFORE == 0"; then
10960                 error "IN CACHE: before: $BEFORE, after: $AFTER"
10961         else
10962                 log "cache hits:: before: $BEFORE, after: $AFTER"
10963         fi
10964
10965         log "Write data and read it back."
10966         log "Read should be satisfied from the cache."
10967         dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
10968         BEFORE=$(roc_hit)
10969         cancel_lru_locks osc
10970         cat $file >/dev/null
10971         AFTER=$(roc_hit)
10972         if ! let "AFTER - BEFORE == CPAGES"; then
10973                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
10974         else
10975                 log "cache hits:: before: $BEFORE, after: $AFTER"
10976         fi
10977
10978         log "Read again; it should not be satisfied from the cache."
10979         BEFORE=$AFTER
10980         cancel_lru_locks osc
10981         cat $file >/dev/null
10982         AFTER=$(roc_hit)
10983         if ! let "AFTER - BEFORE == 0"; then
10984                 error "IN CACHE: before: $BEFORE, after: $AFTER"
10985         else
10986                 log "cache hits:: before: $BEFORE, after: $AFTER"
10987         fi
10988
10989         log "Turn off read and write cache"
10990         set_cache read off
10991         set_cache writethrough off
10992
10993         log "Write data and read it back"
10994         log "It should not be satisfied from the cache."
10995         rm -f $file
10996         dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
10997         cancel_lru_locks osc
10998         BEFORE=$(roc_hit)
10999         cat $file >/dev/null
11000         AFTER=$(roc_hit)
11001         if ! let "AFTER - BEFORE == 0"; then
11002                 error_ignore bz20762 "IN CACHE: before: $BEFORE, after: $AFTER"
11003         else
11004                 log "cache hits:: before: $BEFORE, after: $AFTER"
11005         fi
11006
11007         log "Turn on the read cache and turn off the write cache"
11008         set_cache read on
11009         set_cache writethrough off
11010
11011         log "Write data and read it back"
11012         log "It should not be satisfied from the cache."
11013         rm -f $file
11014         dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
11015         BEFORE=$(roc_hit)
11016         cancel_lru_locks osc
11017         cat $file >/dev/null
11018         AFTER=$(roc_hit)
11019         if ! let "AFTER - BEFORE == 0"; then
11020                 error_ignore bz20762 "IN CACHE: before: $BEFORE, after: $AFTER"
11021         else
11022                 log "cache hits:: before: $BEFORE, after: $AFTER"
11023         fi
11024
11025         log "Read again; it should be satisfied from the cache."
11026         BEFORE=$(roc_hit)
11027         cancel_lru_locks osc
11028         cat $file >/dev/null
11029         AFTER=$(roc_hit)
11030         if ! let "AFTER - BEFORE == CPAGES"; then
11031                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
11032         else
11033                 log "cache hits:: before: $BEFORE, after: $AFTER"
11034         fi
11035
11036         rm -f $file
11037         restore_lustre_params < $p
11038         rm -f $p
11039 }
11040 run_test 156 "Verification of tunables"
11041
11042 #Changelogs
11043 cleanup_changelog () {
11044         trap 0
11045         echo "Deregistering changelog client $CL_USER"
11046         do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister $CL_USER
11047 }
11048
11049 err17935 () {
11050         if [[ $MDSCOUNT -gt 1 ]]; then
11051                 error_ignore bz17935 $*
11052         else
11053                 error $*
11054         fi
11055 }
11056
11057 changelog_chmask()
11058 {
11059         local CL_MASK_PARAM="mdd.$MDT0.changelog_mask"
11060
11061         MASK=$(do_facet $SINGLEMDS $LCTL get_param $CL_MASK_PARAM| grep -c "$1")
11062
11063         if [ $MASK -eq 1 ]; then
11064                 do_facet $SINGLEMDS $LCTL set_param $CL_MASK_PARAM="-$1"
11065         else
11066                 do_facet $SINGLEMDS $LCTL set_param $CL_MASK_PARAM="+$1"
11067         fi
11068 }
11069
11070 changelog_extract_field() {
11071         local mdt=$1
11072         local cltype=$2
11073         local file=$3
11074         local identifier=$4
11075
11076         $LFS changelog $mdt | gawk "/$cltype.*$file$/ {
11077                 print gensub(/^.* "$identifier'(\[[^\]]*\]).*$/,"\\1",1)}' |
11078                 tail -1
11079 }
11080
11081 test_160a() {
11082         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11083         remote_mds_nodsh && skip "remote MDS with nodsh" && return
11084         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] ||
11085                 { skip "Need MDS version at least 2.2.0"; return; }
11086
11087         local CL_USERS="mdd.$MDT0.changelog_users"
11088         local GET_CL_USERS="do_facet $SINGLEMDS $LCTL get_param -n $CL_USERS"
11089         CL_USER=$(do_facet $SINGLEMDS $LCTL --device $MDT0 \
11090                 changelog_register -n)
11091         echo "Registered as changelog user $CL_USER"
11092         trap cleanup_changelog EXIT
11093         $GET_CL_USERS | grep -q $CL_USER ||
11094                 error "User $CL_USER not found in changelog_users"
11095
11096         # change something
11097         test_mkdir -p $DIR/$tdir/pics/2008/zachy
11098         touch $DIR/$tdir/pics/2008/zachy/timestamp
11099         cp /etc/hosts $DIR/$tdir/pics/2008/zachy/pic1.jpg
11100         mv $DIR/$tdir/pics/2008/zachy $DIR/$tdir/pics/zach
11101         ln $DIR/$tdir/pics/zach/pic1.jpg $DIR/$tdir/pics/2008/portland.jpg
11102         ln -s $DIR/$tdir/pics/2008/portland.jpg $DIR/$tdir/pics/desktop.jpg
11103         rm $DIR/$tdir/pics/desktop.jpg
11104
11105         $LFS changelog $MDT0 | tail -5
11106
11107         echo "verifying changelog mask"
11108         changelog_chmask "MKDIR"
11109         changelog_chmask "CLOSE"
11110
11111         test_mkdir -p $DIR/$tdir/pics/zach/sofia
11112         echo "zzzzzz" > $DIR/$tdir/pics/zach/file
11113
11114         changelog_chmask "MKDIR"
11115         changelog_chmask "CLOSE"
11116
11117         test_mkdir -p $DIR/$tdir/pics/2008/sofia
11118         echo "zzzzzz" > $DIR/$tdir/pics/zach/file
11119
11120         $LFS changelog $MDT0
11121         MKDIRS=$($LFS changelog $MDT0 | tail -5 | grep -c "MKDIR")
11122         CLOSES=$($LFS changelog $MDT0 | tail -5 | grep -c "CLOSE")
11123         [ $MKDIRS -eq 1 ] || err17935 "MKDIR changelog mask count $DIRS != 1"
11124         [ $CLOSES -eq 1 ] || err17935 "CLOSE changelog mask count $DIRS != 1"
11125
11126         # verify contents
11127         echo "verifying target fid"
11128         fidc=$(changelog_extract_field $MDT0 "CREAT" "timestamp" "t=")
11129         fidf=$($LFS path2fid $DIR/$tdir/pics/zach/timestamp)
11130         [ "$fidc" == "$fidf" ] ||
11131                 err17935 "fid in changelog $fidc != file fid $fidf"
11132         echo "verifying parent fid"
11133         fidc=$(changelog_extract_field $MDT0 "CREAT" "timestamp" "p=")
11134         fidf=$($LFS path2fid $DIR/$tdir/pics/zach)
11135         [ "$fidc" == "$fidf" ] ||
11136                 err17935 "pfid in changelog $fidc != dir fid $fidf"
11137
11138         USER_REC1=$($GET_CL_USERS | awk "\$1 == \"$CL_USER\" {print \$2}")
11139         $LFS changelog_clear $MDT0 $CL_USER $(($USER_REC1 + 5))
11140         USER_REC2=$($GET_CL_USERS | awk "\$1 == \"$CL_USER\" {print \$2}")
11141         echo "verifying user clear: $(( $USER_REC1 + 5 )) == $USER_REC2"
11142         [ $USER_REC2 == $(($USER_REC1 + 5)) ] ||
11143                 err17935 "user index expected $(($USER_REC1 + 5)) is $USER_REC2"
11144
11145         MIN_REC=$($GET_CL_USERS |
11146                 awk 'min == "" || $2 < min {min = $2}; END {print min}')
11147         FIRST_REC=$($LFS changelog $MDT0 | head -n1 | awk '{print $1}')
11148         echo "verifying min purge: $(( $MIN_REC + 1 )) == $FIRST_REC"
11149         [ $FIRST_REC == $(($MIN_REC + 1)) ] ||
11150                 err17935 "first index should be $(($MIN_REC + 1)) is $FIRST_REC"
11151
11152         # LU-3446 changelog index reset on MDT restart
11153         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
11154         CUR_REC1=$($GET_CL_USERS | head -n1 | cut -f3 -d' ')
11155         $LFS changelog_clear $MDT0 $CL_USER 0
11156         stop $SINGLEMDS || error "Fail to stop MDT."
11157         start $SINGLEMDS $MDT_DEV $MDS_MOUNT_OPTS || error "Fail to start MDT."
11158         CUR_REC2=$($GET_CL_USERS | head -n1 | cut -f3 -d' ')
11159         echo "verifying index survives MDT restart: $CUR_REC1 == $CUR_REC2"
11160         [ $CUR_REC1 == $CUR_REC2 ] ||
11161                 err17935 "current index should be $CUR_REC1 is $CUR_REC2"
11162
11163         echo "verifying user deregister"
11164         cleanup_changelog
11165         $GET_CL_USERS | grep -q $CL_USER &&
11166                 error "User $CL_USER still in changelog_users"
11167
11168         USERS=$(( $($GET_CL_USERS | wc -l) - 2 ))
11169         if [ $CL_USER -eq 0 ]; then
11170                 LAST_REC1=$($GET_CL_USERS | head -n1 | cut -f3 -d' ')
11171                 touch $DIR/$tdir/chloe
11172                 LAST_REC2=$($GET_CL_USERS | head -n1 | cut -f3 -d' ')
11173                 echo "verify changelogs are off: $LAST_REC1 == $LAST_REC2"
11174                 [ $LAST_REC1 == $LAST_REC2 ] || error "changelogs not off"
11175         else
11176                 echo "$CL_USER other changelog users; can't verify off"
11177         fi
11178 }
11179 run_test 160a "changelog sanity"
11180
11181 test_160b() { # LU-3587
11182         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11183         remote_mds_nodsh && skip "remote MDS with nodsh" && return
11184         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] ||
11185                 { skip "Need MDS version at least 2.2.0"; return; }
11186
11187         local CL_USERS="mdd.$MDT0.changelog_users"
11188         local GET_CL_USERS="do_facet $SINGLEMDS $LCTL get_param -n $CL_USERS"
11189         CL_USER=$(do_facet $SINGLEMDS $LCTL --device $MDT0 \
11190                 changelog_register -n)
11191         echo "Registered as changelog user $CL_USER"
11192         trap cleanup_changelog EXIT
11193         $GET_CL_USERS | grep -q $CL_USER ||
11194                 error "User $CL_USER not found in changelog_users"
11195
11196         local LONGNAME1=$(str_repeat a 255)
11197         local LONGNAME2=$(str_repeat b 255)
11198
11199         cd $DIR
11200         echo "creating very long named file"
11201         touch $LONGNAME1 || error "create of $LONGNAME1 failed"
11202         echo "moving very long named file"
11203         mv $LONGNAME1 $LONGNAME2
11204
11205         $LFS changelog $MDT0 | grep RENME
11206         rm -f $LONGNAME2
11207         cleanup_changelog
11208 }
11209 run_test 160b "Verify that very long rename doesn't crash in changelog"
11210
11211 test_160c() {
11212         remote_mds_nodsh && skip "remote MDS with nodsh" && return
11213
11214         local rc=0
11215         local server_version=$(lustre_version_code $SINGLEMDS)
11216
11217         [[ $server_version -gt $(version_code 2.5.57) ]] ||
11218                 [[ $server_version -gt $(version_code 2.5.1) &&
11219                    $server_version -lt $(version_code 2.5.50) ]] ||
11220                 { skip "Need MDS version at least 2.5.58 or 2.5.2+"; return; }
11221         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11222
11223         # Registration step
11224         CL_USER=$(do_facet $SINGLEMDS $LCTL --device $MDT0 \
11225                 changelog_register -n)
11226         trap cleanup_changelog EXIT
11227
11228         rm -rf $DIR/$tdir
11229         mkdir -p $DIR/$tdir
11230         $MCREATE $DIR/$tdir/foo_160c
11231         changelog_chmask "TRUNC"
11232         $TRUNCATE $DIR/$tdir/foo_160c 200
11233         changelog_chmask "TRUNC"
11234         $TRUNCATE $DIR/$tdir/foo_160c 199
11235         $LFS changelog $MDT0
11236         TRUNCS=$($LFS changelog $MDT0 | tail -5 | grep -c "TRUNC")
11237         [ $TRUNCS -eq 1 ] || err17935 "TRUNC changelog mask count $TRUNCS != 1"
11238         $LFS changelog_clear $MDT0 $CL_USER 0
11239
11240         # Deregistration step
11241         cleanup_changelog
11242 }
11243 run_test 160c "verify that changelog log catch the truncate event"
11244
11245 test_160d() {
11246         remote_mds_nodsh && skip "remote MDS with nodsh" && return
11247         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
11248
11249         local server_version=$(lustre_version_code mds1)
11250         local CL_MASK_PARAM="mdd.$MDT0.changelog_mask"
11251
11252         [[ $server_version -ge $(version_code 2.7.60) ]] ||
11253                 { skip "Need MDS version at least 2.7.60+"; return; }
11254         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11255
11256         # Registration step
11257         CL_USER=$(do_facet mds1 $LCTL --device $MDT0 \
11258                 changelog_register -n)
11259
11260         trap cleanup_changelog EXIT
11261         mkdir -p $DIR/$tdir/migrate_dir
11262         $LFS changelog_clear $MDT0 $CL_USER 0
11263
11264         $LFS migrate -m 1 $DIR/$tdir/migrate_dir || error "migrate fails"
11265         $LFS changelog $MDT0
11266         MIGRATES=$($LFS changelog $MDT0 | tail -5 | grep -c "MIGRT")
11267         $LFS changelog_clear $MDT0 $CL_USER 0
11268         [ $MIGRATES -eq 1 ] ||
11269                 error "MIGRATE changelog mask count $MIGRATES != 1"
11270
11271         # Deregistration step
11272         cleanup_changelog
11273 }
11274 run_test 160d "verify that changelog log catch the migrate event"
11275
11276 test_160e() {
11277         remote_mds_nodsh && skip "remote MDS with nodsh" && return
11278
11279         # Create a user
11280         CL_USER=$(do_facet $SINGLEMDS $LCTL --device $MDT0 \
11281                 changelog_register -n)
11282         echo "Registered as changelog user $CL_USER"
11283         trap cleanup_changelog EXIT
11284
11285         # Delete a future user (expect fail)
11286         do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister cl77
11287         local rc=$?
11288
11289         if [ $rc -eq 0 ]; then
11290                 error "Deleted non-existant user cl77"
11291         elif [ $rc -ne 2 ]; then
11292                 error "changelog_deregister failed with $rc, " \
11293                         "expected 2 (ENOENT)"
11294         fi
11295
11296         # Clear to a bad index (1 billion should be safe)
11297         $LFS changelog_clear $MDT0 $CL_USER 1000000000
11298         rc=$?
11299
11300         if [ $rc -eq 0 ]; then
11301                 error "Successfully cleared to invalid CL index"
11302         elif [ $rc -ne 22 ]; then
11303                 error "changelog_clear failed with $rc, expected 22 (EINVAL)"
11304         fi
11305 }
11306 run_test 160e "changelog negative testing"
11307
11308 test_161a() {
11309         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11310         test_mkdir -p -c1 $DIR/$tdir
11311         cp /etc/hosts $DIR/$tdir/$tfile
11312         test_mkdir -c1 $DIR/$tdir/foo1
11313         test_mkdir -c1 $DIR/$tdir/foo2
11314         ln $DIR/$tdir/$tfile $DIR/$tdir/foo1/sofia
11315         ln $DIR/$tdir/$tfile $DIR/$tdir/foo2/zachary
11316         ln $DIR/$tdir/$tfile $DIR/$tdir/foo1/luna
11317         ln $DIR/$tdir/$tfile $DIR/$tdir/foo2/thor
11318         local FID=$($LFS path2fid $DIR/$tdir/$tfile | tr -d '[]')
11319         if [ "$($LFS fid2path $DIR $FID | wc -l)" != "5" ]; then
11320                 $LFS fid2path $DIR $FID
11321                 err17935 "bad link ea"
11322         fi
11323     # middle
11324     rm $DIR/$tdir/foo2/zachary
11325     # last
11326     rm $DIR/$tdir/foo2/thor
11327     # first
11328     rm $DIR/$tdir/$tfile
11329     # rename
11330     mv $DIR/$tdir/foo1/sofia $DIR/$tdir/foo2/maggie
11331     if [ "$($LFS fid2path $FSNAME --link 1 $FID)" != "$tdir/foo2/maggie" ]
11332         then
11333         $LFS fid2path $DIR $FID
11334         err17935 "bad link rename"
11335     fi
11336     rm $DIR/$tdir/foo2/maggie
11337
11338         # overflow the EA
11339         local longname=filename_avg_len_is_thirty_two_
11340         createmany -l$DIR/$tdir/foo1/luna $DIR/$tdir/foo2/$longname 1000 ||
11341                 error "failed to hardlink many files"
11342         links=$($LFS fid2path $DIR $FID | wc -l)
11343         echo -n "${links}/1000 links in link EA"
11344         [[ $links -gt 60 ]] ||
11345                 err17935 "expected at least 60 links in link EA"
11346         unlinkmany $DIR/$tdir/foo2/$longname 1000 ||
11347                 error "failed to unlink many hardlinks"
11348 }
11349 run_test 161a "link ea sanity"
11350
11351 test_161b() {
11352         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11353         [ $MDSCOUNT -lt 2 ] && skip "skipping remote directory test" && return
11354         local MDTIDX=1
11355         local remote_dir=$DIR/$tdir/remote_dir
11356
11357         mkdir -p $DIR/$tdir
11358         $LFS mkdir -i $MDTIDX $remote_dir ||
11359                 error "create remote directory failed"
11360
11361         cp /etc/hosts $remote_dir/$tfile
11362         mkdir -p $remote_dir/foo1
11363         mkdir -p $remote_dir/foo2
11364         ln $remote_dir/$tfile $remote_dir/foo1/sofia
11365         ln $remote_dir/$tfile $remote_dir/foo2/zachary
11366         ln $remote_dir/$tfile $remote_dir/foo1/luna
11367         ln $remote_dir/$tfile $remote_dir/foo2/thor
11368
11369         local FID=$($LFS path2fid $remote_dir/$tfile | tr -d '[' |
11370                      tr -d ']')
11371         if [ "$($LFS fid2path $DIR $FID | wc -l)" != "5" ]; then
11372                 $LFS fid2path $DIR $FID
11373                 err17935 "bad link ea"
11374         fi
11375         # middle
11376         rm $remote_dir/foo2/zachary
11377         # last
11378         rm $remote_dir/foo2/thor
11379         # first
11380         rm $remote_dir/$tfile
11381         # rename
11382         mv $remote_dir/foo1/sofia $remote_dir/foo2/maggie
11383         local link_path=$($LFS fid2path $FSNAME --link 1 $FID)
11384         if [ "$DIR/$link_path" != "$remote_dir/foo2/maggie" ]; then
11385                 $LFS fid2path $DIR $FID
11386                 err17935 "bad link rename"
11387         fi
11388         rm $remote_dir/foo2/maggie
11389
11390         # overflow the EA
11391         local longname=filename_avg_len_is_thirty_two_
11392         createmany -l$remote_dir/foo1/luna $remote_dir/foo2/$longname 1000 ||
11393                 error "failed to hardlink many files"
11394         links=$($LFS fid2path $DIR $FID | wc -l)
11395         echo -n "${links}/1000 links in link EA"
11396         [[ ${links} -gt 60 ]] ||
11397                 err17935 "expected at least 60 links in link EA"
11398         unlinkmany $remote_dir/foo2/$longname 1000 ||
11399         error "failed to unlink many hardlinks"
11400 }
11401 run_test 161b "link ea sanity under remote directory"
11402
11403 test_161c() {
11404         remote_mds_nodsh && skip "remote MDS with nodsh" && return
11405         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11406         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.1.5) ]] &&
11407                 skip "Need MDS version at least 2.1.5" && return
11408
11409         # define CLF_RENAME_LAST 0x0001
11410         # rename overwrite a target having nlink = 1 (changelog flag 0x1)
11411         CL_USER=$(do_facet $SINGLEMDS $LCTL --device $MDT0 \
11412                 changelog_register -n)
11413
11414         trap cleanup_changelog EXIT
11415         rm -rf $DIR/$tdir
11416         mkdir -p $DIR/$tdir
11417         touch $DIR/$tdir/foo_161c
11418         touch $DIR/$tdir/bar_161c
11419         mv -f $DIR/$tdir/foo_161c $DIR/$tdir/bar_161c
11420         $LFS changelog $MDT0 | grep RENME
11421         local flags=$($LFS changelog $MDT0 | grep RENME | tail -1 | \
11422                 cut -f5 -d' ')
11423         $LFS changelog_clear $MDT0 $CL_USER 0
11424         if [ x$flags != "x0x1" ]; then
11425                 error "flag $flags is not 0x1"
11426         fi
11427         echo "rename overwrite a target having nlink = 1," \
11428                 "changelog record has flags of $flags"
11429
11430         # rename overwrite a target having nlink > 1 (changelog flag 0x0)
11431         touch $DIR/$tdir/foo_161c
11432         touch $DIR/$tdir/bar_161c
11433         ln $DIR/$tdir/bar_161c $DIR/$tdir/foobar_161c
11434         mv -f $DIR/$tdir/foo_161c $DIR/$tdir/bar_161c
11435         $LFS changelog $MDT0 | grep RENME
11436         flags=$($LFS changelog $MDT0 | grep RENME | tail -1 | cut -f5 -d' ')
11437         $LFS changelog_clear $MDT0 $CL_USER 0
11438         if [ x$flags != "x0x0" ]; then
11439                 error "flag $flags is not 0x0"
11440         fi
11441         echo "rename overwrite a target having nlink > 1," \
11442                 "changelog record has flags of $flags"
11443
11444         # rename doesn't overwrite a target (changelog flag 0x0)
11445         touch $DIR/$tdir/foo_161c
11446         mv -f $DIR/$tdir/foo_161c $DIR/$tdir/foo2_161c
11447         $LFS changelog $MDT0 | grep RENME
11448         flags=$($LFS changelog $MDT0 | grep RENME | tail -1 | cut -f5 -d' ')
11449         $LFS changelog_clear $MDT0 $CL_USER 0
11450         if [ x$flags != "x0x0" ]; then
11451                 error "flag $flags is not 0x0"
11452         fi
11453         echo "rename doesn't overwrite a target," \
11454                 "changelog record has flags of $flags"
11455
11456         # define CLF_UNLINK_LAST 0x0001
11457         # unlink a file having nlink = 1 (changelog flag 0x1)
11458         rm -f $DIR/$tdir/foo2_161c
11459         $LFS changelog $MDT0 | grep UNLNK
11460         flags=$($LFS changelog $MDT0 | grep UNLNK | tail -1 | cut -f5 -d' ')
11461         $LFS changelog_clear $MDT0 $CL_USER 0
11462         if [ x$flags != "x0x1" ]; then
11463                 error "flag $flags is not 0x1"
11464         fi
11465         echo "unlink a file having nlink = 1," \
11466                 "changelog record has flags of $flags"
11467
11468         # unlink a file having nlink > 1 (changelog flag 0x0)
11469         ln -f $DIR/$tdir/bar_161c $DIR/$tdir/foobar_161c
11470         rm -f $DIR/$tdir/foobar_161c
11471         $LFS changelog $MDT0 | grep UNLNK
11472         flags=$($LFS changelog $MDT0 | grep UNLNK | tail -1 | cut -f5 -d' ')
11473         $LFS changelog_clear $MDT0 $CL_USER 0
11474         if [ x$flags != "x0x0" ]; then
11475                 error "flag $flags is not 0x0"
11476         fi
11477         echo "unlink a file having nlink > 1," \
11478                 "changelog record has flags of $flags"
11479         cleanup_changelog
11480 }
11481 run_test 161c "check CL_RENME[UNLINK] changelog record flags"
11482
11483 test_161d() {
11484         local user
11485         local pid
11486         local fid
11487
11488         # cleanup previous run
11489         rm -rf $DIR/$tdir/$tfile
11490
11491         user=$(do_facet $SINGLEMDS $LCTL --device $MDT0 \
11492                 changelog_register -n)
11493         [[ $? -eq 0 ]] || error "changelog_register failed"
11494
11495         # work in a standalone dir to avoid locking on $DIR/$MOUNT to
11496         # interfer with $MOUNT/.lustre/fid/ access
11497         mkdir $DIR/$tdir
11498         [[ $? -eq 0 ]] || error "mkdir failed"
11499
11500         #define OBD_FAIL_LLITE_CREATE_NODE_PAUSE 0x140c | OBD_FAIL_ONCE
11501         $LCTL set_param fail_loc=0x8000140c
11502         # 5s pause
11503         $LCTL set_param fail_val=5
11504
11505         # create file
11506         echo foofoo > $DIR/$tdir/$tfile &
11507         pid=$!
11508
11509         # wait for create to be delayed
11510         sleep 2
11511
11512         ps -p $pid
11513         [[ $? -eq 0 ]] || error "create should be blocked"
11514
11515         local tempfile=$(mktemp)
11516         fid=$(changelog_extract_field $MDT0 "CREAT" "$tfile" "t=")
11517         cat $MOUNT/.lustre/fid/$fid 2>/dev/null >$tempfile || error "cat failed"
11518         # some delay may occur during ChangeLog publishing and file read just
11519         # above, that could allow file write to happen finally
11520         [[ -s $tempfile ]] && echo "file should be empty"
11521
11522         $LCTL set_param fail_loc=0
11523
11524         wait $pid
11525         [[ $? -eq 0 ]] || error "create failed"
11526
11527         $LFS changelog_clear $MDT0 $user 0
11528         do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister $user
11529 }
11530 run_test 161d "create with concurrent .lustre/fid access"
11531
11532 check_path() {
11533     local expected=$1
11534     shift
11535     local fid=$2
11536
11537     local path=$(${LFS} fid2path $*)
11538     # Remove the '//' indicating a remote directory
11539     path=$(echo $path | sed 's#//#/#g')
11540     RC=$?
11541
11542     if [ $RC -ne 0 ]; then
11543         err17935 "path looked up of $expected failed. Error $RC"
11544         return $RC
11545     elif [ "${path}" != "${expected}" ]; then
11546         err17935 "path looked up \"${path}\" instead of \"${expected}\""
11547         return 2
11548     fi
11549     echo "fid $fid resolves to path $path (expected $expected)"
11550 }
11551
11552 test_162a() { # was test_162
11553         # Make changes to filesystem
11554         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11555         test_mkdir -p -c1 $DIR/$tdir/d2
11556         touch $DIR/$tdir/d2/$tfile
11557         touch $DIR/$tdir/d2/x1
11558         touch $DIR/$tdir/d2/x2
11559         test_mkdir -p -c1 $DIR/$tdir/d2/a/b/c
11560         test_mkdir -p -c1 $DIR/$tdir/d2/p/q/r
11561         # regular file
11562         FID=$($LFS path2fid $DIR/$tdir/d2/$tfile | tr -d '[]')
11563         check_path "$tdir/d2/$tfile" $FSNAME $FID --link 0 ||
11564                 error "check path $tdir/d2/$tfile failed"
11565
11566         # softlink
11567         ln -s $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/p/q/r/slink
11568         FID=$($LFS path2fid $DIR/$tdir/d2/p/q/r/slink | tr -d '[]')
11569         check_path "$tdir/d2/p/q/r/slink" $FSNAME $FID --link 0 ||
11570                 error "check path $tdir/d2/p/q/r/slink failed"
11571
11572         # softlink to wrong file
11573         ln -s /this/is/garbage $DIR/$tdir/d2/p/q/r/slink.wrong
11574         FID=$($LFS path2fid $DIR/$tdir/d2/p/q/r/slink.wrong | tr -d '[]')
11575         check_path "$tdir/d2/p/q/r/slink.wrong" $FSNAME $FID --link 0 ||
11576                 error "check path $tdir/d2/p/q/r/slink.wrong failed"
11577
11578         # hardlink
11579         ln $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/p/q/r/hlink
11580         mv $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/a/b/c/new_file
11581         FID=$($LFS path2fid $DIR/$tdir/d2/a/b/c/new_file | tr -d '[]')
11582         # fid2path dir/fsname should both work
11583         check_path "$tdir/d2/a/b/c/new_file" $FSNAME $FID --link 1 ||
11584                 error "check path $tdir/d2/a/b/c/new_file failed"
11585         check_path "$DIR/$tdir/d2/p/q/r/hlink" $DIR $FID --link 0 ||
11586                 error "check path $DIR/$tdir/d2/p/q/r/hlink failed"
11587
11588         # hardlink count: check that there are 2 links
11589         # Doesnt work with CMD yet: 17935
11590         ${LFS} fid2path $DIR $FID | wc -l | grep -q 2 || \
11591                 err17935 "expected 2 links"
11592
11593         # hardlink indexing: remove the first link
11594         rm $DIR/$tdir/d2/p/q/r/hlink
11595         check_path "$tdir/d2/a/b/c/new_file" $FSNAME $FID --link 0 ||
11596                 error "check path $DIR/$tdir/d2/a/b/c/new_file failed"
11597
11598         return 0
11599 }
11600 run_test 162a "path lookup sanity"
11601
11602 test_162b() {
11603         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11604         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
11605
11606         mkdir $DIR/$tdir
11607         $LFS setdirstripe -i0 -c$MDSCOUNT -t all_char $DIR/$tdir/striped_dir ||
11608                                 error "create striped dir failed"
11609
11610         local FID=$($LFS getdirstripe $DIR/$tdir/striped_dir |
11611                                         tail -n 1 | awk '{print $2}')
11612         stat $MOUNT/.lustre/fid/$FID && error "sub_stripe can be accessed"
11613
11614         touch $DIR/$tdir/striped_dir/f{0..4} || error "touch f0..4 failed"
11615         mkdir $DIR/$tdir/striped_dir/d{0..4} || error "mkdir d0..4 failed"
11616
11617         # regular file
11618         for ((i=0;i<5;i++)); do
11619                 FID=$($LFS path2fid $DIR/$tdir/striped_dir/f$i | tr -d '[]') ||
11620                         error "get fid for f$i failed"
11621                 check_path "$tdir/striped_dir/f$i" $FSNAME $FID --link 0 ||
11622                         error "check path $tdir/striped_dir/f$i failed"
11623
11624                 FID=$($LFS path2fid $DIR/$tdir/striped_dir/d$i | tr -d '[]') ||
11625                         error "get fid for d$i failed"
11626                 check_path "$tdir/striped_dir/d$i" $FSNAME $FID --link 0 ||
11627                         error "check path $tdir/striped_dir/d$i failed"
11628         done
11629
11630         return 0
11631 }
11632 run_test 162b "striped directory path lookup sanity"
11633
11634 # LU-4239: Verify fid2path works with paths 100 or more directories deep
11635 test_162c() {
11636         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.51) ]] &&
11637                 skip "Need MDS version at least 2.7.51" && return
11638         test_mkdir $DIR/$tdir.local
11639         test_mkdir $DIR/$tdir.remote
11640         local lpath=$tdir.local
11641         local rpath=$tdir.remote
11642
11643         for ((i = 0; i <= 101; i++)); do
11644                 lpath="$lpath/$i"
11645                 mkdir $DIR/$lpath
11646                 FID=$($LFS path2fid $DIR/$lpath | tr -d '[]') ||
11647                         error "get fid for local directory $DIR/$lpath failed"
11648                 check_path "$DIR/$lpath" $MOUNT $FID --link 0 ||
11649                         error "check path for local directory $DIR/$lpath failed"
11650
11651                 rpath="$rpath/$i"
11652                 test_mkdir $DIR/$rpath
11653                 FID=$($LFS path2fid $DIR/$rpath | tr -d '[]') ||
11654                         error "get fid for remote directory $DIR/$rpath failed"
11655                 check_path "$DIR/$rpath" $MOUNT $FID --link 0 ||
11656                         error "check path for remote directory $DIR/$rpath failed"
11657         done
11658
11659         return 0
11660 }
11661 run_test 162c "fid2path works with paths 100 or more directories deep"
11662
11663 test_169() {
11664         # do directio so as not to populate the page cache
11665         log "creating a 10 Mb file"
11666         $MULTIOP $DIR/$tfile oO_CREAT:O_DIRECT:O_RDWR:w$((10*1048576))c || error "multiop failed while creating a file"
11667         log "starting reads"
11668         dd if=$DIR/$tfile of=/dev/null bs=4096 &
11669         log "truncating the file"
11670         $MULTIOP $DIR/$tfile oO_TRUNC:c || error "multiop failed while truncating the file"
11671         log "killing dd"
11672         kill %+ || true # reads might have finished
11673         echo "wait until dd is finished"
11674         wait
11675         log "removing the temporary file"
11676         rm -rf $DIR/$tfile || error "tmp file removal failed"
11677 }
11678 run_test 169 "parallel read and truncate should not deadlock"
11679
11680 test_170() {
11681         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11682         $LCTL clear     # bug 18514
11683         $LCTL debug_daemon start $TMP/${tfile}_log_good
11684         touch $DIR/$tfile
11685         $LCTL debug_daemon stop
11686         sed -e "s/^...../a/g" $TMP/${tfile}_log_good > $TMP/${tfile}_log_bad ||
11687                error "sed failed to read log_good"
11688
11689         $LCTL debug_daemon start $TMP/${tfile}_log_good
11690         rm -rf $DIR/$tfile
11691         $LCTL debug_daemon stop
11692
11693         $LCTL df $TMP/${tfile}_log_bad > $TMP/${tfile}_log_bad.out 2>&1 ||
11694                error "lctl df log_bad failed"
11695
11696         local bad_line=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $9}')
11697         local good_line1=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $5}')
11698
11699         $LCTL df $TMP/${tfile}_log_good > $TMP/${tfile}_log_good.out 2>&1
11700         local good_line2=$(tail -n 1 $TMP/${tfile}_log_good.out | awk '{print $5}')
11701
11702         [ "$bad_line" ] && [ "$good_line1" ] && [ "$good_line2" ] ||
11703                 error "bad_line good_line1 good_line2 are empty"
11704
11705         cat $TMP/${tfile}_log_good >> $TMP/${tfile}_logs_corrupt
11706         cat $TMP/${tfile}_log_bad >> $TMP/${tfile}_logs_corrupt
11707         cat $TMP/${tfile}_log_good >> $TMP/${tfile}_logs_corrupt
11708
11709         $LCTL df $TMP/${tfile}_logs_corrupt > $TMP/${tfile}_log_bad.out 2>&1
11710         local bad_line_new=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $9}')
11711         local good_line_new=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $5}')
11712
11713         [ "$bad_line_new" ] && [ "$good_line_new" ] ||
11714                 error "bad_line_new good_line_new are empty"
11715
11716         local expected_good=$((good_line1 + good_line2*2))
11717
11718         rm -f $TMP/${tfile}*
11719         # LU-231, short malformed line may not be counted into bad lines
11720         if [ $bad_line -ne $bad_line_new ] &&
11721                    [ $bad_line -ne $((bad_line_new - 1)) ]; then
11722                 error "expected $bad_line bad lines, but got $bad_line_new"
11723                 return 1
11724         fi
11725
11726         if [ $expected_good -ne $good_line_new ]; then
11727                 error "expected $expected_good good lines, but got $good_line_new"
11728                 return 2
11729         fi
11730         true
11731 }
11732 run_test 170 "test lctl df to handle corrupted log ====================="
11733
11734 test_171() { # bug20592
11735         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11736 #define OBD_FAIL_PTLRPC_DUMP_LOG         0x50e
11737         $LCTL set_param fail_loc=0x50e
11738         $LCTL set_param fail_val=3000
11739         multiop_bg_pause $DIR/$tfile O_s || true
11740         local MULTIPID=$!
11741         kill -USR1 $MULTIPID
11742         # cause log dump
11743         sleep 3
11744         wait $MULTIPID
11745         if dmesg | grep "recursive fault"; then
11746                 error "caught a recursive fault"
11747         fi
11748         $LCTL set_param fail_loc=0
11749         true
11750 }
11751 run_test 171 "test libcfs_debug_dumplog_thread stuck in do_exit() ======"
11752
11753 # it would be good to share it with obdfilter-survey/iokit-libecho code
11754 setup_obdecho_osc () {
11755         local rc=0
11756         local ost_nid=$1
11757         local obdfilter_name=$2
11758         echo "Creating new osc for $obdfilter_name on $ost_nid"
11759         # make sure we can find loopback nid
11760         $LCTL add_uuid $ost_nid $ost_nid >/dev/null 2>&1
11761
11762         [ $rc -eq 0 ] && { $LCTL attach osc ${obdfilter_name}_osc     \
11763                            ${obdfilter_name}_osc_UUID || rc=2; }
11764         [ $rc -eq 0 ] && { $LCTL --device ${obdfilter_name}_osc setup \
11765                            ${obdfilter_name}_UUID  $ost_nid || rc=3; }
11766         return $rc
11767 }
11768
11769 cleanup_obdecho_osc () {
11770         local obdfilter_name=$1
11771         $LCTL --device ${obdfilter_name}_osc cleanup >/dev/null
11772         $LCTL --device ${obdfilter_name}_osc detach  >/dev/null
11773         return 0
11774 }
11775
11776 obdecho_test() {
11777         local OBD=$1
11778         local node=$2
11779         local pages=${3:-64}
11780         local rc=0
11781         local id
11782
11783         local count=10
11784         local obd_size=$(get_obd_size $node $OBD)
11785         local page_size=$(get_page_size $node)
11786         if [[ -n "$obd_size" ]]; then
11787                 local new_count=$((obd_size / (pages * page_size / 1024)))
11788                 [[ $new_count -ge $count ]] || count=$new_count
11789         fi
11790
11791         do_facet $node "$LCTL attach echo_client ec ec_uuid" || rc=1
11792         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec setup $OBD" ||
11793                            rc=2; }
11794         if [ $rc -eq 0 ]; then
11795             id=$(do_facet $node "$LCTL --device ec create 1"  | awk '/object id/ {print $6}')
11796             [ ${PIPESTATUS[0]} -eq 0 -a -n "$id" ] || rc=3
11797         fi
11798         echo "New object id is $id"
11799         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec getattr $id" ||
11800                            rc=4; }
11801         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec "                 \
11802                            "test_brw $count w v $pages $id" || rc=4; }
11803         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec destroy $id 1" ||
11804                            rc=4; }
11805         [ $rc -eq 0 -o $rc -gt 2 ] && { do_facet $node "$LCTL --device ec "    \
11806                                         "cleanup" || rc=5; }
11807         [ $rc -eq 0 -o $rc -gt 1 ] && { do_facet $node "$LCTL --device ec "    \
11808                                         "detach" || rc=6; }
11809         [ $rc -ne 0 ] && echo "obecho_create_test failed: $rc"
11810         return $rc
11811 }
11812
11813 test_180a() {
11814         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11815         remote_ost_nodsh && skip "remote OST with nodsh" && return
11816         local rc=0
11817         local rmmod_local=0
11818
11819         if ! module_loaded obdecho; then
11820             load_module obdecho/obdecho
11821             rmmod_local=1
11822         fi
11823
11824         local osc=$($LCTL dl | grep -v mdt | awk '$3 == "osc" {print $4; exit}')
11825         local host=$(lctl get_param -n osc.$osc.import |
11826                              awk '/current_connection:/ {print $2}' )
11827         local target=$(lctl get_param -n osc.$osc.import |
11828                              awk '/target:/ {print $2}' )
11829         target=${target%_UUID}
11830
11831         [[ -n $target ]]  && { setup_obdecho_osc $host $target || rc=1; } || rc=1
11832         [ $rc -eq 0 ] && { obdecho_test ${target}_osc client || rc=2; }
11833         [[ -n $target ]] && cleanup_obdecho_osc $target
11834         [ $rmmod_local -eq 1 ] && rmmod obdecho
11835         return $rc
11836 }
11837 run_test 180a "test obdecho on osc"
11838
11839 test_180b() {
11840         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11841         remote_ost_nodsh && skip "remote OST with nodsh" && return
11842         local rc=0
11843         local rmmod_remote=0
11844
11845         do_rpc_nodes $(facet_active_host ost1) load_module obdecho/obdecho &&
11846                 rmmod_remote=true || error "failed to load module obdecho"
11847         target=$(do_facet ost1 $LCTL dl | awk '/obdfilter/ {print $4;exit}')
11848         [[ -n $target ]] && { obdecho_test $target ost1 || rc=1; }
11849         $rmmod_remote && do_facet ost1 "rmmod obdecho"
11850         return $rc
11851 }
11852 run_test 180b "test obdecho directly on obdfilter"
11853
11854 test_180c() { # LU-2598
11855         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11856         remote_ost_nodsh && skip "remote OST with nodsh" && return
11857         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.0) ]] &&
11858                 skip "Need MDS version at least 2.4.0" && return
11859
11860         local rc=0
11861         local rmmod_remote=false
11862         local pages=16384 # 64MB bulk I/O RPC size
11863         local target
11864
11865         do_rpc_nodes $(facet_active_host ost1) load_module obdecho/obdecho &&
11866                 rmmod_remote=true || error "failed to load module obdecho"
11867
11868         target=$(do_facet ost1 $LCTL dl | awk '/obdfilter/ { print $4 }' |
11869                 head -n1)
11870         if [ -n "$target" ]; then
11871                 obdecho_test "$target" ost1 "$pages" || rc=${PIPESTATUS[0]}
11872         else
11873                 echo "there is no obdfilter target on ost1"
11874                 rc=2
11875         fi
11876         $rmmod_remote && do_facet ost1 "rmmod obdecho" || true
11877         return $rc
11878 }
11879 run_test 180c "test huge bulk I/O size on obdfilter, don't LASSERT"
11880
11881 test_181() { # bug 22177
11882         test_mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
11883         # create enough files to index the directory
11884         createmany -o $DIR/$tdir/foobar 4000
11885         # print attributes for debug purpose
11886         lsattr -d .
11887         # open dir
11888         multiop_bg_pause $DIR/$tdir D_Sc || return 1
11889         MULTIPID=$!
11890         # remove the files & current working dir
11891         unlinkmany $DIR/$tdir/foobar 4000
11892         rmdir $DIR/$tdir
11893         kill -USR1 $MULTIPID
11894         wait $MULTIPID
11895         stat $DIR/$tdir && error "open-unlinked dir was not removed!"
11896         return 0
11897 }
11898 run_test 181 "Test open-unlinked dir ========================"
11899
11900 test_182() {
11901         local fcount=1000
11902         local tcount=10
11903
11904         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
11905
11906         $LCTL set_param mdc.*.rpc_stats=clear
11907
11908         for (( i = 0; i < $tcount; i++ )) ; do
11909                 mkdir $DIR/$tdir/$i
11910         done
11911
11912         for (( i = 0; i < $tcount; i++ )) ; do
11913                 createmany -o $DIR/$tdir/$i/f- $fcount &
11914         done
11915         wait
11916
11917         for (( i = 0; i < $tcount; i++ )) ; do
11918                 unlinkmany $DIR/$tdir/$i/f- $fcount &
11919         done
11920         wait
11921
11922         $LCTL get_param mdc.*.rpc_stats
11923
11924         rm -rf $DIR/$tdir
11925 }
11926 run_test 182 "Test parallel modify metadata operations ================"
11927
11928 test_183() { # LU-2275
11929         remote_mds_nodsh && skip "remote MDS with nodsh" && return
11930         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.56) ]] &&
11931                 skip "Need MDS version at least 2.3.56" && return
11932
11933         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11934         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
11935         echo aaa > $DIR/$tdir/$tfile
11936
11937 #define OBD_FAIL_MDS_NEGATIVE_POSITIVE  0x148
11938         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x148
11939
11940         ls -l $DIR/$tdir && error "ls succeeded, should have failed"
11941         cat $DIR/$tdir/$tfile && error "cat succeeded, should have failed"
11942
11943         do_facet $SINGLEMDS $LCTL set_param fail_loc=0
11944
11945         # Flush negative dentry cache
11946         touch $DIR/$tdir/$tfile
11947
11948         # We are not checking for any leaked references here, they'll
11949         # become evident next time we do cleanup with module unload.
11950         rm -rf $DIR/$tdir
11951 }
11952 run_test 183 "No crash or request leak in case of strange dispositions ========"
11953
11954 # test suite 184 is for LU-2016, LU-2017
11955 test_184a() {
11956         check_swap_layouts_support && return 0
11957
11958         dir0=$DIR/$tdir/$testnum
11959         test_mkdir -p -c1 $dir0 || error "creating dir $dir0"
11960         ref1=/etc/passwd
11961         ref2=/etc/group
11962         file1=$dir0/f1
11963         file2=$dir0/f2
11964         $SETSTRIPE -c1 $file1
11965         cp $ref1 $file1
11966         $SETSTRIPE -c2 $file2
11967         cp $ref2 $file2
11968         gen1=$($GETSTRIPE -g $file1)
11969         gen2=$($GETSTRIPE -g $file2)
11970
11971         $LFS swap_layouts $file1 $file2 || error "swap of file layout failed"
11972         gen=$($GETSTRIPE -g $file1)
11973         [[ $gen1 != $gen ]] ||
11974                 "Layout generation on $file1 does not change"
11975         gen=$($GETSTRIPE -g $file2)
11976         [[ $gen2 != $gen ]] ||
11977                 "Layout generation on $file2 does not change"
11978
11979         cmp $ref1 $file2 || error "content compare failed ($ref1 != $file2)"
11980         cmp $ref2 $file1 || error "content compare failed ($ref2 != $file1)"
11981 }
11982 run_test 184a "Basic layout swap"
11983
11984 test_184b() {
11985         check_swap_layouts_support && return 0
11986
11987         dir0=$DIR/$tdir/$testnum
11988         mkdir -p $dir0 || error "creating dir $dir0"
11989         file1=$dir0/f1
11990         file2=$dir0/f2
11991         file3=$dir0/f3
11992         dir1=$dir0/d1
11993         dir2=$dir0/d2
11994         mkdir $dir1 $dir2
11995         $SETSTRIPE -c1 $file1
11996         $SETSTRIPE -c2 $file2
11997         $SETSTRIPE -c1 $file3
11998         chown $RUNAS_ID $file3
11999         gen1=$($GETSTRIPE -g $file1)
12000         gen2=$($GETSTRIPE -g $file2)
12001
12002         $LFS swap_layouts $dir1 $dir2 &&
12003                 error "swap of directories layouts should fail"
12004         $LFS swap_layouts $dir1 $file1 &&
12005                 error "swap of directory and file layouts should fail"
12006         $RUNAS $LFS swap_layouts $file1 $file2 &&
12007                 error "swap of file we cannot write should fail"
12008         $LFS swap_layouts $file1 $file3 &&
12009                 error "swap of file with different owner should fail"
12010         /bin/true # to clear error code
12011 }
12012 run_test 184b "Forbidden layout swap (will generate errors)"
12013
12014 test_184c() {
12015         local cmpn_arg=$(cmp -n 2>&1 | grep "invalid option")
12016         [ -n "$cmpn_arg" ] && skip_env "cmp does not support -n" && return
12017         check_swap_layouts_support && return 0
12018
12019         local dir0=$DIR/$tdir/$testnum
12020         mkdir -p $dir0 || error "creating dir $dir0"
12021
12022         local ref1=$dir0/ref1
12023         local ref2=$dir0/ref2
12024         local file1=$dir0/file1
12025         local file2=$dir0/file2
12026         # create a file large enough for the concurrent test
12027         dd if=/dev/urandom of=$ref1 bs=1M count=$((RANDOM % 50 + 20))
12028         dd if=/dev/urandom of=$ref2 bs=1M count=$((RANDOM % 50 + 20))
12029         echo "ref file size: ref1($(stat -c %s $ref1))," \
12030              "ref2($(stat -c %s $ref2))"
12031
12032         cp $ref2 $file2
12033         dd if=$ref1 of=$file1 bs=16k &
12034         local DD_PID=$!
12035
12036         # Make sure dd starts to copy file
12037         while [ ! -f $file1 ]; do sleep 0.1; done
12038
12039         $LFS swap_layouts $file1 $file2
12040         local rc=$?
12041         wait $DD_PID
12042         [[ $? == 0 ]] || error "concurrent write on $file1 failed"
12043         [[ $rc == 0 ]] || error "swap of $file1 and $file2 failed"
12044
12045         # how many bytes copied before swapping layout
12046         local copied=$(stat -c %s $file2)
12047         local remaining=$(stat -c %s $ref1)
12048         remaining=$((remaining - copied))
12049         echo "Copied $copied bytes before swapping layout..."
12050
12051         cmp -n $copied $file1 $ref2 | grep differ &&
12052                 error "Content mismatch [0, $copied) of ref2 and file1"
12053         cmp -n $copied $file2 $ref1 ||
12054                 error "Content mismatch [0, $copied) of ref1 and file2"
12055         cmp -i $copied:$copied -n $remaining $file1 $ref1 ||
12056                 error "Content mismatch [$copied, EOF) of ref1 and file1"
12057
12058         # clean up
12059         rm -f $ref1 $ref2 $file1 $file2
12060 }
12061 run_test 184c "Concurrent write and layout swap"
12062
12063 test_184d() {
12064         check_swap_layouts_support && return 0
12065         [ -z "$(which getfattr 2>/dev/null)" ] &&
12066                 skip "no getfattr command" && return 0
12067
12068         local file1=$DIR/$tdir/$tfile-1
12069         local file2=$DIR/$tdir/$tfile-2
12070         local file3=$DIR/$tdir/$tfile-3
12071         local lovea1
12072         local lovea2
12073
12074         mkdir -p $DIR/$tdir
12075         touch $file1 || error "create $file1 failed"
12076         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file2 ||
12077                 error "create $file2 failed"
12078         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file3 ||
12079                 error "create $file3 failed"
12080         lovea1=$(get_layout_param $file1)
12081
12082         $LFS swap_layouts $file2 $file3 ||
12083                 error "swap $file2 $file3 layouts failed"
12084         $LFS swap_layouts $file1 $file2 ||
12085                 error "swap $file1 $file2 layouts failed"
12086
12087         lovea2=$(get_layout_param $file2)
12088         echo "$lovea1"
12089         echo "$lovea2"
12090         [ "$lovea1" == "$lovea2" ] || error "lovea $lovea1 != $lovea2"
12091
12092         lovea1=$(getfattr -n trusted.lov $file1 | grep ^trusted)
12093         [[ -z "$lovea1" ]] || error "$file1 shouldn't have lovea"
12094 }
12095 run_test 184d "allow stripeless layouts swap"
12096
12097 test_184e() {
12098         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.94) ]] ||
12099                 { skip "Need MDS version at least 2.6.94"; return 0; }
12100         check_swap_layouts_support && return 0
12101         [ -z "$(which getfattr 2>/dev/null)" ] &&
12102                 skip "no getfattr command" && return 0
12103
12104         local file1=$DIR/$tdir/$tfile-1
12105         local file2=$DIR/$tdir/$tfile-2
12106         local file3=$DIR/$tdir/$tfile-3
12107         local lovea
12108
12109         mkdir -p $DIR/$tdir
12110         touch $file1 || error "create $file1 failed"
12111         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file2 ||
12112                 error "create $file2 failed"
12113         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file3 ||
12114                 error "create $file3 failed"
12115
12116         $LFS swap_layouts $file1 $file2 ||
12117                 error "swap $file1 $file2 layouts failed"
12118
12119         lovea=$(getfattr -n trusted.lov $file1 | grep ^trusted)
12120         [[ -z "$lovea" ]] || error "$file1 shouldn't have lovea"
12121
12122         echo 123 > $file1 || error "Should be able to write into $file1"
12123
12124         $LFS swap_layouts $file1 $file3 ||
12125                 error "swap $file1 $file3 layouts failed"
12126
12127         echo 123 > $file1 || error "Should be able to write into $file1"
12128
12129         rm -rf $file1 $file2 $file3
12130 }
12131 run_test 184e "Recreate layout after stripeless layout swaps"
12132
12133 test_185() { # LU-2441
12134         # LU-3553 - no volatile file support in old servers
12135         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.60) ]] ||
12136                 { skip "Need MDS version at least 2.3.60"; return 0; }
12137
12138         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
12139         touch $DIR/$tdir/spoo
12140         local mtime1=$(stat -c "%Y" $DIR/$tdir)
12141         local fid=$($MULTIOP $DIR/$tdir VFw4096c) ||
12142                 error "cannot create/write a volatile file"
12143         [ "$FILESET" == "" ] &&
12144         $CHECKSTAT -t file $MOUNT/.lustre/fid/$fid 2>/dev/null &&
12145                 error "FID is still valid after close"
12146
12147         multiop_bg_pause $DIR/$tdir vVw4096_c
12148         local multi_pid=$!
12149
12150         local OLD_IFS=$IFS
12151         IFS=":"
12152         local fidv=($fid)
12153         IFS=$OLD_IFS
12154         # assume that the next FID for this client is sequential, since stdout
12155         # is unfortunately eaten by multiop_bg_pause
12156         local n=$((${fidv[1]} + 1))
12157         local next_fid="${fidv[0]}:$(printf "0x%x" $n):${fidv[2]}"
12158         if [ "$FILESET" == "" ]; then
12159                 $CHECKSTAT -t file $MOUNT/.lustre/fid/$next_fid ||
12160                         error "FID is missing before close"
12161         fi
12162         kill -USR1 $multi_pid
12163         # 1 second delay, so if mtime change we will see it
12164         sleep 1
12165         local mtime2=$(stat -c "%Y" $DIR/$tdir)
12166         [[ $mtime1 == $mtime2 ]] || error "mtime has changed"
12167 }
12168 run_test 185 "Volatile file support"
12169
12170 test_187a() {
12171         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12172         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.0) ] &&
12173                 skip "Need MDS version at least 2.3.0" && return
12174
12175         local dir0=$DIR/$tdir/$testnum
12176         mkdir -p $dir0 || error "creating dir $dir0"
12177
12178         local file=$dir0/file1
12179         dd if=/dev/urandom of=$file count=10 bs=1M conv=fsync
12180         local dv1=$($LFS data_version $file)
12181         dd if=/dev/urandom of=$file seek=10 count=1 bs=1M conv=fsync
12182         local dv2=$($LFS data_version $file)
12183         [[ $dv1 != $dv2 ]] ||
12184                 error "data version did not change on write $dv1 == $dv2"
12185
12186         # clean up
12187         rm -f $file1
12188 }
12189 run_test 187a "Test data version change"
12190
12191 test_187b() {
12192         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12193         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.0) ] &&
12194                 skip "Need MDS version at least 2.3.0" && return
12195
12196         local dir0=$DIR/$tdir/$testnum
12197         mkdir -p $dir0 || error "creating dir $dir0"
12198
12199         declare -a DV=$($MULTIOP $dir0 Vw1000xYw1000xY | cut -f3 -d" ")
12200         [[ ${DV[0]} != ${DV[1]} ]] ||
12201                 error "data version did not change on write"\
12202                       " ${DV[0]} == ${DV[1]}"
12203
12204         # clean up
12205         rm -f $file1
12206 }
12207 run_test 187b "Test data version change on volatile file"
12208
12209 test_200() {
12210         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12211         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
12212         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
12213
12214         local POOL=${POOL:-cea1}
12215         local POOL_ROOT=${POOL_ROOT:-$DIR/d200.pools}
12216         local POOL_DIR_NAME=${POOL_DIR_NAME:-dir_tst}
12217         # Pool OST targets
12218         local first_ost=0
12219         local last_ost=$(($OSTCOUNT - 1))
12220         local ost_step=2
12221         local ost_list=$(seq $first_ost $ost_step $last_ost)
12222         local ost_range="$first_ost $last_ost $ost_step"
12223         local test_path=$POOL_ROOT/$POOL_DIR_NAME
12224         local file_dir=$POOL_ROOT/file_tst
12225         local subdir=$test_path/subdir
12226
12227         local rc=0
12228         while : ; do
12229                 # former test_200a test_200b
12230                 pool_add $POOL                          || { rc=$? ; break; }
12231                 pool_add_targets  $POOL $ost_range      || { rc=$? ; break; }
12232                 # former test_200c test_200d
12233                 mkdir -p $test_path
12234                 pool_set_dir      $POOL $test_path      || { rc=$? ; break; }
12235                 pool_check_dir    $POOL $test_path      || { rc=$? ; break; }
12236                 mkdir -p $subdir
12237                 pool_check_dir    $POOL $subdir         || { rc=$? ; break; }
12238                 pool_dir_rel_path $POOL $POOL_DIR_NAME $POOL_ROOT \
12239                                                         || { rc=$? ; break; }
12240                 # former test_200e test_200f
12241                 local files=$((OSTCOUNT*3))
12242                 pool_alloc_files  $POOL $test_path $files "$ost_list" \
12243                                                         || { rc=$? ; break; }
12244                 pool_create_files $POOL $file_dir $files "$ost_list" \
12245                                                         || { rc=$? ; break; }
12246                 # former test_200g test_200h
12247                 pool_lfs_df $POOL                       || { rc=$? ; break; }
12248                 pool_file_rel_path $POOL $test_path     || { rc=$? ; break; }
12249
12250                 # former test_201a test_201b test_201c
12251                 pool_remove_first_target $POOL          || { rc=$? ; break; }
12252
12253                 local f=$test_path/$tfile
12254                 pool_remove_all_targets $POOL $f        || { rc=$? ; break; }
12255                 pool_remove $POOL $f                    || { rc=$? ; break; }
12256                 break
12257         done
12258
12259         destroy_test_pools
12260         return $rc
12261 }
12262 run_test 200 "OST pools"
12263
12264 # usage: default_attr <count | size | offset>
12265 default_attr() {
12266         $LCTL get_param -n lov.$FSNAME-clilov-\*.stripe${1}
12267 }
12268
12269 # usage: check_default_stripe_attr
12270 check_default_stripe_attr() {
12271         ACTUAL=$($GETSTRIPE $* $DIR/$tdir)
12272         case $1 in
12273         --stripe-count|-c)
12274                 [ -n "$2" ] && EXPECTED=0 || EXPECTED=$(default_attr count);;
12275         --stripe-size|-S)
12276                 [ -n "$2" ] && EXPECTED=0 || EXPECTED=$(default_attr size);;
12277         --stripe-index|-i)
12278                 EXPECTED=-1;;
12279         *)
12280                 error "unknown getstripe attr '$1'"
12281         esac
12282
12283         [ $ACTUAL != $EXPECTED ] &&
12284                 error "$DIR/$tdir has $1 '$ACTUAL', not '$EXPECTED'"
12285 }
12286
12287 test_204a() {
12288         test_mkdir -p $DIR/$tdir
12289         $SETSTRIPE --stripe-count 0 --stripe-size 0 --stripe-index -1 $DIR/$tdir
12290
12291         check_default_stripe_attr --stripe-count
12292         check_default_stripe_attr --stripe-size
12293         check_default_stripe_attr --stripe-index
12294
12295         return 0
12296 }
12297 run_test 204a "Print default stripe attributes ================="
12298
12299 test_204b() {
12300         test_mkdir -p $DIR/$tdir
12301         $SETSTRIPE --stripe-count 1 $DIR/$tdir
12302
12303         check_default_stripe_attr --stripe-size
12304         check_default_stripe_attr --stripe-index
12305
12306         return 0
12307 }
12308 run_test 204b "Print default stripe size and offset  ==========="
12309
12310 test_204c() {
12311         test_mkdir -p $DIR/$tdir
12312         $SETSTRIPE --stripe-size 65536 $DIR/$tdir
12313
12314         check_default_stripe_attr --stripe-count
12315         check_default_stripe_attr --stripe-index
12316
12317         return 0
12318 }
12319 run_test 204c "Print default stripe count and offset ==========="
12320
12321 test_204d() {
12322         test_mkdir -p $DIR/$tdir
12323         $SETSTRIPE --stripe-index 0 $DIR/$tdir
12324
12325         check_default_stripe_attr --stripe-count
12326         check_default_stripe_attr --stripe-size
12327
12328         return 0
12329 }
12330 run_test 204d "Print default stripe count and size ============="
12331
12332 test_204e() {
12333         test_mkdir -p $DIR/$tdir
12334         $SETSTRIPE -d $DIR/$tdir
12335
12336         check_default_stripe_attr --stripe-count --raw
12337         check_default_stripe_attr --stripe-size --raw
12338         check_default_stripe_attr --stripe-index --raw
12339
12340         return 0
12341 }
12342 run_test 204e "Print raw stripe attributes ================="
12343
12344 test_204f() {
12345         test_mkdir -p $DIR/$tdir
12346         $SETSTRIPE --stripe-count 1 $DIR/$tdir
12347
12348         check_default_stripe_attr --stripe-size --raw
12349         check_default_stripe_attr --stripe-index --raw
12350
12351         return 0
12352 }
12353 run_test 204f "Print raw stripe size and offset  ==========="
12354
12355 test_204g() {
12356         test_mkdir -p $DIR/$tdir
12357         $SETSTRIPE --stripe-size 65536 $DIR/$tdir
12358
12359         check_default_stripe_attr --stripe-count --raw
12360         check_default_stripe_attr --stripe-index --raw
12361
12362         return 0
12363 }
12364 run_test 204g "Print raw stripe count and offset ==========="
12365
12366 test_204h() {
12367         test_mkdir -p $DIR/$tdir
12368         $SETSTRIPE --stripe-index 0 $DIR/$tdir
12369
12370         check_default_stripe_attr --stripe-count --raw
12371         check_default_stripe_attr --stripe-size --raw
12372
12373         return 0
12374 }
12375 run_test 204h "Print raw stripe count and size ============="
12376
12377 # Figure out which job scheduler is being used, if any,
12378 # or use a fake one
12379 if [ -n "$SLURM_JOB_ID" ]; then # SLURM
12380         JOBENV=SLURM_JOB_ID
12381 elif [ -n "$LSB_JOBID" ]; then # Load Sharing Facility
12382         JOBENV=LSB_JOBID
12383 elif [ -n "$PBS_JOBID" ]; then # PBS/Maui/Moab
12384         JOBENV=PBS_JOBID
12385 elif [ -n "$LOADL_STEPID" ]; then # LoadLeveller
12386         JOBENV=LOADL_STEP_ID
12387 elif [ -n "$JOB_ID" ]; then # Sun Grid Engine
12388         JOBENV=JOB_ID
12389 else
12390         $LCTL list_param jobid_name > /dev/null 2>&1
12391         if [ $? -eq 0 ]; then
12392                 JOBENV=nodelocal
12393         else
12394                 JOBENV=FAKE_JOBID
12395         fi
12396 fi
12397
12398 verify_jobstats() {
12399         local cmd=($1)
12400         shift
12401         local facets="$@"
12402
12403 # we don't really need to clear the stats for this test to work, since each
12404 # command has a unique jobid, but it makes debugging easier if needed.
12405 #       for facet in $facets; do
12406 #               local dev=$(convert_facet2label $facet)
12407 #               # clear old jobstats
12408 #               do_facet $facet lctl set_param *.$dev.job_stats="clear"
12409 #       done
12410
12411         # use a new JobID for each test, or we might see an old one
12412         [ "$JOBENV" = "FAKE_JOBID" ] &&
12413                 FAKE_JOBID=id.$testnum.$(basename ${cmd[0]}).$RANDOM
12414
12415         JOBVAL=${!JOBENV}
12416
12417         [ "$JOBENV" = "nodelocal" ] && {
12418                 FAKE_JOBID=id.$testnum.$(basename ${cmd[0]}).$RANDOM
12419                 $LCTL set_param jobid_name=$FAKE_JOBID
12420                 JOBVAL=$FAKE_JOBID
12421         }
12422
12423         log "Test: ${cmd[*]}"
12424         log "Using JobID environment variable $JOBENV=$JOBVAL"
12425
12426         if [ $JOBENV = "FAKE_JOBID" ]; then
12427                 FAKE_JOBID=$JOBVAL ${cmd[*]}
12428         else
12429                 ${cmd[*]}
12430         fi
12431
12432         # all files are created on OST0000
12433         for facet in $facets; do
12434                 local stats="*.$(convert_facet2label $facet).job_stats"
12435                 if [ $(do_facet $facet lctl get_param $stats |
12436                        grep -c $JOBVAL) -ne 1 ]; then
12437                         do_facet $facet lctl get_param $stats
12438                         error "No jobstats for $JOBVAL found on $facet::$stats"
12439                 fi
12440         done
12441 }
12442
12443 jobstats_set() {
12444         trap 0
12445         NEW_JOBENV=${1:-$OLD_JOBENV}
12446         do_facet mgs $LCTL conf_param $FSNAME.sys.jobid_var=$NEW_JOBENV
12447         wait_update $HOSTNAME "$LCTL get_param -n jobid_var" $NEW_JOBENV
12448 }
12449
12450 cleanup_205() {
12451         trap 0
12452         do_facet $SINGLEMDS \
12453                 $LCTL set_param mdt.*.job_cleanup_interval=$OLD_INTERVAL
12454         [ $OLD_JOBENV != $JOBENV ] && jobstats_set $OLD_JOBENV
12455         cleanup_changelog
12456 }
12457
12458 test_205() { # Job stats
12459         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.7.1) ]] ||
12460                 { skip "Need MDS version with at least 2.7.1"; return 0; }
12461
12462         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12463         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
12464         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12465         remote_ost_nodsh && skip "remote OST with nodsh" && return
12466
12467         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep jobstats)" ] &&
12468                 skip "Server doesn't support jobstats" && return 0
12469         [[ $JOBID_VAR = disable ]] && skip "jobstats is disabled" && return
12470
12471         OLD_JOBENV=$($LCTL get_param -n jobid_var)
12472         if [ $OLD_JOBENV != $JOBENV ]; then
12473                 jobstats_set $JOBENV
12474                 trap cleanup_205 EXIT
12475         fi
12476
12477         CL_USER=$(do_facet $SINGLEMDS lctl --device $MDT0 changelog_register -n)
12478         echo "Registered as changelog user $CL_USER"
12479
12480         OLD_INTERVAL=$(do_facet $SINGLEMDS \
12481                        lctl get_param -n mdt.*.job_cleanup_interval)
12482         local interval_new=5
12483         do_facet $SINGLEMDS \
12484                 $LCTL set_param mdt.*.job_cleanup_interval=$interval_new
12485         local start=$SECONDS
12486
12487         local cmd
12488         # mkdir
12489         cmd="mkdir $DIR/$tdir"
12490         verify_jobstats "$cmd" "$SINGLEMDS"
12491         # rmdir
12492         cmd="rmdir $DIR/$tdir"
12493         verify_jobstats "$cmd" "$SINGLEMDS"
12494         # mkdir on secondary MDT
12495         if [ $MDSCOUNT -gt 1 ]; then
12496                 cmd="lfs mkdir -i 1 $DIR/$tdir.remote"
12497                 verify_jobstats "$cmd" "mds2"
12498         fi
12499         # mknod
12500         cmd="mknod $DIR/$tfile c 1 3"
12501         verify_jobstats "$cmd" "$SINGLEMDS"
12502         # unlink
12503         cmd="rm -f $DIR/$tfile"
12504         verify_jobstats "$cmd" "$SINGLEMDS"
12505         # create all files on OST0000 so verify_jobstats can find OST stats
12506         # open & close
12507         cmd="$SETSTRIPE -i 0 -c 1 $DIR/$tfile"
12508         verify_jobstats "$cmd" "$SINGLEMDS"
12509         # setattr
12510         cmd="touch $DIR/$tfile"
12511         verify_jobstats "$cmd" "$SINGLEMDS ost1"
12512         # write
12513         cmd="dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 oflag=sync"
12514         verify_jobstats "$cmd" "ost1"
12515         # read
12516         cancel_lru_locks osc
12517         cmd="dd if=$DIR/$tfile of=/dev/null bs=1M count=1 iflag=direct"
12518         verify_jobstats "$cmd" "ost1"
12519         # truncate
12520         cmd="$TRUNCATE $DIR/$tfile 0"
12521         verify_jobstats "$cmd" "$SINGLEMDS ost1"
12522         # rename
12523         cmd="mv -f $DIR/$tfile $DIR/$tdir.rename"
12524         verify_jobstats "$cmd" "$SINGLEMDS"
12525         # jobstats expiry - sleep until old stats should be expired
12526         local left=$((interval_new + 5 - (SECONDS - start)))
12527         [ $left -ge 0 ] && wait_update_facet $SINGLEMDS \
12528                 "lctl get_param *.*.job_stats | grep -c 'job_id.*mkdir'" \
12529                         "0" $left
12530         cmd="mkdir $DIR/$tdir.expire"
12531         verify_jobstats "$cmd" "$SINGLEMDS"
12532         [ $(do_facet $SINGLEMDS lctl get_param *.*.job_stats |
12533             grep -c "job_id.*mkdir") -gt 1 ] && error "old jobstats not expired"
12534
12535         # Ensure that jobid are present in changelog (if supported by MDS)
12536         if [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.52) ]
12537         then
12538                 $LFS changelog $MDT0 | tail -9
12539                 jobids=$($LFS changelog $MDT0 | tail -9 | grep -c "j=")
12540                 [ $jobids -eq 9 ] ||
12541                         error "Wrong changelog jobid count $jobids != 9"
12542
12543                 # LU-5862
12544                 JOBENV="disable"
12545                 jobstats_set $JOBENV
12546                 touch $DIR/$tfile
12547                 $LFS changelog $MDT0 | tail -1
12548                 jobids=$($LFS changelog $MDT0 | tail -1 | grep -c "j=")
12549                 [ $jobids -eq 0 ] ||
12550                         error "Unexpected jobids when jobid_var=$JOBENV"
12551         fi
12552
12553         cleanup_205
12554 }
12555 run_test 205 "Verify job stats"
12556
12557 # LU-1480, LU-1773 and LU-1657
12558 test_206() {
12559         mkdir -p $DIR/$tdir
12560         $SETSTRIPE -c -1 $DIR/$tdir
12561 #define OBD_FAIL_LOV_INIT 0x1403
12562         $LCTL set_param fail_loc=0xa0001403
12563         $LCTL set_param fail_val=1
12564         touch $DIR/$tdir/$tfile || true
12565 }
12566 run_test 206 "fail lov_init_raid0() doesn't lbug"
12567
12568 test_207a() {
12569         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((RANDOM%10+1))
12570         local fsz=`stat -c %s $DIR/$tfile`
12571         cancel_lru_locks mdc
12572
12573         # do not return layout in getattr intent
12574 #define OBD_FAIL_MDS_NO_LL_GETATTR 0x170
12575         $LCTL set_param fail_loc=0x170
12576         local sz=`stat -c %s $DIR/$tfile`
12577
12578         [ $fsz -eq $sz ] || error "file size expected $fsz, actual $sz"
12579
12580         rm -rf $DIR/$tfile
12581 }
12582 run_test 207a "can refresh layout at glimpse"
12583
12584 test_207b() {
12585         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((RANDOM%10+1))
12586         local cksum=`md5sum $DIR/$tfile`
12587         local fsz=`stat -c %s $DIR/$tfile`
12588         cancel_lru_locks mdc
12589         cancel_lru_locks osc
12590
12591         # do not return layout in getattr intent
12592 #define OBD_FAIL_MDS_NO_LL_OPEN 0x171
12593         $LCTL set_param fail_loc=0x171
12594
12595         # it will refresh layout after the file is opened but before read issues
12596         echo checksum is "$cksum"
12597         echo "$cksum" |md5sum -c --quiet || error "file differs"
12598
12599         rm -rf $DIR/$tfile
12600 }
12601 run_test 207b "can refresh layout at open"
12602
12603 test_208() {
12604         # FIXME: in this test suite, only RD lease is used. This is okay
12605         # for now as only exclusive open is supported. After generic lease
12606         # is done, this test suite should be revised. - Jinshan
12607
12608         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12609         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.4.52) ]] ||
12610                 { skip "Need MDS version at least 2.4.52"; return 0; }
12611
12612         echo "==== test 1: verify get lease work"
12613         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:eRE+eU || error "get lease error"
12614
12615         echo "==== test 2: verify lease can be broken by upcoming open"
12616         $MULTIOP $DIR/$tfile oO_RDONLY:eR_E-eUc &
12617         local PID=$!
12618         sleep 1
12619
12620         $MULTIOP $DIR/$tfile oO_RDONLY:c
12621         kill -USR1 $PID && wait $PID || error "break lease error"
12622
12623         echo "==== test 3: verify lease can't be granted if an open already exists"
12624         $MULTIOP $DIR/$tfile oO_RDONLY:_c &
12625         local PID=$!
12626         sleep 1
12627
12628         $MULTIOP $DIR/$tfile oO_RDONLY:eReUc && error "apply lease should fail"
12629         kill -USR1 $PID && wait $PID || error "open file error"
12630
12631         echo "==== test 4: lease can sustain over recovery"
12632         $MULTIOP $DIR/$tfile oO_RDONLY:eR_E+eUc &
12633         PID=$!
12634         sleep 1
12635
12636         fail mds1
12637
12638         kill -USR1 $PID && wait $PID || error "lease broken over recovery"
12639
12640         echo "==== test 5: lease broken can't be regained by replay"
12641         $MULTIOP $DIR/$tfile oO_RDONLY:eR_E-eUc &
12642         PID=$!
12643         sleep 1
12644
12645         # open file to break lease and then recovery
12646         $MULTIOP $DIR/$tfile oO_RDWR:c || error "open file error"
12647         fail mds1
12648
12649         kill -USR1 $PID && wait $PID || error "lease not broken over recovery"
12650
12651         rm -f $DIR/$tfile
12652 }
12653 run_test 208 "Exclusive open"
12654
12655 test_209() {
12656         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep disp_stripe)" ] &&
12657                 skip_env "must have disp_stripe" && return
12658
12659         touch $DIR/$tfile
12660         sync; sleep 5; sync;
12661
12662         echo 3 > /proc/sys/vm/drop_caches
12663         req_before=$(awk '/ptlrpc_cache / { print $2 }' /proc/slabinfo)
12664
12665         # open/close 500 times
12666         for i in $(seq 500); do
12667                 cat $DIR/$tfile
12668         done
12669
12670         echo 3 > /proc/sys/vm/drop_caches
12671         req_after=$(awk '/ptlrpc_cache / { print $2 }' /proc/slabinfo)
12672
12673         echo "before: $req_before, after: $req_after"
12674         [ $((req_after - req_before)) -ge 300 ] &&
12675                 error "open/close requests are not freed"
12676         return 0
12677 }
12678 run_test 209 "read-only open/close requests should be freed promptly"
12679
12680 test_212() {
12681         size=`date +%s`
12682         size=$((size % 8192 + 1))
12683         dd if=/dev/urandom of=$DIR/f212 bs=1k count=$size
12684         sendfile $DIR/f212 $DIR/f212.xyz || error "sendfile wrong"
12685         rm -f $DIR/f212 $DIR/f212.xyz
12686 }
12687 run_test 212 "Sendfile test ============================================"
12688
12689 test_213() {
12690         dd if=/dev/zero of=$DIR/$tfile bs=4k count=4
12691         cancel_lru_locks osc
12692         lctl set_param fail_loc=0x8000040f
12693         # generate a read lock
12694         cat $DIR/$tfile > /dev/null
12695         # write to the file, it will try to cancel the above read lock.
12696         cat /etc/hosts >> $DIR/$tfile
12697 }
12698 run_test 213 "OSC lock completion and cancel race don't crash - bug 18829"
12699
12700 test_214() { # for bug 20133
12701         mkdir -p $DIR/$tdir/d214c || error "mkdir $DIR/$tdir/d214c failed"
12702         for (( i=0; i < 340; i++ )) ; do
12703                 touch $DIR/$tdir/d214c/a$i
12704         done
12705
12706         ls -l $DIR/$tdir || error "ls -l $DIR/d214p failed"
12707         mv $DIR/$tdir/d214c $DIR/ || error "mv $DIR/d214p/d214c $DIR/ failed"
12708         ls $DIR/d214c || error "ls $DIR/d214c failed"
12709         rm -rf $DIR/$tdir || error "rm -rf $DIR/d214* failed"
12710         rm -rf $DIR/d214* || error "rm -rf $DIR/d214* failed"
12711 }
12712 run_test 214 "hash-indexed directory test - bug 20133"
12713
12714 # having "abc" as 1st arg, creates $TMP/lnet_abc.out and $TMP/lnet_abc.sys
12715 create_lnet_proc_files() {
12716         lctl get_param -n $1 >$TMP/lnet_$1.out || error "cannot read lnet.$1"
12717         sysctl lnet.$1 >$TMP/lnet_$1.sys_tmp || error "cannot read lnet.$1"
12718
12719         sed "s/^lnet.$1\ =\ //g" "$TMP/lnet_$1.sys_tmp" >$TMP/lnet_$1.sys
12720         rm -f "$TMP/lnet_$1.sys_tmp"
12721 }
12722
12723 # counterpart of create_lnet_proc_files
12724 remove_lnet_proc_files() {
12725         rm -f $TMP/lnet_$1.out $TMP/lnet_$1.sys
12726 }
12727
12728 # uses 1st arg as trailing part of filename, 2nd arg as description for reports,
12729 # 3rd arg as regexp for body
12730 check_lnet_proc_stats() {
12731         local l=$(cat "$TMP/lnet_$1" |wc -l)
12732         [ $l = 1 ] || (cat "$TMP/lnet_$1" && error "$2 is not of 1 line: $l")
12733
12734         grep -E "$3" "$TMP/lnet_$1" || (cat "$TMP/lnet_$1" && error "$2 misformatted")
12735 }
12736
12737 # uses 1st arg as trailing part of filename, 2nd arg as description for reports,
12738 # 3rd arg as regexp for body, 4th arg as regexp for 1st line, 5th arg is
12739 # optional and can be regexp for 2nd line (lnet.routes case)
12740 check_lnet_proc_entry() {
12741         local blp=2          # blp stands for 'position of 1st line of body'
12742         [ -z "$5" ] || blp=3 # lnet.routes case
12743
12744         local l=$(cat "$TMP/lnet_$1" |wc -l)
12745         # subtracting one from $blp because the body can be empty
12746         [ "$l" -ge "$(($blp - 1))" ] || (cat "$TMP/lnet_$1" && error "$2 is too short: $l")
12747
12748         sed -n '1 p' "$TMP/lnet_$1" |grep -E "$4" >/dev/null ||
12749                 (cat "$TMP/lnet_$1" && error "1st line of $2 misformatted")
12750
12751         [ "$5" = "" ] || sed -n '2 p' "$TMP/lnet_$1" |grep -E "$5" >/dev/null ||
12752                 (cat "$TMP/lnet_$1" && error "2nd line of $2 misformatted")
12753
12754         # bail out if any unexpected line happened
12755         sed -n "$blp p" "$TMP/lnet_$1" | grep -Ev "$3"
12756         [ "$?" != 0 ] || error "$2 misformatted"
12757 }
12758
12759 test_215() { # for bugs 18102, 21079, 21517
12760         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12761         local N='(0|[1-9][0-9]*)'       # non-negative numeric
12762         local P='[1-9][0-9]*'           # positive numeric
12763         local I='(0|-?[1-9][0-9]*|NA)'  # any numeric (0 | >0 | <0) or NA if no value
12764         local NET='[a-z][a-z0-9]*'      # LNET net like o2ib2
12765         local ADDR='[0-9.]+'            # LNET addr like 10.0.0.1
12766         local NID="$ADDR@$NET"          # LNET nid like 10.0.0.1@o2ib2
12767
12768         local L1 # regexp for 1st line
12769         local L2 # regexp for 2nd line (optional)
12770         local BR # regexp for the rest (body)
12771
12772         # lnet.stats should look as 11 space-separated non-negative numerics
12773         BR="^$N $N $N $N $N $N $N $N $N $N $N$"
12774         create_lnet_proc_files "stats"
12775         check_lnet_proc_stats "stats.sys" "lnet.stats" "$BR"
12776         remove_lnet_proc_files "stats"
12777
12778         # lnet.routes should look like this:
12779         # Routing disabled/enabled
12780         # net hops priority state router
12781         # where net is a string like tcp0, hops > 0, priority >= 0,
12782         # state is up/down,
12783         # router is a string like 192.168.1.1@tcp2
12784         L1="^Routing (disabled|enabled)$"
12785         L2="^net +hops +priority +state +router$"
12786         BR="^$NET +$N +(0|1) +(up|down) +$NID$"
12787         create_lnet_proc_files "routes"
12788         check_lnet_proc_entry "routes.sys" "lnet.routes" "$BR" "$L1" "$L2"
12789         remove_lnet_proc_files "routes"
12790
12791         # lnet.routers should look like this:
12792         # ref rtr_ref alive_cnt state last_ping ping_sent deadline down_ni router
12793         # where ref > 0, rtr_ref > 0, alive_cnt >= 0, state is up/down,
12794         # last_ping >= 0, ping_sent is boolean (0/1), deadline and down_ni are
12795         # numeric (0 or >0 or <0), router is a string like 192.168.1.1@tcp2
12796         L1="^ref +rtr_ref +alive_cnt +state +last_ping +ping_sent +deadline +down_ni +router$"
12797         BR="^$P +$P +$N +(up|down) +$N +(0|1) +$I +$I +$NID$"
12798         create_lnet_proc_files "routers"
12799         check_lnet_proc_entry "routers.sys" "lnet.routers" "$BR" "$L1"
12800         remove_lnet_proc_files "routers"
12801
12802         # lnet.peers should look like this:
12803         # nid refs state last max rtr min tx min queue
12804         # where nid is a string like 192.168.1.1@tcp2, refs > 0,
12805         # state is up/down/NA, max >= 0. last, rtr, min, tx, min are
12806         # numeric (0 or >0 or <0), queue >= 0.
12807         L1="^nid +refs +state +last +max +rtr +min +tx +min +queue$"
12808         BR="^$NID +$P +(up|down|NA) +$I +$N +$I +$I +$I +$I +$N$"
12809         create_lnet_proc_files "peers"
12810         check_lnet_proc_entry "peers.sys" "lnet.peers" "$BR" "$L1"
12811         remove_lnet_proc_files "peers"
12812
12813         # lnet.buffers  should look like this:
12814         # pages count credits min
12815         # where pages >=0, count >=0, credits and min are numeric (0 or >0 or <0)
12816         L1="^pages +count +credits +min$"
12817         BR="^ +$N +$N +$I +$I$"
12818         create_lnet_proc_files "buffers"
12819         check_lnet_proc_entry "buffers.sys" "lnet.buffers" "$BR" "$L1"
12820         remove_lnet_proc_files "buffers"
12821
12822         # lnet.nis should look like this:
12823         # nid status alive refs peer rtr max tx min
12824         # where nid is a string like 192.168.1.1@tcp2, status is up/down,
12825         # alive is numeric (0 or >0 or <0), refs >= 0, peer >= 0,
12826         # rtr >= 0, max >=0, tx and min are numeric (0 or >0 or <0).
12827         L1="^nid +status +alive +refs +peer +rtr +max +tx +min$"
12828         BR="^$NID +(up|down) +$I +$N +$N +$N +$N +$I +$I$"
12829         create_lnet_proc_files "nis"
12830         check_lnet_proc_entry "nis.sys" "lnet.nis" "$BR" "$L1"
12831         remove_lnet_proc_files "nis"
12832
12833         # can we successfully write to lnet.stats?
12834         lctl set_param -n stats=0 || error "cannot write to lnet.stats"
12835         sysctl -w lnet.stats=0 || error "cannot write to lnet.stats"
12836 }
12837 run_test 215 "lnet exists and has proper content - bugs 18102, 21079, 21517"
12838
12839 test_216() { # bug 20317
12840         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12841         remote_ost_nodsh && skip "remote OST with nodsh" && return
12842
12843         local node
12844         local facets=$(get_facets OST)
12845         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
12846
12847         save_lustre_params client "osc.*.contention_seconds" > $p
12848         save_lustre_params $facets \
12849                 "ldlm.namespaces.filter-*.max_nolock_bytes" >> $p
12850         save_lustre_params $facets \
12851                 "ldlm.namespaces.filter-*.contended_locks" >> $p
12852         save_lustre_params $facets \
12853                 "ldlm.namespaces.filter-*.contention_seconds" >> $p
12854         clear_stats osc.*.osc_stats
12855
12856         # agressive lockless i/o settings
12857         do_nodes $(comma_list $(osts_nodes)) \
12858                 "lctl set_param -n ldlm.namespaces.*.max_nolock_bytes=2000000 \
12859                         ldlm.namespaces.filter-*.contended_locks=0 \
12860                         ldlm.namespaces.filter-*.contention_seconds=60"
12861         lctl set_param -n osc.*.contention_seconds=60
12862
12863         $DIRECTIO write $DIR/$tfile 0 10 4096
12864         $CHECKSTAT -s 40960 $DIR/$tfile
12865
12866         # disable lockless i/o
12867         do_nodes $(comma_list $(osts_nodes)) \
12868                 "lctl set_param -n ldlm.namespaces.filter-*.max_nolock_bytes=0 \
12869                         ldlm.namespaces.filter-*.contended_locks=32 \
12870                         ldlm.namespaces.filter-*.contention_seconds=0"
12871         lctl set_param -n osc.*.contention_seconds=0
12872         clear_stats osc.*.osc_stats
12873
12874         dd if=/dev/zero of=$DIR/$tfile count=0
12875         $CHECKSTAT -s 0 $DIR/$tfile
12876
12877         restore_lustre_params <$p
12878         rm -f $p
12879         rm $DIR/$tfile
12880 }
12881 run_test 216 "check lockless direct write updates file size and kms correctly"
12882
12883 test_217() { # bug 22430
12884         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12885         local node
12886         local nid
12887
12888         for node in $(nodes_list); do
12889                 nid=$(host_nids_address $node $NETTYPE)
12890                 if [[ $nid = *-* ]] ; then
12891                         echo "lctl ping $(h2nettype $nid)"
12892                         lctl ping $(h2nettype $nid)
12893                 else
12894                         echo "skipping $node (no hyphen detected)"
12895                 fi
12896         done
12897 }
12898 run_test 217 "check lctl ping for hostnames with hiphen ('-')"
12899
12900 test_218() {
12901        # do directio so as not to populate the page cache
12902        log "creating a 10 Mb file"
12903        $MULTIOP $DIR/$tfile oO_CREAT:O_DIRECT:O_RDWR:w$((10*1048576))c || error "multiop failed while creating a file"
12904        log "starting reads"
12905        dd if=$DIR/$tfile of=/dev/null bs=4096 &
12906        log "truncating the file"
12907        $MULTIOP $DIR/$tfile oO_TRUNC:c || error "multiop failed while truncating the file"
12908        log "killing dd"
12909        kill %+ || true # reads might have finished
12910        echo "wait until dd is finished"
12911        wait
12912        log "removing the temporary file"
12913        rm -rf $DIR/$tfile || error "tmp file removal failed"
12914 }
12915 run_test 218 "parallel read and truncate should not deadlock ======================="
12916
12917 test_219() {
12918         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12919         # write one partial page
12920         dd if=/dev/zero of=$DIR/$tfile bs=1024 count=1
12921         # set no grant so vvp_io_commit_write will do sync write
12922         $LCTL set_param fail_loc=0x411
12923         # write a full page at the end of file
12924         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 seek=1 conv=notrunc
12925
12926         $LCTL set_param fail_loc=0
12927         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 seek=3
12928         $LCTL set_param fail_loc=0x411
12929         dd if=/dev/zero of=$DIR/$tfile bs=1024 count=1 seek=2 conv=notrunc
12930
12931         # LU-4201
12932         dd if=/dev/zero of=$DIR/$tfile-2 bs=1024 count=1
12933         $CHECKSTAT -s 1024 $DIR/$tfile-2 || error "checkstat wrong size"
12934 }
12935 run_test 219 "LU-394: Write partial won't cause uncontiguous pages vec at LND"
12936
12937 test_220() { #LU-325
12938         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12939         remote_ost_nodsh && skip "remote OST with nodsh" && return
12940         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12941         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
12942         local OSTIDX=0
12943
12944         # create on MDT0000 so the last_id and next_id are correct
12945         mkdir $DIR/$tdir
12946         local OST=$($LFS df $DIR | awk '/OST:'$OSTIDX'/ { print $1 }')
12947         OST=${OST%_UUID}
12948
12949         # on the mdt's osc
12950         local mdtosc_proc1=$(get_mdtosc_proc_path $SINGLEMDS $OST)
12951         local last_id=$(do_facet $SINGLEMDS lctl get_param -n \
12952                         osc.$mdtosc_proc1.prealloc_last_id)
12953         local next_id=$(do_facet $SINGLEMDS lctl get_param -n \
12954                         osc.$mdtosc_proc1.prealloc_next_id)
12955
12956         $LFS df -i
12957
12958         do_facet ost$((OSTIDX + 1)) lctl set_param fail_val=-1
12959         #define OBD_FAIL_OST_ENOINO              0x229
12960         do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=0x229
12961         create_pool $FSNAME.$TESTNAME || return 1
12962         do_facet mgs $LCTL pool_add $FSNAME.$TESTNAME $OST || return 2
12963
12964         $SETSTRIPE $DIR/$tdir -i $OSTIDX -c 1 -p $FSNAME.$TESTNAME
12965
12966         MDSOBJS=$((last_id - next_id))
12967         echo "preallocated objects on MDS is $MDSOBJS" "($last_id - $next_id)"
12968
12969         blocks=$($LFS df $MOUNT | awk '($1 == '$OSTIDX') { print $4 }')
12970         echo "OST still has $count kbytes free"
12971
12972         echo "create $MDSOBJS files @next_id..."
12973         createmany -o $DIR/$tdir/f $MDSOBJS || return 3
12974
12975         local last_id2=$(do_facet mds${MDSIDX} lctl get_param -n \
12976                         osc.$mdtosc_proc1.prealloc_last_id)
12977         local next_id2=$(do_facet mds${MDSIDX} lctl get_param -n \
12978                         osc.$mdtosc_proc1.prealloc_next_id)
12979
12980         echo "after creation, last_id=$last_id2, next_id=$next_id2"
12981         $LFS df -i
12982
12983         echo "cleanup..."
12984
12985         do_facet ost$((OSTIDX + 1)) lctl set_param fail_val=0
12986         do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=0
12987
12988         do_facet mgs $LCTL pool_remove $FSNAME.$TESTNAME $OST || return 4
12989         do_facet mgs $LCTL pool_destroy $FSNAME.$TESTNAME || return 5
12990         echo "unlink $MDSOBJS files @$next_id..."
12991         unlinkmany $DIR/$tdir/f $MDSOBJS || return 6
12992 }
12993 run_test 220 "preallocated MDS objects still used if ENOSPC from OST"
12994
12995 test_221() {
12996         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12997         dd if=`which date` of=$MOUNT/date oflag=sync
12998         chmod +x $MOUNT/date
12999
13000         #define OBD_FAIL_LLITE_FAULT_TRUNC_RACE  0x1401
13001         $LCTL set_param fail_loc=0x80001401
13002
13003         $MOUNT/date > /dev/null
13004         rm -f $MOUNT/date
13005 }
13006 run_test 221 "make sure fault and truncate race to not cause OOM"
13007
13008 test_222a () {
13009         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13010        rm -rf $DIR/$tdir
13011        test_mkdir -p $DIR/$tdir
13012        $SETSTRIPE -c 1 -i 0 $DIR/$tdir
13013        createmany -o $DIR/$tdir/$tfile 10
13014        cancel_lru_locks mdc
13015        cancel_lru_locks osc
13016        #define OBD_FAIL_LDLM_AGL_DELAY           0x31a
13017        $LCTL set_param fail_loc=0x31a
13018        ls -l $DIR/$tdir > /dev/null || error "AGL for ls failed"
13019        $LCTL set_param fail_loc=0
13020        rm -r $DIR/$tdir
13021 }
13022 run_test 222a "AGL for ls should not trigger CLIO lock failure ================"
13023
13024 test_222b () {
13025         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13026         rm -rf $DIR/$tdir
13027         test_mkdir -p $DIR/$tdir
13028         $SETSTRIPE -c 1 -i 0 $DIR/$tdir
13029         createmany -o $DIR/$tdir/$tfile 10
13030         cancel_lru_locks mdc
13031         cancel_lru_locks osc
13032         #define OBD_FAIL_LDLM_AGL_DELAY           0x31a
13033         $LCTL set_param fail_loc=0x31a
13034         rm -r $DIR/$tdir || error "AGL for rmdir failed"
13035         $LCTL set_param fail_loc=0
13036 }
13037 run_test 222b "AGL for rmdir should not trigger CLIO lock failure ============="
13038
13039 test_223 () {
13040         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13041        rm -rf $DIR/$tdir
13042        test_mkdir -p $DIR/$tdir
13043        $SETSTRIPE -c 1 -i 0 $DIR/$tdir
13044        createmany -o $DIR/$tdir/$tfile 10
13045        cancel_lru_locks mdc
13046        cancel_lru_locks osc
13047        #define OBD_FAIL_LDLM_AGL_NOLOCK          0x31b
13048        $LCTL set_param fail_loc=0x31b
13049        ls -l $DIR/$tdir > /dev/null || error "reenqueue failed"
13050        $LCTL set_param fail_loc=0
13051        rm -r $DIR/$tdir
13052 }
13053 run_test 223 "osc reenqueue if without AGL lock granted ======================="
13054
13055 test_224a() { # LU-1039, MRP-303
13056         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13057         #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB   0x508
13058         $LCTL set_param fail_loc=0x508
13059         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 conv=fsync
13060         $LCTL set_param fail_loc=0
13061         df $DIR
13062 }
13063 run_test 224a "Don't panic on bulk IO failure"
13064
13065 test_224b() { # LU-1039, MRP-303
13066         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13067         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1
13068         cancel_lru_locks osc
13069         #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB2   0x515
13070         $LCTL set_param fail_loc=0x515
13071         dd of=/dev/null if=$DIR/$tfile bs=4096 count=1
13072         $LCTL set_param fail_loc=0
13073         df $DIR
13074 }
13075 run_test 224b "Don't panic on bulk IO failure"
13076
13077 test_224c() { # LU-6441
13078         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13079         remote_mds_nodsh && skip "remote MDS with nodsh" && return
13080
13081         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
13082         save_writethrough $p
13083         set_cache writethrough on
13084
13085         local pages_per_rpc=$($LCTL get_param \
13086                                 osc.*.max_pages_per_rpc)
13087         local at_max=$($LCTL get_param -n at_max)
13088         local timeout=$($LCTL get_param -n timeout)
13089         local test_at="$LCTL get_param -n at_max"
13090         local param_at="$FSNAME.sys.at_max"
13091         local test_timeout="$LCTL get_param -n timeout"
13092         local param_timeout="$FSNAME.sys.timeout"
13093
13094         $LCTL set_param -n osc.*.max_pages_per_rpc=1024
13095
13096         set_conf_param_and_check client "$test_at" "$param_at" 0 ||
13097                 error "conf_param at_max=0 failed"
13098         set_conf_param_and_check client "$test_timeout" "$param_timeout" 5 ||
13099                 error "conf_param timeout=5 failed"
13100
13101         #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB3   0x520
13102         do_facet ost1 $LCTL set_param fail_loc=0x520
13103         $LFS setstripe -c 1 -i 0 $DIR/$tfile
13104         dd if=/dev/zero of=$DIR/$tfile bs=8MB count=1
13105         sync
13106         do_facet ost1 $LCTL set_param fail_loc=0
13107
13108         set_conf_param_and_check client "$test_at" "$param_at" $at_max ||
13109                 error "conf_param at_max=$at_max failed"
13110         set_conf_param_and_check client "$test_timeout" "$param_timeout" \
13111                 $timeout || error "conf_param timeout=$timeout failed"
13112
13113         $LCTL set_param -n $pages_per_rpc
13114         restore_lustre_params < $p
13115         rm -f $p
13116 }
13117 run_test 224c "Don't hang if one of md lost during large bulk RPC"
13118
13119 MDSSURVEY=${MDSSURVEY:-$(which mds-survey 2>/dev/null || true)}
13120 test_225a () {
13121         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13122         remote_mds_nodsh && skip "remote MDS with nodsh" && return
13123         if [ -z ${MDSSURVEY} ]; then
13124               skip_env "mds-survey not found" && return
13125         fi
13126
13127         [ $MDSCOUNT -ge 2 ] &&
13128                 skip "skipping now for more than one MDT" && return
13129
13130        [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ] ||
13131             { skip "Need MDS version at least 2.2.51"; return; }
13132
13133        local mds=$(facet_host $SINGLEMDS)
13134        local target=$(do_nodes $mds 'lctl dl' | \
13135                       awk "{if (\$2 == \"UP\" && \$3 == \"mdt\") {print \$4}}")
13136
13137        local cmd1="file_count=1000 thrhi=4"
13138        local cmd2="dir_count=2 layer=mdd stripe_count=0"
13139        local cmd3="rslt_loc=${TMP} targets=\"$mds:$target\" $MDSSURVEY"
13140        local cmd="$cmd1 $cmd2 $cmd3"
13141
13142        rm -f ${TMP}/mds_survey*
13143        echo + $cmd
13144        eval $cmd || error "mds-survey with zero-stripe failed"
13145        cat ${TMP}/mds_survey*
13146        rm -f ${TMP}/mds_survey*
13147 }
13148 run_test 225a "Metadata survey sanity with zero-stripe"
13149
13150 test_225b () {
13151         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13152         remote_mds_nodsh && skip "remote MDS with nodsh" && return
13153         if [ -z ${MDSSURVEY} ]; then
13154               skip_env "mds-survey not found" && return
13155         fi
13156         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ] ||
13157             { skip "Need MDS version at least 2.2.51"; return; }
13158
13159         if [ $($LCTL dl | grep -c osc) -eq 0 ]; then
13160               skip_env "Need to mount OST to test" && return
13161         fi
13162
13163         [ $MDSCOUNT -ge 2 ] &&
13164                 skip "skipping now for more than one MDT" && return
13165        local mds=$(facet_host $SINGLEMDS)
13166        local target=$(do_nodes $mds 'lctl dl' | \
13167                       awk "{if (\$2 == \"UP\" && \$3 == \"mdt\") {print \$4}}")
13168
13169        local cmd1="file_count=1000 thrhi=4"
13170        local cmd2="dir_count=2 layer=mdd stripe_count=1"
13171        local cmd3="rslt_loc=${TMP} targets=\"$mds:$target\" $MDSSURVEY"
13172        local cmd="$cmd1 $cmd2 $cmd3"
13173
13174        rm -f ${TMP}/mds_survey*
13175        echo + $cmd
13176        eval $cmd || error "mds-survey with stripe_count failed"
13177        cat ${TMP}/mds_survey*
13178        rm -f ${TMP}/mds_survey*
13179 }
13180 run_test 225b "Metadata survey sanity with stripe_count = 1"
13181
13182 mcreate_path2fid () {
13183         local mode=$1
13184         local major=$2
13185         local minor=$3
13186         local name=$4
13187         local desc=$5
13188         local path=$DIR/$tdir/$name
13189         local fid
13190         local rc
13191         local fid_path
13192
13193         $MCREATE --mode=$1 --major=$2 --minor=$3 $path ||
13194                 error "cannot create $desc"
13195
13196         fid=$($LFS path2fid $path | tr -d '[' | tr -d ']')
13197         rc=$?
13198         [ $rc -ne 0 ] && error "cannot get fid of a $desc"
13199
13200         fid_path=$($LFS fid2path $MOUNT $fid)
13201         rc=$?
13202         [ $rc -ne 0 ] && error "cannot get path of $desc by $DIR $path $fid"
13203
13204         [ "$path" == "$fid_path" ] ||
13205                 error "fid2path returned $fid_path, expected $path"
13206
13207         echo "pass with $path and $fid"
13208 }
13209
13210 test_226a () {
13211         rm -rf $DIR/$tdir
13212         mkdir -p $DIR/$tdir
13213
13214         mcreate_path2fid 0010666 0 0 fifo "FIFO"
13215         mcreate_path2fid 0020666 1 3 null "character special file (null)"
13216         mcreate_path2fid 0020666 1 255 none "character special file (no device)"
13217         mcreate_path2fid 0040666 0 0 dir "directory"
13218         mcreate_path2fid 0060666 7 0 loop0 "block special file (loop)"
13219         mcreate_path2fid 0100666 0 0 file "regular file"
13220         mcreate_path2fid 0120666 0 0 link "symbolic link"
13221         mcreate_path2fid 0140666 0 0 sock "socket"
13222 }
13223 run_test 226a "call path2fid and fid2path on files of all type"
13224
13225 test_226b () {
13226         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13227         rm -rf $DIR/$tdir
13228         local MDTIDX=1
13229
13230         mkdir -p $DIR/$tdir
13231         $LFS setdirstripe -i $MDTIDX $DIR/$tdir/remote_dir ||
13232                 error "create remote directory failed"
13233         mcreate_path2fid 0010666 0 0 "remote_dir/fifo" "FIFO"
13234         mcreate_path2fid 0020666 1 3 "remote_dir/null" \
13235                                 "character special file (null)"
13236         mcreate_path2fid 0020666 1 255 "remote_dir/none" \
13237                                 "character special file (no device)"
13238         mcreate_path2fid 0040666 0 0 "remote_dir/dir" "directory"
13239         mcreate_path2fid 0060666 7 0 "remote_dir/loop0" \
13240                                 "block special file (loop)"
13241         mcreate_path2fid 0100666 0 0 "remote_dir/file" "regular file"
13242         mcreate_path2fid 0120666 0 0 "remote_dir/link" "symbolic link"
13243         mcreate_path2fid 0140666 0 0 "remote_dir/sock" "socket"
13244 }
13245 run_test 226b "call path2fid and fid2path on files of all type under remote dir"
13246
13247 # LU-1299 Executing or running ldd on a truncated executable does not
13248 # cause an out-of-memory condition.
13249 test_227() {
13250         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13251         [ -z "$(which ldd)" ] && skip "should have ldd tool" && return
13252         dd if=$(which date) of=$MOUNT/date bs=1k count=1
13253         chmod +x $MOUNT/date
13254
13255         $MOUNT/date > /dev/null
13256         ldd $MOUNT/date > /dev/null
13257         rm -f $MOUNT/date
13258 }
13259 run_test 227 "running truncated executable does not cause OOM"
13260
13261 # LU-1512 try to reuse idle OI blocks
13262 test_228a() {
13263         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13264         remote_mds_nodsh && skip "remote MDS with nodsh" && return
13265         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
13266                 skip "non-ldiskfs backend" && return
13267
13268         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
13269         local myDIR=$DIR/$tdir
13270
13271         mkdir -p $myDIR
13272         #define OBD_FAIL_SEQ_EXHAUST             0x1002
13273         $LCTL set_param fail_loc=0x80001002
13274         createmany -o $myDIR/t- 10000
13275         $LCTL set_param fail_loc=0
13276         # The guard is current the largest FID holder
13277         touch $myDIR/guard
13278         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
13279                     tr -d '[')
13280         local IDX=$(($SEQ % 64))
13281
13282         do_facet $SINGLEMDS sync
13283         # Make sure journal flushed.
13284         sleep 6
13285         local blk1=$(do_facet $SINGLEMDS \
13286                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
13287                      grep Blockcount | awk '{print $4}')
13288
13289         # Remove old files, some OI blocks will become idle.
13290         unlinkmany $myDIR/t- 10000
13291         # Create new files, idle OI blocks should be reused.
13292         createmany -o $myDIR/t- 2000
13293         do_facet $SINGLEMDS sync
13294         # Make sure journal flushed.
13295         sleep 6
13296         local blk2=$(do_facet $SINGLEMDS \
13297                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
13298                      grep Blockcount | awk '{print $4}')
13299
13300         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
13301 }
13302 run_test 228a "try to reuse idle OI blocks"
13303
13304 test_228b() {
13305         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13306         remote_mds_nodsh && skip "remote MDS with nodsh" && return
13307         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
13308                 skip "non-ldiskfs backend" && return
13309
13310         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
13311         local myDIR=$DIR/$tdir
13312
13313         mkdir -p $myDIR
13314         #define OBD_FAIL_SEQ_EXHAUST             0x1002
13315         $LCTL set_param fail_loc=0x80001002
13316         createmany -o $myDIR/t- 10000
13317         $LCTL set_param fail_loc=0
13318         # The guard is current the largest FID holder
13319         touch $myDIR/guard
13320         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
13321                     tr -d '[')
13322         local IDX=$(($SEQ % 64))
13323
13324         do_facet $SINGLEMDS sync
13325         # Make sure journal flushed.
13326         sleep 6
13327         local blk1=$(do_facet $SINGLEMDS \
13328                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
13329                      grep Blockcount | awk '{print $4}')
13330
13331         # Remove old files, some OI blocks will become idle.
13332         unlinkmany $myDIR/t- 10000
13333
13334         # stop the MDT
13335         stop $SINGLEMDS || error "Fail to stop MDT."
13336         # remount the MDT
13337         start $SINGLEMDS $MDT_DEV $MDS_MOUNT_OPTS || error "Fail to start MDT."
13338
13339         df $MOUNT || error "Fail to df."
13340         # Create new files, idle OI blocks should be reused.
13341         createmany -o $myDIR/t- 2000
13342         do_facet $SINGLEMDS sync
13343         # Make sure journal flushed.
13344         sleep 6
13345         local blk2=$(do_facet $SINGLEMDS \
13346                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
13347                      grep Blockcount | awk '{print $4}')
13348
13349         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
13350 }
13351 run_test 228b "idle OI blocks can be reused after MDT restart"
13352
13353 #LU-1881
13354 test_228c() {
13355         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13356         remote_mds_nodsh && skip "remote MDS with nodsh" && return
13357         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
13358                 skip "non-ldiskfs backend" && return
13359
13360         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
13361         local myDIR=$DIR/$tdir
13362
13363         mkdir -p $myDIR
13364         #define OBD_FAIL_SEQ_EXHAUST             0x1002
13365         $LCTL set_param fail_loc=0x80001002
13366         # 20000 files can guarantee there are index nodes in the OI file
13367         createmany -o $myDIR/t- 20000
13368         $LCTL set_param fail_loc=0
13369         # The guard is current the largest FID holder
13370         touch $myDIR/guard
13371         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
13372                     tr -d '[')
13373         local IDX=$(($SEQ % 64))
13374
13375         do_facet $SINGLEMDS sync
13376         # Make sure journal flushed.
13377         sleep 6
13378         local blk1=$(do_facet $SINGLEMDS \
13379                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
13380                      grep Blockcount | awk '{print $4}')
13381
13382         # Remove old files, some OI blocks will become idle.
13383         unlinkmany $myDIR/t- 20000
13384         rm -f $myDIR/guard
13385         # The OI file should become empty now
13386
13387         # Create new files, idle OI blocks should be reused.
13388         createmany -o $myDIR/t- 2000
13389         do_facet $SINGLEMDS sync
13390         # Make sure journal flushed.
13391         sleep 6
13392         local blk2=$(do_facet $SINGLEMDS \
13393                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
13394                      grep Blockcount | awk '{print $4}')
13395
13396         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
13397 }
13398 run_test 228c "NOT shrink the last entry in OI index node to recycle idle leaf"
13399
13400 test_229() { # LU-2482, LU-3448
13401         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.53) ] &&
13402                 skip "No HSM $(lustre_build_version $SINGLEMDS) MDS < 2.4.53" &&
13403                 return
13404         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13405         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
13406
13407         rm -f $DIR/$tfile
13408
13409         # Create a file with a released layout and stripe count 2.
13410         $MULTIOP $DIR/$tfile H2c ||
13411                 error "failed to create file with released layout"
13412
13413         $GETSTRIPE -v $DIR/$tfile
13414
13415         local pattern=$($GETSTRIPE -L $DIR/$tfile)
13416         [ X"$pattern" = X"80000001" ] || error "pattern error ($pattern)"
13417
13418         local stripe_count=$($GETSTRIPE -c $DIR/$tfile) || error "getstripe"
13419         [ $stripe_count -eq 2 ] || error "stripe count not 2 ($stripe_count)"
13420         stat $DIR/$tfile || error "failed to stat released file"
13421
13422         chown $RUNAS_ID $DIR/$tfile ||
13423                 error "chown $RUNAS_ID $DIR/$tfile failed"
13424
13425         chgrp $RUNAS_ID $DIR/$tfile ||
13426                 error "chgrp $RUNAS_ID $DIR/$tfile failed"
13427
13428         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
13429         rm $DIR/$tfile || error "failed to remove released file"
13430 }
13431 run_test 229 "getstripe/stat/rm/attr changes work on released files"
13432
13433 test_230a() {
13434         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13435         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13436         local MDTIDX=1
13437
13438         test_mkdir $DIR/$tdir
13439         test_mkdir -i0 -c1 $DIR/$tdir/test_230_local
13440         local mdt_idx=$($GETSTRIPE -M $DIR/$tdir/test_230_local)
13441         [ $mdt_idx -ne 0 ] &&
13442                 error "create local directory on wrong MDT $mdt_idx"
13443
13444         $LFS mkdir -i $MDTIDX $DIR/$tdir/test_230 ||
13445                         error "create remote directory failed"
13446         local mdt_idx=$($GETSTRIPE -M $DIR/$tdir/test_230)
13447         [ $mdt_idx -ne $MDTIDX ] &&
13448                 error "create remote directory on wrong MDT $mdt_idx"
13449
13450         createmany -o $DIR/$tdir/test_230/t- 10 ||
13451                 error "create files on remote directory failed"
13452         mdt_idx=$($GETSTRIPE -M $DIR/$tdir/test_230/t-0)
13453         [ $mdt_idx -ne $MDTIDX ] && error "create files on wrong MDT $mdt_idx"
13454         rm -r $DIR/$tdir || error "unlink remote directory failed"
13455 }
13456 run_test 230a "Create remote directory and files under the remote directory"
13457
13458 test_230b() {
13459         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13460         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13461         local MDTIDX=1
13462         local mdt_index
13463         local i
13464         local file
13465         local pid
13466         local stripe_count
13467         local migrate_dir=$DIR/$tdir/migrate_dir
13468         local other_dir=$DIR/$tdir/other_dir
13469
13470         test_mkdir $DIR/$tdir
13471         test_mkdir -i0 -c1 $migrate_dir
13472         test_mkdir -i0 -c1 $other_dir
13473         for ((i=0; i<10; i++)); do
13474                 mkdir -p $migrate_dir/dir_${i}
13475                 createmany -o $migrate_dir/dir_${i}/f 10 ||
13476                         error "create files under remote dir failed $i"
13477         done
13478
13479         cp /etc/passwd $migrate_dir/$tfile
13480         cp /etc/passwd $other_dir/$tfile
13481         chattr +SAD $migrate_dir
13482         chattr +SAD $migrate_dir/$tfile
13483
13484         local old_dir_flag=$(lsattr -a $migrate_dir | awk '/\/\.$/ {print $1}')
13485         local old_file_flag=$(lsattr $migrate_dir/$tfile | awk '{print $1}')
13486         local old_dir_mode=$(stat -c%f $migrate_dir)
13487         local old_file_mode=$(stat -c%f $migrate_dir/$tfile)
13488
13489         mkdir -p $migrate_dir/dir_default_stripe2
13490         $SETSTRIPE -c 2 $migrate_dir/dir_default_stripe2
13491         $SETSTRIPE -c 2 $migrate_dir/${tfile}_stripe2
13492
13493         mkdir -p $other_dir
13494         ln $migrate_dir/$tfile $other_dir/luna
13495         ln $migrate_dir/$tfile $migrate_dir/sofia
13496         ln $other_dir/$tfile $migrate_dir/david
13497         ln -s $migrate_dir/$tfile $other_dir/zachary
13498         ln -s $migrate_dir/$tfile $migrate_dir/${tfile}_ln
13499         ln -s $other_dir/$tfile $migrate_dir/${tfile}_ln_other
13500
13501         $LFS migrate -m $MDTIDX $migrate_dir ||
13502                 error "fails on migrating remote dir to MDT1"
13503
13504         echo "migratate to MDT1, then checking.."
13505         for ((i = 0; i < 10; i++)); do
13506                 for file in $(find $migrate_dir/dir_${i}); do
13507                         mdt_index=$($LFS getstripe -M $file)
13508                         [ $mdt_index == $MDTIDX ] ||
13509                                 error "$file is not on MDT${MDTIDX}"
13510                 done
13511         done
13512
13513         # the multiple link file should still in MDT0
13514         mdt_index=$($LFS getstripe -M $migrate_dir/$tfile)
13515         [ $mdt_index == 0 ] ||
13516                 error "$file is not on MDT${MDTIDX}"
13517
13518         local new_dir_flag=$(lsattr -a $migrate_dir | awk '/\/\.$/ {print $1}')
13519         [ "$old_dir_flag" = "$new_dir_flag" ] ||
13520                 error " expect $old_dir_flag get $new_dir_flag"
13521
13522         local new_file_flag=$(lsattr $migrate_dir/$tfile | awk '{print $1}')
13523         [ "$old_file_flag" = "$new_file_flag" ] ||
13524                 error " expect $old_file_flag get $new_file_flag"
13525
13526         local new_dir_mode=$(stat -c%f $migrate_dir)
13527         [ "$old_dir_mode" = "$new_dir_mode" ] ||
13528                 error "expect mode $old_dir_mode get $new_dir_mode"
13529
13530         local new_file_mode=$(stat -c%f $migrate_dir/$tfile)
13531         [ "$old_file_mode" = "$new_file_mode" ] ||
13532                 error "expect mode $old_file_mode get $new_file_mode"
13533
13534         diff /etc/passwd $migrate_dir/$tfile ||
13535                 error "$tfile different after migration"
13536
13537         diff /etc/passwd $other_dir/luna ||
13538                 error "luna different after migration"
13539
13540         diff /etc/passwd $migrate_dir/sofia ||
13541                 error "sofia different after migration"
13542
13543         diff /etc/passwd $migrate_dir/david ||
13544                 error "david different after migration"
13545
13546         diff /etc/passwd $other_dir/zachary ||
13547                 error "zachary different after migration"
13548
13549         diff /etc/passwd $migrate_dir/${tfile}_ln ||
13550                 error "${tfile}_ln different after migration"
13551
13552         diff /etc/passwd $migrate_dir/${tfile}_ln_other ||
13553                 error "${tfile}_ln_other different after migration"
13554
13555         stripe_count=$($LFS getstripe -c $migrate_dir/dir_default_stripe2)
13556         [ $stripe_count = 2 ] ||
13557                 error "dir strpe_count $d != 2 after migration."
13558
13559         stripe_count=$($LFS getstripe -c $migrate_dir/${tfile}_stripe2)
13560         [ $stripe_count = 2 ] ||
13561                 error "file strpe_count $d != 2 after migration."
13562
13563         #migrate back to MDT0
13564         MDTIDX=0
13565
13566         $LFS migrate -m $MDTIDX $migrate_dir ||
13567                 error "fails on migrating remote dir to MDT0"
13568
13569         echo "migrate back to MDT0, checking.."
13570         for file in $(find $migrate_dir); do
13571                 mdt_index=$($LFS getstripe -M $file)
13572                 [ $mdt_index == $MDTIDX ] ||
13573                         error "$file is not on MDT${MDTIDX}"
13574         done
13575
13576         local new_dir_flag=$(lsattr -a $migrate_dir | awk '/\/\.$/ {print $1}')
13577         [ "$old_dir_flag" = "$new_dir_flag" ] ||
13578                 error " expect $old_dir_flag get $new_dir_flag"
13579
13580         local new_file_flag=$(lsattr $migrate_dir/$tfile | awk '{print $1}')
13581         [ "$old_file_flag" = "$new_file_flag" ] ||
13582                 error " expect $old_file_flag get $new_file_flag"
13583
13584         local new_dir_mode=$(stat -c%f $migrate_dir)
13585         [ "$old_dir_mode" = "$new_dir_mode" ] ||
13586                 error "expect mode $old_dir_mode get $new_dir_mode"
13587
13588         local new_file_mode=$(stat -c%f $migrate_dir/$tfile)
13589         [ "$old_file_mode" = "$new_file_mode" ] ||
13590                 error "expect mode $old_file_mode get $new_file_mode"
13591
13592         diff /etc/passwd ${migrate_dir}/$tfile ||
13593                 error "$tfile different after migration"
13594
13595         diff /etc/passwd ${other_dir}/luna ||
13596                 error "luna different after migration"
13597
13598         diff /etc/passwd ${migrate_dir}/sofia ||
13599                 error "sofia different after migration"
13600
13601         diff /etc/passwd ${other_dir}/zachary ||
13602                 error "zachary different after migration"
13603
13604         diff /etc/passwd $migrate_dir/${tfile}_ln ||
13605                 error "${tfile}_ln different after migration"
13606
13607         diff /etc/passwd $migrate_dir/${tfile}_ln_other ||
13608                 error "${tfile}_ln_other different after migration"
13609
13610         stripe_count=$($LFS getstripe -c ${migrate_dir}/dir_default_stripe2)
13611         [ $stripe_count = 2 ] ||
13612                 error "dir strpe_count $d != 2 after migration."
13613
13614         stripe_count=$($LFS getstripe -c ${migrate_dir}/${tfile}_stripe2)
13615         [ $stripe_count = 2 ] ||
13616                 error "file strpe_count $d != 2 after migration."
13617
13618         rm -rf $DIR/$tdir || error "rm dir failed after migration"
13619 }
13620 run_test 230b "migrate directory"
13621
13622 test_230c() {
13623         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13624         remote_mds_nodsh && skip "remote MDS with nodsh" && return
13625         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13626         local MDTIDX=1
13627         local mdt_index
13628         local file
13629         local migrate_dir=$DIR/$tdir/migrate_dir
13630
13631         #If migrating directory fails in the middle, all entries of
13632         #the directory is still accessiable.
13633         test_mkdir $DIR/$tdir
13634         test_mkdir -i0 -c1 $migrate_dir
13635         stat $migrate_dir
13636         createmany -o $migrate_dir/f 10 ||
13637                 error "create files under ${migrate_dir} failed"
13638
13639         #failed after migrating 5 entries
13640         #OBD_FAIL_MIGRATE_ENTRIES       0x1801
13641         do_facet mds1 lctl set_param fail_loc=0x20001801
13642         do_facet mds1 lctl  set_param fail_val=5
13643         local t=$(ls $migrate_dir | wc -l)
13644         $LFS migrate --mdt-index $MDTIDX $migrate_dir &&
13645                 error "migrate should fail after 5 entries"
13646
13647         mkdir $migrate_dir/dir &&
13648                 error "mkdir succeeds under migrating directory"
13649         touch $migrate_dir/file &&
13650                 error "touch file succeeds under migrating directory"
13651
13652         local u=$(ls $migrate_dir | wc -l)
13653         [ "$u" == "$t" ] || error "$u != $t during migration"
13654
13655         for file in $(find $migrate_dir); do
13656                 stat $file || error "stat $file failed"
13657         done
13658
13659         do_facet mds1 lctl set_param fail_loc=0
13660         do_facet mds1 lctl set_param fail_val=0
13661
13662         $LFS migrate -m $MDTIDX $migrate_dir ||
13663                 error "migrate open files should failed with open files"
13664
13665         echo "Finish migration, then checking.."
13666         for file in $(find $migrate_dir); do
13667                 mdt_index=$($LFS getstripe -M $file)
13668                 [ $mdt_index == $MDTIDX ] ||
13669                         error "$file is not on MDT${MDTIDX}"
13670         done
13671
13672         rm -rf $DIR/$tdir || error "rm dir failed after migration"
13673 }
13674 run_test 230c "check directory accessiblity if migration is failed"
13675
13676 test_230d() {
13677         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13678         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13679         local MDTIDX=1
13680         local mdt_index
13681         local migrate_dir=$DIR/$tdir/migrate_dir
13682         local i
13683         local j
13684
13685         test_mkdir $DIR/$tdir
13686         test_mkdir -i0 -c1 $migrate_dir
13687
13688         for ((i=0; i<100; i++)); do
13689                 test_mkdir -i0 -c1 $migrate_dir/dir_${i}
13690                 createmany -o $migrate_dir/dir_${i}/f 100 ||
13691                         error "create files under remote dir failed $i"
13692         done
13693
13694         $LFS migrate -m $MDTIDX $migrate_dir ||
13695                 error "migrate remote dir error"
13696
13697         echo "Finish migration, then checking.."
13698         for file in $(find $migrate_dir); do
13699                 mdt_index=$($LFS getstripe -M $file)
13700                 [ $mdt_index == $MDTIDX ] ||
13701                         error "$file is not on MDT${MDTIDX}"
13702         done
13703
13704         rm -rf $DIR/$tdir || error "rm dir failed after migration"
13705 }
13706 run_test 230d "check migrate big directory"
13707
13708 test_230e() {
13709         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13710         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13711         local i
13712         local j
13713         local a_fid
13714         local b_fid
13715
13716         mkdir -p $DIR/$tdir
13717         mkdir $DIR/$tdir/migrate_dir
13718         mkdir $DIR/$tdir/other_dir
13719         touch $DIR/$tdir/migrate_dir/a
13720         ln $DIR/$tdir/migrate_dir/a $DIR/$tdir/other_dir/b
13721         ls $DIR/$tdir/other_dir
13722
13723         $LFS migrate -m 1 $DIR/$tdir/migrate_dir ||
13724                 error "migrate dir fails"
13725
13726         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir)
13727         [ $mdt_index == 1 ] || error "migrate_dir is not on MDT1"
13728
13729         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir/a)
13730         [ $mdt_index == 0 ] || error "a is not on MDT0"
13731
13732         $LFS migrate -m 1 $DIR/$tdir/other_dir ||
13733                 error "migrate dir fails"
13734
13735         mdt_index=$($LFS getstripe -M $DIR/$tdir/other_dir)
13736         [ $mdt_index == 1 ] || error "other_dir is not on MDT1"
13737
13738         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir/a)
13739         [ $mdt_index == 1 ] || error "a is not on MDT1"
13740
13741         mdt_index=$($LFS getstripe -M $DIR/$tdir/other_dir/b)
13742         [ $mdt_index == 1 ] || error "b is not on MDT1"
13743
13744         a_fid=$($LFS path2fid $DIR/$tdir/migrate_dir/a)
13745         b_fid=$($LFS path2fid $DIR/$tdir/other_dir/b)
13746
13747         [ "$a_fid" = "$b_fid" ] || error "different fid after migration"
13748
13749         rm -rf $DIR/$tdir || error "rm dir failed after migration"
13750 }
13751 run_test 230e "migrate mulitple local link files"
13752
13753 test_230f() {
13754         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13755         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13756         local a_fid
13757         local ln_fid
13758
13759         mkdir -p $DIR/$tdir
13760         mkdir $DIR/$tdir/migrate_dir
13761         $LFS mkdir -i1 $DIR/$tdir/other_dir
13762         touch $DIR/$tdir/migrate_dir/a
13763         ln $DIR/$tdir/migrate_dir/a $DIR/$tdir/other_dir/ln1
13764         ln $DIR/$tdir/migrate_dir/a $DIR/$tdir/other_dir/ln2
13765         ls $DIR/$tdir/other_dir
13766
13767         # a should be migrated to MDT1, since no other links on MDT0
13768         $LFS migrate -m 1 $DIR/$tdir/migrate_dir ||
13769                 error "#1 migrate dir fails"
13770         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir)
13771         [ $mdt_index == 1 ] || error "migrate_dir is not on MDT1"
13772         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir/a)
13773         [ $mdt_index == 1 ] || error "a is not on MDT1"
13774
13775         # a should stay on MDT1, because it is a mulitple link file
13776         $LFS migrate -m 0 $DIR/$tdir/migrate_dir ||
13777                 error "#2 migrate dir fails"
13778         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir/a)
13779         [ $mdt_index == 1 ] || error "a is not on MDT1"
13780
13781         $LFS migrate -m 1 $DIR/$tdir/migrate_dir ||
13782                 error "#3 migrate dir fails"
13783
13784         a_fid=$($LFS path2fid $DIR/$tdir/migrate_dir/a)
13785         ln_fid=$($LFS path2fid $DIR/$tdir/other_dir/ln1)
13786         [ "$a_fid" = "$ln_fid" ] || error "different fid after migrate to MDT1"
13787
13788         rm -rf $DIR/$tdir/other_dir/ln1 || error "unlink ln1 fails"
13789         rm -rf $DIR/$tdir/other_dir/ln2 || error "unlink ln2 fails"
13790
13791         # a should be migrated to MDT0, since no other links on MDT1
13792         $LFS migrate -m 0 $DIR/$tdir/migrate_dir ||
13793                 error "#4 migrate dir fails"
13794         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir/a)
13795         [ $mdt_index == 0 ] || error "a is not on MDT0"
13796
13797         rm -rf $DIR/$tdir || error "rm dir failed after migration"
13798 }
13799 run_test 230f "migrate mulitple remote link files"
13800
13801 test_230g() {
13802         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13803         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13804
13805         mkdir -p $DIR/$tdir/migrate_dir
13806
13807         $LFS migrate -m 1000 $DIR/$tdir/migrate_dir &&
13808                 error "migrating dir to non-exist MDT succeeds"
13809         true
13810 }
13811 run_test 230g "migrate dir to non-exist MDT"
13812
13813 test_230h() {
13814         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13815         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13816         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.64) ] &&
13817                 skip "Need MDS version at least 2.7.64" && return
13818         local mdt_index
13819
13820         mkdir -p $DIR/$tdir/migrate_dir
13821
13822         $LFS migrate -m1 $DIR &&
13823                 error "migrating mountpoint1 should fail"
13824
13825         $LFS migrate -m1 $DIR/$tdir/.. &&
13826                 error "migrating mountpoint2 should fail"
13827
13828         $LFS migrate -m1 $DIR/$tdir/migrate_dir/.. ||
13829                 error "migrating $tdir fail"
13830
13831         mdt_index=$($LFS getstripe -M $DIR/$tdir)
13832         [ $mdt_index == 1 ] || error "$mdt_index != 1 after migration"
13833
13834         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir)
13835         [ $mdt_index == 1 ] || error "$mdt_index != 1 after migration"
13836
13837 }
13838 run_test 230h "migrate .. and root"
13839
13840 test_230i() {
13841         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13842         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13843
13844         mkdir -p $DIR/$tdir/migrate_dir
13845
13846         $LFS migrate -m 1 $DIR/$tdir/migrate_dir/ ||
13847                 error "migration fails with a tailing slash"
13848
13849         $LFS migrate -m 0 $DIR/$tdir/migrate_dir// ||
13850                 error "migration fails with two tailing slashes"
13851 }
13852 run_test 230i "lfs migrate -m tolerates trailing slashes"
13853
13854 test_231a()
13855 {
13856         # For simplicity this test assumes that max_pages_per_rpc
13857         # is the same across all OSCs
13858         local max_pages=$($LCTL get_param -n osc.*.max_pages_per_rpc | head -n1)
13859         local bulk_size=$((max_pages * 4096))
13860         local brw_size=$(do_facet ost1 $LCTL get_param -n obdfilter.*.brw_size |
13861                                        head -n 1)
13862
13863         mkdir -p $DIR/$tdir
13864         $LFS setstripe -S ${brw_size}M $DIR/$tdir ||
13865                 error "failed to set stripe with -S ${brw_size}M option"
13866
13867         # clear the OSC stats
13868         $LCTL set_param osc.*.stats=0 &>/dev/null
13869         stop_writeback
13870
13871         # Client writes $bulk_size - there must be 1 rpc for $max_pages.
13872         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=$bulk_size count=1 \
13873                 oflag=direct &>/dev/null || error "dd failed"
13874
13875         sync; sleep 1; sync # just to be safe
13876         local nrpcs=$($LCTL get_param osc.*.stats |awk '/ost_write/ {print $2}')
13877         if [ x$nrpcs != "x1" ]; then
13878                 $LCTL get_param osc.*.stats
13879                 error "found $nrpcs ost_write RPCs, not 1 as expected"
13880         fi
13881
13882         start_writeback
13883         # Drop the OSC cache, otherwise we will read from it
13884         cancel_lru_locks osc
13885
13886         # clear the OSC stats
13887         $LCTL set_param osc.*.stats=0 &>/dev/null
13888
13889         # Client reads $bulk_size.
13890         dd if=$DIR/$tdir/$tfile of=/dev/null bs=$bulk_size count=1 \
13891                 iflag=direct &>/dev/null || error "dd failed"
13892
13893         nrpcs=$($LCTL get_param osc.*.stats | awk '/ost_read/ { print $2 }')
13894         if [ x$nrpcs != "x1" ]; then
13895                 $LCTL get_param osc.*.stats
13896                 error "found $nrpcs ost_read RPCs, not 1 as expected"
13897         fi
13898 }
13899 run_test 231a "checking that reading/writing of BRW RPC size results in one RPC"
13900
13901 test_231b() {
13902         mkdir -p $DIR/$tdir
13903         local i
13904         for i in {0..1023}; do
13905                 dd if=/dev/zero of=$DIR/$tdir/$tfile conv=notrunc \
13906                         seek=$((2 * i)) bs=4096 count=1 &>/dev/null ||
13907                         error "dd of=$DIR/$tdir/$tfile seek=$((2 * i)) failed"
13908         done
13909         sync
13910 }
13911 run_test 231b "must not assert on fully utilized OST request buffer"
13912
13913 test_232() {
13914         mkdir -p $DIR/$tdir
13915         #define OBD_FAIL_LDLM_OST_LVB            0x31c
13916         $LCTL set_param fail_loc=0x31c
13917
13918         # ignore dd failure
13919         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=1 || true
13920
13921         $LCTL set_param fail_loc=0
13922         umount_client $MOUNT || error "umount failed"
13923         mount_client $MOUNT || error "mount failed"
13924 }
13925 run_test 232 "failed lock should not block umount"
13926
13927 test_233a() {
13928         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.64) ] ||
13929         { skip "Need MDS version at least 2.3.64"; return; }
13930         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
13931
13932         local fid=$($LFS path2fid $MOUNT)
13933         stat $MOUNT/.lustre/fid/$fid > /dev/null ||
13934                 error "cannot access $MOUNT using its FID '$fid'"
13935 }
13936 run_test 233a "checking that OBF of the FS root succeeds"
13937
13938 test_233b() {
13939         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.5.90) ] ||
13940         { skip "Need MDS version at least 2.5.90"; return; }
13941         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
13942
13943         local fid=$($LFS path2fid $MOUNT/.lustre)
13944         stat $MOUNT/.lustre/fid/$fid > /dev/null ||
13945                 error "cannot access $MOUNT/.lustre using its FID '$fid'"
13946
13947         fid=$($LFS path2fid $MOUNT/.lustre/fid)
13948         stat $MOUNT/.lustre/fid/$fid > /dev/null ||
13949                 error "cannot access $MOUNT/.lustre/fid using its FID '$fid'"
13950 }
13951 run_test 233b "checking that OBF of the FS .lustre succeeds"
13952
13953 test_234() {
13954         local p="$TMP/sanityN-$TESTNAME.parameters"
13955         save_lustre_params client "llite.*.xattr_cache" > $p
13956         lctl set_param llite.*.xattr_cache 1 ||
13957                 { skip "xattr cache is not supported"; return 0; }
13958
13959         mkdir -p $DIR/$tdir || error "mkdir failed"
13960         touch $DIR/$tdir/$tfile || error "touch failed"
13961         # OBD_FAIL_LLITE_XATTR_ENOMEM
13962         $LCTL set_param fail_loc=0x1405
13963         # output of the form: attr 2 4 44 3 fc13 x86_64
13964         V=($(IFS=".-" rpm -q attr))
13965         if [[ ${V[1]} > 2 || ${V[2]} > 4 || ${V[3]} > 44 ||
13966               ${V[1]} = 2 && ${V[2]} = 4 && ${V[3]} = 44 && ${V[4]} > 6 ]]; then
13967                 # attr pre-2.4.44-7 had a bug with rc
13968                 # LU-3703 - SLES 11 and FC13 clients have older attr
13969                 getfattr -n user.attr $DIR/$tdir/$tfile &&
13970                         error "getfattr should have failed with ENOMEM"
13971         else
13972                 skip "LU-3703: attr version $(getfattr --version) too old"
13973         fi
13974         $LCTL set_param fail_loc=0x0
13975         rm -rf $DIR/$tdir
13976
13977         restore_lustre_params < $p
13978         rm -f $p
13979 }
13980 run_test 234 "xattr cache should not crash on ENOMEM"
13981
13982 test_235() {
13983         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.52) ] &&
13984                 skip "Need MDS version at least 2.4.52" && return
13985         flock_deadlock $DIR/$tfile
13986         local RC=$?
13987         case $RC in
13988                 0)
13989                 ;;
13990                 124) error "process hangs on a deadlock"
13991                 ;;
13992                 *) error "error executing flock_deadlock $DIR/$tfile"
13993                 ;;
13994         esac
13995 }
13996 run_test 235 "LU-1715: flock deadlock detection does not work properly"
13997
13998 #LU-2935
13999 test_236() {
14000         check_swap_layouts_support && return 0
14001         test_mkdir -p -c1 $DIR/$tdir || error "mkdir $tdir failed"
14002
14003         local ref1=/etc/passwd
14004         local ref2=/etc/group
14005         local file1=$DIR/$tdir/f1
14006         local file2=$DIR/$tdir/f2
14007
14008         $SETSTRIPE -c 1 $file1 || error "cannot setstripe on '$file1': rc = $?"
14009         cp $ref1 $file1 || error "cp $ref1 $file1 failed: rc = $?"
14010         $SETSTRIPE -c 2 $file2 || error "cannot setstripe on '$file2': rc = $?"
14011         cp $ref2 $file2 || error "cp $ref2 $file2 failed: rc = $?"
14012         local fd=$(free_fd)
14013         local cmd="exec $fd<>$file2"
14014         eval $cmd
14015         rm $file2
14016         $LFS swap_layouts $file1 /proc/self/fd/${fd} ||
14017                 error "cannot swap layouts of '$file1' and /proc/self/fd/${fd}"
14018         cmd="exec $fd>&-"
14019         eval $cmd
14020         cmp $ref2 $file1 || error "content compare failed ($ref2 != $file1)"
14021
14022         #cleanup
14023         rm -rf $DIR/$tdir
14024 }
14025 run_test 236 "Layout swap on open unlinked file"
14026
14027 # test to verify file handle related system calls
14028 # (name_to_handle_at/open_by_handle_at)
14029 # The new system calls are supported in glibc >= 2.14.
14030
14031 test_237() {
14032         echo "Test file_handle syscalls" > $DIR/$tfile ||
14033                 error "write failed"
14034         check_fhandle_syscalls $DIR/$tfile ||
14035                 error "check_fhandle_syscalls failed"
14036 }
14037 run_test 237 "Verify name_to_handle_at/open_by_handle_at syscalls"
14038
14039 # LU-4659 linkea consistency
14040 test_238() {
14041         local server_version=$(lustre_version_code $SINGLEMDS)
14042
14043         [[ $server_version -gt $(version_code 2.5.57) ]] ||
14044                 [[ $server_version -gt $(version_code 2.5.1) &&
14045                    $server_version -lt $(version_code 2.5.50) ]] ||
14046                 { skip "Need MDS version at least 2.5.58 or 2.5.2+"; return; }
14047
14048         touch $DIR/$tfile
14049         ln $DIR/$tfile $DIR/$tfile.lnk
14050         touch $DIR/$tfile.new
14051         mv $DIR/$tfile.new $DIR/$tfile
14052         local fid1=$($LFS path2fid $DIR/$tfile)
14053         local fid2=$($LFS path2fid $DIR/$tfile.lnk)
14054         local path1=$($LFS fid2path $FSNAME "$fid1")
14055         [ $tfile == $path1 ] || error "linkea inconsistent: $tfile $fid1 $path1"
14056         local path2=$($LFS fid2path $FSNAME "$fid2")
14057         [ $tfile.lnk == $path2 ] ||
14058                 error "linkea inconsistent: $tfile.lnk $fid2 $path2!"
14059         rm -f $DIR/$tfile*
14060 }
14061 run_test 238 "Verify linkea consistency"
14062
14063 test_239() {
14064         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.5.60) ] &&
14065                 skip "Need MDS version at least 2.5.60" && return
14066         local list=$(comma_list $(mdts_nodes))
14067
14068         mkdir -p $DIR/$tdir
14069         createmany -o $DIR/$tdir/f- 5000
14070         unlinkmany $DIR/$tdir/f- 5000
14071         do_nodes $list "lctl set_param -n osp*.*.sync_changes 1"
14072         changes=$(do_nodes $list "lctl get_param -n osc.*MDT*.sync_changes \
14073                         osc.*MDT*.sync_in_flight" | calc_sum)
14074         [ "$changes" -eq 0 ] || error "$changes not synced"
14075 }
14076 run_test 239 "osp_sync test"
14077
14078 test_239a() { #LU-5297
14079         remote_mds_nodsh && skip "remote MDS with nodsh" && return
14080         touch $DIR/$tfile
14081         #define OBD_FAIL_OSP_CHECK_INVALID_REC     0x2100
14082         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x2100
14083         chgrp $RUNAS_GID $DIR/$tfile
14084         wait_delete_completed
14085 }
14086 run_test 239a "process invalid osp sync record correctly"
14087
14088 test_239b() { #LU-5297
14089         remote_mds_nodsh && skip "remote MDS with nodsh" && return
14090         touch $DIR/$tfile1
14091         #define OBD_FAIL_OSP_CHECK_ENOMEM     0x2101
14092         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x2101
14093         chgrp $RUNAS_GID $DIR/$tfile1
14094         wait_delete_completed
14095         do_facet $SINGLEMDS $LCTL set_param fail_loc=0
14096         touch $DIR/$tfile2
14097         chgrp $RUNAS_GID $DIR/$tfile2
14098         wait_delete_completed
14099 }
14100 run_test 239b "process osp sync record with ENOMEM error correctly"
14101
14102 test_240() {
14103         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
14104         remote_mds_nodsh && skip "remote MDS with nodsh" && return
14105
14106         mkdir -p $DIR/$tdir
14107
14108         $LFS mkdir -i 0 $DIR/$tdir/d0 ||
14109                 error "failed to mkdir $DIR/$tdir/d0 on MDT0"
14110         $LFS mkdir -i 1 $DIR/$tdir/d0/d1 ||
14111                 error "failed to mkdir $DIR/$tdir/d0/d1 on MDT1"
14112
14113         umount_client $MOUNT || error "umount failed"
14114         #define OBD_FAIL_TGT_DELAY_CONDITIONAL   0x713
14115         do_facet mds2 lctl set_param fail_loc=0x713 fail_val=1
14116         mount_client $MOUNT || error "failed to mount client"
14117
14118         echo "stat $DIR/$tdir/d0/d1, should not fail/ASSERT"
14119         stat $DIR/$tdir/d0/d1 || error "fail to stat $DIR/$tdir/d0/d1"
14120 }
14121 run_test 240 "race between ldlm enqueue and the connection RPC (no ASSERT)"
14122
14123 test_241_bio() {
14124         for LOOP in $(seq $1); do
14125                 dd if=$DIR/$tfile of=/dev/null bs=40960 count=1 2>/dev/null
14126                 cancel_lru_locks osc || true
14127         done
14128 }
14129
14130 test_241_dio() {
14131         for LOOP in $(seq $1); do
14132                 dd if=$DIR/$tfile of=/dev/null bs=40960 count=1 \
14133                                                 iflag=direct 2>/dev/null
14134         done
14135 }
14136
14137 test_241a() { # was test_241
14138         dd if=/dev/zero of=$DIR/$tfile count=1 bs=40960
14139         ls -la $DIR/$tfile
14140         cancel_lru_locks osc
14141         test_241_bio 1000 &
14142         PID=$!
14143         test_241_dio 1000
14144         wait $PID
14145 }
14146 run_test 241a "bio vs dio"
14147
14148 test_241b() {
14149         dd if=/dev/zero of=$DIR/$tfile count=1 bs=40960
14150         ls -la $DIR/$tfile
14151         test_241_dio 1000 &
14152         PID=$!
14153         test_241_dio 1000
14154         wait $PID
14155 }
14156 run_test 241b "dio vs dio"
14157
14158 test_242() {
14159         remote_mds_nodsh && skip "remote MDS with nodsh" && return
14160         mkdir -p $DIR/$tdir
14161         touch $DIR/$tdir/$tfile
14162
14163         #define OBD_FAIL_MDS_READPAGE_PACK      0x105
14164         do_facet mds1 lctl set_param fail_loc=0x105
14165         /bin/ls $DIR/$tdir && error "ls $DIR/$tdir should fail"
14166
14167         do_facet mds1 lctl set_param fail_loc=0
14168         /bin/ls $DIR/$tdir || error "ls $DIR/$tdir failed"
14169 }
14170 run_test 242 "mdt_readpage failure should not cause directory unreadable"
14171
14172 test_243()
14173 {
14174         test_mkdir -p $DIR/$tdir
14175         group_lock_test -d $DIR/$tdir || error "A group lock test failed"
14176 }
14177 run_test 243 "various group lock tests"
14178
14179 test_244()
14180 {
14181         test_mkdir -p $DIR/$tdir
14182         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=35
14183         sendfile_grouplock $DIR/$tdir/$tfile || \
14184                 error "sendfile+grouplock failed"
14185         rm -rf $DIR/$tdir
14186 }
14187 run_test 244 "sendfile with group lock tests"
14188
14189 test_245() {
14190         local flagname="multi_mod_rpcs"
14191         local connect_data_name="max_mod_rpcs"
14192         local out
14193
14194         # check if multiple modify RPCs flag is set
14195         out=$($LCTL get_param mdc.$FSNAME-MDT0000-*.import |
14196                 grep "connect_flags:")
14197         echo "$out"
14198
14199         echo "$out" | grep -qw $flagname
14200         if [ $? -ne 0 ]; then
14201                 echo "connect flag $flagname is not set"
14202                 return
14203         fi
14204
14205         # check if multiple modify RPCs data is set
14206         out=$($LCTL get_param mdc.$FSNAME-MDT0000-*.import)
14207         echo "$out"
14208
14209         echo "$out" | grep -qw $connect_data_name ||
14210                 error "import should have connect data $connect_data_name"
14211 }
14212 run_test 245 "check mdc connection flag/data: multiple modify RPCs"
14213
14214 test_246() { # LU-7371
14215         remote_ost_nodsh && skip "remote OST with nodsh" && return
14216         [ $(lustre_version_code ost1) -lt $(version_code 2.7.62) ] &&
14217                 skip "Need OST version >= 2.7.62" && return 0
14218         do_facet ost1 $LCTL set_param fail_val=4095
14219 #define OBD_FAIL_OST_READ_SIZE          0x234
14220         do_facet ost1 $LCTL set_param fail_loc=0x234
14221         $LFS setstripe $DIR/$tfile -i 0 -c 1
14222         dd if=/dev/zero of=$DIR/$tfile bs=4095 count=1 > /dev/null 2>&1
14223         cancel_lru_locks $FSNAME-OST0000
14224         dd if=$DIR/$tfile of=/dev/null bs=1048576 || error "Read failed"
14225 }
14226 run_test 246 "Read file of size 4095 should return right length"
14227
14228 test_247a() {
14229         lctl get_param -n mdc.$FSNAME-MDT0000*.import |
14230                 grep -q subtree ||
14231                 { skip "Fileset feature is not supported"; return; }
14232
14233         local submount=${MOUNT}_$tdir
14234
14235         mkdir $MOUNT/$tdir
14236         mkdir -p $submount || error "mkdir $submount failed"
14237         FILESET="$FILESET/$tdir" mount_client $submount ||
14238                 error "mount $submount failed"
14239         echo foo > $submount/$tfile || error "write $submount/$tfile failed"
14240         [ $(cat $MOUNT/$tdir/$tfile) = "foo" ] ||
14241                 error "read $MOUNT/$tdir/$tfile failed"
14242         umount_client $submount || error "umount $submount failed"
14243         rmdir $submount
14244 }
14245 run_test 247a "mount subdir as fileset"
14246
14247 test_247b() {
14248         lctl get_param -n mdc.$FSNAME-MDT0000*.import | grep -q subtree ||
14249                 { skip "Fileset feature is not supported"; return; }
14250
14251         local submount=${MOUNT}_$tdir
14252
14253         rm -rf $MOUNT/$tdir
14254         mkdir -p $submount || error "mkdir $submount failed"
14255         SKIP_FILESET=1
14256         FILESET="$FILESET/$tdir" mount_client $submount &&
14257                 error "mount $submount should fail"
14258         rmdir $submount
14259 }
14260 run_test 247b "mount subdir that dose not exist"
14261
14262 test_247c() {
14263         lctl get_param -n mdc.$FSNAME-MDT0000*.import | grep -q subtree ||
14264                 { skip "Fileset feature is not supported"; return; }
14265
14266         local submount=${MOUNT}_$tdir
14267
14268         mkdir -p $MOUNT/$tdir/dir1
14269         mkdir -p $submount || error "mkdir $submount failed"
14270         FILESET="$FILESET/$tdir" mount_client $submount ||
14271                 error "mount $submount failed"
14272         local fid=$($LFS path2fid $MOUNT/)
14273         $LFS fid2path $submount $fid && error "fid2path should fail"
14274         umount_client $submount || error "umount $submount failed"
14275         rmdir $submount
14276 }
14277 run_test 247c "running fid2path outside root"
14278
14279 test_247d() {
14280         lctl get_param -n mdc.$FSNAME-MDT0000*.import | grep -q subtree ||
14281                 { skip "Fileset feature is not supported"; return; }
14282
14283         local submount=${MOUNT}_$tdir
14284
14285         mkdir -p $MOUNT/$tdir/dir1
14286         mkdir -p $submount || error "mkdir $submount failed"
14287         FILESET="$FILESET/$tdir" mount_client $submount ||
14288                 error "mount $submount failed"
14289         local fid=$($LFS path2fid $submount/dir1)
14290         $LFS fid2path $submount $fid || error "fid2path should succeed"
14291         umount_client $submount || error "umount $submount failed"
14292         rmdir $submount
14293 }
14294 run_test 247d "running fid2path inside root"
14295
14296 # LU-8037
14297 test_247e() {
14298         lctl get_param -n mdc.$FSNAME-MDT0000*.import |
14299                 grep -q subtree ||
14300                 { skip "Fileset feature is not supported"; return; }
14301
14302         local submount=${MOUNT}_$tdir
14303
14304         mkdir $MOUNT/$tdir
14305         mkdir -p $submount || error "mkdir $submount failed"
14306         FILESET="$FILESET/.." mount_client $submount &&
14307                 error "mount $submount should fail"
14308         rmdir $submount
14309 }
14310 run_test 247e "mount .. as fileset"
14311
14312 test_248() {
14313         local fast_read_sav=$($LCTL get_param -n llite.*.fast_read 2>/dev/null)
14314         [ -z "$fast_read_sav" ] && skip "no fast read support" && return
14315
14316         # create a large file for fast read verification
14317         dd if=/dev/zero of=$DIR/$tfile bs=1M count=128 > /dev/null 2>&1
14318
14319         # make sure the file is created correctly
14320         $CHECKSTAT -s $((128*1024*1024)) $DIR/$tfile ||
14321                 { rm -f $DIR/$tfile; skip "file creation error" && return; }
14322
14323         echo "Test 1: verify that fast read is 4 times faster on cache read"
14324
14325         # small read with fast read enabled
14326         $LCTL set_param -n llite.*.fast_read=1
14327         local t_fast=$(dd if=$DIR/$tfile of=/dev/null bs=4k 2>&1 |
14328                 awk '/copied/ { print $6 }')
14329
14330         # small read with fast read disabled
14331         $LCTL set_param -n llite.*.fast_read=0
14332         local t_slow=$(dd if=$DIR/$tfile of=/dev/null bs=4k 2>&1 |
14333                 awk '/copied/ { print $6 }')
14334
14335         # verify that fast read is 4 times faster for cache read
14336         [ $(bc <<< "4 * $t_fast < $t_slow") -eq 1 ] ||
14337                 error_not_in_vm "fast read was not 4 times faster: " \
14338                            "$t_fast vs $t_slow"
14339
14340         echo "Test 2: verify the performance between big and small read"
14341         $LCTL set_param -n llite.*.fast_read=1
14342
14343         # 1k non-cache read
14344         cancel_lru_locks osc
14345         local t_1k=$(dd if=$DIR/$tfile of=/dev/null bs=1k 2>&1 |
14346                 awk '/copied/ { print $6 }')
14347
14348         # 1M non-cache read
14349         cancel_lru_locks osc
14350         local t_1m=$(dd if=$DIR/$tfile of=/dev/null bs=1k 2>&1 |
14351                 awk '/copied/ { print $6 }')
14352
14353         # verify that big IO is not 4 times faster than small IO
14354         [ $(bc <<< "4 * $t_1k >= $t_1m") -eq 1 ] ||
14355                 error_not_in_vm "bigger IO is way too fast: $t_1k vs $t_1m"
14356
14357         $LCTL set_param -n llite.*.fast_read=$fast_read_sav
14358         rm -f $DIR/$tfile
14359 }
14360 run_test 248 "fast read verification"
14361
14362 test_249() { # LU-7890
14363         rm -f $DIR/$tfile
14364         $SETSTRIPE -c 1 $DIR/$tfile
14365
14366         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.53) ] &&
14367         skip "Need at least version 2.8.54"
14368
14369         # Offset 2T == 4k * 512M
14370         dd if=/dev/zero of=$DIR/$tfile bs=4k count=1 seek=512M ||
14371                 error "dd to 2T offset failed"
14372 }
14373 run_test 249 "Write above 2T file size"
14374
14375 test_250() {
14376         [ "$(facet_fstype ost$(($($GETSTRIPE -i $DIR/$tfile) + 1)))" = "zfs" ] \
14377          && skip "no 16TB file size limit on ZFS" && return
14378
14379         $SETSTRIPE -c 1 $DIR/$tfile
14380         # ldiskfs extent file size limit is (16TB - 4KB - 1) bytes
14381         local size=$((16 * 1024 * 1024 * 1024 * 1024 - 4096 - 1))
14382         $TRUNCATE $DIR/$tfile $size || error "truncate $tfile to $size failed"
14383         dd if=/dev/zero of=$DIR/$tfile bs=10 count=1 oflag=append \
14384                 conv=notrunc,fsync && error "append succeeded"
14385         return 0
14386 }
14387 run_test 250 "Write above 16T limit"
14388
14389 test_251() {
14390         $SETSTRIPE -c -1 -S 1048576 $DIR/$tfile
14391
14392         #define OBD_FAIL_LLITE_LOST_LAYOUT 0x1407
14393         #Skip once - writing the first stripe will succeed
14394         $LCTL set_param fail_loc=0xa0001407 fail_val=1
14395         $MULTIOP $DIR/$tfile o:O_RDWR:w2097152c 2>&1 | grep -q "short write" &&
14396                 error "short write happened"
14397
14398         $LCTL set_param fail_loc=0xa0001407 fail_val=1
14399         $MULTIOP $DIR/$tfile or2097152c 2>&1 | grep -q "short read" &&
14400                 error "short read happened"
14401
14402         rm -f $DIR/$tfile
14403 }
14404 run_test 251 "Handling short read and write correctly"
14405
14406 test_252() {
14407         local tgt
14408         local dev
14409         local out
14410         local uuid
14411         local num
14412         local gen
14413
14414         remote_mds_nodsh && skip "remote MDS with nodsh" && return
14415         remote_ost_nodsh && skip "remote OST with nodsh" && return
14416         if [ "$(facet_fstype ost1)" != "ldiskfs" -o \
14417              "$(facet_fstype mds1)" != "ldiskfs" ]; then
14418                 skip "can only run lr_reader on ldiskfs target"
14419                 return
14420         fi
14421
14422         # check lr_reader on OST0000
14423         tgt=ost1
14424         dev=$(facet_device $tgt)
14425         out=$(do_facet $tgt $LR_READER $dev)
14426         [ $? -eq 0 ] || error "$LR_READER failed on target $tgt device $dev"
14427         echo "$out"
14428         uuid=$(echo "$out" | grep -i uuid | awk '{ print $2 }')
14429         [ "$uuid" == "$(ostuuid_from_index 0)" ] ||
14430                 error "Invalid uuid returned by $LR_READER on target $tgt"
14431         echo -e "uuid returned by $LR_READER is '$uuid'\n"
14432
14433         # check lr_reader -c on MDT0000
14434         tgt=mds1
14435         dev=$(facet_device $tgt)
14436         if ! do_facet $tgt $LR_READER -h | grep -q OPTIONS; then
14437                 echo "$LR_READER does not support additional options"
14438                 return 0
14439         fi
14440         out=$(do_facet $tgt $LR_READER -c $dev)
14441         [ $? -eq 0 ] || error "$LR_READER failed on target $tgt device $dev"
14442         echo "$out"
14443         num=$(echo "$out" | grep -c "mdtlov")
14444         [ "$num" -eq $((MDSCOUNT - 1)) ] ||
14445                 error "Invalid number of mdtlov clients returned by $LR_READER"
14446         echo -e "Number of mdtlov clients returned by $LR_READER is '$num'\n"
14447
14448         # check lr_reader -cr on MDT0000
14449         out=$(do_facet $tgt $LR_READER -cr $dev)
14450         [ $? -eq 0 ] || error "$LR_READER failed on target $tgt device $dev"
14451         echo "$out"
14452         echo "$out" | grep -q "^reply_data:$" ||
14453                 error "$LR_READER should have returned 'reply_data' section"
14454         num=$(echo "$out" | grep -c "client_generation")
14455         echo -e "Number of reply data returned by $LR_READER is '$num'\n"
14456 }
14457 run_test 252 "check lr_reader tool"
14458
14459 test_253_fill_ost() {
14460         local size_mb #how many MB should we write to pass watermark
14461         local lwm=$3  #low watermark
14462         local free_10mb #10% of free space
14463
14464         free_kb=$($LFS df $MOUNT | grep $1 | awk '{ print $4 }')
14465         size_mb=$((free_kb / 1024 - lwm))
14466         free_10mb=$((free_kb / 10240))
14467         #If 10% of free space cross low watermark use it
14468         if (( free_10mb > size_mb )); then
14469                 size_mb=$free_10mb
14470         else
14471                 #At least we need to store 1.1 of difference between
14472                 #free space and low watermark
14473                 size_mb=$((size_mb + size_mb / 10))
14474         fi
14475         if (( lwm <= $((free_kb / 1024)) )) || [ ! -f $DIR/$tdir/1 ]; then
14476                 dd if=/dev/zero of=$DIR/$tdir/1 bs=1M count=$size_mb \
14477                          oflag=append conv=notrunc
14478         fi
14479
14480         sleep_maxage
14481
14482         free_kb=$($LFS df $MOUNT | grep $1 | awk '{ print $4 }')
14483         echo "OST still has $((free_kb / 1024)) mbytes free"
14484 }
14485
14486 test_253() {
14487         local ostidx=0
14488         local rc=0
14489
14490         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14491         remote_mds_nodsh && skip "remote MDS with nodsh" && return
14492         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
14493
14494         local ost_name=$($LFS osts |
14495                 sed -n 's/^'$ostidx': \(.*\)_UUID .*/\1/p')
14496         # on the mdt's osc
14497         local mdtosc_proc1=$(get_mdtosc_proc_path $SINGLEMDS $ost_name)
14498         do_facet $SINGLEMDS $LCTL get_param -n \
14499                 osp.$mdtosc_proc1.reserved_mb_high ||
14500                 { skip  "remote MDS does not support reserved_mb_high" &&
14501                   return; }
14502
14503         rm -rf $DIR/$tdir
14504         wait_mds_ost_sync
14505         wait_delete_completed
14506         mkdir $DIR/$tdir
14507
14508         local last_wm_h=$(do_facet $SINGLEMDS $LCTL get_param -n \
14509                         osp.$mdtosc_proc1.reserved_mb_high)
14510         local last_wm_l=$(do_facet $SINGLEMDS $LCTL get_param -n \
14511                         osp.$mdtosc_proc1.reserved_mb_low)
14512         echo "prev high watermark $last_wm_h, prev low watermark $last_wm_l"
14513
14514         create_pool $FSNAME.$TESTNAME || error "Pool creation failed"
14515         do_facet mgs $LCTL pool_add $FSNAME.$TESTNAME $ost_name ||
14516                 error "Adding $ost_name to pool failed"
14517
14518         # Wait for client to see a OST at pool
14519         wait_update $HOSTNAME "$LCTL get_param -n
14520                 lov.$FSNAME-*.pools.$TESTNAME | sort -u |
14521                 grep $ost_name" "$ost_name""_UUID" $((TIMEOUT/2)) ||
14522                 error "Client can not see the pool"
14523         $SETSTRIPE $DIR/$tdir -i $ostidx -c 1 -p $FSNAME.$TESTNAME ||
14524                 error "Setstripe failed"
14525
14526         dd if=/dev/zero of=$DIR/$tdir/0 bs=1M count=10
14527         local blocks=$($LFS df $MOUNT | grep $ost_name | awk '{ print $4 }')
14528         echo "OST still has $((blocks/1024)) mbytes free"
14529
14530         local new_lwm=$((blocks/1024-10))
14531         do_facet $SINGLEMDS $LCTL set_param \
14532                         osp.$mdtosc_proc1.reserved_mb_high=$((new_lwm+5))
14533         do_facet $SINGLEMDS $LCTL set_param \
14534                         osp.$mdtosc_proc1.reserved_mb_low=$new_lwm
14535
14536         test_253_fill_ost $ost_name $mdtosc_proc1 $new_lwm
14537
14538         #First enospc could execute orphan deletion so repeat.
14539         test_253_fill_ost $ost_name $mdtosc_proc1 $new_lwm
14540
14541         local oa_status=$(do_facet $SINGLEMDS $LCTL get_param -n \
14542                         osp.$mdtosc_proc1.prealloc_status)
14543         echo "prealloc_status $oa_status"
14544
14545         dd if=/dev/zero of=$DIR/$tdir/2 bs=1M count=1 &&
14546                 error "File creation should fail"
14547         #object allocation was stopped, but we still able to append files
14548         dd if=/dev/zero of=$DIR/$tdir/1 bs=1M seek=6 count=5 oflag=append ||
14549                 error "Append failed"
14550         rm -f $DIR/$tdir/1 $DIR/$tdir/0 $DIR/$tdir/r*
14551
14552         wait_delete_completed
14553
14554         sleep_maxage
14555
14556         for i in $(seq 10 12); do
14557                 dd if=/dev/zero of=$DIR/$tdir/$i bs=1M count=1 2>/dev/null ||
14558                         error "File creation failed after rm";
14559         done
14560
14561         oa_status=$(do_facet $SINGLEMDS $LCTL get_param -n \
14562                         osp.$mdtosc_proc1.prealloc_status)
14563         echo "prealloc_status $oa_status"
14564
14565         if (( oa_status != 0 )); then
14566                 error "Object allocation still disable after rm"
14567         fi
14568         do_facet $SINGLEMDS $LCTL set_param \
14569                         osp.$mdtosc_proc1.reserved_mb_high=$last_wm_h
14570         do_facet $SINGLEMDS $LCTL set_param \
14571                         osp.$mdtosc_proc1.reserved_mb_low=$last_wm_l
14572
14573
14574         do_facet mgs $LCTL pool_remove $FSNAME.$TESTNAME $ost_name ||
14575                 error "Remove $ost_name from pool failed"
14576         do_facet mgs $LCTL pool_destroy $FSNAME.$TESTNAME ||
14577                 error "Pool destroy fialed"
14578 }
14579 run_test 253 "Check object allocation limit"
14580
14581 test_254() {
14582         local cl_user
14583
14584         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14585         remote_mds_nodsh && skip "remote MDS with nodsh" && return
14586         do_facet mds1 $LCTL get_param -n mdd.$MDT0.changelog_size ||
14587                 { skip "MDS does not support changelog_size" && return; }
14588
14589         cl_user=$(do_facet mds1 $LCTL --device $MDT0 changelog_register -n)
14590         echo "Registered as changelog user $cl_user"
14591
14592         $LFS changelog_clear $MDT0 $cl_user 0
14593
14594         local size1=$(do_facet mds1 \
14595                       $LCTL get_param -n mdd.$MDT0.changelog_size)
14596         echo "Changelog size $size1"
14597
14598         rm -rf $DIR/$tdir
14599         $LFS mkdir -i 0 $DIR/$tdir
14600         # change something
14601         mkdir -p $DIR/$tdir/pics/2008/zachy
14602         touch $DIR/$tdir/pics/2008/zachy/timestamp
14603         cp /etc/hosts $DIR/$tdir/pics/2008/zachy/pic1.jpg
14604         mv $DIR/$tdir/pics/2008/zachy $DIR/$tdir/pics/zach
14605         ln $DIR/$tdir/pics/zach/pic1.jpg $DIR/$tdir/pics/2008/portland.jpg
14606         ln -s $DIR/$tdir/pics/2008/portland.jpg $DIR/$tdir/pics/desktop.jpg
14607         rm $DIR/$tdir/pics/desktop.jpg
14608
14609         local size2=$(do_facet mds1 \
14610                       $LCTL get_param -n mdd.$MDT0.changelog_size)
14611         echo "Changelog size after work $size2"
14612
14613         do_facet mds1 $LCTL --device $MDT0 changelog_deregister $cl_user
14614
14615         if (( size2 <= size1 )); then
14616                 error "Changelog size after work should be greater than original"
14617         fi
14618         return 0
14619 }
14620 run_test 254 "Check changelog size"
14621
14622 ladvise_no_type()
14623 {
14624         local type=$1
14625         local file=$2
14626
14627         lfs ladvise -a invalid $file 2>&1 | grep "Valid types" |
14628                 awk -F: '{print $2}' | grep $type > /dev/null
14629         if [ $? -ne 0 ]; then
14630                 return 0
14631         fi
14632         return 1
14633 }
14634
14635 ladvise_no_ioctl()
14636 {
14637         local file=$1
14638
14639         lfs ladvise -a willread $file > /dev/null 2>&1
14640         if [ $? -eq 0 ]; then
14641                 return 1
14642         fi
14643
14644         lfs ladvise -a willread $file 2>&1 |
14645                 grep "Inappropriate ioctl for device" > /dev/null
14646         if [ $? -eq 0 ]; then
14647                 return 0
14648         fi
14649         return 1
14650 }
14651
14652 percent() {
14653         bc <<<"scale=2; ($1 - $2) * 100 / $2"
14654 }
14655
14656 # run a random read IO workload
14657 # usage: random_read_iops <filename> <filesize> <iosize>
14658 random_read_iops() {
14659         local file=$1
14660         local fsize=$2
14661         local iosize=${3:-4096}
14662
14663         $READS -f $file -s $fsize -b $iosize -n $((fsize / iosize)) -t 60 |
14664                 sed -e '/^$/d' -e 's#.*s, ##' -e 's#MB/s##'
14665 }
14666
14667 drop_file_oss_cache() {
14668         local file="$1"
14669         local nodes="$2"
14670
14671         $LFS ladvise -a dontneed $file 2>/dev/null ||
14672                 do_nodes $nodes "echo 3 > /proc/sys/vm/drop_caches"
14673 }
14674
14675 ladvise_willread_performance()
14676 {
14677         local repeat=10
14678         local average_origin=0
14679         local average_cache=0
14680         local average_ladvise=0
14681
14682         for ((i = 1; i <= $repeat; i++)); do
14683                 echo "Iter $i/$repeat: reading without willread hint"
14684                 cancel_lru_locks osc
14685                 drop_file_oss_cache $DIR/$tfile $(comma_list $(osts_nodes))
14686                 local speed_origin=$(random_read_iops $DIR/$tfile $size)
14687                 echo "Iter $i/$repeat: uncached speed: $speed_origin"
14688                 average_origin=$(bc <<<"$average_origin + $speed_origin")
14689
14690                 cancel_lru_locks osc
14691                 local speed_cache=$(random_read_iops $DIR/$tfile $size)
14692                 echo "Iter $i/$repeat: OSS cache speed: $speed_cache"
14693                 average_cache=$(bc <<<"$average_cache + $speed_cache")
14694
14695                 cancel_lru_locks osc
14696                 drop_file_oss_cache $DIR/$tfile $(comma_list $(osts_nodes))
14697                 $LFS ladvise -a willread $DIR/$tfile || error "ladvise failed"
14698                 local speed_ladvise=$(random_read_iops $DIR/$tfile $size)
14699                 echo "Iter $i/$repeat: ladvise speed: $speed_ladvise"
14700                 average_ladvise=$(bc <<<"$average_ladvise + $speed_ladvise")
14701         done
14702         average_origin=$(bc <<<"scale=2; $average_origin / $repeat")
14703         average_cache=$(bc <<<"scale=2; $average_cache / $repeat")
14704         average_ladvise=$(bc <<<"scale=2; $average_ladvise / $repeat")
14705
14706         speedup_cache=$(percent $average_cache $average_origin)
14707         speedup_ladvise=$(percent $average_ladvise $average_origin)
14708
14709         echo "Average uncached read: $average_origin"
14710         echo "Average speedup with OSS cached read: " \
14711                 "$average_cache = +$speedup_cache%"
14712         echo "Average speedup with ladvise willread: " \
14713                 "$average_ladvise = +$speedup_ladvise%"
14714
14715         local lowest_speedup=20
14716         if [ ${average_cache%.*} -lt $lowest_speedup ]; then
14717                 echo "Speedup with OSS cached read less than $lowest_speedup%, "
14718                         "got $average_cache%. Skipping ladvise willread check."
14719                 return 0
14720         fi
14721
14722         # the test won't work on ZFS until it supports 'ladvise dontneed', but
14723         # it is still good to run until then to exercise 'ladvise willread'
14724         ! $LFS ladvise -a dontneed $DIR/$tfile &&
14725                 [ "$(facet_fstype ost1)" = "zfs" ] &&
14726                 echo "osd-zfs does not support dontneed or drop_caches" &&
14727                 return 0
14728
14729         lowest_speedup=$(bc <<<"scale=2; $average_cache / 2")
14730         [ ${average_ladvise%.*} -gt $lowest_speedup ] ||
14731                 error_not_in_vm "Speedup with willread is less than " \
14732                         "$lowest_speedup%, got $average_ladvise%"
14733 }
14734
14735 test_255a() {
14736         [ $(lustre_version_code ost1) -lt $(version_code 2.8.54) ] &&
14737                 skip "lustre < 2.8.54 does not support ladvise " && return
14738         remote_ost_nodsh && skip "remote OST with nodsh" && return
14739
14740         lfs setstripe -c -1 -i 0 $DIR/$tfile || error "$tfile failed"
14741
14742         ladvise_no_type willread $DIR/$tfile &&
14743                 skip "willread ladvise is not supported" && return
14744
14745         ladvise_no_ioctl $DIR/$tfile &&
14746                 skip "ladvise ioctl is not supported" && return
14747
14748         local size_mb=100
14749         local size=$((size_mb * 1048576))
14750         dd if=/dev/zero of=$DIR/$tfile bs=1048576 count=$size_mb ||
14751                 error "dd to $DIR/$tfile failed"
14752
14753         lfs ladvise -a willread $DIR/$tfile ||
14754                 error "Ladvise failed with no range argument"
14755
14756         lfs ladvise -a willread -s 0 $DIR/$tfile ||
14757                 error "Ladvise failed with no -l or -e argument"
14758
14759         lfs ladvise -a willread -e 1 $DIR/$tfile ||
14760                 error "Ladvise failed with only -e argument"
14761
14762         lfs ladvise -a willread -l 1 $DIR/$tfile ||
14763                 error "Ladvise failed with only -l argument"
14764
14765         lfs ladvise -a willread -s 2 -e 1 $DIR/$tfile &&
14766                 error "End offset should not be smaller than start offset"
14767
14768         lfs ladvise -a willread -s 2 -e 2 $DIR/$tfile &&
14769                 error "End offset should not be equal to start offset"
14770
14771         lfs ladvise -a willread -s $size -l 1 $DIR/$tfile ||
14772                 error "Ladvise failed with overflowing -s argument"
14773
14774         lfs ladvise -a willread -s 1 -e $((size + 1)) $DIR/$tfile ||
14775                 error "Ladvise failed with overflowing -e argument"
14776
14777         lfs ladvise -a willread -s 1 -l $size $DIR/$tfile ||
14778                 error "Ladvise failed with overflowing -l argument"
14779
14780         lfs ladvise -a willread -l 1 -e 2 $DIR/$tfile &&
14781                 error "Ladvise succeeded with conflicting -l and -e arguments"
14782
14783         echo "Synchronous ladvise should wait"
14784         local delay=4
14785 #define OBD_FAIL_OST_LADVISE_PAUSE       0x237
14786         do_nodes $(comma_list $(osts_nodes)) \
14787                 $LCTL set_param fail_val=$delay fail_loc=0x237
14788
14789         local start_ts=$SECONDS
14790         lfs ladvise -a willread $DIR/$tfile ||
14791                 error "Ladvise failed with no range argument"
14792         local end_ts=$SECONDS
14793         local inteval_ts=$((end_ts - start_ts))
14794
14795         if [ $inteval_ts -lt $(($delay - 1)) ]; then
14796                 error "Synchronous advice didn't wait reply"
14797         fi
14798
14799         echo "Asynchronous ladvise shouldn't wait"
14800         local start_ts=$SECONDS
14801         lfs ladvise -a willread -b $DIR/$tfile ||
14802                 error "Ladvise failed with no range argument"
14803         local end_ts=$SECONDS
14804         local inteval_ts=$((end_ts - start_ts))
14805
14806         if [ $inteval_ts -gt $(($delay / 2)) ]; then
14807                 error "Asynchronous advice blocked"
14808         fi
14809
14810         do_nodes $(comma_list $(osts_nodes)) $LCTL set_param fail_loc=0
14811         ladvise_willread_performance
14812 }
14813 run_test 255a "check 'lfs ladvise -a willread'"
14814
14815 facet_meminfo() {
14816         local facet=$1
14817         local info=$2
14818
14819         do_facet $facet "cat /proc/meminfo | grep ^${info}:" | awk '{print $2}'
14820 }
14821
14822 test_255b() {
14823         remote_ost_nodsh && skip "remote OST with nodsh" && return
14824
14825         lfs setstripe -c 1 -i 0 $DIR/$tfile
14826
14827         ladvise_no_type dontneed $DIR/$tfile &&
14828                 skip "dontneed ladvise is not supported" && return
14829
14830         ladvise_no_ioctl $DIR/$tfile &&
14831                 skip "ladvise ioctl is not supported" && return
14832
14833         [ $(lustre_version_code ost1) -lt $(version_code 2.8.54) ] &&
14834                 skip "lustre < 2.8.54 does not support ladvise" && return
14835
14836         ! $LFS ladvise -a dontneed $DIR/$tfile &&
14837                 [ "$(facet_fstype ost1)" = "zfs" ] &&
14838                 skip "zfs-osd does not support 'ladvise dontneed'" && return
14839
14840         local size_mb=100
14841         local size=$((size_mb * 1048576))
14842         # In order to prevent disturbance of other processes, only check 3/4
14843         # of the memory usage
14844         local kibibytes=$((size_mb * 1024 * 3 / 4))
14845
14846         dd if=/dev/zero of=$DIR/$tfile bs=1048576 count=$size_mb ||
14847                 error "dd to $DIR/$tfile failed"
14848
14849         local total=$(facet_meminfo ost1 MemTotal)
14850         echo "Total memory: $total KiB"
14851
14852         do_facet ost1 "sync && echo 3 > /proc/sys/vm/drop_caches"
14853         local before_read=$(facet_meminfo ost1 Cached)
14854         echo "Cache used before read: $before_read KiB"
14855
14856         lfs ladvise -a willread $DIR/$tfile ||
14857                 error "Ladvise willread failed"
14858         local after_read=$(facet_meminfo ost1 Cached)
14859         echo "Cache used after read: $after_read KiB"
14860
14861         lfs ladvise -a dontneed $DIR/$tfile ||
14862                 error "Ladvise dontneed again failed"
14863         local no_read=$(facet_meminfo ost1 Cached)
14864         echo "Cache used after dontneed ladvise: $no_read KiB"
14865
14866         if [ $total -lt $((before_read + kibibytes)) ]; then
14867                 echo "Memory is too small, abort checking"
14868                 return 0
14869         fi
14870
14871         if [ $((before_read + kibibytes)) -gt $after_read ]; then
14872                 error "Ladvise willread should use more memory" \
14873                         "than $kibibytes KiB"
14874         fi
14875
14876         if [ $((no_read + kibibytes)) -gt $after_read ]; then
14877                 error "Ladvise dontneed should release more memory" \
14878                         "than $kibibytes KiB"
14879         fi
14880 }
14881 run_test 255b "check 'lfs ladvise -a dontneed'"
14882
14883 test_256() {
14884         local cl_user
14885         local cat_sl
14886         local mdt_dev
14887
14888         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14889         remote_mds_nodsh && skip "remote MDS with nodsh" && return
14890         [ "$(facet_fstype mds1)" != "ldiskfs" ] &&
14891                 skip "non-ldiskfs backend" && return
14892
14893         mdt_dev=$(mdsdevname 1)
14894         echo $mdt_dev
14895         cl_user=$(do_facet mds1 \
14896         "$LCTL get_param -n mdd.$MDT0.changelog_users | grep cl")
14897         if [[ -n $cl_user ]]; then
14898                 skip "active changelog user"
14899                 return
14900         fi
14901
14902         cl_user=$(do_facet mds1 $LCTL --device $MDT0 changelog_register -n)
14903         echo "Registered as changelog user $cl_user"
14904
14905         rm -rf $DIR/$tdir
14906         mkdir -p $DIR/$tdir
14907
14908         $LFS changelog_clear $MDT0 $cl_user 0
14909
14910         # change something
14911         touch $DIR/$tdir/{1..10}
14912
14913         # stop the MDT
14914         stop mds1 || error "Fail to stop MDT."
14915
14916         # remount the MDT
14917         start mds1 $mdt_dev $MDS_MOUNT_OPTS || error "Fail to start MDT."
14918
14919         #after mount new plainllog is used
14920         touch $DIR/$tdir/{11..19}
14921         local TEMP256FILE=$(mktemp TEMP256XXXXXX)
14922         cat_sl=$(do_facet mds1 \
14923         "$DEBUGFS -R \\\"dump changelog_catalog $TEMP256FILE\\\" $mdt_dev; \
14924          llog_reader $TEMP256FILE | grep \\\"type=1064553b\\\" | wc -l")
14925         rm $TEMP256FILE
14926
14927         if (( cat_sl != 2 )); then
14928                 do_facet mds1 $LCTL --device $MDT0 changelog_deregister $cl_user
14929                 error "Changelog catalog has wrong number of slots $cat_sl"
14930         fi
14931
14932         $LFS changelog_clear $MDT0 $cl_user 0
14933
14934         TEMP256FILE=$(mktemp TEMP256XXXXXX)
14935         cat_sl=$(do_facet mds1 \
14936         "$DEBUGFS -R \\\"dump changelog_catalog $TEMP256FILE\\\" $mdt_dev; \
14937          llog_reader $TEMP256FILE | grep \\\"type=1064553b\\\" | wc -l")
14938         rm $TEMP256FILE
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 # Verify we take the i_mutex when security requires it
14975 test_258a() {
14976 #define OBD_FAIL_IMUTEX_SEC 0x141c
14977         $LCTL set_param fail_loc=0x141c
14978         touch $DIR/$tfile
14979         chmod u+s $DIR/$tfile
14980         chmod a+rwx $DIR/$tfile
14981         $RUNAS dd if=/dev/zero of=$DIR/$tfile bs=4k count=1 oflag=append
14982         RC=$?
14983         if [ $RC -ne 0 ]; then
14984                 error "error, failed to take i_mutex, rc=$?"
14985         fi
14986         rm -f $DIR/$tfile
14987 }
14988 run_test 258a
14989
14990 # Verify we do NOT take the i_mutex in the normal case
14991 test_258b() {
14992 #define OBD_FAIL_IMUTEX_NOSEC 0x141d
14993         $LCTL set_param fail_loc=0x141d
14994         touch $DIR/$tfile
14995         chmod a+rwx $DIR
14996         chmod a+rw $DIR/$tfile
14997         $RUNAS dd if=/dev/zero of=$DIR/$tfile bs=4k count=1 oflag=append
14998         RC=$?
14999         if [ $RC -ne 0 ]; then
15000                 error "error, took i_mutex unnecessarily, rc=$?"
15001         fi
15002         rm -f $DIR/$tfile
15003
15004 }
15005 run_test 258b "verify i_mutex security behavior"
15006
15007 test_260() {
15008 #define OBD_FAIL_MDC_CLOSE               0x806
15009         $LCTL set_param fail_loc=0x80000806
15010         touch $DIR/$tfile
15011
15012 }
15013 run_test 260 "Check mdc_close fail"
15014
15015 cleanup_test_300() {
15016         trap 0
15017         umask $SAVE_UMASK
15018 }
15019 test_striped_dir() {
15020         local mdt_index=$1
15021         local stripe_count
15022         local stripe_index
15023
15024         mkdir -p $DIR/$tdir
15025
15026         SAVE_UMASK=$(umask)
15027         trap cleanup_test_300 RETURN EXIT
15028
15029         $LFS setdirstripe -i $mdt_index -c 2 -t all_char -m 755 \
15030                                                 $DIR/$tdir/striped_dir ||
15031                 error "set striped dir error"
15032
15033         local mode=$(stat -c%a $DIR/$tdir/striped_dir)
15034         [ "$mode" = "755" ] || error "expect 755 got $mode"
15035
15036         $LFS getdirstripe $DIR/$tdir/striped_dir > /dev/null 2>&1 ||
15037                 error "getdirstripe failed"
15038         stripe_count=$($LFS getdirstripe -c $DIR/$tdir/striped_dir)
15039         if [ "$stripe_count" != "2" ]; then
15040                 error "1:stripe_count is $stripe_count, expect 2"
15041         fi
15042         stripe_count=$($LFS getdirstripe -T $DIR/$tdir/striped_dir)
15043         if [ "$stripe_count" != "2" ]; then
15044                 error "2:stripe_count is $stripe_count, expect 2"
15045         fi
15046
15047         stripe_index=$($LFS getdirstripe -i $DIR/$tdir/striped_dir)
15048         if [ "$stripe_index" != "$mdt_index" ]; then
15049                 error "stripe_index is $stripe_index, expect $mdt_index"
15050         fi
15051
15052         [ $(stat -c%h $DIR/$tdir/striped_dir) == '2' ] ||
15053                 error "nlink error after create striped dir"
15054
15055         mkdir $DIR/$tdir/striped_dir/a
15056         mkdir $DIR/$tdir/striped_dir/b
15057
15058         stat $DIR/$tdir/striped_dir/a ||
15059                 error "create dir under striped dir failed"
15060         stat $DIR/$tdir/striped_dir/b ||
15061                 error "create dir under striped dir failed"
15062
15063         [ $(stat -c%h $DIR/$tdir/striped_dir) == '4' ] ||
15064                 error "nlink error after mkdir"
15065
15066         rmdir $DIR/$tdir/striped_dir/a
15067         [ $(stat -c%h $DIR/$tdir/striped_dir) == '3' ] ||
15068                 error "nlink error after rmdir"
15069
15070         rmdir $DIR/$tdir/striped_dir/b
15071         [ $(stat -c%h $DIR/$tdir/striped_dir) == '2' ] ||
15072                 error "nlink error after rmdir"
15073
15074         chattr +i $DIR/$tdir/striped_dir
15075         createmany -o $DIR/$tdir/striped_dir/f 10 &&
15076                 error "immutable flags not working under striped dir!"
15077         chattr -i $DIR/$tdir/striped_dir
15078
15079         rmdir $DIR/$tdir/striped_dir ||
15080                 error "rmdir striped dir error"
15081
15082         cleanup_test_300
15083
15084         true
15085 }
15086
15087 test_300a() {
15088         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.0) ] &&
15089                 skip "skipped for lustre < 2.7.0" && return
15090         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15091         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15092
15093         test_striped_dir 0 || error "failed on striped dir on MDT0"
15094         test_striped_dir 1 || error "failed on striped dir on MDT0"
15095 }
15096 run_test 300a "basic striped dir sanity test"
15097
15098 test_300b() {
15099         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.0) ] &&
15100                 skip "skipped for lustre < 2.7.0" && return
15101         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15102         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15103         local i
15104         local mtime1
15105         local mtime2
15106         local mtime3
15107
15108         test_mkdir $DIR/$tdir || error "mkdir fail"
15109         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir ||
15110                 error "set striped dir error"
15111         for ((i=0; i<10; i++)); do
15112                 mtime1=$(stat -c %Y $DIR/$tdir/striped_dir)
15113                 sleep 1
15114                 touch $DIR/$tdir/striped_dir/file_$i ||
15115                                         error "touch error $i"
15116                 mtime2=$(stat -c %Y $DIR/$tdir/striped_dir)
15117                 [ $mtime1 -eq $mtime2 ] &&
15118                         error "mtime not change after create"
15119                 sleep 1
15120                 rm -f $DIR/$tdir/striped_dir/file_$i ||
15121                                         error "unlink error $i"
15122                 mtime3=$(stat -c %Y $DIR/$tdir/striped_dir)
15123                 [ $mtime2 -eq $mtime3 ] &&
15124                         error "mtime did not change after unlink"
15125         done
15126         true
15127 }
15128 run_test 300b "check ctime/mtime for striped dir"
15129
15130 test_300c() {
15131         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.0) ] &&
15132                 skip "skipped for lustre < 2.7.0" && return
15133         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15134         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15135         local file_count
15136
15137         mkdir -p $DIR/$tdir
15138         $LFS setdirstripe -i 0 -c 2 $DIR/$tdir/striped_dir ||
15139                 error "set striped dir error"
15140
15141         chown $RUNAS_ID:$RUNAS_GID $DIR/$tdir/striped_dir ||
15142                 error "chown striped dir failed"
15143
15144         $RUNAS createmany -o $DIR/$tdir/striped_dir/f 5000 ||
15145                 error "create 5k files failed"
15146
15147         file_count=$(ls $DIR/$tdir/striped_dir | wc -l)
15148
15149         [ "$file_count" = 5000 ] || error "file count $file_count != 5000"
15150
15151         rm -rf $DIR/$tdir
15152 }
15153 run_test 300c "chown && check ls under striped directory"
15154
15155 test_300d() {
15156         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.0) ] &&
15157                 skip "skipped for lustre < 2.7.0" && 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         $SETSTRIPE -c 2 $DIR/$tdir
15165
15166         #local striped directory
15167         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir ||
15168                 error "set striped dir error"
15169         createmany -o $DIR/$tdir/striped_dir/f 10 ||
15170                 error "create 10 files failed"
15171
15172         #remote striped directory
15173         $LFS setdirstripe -i 1 -c 2 $DIR/$tdir/remote_striped_dir ||
15174                 error "set striped dir error"
15175         createmany -o $DIR/$tdir/remote_striped_dir/f 10 ||
15176                 error "create 10 files failed"
15177
15178         for file in $(find $DIR/$tdir); do
15179                 stripe_count=$($GETSTRIPE -c $file)
15180                 [ $stripe_count -eq 2 ] ||
15181                         error "wrong stripe $stripe_count for $file"
15182         done
15183
15184         rm -rf $DIR/$tdir
15185 }
15186 run_test 300d "check default stripe under striped directory"
15187
15188 test_300e() {
15189         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
15190                 skip "Need MDS version at least 2.7.55" && return
15191         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15192         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15193         local stripe_count
15194         local file
15195
15196         mkdir -p $DIR/$tdir
15197
15198         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir ||
15199                 error "set striped dir error"
15200
15201         touch $DIR/$tdir/striped_dir/a
15202         touch $DIR/$tdir/striped_dir/b
15203         touch $DIR/$tdir/striped_dir/c
15204
15205         mkdir $DIR/$tdir/striped_dir/dir_a
15206         mkdir $DIR/$tdir/striped_dir/dir_b
15207         mkdir $DIR/$tdir/striped_dir/dir_c
15208
15209         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir/stp_a ||
15210                 error "set striped adir under striped dir error"
15211
15212         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir/stp_b ||
15213                 error "set striped bdir under striped dir error"
15214
15215         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir/stp_c ||
15216                 error "set striped cdir under striped dir error"
15217
15218         mrename $DIR/$tdir/striped_dir/dir_a $DIR/$tdir/striped_dir/dir_b ||
15219                 error "rename dir under striped dir fails"
15220
15221         mrename $DIR/$tdir/striped_dir/stp_a $DIR/$tdir/striped_dir/stp_b ||
15222                 error "rename dir under different stripes fails"
15223
15224         mrename $DIR/$tdir/striped_dir/a $DIR/$tdir/striped_dir/c ||
15225                 error "rename file under striped dir should succeed"
15226
15227         mrename $DIR/$tdir/striped_dir/dir_b $DIR/$tdir/striped_dir/dir_c ||
15228                 error "rename dir under striped dir should succeed"
15229
15230         rm -rf $DIR/$tdir
15231 }
15232 run_test 300e "check rename under striped directory"
15233
15234 test_300f() {
15235         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
15236                 skip "Need MDS version at least 2.7.55" && return
15237         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15238         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15239         local stripe_count
15240         local file
15241
15242         rm -rf $DIR/$tdir
15243         mkdir -p $DIR/$tdir
15244
15245         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir ||
15246                 error "set striped dir error"
15247
15248         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir1 ||
15249                 error "set striped dir error"
15250
15251         touch $DIR/$tdir/striped_dir/a
15252         mkdir $DIR/$tdir/striped_dir/dir_a
15253         $LFS setdirstripe -i 0 -c 2 $DIR/$tdir/striped_dir/stp_a ||
15254                 error "create striped dir under striped dir fails"
15255
15256         touch $DIR/$tdir/striped_dir1/b
15257         mkdir $DIR/$tdir/striped_dir1/dir_b
15258         $LFS setdirstripe -i 0 -c 2 $DIR/$tdir/striped_dir/stp_b ||
15259                 error "create striped dir under striped dir fails"
15260
15261         mrename $DIR/$tdir/striped_dir/dir_a $DIR/$tdir/striped_dir1/dir_b ||
15262                 error "rename dir under different striped dir should fail"
15263
15264         mrename $DIR/$tdir/striped_dir/stp_a $DIR/$tdir/striped_dir1/stp_b ||
15265                 error "rename striped dir under diff striped dir should fail"
15266
15267         mrename $DIR/$tdir/striped_dir/a $DIR/$tdir/striped_dir1/a ||
15268                 error "rename file under diff striped dirs fails"
15269
15270         rm -rf $DIR/$tdir
15271 }
15272 run_test 300f "check rename cross striped directory"
15273
15274 test_300_check_default_striped_dir()
15275 {
15276         local dirname=$1
15277         local default_count=$2
15278         local default_index=$3
15279         local stripe_count
15280         local stripe_index
15281         local dir_stripe_index
15282         local dir
15283
15284         echo "checking $dirname $default_count $default_index"
15285         $LFS setdirstripe -D -c $default_count -i $default_index \
15286                                 -t all_char $DIR/$tdir/$dirname ||
15287                 error "set default stripe on striped dir error"
15288         stripe_count=$($LFS getdirstripe -D -c $DIR/$tdir/$dirname)
15289         [ $stripe_count -eq $default_count ] ||
15290                 error "expect $default_count get $stripe_count for $dirname"
15291
15292         stripe_index=$($LFS getdirstripe -D -i $DIR/$tdir/$dirname)
15293         [ $stripe_index -eq $default_index ] ||
15294                 error "expect $default_index get $stripe_index for $dirname"
15295
15296         mkdir $DIR/$tdir/$dirname/{test1,test2,test3,test4} ||
15297                                                 error "create dirs failed"
15298
15299         createmany -o $DIR/$tdir/$dirname/f- 10 || error "create files failed"
15300         unlinkmany $DIR/$tdir/$dirname/f- 10    || error "unlink files failed"
15301         for dir in $(find $DIR/$tdir/$dirname/*); do
15302                 stripe_count=$($LFS getdirstripe -c $dir)
15303                 [ $stripe_count -eq $default_count ] ||
15304                 [ $stripe_count -eq 0 -o $default_count -eq 1 ] ||
15305                 error "stripe count $default_count != $stripe_count for $dir"
15306
15307                 stripe_index=$($LFS getdirstripe -i $dir)
15308                 [ $default_index -eq -1 -o $stripe_index -eq $default_index ] ||
15309                         error "$stripe_index != $default_index for $dir"
15310
15311                 #check default stripe
15312                 stripe_count=$($LFS getdirstripe -D -c $dir)
15313                 [ $stripe_count -eq $default_count ] ||
15314                 error "default count $default_count != $stripe_count for $dir"
15315
15316                 stripe_index=$($LFS getdirstripe -D -i $dir)
15317                 [ $stripe_index -eq $default_index ] ||
15318                 error "default index $default_index != $stripe_index for $dir"
15319         done
15320         rmdir $DIR/$tdir/$dirname/* || error "rmdir failed"
15321 }
15322
15323 test_300g() {
15324         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
15325                 skip "Need MDS version at least 2.7.55" && return
15326         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15327         local dir
15328         local stripe_count
15329         local stripe_index
15330
15331         mkdir $DIR/$tdir
15332         mkdir $DIR/$tdir/normal_dir
15333
15334         #Checking when client cache stripe index
15335         $LFS setdirstripe -c$MDSCOUNT $DIR/$tdir/striped_dir
15336         $LFS setdirstripe -D -i1 $DIR/$tdir/striped_dir ||
15337                 error "create striped_dir failed"
15338
15339         mkdir $DIR/$tdir/striped_dir/dir1 ||
15340                 error "create dir1 fails"
15341         stripe_index=$($LFS getdirstripe -i $DIR/$tdir/striped_dir/dir1)
15342         [ $stripe_index -eq 1 ] ||
15343                 error "dir1 expect 1 got $stripe_index"
15344
15345         $LFS setdirstripe -i2 $DIR/$tdir/striped_dir/dir2 ||
15346                 error "create dir2 fails"
15347         stripe_index=$($LFS getdirstripe -i $DIR/$tdir/striped_dir/dir2)
15348         [ $stripe_index -eq 2 ] ||
15349                 error "dir2 expect 2 got $stripe_index"
15350
15351         #check default stripe count/stripe index
15352         test_300_check_default_striped_dir normal_dir $MDSCOUNT 1
15353         test_300_check_default_striped_dir normal_dir 1 0
15354         test_300_check_default_striped_dir normal_dir 2 1
15355         test_300_check_default_striped_dir normal_dir 2 -1
15356
15357         #delete default stripe information
15358         echo "delete default stripeEA"
15359         $LFS setdirstripe -d $DIR/$tdir/normal_dir ||
15360                 error "set default stripe on striped dir error"
15361
15362         mkdir -p $DIR/$tdir/normal_dir/{test1,test2,test3,test4}
15363         for dir in $(find $DIR/$tdir/normal_dir/*); do
15364                 stripe_count=$($LFS getdirstripe -c $dir)
15365                 [ $stripe_count -eq 0 ] ||
15366                         error "expect 1 get $stripe_count for $dir"
15367                 stripe_index=$($LFS getdirstripe -i $dir)
15368                 [ $stripe_index -eq 0 ] ||
15369                         error "expect 0 get $stripe_index for $dir"
15370         done
15371 }
15372 run_test 300g "check default striped directory for normal directory"
15373
15374 test_300h() {
15375         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
15376                 skip "Need MDS version at least 2.7.55" && return
15377         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15378         local dir
15379         local stripe_count
15380
15381         mkdir $DIR/$tdir
15382         $LFS setdirstripe -i 0 -c $MDSCOUNT -t all_char \
15383                                         $DIR/$tdir/striped_dir ||
15384                 error "set striped dir error"
15385
15386         test_300_check_default_striped_dir striped_dir $MDSCOUNT 1
15387         test_300_check_default_striped_dir striped_dir 1 0
15388         test_300_check_default_striped_dir striped_dir 2 1
15389         test_300_check_default_striped_dir striped_dir 2 -1
15390
15391         #delete default stripe information
15392         $LFS setdirstripe -d $DIR/$tdir/striped_dir ||
15393                 error "set default stripe on striped dir error"
15394
15395         mkdir -p $DIR/$tdir/striped_dir/{test1,test2,test3,test4}
15396         for dir in $(find $DIR/$tdir/striped_dir/*); do
15397                 stripe_count=$($LFS getdirstripe -c $dir)
15398                 [ $stripe_count -eq 0 ] ||
15399                         error "expect 1 get $stripe_count for $dir"
15400         done
15401 }
15402 run_test 300h "check default striped directory for striped directory"
15403
15404 test_300i() {
15405         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
15406                 skip "Need MDS version at least 2.7.55" && return
15407         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15408         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15409         local stripe_count
15410         local file
15411
15412         mkdir $DIR/$tdir
15413
15414         $LFS setdirstripe -i 0 -c$MDSCOUNT -t all_char $DIR/$tdir/striped_dir ||
15415                 error "set striped dir error"
15416
15417         createmany -o $DIR/$tdir/striped_dir/f- 10 ||
15418                 error "create files under striped dir failed"
15419
15420         $LFS setdirstripe -i0 -c$MDSCOUNT -H all_char $DIR/$tdir/hashdir ||
15421                 error "set striped hashdir error"
15422
15423         $LFS setdirstripe -i0 -c$MDSCOUNT -H all_char $DIR/$tdir/hashdir/d0 ||
15424                 error "create dir0 under hash dir failed"
15425         $LFS setdirstripe -i0 -c$MDSCOUNT -H fnv_1a_64 $DIR/$tdir/hashdir/d1 ||
15426                 error "create dir1 under hash dir failed"
15427
15428         # unfortunately, we need to umount to clear dir layout cache for now
15429         # once we fully implement dir layout, we can drop this
15430         umount_client $MOUNT || error "umount failed"
15431         mount_client $MOUNT || error "mount failed"
15432
15433         $LFS find -H fnv_1a_64 $DIR/$tdir/hashdir
15434         local dircnt=$($LFS find -H fnv_1a_64 $DIR/$tdir/hashdir | wc -l)
15435         [ $dircnt -eq 1 ] || error "lfs find striped dir got:$dircnt,except:1"
15436
15437         #set the stripe to be unknown hash type
15438         #define OBD_FAIL_UNKNOWN_LMV_STRIPE     0x1901
15439         $LCTL set_param fail_loc=0x1901
15440         for ((i = 0; i < 10; i++)); do
15441                 $CHECKSTAT -t file $DIR/$tdir/striped_dir/f-$i ||
15442                         error "stat f-$i failed"
15443                 rm $DIR/$tdir/striped_dir/f-$i || error "unlink f-$i failed"
15444         done
15445
15446         touch $DIR/$tdir/striped_dir/f0 &&
15447                 error "create under striped dir with unknown hash should fail"
15448
15449         $LCTL set_param fail_loc=0
15450
15451         umount_client $MOUNT || error "umount failed"
15452         mount_client $MOUNT || error "mount failed"
15453
15454         return 0
15455 }
15456 run_test 300i "client handle unknown hash type striped directory"
15457
15458 test_300j() {
15459         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15460         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
15461                 skip "Need MDS version at least 2.7.55" && return
15462         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15463         local stripe_count
15464         local file
15465
15466         mkdir $DIR/$tdir
15467
15468         #define OBD_FAIL_SPLIT_UPDATE_REC       0x1702
15469         $LCTL set_param fail_loc=0x1702
15470         $LFS setdirstripe -i 0 -c$MDSCOUNT -t all_char $DIR/$tdir/striped_dir ||
15471                 error "set striped dir error"
15472
15473         createmany -o $DIR/$tdir/striped_dir/f- 10 ||
15474                 error "create files under striped dir failed"
15475
15476         $LCTL set_param fail_loc=0
15477
15478         rm -rf $DIR/$tdir || error "unlink striped dir fails"
15479
15480         return 0
15481 }
15482 run_test 300j "test large update record"
15483
15484 test_300k() {
15485         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
15486                 skip "Need MDS version at least 2.7.55" && return
15487         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15488         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15489         local stripe_count
15490         local file
15491
15492         mkdir $DIR/$tdir
15493
15494         #define OBD_FAIL_LARGE_STRIPE   0x1703
15495         $LCTL set_param fail_loc=0x1703
15496         $LFS setdirstripe -i 0 -c512 $DIR/$tdir/striped_dir ||
15497                 error "set striped dir error"
15498         $LCTL set_param fail_loc=0
15499
15500         $LFS getdirstripe $DIR/$tdir/striped_dir ||
15501                 error "getstripeddir fails"
15502         rm -rf $DIR/$tdir/striped_dir ||
15503                 error "unlink striped dir fails"
15504
15505         return 0
15506 }
15507 run_test 300k "test large striped directory"
15508
15509 test_300l() {
15510         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
15511                 skip "Need MDS version at least 2.7.55" && return
15512         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15513         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15514         local stripe_index
15515
15516         test_mkdir -p $DIR/$tdir/striped_dir
15517         chown $RUNAS_ID $DIR/$tdir/striped_dir ||
15518                         error "chown $RUNAS_ID failed"
15519         $LFS setdirstripe -i 1 -D $DIR/$tdir/striped_dir ||
15520                 error "set default striped dir failed"
15521
15522         #define OBD_FAIL_MDS_STALE_DIR_LAYOUT    0x158
15523         $LCTL set_param fail_loc=0x80000158
15524         $RUNAS mkdir $DIR/$tdir/striped_dir/test_dir || error "create dir fails"
15525
15526         stripe_index=$($LFS getdirstripe -i $DIR/$tdir/striped_dir/test_dir)
15527         [ $stripe_index -eq 1 ] ||
15528                 error "expect 1 get $stripe_index for $dir"
15529 }
15530 run_test 300l "non-root user to create dir under striped dir with stale layout"
15531
15532 test_300m() {
15533         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
15534                 skip "Need MDS version at least 2.7.55" && return
15535         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15536         [ $MDSCOUNT -ge 2 ] && skip "Only for single MDT" && return
15537
15538         mkdir -p $DIR/$tdir/striped_dir
15539         $LFS setdirstripe -D -c 1 $DIR/$tdir/striped_dir ||
15540                 error "set default stripes dir error"
15541
15542         mkdir $DIR/$tdir/striped_dir/a || error "mkdir a fails"
15543
15544         stripe_count=$($LFS getdirstripe -c $DIR/$tdir/striped_dir/a)
15545         [ $stripe_count -eq 0 ] ||
15546                         error "expect 0 get $stripe_count for a"
15547
15548         $LFS setdirstripe -D -c 2 $DIR/$tdir/striped_dir ||
15549                 error "set default stripes dir error"
15550
15551         mkdir $DIR/$tdir/striped_dir/b || error "mkdir b fails"
15552
15553         stripe_count=$($LFS getdirstripe -c $DIR/$tdir/striped_dir/b)
15554         [ $stripe_count -eq 0 ] ||
15555                         error "expect 0 get $stripe_count for b"
15556
15557         $LFS setdirstripe -D -c1 -i2 $DIR/$tdir/striped_dir ||
15558                 error "set default stripes dir error"
15559
15560         mkdir $DIR/$tdir/striped_dir/c &&
15561                 error "default stripe_index is invalid, mkdir c should fails"
15562
15563         rm -rf $DIR/$tdir || error "rmdir fails"
15564 }
15565 run_test 300m "setstriped directory on single MDT FS"
15566
15567 cleanup_300n() {
15568         local list=$(comma_list $(mdts_nodes))
15569
15570         trap 0
15571         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=0
15572 }
15573
15574 test_300n() {
15575         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
15576                 skip "Need MDS version at least 2.7.55" && return
15577         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15578         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15579         remote_mds_nodsh && skip "remote MDS with nodsh" && return
15580
15581         local stripe_index
15582         local list=$(comma_list $(mdts_nodes))
15583
15584         trap cleanup_300n RETURN EXIT
15585         mkdir -p $DIR/$tdir
15586         chmod 777 $DIR/$tdir
15587         $RUNAS $LFS setdirstripe -i0 -c$MDSCOUNT \
15588                                 $DIR/$tdir/striped_dir > /dev/null 2>&1 &&
15589                 error "create striped dir succeeds with gid=0"
15590
15591         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=-1
15592         $RUNAS $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/striped_dir ||
15593                 error "create striped dir fails with gid=-1"
15594
15595         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=0
15596         $RUNAS $LFS setdirstripe -i 1 -c$MDSCOUNT -D \
15597                                 $DIR/$tdir/striped_dir > /dev/null 2>&1 &&
15598                 error "set default striped dir succeeds with gid=0"
15599
15600
15601         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=-1
15602         $RUNAS $LFS setdirstripe -i 1 -c$MDSCOUNT -D $DIR/$tdir/striped_dir ||
15603                 error "set default striped dir fails with gid=-1"
15604
15605
15606         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=0
15607         $RUNAS mkdir $DIR/$tdir/striped_dir/test_dir ||
15608                                         error "create test_dir fails"
15609         $RUNAS mkdir $DIR/$tdir/striped_dir/test_dir1 ||
15610                                         error "create test_dir1 fails"
15611         $RUNAS mkdir $DIR/$tdir/striped_dir/test_dir2 ||
15612                                         error "create test_dir2 fails"
15613         cleanup_300n
15614 }
15615 run_test 300n "non-root user to create dir under striped dir with default EA"
15616
15617 test_300o() {
15618         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
15619                 skip "Need MDS version at least 2.7.55" && return
15620         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15621         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15622         local numfree1
15623         local numfree2
15624
15625         mkdir -p $DIR/$tdir
15626
15627         numfree1=$(lctl get_param -n mdc.*MDT0000*.filesfree)
15628         numfree2=$(lctl get_param -n mdc.*MDT0001*.filesfree)
15629         if [ $numfree1 -lt 66000 -o $numfree2 -lt 66000 ]; then
15630                 skip "not enough free inodes $numfree1 $numfree2"
15631                 return
15632         fi
15633
15634         numfree1=$(lctl get_param -n mdc.*MDT0000-mdc-*.kbytesfree)
15635         numfree2=$(lctl get_param -n mdc.*MDT0001-mdc-*.kbytesfree)
15636         if [ $numfree1 -lt 300000 -o $numfree2 -lt 300000 ]; then
15637                 skip "not enough free space $numfree1 $numfree2"
15638                 return
15639         fi
15640
15641         $LFS setdirstripe -c2 $DIR/$tdir/striped_dir ||
15642                 error "setdirstripe fails"
15643
15644         createmany -d $DIR/$tdir/striped_dir/d 131000 ||
15645                 error "create dirs fails"
15646
15647         $LCTL set_param ldlm.namespaces.*mdc-*.lru_size=0
15648         ls $DIR/$tdir/striped_dir > /dev/null ||
15649                 error "ls striped dir fails"
15650         unlinkmany -d $DIR/$tdir/striped_dir/d 131000 ||
15651                 error "unlink big striped dir fails"
15652 }
15653 run_test 300o "unlink big sub stripe(> 65000 subdirs)"
15654
15655 test_300p() {
15656         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15657         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15658         remote_mds_nodsh && skip "remote MDS with nodsh" && return
15659
15660         mkdir -p $DIR/$tdir
15661
15662         #define OBD_FAIL_OUT_ENOSPC     0x1704
15663         do_facet mds2 lctl set_param fail_loc=0x80001704
15664         $LFS setdirstripe -c2 $DIR/$tdir/bad_striped_dir > /dev/null 2>&1 &&
15665                         error "create striped directory should fail"
15666
15667         [ -e $DIR/$tdir/bad_striped_dir ] && error "striped dir exists"
15668
15669         $LFS setdirstripe -c2 $DIR/$tdir/bad_striped_dir
15670         true
15671 }
15672 run_test 300p "create striped directory without space"
15673
15674 test_300q() {
15675         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15676         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15677
15678         local fd=$(free_fd)
15679         local cmd="exec $fd<$tdir"
15680         cd $DIR
15681         $LFS mkdir -c $MDSCOUNT $tdir || error "create $tdir fails"
15682         eval $cmd
15683         cmd="exec $fd<&-"
15684         trap "eval $cmd" EXIT
15685         cd $tdir || error "cd $tdir fails"
15686         rmdir  ../$tdir || error "rmdir $tdir fails"
15687         mkdir local_dir && error "create dir succeeds"
15688         $LFS setdirstripe -i1 remote_dir && error "create remote dir succeeds"
15689         eval $cmd
15690         return 0
15691 }
15692 run_test 300q "create remote directory under orphan directory"
15693
15694 prepare_remote_file() {
15695         mkdir $DIR/$tdir/src_dir ||
15696                 error "create remote source failed"
15697
15698         cp /etc/hosts $DIR/$tdir/src_dir/a || error
15699         touch $DIR/$tdir/src_dir/a
15700
15701         $LFS mkdir -i 1 $DIR/$tdir/tgt_dir ||
15702                 error "create remote target dir failed"
15703
15704         touch $DIR/$tdir/tgt_dir/b
15705
15706         mrename $DIR/$tdir/src_dir/a $DIR/$tdir/tgt_dir/b ||
15707                 error "rename dir cross MDT failed!"
15708
15709         $CHECKSTAT -t file $DIR/$tdir/src_dir/a &&
15710                 error "src_child still exists after rename"
15711
15712         $CHECKSTAT -t file $DIR/$tdir/tgt_dir/b ||
15713                 error "missing file(a) after rename"
15714
15715         diff /etc/hosts $DIR/$tdir/tgt_dir/b ||
15716                 error "diff after rename"
15717 }
15718
15719 test_310a() {
15720         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 4 MDTs" && return
15721         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15722         local remote_file=$DIR/$tdir/tgt_dir/b
15723
15724         mkdir -p $DIR/$tdir
15725
15726         prepare_remote_file || error "prepare remote file failed"
15727
15728         #open-unlink file
15729         $OPENUNLINK $remote_file $remote_file || error
15730         $CHECKSTAT -a $remote_file || error
15731 }
15732 run_test 310a "open unlink remote file"
15733
15734 test_310b() {
15735         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 4 MDTs" && return
15736         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15737         local remote_file=$DIR/$tdir/tgt_dir/b
15738
15739         mkdir -p $DIR/$tdir
15740
15741         prepare_remote_file || error "prepare remote file failed"
15742
15743         ln $remote_file $DIR/$tfile || error "link failed for remote file"
15744         $MULTIOP $DIR/$tfile Ouc || error "mulitop failed"
15745         $CHECKSTAT -t file $remote_file || error "check file failed"
15746 }
15747 run_test 310b "unlink remote file with multiple links while open"
15748
15749 test_310c() {
15750         [[ $MDSCOUNT -lt 4 ]] && skip "needs >= 4 MDTs" && return
15751         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15752         local remote_file=$DIR/$tdir/tgt_dir/b
15753
15754         mkdir -p $DIR/$tdir
15755
15756         prepare_remote_file || error "prepare remote file failed"
15757
15758         ln $remote_file $DIR/$tfile || error "link failed for remote file"
15759         multiop_bg_pause $remote_file O_uc ||
15760                         error "mulitop failed for remote file"
15761         MULTIPID=$!
15762         $MULTIOP $DIR/$tfile Ouc
15763         kill -USR1 $MULTIPID
15764         wait $MULTIPID
15765 }
15766 run_test 310c "open-unlink remote file with multiple links"
15767
15768 #LU-4825
15769 test_311() {
15770         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.54) ] &&
15771                 skip "lustre < 2.8.54 does not contain LU-4825 fix" && return
15772         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15773         remote_mds_nodsh && skip "remote MDS with nodsh" && return
15774
15775         local old_iused=$($LFS df -i | grep OST0000 | awk '{ print $3 }')
15776
15777         mkdir -p $DIR/$tdir
15778         $SETSTRIPE -i 0 -c 1 $DIR/$tdir
15779         createmany -o $DIR/$tdir/$tfile. 1000
15780
15781         # statfs data is not real time, let's just calculate it
15782         old_iused=$((old_iused + 1000))
15783
15784         local count=$(do_facet $SINGLEMDS "lctl get_param -n \
15785                         osp.*OST0000*MDT0000.create_count")
15786         local max_count=$(do_facet $SINGLEMDS "lctl get_param -n \
15787                                 osp.*OST0000*MDT0000.max_create_count")
15788         for idx in $(seq $MDSCOUNT); do
15789                 do_facet mds$idx "lctl set_param -n \
15790                         osp.*OST0000*MDT000?.max_create_count=0"
15791         done
15792
15793         $SETSTRIPE -i 0 $DIR/$tdir/$tfile || error "setstripe failed"
15794         local index=$($GETSTRIPE -i $DIR/$tdir/$tfile)
15795         [ $index -ne 0 ] || error "$tfile stripe index is 0"
15796
15797         unlinkmany $DIR/$tdir/$tfile. 1000
15798
15799         for idx in $(seq $MDSCOUNT); do
15800                 do_facet mds$idx "lctl set_param -n \
15801                         osp.*OST0000*MDT000?.max_create_count=$max_count"
15802                 do_facet mds$idx "lctl set_param -n \
15803                         osp.*OST0000*MDT000?.create_count=$count"
15804         done
15805
15806         local new_iused
15807         for i in $(seq 120); do
15808                 new_iused=$($LFS df -i | grep OST0000 | awk '{ print $3 }')
15809                 # system may be too busy to destroy all objs in time, use
15810                 # a somewhat small value to not fail autotest
15811                 [ $((old_iused - new_iused)) -gt 400 ] && break
15812                 sleep 1
15813         done
15814
15815         echo "waited $i sec, old Iused $old_iused, new Iused $new_iused"
15816         [ $((old_iused - new_iused)) -gt 400 ] ||
15817                 error "objs not destroyed after unlink"
15818 }
15819 run_test 311 "disable OSP precreate, and unlink should destroy objs"
15820
15821 zfs_oid_to_objid()
15822 {
15823         local ost=$1
15824         local objid=$2
15825
15826         local vdevdir=$(dirname $(facet_vdevice $ost))
15827         local cmd="$ZDB -e -p $vdevdir -ddddd $(facet_device $ost)"
15828         local zfs_zapid=$(do_facet $ost $cmd |
15829                           grep -w "/O/0/d$((objid%32))" -C 5 |
15830                           awk '/Object/{getline; print $1}')
15831         local zfs_objid=$(do_facet $ost $cmd $zfs_zapid |
15832                           awk "/$objid = /"'{printf $3}')
15833
15834         echo $zfs_objid
15835 }
15836
15837 zfs_object_blksz() {
15838         local ost=$1
15839         local objid=$2
15840
15841         local vdevdir=$(dirname $(facet_vdevice $ost))
15842         local cmd="$ZDB -e -p $vdevdir -dddd $(facet_device $ost)"
15843         local blksz=$(do_facet $ost $cmd $objid |
15844                       awk '/dblk/{getline; printf $4}')
15845
15846         case "${blksz: -1}" in
15847                 k|K) blksz=$((${blksz:0:$((${#blksz} - 1))}*1024)) ;;
15848                 m|M) blksz=$((${blksz:0:$((${#blksz} - 1))}*1024*1024)) ;;
15849                 *) ;;
15850         esac
15851
15852         echo $blksz
15853 }
15854
15855 test_312() { # LU-4856
15856         remote_ost_nodsh && skip "remote OST with nodsh" && return
15857
15858         [ $(facet_fstype ost1) = "zfs" ] ||
15859                 { skip "the test only applies to zfs" && return; }
15860
15861         local max_blksz=$(do_facet ost1 \
15862                           $ZFS get -p recordsize $(facet_device ost1) |
15863                           awk '!/VALUE/{print $3}')
15864         local min_blksz=$(getconf PAGE_SIZE)
15865
15866         # to make life a little bit easier
15867         $LFS mkdir -c 1 -i 0 $DIR/$tdir
15868         $LFS setstripe -c 1 -i 0 $DIR/$tdir
15869
15870         local tf=$DIR/$tdir/$tfile
15871         touch $tf
15872         local oid=$($LFS getstripe $tf | awk '/obdidx/{getline; print $2}')
15873
15874         # Get ZFS object id
15875         local zfs_objid=$(zfs_oid_to_objid ost1 $oid)
15876
15877         # block size change by sequential over write
15878         local blksz
15879         for ((bs=$min_blksz; bs <= max_blksz; bs <<= 2)); do
15880                 dd if=/dev/zero of=$tf bs=$bs count=1 oflag=sync conv=notrunc
15881
15882                 blksz=$(zfs_object_blksz ost1 $zfs_objid)
15883                 [ $blksz -eq $bs ] || error "blksz error: $blksz, expected: $bs"
15884         done
15885         rm -f $tf
15886
15887         # block size change by sequential append write
15888         dd if=/dev/zero of=$tf bs=$min_blksz count=1 oflag=sync conv=notrunc
15889         oid=$($LFS getstripe $tf | awk '/obdidx/{getline; print $2}')
15890         zfs_objid=$(zfs_oid_to_objid ost1 $oid)
15891
15892         for ((count = 1; count < $((max_blksz / min_blksz)); count *= 2)); do
15893                 dd if=/dev/zero of=$tf bs=$min_blksz count=$count seek=$count \
15894                         oflag=sync conv=notrunc
15895
15896                 blksz=$(zfs_object_blksz ost1 $zfs_objid)
15897                 [ $blksz -eq $((2 * count * min_blksz)) ] ||
15898                         error "blksz error, actual $blksz, "    \
15899                                 "expected: 2 * $count * $min_blksz"
15900         done
15901         rm -f $tf
15902
15903         # random write
15904         touch $tf
15905         oid=$($LFS getstripe $tf | awk '/obdidx/{getline; print $2}')
15906         zfs_objid=$(zfs_oid_to_objid ost1 $oid)
15907
15908         dd if=/dev/zero of=$tf bs=1K count=1 oflag=sync conv=notrunc
15909         blksz=$(zfs_object_blksz ost1 $zfs_objid)
15910         [ $blksz -eq $min_blksz ] ||
15911                 error "blksz error: $blksz, expected: $min_blksz"
15912
15913         dd if=/dev/zero of=$tf bs=64K count=1 oflag=sync conv=notrunc seek=128
15914         blksz=$(zfs_object_blksz ost1 $zfs_objid)
15915         [ $blksz -eq 65536 ] || error "blksz error: $blksz, expected: 64k"
15916
15917         dd if=/dev/zero of=$tf bs=1M count=1 oflag=sync conv=notrunc
15918         blksz=$(zfs_object_blksz ost1 $zfs_objid)
15919         [ $blksz -eq 65536 ] || error "rewrite error: $blksz, expected: 64k"
15920 }
15921 run_test 312 "make sure ZFS adjusts its block size by write pattern"
15922
15923 test_313() {
15924         remote_ost_nodsh && skip "remote OST with nodsh" && return
15925
15926         local file=$DIR/$tfile
15927         rm -f $file
15928         $SETSTRIPE -c 1 -i 0 $file || error "setstripe failed"
15929
15930         # define OBD_FAIL_TGT_RCVD_EIO           0x720
15931         do_facet ost1 "$LCTL set_param fail_loc=0x720"
15932         dd if=/dev/zero of=$file bs=4096 oflag=direct count=1 &&
15933                 error "write should failed"
15934         do_facet ost1 "$LCTL set_param fail_loc=0"
15935         rm -f $file
15936 }
15937 run_test 313 "io should fail after last_rcvd update fail"
15938
15939 test_fake_rw() {
15940         local read_write=$1
15941         if [ "$read_write" = "write" ]; then
15942                 local dd_cmd="dd if=/dev/zero of=$DIR/$tfile"
15943         elif [ "$read_write" = "read" ]; then
15944                 local dd_cmd="dd of=/dev/null if=$DIR/$tfile"
15945         else
15946                 error "argument error"
15947         fi
15948
15949         # turn off debug for performance testing
15950         local saved_debug=$($LCTL get_param -n debug)
15951         $LCTL set_param debug=0
15952
15953         $SETSTRIPE -c 1 -i 0 $DIR/$tfile
15954
15955         # get ost1 size - lustre-OST0000
15956         local ost1_avail_size=$($LFS df | awk /${ost1_svc}/'{ print $4 }')
15957         local blocks=$((ost1_avail_size/2/1024)) # half avail space by megabytes
15958         [ $blocks -gt 1000 ] && blocks=1000 # 1G in maximum
15959
15960         if [ "$read_write" = "read" ]; then
15961                 truncate -s $(expr 1048576 \* $blocks) $DIR/$tfile
15962         fi
15963
15964         local start_time=$(date +%s.%N)
15965         $dd_cmd bs=1M count=$blocks oflag=sync ||
15966                 error "real dd $read_write error"
15967         local duration=$(bc <<< "$(date +%s.%N) - $start_time")
15968
15969         if [ "$read_write" = "write" ]; then
15970                 rm -f $DIR/$tfile
15971         fi
15972
15973         # define OBD_FAIL_OST_FAKE_RW           0x238
15974         do_facet ost1 $LCTL set_param fail_loc=0x238
15975
15976         local start_time=$(date +%s.%N)
15977         $dd_cmd bs=1M count=$blocks oflag=sync ||
15978                 error "fake dd $read_write error"
15979         local duration_fake=$(bc <<< "$(date +%s.%N) - $start_time")
15980
15981         if [ "$read_write" = "write" ]; then
15982                 # verify file size
15983                 cancel_lru_locks osc
15984                 $CHECKSTAT -t file -s $((blocks * 1024 * 1024)) $DIR/$tfile ||
15985                         error "$tfile size not $blocks MB"
15986         fi
15987         do_facet ost1 $LCTL set_param fail_loc=0
15988
15989         echo "fake $read_write $duration_fake vs. normal $read_write" \
15990                 "$duration in seconds"
15991         [ $(bc <<< "$duration_fake < $duration") -eq 1 ] ||
15992                 error_not_in_vm "fake write is slower"
15993
15994         $LCTL set_param -n debug="$saved_debug"
15995         rm -f $DIR/$tfile
15996 }
15997 test_399a() { # LU-7655 for OST fake write
15998         remote_ost_nodsh && skip "remote OST with nodsh" && return
15999
16000         test_fake_rw write
16001 }
16002 run_test 399a "fake write should not be slower than normal write"
16003
16004 test_399b() { # LU-8726 for OST fake read
16005         remote_ost_nodsh && skip "remote OST with nodsh" && return
16006
16007         if [ "$(facet_fstype ost1)" != "ldiskfs" ]; then
16008                 skip "only for ldiskfs" && return 0
16009         fi
16010         test_fake_rw read
16011 }
16012 run_test 399b "fake read should not be slower than normal read"
16013
16014 test_400a() { # LU-1606, was conf-sanity test_74
16015         local extra_flags=''
16016         local out=$TMP/$tfile
16017         local prefix=/usr/include/lustre
16018         local prog
16019
16020         if ! which $CC > /dev/null 2>&1; then
16021                 skip_env "$CC is not installed"
16022                 return 0
16023         fi
16024
16025         if ! [[ -d $prefix ]]; then
16026                 # Assume we're running in tree and fixup the include path.
16027                 extra_flags+=" -I$LUSTRE/../libcfs/include"
16028                 extra_flags+=" -I$LUSTRE/include"
16029                 extra_flags+=" -L$LUSTRE/utils"
16030         fi
16031
16032         for prog in $LUSTRE_TESTS_API_DIR/*.c; do
16033                 $CC -Wall -Werror $extra_flags -llustreapi -o $out $prog ||
16034                         error "client api broken"
16035         done
16036         rm -f $out
16037 }
16038 run_test 400a "Lustre client api program can compile and link"
16039
16040 test_400b() { # LU-1606, LU-5011
16041         local header
16042         local out=$TMP/$tfile
16043         local prefix=/usr/include/lustre
16044
16045         # We use a hard coded prefix so that this test will not fail
16046         # when run in tree. There are headers in lustre/include/lustre/
16047         # that are not packaged (like lustre_idl.h) and have more
16048         # complicated include dependencies (like config.h and lnet/types.h).
16049         # Since this test about correct packaging we just skip them when
16050         # they don't exist (see below) rather than try to fixup cppflags.
16051
16052         if ! which $CC > /dev/null 2>&1; then
16053                 skip_env "$CC is not installed"
16054                 return 0
16055         fi
16056
16057         for header in $prefix/*.h; do
16058                 if ! [[ -f "$header" ]]; then
16059                         continue
16060                 fi
16061
16062                 if [[ "$(basename $header)" == liblustreapi.h ]]; then
16063                         continue # liblustreapi.h is deprecated.
16064                 fi
16065
16066                 $CC -Wall -Werror -include $header -c -x c /dev/null -o $out ||
16067                         error "cannot compile '$header'"
16068         done
16069         rm -f $out
16070 }
16071 run_test 400b "packaged headers can be compiled"
16072
16073 test_401a() { #LU-7437
16074         local printf_arg=$(find -printf 2>&1 | grep "unrecognized:")
16075         [ -n "$printf_arg" ] && skip_env "find does not support -printf" &&
16076                 return
16077         #count the number of parameters by "list_param -R"
16078         local params=$($LCTL list_param -R '*' 2>/dev/null | wc -l)
16079         #count the number of parameters by listing proc files
16080         local proc_dirs=$(eval \ls -d $proc_regexp 2>/dev/null)
16081         echo "proc_dirs='$proc_dirs'"
16082         [ -n "$proc_dirs" ] || error "no proc_dirs on $HOSTNAME"
16083         local procs=$(find -L $proc_dirs -mindepth 1 -printf '%P\n' 2>/dev/null|
16084                       sort -u | wc -l)
16085
16086         [ $params -eq $procs ] ||
16087                 error "found $params parameters vs. $procs proc files"
16088
16089         # test the list_param -D option only returns directories
16090         params=$($LCTL list_param -R -D '*' 2>/dev/null | wc -l)
16091         #count the number of parameters by listing proc directories
16092         procs=$(find -L $proc_dirs -mindepth 1 -type d -printf '%P\n' 2>/dev/null |
16093                 sort -u | wc -l)
16094
16095         [ $params -eq $procs ] ||
16096                 error "found $params parameters vs. $procs proc files"
16097 }
16098 run_test 401a "Verify if 'lctl list_param -R' can list parameters recursively"
16099
16100 test_401b() {
16101         local save=$($LCTL get_param -n jobid_var)
16102         local tmp=testing
16103
16104         $LCTL set_param foo=bar jobid_var=$tmp bar=baz &&
16105                 error "no error returned when setting bad parameters"
16106
16107         local jobid_new=$($LCTL get_param -n foe jobid_var baz)
16108         [[ "$jobid_new" == "$tmp" ]] || error "jobid tmp $jobid_new != $tmp"
16109
16110         $LCTL set_param -n fog=bam jobid_var=$save bat=fog
16111         local jobid_old=$($LCTL get_param -n foe jobid_var bag)
16112         [[ "$jobid_old" == "$save" ]] || error "jobid new $jobid_old != $save"
16113 }
16114 run_test 401b "Verify 'lctl {get,set}_param' continue after error"
16115
16116 test_401c() {
16117         local jobid_var_old=$($LCTL get_param -n jobid_var)
16118         local jobid_var_new
16119
16120         $LCTL set_param jobid_var= &&
16121                 error "no error returned for 'set_param a='"
16122
16123         jobid_var_new=$($LCTL get_param -n jobid_var)
16124         [[ "$jobid_var_old" == "$jobid_var_new" ]] ||
16125                 error "jobid_var was changed by setting without value"
16126
16127         $LCTL set_param jobid_var &&
16128                 error "no error returned for 'set_param a'"
16129
16130         jobid_var_new=$($LCTL get_param -n jobid_var)
16131         [[ "$jobid_var_old" == "$jobid_var_new" ]] ||
16132                 error "jobid_var was changed by setting without value"
16133 }
16134 run_test 401c "Verify 'lctl set_param' without value fails in either format."
16135
16136 test_401d() {
16137         local jobid_var_old=$($LCTL get_param -n jobid_var)
16138         local jobid_var_new
16139         local new_value="foo=bar"
16140
16141         $LCTL set_param jobid_var=$new_value ||
16142                 error "'set_param a=b' did not accept a value containing '='"
16143
16144         jobid_var_new=$($LCTL get_param -n jobid_var)
16145         [[ "$jobid_var_new" == "$new_value" ]] ||
16146                 error "'set_param a=b' failed on a value containing '='"
16147
16148         # Reset the jobid_var to test the other format
16149         $LCTL set_param jobid_var=$jobid_var_old
16150         jobid_var_new=$($LCTL get_param -n jobid_var)
16151         [[ "$jobid_var_new" == "$jobid_var_old" ]] ||
16152                 error "failed to reset jobid_var"
16153
16154         $LCTL set_param jobid_var $new_value ||
16155                 error "'set_param a b' did not accept a value containing '='"
16156
16157         jobid_var_new=$($LCTL get_param -n jobid_var)
16158         [[ "$jobid_var_new" == "$new_value" ]] ||
16159                 error "'set_param a b' failed on a value containing '='"
16160
16161         $LCTL set_param jobid_var $jobid_var_old
16162         jobid_var_new=$($LCTL get_param -n jobid_var)
16163         [[ "$jobid_var_new" == "$jobid_var_old" ]] ||
16164                 error "failed to reset jobid_var"
16165 }
16166 run_test 401d "Verify 'lctl set_param' accepts values containing '='"
16167
16168 test_402() {
16169         local server_version=$(lustre_version_code $SINGLEMDS)
16170         [[ $server_version -ge $(version_code 2.7.66) ]] ||
16171         [[ $server_version -ge $(version_code 2.7.18.4) &&
16172                 $server_version -lt $(version_code 2.7.50) ]] ||
16173         [[ $server_version -ge $(version_code 2.7.2) &&
16174                 $server_version -lt $(version_code 2.7.11) ]] ||
16175                 { skip "Need MDS version 2.7.2+ or 2.7.18.4+ or 2.7.66+";
16176                         return; }
16177         remote_mds_nodsh && skip "remote MDS with nodsh" && return
16178         $LFS setdirstripe -i 0 $DIR/$tdir || error "setdirstripe -i 0 failed"
16179 #define OBD_FAIL_MDS_FLD_LOOKUP 0x15c
16180         do_facet mds1 "lctl set_param fail_loc=0x8000015c"
16181         touch $DIR/$tdir/$tfile && error "touch should fail with ENOENT" ||
16182                 echo "Touch failed - OK"
16183 }
16184 run_test 402 "Return ENOENT to lod_generate_and_set_lovea"
16185
16186 test_403() {
16187         local file1=$DIR/$tfile.1
16188         local file2=$DIR/$tfile.2
16189         local tfile=$TMP/$tfile
16190
16191         rm -f $file1 $file2 $tfile
16192
16193         touch $file1
16194         ln $file1 $file2
16195
16196         # 30 sec OBD_TIMEOUT in ll_getattr()
16197         # right before populating st_nlink
16198         $LCTL set_param fail_loc=0x80001409
16199         stat -c %h $file1 > $tfile &
16200
16201         # create an alias, drop all locks and reclaim the dentry
16202         < $file2
16203         cancel_lru_locks mdc
16204         cancel_lru_locks osc
16205         sysctl -w vm.drop_caches=2
16206
16207         wait
16208
16209         [ `cat $tfile` -gt 0 ] || error "wrong nlink count: `cat $tfile`"
16210
16211         rm -f $tfile $file1 $file2
16212 }
16213 run_test 403 "i_nlink should not drop to zero due to aliasing"
16214
16215 test_404() { # LU-6601
16216         local server_version=$(lustre_version_code $SINGLEMDS)
16217         [[ $server_version -ge $(version_code 2.8.53) ]] ||
16218                 { skip "Need server version newer than 2.8.52"; return 0; }
16219
16220         remote_mds_nodsh && skip "remote MDS with nodsh" && return
16221         local mosps=$(do_facet $SINGLEMDS $LCTL dl |
16222                 awk '/osp .*-osc-MDT/ { print $4}')
16223
16224         local osp
16225         for osp in $mosps; do
16226                 echo "Deactivate: " $osp
16227                 do_facet $SINGLEMDS $LCTL --device %$osp deactivate
16228                 local stat=$(do_facet $SINGLEMDS $LCTL dl |
16229                         awk -vp=$osp '$4 == p { print $2 }')
16230                 [ $stat = IN ] || {
16231                         do_facet $SINGLEMDS $LCTL dl | grep -w $osp
16232                         error "deactivate error"
16233                 }
16234                 echo "Activate: " $osp
16235                 do_facet $SINGLEMDS $LCTL --device %$osp activate
16236                 local stat=$(do_facet $SINGLEMDS $LCTL dl |
16237                         awk -vp=$osp '$4 == p { print $2 }')
16238                 [ $stat = UP ] || {
16239                         do_facet $SINGLEMDS $LCTL dl | grep -w $osp
16240                         error "activate error"
16241                 }
16242         done
16243 }
16244 run_test 404 "validate manual {de}activated works properly for OSPs"
16245
16246 test_405() {
16247         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.6.92) ] &&
16248                 skip "Layout swap lock is not supported" && return
16249
16250         check_swap_layouts_support && return 0
16251
16252         test_mkdir -p $DIR/$tdir
16253         swap_lock_test -d $DIR/$tdir ||
16254                 error "One layout swap locked test failed"
16255 }
16256 run_test 405 "Various layout swap lock tests"
16257
16258 test_406() {
16259         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
16260         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
16261         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
16262         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
16263         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.50) ] &&
16264                 skip "Need MDS version at least 2.8.50" && return
16265
16266         local def_stripenr=$($GETSTRIPE -c $MOUNT)
16267         local def_stripe_size=$($GETSTRIPE -S $MOUNT)
16268         local def_stripe_offset=$($GETSTRIPE -i $MOUNT)
16269         local def_pool=$($GETSTRIPE -p $MOUNT)
16270
16271         local test_pool=$TESTNAME
16272         pool_add $test_pool || error "pool_add failed"
16273         pool_add_targets $test_pool 0 $(($OSTCOUNT - 1)) 1 ||
16274                 error "pool_add_targets failed"
16275
16276         # parent set default stripe count only, child will stripe from both
16277         # parent and fs default
16278         $SETSTRIPE -c 1 -i 1 -S $((def_stripe_size * 2)) -p $test_pool $MOUNT ||
16279                 error "setstripe $MOUNT failed"
16280         $LFS mkdir -c $MDSCOUNT $DIR/$tdir || error "mkdir $tdir failed"
16281         $SETSTRIPE -c $OSTCOUNT $DIR/$tdir || error "setstripe $tdir failed"
16282         for i in $(seq 10); do
16283                 local f=$DIR/$tdir/$tfile.$i
16284                 touch $f || error "touch failed"
16285                 local count=$($GETSTRIPE -c $f)
16286                 [ $count -eq $OSTCOUNT ] ||
16287                         error "$f stripe count $count != $OSTCOUNT"
16288                 local offset=$($GETSTRIPE -i $f)
16289                 [ $offset -eq 1 ] || error "$f stripe offset $offset != 1"
16290                 local size=$($GETSTRIPE -S $f)
16291                 [ $size -eq $((def_stripe_size * 2)) ] ||
16292                         error "$f stripe size $size != $((def_stripe_size * 2))"
16293                 local pool=$($GETSTRIPE -p $f)
16294                 [ $pool == $test_pool ] || error "$f pool $pool != $test_pool"
16295         done
16296
16297         # change fs default striping, delete parent default striping, now child
16298         # will stripe from new fs default striping only
16299         $SETSTRIPE -c 1 -S $def_stripe_size -i 0 $MOUNT ||
16300                 error "change $MOUNT default stripe failed"
16301         $SETSTRIPE -c 0 $DIR/$tdir || error "delete $tdir default stripe failed"
16302         for i in $(seq 11 20); do
16303                 local f=$DIR/$tdir/$tfile.$i
16304                 touch $f || error "touch $f failed"
16305                 local count=$($GETSTRIPE -c $f)
16306                 [ $count -eq 1 ] || error "$f stripe count $count != 1"
16307                 local offset=$($GETSTRIPE -i $f)
16308                 [ $offset -eq 0 ] || error "$f stripe offset $offset != 0"
16309                 local size=$($GETSTRIPE -S $f)
16310                 [ $size -eq $def_stripe_size ] ||
16311                         error "$f stripe size $size != $def_stripe_size"
16312                 local pool=$($GETSTRIPE -p $f)
16313                 [ "#$pool" == "#" ] || error "$f pool $pool is set"
16314
16315         done
16316
16317         unlinkmany $DIR/$tdir/$tfile. 1 20
16318
16319         # restore FS default striping
16320         if [ -z $def_pool ]; then
16321                 $SETSTRIPE -c $def_stripenr -S $def_stripe_size \
16322                         -i $def_stripe_offset $MOUNT ||
16323                         error "restore default striping failed"
16324         else
16325                 $SETSTRIPE -c $def_stripenr -S $def_stripe_size -p $def_pool \
16326                         -i $def_stripe_offset $MOUNT ||
16327                         error "restore default striping with $def_pool failed"
16328         fi
16329
16330         local f=$DIR/$tdir/$tfile
16331         pool_remove_all_targets $test_pool $f
16332         pool_remove $test_pool $f
16333 }
16334 run_test 406 "DNE support fs default striping"
16335
16336 test_407() {
16337         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
16338         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.55) ]] &&
16339                 skip "Need MDS version at least 2.8.55" && return
16340         remote_mds_nodsh && skip "remote MDS with nodsh" && return
16341
16342         $LFS mkdir -i 0 -c 1 $DIR/$tdir.0 ||
16343                 error "$LFS mkdir -i 0 -c 1 $tdir.0 failed"
16344         $LFS mkdir -i 1 -c 1 $DIR/$tdir.1 ||
16345                 error "$LFS mkdir -i 1 -c 1 $tdir.1 failed"
16346         touch $DIR/$tdir.0/$tfile.0 || error "touch $tdir.0/$tfile.0 failed"
16347
16348         #define OBD_FAIL_DT_TXN_STOP    0x2019
16349         for idx in $(seq $MDSCOUNT); do
16350                 do_facet mds$idx "lctl set_param fail_loc=0x2019"
16351         done
16352         $LFS mkdir -c 2 $DIR/$tdir && error "$LFS mkdir -c 2 $tdir should fail"
16353         mv $DIR/$tdir.0/$tfile.0 $DIR/$tdir.1/$tfile.1 &&
16354                 error "mv $tdir.0/$tfile.0 $tdir.1/$tfile.1 should fail"
16355         true
16356 }
16357 run_test 407 "transaction fail should cause operation fail"
16358
16359 test_408() {
16360         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 oflag=direct
16361
16362         #define OBD_FAIL_OSC_BRW_PREP_REQ2        0x40a
16363         lctl set_param fail_loc=0x8000040a
16364         # let ll_prepare_partial_page() fail
16365         dd if=/dev/zero of=$DIR/$tfile bs=2048 count=1 conv=notrunc || true
16366
16367         rm -f $DIR/$tfile
16368
16369         # create at least 100 unused inodes so that
16370         # shrink_icache_memory(0) should not return 0
16371         touch $DIR/$tfile-{0..100}
16372         rm -f $DIR/$tfile-{0..100}
16373         sync
16374
16375         echo 2 > /proc/sys/vm/drop_caches
16376 }
16377 run_test 408 "drop_caches should not hang due to page leaks"
16378
16379 test_409()
16380 {
16381         [ $MDSCOUNT -lt 2 ] &&
16382                 skip "We need at least 2 MDTs for this test" && return
16383
16384         check_mount_and_prep
16385
16386         mkdir -p $DIR/$tdir || error "(0) Fail to mkdir"
16387         $LFS mkdir -i 1 -c 2 $DIR/$tdir/foo || error "(1) Fail to mkdir"
16388         touch $DIR/$tdir/guard || error "(2) Fail to create"
16389
16390         local PREFIX=$(str_repeat 'A' 128)
16391         echo "Create 1K hard links start at $(date)"
16392         createmany -l $DIR/$tdir/guard $DIR/$tdir/foo/${PREFIX}_ 1000 ||
16393                 error "(3) Fail to hard link"
16394
16395         echo "Links count should be right although linkEA overflow"
16396         stat $DIR/$tdir/guard || error "(4) Fail to stat"
16397         local linkcount=$(stat --format=%h $DIR/$tdir/guard)
16398         [ $linkcount -eq 1001 ] ||
16399                 error "(5) Unexpected hard links count: $linkcount"
16400
16401         echo "List all links start at $(date)"
16402         ls -l $DIR/$tdir/foo > /dev/null ||
16403                 error "(6) Fail to list $DIR/$tdir/foo"
16404
16405         echo "Unlink hard links start at $(date)"
16406         unlinkmany $DIR/$tdir/foo/${PREFIX}_ 1000 ||
16407                 error "(7) Fail to unlink"
16408 }
16409 run_test 409 "Large amount of cross-MDTs hard links on the same file"
16410
16411 test_410()
16412 {
16413         # Create a file, and stat it from the kernel
16414         local testfile=$DIR/$tfile
16415         touch $testfile
16416
16417         local run_id=$RANDOM
16418         local my_ino=$(stat --format "%i" $testfile)
16419
16420         # Try to insert the module. This will always fail as the
16421         # module is designed to not be inserted.
16422         insmod $LUSTRE/tests/kernel/kinode.ko run_id=$run_id fname=$testfile \
16423             &> /dev/null
16424
16425         # Anything but success is a test failure
16426         dmesg | grep -q \
16427             "lustre_kinode_$run_id: inode numbers are identical: $my_ino" ||
16428             error "no inode match"
16429 }
16430 run_test 410 "Test inode number returned from kernel thread"
16431
16432 prep_801() {
16433         [[ $(lustre_version_code mds1) -lt $(version_code 2.9.55) ]] ||
16434         [[ $(lustre_version_code ost1) -lt $(version_code 2.9.55) ]] &&
16435                 skip "Need server version at least 2.9.55" & exit 0
16436         start_full_debug_logging
16437 }
16438
16439 post_801() {
16440         stop_full_debug_logging
16441 }
16442
16443 barrier_stat() {
16444         if [ $(lustre_version_code mgs) -le $(version_code 2.10.0) ]; then
16445                 local st=$(do_facet mgs $LCTL barrier_stat $FSNAME |
16446                            awk '/The barrier for/ { print $7 }')
16447                 echo $st
16448         else
16449                 local st=$(do_facet mgs $LCTL barrier_stat -s $FSNAME)
16450                 echo \'$st\'
16451         fi
16452 }
16453
16454 barrier_expired() {
16455         local expired
16456
16457         if [ $(lustre_version_code mgs) -le $(version_code 2.10.0) ]; then
16458                 expired=$(do_facet mgs $LCTL barrier_stat $FSNAME |
16459                           awk '/will be expired/ { print $7 }')
16460         else
16461                 expired=$(do_facet mgs $LCTL barrier_stat -t $FSNAME)
16462         fi
16463
16464         echo $expired
16465 }
16466
16467 test_801a() {
16468         prep_801
16469
16470         echo "Start barrier_freeze at: $(date)"
16471         #define OBD_FAIL_BARRIER_DELAY          0x2202
16472         do_facet mgs $LCTL set_param fail_val=5 fail_loc=0x2202
16473         do_facet mgs $LCTL barrier_freeze $FSNAME 10 &
16474
16475         sleep 2
16476         local b_status=$(barrier_stat)
16477         echo "Got barrier status at: $(date)"
16478         [ "$b_status" = "'freezing_p1'" ] ||
16479                 error "(1) unexpected barrier status $b_status"
16480
16481         do_facet mgs $LCTL set_param fail_val=0 fail_loc=0
16482         wait
16483         b_status=$(barrier_stat)
16484         [ "$b_status" = "'frozen'" ] ||
16485                 error "(2) unexpected barrier status $b_status"
16486
16487         local expired=$(barrier_expired)
16488         echo "sleep $((expired + 3)) seconds, then the barrier will be expired"
16489         sleep $((expired + 3))
16490
16491         b_status=$(barrier_stat)
16492         [ "$b_status" = "'expired'" ] ||
16493                 error "(3) unexpected barrier status $b_status"
16494
16495         do_facet mgs $LCTL barrier_freeze $FSNAME 10 ||
16496                 error "(4) fail to freeze barrier"
16497
16498         b_status=$(barrier_stat)
16499         [ "$b_status" = "'frozen'" ] ||
16500                 error "(5) unexpected barrier status $b_status"
16501
16502         echo "Start barrier_thaw at: $(date)"
16503         #define OBD_FAIL_BARRIER_DELAY          0x2202
16504         do_facet mgs $LCTL set_param fail_val=5 fail_loc=0x2202
16505         do_facet mgs $LCTL barrier_thaw $FSNAME &
16506
16507         sleep 2
16508         b_status=$(barrier_stat)
16509         echo "Got barrier status at: $(date)"
16510         [ "$b_status" = "'thawing'" ] ||
16511                 error "(6) unexpected barrier status $b_status"
16512
16513         do_facet mgs $LCTL set_param fail_val=0 fail_loc=0
16514         wait
16515         b_status=$(barrier_stat)
16516         [ "$b_status" = "'thawed'" ] ||
16517                 error "(7) unexpected barrier status $b_status"
16518
16519         #define OBD_FAIL_BARRIER_FAILURE        0x2203
16520         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x2203
16521         do_facet mgs $LCTL barrier_freeze $FSNAME
16522
16523         b_status=$(barrier_stat)
16524         [ "$b_status" = "'failed'" ] ||
16525                 error "(8) unexpected barrier status $b_status"
16526
16527         do_facet $SINGLEMDS $LCTL set_param fail_loc=0
16528         do_facet mgs $LCTL barrier_thaw $FSNAME
16529
16530         post_801
16531 }
16532 run_test 801a "write barrier user interfaces and stat machine"
16533
16534 test_801b() {
16535         prep_801
16536
16537         mkdir $DIR/$tdir || error "(1) fail to mkdir"
16538         createmany -d $DIR/$tdir/d 6 || "(2) fail to mkdir"
16539         touch $DIR/$tdir/d2/f10 || error "(3) fail to touch"
16540         touch $DIR/$tdir/d3/f11 || error "(4) fail to touch"
16541         touch $DIR/$tdir/d4/f12 || error "(5) fail to touch"
16542
16543         cancel_lru_locks mdc
16544
16545         # 180 seconds should be long enough
16546         do_facet mgs $LCTL barrier_freeze $FSNAME 180
16547
16548         local b_status=$(barrier_stat)
16549         [ "$b_status" = "'frozen'" ] ||
16550                 error "(6) unexpected barrier status $b_status"
16551
16552         mkdir $DIR/$tdir/d0/d10 &
16553         mkdir_pid=$!
16554
16555         touch $DIR/$tdir/d1/f13 &
16556         touch_pid=$!
16557
16558         ln $DIR/$tdir/d2/f10 $DIR/$tdir/d2/f14 &
16559         ln_pid=$!
16560
16561         mv $DIR/$tdir/d3/f11 $DIR/$tdir/d3/f15 &
16562         mv_pid=$!
16563
16564         rm -f $DIR/$tdir/d4/f12 &
16565         rm_pid=$!
16566
16567         stat $DIR/$tdir/d5 || error "(7) stat should succeed"
16568
16569         # To guarantee taht the 'stat' is not blocked
16570         b_status=$(barrier_stat)
16571         [ "$b_status" = "'frozen'" ] ||
16572                 error "(8) unexpected barrier status $b_status"
16573
16574         # let above commands to run at background
16575         sleep 5
16576
16577         ps -p $mkdir_pid || error "(9) mkdir should be blocked"
16578         ps -p $touch_pid || error "(10) touch should be blocked"
16579         ps -p $ln_pid || error "(11) link should be blocked"
16580         ps -p $mv_pid || error "(12) rename should be blocked"
16581         ps -p $rm_pid || error "(13) unlink should be blocked"
16582
16583         b_status=$(barrier_stat)
16584         [ "$b_status" = "'frozen'" ] ||
16585                 error "(14) unexpected barrier status $b_status"
16586
16587         do_facet mgs $LCTL barrier_thaw $FSNAME
16588         b_status=$(barrier_stat)
16589         [ "$b_status" = "'thawed'" ] ||
16590                 error "(15) unexpected barrier status $b_status"
16591
16592         wait $mkdir_pid || error "(16) mkdir should succeed"
16593         wait $touch_pid || error "(17) touch should succeed"
16594         wait $ln_pid || error "(18) link should succeed"
16595         wait $mv_pid || error "(19) rename should succeed"
16596         wait $rm_pid || error "(20) unlink should succeed"
16597
16598         post_801
16599 }
16600 run_test 801b "modification will be blocked by write barrier"
16601
16602 test_801c() {
16603         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 2 MDTs" && return
16604
16605         prep_801
16606
16607         stop mds2 || error "(1) Fail to stop mds2"
16608
16609         do_facet mgs $LCTL barrier_freeze $FSNAME 30
16610
16611         local b_status=$(barrier_stat)
16612         [ "$b_status" = "'expired'" -o "$b_status" = "'failed'" ] || {
16613                 do_facet mgs $LCTL barrier_thaw $FSNAME
16614                 error "(2) unexpected barrier status $b_status"
16615         }
16616
16617         do_facet mgs $LCTL barrier_rescan $FSNAME ||
16618                 error "(3) Fail to rescan barrier bitmap"
16619
16620         do_facet mgs $LCTL barrier_freeze $FSNAME 10
16621
16622         b_status=$(barrier_stat)
16623         [ "$b_status" = "'frozen'" ] ||
16624                 error "(4) unexpected barrier status $b_status"
16625
16626         do_facet mgs $LCTL barrier_thaw $FSNAME
16627         b_status=$(barrier_stat)
16628         [ "$b_status" = "'thawed'" ] ||
16629                 error "(5) unexpected barrier status $b_status"
16630
16631         local devname=$(mdsdevname 2)
16632
16633         start mds2 $devname $MDS_MOUNT_OPTS || error "(6) Fail to start mds2"
16634
16635         do_facet mgs $LCTL barrier_rescan $FSNAME ||
16636                 error "(7) Fail to rescan barrier bitmap"
16637
16638         post_801
16639 }
16640 run_test 801c "rescan barrier bitmap"
16641
16642 saved_MGS_MOUNT_OPTS=$MGS_MOUNT_OPTS
16643 saved_MDS_MOUNT_OPTS=$MDS_MOUNT_OPTS
16644 saved_OST_MOUNT_OPTS=$OST_MOUNT_OPTS
16645
16646 cleanup_802() {
16647         trap 0
16648
16649         stopall
16650         MGS_MOUNT_OPTS=$saved_MGS_MOUNT_OPTS
16651         MDS_MOUNT_OPTS=$saved_MDS_MOUNT_OPTS
16652         OST_MOUNT_OPTS=$saved_OST_MOUNT_OPTS
16653         setupall
16654 }
16655
16656 test_802() {
16657
16658         [[ $(lustre_version_code mds1) -lt $(version_code 2.9.55) ]] ||
16659         [[ $(lustre_version_code ost1) -lt $(version_code 2.9.55) ]] &&
16660                 skip "Need server version at least 2.9.55" & exit 0
16661
16662         mkdir $DIR/$tdir || error "(1) fail to mkdir"
16663
16664         cp $LUSTRE/tests/test-framework.sh $DIR/$tdir/ ||
16665                 error "(2) Fail to copy"
16666
16667         trap cleanup_802 EXIT
16668
16669         # sync by force before remount as readonly
16670         sync; sync_all_data; sleep 3; sync_all_data
16671
16672         stopall
16673
16674         MGS_MOUNT_OPTS=$(csa_add "$MGS_MOUNT_OPTS" -o rdonly_dev)
16675         MDS_MOUNT_OPTS=$(csa_add "$MDS_MOUNT_OPTS" -o rdonly_dev)
16676         OST_MOUNT_OPTS=$(csa_add "$OST_MOUNT_OPTS" -o rdonly_dev)
16677
16678         echo "Mount the server as read only"
16679         setupall server_only || error "(3) Fail to start servers"
16680
16681         echo "Mount client without ro should fail"
16682         mount_client $MOUNT &&
16683                 error "(4) Mount client without 'ro' should fail"
16684
16685         echo "Mount client with ro should succeed"
16686         mount_client $MOUNT ro ||
16687                 error "(5) Mount client with 'ro' should succeed"
16688
16689         echo "Modify should be refused"
16690         touch $DIR/$tdir/guard && error "(6) Touch should fail under ro mode"
16691
16692         echo "Read should be allowed"
16693         diff $LUSTRE/tests/test-framework.sh $DIR/$tdir/test-framework.sh ||
16694                 error "(7) Read should succeed under ro mode"
16695
16696         cleanup_802
16697 }
16698 run_test 802 "simulate readonly device"
16699
16700 #
16701 # tests that do cleanup/setup should be run at the end
16702 #
16703
16704 test_900() {
16705         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
16706         local ls
16707         #define OBD_FAIL_MGC_PAUSE_PROCESS_LOG   0x903
16708         $LCTL set_param fail_loc=0x903
16709
16710         cancel_lru_locks MGC
16711
16712         FAIL_ON_ERROR=true cleanup
16713         FAIL_ON_ERROR=true setup
16714 }
16715 run_test 900 "umount should not race with any mgc requeue thread"
16716
16717 complete $SECONDS
16718 [ -f $EXT2_DEV ] && rm $EXT2_DEV || true
16719 check_and_cleanup_lustre
16720 if [ "$I_MOUNTED" != "yes" ]; then
16721         lctl set_param debug="$OLDDEBUG" 2> /dev/null || true
16722 fi
16723 exit_status