Whamcloud - gitweb
0c8b6572ca1649864c6221310e26f5681baddbc5
[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-8411 LU-9096 LU-9054 LU-10199
16 ALWAYS_EXCEPT="  407     253     312     56xb     $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 OSC=${OSC:-"osc"}
44
45 CC=${CC:-cc}
46 CHECKSTAT=${CHECKSTAT:-"checkstat -v"}
47 CREATETEST=${CREATETEST:-createtest}
48 LFS=${LFS:-lfs}
49 LFIND=${LFIND:-"$LFS find"}
50 LVERIFY=${LVERIFY:-ll_dirstripe_verify}
51 LCTL=${LCTL:-lctl}
52 OPENFILE=${OPENFILE:-openfile}
53 OPENUNLINK=${OPENUNLINK:-openunlink}
54 export MULTIOP=${MULTIOP:-multiop}
55 READS=${READS:-"reads"}
56 MUNLINK=${MUNLINK:-munlink}
57 SOCKETSERVER=${SOCKETSERVER:-socketserver}
58 SOCKETCLIENT=${SOCKETCLIENT:-socketclient}
59 MEMHOG=${MEMHOG:-memhog}
60 DIRECTIO=${DIRECTIO:-directio}
61 ACCEPTOR_PORT=${ACCEPTOR_PORT:-988}
62 STRIPES_PER_OBJ=-1
63 CHECK_GRANT=${CHECK_GRANT:-"yes"}
64 GRANT_CHECK_LIST=${GRANT_CHECK_LIST:-""}
65 export PARALLEL=${PARALLEL:-"no"}
66
67 export NAME=${NAME:-local}
68
69 SAVE_PWD=$PWD
70
71 CLEANUP=${CLEANUP:-:}
72 SETUP=${SETUP:-:}
73 TRACE=${TRACE:-""}
74 LUSTRE=${LUSTRE:-$(cd $(dirname $0)/..; echo $PWD)}
75 LUSTRE_TESTS_API_DIR=${LUSTRE_TESTS_API_DIR:-${LUSTRE}/tests/clientapi}
76 . $LUSTRE/tests/test-framework.sh
77 init_test_env $@
78 . ${CONFIG:=$LUSTRE/tests/cfg/${NAME}.sh}
79 init_logging
80
81 #                                  5          12          (min)"
82 [ "$SLOW" = "no" ] && EXCEPT_SLOW="27m 64b 68 71 115 300o"
83
84 if [ $(facet_fstype $SINGLEMDS) = "zfs" ]; then
85         # bug number for skipped test: LU-1957
86         ALWAYS_EXCEPT="$ALWAYS_EXCEPT  180"
87         #                                               13    (min)"
88         [ "$SLOW" = "no" ] && EXCEPT_SLOW="$EXCEPT_SLOW 51b"
89 fi
90
91 FAIL_ON_ERROR=false
92
93 cleanup() {
94         echo -n "cln.."
95         pgrep ll_sa > /dev/null && { echo "There are ll_sa thread not exit!"; exit 20; }
96         cleanupall ${FORCE} $* || { echo "FAILed to clean up"; exit 20; }
97 }
98 setup() {
99         echo -n "mnt.."
100         load_modules
101         setupall || exit 10
102         echo "done"
103 }
104
105 check_swap_layouts_support()
106 {
107         $LCTL get_param -n llite.*.sbi_flags | grep -q layout ||
108                 { skip "Does not support layout lock."; return 0; }
109         return 1
110 }
111
112 check_and_setup_lustre
113 DIR=${DIR:-$MOUNT}
114 assert_DIR
115
116 MDT0=$($LCTL get_param -n mdc.*.mds_server_uuid |
117         awk '{ gsub(/_UUID/,""); print $1 }' | head -n1)
118 MAXFREE=${MAXFREE:-$((200000 * $OSTCOUNT))}
119
120 [ -f $DIR/d52a/foo ] && chattr -a $DIR/d52a/foo
121 [ -f $DIR/d52b/foo ] && chattr -i $DIR/d52b/foo
122 rm -rf $DIR/[Rdfs][0-9]*
123
124 # $RUNAS_ID may get set incorrectly somewhere else
125 [ $UID -eq 0 -a $RUNAS_ID -eq 0 ] && error "\$RUNAS_ID set to 0, but \$UID is also 0!"
126
127 check_runas_id $RUNAS_ID $RUNAS_GID $RUNAS
128
129 build_test_filter
130
131 if [ "${ONLY}" = "MOUNT" ] ; then
132         echo "Lustre is up, please go on"
133         exit
134 fi
135
136 echo "preparing for tests involving mounts"
137 EXT2_DEV=${EXT2_DEV:-$TMP/SANITY.LOOP}
138 touch $EXT2_DEV
139 mke2fs -j -F $EXT2_DEV 8000 > /dev/null
140 echo # add a newline after mke2fs.
141
142 umask 077
143
144 OLDDEBUG=$(lctl get_param -n debug 2> /dev/null)
145 lctl set_param debug=-1 2> /dev/null || true
146 test_0a() {
147         touch $DIR/$tfile
148         $CHECKSTAT -t file $DIR/$tfile || error "$tfile is not a file"
149         rm $DIR/$tfile
150         $CHECKSTAT -a $DIR/$tfile || error "$tfile was not removed"
151 }
152 run_test 0a "touch; rm ====================="
153
154 test_0b() {
155         chmod 0755 $DIR || error "chmod 0755 $DIR failed"
156         $CHECKSTAT -p 0755 $DIR || error "$DIR permission is not 0755"
157 }
158 run_test 0b "chmod 0755 $DIR ============================="
159
160 test_0c() {
161         $LCTL get_param mdc.*.import | grep "state: FULL" ||
162                 error "import not FULL"
163         $LCTL get_param mdc.*.import | grep "target: $FSNAME-MDT" ||
164                 error "bad target"
165 }
166 run_test 0c "check import proc"
167
168 test_1() {
169         test_mkdir $DIR/$tdir
170         test_mkdir $DIR/$tdir/d2
171         mkdir $DIR/$tdir/d2 && error "we expect EEXIST, but not returned"
172         $CHECKSTAT -t dir $DIR/$tdir/d2 || error "$tdir/d2 is not a dir"
173         rmdir $DIR/$tdir/d2
174         rmdir $DIR/$tdir
175         $CHECKSTAT -a $DIR/$tdir || error "$tdir was not removed"
176 }
177 run_test 1 "mkdir; remkdir; rmdir"
178
179 test_2() {
180         test_mkdir $DIR/$tdir
181         touch $DIR/$tdir/$tfile || error "touch $tdir/$tfile failed"
182         $CHECKSTAT -t file $DIR/$tdir/$tfile || error "$tdir/$tfile not a file"
183         rm -r $DIR/$tdir
184         $CHECKSTAT -a $DIR/$tdir/$tfile || error "$tdir/$file is not removed"
185 }
186 run_test 2 "mkdir; touch; rmdir; check file"
187
188 test_3() {
189         test_mkdir $DIR/$tdir
190         $CHECKSTAT -t dir $DIR/$tdir || error "$tdir is not a directory"
191         touch $DIR/$tdir/$tfile
192         $CHECKSTAT -t file $DIR/$tdir/$tfile || error "$tdir/$tfile not a file"
193         rm -r $DIR/$tdir
194         $CHECKSTAT -a $DIR/$tdir || error "$tdir is not removed"
195 }
196 run_test 3 "mkdir; touch; rmdir; check dir"
197
198 # LU-4471 - failed rmdir on remote directories still removes directory on MDT0
199 test_4() {
200         test_mkdir -i 1 $DIR/$tdir
201
202         touch $DIR/$tdir/$tfile ||
203                 error "Create file under remote directory failed"
204
205         rmdir $DIR/$tdir &&
206                 error "Expect error removing in-use dir $DIR/$tdir"
207
208         test -d $DIR/$tdir || error "Remote directory disappeared"
209
210         rm -rf $DIR/$tdir || error "remove remote dir error"
211 }
212 run_test 4 "mkdir; touch dir/file; rmdir; checkdir (expect error)"
213
214 test_5() {
215         test_mkdir $DIR/$tdir
216         test_mkdir $DIR/$tdir/d2
217         chmod 0707 $DIR/$tdir/d2 || error "chmod 0707 $tdir/d2 failed"
218         $CHECKSTAT -t dir -p 0707 $DIR/$tdir/d2 || error "$tdir/d2 not mode 707"
219         $CHECKSTAT -t dir $DIR/$tdir/d2 || error "$tdir/d2 is not a directory"
220 }
221 run_test 5 "mkdir .../d5 .../d5/d2; chmod .../d5/d2"
222
223 test_6a() {
224         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
225         chmod 0666 $DIR/$tfile || error "chmod 0666 $tfile failed"
226         $CHECKSTAT -t file -p 0666 -u \#$UID $DIR/$tfile ||
227                 error "$tfile does not have perm 0666 or UID $UID"
228         $RUNAS chmod 0444 $DIR/$tfile && error "chmod $tfile worked on UID $UID"
229         $CHECKSTAT -t file -p 0666 -u \#$UID $DIR/$tfile ||
230                 error "$tfile should be 0666 and owned by UID $UID"
231 }
232 run_test 6a "touch f6a; chmod f6a; $RUNAS chmod f6a (should return error) =="
233
234 test_6c() {
235         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID" && return
236         touch $DIR/$tfile
237         chown $RUNAS_ID $DIR/$tfile || error "chown $RUNAS_ID $file failed"
238         $CHECKSTAT -t file -u \#$RUNAS_ID $DIR/$tfile ||
239                 error "$tfile should be owned by UID $RUNAS_ID"
240         $RUNAS chown $UID $DIR/$tfile && error "chown $UID $file succeeded"
241         $CHECKSTAT -t file -u \#$RUNAS_ID $DIR/$tfile ||
242                 error "$tfile should be owned by UID $RUNAS_ID"
243 }
244 run_test 6c "touch f6c; chown f6c; $RUNAS chown f6c (should return error) =="
245
246 test_6e() {
247         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID" && return
248         touch $DIR/$tfile
249         chgrp $RUNAS_ID $DIR/$tfile || error "chgrp $RUNAS_ID $file failed"
250         $CHECKSTAT -t file -u \#$UID -g \#$RUNAS_ID $DIR/$tfile ||
251                 error "$tfile should be owned by GID $UID"
252         $RUNAS chgrp $UID $DIR/$tfile && error "chgrp $UID $file succeeded"
253         $CHECKSTAT -t file -u \#$UID -g \#$RUNAS_ID $DIR/$tfile ||
254                 error "$tfile should be owned by UID $UID and GID $RUNAS_ID"
255 }
256 run_test 6e "touch+chgrp $tfile; $RUNAS chgrp $tfile (should return error)"
257
258 test_6g() {
259         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID" && return
260         test_mkdir $DIR/$tdir
261         chmod 777 $DIR/$tdir || error "chmod 0777 $tdir failed"
262         $RUNAS mkdir $DIR/$tdir/d || error "mkdir $tdir/d failed"
263         chmod g+s $DIR/$tdir/d || error "chmod g+s $tdir/d failed"
264         test_mkdir $DIR/$tdir/d/subdir
265         $CHECKSTAT -g \#$RUNAS_GID $DIR/$tdir/d/subdir ||
266                 error "$tdir/d/subdir should be GID $RUNAS_GID"
267         if [[ $MDSCOUNT -gt 1 ]]; then
268                 # check remote dir sgid inherite
269                 $LFS mkdir -i 0 $DIR/$tdir.local ||
270                         error "mkdir $tdir.local failed"
271                 chmod g+s $DIR/$tdir.local ||
272                         error "chmod $tdir.local failed"
273                 chgrp $RUNAS_GID $DIR/$tdir.local ||
274                         error "chgrp $tdir.local failed"
275                 $LFS mkdir -i 1 $DIR/$tdir.local/$tdir.remote ||
276                         error "mkdir $tdir.remote failed"
277                 $CHECKSTAT -g \#$RUNAS_GID $DIR/$tdir.local/$tdir.remote ||
278                         error "$tdir.remote should be owned by $UID.$RUNAS_ID"
279                 $CHECKSTAT -p 02755 $DIR/$tdir.local/$tdir.remote ||
280                         error "$tdir.remote should be mode 02755"
281         fi
282 }
283 run_test 6g "verify new dir in sgid dir inherits group"
284
285 test_6h() { # bug 7331
286         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID" && return
287         touch $DIR/$tfile || error "touch failed"
288         chown $RUNAS_ID:$RUNAS_GID $DIR/$tfile || error "initial chown failed"
289         $RUNAS -G$RUNAS_GID chown $RUNAS_ID:0 $DIR/$tfile &&
290                 error "chown $RUNAS_ID:0 $tfile worked as GID $RUNAS_GID"
291         $CHECKSTAT -t file -u \#$RUNAS_ID -g \#$RUNAS_GID $DIR/$tfile ||
292                 error "$tdir/$tfile should be UID $RUNAS_UID GID $RUNAS_GID"
293 }
294 run_test 6h "$RUNAS chown RUNAS_ID.0 .../$tfile (should return error)"
295
296 test_7a() {
297         test_mkdir $DIR/$tdir
298         $MCREATE $DIR/$tdir/$tfile
299         chmod 0666 $DIR/$tdir/$tfile
300         $CHECKSTAT -t file -p 0666 $DIR/$tdir/$tfile ||
301                 error "$tdir/$tfile should be mode 0666"
302 }
303 run_test 7a "mkdir .../d7; mcreate .../d7/f; chmod .../d7/f ===="
304
305 test_7b() {
306         if [ ! -d $DIR/$tdir ]; then
307                 test_mkdir $DIR/$tdir
308         fi
309         $MCREATE $DIR/$tdir/$tfile
310         echo -n foo > $DIR/$tdir/$tfile
311         [ "$(cat $DIR/$tdir/$tfile)" = "foo" ] || error "$tdir/$tfile not 'foo'"
312         $CHECKSTAT -t file -s 3 $DIR/$tdir/$tfile || error "$tfile size not 3"
313 }
314 run_test 7b "mkdir .../d7; mcreate d7/f2; echo foo > d7/f2 ====="
315
316 test_8() {
317         test_mkdir $DIR/$tdir
318         touch $DIR/$tdir/$tfile
319         chmod 0666 $DIR/$tdir/$tfile
320         $CHECKSTAT -t file -p 0666 $DIR/$tdir/$tfile ||
321                 error "$tfile mode not 0666"
322 }
323 run_test 8 "mkdir .../d8; touch .../d8/f; chmod .../d8/f ======="
324
325 test_9() {
326         test_mkdir $DIR/$tdir
327         test_mkdir $DIR/$tdir/d2
328         test_mkdir $DIR/$tdir/d2/d3
329         $CHECKSTAT -t dir $DIR/$tdir/d2/d3 || error "$tdir/d2/d3 not a dir"
330 }
331 run_test 9 "mkdir .../d9 .../d9/d2 .../d9/d2/d3 ================"
332
333 test_10() {
334         test_mkdir $DIR/$tdir
335         test_mkdir $DIR/$tdir/d2
336         touch $DIR/$tdir/d2/$tfile
337         $CHECKSTAT -t file $DIR/$tdir/d2/$tfile ||
338                 error "$tdir/d2/$tfile not a file"
339 }
340 run_test 10 "mkdir .../d10 .../d10/d2; touch .../d10/d2/f ======"
341
342 test_11() {
343         test_mkdir $DIR/$tdir
344         test_mkdir $DIR/$tdir/d2
345         chmod 0666 $DIR/$tdir/d2
346         chmod 0705 $DIR/$tdir/d2
347         $CHECKSTAT -t dir -p 0705 $DIR/$tdir/d2 ||
348                 error "$tdir/d2 mode not 0705"
349 }
350 run_test 11 "mkdir .../d11 d11/d2; chmod .../d11/d2 ============"
351
352 test_12() {
353         test_mkdir $DIR/$tdir
354         touch $DIR/$tdir/$tfile
355         chmod 0666 $DIR/$tdir/$tfile
356         chmod 0654 $DIR/$tdir/$tfile
357         $CHECKSTAT -t file -p 0654 $DIR/$tdir/$tfile ||
358                 error "$tdir/d2 mode not 0654"
359 }
360 run_test 12 "touch .../d12/f; chmod .../d12/f .../d12/f ========"
361
362 test_13() {
363         test_mkdir $DIR/$tdir
364         dd if=/dev/zero of=$DIR/$tdir/$tfile count=10
365         >  $DIR/$tdir/$tfile
366         $CHECKSTAT -t file -s 0 $DIR/$tdir/$tfile ||
367                 error "$tdir/$tfile size not 0 after truncate"
368 }
369 run_test 13 "creat .../d13/f; dd .../d13/f; > .../d13/f ========"
370
371 test_14() {
372         test_mkdir $DIR/$tdir
373         touch $DIR/$tdir/$tfile
374         rm $DIR/$tdir/$tfile
375         $CHECKSTAT -a $DIR/$tdir/$tfile || error "$tdir/$tfile not removed"
376 }
377 run_test 14 "touch .../d14/f; rm .../d14/f; rm .../d14/f ======="
378
379 test_15() {
380         test_mkdir $DIR/$tdir
381         touch $DIR/$tdir/$tfile
382         mv $DIR/$tdir/$tfile $DIR/$tdir/${tfile}_2
383         $CHECKSTAT -t file $DIR/$tdir/${tfile}_2 ||
384                 error "$tdir/${tfile_2} not a file after rename"
385         rm $DIR/$tdir/${tfile}_2 || error "unlink failed after rename"
386 }
387 run_test 15 "touch .../d15/f; mv .../d15/f .../d15/f2 =========="
388
389 test_16() {
390         test_mkdir $DIR/$tdir
391         touch $DIR/$tdir/$tfile
392         rm -rf $DIR/$tdir/$tfile
393         $CHECKSTAT -a $DIR/$tdir/$tfile || error "$tdir/$tfile not removed"
394 }
395 run_test 16 "touch .../d16/f; rm -rf .../d16/f"
396
397 test_17a() {
398         test_mkdir $DIR/$tdir
399         touch $DIR/$tdir/$tfile
400         ln -s $DIR/$tdir/$tfile $DIR/$tdir/l-exist
401         ls -l $DIR/$tdir
402         $CHECKSTAT -l $DIR/$tdir/$tfile $DIR/$tdir/l-exist ||
403                 error "$tdir/l-exist not a symlink"
404         $CHECKSTAT -f -t f $DIR/$tdir/l-exist ||
405                 error "$tdir/l-exist not referencing a file"
406         rm -f $DIR/$tdir/l-exist
407         $CHECKSTAT -a $DIR/$tdir/l-exist || error "$tdir/l-exist not removed"
408 }
409 run_test 17a "symlinks: create, remove (real)"
410
411 test_17b() {
412         test_mkdir $DIR/$tdir
413         ln -s no-such-file $DIR/$tdir/l-dangle
414         ls -l $DIR/$tdir
415         $CHECKSTAT -l no-such-file $DIR/$tdir/l-dangle ||
416                 error "$tdir/l-dangle not referencing no-such-file"
417         $CHECKSTAT -fa $DIR/$tdir/l-dangle ||
418                 error "$tdir/l-dangle not referencing non-existent file"
419         rm -f $DIR/$tdir/l-dangle
420         $CHECKSTAT -a $DIR/$tdir/l-dangle || error "$tdir/l-dangle not removed"
421 }
422 run_test 17b "symlinks: create, remove (dangling)"
423
424 test_17c() { # bug 3440 - don't save failed open RPC for replay
425         test_mkdir $DIR/$tdir
426         ln -s foo $DIR/$tdir/$tfile
427         cat $DIR/$tdir/$tfile && error "opened non-existent symlink" || true
428 }
429 run_test 17c "symlinks: open dangling (should return error)"
430
431 test_17d() {
432         test_mkdir $DIR/$tdir
433         ln -s foo $DIR/$tdir/$tfile
434         touch $DIR/$tdir/$tfile || error "creating to new symlink"
435 }
436 run_test 17d "symlinks: create dangling"
437
438 test_17e() {
439         test_mkdir $DIR/$tdir
440         local foo=$DIR/$tdir/$tfile
441         ln -s $foo $foo || error "create symlink failed"
442         ls -l $foo || error "ls -l failed"
443         ls $foo && error "ls not failed" || true
444 }
445 run_test 17e "symlinks: create recursive symlink (should return error)"
446
447 test_17f() {
448         test_mkdir $DIR/$tdir
449         ln -s 1234567890/2234567890/3234567890/4234567890 $DIR/$tdir/111
450         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890 $DIR/$tdir/222
451         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890 $DIR/$tdir/333
452         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890/9234567890/a234567890/b234567890 $DIR/$tdir/444
453         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890/9234567890/a234567890/b234567890/c234567890/d234567890/f234567890 $DIR/$tdir/555
454         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
455         ls -l  $DIR/$tdir
456 }
457 run_test 17f "symlinks: long and very long symlink name"
458
459 # str_repeat(S, N) generate a string that is string S repeated N times
460 str_repeat() {
461         local s=$1
462         local n=$2
463         local ret=''
464         while [ $((n -= 1)) -ge 0 ]; do
465                 ret=$ret$s
466         done
467         echo $ret
468 }
469
470 # Long symlinks and LU-2241
471 test_17g() {
472         test_mkdir $DIR/$tdir
473         local TESTS="59 60 61 4094 4095"
474
475         # Fix for inode size boundary in 2.1.4
476         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.1.4) ] &&
477                 TESTS="4094 4095"
478
479         # Patch not applied to 2.2 or 2.3 branches
480         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] &&
481         [ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.3.55) ] &&
482                 TESTS="4094 4095"
483
484         # skip long symlink name for rhel6.5.
485         # rhel6.5 has a limit (PATH_MAX - sizeof(struct filename))
486         grep -q '6.5' /etc/redhat-release &>/dev/null &&
487                 TESTS="59 60 61 4062 4063"
488
489         for i in $TESTS; do
490                 local SYMNAME=$(str_repeat 'x' $i)
491                 ln -s $SYMNAME $DIR/$tdir/f$i || error "failed $i-char symlink"
492                 readlink $DIR/$tdir/f$i || error "failed $i-char readlink"
493         done
494 }
495 run_test 17g "symlinks: really long symlink name and inode boundaries"
496
497 test_17h() { #bug 17378
498         remote_mds_nodsh && skip "remote MDS with nodsh" && return
499         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
500         local mdt_idx
501         test_mkdir $DIR/$tdir
502         if [[ $MDSCOUNT -gt 1 ]]; then
503                 mdt_idx=$($LFS getdirstripe -i $DIR/$tdir)
504         else
505                 mdt_idx=0
506         fi
507         $LFS setstripe -c -1 $DIR/$tdir
508         #define OBD_FAIL_MDS_LOV_PREP_CREATE 0x141
509         do_facet mds$((mdt_idx + 1)) lctl set_param fail_loc=0x80000141
510         touch $DIR/$tdir/$tfile || true
511 }
512 run_test 17h "create objects: lov_free_memmd() doesn't lbug"
513
514 test_17i() { #bug 20018
515         remote_mds_nodsh && skip "remote MDS with nodsh" && return
516         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
517         test_mkdir -c1 $DIR/$tdir
518         local foo=$DIR/$tdir/$tfile
519         local mdt_idx
520         if [[ $MDSCOUNT -gt 1 ]]; then
521                 mdt_idx=$($LFS getdirstripe -i $DIR/$tdir)
522         else
523                 mdt_idx=0
524         fi
525         ln -s $foo $foo || error "create symlink failed"
526 #define OBD_FAIL_MDS_READLINK_EPROTO     0x143
527         do_facet mds$((mdt_idx + 1)) lctl set_param fail_loc=0x80000143
528         ls -l $foo && error "error not detected"
529         return 0
530 }
531 run_test 17i "don't panic on short symlink"
532
533 test_17k() { #bug 22301
534         [[ -z "$(which rsync 2>/dev/null)" ]] &&
535                 skip "no rsync command" && return 0
536         rsync --help | grep -q xattr ||
537                 skip_env "$(rsync --version | head -n1) does not support xattrs"
538         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return 0
539         test_mkdir $DIR/$tdir
540         test_mkdir $DIR/$tdir.new
541         touch $DIR/$tdir/$tfile
542         ln -s $DIR/$tdir/$tfile $DIR/$tdir/$tfile.lnk
543         rsync -av -X $DIR/$tdir/ $DIR/$tdir.new ||
544                 error "rsync failed with xattrs enabled"
545 }
546 run_test 17k "symlinks: rsync with xattrs enabled"
547
548 test_17l() { # LU-279
549         [[ -z "$(which getfattr 2>/dev/null)" ]] &&
550                 skip "no getfattr command" && return 0
551         test_mkdir $DIR/$tdir
552         touch $DIR/$tdir/$tfile
553         ln -s $DIR/$tdir/$tfile $DIR/$tdir/$tfile.lnk
554         for path in "$DIR/$tdir" "$DIR/$tdir/$tfile" "$DIR/$tdir/$tfile.lnk"; do
555                 # -h to not follow symlinks. -m '' to list all the xattrs.
556                 # grep to remove first line: '# file: $path'.
557                 for xattr in `getfattr -hm '' $path 2>/dev/null | grep -v '^#'`;
558                 do
559                         lgetxattr_size_check $path $xattr ||
560                                 error "lgetxattr_size_check $path $xattr failed"
561                 done
562         done
563 }
564 run_test 17l "Ensure lgetxattr's returned xattr size is consistent"
565
566 # LU-1540
567 test_17m() {
568         local short_sym="0123456789"
569         local wdir=$DIR/$tdir
570         local i
571
572         remote_mds_nodsh && skip "remote MDS with nodsh" && return
573         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] &&
574         [ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.2.93) ] &&
575                 skip "MDS 2.2.0-2.2.93 do not NUL-terminate symlinks" && return
576
577         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
578                 skip "ldiskfs only test" && return 0
579
580         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
581
582         test_mkdir $wdir
583         long_sym=$short_sym
584         # create a long symlink file
585         for ((i = 0; i < 4; ++i)); do
586                 long_sym=${long_sym}${long_sym}
587         done
588
589         echo "create 512 short and long symlink files under $wdir"
590         for ((i = 0; i < 256; ++i)); do
591                 ln -sf ${long_sym}"a5a5" $wdir/long-$i
592                 ln -sf ${short_sym}"a5a5" $wdir/short-$i
593         done
594
595         echo "erase them"
596         rm -f $wdir/*
597         sync
598         wait_delete_completed
599
600         echo "recreate the 512 symlink files with a shorter string"
601         for ((i = 0; i < 512; ++i)); do
602                 # rewrite the symlink file with a shorter string
603                 ln -sf ${long_sym} $wdir/long-$i || error "long_sym failed"
604                 ln -sf ${short_sym} $wdir/short-$i || error "short_sym failed"
605         done
606
607         local mds_index=$(($($LFS getstripe -M $wdir) + 1))
608         local devname=$(mdsdevname $mds_index)
609
610         echo "stop and checking mds${mds_index}:"
611         # e2fsck should not return error
612         stop mds${mds_index}
613         run_e2fsck $(facet_active_host mds${mds_index}) $devname -n
614         rc=$?
615
616         start mds${mds_index} $devname $MDS_MOUNT_OPTS ||
617                 error "start mds${mds_index} failed"
618         df $MOUNT > /dev/null 2>&1
619         [ $rc -eq 0 ] ||
620                 error "e2fsck detected error for short/long symlink: rc=$rc"
621 }
622 run_test 17m "run e2fsck against MDT which contains short/long symlink"
623
624 check_fs_consistency_17n() {
625         local mdt_index
626         local rc=0
627
628         # create/unlink in 17n only change 2 MDTs(MDT1/MDT2),
629         # so it only check MDT1/MDT2 instead of all of MDTs.
630         for mdt_index in 1 2; do
631                 local devname=$(mdsdevname $mdt_index)
632                 # e2fsck should not return error
633                 stop mds${mdt_index}
634                 run_e2fsck $(facet_active_host mds$mdt_index) $devname -n ||
635                         rc=$((rc + $?))
636
637                 start mds${mdt_index} $devname $MDS_MOUNT_OPTS ||
638                         error "mount mds$mdt_index failed"
639                 df $MOUNT > /dev/null 2>&1
640         done
641         return $rc
642 }
643
644 test_17n() {
645         local i
646
647         remote_mds_nodsh && skip "remote MDS with nodsh" && return
648         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] &&
649         [ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.2.93) ] &&
650                 skip "MDS 2.2.0-2.2.93 do not NUL-terminate symlinks" && return
651
652         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
653                 skip "ldiskfs only test" && return 0
654
655         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 2 MDTs" && return
656
657         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
658
659         test_mkdir $DIR/$tdir
660         for ((i=0; i<10; i++)); do
661                 $LFS mkdir -i1 -c2 $DIR/$tdir/remote_dir_${i} ||
662                         error "create remote dir error $i"
663                 createmany -o $DIR/$tdir/remote_dir_${i}/f 10 ||
664                         error "create files under remote dir failed $i"
665         done
666
667         check_fs_consistency_17n ||
668                 error "e2fsck report error after create files under remote dir"
669
670         for ((i = 0; i < 10; i++)); do
671                 rm -rf $DIR/$tdir/remote_dir_${i} ||
672                         error "destroy remote dir error $i"
673         done
674
675         check_fs_consistency_17n ||
676                 error "e2fsck report error after unlink files under remote dir"
677
678         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.50) ] &&
679                 skip "lustre < 2.4.50 does not support migrate mv " && return
680
681         for ((i = 0; i < 10; i++)); do
682                 mkdir -p $DIR/$tdir/remote_dir_${i}
683                 createmany -o $DIR/$tdir/remote_dir_${i}/f 10 ||
684                         error "create files under remote dir failed $i"
685                 $LFS migrate --mdt-index 1 $DIR/$tdir/remote_dir_${i} ||
686                         error "migrate remote dir error $i"
687         done
688         check_fs_consistency_17n || error "e2fsck report error after migration"
689
690         for ((i = 0; i < 10; i++)); do
691                 rm -rf $DIR/$tdir/remote_dir_${i} ||
692                         error "destroy remote dir error $i"
693         done
694
695         check_fs_consistency_17n || error "e2fsck report error after unlink"
696 }
697 run_test 17n "run e2fsck against master/slave MDT which contains remote dir"
698
699 test_17o() {
700         remote_mds_nodsh && skip "remote MDS with nodsh" && return
701         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.64) ] &&
702                 skip "Need MDS version at least 2.3.64" && return
703
704         local wdir=$DIR/${tdir}o
705         local mdt_index
706         local rc=0
707
708         test_mkdir $wdir
709         touch $wdir/$tfile
710         mdt_index=$($LFS getstripe -M $wdir/$tfile)
711         mdt_index=$((mdt_index + 1))
712
713         cancel_lru_locks mdc
714         #fail mds will wait the failover finish then set
715         #following fail_loc to avoid interfer the recovery process.
716         fail mds${mdt_index}
717
718         #define OBD_FAIL_OSD_LMA_INCOMPAT 0x194
719         do_facet mds${mdt_index} lctl set_param fail_loc=0x194
720         ls -l $wdir/$tfile && rc=1
721         do_facet mds${mdt_index} lctl set_param fail_loc=0
722         [[ $rc -eq 0 ]] || error "stat file should fail"
723 }
724 run_test 17o "stat file with incompat LMA feature"
725
726 test_18() {
727         touch $DIR/$tfile || error "Failed to touch $DIR/$tfile: $?"
728         ls $DIR || error "Failed to ls $DIR: $?"
729 }
730 run_test 18 "touch .../f ; ls ... =============================="
731
732 test_19a() {
733         touch $DIR/$tfile
734         ls -l $DIR
735         rm $DIR/$tfile
736         $CHECKSTAT -a $DIR/$tfile || error "$tfile was not removed"
737 }
738 run_test 19a "touch .../f19 ; ls -l ... ; rm .../f19 ==========="
739
740 test_19b() {
741         ls -l $DIR/$tfile && error "ls -l $tfile failed"|| true
742 }
743 run_test 19b "ls -l .../f19 (should return error) =============="
744
745 test_19c() {
746         [ $RUNAS_ID -eq $UID ] &&
747                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
748         $RUNAS touch $DIR/$tfile && error "create non-root file failed" || true
749 }
750 run_test 19c "$RUNAS touch .../f19 (should return error) =="
751
752 test_19d() {
753         cat $DIR/f19 && error || true
754 }
755 run_test 19d "cat .../f19 (should return error) =============="
756
757 test_20() {
758         touch $DIR/$tfile
759         rm $DIR/$tfile
760         touch $DIR/$tfile
761         rm $DIR/$tfile
762         touch $DIR/$tfile
763         rm $DIR/$tfile
764         $CHECKSTAT -a $DIR/$tfile || error "$tfile was not removed"
765 }
766 run_test 20 "touch .../f ; ls -l ..."
767
768 test_21() {
769         test_mkdir $DIR/$tdir
770         [ -f $DIR/$tdir/dangle ] && rm -f $DIR/$tdir/dangle
771         ln -s dangle $DIR/$tdir/link
772         echo foo >> $DIR/$tdir/link
773         cat $DIR/$tdir/dangle
774         $CHECKSTAT -t link $DIR/$tdir/link || error "$tdir/link not a link"
775         $CHECKSTAT -f -t file $DIR/$tdir/link ||
776                 error "$tdir/link not linked to a file"
777 }
778 run_test 21 "write to dangling link"
779
780 test_22() {
781         local wdir=$DIR/$tdir
782         test_mkdir $wdir
783         chown $RUNAS_ID:$RUNAS_GID $wdir
784         (cd $wdir || error "cd $wdir failed";
785                 $RUNAS tar cf - /etc/hosts /etc/sysconfig/network |
786                 $RUNAS tar xf -)
787         ls -lR $wdir/etc || error "ls -lR $wdir/etc failed"
788         $CHECKSTAT -t dir $wdir/etc || error "checkstat -t dir failed"
789         $CHECKSTAT -u \#$RUNAS_ID -g \#$RUNAS_GID $wdir/etc ||
790                 error "checkstat -u failed"
791 }
792 run_test 22 "unpack tar archive as non-root user"
793
794 # was test_23
795 test_23a() {
796         test_mkdir $DIR/$tdir
797         local file=$DIR/$tdir/$tfile
798
799         openfile -f O_CREAT:O_EXCL $file || error "$file create failed"
800         openfile -f O_CREAT:O_EXCL $file &&
801                 error "$file recreate succeeded" || true
802 }
803 run_test 23a "O_CREAT|O_EXCL in subdir"
804
805 test_23b() { # bug 18988
806         test_mkdir $DIR/$tdir
807         local file=$DIR/$tdir/$tfile
808
809         rm -f $file
810         echo foo > $file || error "write filed"
811         echo bar >> $file || error "append filed"
812         $CHECKSTAT -s 8 $file || error "wrong size"
813         rm $file
814 }
815 run_test 23b "O_APPEND check"
816
817 # rename sanity
818 test_24a() {
819         echo '-- same directory rename'
820         test_mkdir $DIR/$tdir
821         touch $DIR/$tdir/$tfile.1
822         mv $DIR/$tdir/$tfile.1 $DIR/$tdir/$tfile.2
823         $CHECKSTAT -t file $DIR/$tdir/$tfile.2 || error "$tfile.2 not a file"
824 }
825 run_test 24a "rename file to non-existent target"
826
827 test_24b() {
828         test_mkdir $DIR/$tdir
829         touch $DIR/$tdir/$tfile.{1,2}
830         mv $DIR/$tdir/$tfile.1 $DIR/$tdir/$tfile.2
831         $CHECKSTAT -a $DIR/$tdir/$tfile.1 || error "$tfile.1 exists"
832         $CHECKSTAT -t file $DIR/$tdir/$tfile.2 || error "$tfile.2 not a file"
833 }
834 run_test 24b "rename file to existing target"
835
836 test_24c() {
837         test_mkdir $DIR/$tdir
838         test_mkdir $DIR/$tdir/d$testnum.1
839         mv $DIR/$tdir/d$testnum.1 $DIR/$tdir/d$testnum.2
840         $CHECKSTAT -a $DIR/$tdir/d$testnum.1 || error "d$testnum.1 exists"
841         $CHECKSTAT -t dir $DIR/$tdir/d$testnum.2 || error "d$testnum.2 not dir"
842 }
843 run_test 24c "rename directory to non-existent target"
844
845 test_24d() {
846         test_mkdir -c1 $DIR/$tdir
847         test_mkdir -c1 $DIR/$tdir/d$testnum.1
848         test_mkdir -c1 $DIR/$tdir/d$testnum.2
849         mrename $DIR/$tdir/d$testnum.1 $DIR/$tdir/d$testnum.2
850         $CHECKSTAT -a $DIR/$tdir/d$testnum.1 || error "d$testnum.1 exists"
851         $CHECKSTAT -t dir $DIR/$tdir/d$testnum.2 || error "d$testnum.2 not dir"
852 }
853 run_test 24d "rename directory to existing target"
854
855 test_24e() {
856         echo '-- cross directory renames --'
857         test_mkdir $DIR/R5a
858         test_mkdir $DIR/R5b
859         touch $DIR/R5a/f
860         mv $DIR/R5a/f $DIR/R5b/g
861         $CHECKSTAT -a $DIR/R5a/f || error
862         $CHECKSTAT -t file $DIR/R5b/g || error
863 }
864 run_test 24e "touch .../R5a/f; rename .../R5a/f .../R5b/g ======"
865
866 test_24f() {
867         test_mkdir $DIR/R6a
868         test_mkdir $DIR/R6b
869         touch $DIR/R6a/f $DIR/R6b/g
870         mv $DIR/R6a/f $DIR/R6b/g
871         $CHECKSTAT -a $DIR/R6a/f || error
872         $CHECKSTAT -t file $DIR/R6b/g || error
873 }
874 run_test 24f "touch .../R6a/f R6b/g; mv .../R6a/f .../R6b/g ===="
875
876 test_24g() {
877         test_mkdir $DIR/R7a
878         test_mkdir $DIR/R7b
879         test_mkdir $DIR/R7a/d
880         mv $DIR/R7a/d $DIR/R7b/e
881         $CHECKSTAT -a $DIR/R7a/d || error
882         $CHECKSTAT -t dir $DIR/R7b/e || error
883 }
884 run_test 24g "mkdir .../R7{a,b}/d; mv .../R7a/d .../R7b/e ======"
885
886 test_24h() {
887         test_mkdir -c1 $DIR/R8a
888         test_mkdir -c1 $DIR/R8b
889         test_mkdir -c1 $DIR/R8a/d
890         test_mkdir -c1 $DIR/R8b/e
891         mrename $DIR/R8a/d $DIR/R8b/e
892         $CHECKSTAT -a $DIR/R8a/d || error
893         $CHECKSTAT -t dir $DIR/R8b/e || error
894 }
895 run_test 24h "mkdir .../R8{a,b}/{d,e}; rename .../R8a/d .../R8b/e"
896
897 test_24i() {
898         echo "-- rename error cases"
899         test_mkdir $DIR/R9
900         test_mkdir $DIR/R9/a
901         touch $DIR/R9/f
902         mrename $DIR/R9/f $DIR/R9/a
903         $CHECKSTAT -t file $DIR/R9/f || error
904         $CHECKSTAT -t dir  $DIR/R9/a || error
905         $CHECKSTAT -a $DIR/R9/a/f || error
906 }
907 run_test 24i "rename file to dir error: touch f ; mkdir a ; rename f a"
908
909 test_24j() {
910         test_mkdir $DIR/R10
911         mrename $DIR/R10/f $DIR/R10/g
912         $CHECKSTAT -t dir $DIR/R10 || error
913         $CHECKSTAT -a $DIR/R10/f || error
914         $CHECKSTAT -a $DIR/R10/g || error
915 }
916 run_test 24j "source does not exist ============================"
917
918 test_24k() {
919         test_mkdir $DIR/R11a
920         test_mkdir $DIR/R11a/d
921         touch $DIR/R11a/f
922         mv $DIR/R11a/f $DIR/R11a/d
923         $CHECKSTAT -a $DIR/R11a/f || error
924         $CHECKSTAT -t file $DIR/R11a/d/f || error
925 }
926 run_test 24k "touch .../R11a/f; mv .../R11a/f .../R11a/d ======="
927
928 # bug 2429 - rename foo foo foo creates invalid file
929 test_24l() {
930         f="$DIR/f24l"
931         $MULTIOP $f OcNs || error
932 }
933 run_test 24l "Renaming a file to itself ========================"
934
935 test_24m() {
936         f="$DIR/f24m"
937         $MULTIOP $f OcLN ${f}2 ${f}2 || error "link ${f}2 ${f}2 failed"
938         # on ext3 this does not remove either the source or target files
939         # though the "expected" operation would be to remove the source
940         $CHECKSTAT -t file ${f} || error "${f} missing"
941         $CHECKSTAT -t file ${f}2 || error "${f}2 missing"
942 }
943 run_test 24m "Renaming a file to a hard link to itself ========="
944
945 test_24n() {
946     f="$DIR/f24n"
947     # this stats the old file after it was renamed, so it should fail
948     touch ${f}
949     $CHECKSTAT ${f}
950     mv ${f} ${f}.rename
951     $CHECKSTAT ${f}.rename
952     $CHECKSTAT -a ${f}
953 }
954 run_test 24n "Statting the old file after renaming (Posix rename 2)"
955
956 test_24o() {
957         test_mkdir $DIR/$tdir
958         rename_many -s random -v -n 10 $DIR/$tdir
959 }
960 run_test 24o "rename of files during htree split"
961
962 test_24p() {
963         test_mkdir $DIR/R12a
964         test_mkdir $DIR/R12b
965         DIRINO=`ls -lid $DIR/R12a | awk '{ print $1 }'`
966         mrename $DIR/R12a $DIR/R12b
967         $CHECKSTAT -a $DIR/R12a || error
968         $CHECKSTAT -t dir $DIR/R12b || error
969         DIRINO2=`ls -lid $DIR/R12b | awk '{ print $1 }'`
970         [ "$DIRINO" = "$DIRINO2" ] || error "R12a $DIRINO != R12b $DIRINO2"
971 }
972 run_test 24p "mkdir .../R12{a,b}; rename .../R12a .../R12b"
973
974 cleanup_multiop_pause() {
975         trap 0
976         kill -USR1 $MULTIPID
977 }
978
979 test_24q() {
980         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
981         test_mkdir $DIR/R13a
982         test_mkdir $DIR/R13b
983         local DIRINO=$(ls -lid $DIR/R13a | awk '{ print $1 }')
984         multiop_bg_pause $DIR/R13b D_c || error "multiop failed to start"
985         MULTIPID=$!
986
987         trap cleanup_multiop_pause EXIT
988         mrename $DIR/R13a $DIR/R13b
989         $CHECKSTAT -a $DIR/R13a || error "R13a still exists"
990         $CHECKSTAT -t dir $DIR/R13b || error "R13b does not exist"
991         local DIRINO2=$(ls -lid $DIR/R13b | awk '{ print $1 }')
992         [ "$DIRINO" = "$DIRINO2" ] || error "R13a $DIRINO != R13b $DIRINO2"
993         cleanup_multiop_pause
994         wait $MULTIPID || error "multiop close failed"
995 }
996 run_test 24q "mkdir .../R13{a,b}; open R13b rename R13a R13b ==="
997
998 test_24r() { #bug 3789
999         test_mkdir $DIR/R14a
1000         test_mkdir $DIR/R14a/b
1001         mrename $DIR/R14a $DIR/R14a/b && error "rename to subdir worked!"
1002         $CHECKSTAT -t dir $DIR/R14a || error "$DIR/R14a missing"
1003         $CHECKSTAT -t dir $DIR/R14a/b || error "$DIR/R14a/b missing"
1004 }
1005 run_test 24r "mkdir .../R14a/b; rename .../R14a .../R14a/b ====="
1006
1007 test_24s() {
1008         test_mkdir $DIR/R15a
1009         test_mkdir $DIR/R15a/b
1010         test_mkdir $DIR/R15a/b/c
1011         mrename $DIR/R15a $DIR/R15a/b/c && error "rename to sub-subdir worked!"
1012         $CHECKSTAT -t dir $DIR/R15a || error "$DIR/R15a missing"
1013         $CHECKSTAT -t dir $DIR/R15a/b/c || error "$DIR/R15a/b/c missing"
1014 }
1015 run_test 24s "mkdir .../R15a/b/c; rename .../R15a .../R15a/b/c ="
1016 test_24t() {
1017         test_mkdir $DIR/R16a
1018         test_mkdir $DIR/R16a/b
1019         test_mkdir $DIR/R16a/b/c
1020         mrename $DIR/R16a/b/c $DIR/R16a && error "rename to sub-subdir worked!"
1021         $CHECKSTAT -t dir $DIR/R16a || error "$DIR/R16a missing"
1022         $CHECKSTAT -t dir $DIR/R16a/b/c || error "$DIR/R16a/b/c missing"
1023 }
1024 run_test 24t "mkdir .../R16a/b/c; rename .../R16a/b/c .../R16a ="
1025
1026 test_24u() { # bug12192
1027         $MULTIOP $DIR/$tfile C2w$((2048 * 1024))c || error
1028         $CHECKSTAT -s $((2048 * 1024)) $DIR/$tfile || error "wrong file size"
1029 }
1030 run_test 24u "create stripe file"
1031
1032 page_size() {
1033         local size
1034         size=$(getconf PAGE_SIZE 2>/dev/null)
1035         echo -n ${size:-4096}
1036 }
1037
1038 simple_cleanup_common() {
1039         local rc=0
1040         trap 0
1041         [ -z "$DIR" -o -z "$tdir" ] && return 0
1042
1043         local start=$SECONDS
1044         rm -rf $DIR/$tdir
1045         rc=$?
1046         wait_delete_completed
1047         echo "cleanup time $((SECONDS - start))"
1048         return $rc
1049 }
1050
1051 max_pages_per_rpc() {
1052         local mdtname="$(printf "MDT%04x" ${1:-0})"
1053         $LCTL get_param -n mdc.*$mdtname*.max_pages_per_rpc
1054 }
1055
1056 test_24v() {
1057         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1058         local nrfiles=${COUNT:-100000}
1059         # Performance issue on ZFS see LU-4072 (c.f. LU-2887)
1060         [ $(facet_fstype $SINGLEMDS) = "zfs" ] && nrfiles=${COUNT:-10000}
1061
1062         local fname="$DIR/$tdir/$tfile"
1063         test_mkdir "$(dirname $fname)"
1064         # assume MDT0000 has the fewest inodes
1065         local stripes=$($LFS getdirstripe -c $(dirname $fname))
1066         local free_inodes=$(($(mdt_free_inodes 0) * stripes))
1067         [[ $free_inodes -lt $nrfiles ]] && nrfiles=$free_inodes
1068
1069         trap simple_cleanup_common EXIT
1070
1071         createmany -m "$fname" $nrfiles
1072
1073         cancel_lru_locks mdc
1074         lctl set_param mdc.*.stats clear
1075
1076         # was previously test_24D: LU-6101
1077         # readdir() returns correct number of entries after cursor reload
1078         local num_ls=$(ls $DIR/$tdir | wc -l)
1079         local num_uniq=$(ls $DIR/$tdir | sort -u | wc -l)
1080         local num_all=$(ls -a $DIR/$tdir | wc -l)
1081         if [ $num_ls -ne $nrfiles -o $num_uniq -ne $nrfiles -o \
1082              $num_all -ne $((nrfiles + 2)) ]; then
1083                 error "Expected $nrfiles files, got $num_ls " \
1084                         "($num_uniq unique $num_all .&..)"
1085         fi
1086         # LU-5 large readdir
1087         # dirent_size = 32 bytes for sizeof(struct lu_dirent) +
1088         #               N bytes for name (len($nrfiles) rounded to 8 bytes) +
1089         #               8 bytes for luda_type (4 bytes rounded to 8 bytes)
1090         # take into account of overhead in lu_dirpage header and end mark in
1091         # each page, plus one in rpc_num calculation.
1092         local dirent_size=$((32 + (${#tfile} | 7) + 1 + 8))
1093         local page_entries=$((($(page_size) - 24) / dirent_size))
1094         local mdt_idx=$($LFS getdirstripe -i $(dirname $fname))
1095         local rpc_pages=$(max_pages_per_rpc $mdt_idx)
1096         local rpc_max=$((nrfiles / (page_entries * rpc_pages) + stripes))
1097         local mds_readpage=$(calc_stats mdc.*.stats mds_readpage)
1098         echo "readpages: $mds_readpage rpc_max: $rpc_max"
1099         (( $mds_readpage < $rpc_max - 2 || $mds_readpage > $rpc_max + 1)) &&
1100                 error "large readdir doesn't take effect: " \
1101                       "$mds_readpage should be about $rpc_max"
1102
1103         simple_cleanup_common
1104 }
1105 run_test 24v "list large directory (test hash collision, b=17560)"
1106
1107 test_24w() { # bug21506
1108         SZ1=234852
1109         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=4096 || return 1
1110         dd if=/dev/zero bs=$SZ1 count=1 >> $DIR/$tfile || return 2
1111         dd if=$DIR/$tfile of=$DIR/${tfile}_left bs=1M skip=4097 || return 3
1112         SZ2=`ls -l $DIR/${tfile}_left | awk '{print $5}'`
1113         [[ "$SZ1" -eq "$SZ2" ]] ||
1114                 error "Error reading at the end of the file $tfile"
1115 }
1116 run_test 24w "Reading a file larger than 4Gb"
1117
1118 test_24x() {
1119         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 2 MDTs" && return
1120
1121         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.56) ]] &&
1122                 skip "Need MDS version at least 2.7.56" && return
1123
1124         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1125         local MDTIDX=1
1126         local remote_dir=$DIR/$tdir/remote_dir
1127
1128         test_mkdir $DIR/$tdir
1129         $LFS mkdir -i $MDTIDX $remote_dir ||
1130                 error "create remote directory failed"
1131
1132         test_mkdir $DIR/$tdir/src_dir
1133         touch $DIR/$tdir/src_file
1134         test_mkdir $remote_dir/tgt_dir
1135         touch $remote_dir/tgt_file
1136
1137         mrename $DIR/$tdir/src_dir $remote_dir/tgt_dir ||
1138                 error "rename dir cross MDT failed!"
1139
1140         mrename $DIR/$tdir/src_file $remote_dir/tgt_file ||
1141                 error "rename file cross MDT failed!"
1142
1143         touch $DIR/$tdir/ln_file
1144         ln $DIR/$tdir/ln_file $remote_dir/ln_name ||
1145                 error "ln file cross MDT failed"
1146
1147         rm -rf $DIR/$tdir || error "Can not delete directories"
1148 }
1149 run_test 24x "cross MDT rename/link"
1150
1151 test_24y() {
1152         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 2 MDTs" && return
1153         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1154         local remote_dir=$DIR/$tdir/remote_dir
1155         local mdtidx=1
1156
1157         test_mkdir $DIR/$tdir
1158         $LFS mkdir -i $mdtidx $remote_dir ||
1159                    error "create remote directory failed"
1160
1161         test_mkdir $remote_dir/src_dir
1162         touch $remote_dir/src_file
1163         test_mkdir $remote_dir/tgt_dir
1164         touch $remote_dir/tgt_file
1165
1166         mrename $remote_dir/src_dir $remote_dir/tgt_dir ||
1167                 error "rename subdir in the same remote dir failed!"
1168
1169         mrename $remote_dir/src_file $remote_dir/tgt_file ||
1170                 error "rename files in the same remote dir failed!"
1171
1172         ln $remote_dir/tgt_file $remote_dir/tgt_file1 ||
1173                 error "link files in the same remote dir failed!"
1174
1175         rm -rf $DIR/$tdir || error "Can not delete directories"
1176 }
1177 run_test 24y "rename/link on the same dir should succeed"
1178
1179 test_24A() { # LU-3182
1180         local NFILES=5000
1181
1182         rm -rf $DIR/$tdir
1183         test_mkdir $DIR/$tdir
1184         trap simple_cleanup_common EXIT
1185         createmany -m $DIR/$tdir/$tfile $NFILES
1186         local t=$(ls $DIR/$tdir | wc -l)
1187         local u=$(ls $DIR/$tdir | sort -u | wc -l)
1188         local v=$(ls -ai $DIR/$tdir | sort -u | wc -l)
1189         if [ $t -ne $NFILES -o $u -ne $NFILES -o $v -ne $((NFILES + 2)) ] ; then
1190                 error "Expected $NFILES files, got $t ($u unique $v .&..)"
1191         fi
1192
1193         simple_cleanup_common || error "Can not delete directories"
1194 }
1195 run_test 24A "readdir() returns correct number of entries."
1196
1197 test_24B() { # LU-4805
1198         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
1199         local count
1200
1201         test_mkdir $DIR/$tdir
1202         $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/striped_dir ||
1203                 error "create striped dir failed"
1204
1205         count=$(ls -ai $DIR/$tdir/striped_dir | wc -l)
1206         [ $count -eq 2 ] || error "Expected 2, got $count"
1207
1208         touch $DIR/$tdir/striped_dir/a
1209
1210         count=$(ls -ai $DIR/$tdir/striped_dir | wc -l)
1211         [ $count -eq 3 ] || error "Expected 3, got $count"
1212
1213         touch $DIR/$tdir/striped_dir/.f
1214
1215         count=$(ls -ai $DIR/$tdir/striped_dir | wc -l)
1216         [ $count -eq 4 ] || error "Expected 4, got $count"
1217
1218         rm -rf $DIR/$tdir || error "Can not delete directories"
1219 }
1220 run_test 24B "readdir for striped dir return correct number of entries"
1221
1222 test_24C() {
1223         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
1224
1225         mkdir $DIR/$tdir
1226         mkdir $DIR/$tdir/d0
1227         mkdir $DIR/$tdir/d1
1228
1229         $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/d0/striped_dir ||
1230                 error "create striped dir failed"
1231
1232         cd $DIR/$tdir/d0/striped_dir
1233
1234         local d0_ino=$(ls -i -l -a $DIR/$tdir | grep "d0" | awk '{print $1}')
1235         local d1_ino=$(ls -i -l -a $DIR/$tdir | grep "d1" | awk '{print $1}')
1236         local parent_ino=$(ls -i -l -a | grep "\.\." | awk '{print $1}')
1237
1238         [ "$d0_ino" = "$parent_ino" ] ||
1239                 error ".. wrong, expect $d0_ino, get $parent_ino"
1240
1241         mv $DIR/$tdir/d0/striped_dir $DIR/$tdir/d1/ ||
1242                 error "mv striped dir failed"
1243
1244         parent_ino=$(ls -i -l -a | grep "\.\." | awk '{print $1}')
1245
1246         [ "$d1_ino" = "$parent_ino" ] ||
1247                 error ".. wrong after mv, expect $d1_ino, get $parent_ino"
1248 }
1249 run_test 24C "check .. in striped dir"
1250
1251 test_24E() {
1252         [[ $MDSCOUNT -lt 4 ]] && skip "needs >= 4 MDTs" && return
1253         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1254
1255         mkdir -p $DIR/$tdir
1256         mkdir $DIR/$tdir/src_dir
1257         $LFS mkdir -i 1 $DIR/$tdir/src_dir/src_child ||
1258                 error "create remote source failed"
1259
1260         touch $DIR/$tdir/src_dir/src_child/a
1261
1262         $LFS mkdir -i 2 $DIR/$tdir/tgt_dir ||
1263                 error "create remote target dir failed"
1264
1265         $LFS mkdir -i 3 $DIR/$tdir/tgt_dir/tgt_child ||
1266                 error "create remote target child failed"
1267
1268         mrename $DIR/$tdir/src_dir/src_child $DIR/$tdir/tgt_dir/tgt_child ||
1269                 error "rename dir cross MDT failed!"
1270
1271         find $DIR/$tdir
1272
1273         $CHECKSTAT -t dir $DIR/$tdir/src_dir/src_child &&
1274                 error "src_child still exists after rename"
1275
1276         $CHECKSTAT -t file $DIR/$tdir/tgt_dir/tgt_child/a ||
1277                 error "missing file(a) after rename"
1278
1279         rm -rf $DIR/$tdir || error "Can not delete directories"
1280 }
1281 run_test 24E "cross MDT rename/link"
1282
1283 test_25a() {
1284         echo '== symlink sanity ============================================='
1285
1286         test_mkdir $DIR/d25
1287         ln -s d25 $DIR/s25
1288         touch $DIR/s25/foo || error
1289 }
1290 run_test 25a "create file in symlinked directory ==============="
1291
1292 test_25b() {
1293         [ ! -d $DIR/d25 ] && test_25a
1294         $CHECKSTAT -t file $DIR/s25/foo || error
1295 }
1296 run_test 25b "lookup file in symlinked directory ==============="
1297
1298 test_26a() {
1299         test_mkdir $DIR/d26
1300         test_mkdir $DIR/d26/d26-2
1301         ln -s d26/d26-2 $DIR/s26
1302         touch $DIR/s26/foo || error
1303 }
1304 run_test 26a "multiple component symlink ======================="
1305
1306 test_26b() {
1307         test_mkdir -p $DIR/$tdir/d26-2
1308         ln -s $tdir/d26-2/foo $DIR/s26-2
1309         touch $DIR/s26-2 || error
1310 }
1311 run_test 26b "multiple component symlink at end of lookup ======"
1312
1313 test_26c() {
1314         test_mkdir $DIR/d26.2
1315         touch $DIR/d26.2/foo
1316         ln -s d26.2 $DIR/s26.2-1
1317         ln -s s26.2-1 $DIR/s26.2-2
1318         ln -s s26.2-2 $DIR/s26.2-3
1319         chmod 0666 $DIR/s26.2-3/foo
1320 }
1321 run_test 26c "chain of symlinks"
1322
1323 # recursive symlinks (bug 439)
1324 test_26d() {
1325         ln -s d26-3/foo $DIR/d26-3
1326 }
1327 run_test 26d "create multiple component recursive symlink"
1328
1329 test_26e() {
1330         [ ! -h $DIR/d26-3 ] && test_26d
1331         rm $DIR/d26-3
1332 }
1333 run_test 26e "unlink multiple component recursive symlink"
1334
1335 # recursive symlinks (bug 7022)
1336 test_26f() {
1337         test_mkdir $DIR/$tdir
1338         test_mkdir $DIR/$tdir/$tfile
1339         cd $DIR/$tdir/$tfile           || error "cd $DIR/$tdir/$tfile failed"
1340         test_mkdir -p lndir/bar1
1341         test_mkdir $DIR/$tdir/$tfile/$tfile
1342         cd $tfile                || error "cd $tfile failed"
1343         ln -s .. dotdot          || error "ln dotdot failed"
1344         ln -s dotdot/lndir lndir || error "ln lndir failed"
1345         cd $DIR/$tdir                 || error "cd $DIR/$tdir failed"
1346         output=`ls $tfile/$tfile/lndir/bar1`
1347         [ "$output" = bar1 ] && error "unexpected output"
1348         rm -r $tfile             || error "rm $tfile failed"
1349         $CHECKSTAT -a $DIR/$tfile || error "$tfile not gone"
1350 }
1351 run_test 26f "rm -r of a directory which has recursive symlink"
1352
1353 test_27a() {
1354         test_mkdir $DIR/$tdir
1355         $LFS getstripe $DIR/$tdir
1356         $LFS setstripe -c 1 $DIR/$tdir/$tfile || error "setstripe failed"
1357         $CHECKSTAT -t file $DIR/$tdir/$tfile || error "checkstat failed"
1358         cp /etc/hosts $DIR/$tdir/$tfile || error
1359 }
1360 run_test 27a "one stripe file"
1361
1362 test_27b() {
1363         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
1364         test_mkdir $DIR/$tdir
1365         $LFS setstripe -c 2 $DIR/$tdir/$tfile || error "setstripe failed"
1366         $LFS getstripe -c $DIR/$tdir/$tfile
1367         [ $($LFS getstripe -c $DIR/$tdir/$tfile) -eq 2 ] ||
1368                 error "two-stripe file doesn't have two stripes"
1369
1370         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=4k count=4 || error "dd failed"
1371 }
1372 run_test 27b "create and write to two stripe file"
1373
1374 test_27d() {
1375         test_mkdir $DIR/$tdir
1376         $LFS setstripe -c 0 -i -1 -S 0 $DIR/$tdir/$tfile ||
1377                 error "setstripe failed"
1378         $CHECKSTAT -t file $DIR/$tdir/$tfile || error "checkstat failed"
1379         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=4k count=4 || error "dd failed"
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 $DIR/$tdir
1388         $LFS setstripe -c 2 $DIR/$tdir/$tfile || error "setstripe failed"
1389         $LFS setstripe -c 2 $DIR/$tdir/$tfile && error "setstripe worked twice"
1390         $CHECKSTAT -t file $DIR/$tdir/$tfile || 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 $DIR/$tdir
1407         $MCREATE $DIR/$tdir/$tfile || error "mcreate failed"
1408         $LFS getstripe $DIR/$tdir/$tfile 2>&1 | grep "no stripe info" ||
1409                 error "$DIR/$tdir/$tfile 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 $DIR/$tdir
1423         $LFS setstripe -i $OSTCOUNT $DIR/$tdir/$tfile &&
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 $DIR/$tdir
1430         local file=$DIR/$tdir/$tfile
1431         local ll_max_blksize=$((4 * 1024 * 1024))
1432         $LFS setstripe -S 67108864 $file || error "setstripe failed"
1433         local blksize=$(stat $file | awk '/IO Block:/ { print $7 }')
1434         [ $blksize -le $ll_max_blksize ] || error "1:$blksize > $ll_max_blksize"
1435         dd if=/dev/zero of=$file bs=4k count=1
1436         blksize=$(stat $file | awk '/IO Block:/ { print $7 }')
1437         [ $blksize -le $ll_max_blksize ] || error "2:$blksize > $ll_max_blksize"
1438 }
1439 run_test 27k "limit i_blksize for broken user apps"
1440
1441 test_27l() {
1442         mcreate $DIR/$tfile || error "creating file"
1443         $RUNAS $LFS setstripe -c 1 $DIR/$tfile &&
1444                 error "setstripe should have failed" || true
1445 }
1446 run_test 27l "check setstripe permissions (should return error)"
1447
1448 test_27m() {
1449         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
1450
1451         ORIGFREE=$($LCTL get_param -n lov.$FSNAME-clilov-*.kbytesavail |
1452                    head -n1)
1453         if [[ $ORIGFREE -gt $MAXFREE ]]; then
1454                 skip "$ORIGFREE > $MAXFREE skipping out-of-space test on OST0"
1455                 return
1456         fi
1457         trap simple_cleanup_common EXIT
1458         test_mkdir $DIR/$tdir
1459         $LFS setstripe -i 0 -c 1 $DIR/$tdir/$tfile.1
1460         dd if=/dev/zero of=$DIR/$tdir/$tfile.1 bs=1024 count=$MAXFREE &&
1461                 error "dd should fill OST0"
1462         i=2
1463         while $LFS setstripe -i 0 -c 1 $DIR/$tdir/$tfile.$i; do
1464                 i=$((i + 1))
1465                 [ $i -gt 256 ] && break
1466         done
1467         i=$((i + 1))
1468         touch $DIR/$tdir/$tfile.$i
1469         [ $($LFS getstripe $DIR/$tdir/$tfile.$i | grep -A 10 obdidx |
1470             awk '{print $1}'| grep -w "0") ] &&
1471                 error "OST0 was full but new created file still use it"
1472         i=$((i + 1))
1473         touch $DIR/$tdir/$tfile.$i
1474         [ $($LFS getstripe $DIR/$tdir/$tfile.$i | grep -A 10 obdidx |
1475             awk '{print $1}'| grep -w "0") ] &&
1476                 error "OST0 was full but new created file still use it"
1477         simple_cleanup_common
1478 }
1479 run_test 27m "create file while OST0 was full"
1480
1481 sleep_maxage() {
1482         local delay=$(do_facet $SINGLEMDS lctl get_param -n lov.*.qos_maxage |
1483                       head -n 1 | awk '{ print $1 * 2 }')
1484         sleep $delay
1485 }
1486
1487 # OSCs keep a NOSPC flag that will be reset after ~5s (qos_maxage)
1488 # if the OST isn't full anymore.
1489 reset_enospc() {
1490         local OSTIDX=${1:-""}
1491
1492         local list=$(comma_list $(osts_nodes))
1493         [ "$OSTIDX" ] && list=$(facet_host ost$((OSTIDX + 1)))
1494
1495         do_nodes $list lctl set_param fail_loc=0
1496         sync    # initiate all OST_DESTROYs from MDS to OST
1497         sleep_maxage
1498 }
1499
1500 exhaust_precreations() {
1501         local OSTIDX=$1
1502         local FAILLOC=$2
1503         local FAILIDX=${3:-$OSTIDX}
1504         local ofacet=ost$((OSTIDX + 1))
1505
1506         test_mkdir -p -c1 $DIR/$tdir
1507         local mdtidx=$($LFS getstripe -M $DIR/$tdir)
1508         local mfacet=mds$((mdtidx + 1))
1509         echo OSTIDX=$OSTIDX MDTIDX=$mdtidx
1510
1511         local OST=$(ostname_from_index $OSTIDX)
1512
1513         # on the mdt's osc
1514         local mdtosc_proc1=$(get_mdtosc_proc_path $mfacet $OST)
1515         local last_id=$(do_facet $mfacet lctl get_param -n \
1516                         osc.$mdtosc_proc1.prealloc_last_id)
1517         local next_id=$(do_facet $mfacet lctl get_param -n \
1518                         osc.$mdtosc_proc1.prealloc_next_id)
1519
1520         local mdtosc_proc2=$(get_mdtosc_proc_path $mfacet)
1521         do_facet $mfacet lctl get_param osc.$mdtosc_proc2.prealloc*
1522
1523         test_mkdir -p $DIR/$tdir/${OST}
1524         $SETSTRIPE -i $OSTIDX -c 1 $DIR/$tdir/${OST}
1525 #define OBD_FAIL_OST_ENOSPC              0x215
1526         do_facet $ofacet lctl set_param fail_val=$FAILIDX fail_loc=0x215
1527         echo "Creating to objid $last_id on ost $OST..."
1528         createmany -o $DIR/$tdir/${OST}/f $next_id $((last_id - next_id + 2))
1529         do_facet $mfacet lctl get_param osc.$mdtosc_proc2.prealloc*
1530         do_facet $ofacet lctl set_param fail_loc=$FAILLOC
1531         sleep_maxage
1532 }
1533
1534 exhaust_all_precreations() {
1535         local i
1536         for (( i=0; i < OSTCOUNT; i++ )) ; do
1537                 exhaust_precreations $i $1 -1
1538         done
1539 }
1540
1541 test_27n() {
1542         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
1543         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1544         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1545         remote_ost_nodsh && skip "remote OST with nodsh" && return
1546
1547         reset_enospc
1548         rm -f $DIR/$tdir/$tfile
1549         exhaust_precreations 0 0x80000215
1550         $LFS setstripe -c -1 $DIR/$tdir
1551         touch $DIR/$tdir/$tfile || error
1552         $LFS getstripe $DIR/$tdir/$tfile
1553         reset_enospc
1554 }
1555 run_test 27n "create file with some full OSTs"
1556
1557 test_27o() {
1558         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
1559         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1560         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1561         remote_ost_nodsh && skip "remote OST with nodsh" && return
1562
1563         reset_enospc
1564         rm -f $DIR/$tdir/$tfile
1565         exhaust_all_precreations 0x215
1566
1567         touch $DIR/$tdir/$tfile && error "able to create $DIR/$tdir/$tfile"
1568
1569         reset_enospc
1570         rm -rf $DIR/$tdir/*
1571 }
1572 run_test 27o "create file with all full OSTs (should error)"
1573
1574 test_27p() {
1575         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
1576         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1577         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1578         remote_ost_nodsh && skip "remote OST with nodsh" && return
1579
1580         reset_enospc
1581         rm -f $DIR/$tdir/$tfile
1582         test_mkdir $DIR/$tdir
1583
1584         $MCREATE $DIR/$tdir/$tfile || error "mcreate failed"
1585         $TRUNCATE $DIR/$tdir/$tfile 80000000 || error "truncate failed"
1586         $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat failed"
1587
1588         exhaust_precreations 0 0x80000215
1589         echo foo >> $DIR/$tdir/$tfile || error "append failed"
1590         $CHECKSTAT -s 80000004 $DIR/$tdir/$tfile || error "checkstat failed"
1591         $LFS getstripe $DIR/$tdir/$tfile
1592
1593         reset_enospc
1594 }
1595 run_test 27p "append to a truncated file with some full OSTs"
1596
1597 test_27q() {
1598         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
1599         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1600         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1601         remote_ost_nodsh && skip "remote OST with nodsh" && return
1602
1603         reset_enospc
1604         rm -f $DIR/$tdir/$tfile
1605
1606         test_mkdir $DIR/$tdir
1607         $MCREATE $DIR/$tdir/$tfile || error "mcreate $DIR/$tdir/$tfile failed"
1608         $TRUNCATE $DIR/$tdir/$tfile 80000000 ||
1609                 error "truncate $DIR/$tdir/$tfile failed"
1610         $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat failed"
1611
1612         exhaust_all_precreations 0x215
1613
1614         echo foo >> $DIR/$tdir/$tfile && error "append succeeded"
1615         $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat 2 failed"
1616
1617         reset_enospc
1618 }
1619 run_test 27q "append to truncated file with all OSTs full (should error)"
1620
1621 test_27r() {
1622         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
1623         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1624         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1625         remote_ost_nodsh && skip "remote OST with nodsh" && return
1626
1627         reset_enospc
1628         rm -f $DIR/$tdir/$tfile
1629         exhaust_precreations 0 0x80000215
1630
1631         $LFS setstripe -i 0 -c 2 $DIR/$tdir/$tfile # && error
1632
1633         reset_enospc
1634 }
1635 run_test 27r "stripe file with some full OSTs (shouldn't LBUG) ="
1636
1637 test_27s() { # bug 10725
1638         test_mkdir $DIR/$tdir
1639         local stripe_size=$((4096 * 1024 * 1024))       # 2^32
1640         local stripe_count=0
1641         [ $OSTCOUNT -eq 1 ] || stripe_count=2
1642         $LFS setstripe -S $stripe_size -c $stripe_count $DIR/$tdir &&
1643                 error "stripe width >= 2^32 succeeded" || true
1644
1645 }
1646 run_test 27s "lsm_xfersize overflow (should error) (bug 10725)"
1647
1648 test_27t() { # bug 10864
1649         WDIR=$(pwd)
1650         WLFS=$(which lfs)
1651         cd $DIR
1652         touch $tfile
1653         $WLFS getstripe $tfile
1654         cd $WDIR
1655 }
1656 run_test 27t "check that utils parse path correctly"
1657
1658 test_27u() { # bug 4900
1659         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
1660         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1661         local index
1662         local list=$(comma_list $(mdts_nodes))
1663
1664 #define OBD_FAIL_MDS_OSC_PRECREATE      0x139
1665         do_nodes $list $LCTL set_param fail_loc=0x139
1666         test_mkdir -p $DIR/$tdir
1667         trap simple_cleanup_common EXIT
1668         createmany -o $DIR/$tdir/t- 1000
1669         do_nodes $list $LCTL set_param fail_loc=0
1670
1671         TLOG=$TMP/$tfile.getstripe
1672         $LFS getstripe $DIR/$tdir > $TLOG
1673         OBJS=$(awk -vobj=0 '($1 == 0) { obj += 1 } END { print obj; }' $TLOG)
1674         unlinkmany $DIR/$tdir/t- 1000
1675         trap 0
1676         [[ $OBJS -gt 0 ]] &&
1677                 error "$OBJS objects created on OST-0. See $TLOG" ||
1678                 rm -f $TLOG
1679 }
1680 run_test 27u "skip object creation on OSC w/o objects"
1681
1682 test_27v() { # bug 4900
1683         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
1684         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1685         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1686         remote_ost_nodsh && skip "remote OST with nodsh" && return
1687
1688         exhaust_all_precreations 0x215
1689         reset_enospc
1690
1691         $LFS setstripe -c 1 $DIR/$tdir         # 1 stripe / file
1692
1693         touch $DIR/$tdir/$tfile
1694         #define OBD_FAIL_TGT_DELAY_PRECREATE     0x705
1695         # all except ost1
1696         for (( i=1; i < OSTCOUNT; i++ )); do
1697                 do_facet ost$i lctl set_param fail_loc=0x705
1698         done
1699         local START=`date +%s`
1700         createmany -o $DIR/$tdir/$tfile 32
1701
1702         local FINISH=`date +%s`
1703         local TIMEOUT=`lctl get_param -n timeout`
1704         local PROCESS=$((FINISH - START))
1705         [ $PROCESS -ge $((TIMEOUT / 2)) ] && \
1706                error "$FINISH - $START >= $TIMEOUT / 2"
1707         sleep $((TIMEOUT / 2 - PROCESS))
1708         reset_enospc
1709 }
1710 run_test 27v "skip object creation on slow OST"
1711
1712 test_27w() { # bug 10997
1713         test_mkdir $DIR/$tdir
1714         $LFS setstripe -S 65536 $DIR/$tdir/f0 || error "setstripe failed"
1715         [ $($LFS getstripe -S $DIR/$tdir/f0) -ne 65536 ] &&
1716                 error "stripe size $size != 65536" || true
1717         [ $($LFS getstripe -d $DIR/$tdir | grep -c "stripe_count") -eq 0 ] &&
1718                 error "$LFS getstripe -d $DIR/$tdir no 'stripe_count'" || true
1719 }
1720 run_test 27w "check $LFS setstripe -S and getstrip -d options"
1721
1722 test_27wa() {
1723         [[ $OSTCOUNT -lt 2 ]] &&
1724                 skip_env "skipping multiple stripe count/offset test" && return
1725
1726         test_mkdir $DIR/$tdir
1727         for i in $(seq 1 $OSTCOUNT); do
1728                 offset=$((i - 1))
1729                 $LFS setstripe -c $i -i $offset $DIR/$tdir/f$i ||
1730                         error "setstripe -c $i -i $offset failed"
1731                 count=$($LFS getstripe -c $DIR/$tdir/f$i)
1732                 index=$($LFS getstripe -i $DIR/$tdir/f$i)
1733                 [ $count -ne $i ] && error "stripe count $count != $i" || true
1734                 [ $index -ne $offset ] &&
1735                         error "stripe offset $index != $offset" || true
1736         done
1737 }
1738 run_test 27wa "check $LFS setstripe -c -i options"
1739
1740 test_27x() {
1741         remote_ost_nodsh && skip "remote OST with nodsh" && return
1742         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
1743         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1744         OFFSET=$(($OSTCOUNT - 1))
1745         OSTIDX=0
1746         local OST=$(ostname_from_index $OSTIDX)
1747
1748         test_mkdir $DIR/$tdir
1749         $LFS setstripe -c 1 $DIR/$tdir  # 1 stripe per file
1750         do_facet ost$((OSTIDX + 1)) lctl set_param -n obdfilter.$OST.degraded 1
1751         sleep_maxage
1752         createmany -o $DIR/$tdir/$tfile $OSTCOUNT
1753         for i in $(seq 0 $OFFSET); do
1754                 [ $($LFS getstripe $DIR/$tdir/$tfile$i | grep -A 10 obdidx |
1755                         awk '{print $1}' | grep -w "$OSTIDX") ] &&
1756                 error "OST0 was degraded but new created file still use it"
1757         done
1758         do_facet ost$((OSTIDX + 1)) lctl set_param -n obdfilter.$OST.degraded 0
1759 }
1760 run_test 27x "create files while OST0 is degraded"
1761
1762 test_27y() {
1763         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
1764         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1765         remote_ost_nodsh && skip "remote OST with nodsh" && return
1766         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1767
1768         local mdtosc=$(get_mdtosc_proc_path $SINGLEMDS $FSNAME-OST0000)
1769         local last_id=$(do_facet $SINGLEMDS lctl get_param -n \
1770                 osc.$mdtosc.prealloc_last_id)
1771         local next_id=$(do_facet $SINGLEMDS lctl get_param -n \
1772                 osc.$mdtosc.prealloc_next_id)
1773         local fcount=$((last_id - next_id))
1774         [[ $fcount -eq 0 ]] && skip "not enough space on OST0" && return
1775         [[ $fcount -gt $OSTCOUNT ]] && fcount=$OSTCOUNT
1776
1777         local MDS_OSCS=$(do_facet $SINGLEMDS lctl dl |
1778                          awk '/[oO][sS][cC].*md[ts]/ { print $4 }')
1779         local OST_DEACTIVE_IDX=-1
1780         local OSC
1781         local OSTIDX
1782         local OST
1783
1784         for OSC in $MDS_OSCS; do
1785                 OST=$(osc_to_ost $OSC)
1786                 OSTIDX=$(index_from_ostuuid $OST)
1787                 if [ $OST_DEACTIVE_IDX == -1 ]; then
1788                         OST_DEACTIVE_IDX=$OSTIDX
1789                 fi
1790                 if [ $OSTIDX != $OST_DEACTIVE_IDX ]; then
1791                         echo $OSC "is Deactivated:"
1792                         do_facet $SINGLEMDS lctl --device  %$OSC deactivate
1793                 fi
1794         done
1795
1796         OSTIDX=$(index_from_ostuuid $OST)
1797         test_mkdir $DIR/$tdir
1798         $LFS setstripe -c 1 $DIR/$tdir      # 1 stripe / file
1799
1800         for OSC in $MDS_OSCS; do
1801                 OST=$(osc_to_ost $OSC)
1802                 OSTIDX=$(index_from_ostuuid $OST)
1803                 if [ $OSTIDX == $OST_DEACTIVE_IDX ]; then
1804                         echo $OST "is degraded:"
1805                         do_facet ost$((OSTIDX+1)) lctl set_param -n \
1806                                                 obdfilter.$OST.degraded=1
1807                 fi
1808         done
1809
1810         sleep_maxage
1811         createmany -o $DIR/$tdir/$tfile $fcount
1812
1813         for OSC in $MDS_OSCS; do
1814                 OST=$(osc_to_ost $OSC)
1815                 OSTIDX=$(index_from_ostuuid $OST)
1816                 if [ $OSTIDX == $OST_DEACTIVE_IDX ]; then
1817                         echo $OST "is recovered from degraded:"
1818                         do_facet ost$((OSTIDX+1)) lctl set_param -n \
1819                                                 obdfilter.$OST.degraded=0
1820                 else
1821                         do_facet $SINGLEMDS lctl --device %$OSC activate
1822                 fi
1823         done
1824
1825         # all osp devices get activated, hence -1 stripe count restored
1826         local stripe_count=0
1827
1828         # sleep 2*lod_qos_maxage seconds waiting for lod qos to notice osp
1829         # devices get activated.
1830         sleep_maxage
1831         $LFS setstripe -c -1 $DIR/$tfile
1832         stripe_count=$($LFS getstripe -c $DIR/$tfile)
1833         rm -f $DIR/$tfile
1834         [ $stripe_count -ne $OSTCOUNT ] &&
1835                 error "Of $OSTCOUNT OSTs, only $stripe_count is available"
1836         return 0
1837 }
1838 run_test 27y "create files while OST0 is degraded and the rest inactive"
1839
1840 check_seq_oid()
1841 {
1842         log "check file $1"
1843
1844         lmm_count=$($GETSTRIPE -c $1)
1845         lmm_seq=$($GETSTRIPE -v $1 | awk '/lmm_seq/ { print $2 }')
1846         lmm_oid=$($GETSTRIPE -v $1 | awk '/lmm_object_id/ { print $2 }')
1847
1848         local old_ifs="$IFS"
1849         IFS=$'[:]'
1850         fid=($($LFS path2fid $1))
1851         IFS="$old_ifs"
1852
1853         log "FID seq ${fid[1]}, oid ${fid[2]} ver ${fid[3]}"
1854         log "LOV seq $lmm_seq, oid $lmm_oid, count: $lmm_count"
1855
1856         # compare lmm_seq and lu_fid->f_seq
1857         [ $lmm_seq = ${fid[1]} ] || { error "SEQ mismatch"; return 1; }
1858         # compare lmm_object_id and lu_fid->oid
1859         [ $lmm_oid = ${fid[2]} ] || { error "OID mismatch"; return 2; }
1860
1861         # check the trusted.fid attribute of the OST objects of the file
1862         local have_obdidx=false
1863         local stripe_nr=0
1864         $GETSTRIPE $1 | while read obdidx oid hex seq; do
1865                 # skip lines up to and including "obdidx"
1866                 [ -z "$obdidx" ] && break
1867                 [ "$obdidx" = "obdidx" ] && have_obdidx=true && continue
1868                 $have_obdidx || continue
1869
1870                 local ost=$((obdidx + 1))
1871                 local dev=$(ostdevname $ost)
1872                 local oid_hex
1873
1874                 log "want: stripe:$stripe_nr ost:$obdidx oid:$oid/$hex seq:$seq"
1875
1876                 seq=$(echo $seq | sed -e "s/^0x//g")
1877                 if [ $seq == 0 ] || [ $(facet_fstype ost$ost) == zfs ]; then
1878                         oid_hex=$(echo $oid)
1879                 else
1880                         oid_hex=$(echo $hex | sed -e "s/^0x//g")
1881                 fi
1882                 local obj_file="O/$seq/d$((oid %32))/$oid_hex"
1883
1884                 local ff=""
1885                 #
1886                 # Don't unmount/remount the OSTs if we don't need to do that.
1887                 # LU-2577 changes filter_fid to be smaller, so debugfs needs
1888                 # update too, until that use mount/ll_decode_filter_fid/mount.
1889                 # Re-enable when debugfs will understand new filter_fid.
1890                 #
1891                 if [ $(facet_fstype ost$ost) == ldiskfs ]; then
1892                         ff=$(do_facet ost$ost "$DEBUGFS -c -R 'stat $obj_file' \
1893                                 $dev 2>/dev/null" | grep "parent=")
1894                 fi
1895                 if [ -z "$ff" ]; then
1896                         stop ost$ost
1897                         mount_fstype ost$ost
1898                         ff=$(do_facet ost$ost $LL_DECODE_FILTER_FID \
1899                                 $(facet_mntpt ost$ost)/$obj_file)
1900                         unmount_fstype ost$ost
1901                         start ost$ost $dev $OST_MOUNT_OPTS
1902                         clients_up
1903                 fi
1904
1905                 [ -z "$ff" ] && error "$obj_file: no filter_fid info"
1906
1907                 echo "$ff" | sed -e 's#.*objid=#got: objid=#'
1908
1909                 # /mnt/O/0/d23/23: objid=23 seq=0 parent=[0x200000400:0x1e:0x1]
1910                 # fid: objid=23 seq=0 parent=[0x200000400:0x1e:0x0] stripe=1
1911                 #
1912                 # fid: parent=[0x200000400:0x1e:0x0] stripe=1 stripe_count=2 \
1913                 #       stripe_size=1048576 component_id=1 component_start=0 \
1914                 #       component_end=33554432
1915                 local ff_parent=$(sed -e 's/.*parent=.//' <<<$ff)
1916                 local ff_pseq=$(cut -d: -f1 <<<$ff_parent)
1917                 local ff_poid=$(cut -d: -f2 <<<$ff_parent)
1918                 local ff_pstripe
1919                 if grep -q 'stripe=' <<<$ff; then
1920                         ff_pstripe=$(sed -e 's/.*stripe=//' -e 's/ .*//' <<<$ff)
1921                 else
1922                         # $LL_DECODE_FILTER_FID does not print "stripe="; look
1923                         # into f_ver in this case.  See comment on ff_parent.
1924                         ff_pstripe=$(cut -d: -f3 <<<$ff_parent | sed -e 's/]//')
1925                 fi
1926
1927                 # compare lmm_seq and filter_fid->ff_parent.f_seq
1928                 [ $ff_pseq = $lmm_seq ] ||
1929                         error "FF parent SEQ $ff_pseq != $lmm_seq"
1930                 # compare lmm_object_id and filter_fid->ff_parent.f_oid
1931                 [ $ff_poid = $lmm_oid ] ||
1932                         error "FF parent OID $ff_poid != $lmm_oid"
1933                 (($ff_pstripe == $stripe_nr)) ||
1934                         error "FF stripe $ff_pstripe != $stripe_nr"
1935
1936                 stripe_nr=$((stripe_nr + 1))
1937                 [ $(lustre_version_code client) -lt $(version_code 2.9.55) ] &&
1938                         continue
1939                 if grep -q 'stripe_count=' <<<$ff; then
1940                         local ff_scnt=$(sed -e 's/.*stripe_count=//' \
1941                                             -e 's/ .*//' <<<$ff)
1942                         [ $lmm_count = $ff_scnt ] ||
1943                                 error "FF stripe count $lmm_count != $ff_scnt"
1944                 fi
1945         done
1946 }
1947
1948 test_27z() {
1949         remote_ost_nodsh && skip "remote OST with nodsh" && return
1950         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1951         test_mkdir $DIR/$tdir
1952
1953         $LFS setstripe -c 1 -i 0 -S 64k $DIR/$tdir/$tfile-1 ||
1954                 { error "setstripe -c -1 failed"; return 1; }
1955         # We need to send a write to every object to get parent FID info set.
1956         # This _should_ also work for setattr, but does not currently.
1957         # touch $DIR/$tdir/$tfile-1 ||
1958         dd if=/dev/zero of=$DIR/$tdir/$tfile-1 bs=1M count=1 ||
1959                 { error "dd $tfile-1 failed"; return 2; }
1960         $LFS setstripe -c -1 -i $((OSTCOUNT - 1)) -S 1M $DIR/$tdir/$tfile-2 ||
1961                 { error "setstripe -c -1 failed"; return 3; }
1962         dd if=/dev/zero of=$DIR/$tdir/$tfile-2 bs=1M count=$OSTCOUNT ||
1963                 { error "dd $tfile-2 failed"; return 4; }
1964
1965         # make sure write RPCs have been sent to OSTs
1966         sync; sleep 5; sync
1967
1968         check_seq_oid $DIR/$tdir/$tfile-1 || return 5
1969         check_seq_oid $DIR/$tdir/$tfile-2 || return 6
1970 }
1971 run_test 27z "check SEQ/OID on the MDT and OST filesystems"
1972
1973 test_27A() { # b=19102
1974         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1975         local restore_size=$($GETSTRIPE -S $MOUNT)
1976         local restore_count=$($GETSTRIPE -c $MOUNT)
1977         local restore_offset=$($GETSTRIPE -i $MOUNT)
1978         $SETSTRIPE -c 0 -i -1 -S 0 $MOUNT
1979         wait_update $HOSTNAME "$GETSTRIPE -c $MOUNT | sed 's/  *//g'" "1" 20 ||
1980                 error "stripe count $($GETSTRIPE -c $MOUNT) != 1"
1981         local default_size=$($GETSTRIPE -S $MOUNT)
1982         local default_offset=$($GETSTRIPE -i $MOUNT)
1983         local dsize=$((1024 * 1024))
1984         [ $default_size -eq $dsize ] ||
1985                 error "stripe size $default_size != $dsize"
1986         [ $default_offset -eq -1 ] ||error "stripe offset $default_offset != -1"
1987         $SETSTRIPE -c $restore_count -i $restore_offset -S $restore_size $MOUNT
1988 }
1989 run_test 27A "check filesystem-wide default LOV EA values"
1990
1991 test_27B() { # LU-2523
1992         test_mkdir $DIR/$tdir
1993         rm -f $DIR/$tdir/f0 $DIR/$tdir/f1
1994         touch $DIR/$tdir/f0
1995         # open f1 with O_LOV_DELAY_CREATE
1996         # rename f0 onto f1
1997         # call setstripe ioctl on open file descriptor for f1
1998         # close
1999         multiop $DIR/$tdir/f1 oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:nB1c \
2000                 $DIR/$tdir/f0
2001
2002         rm -f $DIR/$tdir/f1
2003         # open f1 with O_LOV_DELAY_CREATE
2004         # unlink f1
2005         # call setstripe ioctl on open file descriptor for f1
2006         # close
2007         multiop $DIR/$tdir/f1 oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:uB1c
2008
2009         # Allow multiop to fail in imitation of NFS's busted semantics.
2010         true
2011 }
2012 run_test 27B "call setstripe on open unlinked file/rename victim"
2013
2014 test_27C() { #LU-2871
2015         [[ $OSTCOUNT -lt 2 ]] && skip "needs >= 2 OSTs" && return
2016
2017         declare -a ost_idx
2018         local index
2019         local found
2020         local i
2021         local j
2022
2023         test_mkdir $DIR/$tdir
2024         cd $DIR/$tdir
2025         for i in $(seq 0 $((OSTCOUNT - 1))); do
2026                 # set stripe across all OSTs starting from OST$i
2027                 $SETSTRIPE -i $i -c -1 $tfile$i
2028                 # get striping information
2029                 ost_idx=($($GETSTRIPE $tfile$i |
2030                          tail -n $((OSTCOUNT + 1)) | awk '{print $1}'))
2031                 echo ${ost_idx[@]}
2032
2033                 # check the layout
2034                 [ ${#ost_idx[@]} -eq $OSTCOUNT ] ||
2035                         error "${#ost_idx[@]} != $OSTCOUNT"
2036
2037                 for index in $(seq 0 $((OSTCOUNT - 1))); do
2038                         found=0
2039                         for j in $(echo ${ost_idx[@]}); do
2040                                 if [ $index -eq $j ]; then
2041                                         found=1
2042                                         break
2043                                 fi
2044                         done
2045                         [ $found = 1 ] ||
2046                                 error "Can not find $index in ${ost_idx[@]}"
2047                 done
2048         done
2049 }
2050 run_test 27C "check full striping across all OSTs"
2051
2052 test_27D() {
2053         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
2054         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
2055         remote_mds_nodsh && skip "remote MDS with nodsh" && return
2056         local POOL=${POOL:-testpool}
2057         local first_ost=0
2058         local last_ost=$(($OSTCOUNT - 1))
2059         local ost_step=1
2060         local ost_list=$(seq $first_ost $ost_step $last_ost)
2061         local ost_range="$first_ost $last_ost $ost_step"
2062
2063         if ! combined_mgs_mds ; then
2064                 mount_mgs_client
2065         fi
2066
2067         test_mkdir $DIR/$tdir
2068         pool_add $POOL || error "pool_add failed"
2069         pool_add_targets $POOL $ost_range || error "pool_add_targets failed"
2070
2071         local skip27D
2072         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.55) ] &&
2073                 skip27D += "-s 29"
2074         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.9.55) -o \
2075           $(lustre_version_code client) -lt $(version_code 2.9.55) ] &&
2076                 skip27D += "-s 30,31"
2077         llapi_layout_test -d$DIR/$tdir -p$POOL -o$OSTCOUNT $skip27D ||
2078                 error "llapi_layout_test failed"
2079
2080         destroy_test_pools || error "destroy test pools failed"
2081
2082         if ! combined_mgs_mds ; then
2083                 umount_mgs_client
2084         fi
2085 }
2086 run_test 27D "validate llapi_layout API"
2087
2088 # Verify that default_easize is increased from its initial value after
2089 # accessing a widely striped file.
2090 test_27E() {
2091         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
2092         [ $(lustre_version_code client) -lt $(version_code 2.5.57) ] &&
2093                 skip "client does not have LU-3338 fix" && return
2094
2095         # 72 bytes is the minimum space required to store striping
2096         # information for a file striped across one OST:
2097         # (sizeof(struct lov_user_md_v3) +
2098         #  sizeof(struct lov_user_ost_data_v1))
2099         local min_easize=72
2100         $LCTL set_param -n llite.*.default_easize $min_easize ||
2101                 error "lctl set_param failed"
2102         local easize=$($LCTL get_param -n llite.*.default_easize)
2103
2104         [ $easize -eq $min_easize ] ||
2105                 error "failed to set default_easize"
2106
2107         $LFS setstripe -c $OSTCOUNT $DIR/$tfile ||
2108                 error "setstripe failed"
2109         cat $DIR/$tfile
2110         rm $DIR/$tfile
2111
2112         easize=$($LCTL get_param -n llite.*.default_easize)
2113
2114         [ $easize -gt $min_easize ] ||
2115                 error "default_easize not updated"
2116 }
2117 run_test 27E "check that default extended attribute size properly increases"
2118
2119 test_27F() { # LU-5346/LU-7975
2120         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2121         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.51) ]] &&
2122                 skip "Need MDS version at least 2.8.51" && return
2123         remote_ost_nodsh && skip "remote OST with nodsh" && return
2124
2125         test_mkdir $DIR/$tdir
2126         rm -f $DIR/$tdir/f0
2127         $SETSTRIPE -c 2 $DIR/$tdir
2128
2129         # stop all OSTs to reproduce situation for LU-7975 ticket
2130         for num in $(seq $OSTCOUNT); do
2131                 stop ost$num
2132         done
2133
2134         # open/create f0 with O_LOV_DELAY_CREATE
2135         # truncate f0 to a non-0 size
2136         # close
2137         multiop $DIR/$tdir/f0 oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:T1050000c
2138
2139         $CHECKSTAT -s 1050000 $DIR/$tdir/f0 || error "checkstat failed"
2140         # open/write it again to force delayed layout creation
2141         cat /etc/hosts > $DIR/$tdir/f0 &
2142         catpid=$!
2143
2144         # restart OSTs
2145         for num in $(seq $OSTCOUNT); do
2146                 start ost$num $(ostdevname $num) $OST_MOUNT_OPTS ||
2147                         error "ost$num failed to start"
2148         done
2149
2150         wait $catpid || error "cat failed"
2151
2152         cmp /etc/hosts $DIR/$tdir/f0 || error "cmp failed"
2153         [[ $($GETSTRIPE -c $DIR/$tdir/f0) == 2 ]] || error "wrong stripecount"
2154
2155 }
2156 run_test 27F "Client resend delayed layout creation with non-zero size"
2157
2158 # createtest also checks that device nodes are created and
2159 # then visible correctly (#2091)
2160 test_28() { # bug 2091
2161         test_mkdir $DIR/d28
2162         $CREATETEST $DIR/d28/ct || error
2163 }
2164 run_test 28 "create/mknod/mkdir with bad file types ============"
2165
2166 test_29() {
2167         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return 0
2168         sync; sleep 1; sync # flush out any dirty pages from previous tests
2169         cancel_lru_locks
2170         test_mkdir $DIR/d29
2171         touch $DIR/d29/foo
2172         log 'first d29'
2173         ls -l $DIR/d29
2174
2175         declare -i LOCKCOUNTORIG=0
2176         for lock_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_count); do
2177                 let LOCKCOUNTORIG=$LOCKCOUNTORIG+$lock_count
2178         done
2179         [ $LOCKCOUNTORIG -eq 0 ] && error "No mdc lock count" && return 1
2180
2181         declare -i LOCKUNUSEDCOUNTORIG=0
2182         for unused_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_unused_count); do
2183                 let LOCKUNUSEDCOUNTORIG=$LOCKUNUSEDCOUNTORIG+$unused_count
2184         done
2185
2186         log 'second d29'
2187         ls -l $DIR/d29
2188         log 'done'
2189
2190         declare -i LOCKCOUNTCURRENT=0
2191         for lock_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_count); do
2192                 let LOCKCOUNTCURRENT=$LOCKCOUNTCURRENT+$lock_count
2193         done
2194
2195         declare -i LOCKUNUSEDCOUNTCURRENT=0
2196         for unused_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_unused_count); do
2197                 let LOCKUNUSEDCOUNTCURRENT=$LOCKUNUSEDCOUNTCURRENT+$unused_count
2198         done
2199
2200         if [[ $LOCKCOUNTCURRENT -gt $LOCKCOUNTORIG ]]; then
2201                 $LCTL set_param -n ldlm.dump_namespaces ""
2202                 error "CURRENT: $LOCKCOUNTCURRENT > $LOCKCOUNTORIG"
2203                 $LCTL dk | sort -k4 -t: > $TMP/test_29.dk
2204                 log "dumped log to $TMP/test_29.dk (bug 5793)"
2205                 return 2
2206         fi
2207         if [[ $LOCKUNUSEDCOUNTCURRENT -gt $LOCKUNUSEDCOUNTORIG ]]; then
2208                 error "UNUSED: $LOCKUNUSEDCOUNTCURRENT > $LOCKUNUSEDCOUNTORIG"
2209                 $LCTL dk | sort -k4 -t: > $TMP/test_29.dk
2210                 log "dumped log to $TMP/test_29.dk (bug 5793)"
2211                 return 3
2212         fi
2213 }
2214 run_test 29 "IT_GETATTR regression  ============================"
2215
2216 test_30a() { # was test_30
2217         cp $(which ls) $DIR || cp /bin/ls $DIR
2218         $DIR/ls / || error
2219         rm $DIR/ls
2220 }
2221 run_test 30a "execute binary from Lustre (execve) =============="
2222
2223 test_30b() {
2224         cp `which ls` $DIR || cp /bin/ls $DIR
2225         chmod go+rx $DIR/ls
2226         $RUNAS $DIR/ls / || error
2227         rm $DIR/ls
2228 }
2229 run_test 30b "execute binary from Lustre as non-root ==========="
2230
2231 test_30c() { # b=22376
2232         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2233         cp `which ls` $DIR || cp /bin/ls $DIR
2234         chmod a-rw $DIR/ls
2235         cancel_lru_locks mdc
2236         cancel_lru_locks osc
2237         $RUNAS $DIR/ls / || error
2238         rm -f $DIR/ls
2239 }
2240 run_test 30c "execute binary from Lustre without read perms ===="
2241
2242 test_31a() {
2243         $OPENUNLINK $DIR/f31 $DIR/f31 || error
2244         $CHECKSTAT -a $DIR/f31 || error
2245 }
2246 run_test 31a "open-unlink file =================================="
2247
2248 test_31b() {
2249         touch $DIR/f31 || error
2250         ln $DIR/f31 $DIR/f31b || error
2251         $MULTIOP $DIR/f31b Ouc || error
2252         $CHECKSTAT -t file $DIR/f31 || error
2253 }
2254 run_test 31b "unlink file with multiple links while open ======="
2255
2256 test_31c() {
2257         touch $DIR/f31 || error
2258         ln $DIR/f31 $DIR/f31c || error
2259         multiop_bg_pause $DIR/f31 O_uc || return 1
2260         MULTIPID=$!
2261         $MULTIOP $DIR/f31c Ouc
2262         kill -USR1 $MULTIPID
2263         wait $MULTIPID
2264 }
2265 run_test 31c "open-unlink file with multiple links ============="
2266
2267 test_31d() {
2268         opendirunlink $DIR/d31d $DIR/d31d || error
2269         $CHECKSTAT -a $DIR/d31d || error
2270 }
2271 run_test 31d "remove of open directory ========================="
2272
2273 test_31e() { # bug 2904
2274         openfilleddirunlink $DIR/d31e || error
2275 }
2276 run_test 31e "remove of open non-empty directory ==============="
2277
2278 test_31f() { # bug 4554
2279         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2280         set -vx
2281         test_mkdir $DIR/d31f
2282         $SETSTRIPE -S 1048576 -c 1 $DIR/d31f
2283         cp /etc/hosts $DIR/d31f
2284         ls -l $DIR/d31f
2285         $GETSTRIPE $DIR/d31f/hosts
2286         multiop_bg_pause $DIR/d31f D_c || return 1
2287         MULTIPID=$!
2288
2289         rm -rv $DIR/d31f || error "first of $DIR/d31f"
2290         test_mkdir $DIR/d31f
2291         $SETSTRIPE -S 1048576 -c 1 $DIR/d31f
2292         cp /etc/hosts $DIR/d31f
2293         ls -l $DIR/d31f
2294         $GETSTRIPE $DIR/d31f/hosts
2295         multiop_bg_pause $DIR/d31f D_c || return 1
2296         MULTIPID2=$!
2297
2298         kill -USR1 $MULTIPID || error "first opendir $MULTIPID not running"
2299         wait $MULTIPID || error "first opendir $MULTIPID failed"
2300
2301         sleep 6
2302
2303         kill -USR1 $MULTIPID2 || error "second opendir $MULTIPID not running"
2304         wait $MULTIPID2 || error "second opendir $MULTIPID2 failed"
2305         set +vx
2306 }
2307 run_test 31f "remove of open directory with open-unlink file ==="
2308
2309 test_31g() {
2310         echo "-- cross directory link --"
2311         test_mkdir -c1 $DIR/${tdir}ga
2312         test_mkdir -c1 $DIR/${tdir}gb
2313         touch $DIR/${tdir}ga/f
2314         ln $DIR/${tdir}ga/f $DIR/${tdir}gb/g
2315         $CHECKSTAT -t file $DIR/${tdir}ga/f || error "source"
2316         [ `stat -c%h $DIR/${tdir}ga/f` == '2' ] || error "source nlink"
2317         $CHECKSTAT -t file $DIR/${tdir}gb/g || error "target"
2318         [ `stat -c%h $DIR/${tdir}gb/g` == '2' ] || error "target nlink"
2319 }
2320 run_test 31g "cross directory link==============="
2321
2322 test_31h() {
2323         echo "-- cross directory link --"
2324         test_mkdir -c1 $DIR/${tdir}
2325         test_mkdir -c1 $DIR/${tdir}/dir
2326         touch $DIR/${tdir}/f
2327         ln $DIR/${tdir}/f $DIR/${tdir}/dir/g
2328         $CHECKSTAT -t file $DIR/${tdir}/f || error "source"
2329         [ `stat -c%h $DIR/${tdir}/f` == '2' ] || error "source nlink"
2330         $CHECKSTAT -t file $DIR/${tdir}/dir/g || error "target"
2331         [ `stat -c%h $DIR/${tdir}/dir/g` == '2' ] || error "target nlink"
2332 }
2333 run_test 31h "cross directory link under child==============="
2334
2335 test_31i() {
2336         echo "-- cross directory link --"
2337         test_mkdir -c1 $DIR/$tdir
2338         test_mkdir -c1 $DIR/$tdir/dir
2339         touch $DIR/$tdir/dir/f
2340         ln $DIR/$tdir/dir/f $DIR/$tdir/g
2341         $CHECKSTAT -t file $DIR/$tdir/dir/f || error "source"
2342         [ `stat -c%h $DIR/$tdir/dir/f` == '2' ] || error "source nlink"
2343         $CHECKSTAT -t file $DIR/$tdir/g || error "target"
2344         [ `stat -c%h $DIR/$tdir/g` == '2' ] || error "target nlink"
2345 }
2346 run_test 31i "cross directory link under parent==============="
2347
2348 test_31j() {
2349         test_mkdir -c1 -p $DIR/$tdir
2350         test_mkdir -c1 -p $DIR/$tdir/dir1
2351         ln $DIR/$tdir/dir1 $DIR/$tdir/dir2 && error "ln for dir"
2352         link $DIR/$tdir/dir1 $DIR/$tdir/dir3 && error "link for dir"
2353         mlink $DIR/$tdir/dir1 $DIR/$tdir/dir4 && error "mlink for dir"
2354         mlink $DIR/$tdir/dir1 $DIR/$tdir/dir1 && error "mlink to the same dir"
2355         return 0
2356 }
2357 run_test 31j "link for directory==============="
2358
2359 test_31k() {
2360         test_mkdir -c1 -p $DIR/$tdir
2361         touch $DIR/$tdir/s
2362         touch $DIR/$tdir/exist
2363         mlink $DIR/$tdir/s $DIR/$tdir/t || error "mlink"
2364         mlink $DIR/$tdir/s $DIR/$tdir/exist && error "mlink to exist file"
2365         mlink $DIR/$tdir/s $DIR/$tdir/s && error "mlink to the same file"
2366         mlink $DIR/$tdir/s $DIR/$tdir && error "mlink to parent dir"
2367         mlink $DIR/$tdir $DIR/$tdir/s && error "mlink parent dir to target"
2368         mlink $DIR/$tdir/not-exist $DIR/$tdir/foo && error "mlink non-existing to new"
2369         mlink $DIR/$tdir/not-exist $DIR/$tdir/s && error "mlink non-existing to exist"
2370         return 0
2371 }
2372 run_test 31k "link to file: the same, non-existing, dir==============="
2373
2374 test_31m() {
2375         mkdir $DIR/d31m
2376         touch $DIR/d31m/s
2377         mkdir $DIR/d31m2
2378         touch $DIR/d31m2/exist
2379         mlink $DIR/d31m/s $DIR/d31m2/t || error "mlink"
2380         mlink $DIR/d31m/s $DIR/d31m2/exist && error "mlink to exist file"
2381         mlink $DIR/d31m/s $DIR/d31m2 && error "mlink to parent dir"
2382         mlink $DIR/d31m2 $DIR/d31m/s && error "mlink parent dir to target"
2383         mlink $DIR/d31m/not-exist $DIR/d31m2/foo && error "mlink non-existing to new"
2384         mlink $DIR/d31m/not-exist $DIR/d31m2/s && error "mlink non-existing to exist"
2385         return 0
2386 }
2387 run_test 31m "link to file: the same, non-existing, dir==============="
2388
2389 test_31n() {
2390         touch $DIR/$tfile || error "cannot create '$DIR/$tfile'"
2391         nlink=$(stat --format=%h $DIR/$tfile)
2392         [ ${nlink:--1} -eq 1 ] || error "nlink is $nlink, expected 1"
2393         local fd=$(free_fd)
2394         local cmd="exec $fd<$DIR/$tfile"
2395         eval $cmd
2396         cmd="exec $fd<&-"
2397         trap "eval $cmd" EXIT
2398         nlink=$(stat --dereference --format=%h /proc/self/fd/$fd)
2399         [ ${nlink:--1} -eq 1 ] || error "nlink is $nlink, expected 1"
2400         rm $DIR/$tfile || error "cannot remove '$DIR/$tfile'"
2401         nlink=$(stat --dereference --format=%h /proc/self/fd/$fd)
2402         [ ${nlink:--1} -eq 0 ] || error "nlink is $nlink, expected 0"
2403         eval $cmd
2404 }
2405 run_test 31n "check link count of unlinked file"
2406
2407 link_one() {
2408         local TEMPNAME=$(mktemp $1_XXXXXX)
2409         mlink $TEMPNAME $1 2> /dev/null &&
2410                 echo "$BASHPID: link $TEMPNAME to $1 succeeded"
2411         munlink $TEMPNAME
2412 }
2413
2414 test_31o() { # LU-2901
2415         test_mkdir $DIR/$tdir
2416         for LOOP in $(seq 100); do
2417                 rm -f $DIR/$tdir/$tfile*
2418                 for THREAD in $(seq 8); do
2419                         link_one $DIR/$tdir/$tfile.$LOOP &
2420                 done
2421                 wait
2422                 local LINKS=$(ls -1 $DIR/$tdir | grep -c $tfile.$LOOP)
2423                 [[ $LINKS -gt 1 ]] && ls $DIR/$tdir &&
2424                         error "$LINKS duplicate links to $tfile.$LOOP" &&
2425                         break || true
2426         done
2427 }
2428 run_test 31o "duplicate hard links with same filename"
2429
2430 test_31p() {
2431         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
2432
2433         test_mkdir $DIR/$tdir
2434         $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
2435         $LFS setdirstripe -D -c2 -t all_char $DIR/$tdir/striped_dir
2436
2437         opendirunlink $DIR/$tdir/striped_dir/test1 ||
2438                 error "open unlink test1 failed"
2439         opendirunlink $DIR/$tdir/striped_dir/test2 ||
2440                 error "open unlink test2 failed"
2441
2442         $CHECKSTAT -a $DIR/$tdir/striped_dir/test1 ||
2443                 error "test1 still exists"
2444         $CHECKSTAT -a $DIR/$tdir/striped_dir/test2 ||
2445                 error "test2 still exists"
2446 }
2447 run_test 31p "remove of open striped directory"
2448
2449 cleanup_test32_mount() {
2450         local rc=0
2451         trap 0
2452         local loopdev=$(losetup -a | grep $EXT2_DEV | sed -ne 's/:.*$//p')
2453         $UMOUNT $DIR/$tdir/ext2-mountpoint || rc=$?
2454         losetup -d $loopdev || true
2455         rm -rf $DIR/$tdir
2456         return $rc
2457 }
2458
2459 test_32a() {
2460         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2461         echo "== more mountpoints and symlinks ================="
2462         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2463         trap cleanup_test32_mount EXIT
2464         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2465         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2466         $CHECKSTAT -t dir $DIR/$tdir/ext2-mountpoint/.. || error
2467         cleanup_test32_mount
2468 }
2469 run_test 32a "stat d32a/ext2-mountpoint/.. ====================="
2470
2471 test_32b() {
2472         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2473         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2474         trap cleanup_test32_mount EXIT
2475         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2476         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2477         ls -al $DIR/$tdir/ext2-mountpoint/.. || error
2478         cleanup_test32_mount
2479 }
2480 run_test 32b "open d32b/ext2-mountpoint/.. ====================="
2481
2482 test_32c() {
2483         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2484         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2485         trap cleanup_test32_mount EXIT
2486         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2487         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2488         test_mkdir -p $DIR/$tdir/d2/test_dir
2489         $CHECKSTAT -t dir $DIR/$tdir/ext2-mountpoint/../d2/test_dir || error
2490         cleanup_test32_mount
2491 }
2492 run_test 32c "stat d32c/ext2-mountpoint/../d2/test_dir ========="
2493
2494 test_32d() {
2495         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2496         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2497         trap cleanup_test32_mount EXIT
2498         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2499         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2500         test_mkdir -p $DIR/$tdir/d2/test_dir
2501         ls -al $DIR/$tdir/ext2-mountpoint/../d2/test_dir || error
2502         cleanup_test32_mount
2503 }
2504 run_test 32d "open d32d/ext2-mountpoint/../d2/test_dir"
2505
2506 test_32e() {
2507         rm -fr $DIR/$tdir
2508         test_mkdir -p $DIR/$tdir/tmp
2509         local tmp_dir=$DIR/$tdir/tmp
2510         ln -s $DIR/$tdir $tmp_dir/symlink11
2511         ln -s $tmp_dir/symlink11 $tmp_dir/../symlink01
2512         $CHECKSTAT -t link $DIR/$tdir/tmp/symlink11 || error "symlink11 bad"
2513         $CHECKSTAT -t link $DIR/$tdir/symlink01 || error "symlink01 bad"
2514 }
2515 run_test 32e "stat d32e/symlink->tmp/symlink->lustre-subdir"
2516
2517 test_32f() {
2518         rm -fr $DIR/$tdir
2519         test_mkdir -p $DIR/$tdir/tmp
2520         local tmp_dir=$DIR/$tdir/tmp
2521         ln -s $DIR/$tdir $tmp_dir/symlink11
2522         ln -s $tmp_dir/symlink11 $tmp_dir/../symlink01
2523         ls $DIR/$tdir/tmp/symlink11  || error "symlink11 bad"
2524         ls $DIR/$tdir/symlink01 || error "symlink01 bad"
2525 }
2526 run_test 32f "open d32f/symlink->tmp/symlink->lustre-subdir"
2527
2528 test_32g() {
2529         local tmp_dir=$DIR/$tdir/tmp
2530         test_mkdir -p $tmp_dir
2531         test_mkdir $DIR/${tdir}2
2532         ln -s $DIR/${tdir}2 $tmp_dir/symlink12
2533         ln -s $tmp_dir/symlink12 $tmp_dir/../symlink02
2534         $CHECKSTAT -t link $tmp_dir/symlink12 || error "symlink12 not a link"
2535         $CHECKSTAT -t link $DIR/$tdir/symlink02 || error "symlink02 not a link"
2536         $CHECKSTAT -t dir -f $tmp_dir/symlink12 || error "symlink12 not a dir"
2537         $CHECKSTAT -t dir -f $DIR/$tdir/symlink02 || error "symlink12 not a dir"
2538 }
2539 run_test 32g "stat d32g/symlink->tmp/symlink->lustre-subdir/${tdir}2"
2540
2541 test_32h() {
2542         rm -fr $DIR/$tdir $DIR/${tdir}2
2543         tmp_dir=$DIR/$tdir/tmp
2544         test_mkdir -p $tmp_dir
2545         test_mkdir $DIR/${tdir}2
2546         ln -s $DIR/${tdir}2 $tmp_dir/symlink12
2547         ln -s $tmp_dir/symlink12 $tmp_dir/../symlink02
2548         ls $tmp_dir/symlink12 || error "listing symlink12"
2549         ls $DIR/$tdir/symlink02  || error "listing symlink02"
2550 }
2551 run_test 32h "open d32h/symlink->tmp/symlink->lustre-subdir/${tdir}2"
2552
2553 test_32i() {
2554         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2555         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2556         trap cleanup_test32_mount EXIT
2557         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2558         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2559         touch $DIR/$tdir/test_file
2560         $CHECKSTAT -t file $DIR/$tdir/ext2-mountpoint/../test_file || error
2561         cleanup_test32_mount
2562 }
2563 run_test 32i "stat d32i/ext2-mountpoint/../test_file ==========="
2564
2565 test_32j() {
2566         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2567         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2568         trap cleanup_test32_mount EXIT
2569         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2570         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2571         touch $DIR/$tdir/test_file
2572         cat $DIR/$tdir/ext2-mountpoint/../test_file || error
2573         cleanup_test32_mount
2574 }
2575 run_test 32j "open d32j/ext2-mountpoint/../test_file ==========="
2576
2577 test_32k() {
2578         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2579         rm -fr $DIR/$tdir
2580         trap cleanup_test32_mount EXIT
2581         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2582         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint
2583         test_mkdir -p $DIR/$tdir/d2
2584         touch $DIR/$tdir/d2/test_file || error
2585         $CHECKSTAT -t file $DIR/$tdir/ext2-mountpoint/../d2/test_file || error
2586         cleanup_test32_mount
2587 }
2588 run_test 32k "stat d32k/ext2-mountpoint/../d2/test_file ========"
2589
2590 test_32l() {
2591         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2592         rm -fr $DIR/$tdir
2593         trap cleanup_test32_mount EXIT
2594         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2595         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2596         test_mkdir -p $DIR/$tdir/d2
2597         touch $DIR/$tdir/d2/test_file
2598         cat  $DIR/$tdir/ext2-mountpoint/../d2/test_file || error
2599         cleanup_test32_mount
2600 }
2601 run_test 32l "open d32l/ext2-mountpoint/../d2/test_file ========"
2602
2603 test_32m() {
2604         rm -fr $DIR/d32m
2605         test_mkdir -p $DIR/d32m/tmp
2606         TMP_DIR=$DIR/d32m/tmp
2607         ln -s $DIR $TMP_DIR/symlink11
2608         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2609         $CHECKSTAT -t link $DIR/d32m/tmp/symlink11 || error
2610         $CHECKSTAT -t link $DIR/d32m/symlink01 || error
2611 }
2612 run_test 32m "stat d32m/symlink->tmp/symlink->lustre-root ======"
2613
2614 test_32n() {
2615         rm -fr $DIR/d32n
2616         test_mkdir -p $DIR/d32n/tmp
2617         TMP_DIR=$DIR/d32n/tmp
2618         ln -s $DIR $TMP_DIR/symlink11
2619         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2620         ls -l $DIR/d32n/tmp/symlink11  || error
2621         ls -l $DIR/d32n/symlink01 || error
2622 }
2623 run_test 32n "open d32n/symlink->tmp/symlink->lustre-root ======"
2624
2625 test_32o() {
2626         touch $DIR/$tfile
2627         test_mkdir -p $DIR/d32o/tmp
2628         TMP_DIR=$DIR/d32o/tmp
2629         ln -s $DIR/$tfile $TMP_DIR/symlink12
2630         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2631         $CHECKSTAT -t link $DIR/d32o/tmp/symlink12 || error
2632         $CHECKSTAT -t link $DIR/d32o/symlink02 || error
2633         $CHECKSTAT -t file -f $DIR/d32o/tmp/symlink12 || error
2634         $CHECKSTAT -t file -f $DIR/d32o/symlink02 || error
2635 }
2636 run_test 32o "stat d32o/symlink->tmp/symlink->lustre-root/$tfile"
2637
2638 test_32p() {
2639         log 32p_1
2640         rm -fr $DIR/d32p
2641         log 32p_2
2642         rm -f $DIR/$tfile
2643         log 32p_3
2644         touch $DIR/$tfile
2645         log 32p_4
2646         test_mkdir -p $DIR/d32p/tmp
2647         log 32p_5
2648         TMP_DIR=$DIR/d32p/tmp
2649         log 32p_6
2650         ln -s $DIR/$tfile $TMP_DIR/symlink12
2651         log 32p_7
2652         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2653         log 32p_8
2654         cat $DIR/d32p/tmp/symlink12 || error
2655         log 32p_9
2656         cat $DIR/d32p/symlink02 || error
2657         log 32p_10
2658 }
2659 run_test 32p "open d32p/symlink->tmp/symlink->lustre-root/$tfile"
2660
2661 test_32q() {
2662         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2663         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2664         trap cleanup_test32_mount EXIT
2665         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2666         touch $DIR/$tdir/ext2-mountpoint/under_the_mount
2667         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint
2668         ls $DIR/$tdir/ext2-mountpoint | grep "\<under_the_mount\>" && error
2669         cleanup_test32_mount
2670 }
2671 run_test 32q "stat follows mountpoints in Lustre (should return error)"
2672
2673 test_32r() {
2674         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2675         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2676         trap cleanup_test32_mount EXIT
2677         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2678         touch $DIR/$tdir/ext2-mountpoint/under_the_mount
2679         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint
2680         ls $DIR/$tdir/ext2-mountpoint | grep -q under_the_mount && error || true
2681         cleanup_test32_mount
2682 }
2683 run_test 32r "opendir follows mountpoints in Lustre (should return error)"
2684
2685 test_33aa() {
2686         rm -f $DIR/$tfile
2687         touch $DIR/$tfile
2688         chmod 444 $DIR/$tfile
2689         chown $RUNAS_ID $DIR/$tfile
2690         log 33_1
2691         $RUNAS $OPENFILE -f O_RDWR $DIR/$tfile && error || true
2692         log 33_2
2693 }
2694 run_test 33aa "write file with mode 444 (should return error)"
2695
2696 test_33a() {
2697         rm -fr $DIR/$tdir
2698         test_mkdir $DIR/$tdir
2699         chown $RUNAS_ID $DIR/$tdir
2700         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $DIR/$tdir/$tfile ||
2701                 error "$RUNAS create $tdir/$tfile failed"
2702         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $DIR/$tdir/$tfile &&
2703                 error "open RDWR" || true
2704 }
2705 run_test 33a "test open file(mode=0444) with O_RDWR (should return error)"
2706
2707 test_33b() {
2708         rm -fr $DIR/$tdir
2709         test_mkdir $DIR/$tdir
2710         chown $RUNAS_ID $DIR/$tdir
2711         $RUNAS $OPENFILE -f 1286739555 $DIR/$tdir/$tfile || true
2712 }
2713 run_test 33b "test open file with malformed flags (No panic)"
2714
2715 test_33c() {
2716         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2717         local ostnum
2718         local ostname
2719         local write_bytes
2720         local all_zeros
2721
2722         remote_ost_nodsh && skip "remote OST with nodsh" && return
2723         all_zeros=:
2724         rm -fr $DIR/$tdir
2725         test_mkdir $DIR/$tdir
2726         # Read: 0, Write: 4, create/destroy: 2/0, stat: 1, punch: 0
2727
2728         sync
2729         for ostnum in $(seq $OSTCOUNT); do
2730                 # test-framework's OST numbering is one-based, while Lustre's
2731                 # is zero-based
2732                 ostname=$(printf "$FSNAME-OST%.4x" $((ostnum - 1)))
2733                 # Parsing llobdstat's output sucks; we could grep the /proc
2734                 # path, but that's likely to not be as portable as using the
2735                 # llobdstat utility.  So we parse lctl output instead.
2736                 write_bytes=$(do_facet ost$ostnum lctl get_param -n \
2737                         obdfilter/$ostname/stats |
2738                         awk '/^write_bytes/ {print $7}' )
2739                 echo "baseline_write_bytes@$OSTnum/$ostname=$write_bytes"
2740                 if (( ${write_bytes:-0} > 0 ))
2741                 then
2742                         all_zeros=false
2743                         break;
2744                 fi
2745         done
2746
2747         $all_zeros || return 0
2748
2749         # Write four bytes
2750         echo foo > $DIR/$tdir/bar
2751         # Really write them
2752         sync
2753
2754         # Total up write_bytes after writing.  We'd better find non-zeros.
2755         for ostnum in $(seq $OSTCOUNT); do
2756                 ostname=$(printf "$FSNAME-OST%.4x" $((ostnum - 1)))
2757                 write_bytes=$(do_facet ost$ostnum lctl get_param -n \
2758                         obdfilter/$ostname/stats |
2759                         awk '/^write_bytes/ {print $7}' )
2760                 echo "write_bytes@$OSTnum/$ostname=$write_bytes"
2761                 if (( ${write_bytes:-0} > 0 ))
2762                 then
2763                         all_zeros=false
2764                         break;
2765                 fi
2766         done
2767
2768         if $all_zeros
2769         then
2770                 for ostnum in $(seq $OSTCOUNT); do
2771                         ostname=$(printf "$FSNAME-OST%.4x" $((ostnum - 1)))
2772                         echo "Check that write_bytes is present in obdfilter/*/stats:"
2773                         do_facet ost$ostnum lctl get_param -n \
2774                                 obdfilter/$ostname/stats
2775                 done
2776                 error "OST not keeping write_bytes stats (b22312)"
2777         fi
2778 }
2779 run_test 33c "test llobdstat and write_bytes"
2780
2781 test_33d() {
2782         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 2 MDTs" && return
2783         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2784         local MDTIDX=1
2785         local remote_dir=$DIR/$tdir/remote_dir
2786
2787         test_mkdir $DIR/$tdir
2788         $LFS mkdir -i $MDTIDX $remote_dir ||
2789                 error "create remote directory failed"
2790
2791         touch $remote_dir/$tfile
2792         chmod 444 $remote_dir/$tfile
2793         chown $RUNAS_ID $remote_dir/$tfile
2794
2795         $RUNAS $OPENFILE -f O_RDWR $DIR/$tfile && error || true
2796
2797         chown $RUNAS_ID $remote_dir
2798         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $remote_dir/f33 ||
2799                                         error "create" || true
2800         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $remote_dir/f33 &&
2801                                     error "open RDWR" || true
2802         $RUNAS $OPENFILE -f 1286739555 $remote_dir/f33 || true
2803 }
2804 run_test 33d "openfile with 444 modes and malformed flags under remote dir"
2805
2806 test_33e() {
2807         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
2808
2809         mkdir $DIR/$tdir
2810
2811         $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
2812         $LFS setdirstripe -i1 -c2 $DIR/$tdir/striped_dir1
2813         mkdir $DIR/$tdir/local_dir
2814
2815         local s0_mode=$(stat -c%f $DIR/$tdir/striped_dir)
2816         local s1_mode=$(stat -c%f $DIR/$tdir/striped_dir1)
2817         local l_mode=$(stat -c%f $DIR/$tdir/local_dir)
2818
2819         [ "$l_mode" = "$s0_mode" -a "$l_mode" = "$s1_mode" ] ||
2820                 error "mkdir $l_mode striped0 $s0_mode striped1 $s1_mode"
2821
2822         rmdir $DIR/$tdir/* || error "rmdir failed"
2823
2824         umask 777
2825         $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
2826         $LFS setdirstripe -i1 -c2 $DIR/$tdir/striped_dir1
2827         mkdir $DIR/$tdir/local_dir
2828
2829         s0_mode=$(stat -c%f $DIR/$tdir/striped_dir)
2830         s1_mode=$(stat -c%f $DIR/$tdir/striped_dir1)
2831         l_mode=$(stat -c%f $DIR/$tdir/local_dir)
2832
2833         [ "$l_mode" = "$s0_mode" -a "$l_mode" = "$s1_mode" ] ||
2834                 error "mkdir $l_mode striped0 $s0_mode striped1 $s1_mode 777"
2835
2836         rmdir $DIR/$tdir/* || error "rmdir(umask 777) failed"
2837
2838         umask 000
2839         $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
2840         $LFS setdirstripe -i1 -c2 $DIR/$tdir/striped_dir1
2841         mkdir $DIR/$tdir/local_dir
2842
2843         s0_mode=$(stat -c%f $DIR/$tdir/striped_dir)
2844         s1_mode=$(stat -c%f $DIR/$tdir/striped_dir1)
2845         l_mode=$(stat -c%f $DIR/$tdir/local_dir)
2846
2847         [ "$l_mode" = "$s0_mode" -a "$l_mode" = "$s1_mode" ] ||
2848                 error "mkdir $l_mode striped0 $s0_mode striped1 $s1_mode 0"
2849 }
2850 run_test 33e "mkdir and striped directory should have same mode"
2851
2852 cleanup_33f() {
2853         trap 0
2854         do_facet $SINGLEMDS $LCTL set_param mdt.*.enable_remote_dir_gid=0
2855 }
2856
2857 test_33f() {
2858         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
2859         remote_mds_nodsh && skip "remote MDS with nodsh" && return
2860
2861         mkdir $DIR/$tdir
2862         chmod go+rwx $DIR/$tdir
2863         do_facet $SINGLEMDS $LCTL set_param mdt.*.enable_remote_dir_gid=-1
2864         trap cleanup_33f EXIT
2865
2866         $RUNAS lfs mkdir -c$MDSCOUNT $DIR/$tdir/striped_dir ||
2867                 error "cannot create striped directory"
2868
2869         $RUNAS touch $DIR/$tdir/striped_dir/{0..16} ||
2870                 error "cannot create files in striped directory"
2871
2872         $RUNAS rm $DIR/$tdir/striped_dir/{0..16} ||
2873                 error "cannot remove files in striped directory"
2874
2875         $RUNAS rmdir $DIR/$tdir/striped_dir ||
2876                 error "cannot remove striped directory"
2877
2878         cleanup_33f
2879 }
2880 run_test 33f "nonroot user can create, access, and remove a striped directory"
2881
2882 test_33g() {
2883         mkdir -p $DIR/$tdir/dir2
2884
2885         local err=$($RUNAS mkdir $DIR/$tdir/dir2 2>&1)
2886         echo $err
2887         [[ $err =~ "exists" ]] || error "Not exists error"
2888 }
2889 run_test 33g "nonroot user create already existing root created file"
2890
2891 TEST_34_SIZE=${TEST_34_SIZE:-2000000000000}
2892 test_34a() {
2893         rm -f $DIR/f34
2894         $MCREATE $DIR/f34 || error
2895         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" || error
2896         $TRUNCATE $DIR/f34 $TEST_34_SIZE || error
2897         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" || error
2898         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2899 }
2900 run_test 34a "truncate file that has not been opened ==========="
2901
2902 test_34b() {
2903         [ ! -f $DIR/f34 ] && test_34a
2904         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2905         $OPENFILE -f O_RDONLY $DIR/f34
2906         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" || error
2907         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2908 }
2909 run_test 34b "O_RDONLY opening file doesn't create objects ====="
2910
2911 test_34c() {
2912         [ ! -f $DIR/f34 ] && test_34a
2913         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2914         $OPENFILE -f O_RDWR $DIR/f34
2915         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" && error
2916         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2917 }
2918 run_test 34c "O_RDWR opening file-with-size works =============="
2919
2920 test_34d() {
2921         [ ! -f $DIR/f34 ] && test_34a
2922         dd if=/dev/zero of=$DIR/f34 conv=notrunc bs=4k count=1 || error
2923         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2924         rm $DIR/f34
2925 }
2926 run_test 34d "write to sparse file ============================="
2927
2928 test_34e() {
2929         rm -f $DIR/f34e
2930         $MCREATE $DIR/f34e || error
2931         $TRUNCATE $DIR/f34e 1000 || error
2932         $CHECKSTAT -s 1000 $DIR/f34e || error
2933         $OPENFILE -f O_RDWR $DIR/f34e
2934         $CHECKSTAT -s 1000 $DIR/f34e || error
2935 }
2936 run_test 34e "create objects, some with size and some without =="
2937
2938 test_34f() { # bug 6242, 6243
2939         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2940         SIZE34F=48000
2941         rm -f $DIR/f34f
2942         $MCREATE $DIR/f34f || error
2943         $TRUNCATE $DIR/f34f $SIZE34F || error "truncating $DIR/f3f to $SIZE34F"
2944         dd if=$DIR/f34f of=$TMP/f34f
2945         $CHECKSTAT -s $SIZE34F $TMP/f34f || error "$TMP/f34f not $SIZE34F bytes"
2946         dd if=/dev/zero of=$TMP/f34fzero bs=$SIZE34F count=1
2947         cmp $DIR/f34f $TMP/f34fzero || error "$DIR/f34f not all zero"
2948         cmp $TMP/f34f $TMP/f34fzero || error "$TMP/f34f not all zero"
2949         rm $TMP/f34f $TMP/f34fzero $DIR/f34f
2950 }
2951 run_test 34f "read from a file with no objects until EOF ======="
2952
2953 test_34g() {
2954         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2955         dd if=/dev/zero of=$DIR/$tfile bs=1 count=100 seek=$TEST_34_SIZE || error
2956         $TRUNCATE $DIR/$tfile $((TEST_34_SIZE / 2))|| error
2957         $CHECKSTAT -s $((TEST_34_SIZE / 2)) $DIR/$tfile || error "truncate failed"
2958         cancel_lru_locks osc
2959         $CHECKSTAT -s $((TEST_34_SIZE / 2)) $DIR/$tfile || \
2960                 error "wrong size after lock cancel"
2961
2962         $TRUNCATE $DIR/$tfile $TEST_34_SIZE || error
2963         $CHECKSTAT -s $TEST_34_SIZE $DIR/$tfile || \
2964                 error "expanding truncate failed"
2965         cancel_lru_locks osc
2966         $CHECKSTAT -s $TEST_34_SIZE $DIR/$tfile || \
2967                 error "wrong expanded size after lock cancel"
2968 }
2969 run_test 34g "truncate long file ==============================="
2970
2971 test_34h() {
2972         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2973         local gid=10
2974         local sz=1000
2975
2976         dd if=/dev/zero of=$DIR/$tfile bs=1M count=10 || error
2977         sync # Flush the cache so that multiop below does not block on cache
2978              # flush when getting the group lock
2979         $MULTIOP $DIR/$tfile OG${gid}T${sz}g${gid}c &
2980         MULTIPID=$!
2981
2982         # Since just timed wait is not good enough, let's do a sync write
2983         # that way we are sure enough time for a roundtrip + processing
2984         # passed + 2 seconds of extra margin.
2985         dd if=/dev/zero of=$DIR/${tfile}-1 bs=4096 oflag=direct count=1
2986         rm $DIR/${tfile}-1
2987         sleep 2
2988
2989         if [[ `ps h -o comm -p $MULTIPID` == "multiop" ]]; then
2990                 error "Multiop blocked on ftruncate, pid=$MULTIPID"
2991                 kill -9 $MULTIPID
2992         fi
2993         wait $MULTIPID
2994         local nsz=`stat -c %s $DIR/$tfile`
2995         [[ $nsz == $sz ]] || error "New size wrong $nsz != $sz"
2996 }
2997 run_test 34h "ftruncate file under grouplock should not block"
2998
2999 test_35a() {
3000         cp /bin/sh $DIR/f35a
3001         chmod 444 $DIR/f35a
3002         chown $RUNAS_ID $DIR/f35a
3003         $RUNAS $DIR/f35a && error || true
3004         rm $DIR/f35a
3005 }
3006 run_test 35a "exec file with mode 444 (should return and not leak)"
3007
3008 test_36a() {
3009         rm -f $DIR/f36
3010         utime $DIR/f36 || error
3011 }
3012 run_test 36a "MDS utime check (mknod, utime)"
3013
3014 test_36b() {
3015         echo "" > $DIR/f36
3016         utime $DIR/f36 || error
3017 }
3018 run_test 36b "OST utime check (open, utime)"
3019
3020 test_36c() {
3021         rm -f $DIR/d36/f36
3022         test_mkdir $DIR/d36
3023         chown $RUNAS_ID $DIR/d36
3024         $RUNAS utime $DIR/d36/f36 || error
3025 }
3026 run_test 36c "non-root MDS utime check (mknod, utime)"
3027
3028 test_36d() {
3029         [ ! -d $DIR/d36 ] && test_36c
3030         echo "" > $DIR/d36/f36
3031         $RUNAS utime $DIR/d36/f36 || error
3032 }
3033 run_test 36d "non-root OST utime check (open, utime)"
3034
3035 test_36e() {
3036         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID -- skipping" && return
3037         test_mkdir $DIR/$tdir
3038         touch $DIR/$tdir/$tfile
3039         $RUNAS utime $DIR/$tdir/$tfile &&
3040                 error "utime worked, expected failure" || true
3041 }
3042 run_test 36e "utime on non-owned file (should return error)"
3043
3044 subr_36fh() {
3045         local fl="$1"
3046         local LANG_SAVE=$LANG
3047         local LC_LANG_SAVE=$LC_LANG
3048         export LANG=C LC_LANG=C # for date language
3049
3050         DATESTR="Dec 20  2000"
3051         test_mkdir $DIR/$tdir
3052         lctl set_param fail_loc=$fl
3053         date; date +%s
3054         cp /etc/hosts $DIR/$tdir/$tfile
3055         sync & # write RPC generated with "current" inode timestamp, but delayed
3056         sleep 1
3057         touch --date="$DATESTR" $DIR/$tdir/$tfile # setattr timestamp in past
3058         LS_BEFORE="`ls -l $DIR/$tdir/$tfile`" # old timestamp from client cache
3059         cancel_lru_locks osc
3060         LS_AFTER="`ls -l $DIR/$tdir/$tfile`"  # timestamp from OST object
3061         date; date +%s
3062         [ "$LS_BEFORE" != "$LS_AFTER" ] && \
3063                 echo "BEFORE: $LS_BEFORE" && \
3064                 echo "AFTER : $LS_AFTER" && \
3065                 echo "WANT  : $DATESTR" && \
3066                 error "$DIR/$tdir/$tfile timestamps changed" || true
3067
3068         export LANG=$LANG_SAVE LC_LANG=$LC_LANG_SAVE
3069 }
3070
3071 test_36f() {
3072         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3073         #define OBD_FAIL_OST_BRW_PAUSE_BULK 0x214
3074         subr_36fh "0x80000214"
3075 }
3076 run_test 36f "utime on file racing with OST BRW write =========="
3077
3078 test_36g() {
3079         remote_ost_nodsh && skip "remote OST with nodsh" && return
3080         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3081         local fmd_max_age
3082         local fmd_before
3083         local fmd_after
3084
3085         test_mkdir $DIR/$tdir
3086         fmd_max_age=$(do_facet ost1 \
3087                 "lctl get_param -n obdfilter.*.client_cache_seconds 2> /dev/null | \
3088                 head -n 1")
3089
3090         fmd_before=$(do_facet ost1 \
3091                 "awk '/ll_fmd_cache/ {print \\\$2}' /proc/slabinfo")
3092         touch $DIR/$tdir/$tfile
3093         sleep $((fmd_max_age + 12))
3094         fmd_after=$(do_facet ost1 \
3095                 "awk '/ll_fmd_cache/ {print \\\$2}' /proc/slabinfo")
3096
3097         echo "fmd_before: $fmd_before"
3098         echo "fmd_after: $fmd_after"
3099         [[ $fmd_after -gt $fmd_before ]] &&
3100                 echo "AFTER: $fmd_after > BEFORE: $fmd_before" &&
3101                 error "fmd didn't expire after ping" || true
3102 }
3103 run_test 36g "filter mod data cache expiry ====================="
3104
3105 test_36h() {
3106         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3107         #define OBD_FAIL_OST_BRW_PAUSE_BULK2 0x227
3108         subr_36fh "0x80000227"
3109 }
3110 run_test 36h "utime on file racing with OST BRW write =========="
3111
3112 test_36i() {
3113         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
3114
3115         test_mkdir $DIR/$tdir
3116         $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/striped_dir
3117
3118         local mtime=$(stat -c%Y $DIR/$tdir/striped_dir)
3119         local new_mtime=$((mtime + 200))
3120
3121         #change Modify time of striped dir
3122         touch -m -d @$new_mtime $DIR/$tdir/striped_dir ||
3123                         error "change mtime failed"
3124
3125         local got=$(stat -c%Y $DIR/$tdir/striped_dir)
3126
3127         [ "$new_mtime" = "$got" ] || error "expect $new_mtime got $got"
3128 }
3129 run_test 36i "change mtime on striped directory"
3130
3131 # test_37 - duplicate with tests 32q 32r
3132
3133 test_38() {
3134         local file=$DIR/$tfile
3135         touch $file
3136         openfile -f O_DIRECTORY $file
3137         local RC=$?
3138         local ENOTDIR=20
3139         [ $RC -eq 0 ] && error "opened file $file with O_DIRECTORY" || true
3140         [ $RC -eq $ENOTDIR ] || error "error $RC should be ENOTDIR ($ENOTDIR)"
3141 }
3142 run_test 38 "open a regular file with O_DIRECTORY should return -ENOTDIR ==="
3143
3144 test_39a() { # was test_39
3145         touch $DIR/$tfile
3146         touch $DIR/${tfile}2
3147 #       ls -l  $DIR/$tfile $DIR/${tfile}2
3148 #       ls -lu  $DIR/$tfile $DIR/${tfile}2
3149 #       ls -lc  $DIR/$tfile $DIR/${tfile}2
3150         sleep 2
3151         $OPENFILE -f O_CREAT:O_TRUNC:O_WRONLY $DIR/${tfile}2
3152         if [ ! $DIR/${tfile}2 -nt $DIR/$tfile ]; then
3153                 echo "mtime"
3154                 ls -l --full-time $DIR/$tfile $DIR/${tfile}2
3155                 echo "atime"
3156                 ls -lu --full-time $DIR/$tfile $DIR/${tfile}2
3157                 echo "ctime"
3158                 ls -lc --full-time $DIR/$tfile $DIR/${tfile}2
3159                 error "O_TRUNC didn't change timestamps"
3160         fi
3161 }
3162 run_test 39a "mtime changed on create"
3163
3164 test_39b() {
3165         test_mkdir -c1 $DIR/$tdir
3166         cp -p /etc/passwd $DIR/$tdir/fopen
3167         cp -p /etc/passwd $DIR/$tdir/flink
3168         cp -p /etc/passwd $DIR/$tdir/funlink
3169         cp -p /etc/passwd $DIR/$tdir/frename
3170         ln $DIR/$tdir/funlink $DIR/$tdir/funlink2
3171
3172         sleep 1
3173         echo "aaaaaa" >> $DIR/$tdir/fopen
3174         echo "aaaaaa" >> $DIR/$tdir/flink
3175         echo "aaaaaa" >> $DIR/$tdir/funlink
3176         echo "aaaaaa" >> $DIR/$tdir/frename
3177
3178         local open_new=`stat -c %Y $DIR/$tdir/fopen`
3179         local link_new=`stat -c %Y $DIR/$tdir/flink`
3180         local unlink_new=`stat -c %Y $DIR/$tdir/funlink`
3181         local rename_new=`stat -c %Y $DIR/$tdir/frename`
3182
3183         cat $DIR/$tdir/fopen > /dev/null
3184         ln $DIR/$tdir/flink $DIR/$tdir/flink2
3185         rm -f $DIR/$tdir/funlink2
3186         mv -f $DIR/$tdir/frename $DIR/$tdir/frename2
3187
3188         for (( i=0; i < 2; i++ )) ; do
3189                 local open_new2=`stat -c %Y $DIR/$tdir/fopen`
3190                 local link_new2=`stat -c %Y $DIR/$tdir/flink`
3191                 local unlink_new2=`stat -c %Y $DIR/$tdir/funlink`
3192                 local rename_new2=`stat -c %Y $DIR/$tdir/frename2`
3193
3194                 [ $open_new2 -eq $open_new ] || error "open file reverses mtime"
3195                 [ $link_new2 -eq $link_new ] || error "link file reverses mtime"
3196                 [ $unlink_new2 -eq $unlink_new ] || error "unlink file reverses mtime"
3197                 [ $rename_new2 -eq $rename_new ] || error "rename file reverses mtime"
3198
3199                 cancel_lru_locks osc
3200                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3201         done
3202 }
3203 run_test 39b "mtime change on open, link, unlink, rename  ======"
3204
3205 # this should be set to past
3206 TEST_39_MTIME=`date -d "1 year ago" +%s`
3207
3208 # bug 11063
3209 test_39c() {
3210         touch $DIR1/$tfile
3211         sleep 2
3212         local mtime0=`stat -c %Y $DIR1/$tfile`
3213
3214         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3215         local mtime1=`stat -c %Y $DIR1/$tfile`
3216         [ "$mtime1" = $TEST_39_MTIME ] || \
3217                 error "mtime is not set to past: $mtime1, should be $TEST_39_MTIME"
3218
3219         local d1=`date +%s`
3220         echo hello >> $DIR1/$tfile
3221         local d2=`date +%s`
3222         local mtime2=`stat -c %Y $DIR1/$tfile`
3223         [ "$mtime2" -ge "$d1" ] && [ "$mtime2" -le "$d2" ] || \
3224                 error "mtime is not updated on write: $d1 <= $mtime2 <= $d2"
3225
3226         mv $DIR1/$tfile $DIR1/$tfile-1
3227
3228         for (( i=0; i < 2; i++ )) ; do
3229                 local mtime3=`stat -c %Y $DIR1/$tfile-1`
3230                 [ "$mtime2" = "$mtime3" ] || \
3231                         error "mtime ($mtime2) changed (to $mtime3) on rename"
3232
3233                 cancel_lru_locks osc
3234                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3235         done
3236 }
3237 run_test 39c "mtime change on rename ==========================="
3238
3239 # bug 21114
3240 test_39d() {
3241         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3242         touch $DIR1/$tfile
3243
3244         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3245
3246         for (( i=0; i < 2; i++ )) ; do
3247                 local mtime=`stat -c %Y $DIR1/$tfile`
3248                 [ $mtime = $TEST_39_MTIME ] || \
3249                         error "mtime($mtime) is not set to $TEST_39_MTIME"
3250
3251                 cancel_lru_locks osc
3252                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3253         done
3254 }
3255 run_test 39d "create, utime, stat =============================="
3256
3257 # bug 21114
3258 test_39e() {
3259         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3260         touch $DIR1/$tfile
3261         local mtime1=`stat -c %Y $DIR1/$tfile`
3262
3263         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3264
3265         for (( i=0; i < 2; i++ )) ; do
3266                 local mtime2=`stat -c %Y $DIR1/$tfile`
3267                 [ $mtime2 = $TEST_39_MTIME ] || \
3268                         error "mtime($mtime2) is not set to $TEST_39_MTIME"
3269
3270                 cancel_lru_locks osc
3271                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3272         done
3273 }
3274 run_test 39e "create, stat, utime, stat ========================"
3275
3276 # bug 21114
3277 test_39f() {
3278         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3279         touch $DIR1/$tfile
3280         mtime1=`stat -c %Y $DIR1/$tfile`
3281
3282         sleep 2
3283         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3284
3285         for (( i=0; i < 2; i++ )) ; do
3286                 local mtime2=`stat -c %Y $DIR1/$tfile`
3287                 [ $mtime2 = $TEST_39_MTIME ] || \
3288                         error "mtime($mtime2) is not set to $TEST_39_MTIME"
3289
3290                 cancel_lru_locks osc
3291                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3292         done
3293 }
3294 run_test 39f "create, stat, sleep, utime, stat ================="
3295
3296 # bug 11063
3297 test_39g() {
3298         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3299         echo hello >> $DIR1/$tfile
3300         local mtime1=`stat -c %Y $DIR1/$tfile`
3301
3302         sleep 2
3303         chmod o+r $DIR1/$tfile
3304
3305         for (( i=0; i < 2; i++ )) ; do
3306                 local mtime2=`stat -c %Y $DIR1/$tfile`
3307                 [ "$mtime1" = "$mtime2" ] || \
3308                         error "lost mtime: $mtime2, should be $mtime1"
3309
3310                 cancel_lru_locks osc
3311                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3312         done
3313 }
3314 run_test 39g "write, chmod, stat ==============================="
3315
3316 # bug 11063
3317 test_39h() {
3318         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3319         touch $DIR1/$tfile
3320         sleep 1
3321
3322         local d1=`date`
3323         echo hello >> $DIR1/$tfile
3324         local mtime1=`stat -c %Y $DIR1/$tfile`
3325
3326         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3327         local d2=`date`
3328         if [ "$d1" != "$d2" ]; then
3329                 echo "write and touch not within one second"
3330         else
3331                 for (( i=0; i < 2; i++ )) ; do
3332                         local mtime2=`stat -c %Y $DIR1/$tfile`
3333                         [ "$mtime2" = $TEST_39_MTIME ] || \
3334                                 error "lost mtime: $mtime2, should be $TEST_39_MTIME"
3335
3336                         cancel_lru_locks osc
3337                         if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3338                 done
3339         fi
3340 }
3341 run_test 39h "write, utime within one second, stat ============="
3342
3343 test_39i() {
3344         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3345         touch $DIR1/$tfile
3346         sleep 1
3347
3348         echo hello >> $DIR1/$tfile
3349         local mtime1=`stat -c %Y $DIR1/$tfile`
3350
3351         mv $DIR1/$tfile $DIR1/$tfile-1
3352
3353         for (( i=0; i < 2; i++ )) ; do
3354                 local mtime2=`stat -c %Y $DIR1/$tfile-1`
3355
3356                 [ "$mtime1" = "$mtime2" ] || \
3357                         error "lost mtime: $mtime2, should be $mtime1"
3358
3359                 cancel_lru_locks osc
3360                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3361         done
3362 }
3363 run_test 39i "write, rename, stat =============================="
3364
3365 test_39j() {
3366         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3367         start_full_debug_logging
3368         touch $DIR1/$tfile
3369         sleep 1
3370
3371         #define OBD_FAIL_OSC_DELAY_SETTIME       0x412
3372         lctl set_param fail_loc=0x80000412
3373         multiop_bg_pause $DIR1/$tfile oO_RDWR:w2097152_c ||
3374                 error "multiop failed"
3375         local multipid=$!
3376         local mtime1=`stat -c %Y $DIR1/$tfile`
3377
3378         mv $DIR1/$tfile $DIR1/$tfile-1
3379
3380         kill -USR1 $multipid
3381         wait $multipid || error "multiop close failed"
3382
3383         for (( i=0; i < 2; i++ )) ; do
3384                 local mtime2=`stat -c %Y $DIR1/$tfile-1`
3385                 [ "$mtime1" = "$mtime2" ] ||
3386                         error "mtime is lost on close: $mtime2, " \
3387                               "should be $mtime1"
3388
3389                 cancel_lru_locks osc
3390                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3391         done
3392         lctl set_param fail_loc=0
3393         stop_full_debug_logging
3394 }
3395 run_test 39j "write, rename, close, stat ======================="
3396
3397 test_39k() {
3398         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3399         touch $DIR1/$tfile
3400         sleep 1
3401
3402         multiop_bg_pause $DIR1/$tfile oO_RDWR:w2097152_c || error "multiop failed"
3403         local multipid=$!
3404         local mtime1=`stat -c %Y $DIR1/$tfile`
3405
3406         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3407
3408         kill -USR1 $multipid
3409         wait $multipid || error "multiop close failed"
3410
3411         for (( i=0; i < 2; i++ )) ; do
3412                 local mtime2=`stat -c %Y $DIR1/$tfile`
3413
3414                 [ "$mtime2" = $TEST_39_MTIME ] || \
3415                         error "mtime is lost on close: $mtime2, should be $TEST_39_MTIME"
3416
3417                 cancel_lru_locks osc
3418                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3419         done
3420 }
3421 run_test 39k "write, utime, close, stat ========================"
3422
3423 # this should be set to future
3424 TEST_39_ATIME=`date -d "1 year" +%s`
3425
3426 test_39l() {
3427         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3428         remote_mds_nodsh && skip "remote MDS with nodsh" && return
3429         local atime_diff=$(do_facet $SINGLEMDS \
3430                                 lctl get_param -n mdd.*MDT0000*.atime_diff)
3431         rm -rf $DIR/$tdir
3432         mkdir -p $DIR/$tdir
3433
3434         # test setting directory atime to future
3435         touch -a -d @$TEST_39_ATIME $DIR/$tdir
3436         local atime=$(stat -c %X $DIR/$tdir)
3437         [ "$atime" = $TEST_39_ATIME ] ||
3438                 error "atime is not set to future: $atime, $TEST_39_ATIME"
3439
3440         # test setting directory atime from future to now
3441         local now=$(date +%s)
3442         touch -a -d @$now $DIR/$tdir
3443
3444         atime=$(stat -c %X $DIR/$tdir)
3445         [ "$atime" -eq "$now"  ] ||
3446                 error "atime is not updated from future: $atime, $now"
3447
3448         do_facet $SINGLEMDS lctl set_param -n mdd.*MDT0000*.atime_diff=2
3449         sleep 3
3450
3451         # test setting directory atime when now > dir atime + atime_diff
3452         local d1=$(date +%s)
3453         ls $DIR/$tdir
3454         local d2=$(date +%s)
3455         cancel_lru_locks mdc
3456         atime=$(stat -c %X $DIR/$tdir)
3457         [ "$atime" -ge "$d1" -a "$atime" -le "$d2" ] ||
3458                 error "atime is not updated  : $atime, should be $d2"
3459
3460         do_facet $SINGLEMDS lctl set_param -n mdd.*MDT0000*.atime_diff=60
3461         sleep 3
3462
3463         # test not setting directory atime when now < dir atime + atime_diff
3464         ls $DIR/$tdir
3465         cancel_lru_locks mdc
3466         atime=$(stat -c %X $DIR/$tdir)
3467         [ "$atime" -ge "$d1" -a "$atime" -le "$d2" ] ||
3468                 error "atime is updated to $atime, should remain $d1<atime<$d2"
3469
3470         do_facet $SINGLEMDS \
3471                 lctl set_param -n mdd.*MDT0000*.atime_diff=$atime_diff
3472 }
3473 run_test 39l "directory atime update ==========================="
3474
3475 test_39m() {
3476         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3477         touch $DIR1/$tfile
3478         sleep 2
3479         local far_past_mtime=$(date -d "May 29 1953" +%s)
3480         local far_past_atime=$(date -d "Dec 17 1903" +%s)
3481
3482         touch -m -d @$far_past_mtime $DIR1/$tfile
3483         touch -a -d @$far_past_atime $DIR1/$tfile
3484
3485         for (( i=0; i < 2; i++ )) ; do
3486                 local timestamps=$(stat -c "%X %Y" $DIR1/$tfile)
3487                 [ "$timestamps" = "$far_past_atime $far_past_mtime" ] || \
3488                         error "atime or mtime set incorrectly"
3489
3490                 cancel_lru_locks osc
3491                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3492         done
3493 }
3494 run_test 39m "test atime and mtime before 1970"
3495
3496 test_39n() { # LU-3832
3497         remote_mds_nodsh && skip "remote MDS with nodsh" && return
3498         local atime_diff=$(do_facet $SINGLEMDS \
3499                 lctl get_param -n mdd.*MDT0000*.atime_diff)
3500         local atime0
3501         local atime1
3502         local atime2
3503
3504         do_facet $SINGLEMDS lctl set_param -n mdd.*MDT0000*.atime_diff=1
3505
3506         rm -rf $DIR/$tfile
3507         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 status=noxfer
3508         atime0=$(stat -c %X $DIR/$tfile)
3509
3510         sleep 5
3511         $MULTIOP $DIR/$tfile oO_RDONLY:O_NOATIME:r4096c
3512         atime1=$(stat -c %X $DIR/$tfile)
3513
3514         sleep 5
3515         cancel_lru_locks mdc
3516         cancel_lru_locks osc
3517         $MULTIOP $DIR/$tfile oO_RDONLY:O_NOATIME:r4096c
3518         atime2=$(stat -c %X $DIR/$tfile)
3519
3520         do_facet $SINGLEMDS \
3521                 lctl set_param -n mdd.*MDT0000*.atime_diff=$atime_diff
3522
3523         [ "$atime0" -eq "$atime1" ] || error "atime0 $atime0 != atime1 $atime1"
3524         [ "$atime1" -eq "$atime2" ] || error "atime0 $atime0 != atime1 $atime1"
3525 }
3526 run_test 39n "check that O_NOATIME is honored"
3527
3528 test_39o() {
3529         TESTDIR=$DIR/$tdir/$tfile
3530         [ -e $TESTDIR ] && rm -rf $TESTDIR
3531         mkdir -p $TESTDIR
3532         cd $TESTDIR
3533         links1=2
3534         ls
3535         mkdir a b
3536         ls
3537         links2=$(stat -c %h .)
3538         [ $(($links1 + 2)) != $links2 ] &&
3539                 error "wrong links count $(($links1 + 2)) != $links2"
3540         rmdir b
3541         links3=$(stat -c %h .)
3542         [ $(($links1 + 1)) != $links3 ] &&
3543                 error "wrong links count $links1 != $links3"
3544         return 0
3545 }
3546 run_test 39o "directory cached attributes updated after create"
3547
3548 test_39p() {
3549         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 2 MDTs" && return
3550         local MDTIDX=1
3551         TESTDIR=$DIR/$tdir/$tdir
3552         [ -e $TESTDIR ] && rm -rf $TESTDIR
3553         test_mkdir -p $TESTDIR
3554         cd $TESTDIR
3555         links1=2
3556         ls
3557         test_mkdir -i $MDTIDX $TESTDIR/remote_dir1
3558         test_mkdir -i $MDTIDX $TESTDIR/remote_dir2
3559         ls
3560         links2=$(stat -c %h .)
3561         [ $(($links1 + 2)) != $links2 ] &&
3562                 error "wrong links count $(($links1 + 2)) != $links2"
3563         rmdir remote_dir2
3564         links3=$(stat -c %h .)
3565         [ $(($links1 + 1)) != $links3 ] &&
3566                 error "wrong links count $links1 != $links3"
3567         return 0
3568 }
3569 run_test 39p "remote directory cached attributes updated after create ========"
3570
3571
3572 test_39q() { # LU-8041
3573         local testdir=$DIR/$tdir
3574         mkdir -p $testdir
3575         multiop_bg_pause $testdir D_c || error "multiop failed"
3576         local multipid=$!
3577         cancel_lru_locks mdc
3578         kill -USR1 $multipid
3579         local atime=$(stat -c %X $testdir)
3580         [ "$atime" -ne 0 ] || error "atime is zero"
3581 }
3582 run_test 39q "close won't zero out atime"
3583
3584 test_40() {
3585         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1
3586         $RUNAS $OPENFILE -f O_WRONLY:O_TRUNC $DIR/$tfile &&
3587                 error "openfile O_WRONLY:O_TRUNC $tfile failed"
3588         $CHECKSTAT -t file -s 4096 $DIR/$tfile ||
3589                 error "$tfile is not 4096 bytes in size"
3590 }
3591 run_test 40 "failed open(O_TRUNC) doesn't truncate ============="
3592
3593 test_41() {
3594         # bug 1553
3595         small_write $DIR/f41 18
3596 }
3597 run_test 41 "test small file write + fstat ====================="
3598
3599 count_ost_writes() {
3600         lctl get_param -n ${OSC}.*.stats |
3601                 awk -vwrites=0 '/ost_write/ { writes += $2 } \
3602                         END { printf("%0.0f", writes) }'
3603 }
3604
3605 # decent default
3606 WRITEBACK_SAVE=500
3607 DIRTY_RATIO_SAVE=40
3608 MAX_DIRTY_RATIO=50
3609 BG_DIRTY_RATIO_SAVE=10
3610 MAX_BG_DIRTY_RATIO=25
3611
3612 start_writeback() {
3613         trap 0
3614         # in 2.6, restore /proc/sys/vm/dirty_writeback_centisecs,
3615         # dirty_ratio, dirty_background_ratio
3616         if [ -f /proc/sys/vm/dirty_writeback_centisecs ]; then
3617                 sysctl -w vm.dirty_writeback_centisecs=$WRITEBACK_SAVE
3618                 sysctl -w vm.dirty_background_ratio=$BG_DIRTY_RATIO_SAVE
3619                 sysctl -w vm.dirty_ratio=$DIRTY_RATIO_SAVE
3620         else
3621                 # if file not here, we are a 2.4 kernel
3622                 kill -CONT `pidof kupdated`
3623         fi
3624 }
3625
3626 stop_writeback() {
3627         # setup the trap first, so someone cannot exit the test at the
3628         # exact wrong time and mess up a machine
3629         trap start_writeback EXIT
3630         # in 2.6, save and 0 /proc/sys/vm/dirty_writeback_centisecs
3631         if [ -f /proc/sys/vm/dirty_writeback_centisecs ]; then
3632                 WRITEBACK_SAVE=`sysctl -n vm.dirty_writeback_centisecs`
3633                 sysctl -w vm.dirty_writeback_centisecs=0
3634                 sysctl -w vm.dirty_writeback_centisecs=0
3635                 # save and increase /proc/sys/vm/dirty_ratio
3636                 DIRTY_RATIO_SAVE=`sysctl -n vm.dirty_ratio`
3637                 sysctl -w vm.dirty_ratio=$MAX_DIRTY_RATIO
3638                 # save and increase /proc/sys/vm/dirty_background_ratio
3639                 BG_DIRTY_RATIO_SAVE=`sysctl -n vm.dirty_background_ratio`
3640                 sysctl -w vm.dirty_background_ratio=$MAX_BG_DIRTY_RATIO
3641         else
3642                 # if file not here, we are a 2.4 kernel
3643                 kill -STOP `pidof kupdated`
3644         fi
3645 }
3646
3647 # ensure that all stripes have some grant before we test client-side cache
3648 setup_test42() {
3649         for i in `seq -f $DIR/f42-%g 1 $OSTCOUNT`; do
3650                 dd if=/dev/zero of=$i bs=4k count=1
3651                 rm $i
3652         done
3653 }
3654
3655 # Tests 42* verify that our behaviour is correct WRT caching, file closure,
3656 # file truncation, and file removal.
3657 test_42a() {
3658         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3659         setup_test42
3660         cancel_lru_locks $OSC
3661         stop_writeback
3662         sync; sleep 1; sync # just to be safe
3663         BEFOREWRITES=`count_ost_writes`
3664         lctl get_param -n osc.*[oO][sS][cC][_-]*.cur_grant_bytes | grep "[0-9]"
3665         dd if=/dev/zero of=$DIR/f42a bs=1024 count=100
3666         AFTERWRITES=`count_ost_writes`
3667         [ $BEFOREWRITES -eq $AFTERWRITES ] || \
3668                 error "$BEFOREWRITES < $AFTERWRITES"
3669         start_writeback
3670 }
3671 run_test 42a "ensure that we don't flush on close"
3672
3673 test_42b() {
3674         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3675         setup_test42
3676         cancel_lru_locks $OSC
3677         stop_writeback
3678         sync
3679         dd if=/dev/zero of=$DIR/f42b bs=1024 count=100
3680         BEFOREWRITES=$(count_ost_writes)
3681         $MUNLINK $DIR/f42b || error "$MUNLINK $DIR/f42b: $?"
3682         AFTERWRITES=$(count_ost_writes)
3683         if [[ $BEFOREWRITES -lt $AFTERWRITES ]]; then
3684                 error "$BEFOREWRITES < $AFTERWRITES on unlink"
3685         fi
3686         BEFOREWRITES=$(count_ost_writes)
3687         sync || error "sync: $?"
3688         AFTERWRITES=$(count_ost_writes)
3689         if [[ $BEFOREWRITES -lt $AFTERWRITES ]]; then
3690                 error "$BEFOREWRITES < $AFTERWRITES on sync"
3691         fi
3692         dmesg | grep 'error from obd_brw_async' && error 'error writing back'
3693         start_writeback
3694         return 0
3695 }
3696 run_test 42b "test destroy of file with cached dirty data ======"
3697
3698 # if these tests just want to test the effect of truncation,
3699 # they have to be very careful.  consider:
3700 # - the first open gets a {0,EOF}PR lock
3701 # - the first write conflicts and gets a {0, count-1}PW
3702 # - the rest of the writes are under {count,EOF}PW
3703 # - the open for truncate tries to match a {0,EOF}PR
3704 #   for the filesize and cancels the PWs.
3705 # any number of fixes (don't get {0,EOF} on open, match
3706 # composite locks, do smarter file size management) fix
3707 # this, but for now we want these tests to verify that
3708 # the cancellation with truncate intent works, so we
3709 # start the file with a full-file pw lock to match against
3710 # until the truncate.
3711 trunc_test() {
3712         test=$1
3713         file=$DIR/$test
3714         offset=$2
3715         cancel_lru_locks $OSC
3716         stop_writeback
3717         # prime the file with 0,EOF PW to match
3718         touch $file
3719         $TRUNCATE $file 0
3720         sync; sync
3721         # now the real test..
3722         dd if=/dev/zero of=$file bs=1024 count=100
3723         BEFOREWRITES=`count_ost_writes`
3724         $TRUNCATE $file $offset
3725         cancel_lru_locks $OSC
3726         AFTERWRITES=`count_ost_writes`
3727         start_writeback
3728 }
3729
3730 test_42c() {
3731         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3732         trunc_test 42c 1024
3733         [ $BEFOREWRITES -eq $AFTERWRITES ] && \
3734             error "beforewrites $BEFOREWRITES == afterwrites $AFTERWRITES on truncate"
3735         rm $file
3736 }
3737 run_test 42c "test partial truncate of file with cached dirty data"
3738
3739 test_42d() {
3740         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3741         trunc_test 42d 0
3742         [ $BEFOREWRITES -eq $AFTERWRITES ] || \
3743             error "beforewrites $BEFOREWRITES != afterwrites $AFTERWRITES on truncate"
3744         rm $file
3745 }
3746 run_test 42d "test complete truncate of file with cached dirty data"
3747
3748 test_42e() { # bug22074
3749         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3750         local TDIR=$DIR/${tdir}e
3751         local pagesz=$(page_size)
3752         local pages=16 # hardcoded 16 pages, don't change it.
3753         local files=$((OSTCOUNT * 500)) # hopefully 500 files on each OST
3754         local proc_osc0="osc.${FSNAME}-OST0000-osc-[^MDT]*"
3755         local max_dirty_mb
3756         local warmup_files
3757
3758         test_mkdir $DIR/${tdir}e
3759         $SETSTRIPE -c 1 $TDIR
3760         createmany -o $TDIR/f $files
3761
3762         max_dirty_mb=$($LCTL get_param -n $proc_osc0/max_dirty_mb)
3763
3764         # we assume that with $OSTCOUNT files, at least one of them will
3765         # be allocated on OST0.
3766         warmup_files=$((OSTCOUNT * max_dirty_mb))
3767         createmany -o $TDIR/w $warmup_files
3768
3769         # write a large amount of data into one file and sync, to get good
3770         # avail_grant number from OST.
3771         for ((i=0; i<$warmup_files; i++)); do
3772                 idx=$($GETSTRIPE -i $TDIR/w$i)
3773                 [ $idx -ne 0 ] && continue
3774                 dd if=/dev/zero of=$TDIR/w$i bs="$max_dirty_mb"M count=1
3775                 break
3776         done
3777         [[ $i -gt $warmup_files ]] && error "OST0 is still cold"
3778         sync
3779         $LCTL get_param $proc_osc0/cur_dirty_bytes
3780         $LCTL get_param $proc_osc0/cur_grant_bytes
3781
3782         # create as much dirty pages as we can while not to trigger the actual
3783         # RPCs directly. but depends on the env, VFS may trigger flush during this
3784         # period, hopefully we are good.
3785         for ((i=0; i<$warmup_files; i++)); do
3786                 idx=$($GETSTRIPE -i $TDIR/w$i)
3787                 [ $idx -ne 0 ] && continue
3788                 dd if=/dev/zero of=$TDIR/w$i bs=1M count=1 2>/dev/null
3789         done
3790         $LCTL get_param $proc_osc0/cur_dirty_bytes
3791         $LCTL get_param $proc_osc0/cur_grant_bytes
3792
3793         # perform the real test
3794         $LCTL set_param $proc_osc0/rpc_stats 0
3795         for ((;i<$files; i++)); do
3796                 [ $($GETSTRIPE -i $TDIR/f$i) -eq 0 ] || continue
3797                 dd if=/dev/zero of=$TDIR/f$i bs=$pagesz count=$pages 2>/dev/null
3798         done
3799         sync
3800         $LCTL get_param $proc_osc0/rpc_stats
3801
3802         local percent=0
3803         local have_ppr=false
3804         $LCTL get_param $proc_osc0/rpc_stats |
3805                 while read PPR RRPC RPCT RCUM BAR WRPC WPCT WCUM; do
3806                         # skip lines until we are at the RPC histogram data
3807                         [ "$PPR" == "pages" ] && have_ppr=true && continue
3808                         $have_ppr || continue
3809
3810                         # we only want the percent stat for < 16 pages
3811                         [[ $(echo $PPR | tr -d ':') -ge $pages ]] && break
3812
3813                         percent=$((percent + WPCT))
3814                         if [[ $percent -gt 15 ]]; then
3815                                 error "less than 16-pages write RPCs" \
3816                                       "$percent% > 15%"
3817                                 break
3818                         fi
3819                 done
3820         rm -rf $TDIR
3821 }
3822 run_test 42e "verify sub-RPC writes are not done synchronously"
3823
3824 test_43A() { # was test_43
3825         test_mkdir $DIR/$tdir
3826         cp -p /bin/ls $DIR/$tdir/$tfile
3827         $MULTIOP $DIR/$tdir/$tfile Ow_c &
3828         pid=$!
3829         # give multiop a chance to open
3830         sleep 1
3831
3832         $DIR/$tdir/$tfile && error "execute $DIR/$tdir/$tfile succeeded" || true
3833         kill -USR1 $pid
3834 }
3835 run_test 43A "execution of file opened for write should return -ETXTBSY"
3836
3837 test_43a() {
3838         test_mkdir $DIR/$tdir
3839         cp -p $(which $MULTIOP) $DIR/$tdir/multiop ||
3840                 cp -p multiop $DIR/$tdir/multiop
3841         MULTIOP_PROG=$DIR/$tdir/multiop multiop_bg_pause $TMP/$tfile.junk O_c ||
3842                 error "multiop open $TMP/$tfile.junk failed"
3843         rm $TMP/$tfile.junk     # delete junk file on close (not part of test)
3844         MULTIOP_PID=$!
3845         $MULTIOP $DIR/$tdir/multiop Oc && error "expected error, got success"
3846         kill -USR1 $MULTIOP_PID || error "kill -USR1 PID $MULTIOP_PID failed"
3847         wait $MULTIOP_PID || error "wait PID $MULTIOP_PID failed"
3848 }
3849 run_test 43a "open(RDWR) of file being executed should return -ETXTBSY"
3850
3851 test_43b() {
3852         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3853         test_mkdir $DIR/$tdir
3854         cp -p $(which $MULTIOP) $DIR/$tdir/multiop ||
3855                 cp -p multiop $DIR/$tdir/multiop
3856         MULTIOP_PROG=$DIR/$tdir/multiop multiop_bg_pause $TMP/$tfile.junk O_c ||
3857                 error "multiop open $TMP/$tfile.junk failed"
3858         rm $TMP/$tfile.junk     # delete junk file on close (not part of test)
3859         MULTIOP_PID=$!
3860         $TRUNCATE $DIR/$tdir/multiop 0 && error "expected error, got success"
3861         kill -USR1 $MULTIOP_PID || error "kill -USR1 PID $MULTIOP_PID failed"
3862         wait $MULTIOP_PID || error "wait PID $MULTIOP_PID failed"
3863 }
3864 run_test 43b "truncate of file being executed should return -ETXTBSY"
3865
3866 test_43c() {
3867         local testdir="$DIR/$tdir"
3868         test_mkdir $testdir
3869         cp $SHELL $testdir/
3870         ( cd $(dirname $SHELL) && md5sum $(basename $SHELL) ) |
3871                 ( cd $testdir && md5sum -c )
3872 }
3873 run_test 43c "md5sum of copy into lustre"
3874
3875 test_44A() { # was test_44
3876         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
3877         dd if=/dev/zero of=$DIR/f1 bs=4k count=1 seek=1023
3878         dd if=$DIR/f1 bs=4k count=1 > /dev/null
3879 }
3880 run_test 44A "zero length read from a sparse stripe"
3881
3882 test_44a() {
3883         local nstripe=$($LCTL lov_getconfig $DIR | grep default_stripe_count: |
3884                 awk '{ print $2 }')
3885         [ -z "$nstripe" ] && skip "can't get stripe info" && return
3886         [[ $nstripe -gt $OSTCOUNT ]] &&
3887             skip "Wrong default_stripe_count: $nstripe (OSTCOUNT: $OSTCOUNT)" &&
3888             return
3889         local stride=$($LCTL lov_getconfig $DIR | grep default_stripe_size: |
3890                 awk '{ print $2 }')
3891         if [[ $nstripe -eq 0 || $nstripe -eq -1 ]]; then
3892                 nstripe=$($LCTL lov_getconfig $DIR | grep obd_count: |
3893                         awk '{ print $2 }')
3894         fi
3895
3896         OFFSETS="0 $((stride/2)) $((stride-1))"
3897         for offset in $OFFSETS; do
3898                 for i in $(seq 0 $((nstripe-1))); do
3899                         local GLOBALOFFSETS=""
3900                         # size in Bytes
3901                         local size=$((((i + 2 * $nstripe )*$stride + $offset)))
3902                         local myfn=$DIR/d44a-$size
3903                         echo "--------writing $myfn at $size"
3904                         ll_sparseness_write $myfn $size ||
3905                                 error "ll_sparseness_write"
3906                         GLOBALOFFSETS="$GLOBALOFFSETS $size"
3907                         ll_sparseness_verify $myfn $GLOBALOFFSETS ||
3908                                 error "ll_sparseness_verify $GLOBALOFFSETS"
3909
3910                         for j in $(seq 0 $((nstripe-1))); do
3911                                 # size in Bytes
3912                                 size=$((((j + $nstripe )*$stride + $offset)))
3913                                 ll_sparseness_write $myfn $size ||
3914                                         error "ll_sparseness_write"
3915                                 GLOBALOFFSETS="$GLOBALOFFSETS $size"
3916                         done
3917                         ll_sparseness_verify $myfn $GLOBALOFFSETS ||
3918                                 error "ll_sparseness_verify $GLOBALOFFSETS"
3919                         rm -f $myfn
3920                 done
3921         done
3922 }
3923 run_test 44a "test sparse pwrite ==============================="
3924
3925 dirty_osc_total() {
3926         tot=0
3927         for d in `lctl get_param -n ${OSC}.*.cur_dirty_bytes`; do
3928                 tot=$(($tot + $d))
3929         done
3930         echo $tot
3931 }
3932 do_dirty_record() {
3933         before=`dirty_osc_total`
3934         echo executing "\"$*\""
3935         eval $*
3936         after=`dirty_osc_total`
3937         echo before $before, after $after
3938 }
3939 test_45() {
3940         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3941         f="$DIR/f45"
3942         # Obtain grants from OST if it supports it
3943         echo blah > ${f}_grant
3944         stop_writeback
3945         sync
3946         do_dirty_record "echo blah > $f"
3947         [[ $before -eq $after ]] && error "write wasn't cached"
3948         do_dirty_record "> $f"
3949         [[ $before -gt $after ]] || error "truncate didn't lower dirty count"
3950         do_dirty_record "echo blah > $f"
3951         [[ $before -eq $after ]] && error "write wasn't cached"
3952         do_dirty_record "sync"
3953         [[ $before -gt $after ]] || error "writeback didn't lower dirty count"
3954         do_dirty_record "echo blah > $f"
3955         [[ $before -eq $after ]] && error "write wasn't cached"
3956         do_dirty_record "cancel_lru_locks osc"
3957         [[ $before -gt $after ]] ||
3958                 error "lock cancellation didn't lower dirty count"
3959         start_writeback
3960 }
3961 run_test 45 "osc io page accounting ============================"
3962
3963 # in a 2 stripe file (lov.sh), page 1023 maps to page 511 in its object.  this
3964 # test tickles a bug where re-dirtying a page was failing to be mapped to the
3965 # objects offset and an assert hit when an rpc was built with 1023's mapped
3966 # offset 511 and 511's raw 511 offset. it also found general redirtying bugs.
3967 test_46() {
3968         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3969         f="$DIR/f46"
3970         stop_writeback
3971         sync
3972         dd if=/dev/zero of=$f bs=`page_size` seek=511 count=1
3973         sync
3974         dd conv=notrunc if=/dev/zero of=$f bs=`page_size` seek=1023 count=1
3975         dd conv=notrunc if=/dev/zero of=$f bs=`page_size` seek=511 count=1
3976         sync
3977         start_writeback
3978 }
3979 run_test 46 "dirtying a previously written page ================"
3980
3981 # test_47 is removed "Device nodes check" is moved to test_28
3982
3983 test_48a() { # bug 2399
3984         [ $(facet_fstype $SINGLEMDS) = "zfs" ] &&
3985         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.63) ] &&
3986                 skip "MDS prior to 2.3.63 handle ZFS dir .. incorrectly" &&
3987                 return
3988         test_mkdir $DIR/$tdir
3989         cd $DIR/$tdir
3990         mv $DIR/$tdir $DIR/$tdir.new || error "move directory failed"
3991         test_mkdir $DIR/$tdir
3992         touch foo || error "'touch foo' failed after recreating cwd"
3993         test_mkdir bar
3994         touch .foo || error "'touch .foo' failed after recreating cwd"
3995         test_mkdir .bar
3996         ls . > /dev/null || error "'ls .' failed after recreating cwd"
3997         ls .. > /dev/null || error "'ls ..' failed after removing cwd"
3998         cd . || error "'cd .' failed after recreating cwd"
3999         mkdir . && error "'mkdir .' worked after recreating cwd"
4000         rmdir . && error "'rmdir .' worked after recreating cwd"
4001         ln -s . baz || error "'ln -s .' failed after recreating cwd"
4002         cd .. || error "'cd ..' failed after recreating cwd"
4003 }
4004 run_test 48a "Access renamed working dir (should return errors)="
4005
4006 test_48b() { # bug 2399
4007         rm -rf $DIR/$tdir
4008         test_mkdir $DIR/$tdir
4009         cd $DIR/$tdir
4010         rmdir $DIR/$tdir || error "remove cwd $DIR/$tdir failed"
4011         touch foo && error "'touch foo' worked after removing cwd"
4012         mkdir foo && error "'mkdir foo' worked after removing cwd"
4013         touch .foo && error "'touch .foo' worked after removing cwd"
4014         mkdir .foo && error "'mkdir .foo' worked after removing cwd"
4015         ls . > /dev/null && error "'ls .' worked after removing cwd"
4016         ls .. > /dev/null || error "'ls ..' failed after removing cwd"
4017         mkdir . && error "'mkdir .' worked after removing cwd"
4018         rmdir . && error "'rmdir .' worked after removing cwd"
4019         ln -s . foo && error "'ln -s .' worked after removing cwd"
4020         cd .. || echo "'cd ..' failed after removing cwd `pwd`"  #bug 3517
4021 }
4022 run_test 48b "Access removed working dir (should return errors)="
4023
4024 test_48c() { # bug 2350
4025         #lctl set_param debug=-1
4026         #set -vx
4027         rm -rf $DIR/$tdir
4028         test_mkdir -p $DIR/$tdir/dir
4029         cd $DIR/$tdir/dir
4030         $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
4031         $TRACE touch foo && error "touch foo worked after removing cwd"
4032         $TRACE mkdir foo && error "'mkdir foo' worked after removing cwd"
4033         touch .foo && error "touch .foo worked after removing cwd"
4034         mkdir .foo && error "mkdir .foo worked after removing cwd"
4035         $TRACE ls . && error "'ls .' worked after removing cwd"
4036         $TRACE ls .. || error "'ls ..' failed after removing cwd"
4037         $TRACE mkdir . && error "'mkdir .' worked after removing cwd"
4038         $TRACE rmdir . && error "'rmdir .' worked after removing cwd"
4039         $TRACE ln -s . foo && error "'ln -s .' worked after removing cwd"
4040         $TRACE cd .. || echo "'cd ..' failed after removing cwd `pwd`" #bug 3415
4041 }
4042 run_test 48c "Access removed working subdir (should return errors)"
4043
4044 test_48d() { # bug 2350
4045         #lctl set_param debug=-1
4046         #set -vx
4047         rm -rf $DIR/$tdir
4048         test_mkdir -p $DIR/$tdir/dir
4049         cd $DIR/$tdir/dir
4050         $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
4051         $TRACE rmdir $DIR/$tdir || error "remove parent $DIR/$tdir failed"
4052         $TRACE touch foo && error "'touch foo' worked after removing parent"
4053         $TRACE mkdir foo && error "mkdir foo worked after removing parent"
4054         touch .foo && error "'touch .foo' worked after removing parent"
4055         mkdir .foo && error "mkdir .foo worked after removing parent"
4056         $TRACE ls . && error "'ls .' worked after removing parent"
4057         $TRACE ls .. && error "'ls ..' worked after removing parent"
4058         $TRACE mkdir . && error "'mkdir .' worked after removing parent"
4059         $TRACE rmdir . && error "'rmdir .' worked after removing parent"
4060         $TRACE ln -s . foo && error "'ln -s .' worked after removing parent"
4061         true
4062 }
4063 run_test 48d "Access removed parent subdir (should return errors)"
4064
4065 test_48e() { # bug 4134
4066         #lctl set_param debug=-1
4067         #set -vx
4068         rm -rf $DIR/$tdir
4069         test_mkdir -p $DIR/$tdir/dir
4070         cd $DIR/$tdir/dir
4071         $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
4072         $TRACE rmdir $DIR/$tdir || error "remove parent $DIR/$tdir failed"
4073         $TRACE touch $DIR/$tdir || error "'touch $DIR/$tdir' failed"
4074         $TRACE chmod +x $DIR/$tdir || error "'chmod +x $DIR/$tdir' failed"
4075         # On a buggy kernel addition of "touch foo" after cd .. will
4076         # produce kernel oops in lookup_hash_it
4077         touch ../foo && error "'cd ..' worked after recreate parent"
4078         cd $DIR
4079         $TRACE rm $DIR/$tdir || error "rm '$DIR/$tdir' failed"
4080 }
4081 run_test 48e "Access to recreated parent subdir (should return errors)"
4082
4083 test_49() { # LU-1030
4084         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4085         remote_ost_nodsh && skip "remote OST with nodsh" && return
4086         # get ost1 size - lustre-OST0000
4087         ost1_size=$(do_facet ost1 $LFS df | grep ${ost1_svc} |
4088                 awk '{ print $4 }')
4089         # write 800M at maximum
4090         [[ $ost1_size -lt 2 ]] && ost1_size=2
4091         [[ $ost1_size -gt 819200 ]] && ost1_size=819200
4092
4093         $SETSTRIPE -c 1 -i 0 $DIR/$tfile
4094         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((ost1_size >> 2)) &
4095         local dd_pid=$!
4096
4097         # change max_pages_per_rpc while writing the file
4098         local osc1_mppc=osc.$(get_osc_import_name client ost1).max_pages_per_rpc
4099         local orig_mppc=$($LCTL get_param -n $osc1_mppc)
4100         # loop until dd process exits
4101         while ps ax -opid | grep -wq $dd_pid; do
4102                 $LCTL set_param $osc1_mppc=$((RANDOM % 256 + 1))
4103                 sleep $((RANDOM % 5 + 1))
4104         done
4105         # restore original max_pages_per_rpc
4106         $LCTL set_param $osc1_mppc=$orig_mppc
4107         rm $DIR/$tfile || error "rm $DIR/$tfile failed"
4108 }
4109 run_test 49 "Change max_pages_per_rpc won't break osc extent"
4110
4111 test_50() {
4112         # bug 1485
4113         test_mkdir $DIR/$tdir
4114         cd $DIR/$tdir
4115         ls /proc/$$/cwd || error "ls /proc/$$/cwd failed"
4116 }
4117 run_test 50 "special situations: /proc symlinks  ==============="
4118
4119 test_51a() {    # was test_51
4120         # bug 1516 - create an empty entry right after ".." then split dir
4121         test_mkdir -c1 $DIR/$tdir
4122         touch $DIR/$tdir/foo
4123         $MCREATE $DIR/$tdir/bar
4124         rm $DIR/$tdir/foo
4125         createmany -m $DIR/$tdir/longfile 201
4126         FNUM=202
4127         while [[ $(ls -sd $DIR/$tdir | awk '{ print $1 }') -eq 4 ]]; do
4128                 $MCREATE $DIR/$tdir/longfile$FNUM
4129                 FNUM=$(($FNUM + 1))
4130                 echo -n "+"
4131         done
4132         echo
4133         ls -l $DIR/$tdir > /dev/null || error "ls -l $DIR/$tdir failed"
4134 }
4135 run_test 51a "special situations: split htree with empty entry =="
4136
4137 cleanup_print_lfs_df () {
4138         trap 0
4139         $LFS df
4140         $LFS df -i
4141 }
4142
4143 test_51b() {
4144         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4145         local dir=$DIR/$tdir
4146
4147         local nrdirs=$((65536 + 100))
4148
4149         # cleanup the directory
4150         rm -fr $dir
4151
4152         test_mkdir -c1 $dir
4153
4154         $LFS df
4155         $LFS df -i
4156         local mdtidx=$(printf "%04x" $($LFS getstripe -M $dir))
4157         local numfree=$(lctl get_param -n mdc.$FSNAME-MDT$mdtidx*.filesfree)
4158         [[ $numfree -lt $nrdirs ]] &&
4159                 skip "not enough free inodes ($numfree) on MDT$mdtidx" &&
4160                 return
4161
4162         # need to check free space for the directories as well
4163         local blkfree=$(lctl get_param -n mdc.$FSNAME-MDT$mdtidx*.kbytesavail)
4164         numfree=$(( blkfree / $(fs_inode_ksize) ))
4165         [[ $numfree -lt $nrdirs ]] && skip "not enough blocks ($numfree)" &&
4166                 return
4167
4168         trap cleanup_print_lfs_df EXIT
4169
4170         # create files
4171         createmany -d $dir/d $nrdirs || {
4172                 unlinkmany $dir/d $nrdirs
4173                 error "failed to create $nrdirs subdirs in MDT$mdtidx:$dir"
4174         }
4175
4176         # really created :
4177         nrdirs=$(ls -U $dir | wc -l)
4178
4179         # unlink all but 100 subdirectories, then check it still works
4180         local left=100
4181         local delete=$((nrdirs - left))
4182
4183         $LFS df
4184         $LFS df -i
4185
4186         # for ldiskfs the nlink count should be 1, but this is OSD specific
4187         # and so this is listed for informational purposes only
4188         echo "nlink before: $(stat -c %h $dir), created before: $nrdirs"
4189         unlinkmany -d $dir/d $delete ||
4190                 error "unlink of first $delete subdirs failed"
4191
4192         echo "nlink between: $(stat -c %h $dir)"
4193         local found=$(ls -U $dir | wc -l)
4194         [ $found -ne $left ] &&
4195                 error "can't find subdirs: found only $found, expected $left"
4196
4197         unlinkmany -d $dir/d $delete $left ||
4198                 error "unlink of second $left subdirs failed"
4199         # regardless of whether the backing filesystem tracks nlink accurately
4200         # or not, the nlink count shouldn't be more than "." and ".." here
4201         local after=$(stat -c %h $dir)
4202         [[ $after -gt 2 ]] && error "nlink after: $after > 2" ||
4203                 echo "nlink after: $after"
4204
4205         cleanup_print_lfs_df
4206 }
4207 run_test 51b "exceed 64k subdirectory nlink limit on create, verify unlink"
4208
4209 test_51d() {
4210         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4211         [[ $OSTCOUNT -lt 3 ]] && skip_env "needs >= 3 OSTs" && return
4212         test_mkdir $DIR/$tdir
4213         createmany -o $DIR/$tdir/t- 1000
4214         $LFS getstripe $DIR/$tdir > $TMP/$tfile
4215         for N in $(seq 0 $((OSTCOUNT - 1))); do
4216                 OBJS[$N]=$(awk -vobjs=0 '($1 == '$N') { objs += 1 } \
4217                         END { printf("%0.0f", objs) }' $TMP/$tfile)
4218                 OBJS0[$N]=$(grep -A 1 idx $TMP/$tfile | awk -vobjs=0 \
4219                         '($1 == '$N') { objs += 1 } \
4220                         END { printf("%0.0f", objs) }')
4221                 log "OST$N has ${OBJS[$N]} objects, ${OBJS0[$N]} are index 0"
4222         done
4223         unlinkmany $DIR/$tdir/t- 1000
4224
4225         NLAST=0
4226         for N in $(seq 1 $((OSTCOUNT - 1))); do
4227                 [[ ${OBJS[$N]} -lt $((${OBJS[$NLAST]} - 20)) ]] &&
4228                         error "OST $N has less objects vs OST $NLAST" \
4229                               " (${OBJS[$N]} < ${OBJS[$NLAST]}"
4230                 [[ ${OBJS[$N]} -gt $((${OBJS[$NLAST]} + 20)) ]] &&
4231                         error "OST $N has less objects vs OST $NLAST" \
4232                               " (${OBJS[$N]} < ${OBJS[$NLAST]}"
4233
4234                 [[ ${OBJS0[$N]} -lt $((${OBJS0[$NLAST]} - 20)) ]] &&
4235                         error "OST $N has less #0 objects vs OST $NLAST" \
4236                               " (${OBJS0[$N]} < ${OBJS0[$NLAST]}"
4237                 [[ ${OBJS0[$N]} -gt $((${OBJS0[$NLAST]} + 20)) ]] &&
4238                         error "OST $N has less #0 objects vs OST $NLAST" \
4239                               " (${OBJS0[$N]} < ${OBJS0[$NLAST]}"
4240                 NLAST=$N
4241         done
4242         rm -f $TMP/$tfile
4243 }
4244 run_test 51d "check object distribution"
4245
4246 test_51e() {
4247         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
4248                 skip "ldiskfs only test"
4249                 return
4250         fi
4251
4252         test_mkdir -c1 $DIR/$tdir
4253         test_mkdir -c1 $DIR/$tdir/d0
4254
4255         touch $DIR/$tdir/d0/foo
4256         createmany -l $DIR/$tdir/d0/foo $DIR/$tdir/d0/f- 65001 &&
4257                 error "file exceed 65000 nlink limit!"
4258         unlinkmany $DIR/$tdir/d0/f- 65001
4259         return 0
4260 }
4261 run_test 51e "check file nlink limit"
4262
4263 test_51f() {
4264         test_mkdir $DIR/$tdir
4265
4266         local max=100000
4267         local ulimit_old=$(ulimit -n)
4268         local spare=20 # number of spare fd's for scripts/libraries, etc.
4269         local mdt=$(lfs getstripe -M $DIR/$tdir)
4270         local numfree=$(lfs df -i $DIR/$tdir | awk '/MDT:'$mdt'/ { print $4 }')
4271
4272         echo "MDT$mdt numfree=$numfree, max=$max"
4273         [[ $numfree -gt $max ]] && numfree=$max || numfree=$((numfree * 7 / 8))
4274         if [ $((numfree + spare)) -gt $ulimit_old ]; then
4275                 while ! ulimit -n $((numfree + spare)); do
4276                         numfree=$((numfree * 3 / 4))
4277                 done
4278                 echo "changed ulimit from $ulimit_old to $((numfree + spare))"
4279         else
4280                 echo "left ulimit at $ulimit_old"
4281         fi
4282
4283         createmany -o -k -t 120 $DIR/$tdir/f $numfree || {
4284                 unlinkmany $DIR/$tdir/f $numfree
4285                 error "create+open $numfree files in $DIR/$tdir failed"
4286         }
4287         ulimit -n $ulimit_old
4288
4289         # if createmany exits at 120s there will be fewer than $numfree files
4290         unlinkmany $DIR/$tdir/f $numfree || true
4291 }
4292 run_test 51f "check many open files limit"
4293
4294 test_52a() {
4295         [ -f $DIR/$tdir/foo ] && chattr -a $DIR/$tdir/foo
4296         test_mkdir $DIR/$tdir
4297         touch $DIR/$tdir/foo
4298         chattr +a $DIR/$tdir/foo || error "chattr +a failed"
4299         echo bar >> $DIR/$tdir/foo || error "append bar failed"
4300         cp /etc/hosts $DIR/$tdir/foo && error "cp worked"
4301         rm -f $DIR/$tdir/foo 2>/dev/null && error "rm worked"
4302         link $DIR/$tdir/foo $DIR/$tdir/foo_link 2>/dev/null &&
4303                                         error "link worked"
4304         echo foo >> $DIR/$tdir/foo || error "append foo failed"
4305         mrename $DIR/$tdir/foo $DIR/$tdir/foo_ren && error "rename worked"
4306         lsattr $DIR/$tdir/foo | egrep -q "^-+a[-e]+ $DIR/$tdir/foo" ||
4307                                                      error "lsattr"
4308         chattr -a $DIR/$tdir/foo || error "chattr -a failed"
4309         cp -r $DIR/$tdir $TMP/
4310         rm -fr $DIR/$tdir $TMP/$tdir || error "cleanup rm failed"
4311 }
4312 run_test 52a "append-only flag test (should return errors)"
4313
4314 test_52b() {
4315         [ -f $DIR/$tdir/foo ] && chattr -i $DIR/$tdir/foo
4316         test_mkdir $DIR/$tdir
4317         touch $DIR/$tdir/foo
4318         chattr +i $DIR/$tdir/foo || error "chattr +i failed"
4319         cat test > $DIR/$tdir/foo && error "cat test worked"
4320         cp /etc/hosts $DIR/$tdir/foo && error "cp worked"
4321         rm -f $DIR/$tdir/foo 2>/dev/null && error "rm worked"
4322         link $DIR/$tdir/foo $DIR/$tdir/foo_link 2>/dev/null &&
4323                                         error "link worked"
4324         echo foo >> $DIR/$tdir/foo && error "echo worked"
4325         mrename $DIR/$tdir/foo $DIR/$tdir/foo_ren && error "rename worked"
4326         [ -f $DIR/$tdir/foo ] || error "$tdir/foo is not a file"
4327         [ -f $DIR/$tdir/foo_ren ] && error "$tdir/foo_ren is not a file"
4328         lsattr $DIR/$tdir/foo | egrep -q "^-+i[-e]+ $DIR/$tdir/foo" ||
4329                                                         error "lsattr"
4330         chattr -i $DIR/$tdir/foo || error "chattr failed"
4331
4332         rm -fr $DIR/$tdir || error "unable to remove $DIR/$tdir"
4333 }
4334 run_test 52b "immutable flag test (should return errors) ======="
4335
4336 test_53() {
4337         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4338         remote_mds_nodsh && skip "remote MDS with nodsh" && return
4339         remote_ost_nodsh && skip "remote OST with nodsh" && return
4340
4341         local param
4342         local param_seq
4343         local ostname
4344         local mds_last
4345         local mds_last_seq
4346         local ost_last
4347         local ost_last_seq
4348         local ost_last_id
4349         local ostnum
4350         local node
4351         local found=false
4352         local support_last_seq=true
4353
4354         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.60) ]] ||
4355                 support_last_seq=false
4356
4357         # only test MDT0000
4358         local mdtosc=$(get_mdtosc_proc_path $SINGLEMDS)
4359         local value
4360         for value in $(do_facet $SINGLEMDS \
4361                        $LCTL get_param osc.$mdtosc.prealloc_last_id) ; do
4362                 param=$(echo ${value[0]} | cut -d "=" -f1)
4363                 ostname=$(echo $param | cut -d "." -f2 | cut -d - -f 1-2)
4364
4365                 if $support_last_seq; then
4366                         param_seq=$(echo $param |
4367                                 sed -e s/prealloc_last_id/prealloc_last_seq/g)
4368                         mds_last_seq=$(do_facet $SINGLEMDS \
4369                                        $LCTL get_param -n $param_seq)
4370                 fi
4371                 mds_last=$(do_facet $SINGLEMDS $LCTL get_param -n $param)
4372
4373                 ostnum=$(index_from_ostuuid ${ostname}_UUID)
4374                 node=$(facet_active_host ost$((ostnum+1)))
4375                 param="obdfilter.$ostname.last_id"
4376                 for ost_last in $(do_node $node $LCTL get_param -n $param) ; do
4377                         echo "$ostname.last_id=$ost_last; MDS.last_id=$mds_last"
4378                         ost_last_id=$ost_last
4379
4380                         if $support_last_seq; then
4381                                 ost_last_id=$(echo $ost_last |
4382                                               awk -F':' '{print $2}' |
4383                                               sed -e "s/^0x//g")
4384                                 ost_last_seq=$(echo $ost_last |
4385                                                awk -F':' '{print $1}')
4386                                 [[ $ost_last_seq = $mds_last_seq ]] || continue
4387                         fi
4388
4389                         if [[ $ost_last_id != $mds_last ]]; then
4390                                 error "$ost_last_id != $mds_last"
4391                         else
4392                                 found=true
4393                                 break
4394                         fi
4395                 done
4396         done
4397         $found || error "can not match last_seq/last_id for $mdtosc"
4398         return 0
4399 }
4400 run_test 53 "verify that MDS and OSTs agree on pre-creation ===="
4401
4402 test_54a() {
4403         perl -MSocket -e ';' || { skip "no Socket perl module installed" && return; }
4404
4405         $SOCKETSERVER $DIR/socket ||
4406                 error "$SOCKETSERVER $DIR/socket failed: $?"
4407         $SOCKETCLIENT $DIR/socket ||
4408                 error "$SOCKETCLIENT $DIR/socket failed: $?"
4409         $MUNLINK $DIR/socket || error "$MUNLINK $DIR/socket failed: $?"
4410 }
4411 run_test 54a "unix domain socket test =========================="
4412
4413 test_54b() {
4414         f="$DIR/f54b"
4415         mknod $f c 1 3
4416         chmod 0666 $f
4417         dd if=/dev/zero of=$f bs=$(page_size) count=1
4418 }
4419 run_test 54b "char device works in lustre ======================"
4420
4421 find_loop_dev() {
4422         [ -b /dev/loop/0 ] && LOOPBASE=/dev/loop/
4423         [ -b /dev/loop0 ] && LOOPBASE=/dev/loop
4424         [ -z "$LOOPBASE" ] && echo "/dev/loop/0 and /dev/loop0 gone?" && return
4425
4426         for i in $(seq 3 7); do
4427                 losetup $LOOPBASE$i > /dev/null 2>&1 && continue
4428                 LOOPDEV=$LOOPBASE$i
4429                 LOOPNUM=$i
4430                 break
4431         done
4432 }
4433
4434 cleanup_54c() {
4435         local rc=0
4436         loopdev="$DIR/loop54c"
4437
4438         trap 0
4439         $UMOUNT $DIR/$tdir || rc=$?
4440         losetup -d $loopdev || true
4441         losetup -d $LOOPDEV || true
4442         rm -rf $loopdev $DIR/$tfile $DIR/$tdir
4443         return $rc
4444 }
4445
4446 test_54c() {
4447         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4448         loopdev="$DIR/loop54c"
4449
4450         find_loop_dev
4451         [ -z "$LOOPNUM" ] && echo "couldn't find empty loop device" && return
4452         trap cleanup_54c EXIT
4453         mknod $loopdev b 7 $LOOPNUM
4454         echo "make a loop file system with $DIR/$tfile on $loopdev ($LOOPNUM)."
4455         dd if=/dev/zero of=$DIR/$tfile bs=$(get_page_size client) seek=1024 count=1 > /dev/null
4456         losetup $loopdev $DIR/$tfile ||
4457                 error "can't set up $loopdev for $DIR/$tfile"
4458         mkfs.ext2 $loopdev || error "mke2fs on $loopdev"
4459         test_mkdir $DIR/$tdir
4460         mount -t ext2 $loopdev $DIR/$tdir ||
4461                 error "error mounting $loopdev on $DIR/$tdir"
4462         dd if=/dev/zero of=$DIR/$tdir/tmp bs=$(get_page_size client) count=30 ||
4463                 error "dd write"
4464         df $DIR/$tdir
4465         dd if=$DIR/$tdir/tmp of=/dev/zero bs=$(get_page_size client) count=30 ||
4466                 error "dd read"
4467         cleanup_54c
4468 }
4469 run_test 54c "block device works in lustre ====================="
4470
4471 test_54d() {
4472         f="$DIR/f54d"
4473         string="aaaaaa"
4474         mknod $f p
4475         [ "$string" = $(echo $string > $f | cat $f) ] || error "$f != $string"
4476 }
4477 run_test 54d "fifo device works in lustre ======================"
4478
4479 test_54e() {
4480         f="$DIR/f54e"
4481         string="aaaaaa"
4482         cp -aL /dev/console $f
4483         echo $string > $f || error "echo $string to $f failed"
4484 }
4485 run_test 54e "console/tty device works in lustre ======================"
4486
4487 #The test_55 used to be iopen test and it was removed by bz#24037.
4488 #run_test 55 "check iopen_connect_dentry() ======================"
4489
4490 test_56a() {    # was test_56
4491         rm -rf $DIR/$tdir
4492         $SETSTRIPE -d $DIR
4493         test_mkdir -p $DIR/$tdir/dir
4494         NUMFILES=3
4495         NUMFILESx2=$(($NUMFILES * 2))
4496         for i in $(seq 1 $NUMFILES); do
4497                 touch $DIR/$tdir/file$i
4498                 touch $DIR/$tdir/dir/file$i
4499         done
4500
4501         # test lfs getstripe with --recursive
4502         FILENUM=$($GETSTRIPE --recursive $DIR/$tdir | grep -c obdidx)
4503         [[ $FILENUM -eq $NUMFILESx2 ]] ||
4504                 error "$GETSTRIPE --recursive: found $FILENUM, not $NUMFILESx2"
4505         FILENUM=$($GETSTRIPE $DIR/$tdir | grep -c obdidx)
4506         [[ $FILENUM -eq $NUMFILES ]] ||
4507                 error "$GETSTRIPE $DIR/$tdir: found $FILENUM, not $NUMFILES"
4508         echo "$GETSTRIPE --recursive passed."
4509
4510         # test lfs getstripe with file instead of dir
4511         FILENUM=$($GETSTRIPE $DIR/$tdir/file1 | grep -c obdidx)
4512         [[ $FILENUM -eq 1 ]] ||
4513                 error "$GETSTRIPE $DIR/$tdir/file1: found $FILENUM, not 1"
4514         echo "$GETSTRIPE file1 passed."
4515
4516         #test lfs getstripe with --verbose
4517         [[ $($GETSTRIPE --verbose $DIR/$tdir |
4518                 grep -c lmm_magic) -eq $NUMFILES ]] ||
4519                 error "$GETSTRIPE --verbose $DIR/$tdir: want $NUMFILES"
4520         [[ $($GETSTRIPE $DIR/$tdir | grep -c lmm_magic) -eq 0 ]] ||
4521                 error "$GETSTRIPE $DIR/$tdir: showed lmm_magic"
4522
4523         #test lfs getstripe with -v prints lmm_fid
4524         [[ $($GETSTRIPE -v $DIR/$tdir | grep -c lmm_fid) -eq $NUMFILES ]] ||
4525                 error "$GETSTRIPE -v $DIR/$tdir: want $NUMFILES lmm_fid: lines"
4526         [[ $($GETSTRIPE $DIR/$tdir | grep -c lmm_fid) -eq 0 ]] ||
4527                 error "$GETSTRIPE $DIR/$tdir: showed lmm_fid"
4528         echo "$GETSTRIPE --verbose passed."
4529
4530         #check for FID information
4531         local fid1=$($GETSTRIPE --fid $DIR/$tdir/file1)
4532         local fid2=$($GETSTRIPE --verbose $DIR/$tdir/file1 |
4533                        awk '/lmm_fid: / { print $2 }')
4534         local fid3=$($LFS path2fid $DIR/$tdir/file1)
4535         [ "$fid1" != "$fid2" ] &&
4536                 error "getstripe --fid $fid1 != getstripe --verbose $fid2"
4537         [ "$fid1" != "$fid3" ] &&
4538                 error "getstripe --fid $fid1 != lfs path2fid $fid3"
4539         echo "$GETSTRIPE --fid passed."
4540
4541         #test lfs getstripe with --obd
4542         $GETSTRIPE --obd wrong_uuid $DIR/$tdir 2>&1 |
4543                 grep -q "unknown obduuid" ||
4544                 error "$GETSTRIPE --obd wrong_uuid should return error message"
4545
4546         [[ $OSTCOUNT -lt 2 ]] &&
4547                 skip_env "skipping other $GETSTRIPE --obd test" && return
4548
4549         OSTIDX=1
4550         OBDUUID=$(ostuuid_from_index $OSTIDX)
4551         FILENUM=$($GETSTRIPE -ir $DIR/$tdir | grep "^$OSTIDX\$" | wc -l)
4552         FOUND=$($GETSTRIPE -r --obd $OBDUUID $DIR/$tdir | grep obdidx | wc -l)
4553         [[ $FOUND -eq $FILENUM ]] ||
4554                 error "$GETSTRIPE --obd wrong: found $FOUND, expected $FILENUM"
4555         [[ $($GETSTRIPE -r -v --obd $OBDUUID $DIR/$tdir |
4556                 sed '/^[         ]*'${OSTIDX}'[  ]/d' |
4557                 sed -n '/^[      ]*[0-9][0-9]*[  ]/p' | wc -l) -eq 0 ]] ||
4558                 error "$GETSTRIPE --obd: should not show file on other obd"
4559         echo "$GETSTRIPE --obd passed"
4560 }
4561 run_test 56a "check $GETSTRIPE"
4562
4563 test_56b() {
4564         test_mkdir $DIR/$tdir
4565         NUMDIRS=3
4566         for i in $(seq 1 $NUMDIRS); do
4567                 test_mkdir $DIR/$tdir/dir$i
4568         done
4569
4570         # test lfs getdirstripe default mode is non-recursion, which is
4571         # different from lfs getstripe
4572         dircnt=$($LFS getdirstripe $DIR/$tdir | grep -c lmv_stripe_count)
4573         [[ $dircnt -eq 1 ]] ||
4574                 error "$LFS getdirstripe: found $dircnt, not 1"
4575         dircnt=$($LFS getdirstripe --recursive $DIR/$tdir |
4576                 grep -c lmv_stripe_count)
4577         [[ $dircnt -eq $((NUMDIRS + 1)) ]] ||
4578                 error "$LFS getdirstripe --recursive: found $dircnt, \
4579                         not $((NUMDIRS + 1))"
4580 }
4581 run_test 56b "check $LFS getdirstripe"
4582
4583 test_56c() {
4584         local ost_idx=0
4585         local ost_name=$(ostname_from_index $ost_idx)
4586
4587         local old_status=$(ost_dev_status $ost_idx)
4588         [[ -z "$old_status" ]] ||
4589                 { skip_env "OST $ost_name is in $old_status status"; return 0; }
4590
4591         do_facet ost1 $LCTL set_param -n obdfilter.$ost_name.degraded=1
4592         sleep_maxage
4593
4594         local new_status=$(ost_dev_status $ost_idx)
4595         [[ "$new_status" = "D" ]] ||
4596                 error "OST $ost_name is in status of '$new_status', not 'D'"
4597
4598         do_facet ost1 $LCTL set_param -n obdfilter.$ost_name.degraded=0
4599         sleep_maxage
4600
4601         new_status=$(ost_dev_status $ost_idx)
4602         [[ -z "$new_status" ]] ||
4603                 error "OST $ost_name is in status of '$new_status', not ''"
4604 }
4605 run_test 56c "check 'lfs df' showing device status"
4606
4607 NUMFILES=3
4608 NUMDIRS=3
4609 setup_56() {
4610         local LOCAL_NUMFILES="$1"
4611         local LOCAL_NUMDIRS="$2"
4612         local MKDIR_PARAMS="$3"
4613         local DIR_STRIPE_PARAMS="$4"
4614
4615         if [ ! -d "$TDIR" ] ; then
4616                 test_mkdir -p $DIR_STRIPE_PARAMS $TDIR
4617                 [ "$MKDIR_PARAMS" ] && $SETSTRIPE $MKDIR_PARAMS $TDIR
4618                 for i in `seq 1 $LOCAL_NUMFILES` ; do
4619                         touch $TDIR/file$i
4620                 done
4621                 for i in `seq 1 $LOCAL_NUMDIRS` ; do
4622                         test_mkdir $DIR_STRIPE_PARAMS $TDIR/dir$i
4623                         for j in `seq 1 $LOCAL_NUMFILES` ; do
4624                                 touch $TDIR/dir$i/file$j
4625                         done
4626                 done
4627         fi
4628 }
4629
4630 setup_56_special() {
4631         LOCAL_NUMFILES=$1
4632         LOCAL_NUMDIRS=$2
4633         setup_56 $1 $2
4634         if [ ! -e "$TDIR/loop1b" ] ; then
4635                 for i in `seq 1 $LOCAL_NUMFILES` ; do
4636                         mknod $TDIR/loop${i}b b 7 $i
4637                         mknod $TDIR/null${i}c c 1 3
4638                         ln -s $TDIR/file1 $TDIR/link${i}l
4639                 done
4640                 for i in `seq 1 $LOCAL_NUMDIRS` ; do
4641                         mknod $TDIR/dir$i/loop${i}b b 7 $i
4642                         mknod $TDIR/dir$i/null${i}c c 1 3
4643                         ln -s $TDIR/dir$i/file1 $TDIR/dir$i/link${i}l
4644                 done
4645         fi
4646 }
4647
4648 test_56g() {
4649         $SETSTRIPE -d $DIR
4650
4651         TDIR=$DIR/${tdir}g
4652         setup_56 $NUMFILES $NUMDIRS
4653
4654         EXPECTED=$(($NUMDIRS + 2))
4655         # test lfs find with -name
4656         for i in $(seq 1 $NUMFILES) ; do
4657                 NUMS=$($LFIND -name "*$i" $TDIR | wc -l)
4658                 [ $NUMS -eq $EXPECTED ] ||
4659                         error "lfs find -name \"*$i\" $TDIR wrong: "\
4660                               "found $NUMS, expected $EXPECTED"
4661         done
4662 }
4663 run_test 56g "check lfs find -name ============================="
4664
4665 test_56h() {
4666         $SETSTRIPE -d $DIR
4667
4668         TDIR=$DIR/${tdir}g
4669         setup_56 $NUMFILES $NUMDIRS
4670
4671         EXPECTED=$(((NUMDIRS + 1) * (NUMFILES - 1) + NUMFILES))
4672         # test lfs find with ! -name
4673         for i in $(seq 1 $NUMFILES) ; do
4674                 NUMS=$($LFIND ! -name "*$i" $TDIR | wc -l)
4675                 [ $NUMS -eq $EXPECTED ] ||
4676                         error "lfs find ! -name \"*$i\" $TDIR wrong: "\
4677                               "found $NUMS, expected $EXPECTED"
4678         done
4679 }
4680 run_test 56h "check lfs find ! -name"
4681
4682 test_56i() {
4683         tdir=${tdir}i
4684         test_mkdir $DIR/$tdir
4685         UUID=$(ostuuid_from_index 0 $DIR/$tdir)
4686         CMD="$LFIND -ost $UUID $DIR/$tdir"
4687         OUT=$($CMD)
4688         [ -z "$OUT" ] || error "'$CMD' returned directory '$OUT'"
4689 }
4690 run_test 56i "check 'lfs find -ost UUID' skips directories"
4691
4692 test_56j() {
4693         TDIR=$DIR/${tdir}g
4694         setup_56_special $NUMFILES $NUMDIRS
4695
4696         EXPECTED=$((NUMDIRS + 1))
4697         CMD="$LFIND -type d $TDIR"
4698         NUMS=$($CMD | wc -l)
4699         [ $NUMS -eq $EXPECTED ] ||
4700                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4701 }
4702 run_test 56j "check lfs find -type d ============================="
4703
4704 test_56k() {
4705         TDIR=$DIR/${tdir}g
4706         setup_56_special $NUMFILES $NUMDIRS
4707
4708         EXPECTED=$(((NUMDIRS + 1) * NUMFILES))
4709         CMD="$LFIND -type f $TDIR"
4710         NUMS=$($CMD | wc -l)
4711         [ $NUMS -eq $EXPECTED ] ||
4712                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4713 }
4714 run_test 56k "check lfs find -type f ============================="
4715
4716 test_56l() {
4717         TDIR=$DIR/${tdir}g
4718         setup_56_special $NUMFILES $NUMDIRS
4719
4720         EXPECTED=$((NUMDIRS + NUMFILES))
4721         CMD="$LFIND -type b $TDIR"
4722         NUMS=$($CMD | wc -l)
4723         [ $NUMS -eq $EXPECTED ] ||
4724                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4725 }
4726 run_test 56l "check lfs find -type b ============================="
4727
4728 test_56m() {
4729         TDIR=$DIR/${tdir}g
4730         setup_56_special $NUMFILES $NUMDIRS
4731
4732         EXPECTED=$((NUMDIRS + NUMFILES))
4733         CMD="$LFIND -type c $TDIR"
4734         NUMS=$($CMD | wc -l)
4735         [ $NUMS -eq $EXPECTED ] ||
4736                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4737 }
4738 run_test 56m "check lfs find -type c ============================="
4739
4740 test_56n() {
4741         TDIR=$DIR/${tdir}g
4742         setup_56_special $NUMFILES $NUMDIRS
4743
4744         EXPECTED=$((NUMDIRS + NUMFILES))
4745         CMD="$LFIND -type l $TDIR"
4746         NUMS=$($CMD | wc -l)
4747         [ $NUMS -eq $EXPECTED ] ||
4748                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4749 }
4750 run_test 56n "check lfs find -type l ============================="
4751
4752 test_56o() {
4753         TDIR=$DIR/${tdir}o
4754         setup_56 $NUMFILES $NUMDIRS
4755         utime $TDIR/file1 > /dev/null || error "utime (1)"
4756         utime $TDIR/file2 > /dev/null || error "utime (2)"
4757         utime $TDIR/dir1 > /dev/null || error "utime (3)"
4758         utime $TDIR/dir2 > /dev/null || error "utime (4)"
4759         utime $TDIR/dir1/file1 > /dev/null || error "utime (5)"
4760         dd if=/dev/zero count=1 >> $TDIR/dir1/file1 && sync
4761
4762         EXPECTED=4
4763         NUMS=`$LFIND -mtime +0 $TDIR | wc -l`
4764         [ $NUMS -eq $EXPECTED ] || \
4765                 error "lfs find -mtime +0 $TDIR wrong: found $NUMS, expected $EXPECTED"
4766
4767         EXPECTED=12
4768         CMD="$LFIND -mtime 0 $TDIR"
4769         NUMS=$($CMD | wc -l)
4770         [ $NUMS -eq $EXPECTED ] ||
4771                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4772 }
4773 run_test 56o "check lfs find -mtime for old files =========================="
4774
4775 test_56p() {
4776         [ $RUNAS_ID -eq $UID ] &&
4777                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
4778
4779         TDIR=$DIR/${tdir}p
4780         setup_56 $NUMFILES $NUMDIRS
4781
4782         chown $RUNAS_ID $TDIR/file* || error "chown $DIR/${tdir}g/file$i failed"
4783         EXPECTED=$NUMFILES
4784         CMD="$LFIND -uid $RUNAS_ID $TDIR"
4785         NUMS=$($CMD | wc -l)
4786         [ $NUMS -eq $EXPECTED ] || \
4787                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4788
4789         EXPECTED=$(((NUMFILES + 1) * NUMDIRS + 1))
4790         CMD="$LFIND ! -uid $RUNAS_ID $TDIR"
4791         NUMS=$($CMD | wc -l)
4792         [ $NUMS -eq $EXPECTED ] || \
4793                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4794 }
4795 run_test 56p "check lfs find -uid and ! -uid ==============================="
4796
4797 test_56q() {
4798         [ $RUNAS_ID -eq $UID ] &&
4799                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
4800
4801         TDIR=$DIR/${tdir}q
4802         setup_56 $NUMFILES $NUMDIRS
4803
4804         chgrp $RUNAS_GID $TDIR/file* || error "chown $TDIR/file$i failed"
4805
4806         EXPECTED=$NUMFILES
4807         CMD="$LFIND -gid $RUNAS_GID $TDIR"
4808         NUMS=$($CMD | wc -l)
4809         [ $NUMS -eq $EXPECTED ] ||
4810                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4811
4812         EXPECTED=$(( ($NUMFILES+1) * $NUMDIRS + 1))
4813         CMD="$LFIND ! -gid $RUNAS_GID $TDIR"
4814         NUMS=$($CMD | wc -l)
4815         [ $NUMS -eq $EXPECTED ] ||
4816                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4817 }
4818 run_test 56q "check lfs find -gid and ! -gid ==============================="
4819
4820 test_56r() {
4821         TDIR=$DIR/${tdir}r
4822         setup_56 $NUMFILES $NUMDIRS
4823
4824         EXPECTED=12
4825         CMD="$LFIND -size 0 -type f $TDIR"
4826         NUMS=$($CMD | wc -l)
4827         [ $NUMS -eq $EXPECTED ] ||
4828                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4829         EXPECTED=0
4830         CMD="$LFIND ! -size 0 -type f $TDIR"
4831         NUMS=$($CMD | wc -l)
4832         [ $NUMS -eq $EXPECTED ] ||
4833                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4834         echo "test" > $TDIR/$tfile
4835         echo "test2" > $TDIR/$tfile.2 && sync
4836         EXPECTED=1
4837         CMD="$LFIND -size 5 -type f $TDIR"
4838         NUMS=$($CMD | wc -l)
4839         [ $NUMS -eq $EXPECTED ] ||
4840                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4841         EXPECTED=1
4842         CMD="$LFIND -size +5 -type f $TDIR"
4843         NUMS=$($CMD | wc -l)
4844         [ $NUMS -eq $EXPECTED ] ||
4845                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4846         EXPECTED=2
4847         CMD="$LFIND -size +0 -type f $TDIR"
4848         NUMS=$($CMD | wc -l)
4849         [ $NUMS -eq $EXPECTED ] ||
4850                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4851         EXPECTED=2
4852         CMD="$LFIND ! -size -5 -type f $TDIR"
4853         NUMS=$($CMD | wc -l)
4854         [ $NUMS -eq $EXPECTED ] ||
4855                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4856         EXPECTED=12
4857         CMD="$LFIND -size -5 -type f $TDIR"
4858         NUMS=$($CMD | wc -l)
4859         [ $NUMS -eq $EXPECTED ] ||
4860                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4861 }
4862 run_test 56r "check lfs find -size works =========================="
4863
4864 test_56s() { # LU-611
4865         TDIR=$DIR/${tdir}s
4866
4867         #LU-9369
4868         setup_56 0 $NUMDIRS
4869         for i in $(seq 1 $NUMDIRS); do
4870                 $SETSTRIPE -c $((OSTCOUNT + 1)) $TDIR/dir$i/$tfile
4871         done
4872         EXPECTED=$NUMDIRS
4873         CMD="$LFIND -c $OSTCOUNT $TDIR"
4874         NUMS=$($CMD | wc -l)
4875         [ $NUMS -eq $EXPECTED ] || {
4876                 $GETSTRIPE -R $TDIR
4877                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4878         }
4879         rm -rf $TDIR
4880
4881         setup_56 $NUMFILES $NUMDIRS "-c $OSTCOUNT"
4882         if [[ $OSTCOUNT -gt 1 ]]; then
4883                 $SETSTRIPE -c 1 $TDIR/$tfile.{0,1,2,3}
4884                 ONESTRIPE=4
4885                 EXTRA=4
4886         else
4887                 ONESTRIPE=$(((NUMDIRS + 1) * NUMFILES))
4888                 EXTRA=0
4889         fi
4890
4891         EXPECTED=$(((NUMDIRS + 1) * NUMFILES))
4892         CMD="$LFIND -stripe-count $OSTCOUNT -type f $TDIR"
4893         NUMS=$($CMD | wc -l)
4894         [ $NUMS -eq $EXPECTED ] || {
4895                 $GETSTRIPE -R $TDIR
4896                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4897         }
4898
4899         EXPECTED=$(((NUMDIRS + 1) * NUMFILES + EXTRA))
4900         CMD="$LFIND -stripe-count +0 -type f $TDIR"
4901         NUMS=$($CMD | wc -l)
4902         [ $NUMS -eq $EXPECTED ] || {
4903                 $GETSTRIPE -R $TDIR
4904                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4905         }
4906
4907         EXPECTED=$ONESTRIPE
4908         CMD="$LFIND -stripe-count 1 -type f $TDIR"
4909         NUMS=$($CMD | wc -l)
4910         [ $NUMS -eq $EXPECTED ] || {
4911                 $GETSTRIPE -R $TDIR
4912                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4913         }
4914
4915         CMD="$LFIND -stripe-count -2 -type f $TDIR"
4916         NUMS=$($CMD | wc -l)
4917         [ $NUMS -eq $EXPECTED ] || {
4918                 $GETSTRIPE -R $TDIR
4919                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4920         }
4921
4922         EXPECTED=0
4923         CMD="$LFIND -stripe-count $((OSTCOUNT + 1)) -type f $TDIR"
4924         NUMS=$($CMD | wc -l)
4925         [ $NUMS -eq $EXPECTED ] || {
4926                 $GETSTRIPE -R $TDIR
4927                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4928         }
4929 }
4930 run_test 56s "check lfs find -stripe-count works"
4931
4932 test_56t() { # LU-611
4933         TDIR=$DIR/${tdir}t
4934
4935         #LU-9369
4936         setup_56 0 $NUMDIRS
4937         for i in $(seq 1 $NUMDIRS); do
4938                 $SETSTRIPE -S 4M $TDIR/dir$i/$tfile
4939         done
4940         EXPECTED=$NUMDIRS
4941         CMD="$LFIND -S 4M $TDIR"
4942         NUMS=$($CMD | wc -l)
4943         [ $NUMS -eq $EXPECTED ] || {
4944                 $GETSTRIPE -R $TDIR
4945                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4946         }
4947         rm -rf $TDIR
4948
4949         setup_56 $NUMFILES $NUMDIRS "--stripe-size 512k"
4950
4951         $SETSTRIPE -S 256k $TDIR/$tfile.{0,1,2,3}
4952
4953         EXPECTED=$(((NUMDIRS + 1) * NUMFILES))
4954         CMD="$LFIND -stripe-size 512k -type f $TDIR"
4955         NUMS=$($CMD | wc -l)
4956         [ $NUMS -eq $EXPECTED ] ||
4957                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4958
4959         CMD="$LFIND -stripe-size +320k -type f $TDIR"
4960         NUMS=$($CMD | wc -l)
4961         [ $NUMS -eq $EXPECTED ] ||
4962                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4963
4964         EXPECTED=$(((NUMDIRS + 1) * NUMFILES + 4))
4965         CMD="$LFIND -stripe-size +200k -type f $TDIR"
4966         NUMS=$($CMD | wc -l)
4967         [ $NUMS -eq $EXPECTED ] ||
4968                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4969
4970         CMD="$LFIND -stripe-size -640k -type f $TDIR"
4971         NUMS=$($CMD | wc -l)
4972         [ $NUMS -eq $EXPECTED ] ||
4973                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4974
4975         EXPECTED=4
4976         CMD="$LFIND -stripe-size 256k -type f $TDIR"
4977         NUMS=$($CMD | wc -l)
4978         [ $NUMS -eq $EXPECTED ] ||
4979                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4980
4981         CMD="$LFIND -stripe-size -320k -type f $TDIR"
4982         NUMS=$($CMD | wc -l)
4983         [ $NUMS -eq $EXPECTED ] ||
4984                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4985
4986         EXPECTED=0
4987         CMD="$LFIND -stripe-size 1024k -type f $TDIR"
4988         NUMS=$($CMD | wc -l)
4989         [ $NUMS -eq $EXPECTED ] ||
4990                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4991 }
4992 run_test 56t "check lfs find -stripe-size works"
4993
4994 test_56u() { # LU-611
4995         TDIR=$DIR/${tdir}u
4996         setup_56 $NUMFILES $NUMDIRS "-i 0"
4997
4998         if [[ $OSTCOUNT -gt 1 ]]; then
4999                 $SETSTRIPE -i 1 $TDIR/$tfile.{0,1,2,3}
5000                 ONESTRIPE=4
5001         else
5002                 ONESTRIPE=0
5003         fi
5004
5005         EXPECTED=$(((NUMDIRS + 1) * NUMFILES))
5006         CMD="$LFIND -stripe-index 0 -type f $TDIR"
5007         NUMS=$($CMD | wc -l)
5008         [ $NUMS -eq $EXPECTED ] ||
5009                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
5010
5011         EXPECTED=$ONESTRIPE
5012         CMD="$LFIND -stripe-index 1 -type f $TDIR"
5013         NUMS=$($CMD | wc -l)
5014         [ $NUMS -eq $EXPECTED ] ||
5015                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
5016
5017         CMD="$LFIND ! -stripe-index 0 -type f $TDIR"
5018         NUMS=$($CMD | wc -l)
5019         [ $NUMS -eq $EXPECTED ] ||
5020                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
5021
5022         EXPECTED=0
5023         # This should produce an error and not return any files
5024         CMD="$LFIND -stripe-index $OSTCOUNT -type f $TDIR"
5025         NUMS=$($CMD 2>/dev/null | wc -l)
5026         [ $NUMS -eq $EXPECTED ] ||
5027                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
5028
5029         if [[ $OSTCOUNT -gt 1 ]]; then
5030                 EXPECTED=$(((NUMDIRS + 1) * NUMFILES + ONESTRIPE))
5031                 CMD="$LFIND -stripe-index 0,1 -type f $TDIR"
5032                 NUMS=$($CMD | wc -l)
5033                 [ $NUMS -eq $EXPECTED ] ||
5034                         error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
5035         fi
5036 }
5037 run_test 56u "check lfs find -stripe-index works"
5038
5039 test_56v() {
5040     local MDT_IDX=0
5041
5042     TDIR=$DIR/${tdir}v
5043     rm -rf $TDIR
5044     setup_56 $NUMFILES $NUMDIRS
5045
5046     UUID=$(mdtuuid_from_index $MDT_IDX $TDIR)
5047     [ -z "$UUID" ] && error "mdtuuid_from_index cannot find MDT index $MDT_IDX"
5048
5049     for file in $($LFIND -mdt $UUID $TDIR); do
5050         file_mdt_idx=$($GETSTRIPE -M $file)
5051         [ $file_mdt_idx -eq $MDT_IDX ] ||
5052             error "'lfind -mdt $UUID' != 'getstripe -M' ($file_mdt_idx)"
5053     done
5054 }
5055 run_test 56v "check 'lfs find -mdt match with lfs getstripe -M' ======="
5056
5057 test_56w() {
5058         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
5059         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5060         TDIR=$DIR/${tdir}w
5061
5062         rm -rf $TDIR || error "remove $TDIR failed"
5063         setup_56 $NUMFILES $NUMDIRS "-c $OSTCOUNT" "-c1"
5064
5065         local stripe_size
5066         stripe_size=$($GETSTRIPE -S -d $TDIR) ||
5067                 error "$GETSTRIPE -S -d $TDIR failed"
5068         stripe_size=${stripe_size%% *}
5069
5070         local file_size=$((stripe_size * OSTCOUNT))
5071         local file_num=$((NUMDIRS * NUMFILES + NUMFILES))
5072         local required_space=$((file_num * file_size))
5073
5074         local free_space=$($LCTL get_param -n lov.$FSNAME-clilov-*.kbytesavail |
5075                            head -n1)
5076         [[ $free_space -le $((required_space / 1024)) ]] &&
5077                 skip_env "need $required_space bytes, have $free_space KB" &&
5078                 return
5079
5080         local dd_bs=65536
5081         local dd_count=$((file_size / dd_bs))
5082
5083         # write data into the files
5084         local i
5085         local j
5086         local file
5087         for i in $(seq 1 $NUMFILES); do
5088                 file=$TDIR/file$i
5089                 yes | dd bs=$dd_bs count=$dd_count of=$file &>/dev/null ||
5090                         error "write data into $file failed"
5091         done
5092         for i in $(seq 1 $NUMDIRS); do
5093                 for j in $(seq 1 $NUMFILES); do
5094                         file=$TDIR/dir$i/file$j
5095                         yes|dd bs=$dd_bs count=$dd_count of=$file &>/dev/null ||
5096                                 error "write data into $file failed"
5097                 done
5098         done
5099
5100         # $LFS_MIGRATE will fail if hard link migration is unsupported
5101         if [[ $(lustre_version_code mds1) -gt $(version_code 2.5.55) ]]; then
5102                 createmany -l$TDIR/dir1/file1 $TDIR/dir1/link 200 ||
5103                         error "creating links to $TDIR/dir1/file1 failed"
5104         fi
5105
5106         local expected=-1
5107         [[ $OSTCOUNT -gt 1 ]] && expected=$((OSTCOUNT - 1))
5108
5109         # lfs_migrate file
5110         local cmd="$LFS_MIGRATE -y -c $expected $TDIR/file1"
5111         echo "$cmd"
5112         eval $cmd || error "$cmd failed"
5113
5114         check_stripe_count $TDIR/file1 $expected
5115
5116         if [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.90) ];
5117         then
5118                 # lfs_migrate file onto OST 0 if it is on OST 1, or onto
5119                 # OST 1 if it is on OST 0. This file is small enough to
5120                 # be on only one stripe.
5121                 file=$TDIR/migr_1_ost
5122                 dd bs=$dd_bs count=1 if=/dev/urandom of=$file >/dev/null 2>&1 ||
5123                         error "write data into $file failed"
5124                 local obdidx=$($LFS getstripe -i $file)
5125                 local oldmd5=$(md5sum $file)
5126                 local newobdidx=0
5127                 [[ $obdidx -eq 0 ]] && newobdidx=1
5128                 cmd="$LFS migrate -i $newobdidx $file"
5129                 echo $cmd
5130                 eval $cmd || error "$cmd failed"
5131                 local realobdix=$($LFS getstripe -i $file)
5132                 local newmd5=$(md5sum $file)
5133                 [[ $newobdidx -ne $realobdix ]] &&
5134                         error "new OST is different (was=$obdidx, wanted=$newobdidx, got=$realobdix)"
5135                 [[ "$oldmd5" != "$newmd5" ]] &&
5136                         error "md5sum differ: $oldmd5, $newmd5"
5137         fi
5138
5139     # lfs_migrate dir
5140     cmd="$LFS_MIGRATE -y -c $expected $TDIR/dir1"
5141     echo "$cmd"
5142     eval $cmd || error "$cmd failed"
5143
5144     for j in $(seq 1 $NUMFILES); do
5145         check_stripe_count $TDIR/dir1/file$j $expected
5146     done
5147
5148     # lfs_migrate works with lfs find
5149     cmd="$LFIND -stripe_count $OSTCOUNT -type f $TDIR |
5150          $LFS_MIGRATE -y -c $expected"
5151     echo "$cmd"
5152     eval $cmd || error "$cmd failed"
5153
5154     for i in $(seq 2 $NUMFILES); do
5155         check_stripe_count $TDIR/file$i $expected
5156     done
5157     for i in $(seq 2 $NUMDIRS); do
5158         for j in $(seq 1 $NUMFILES); do
5159             check_stripe_count $TDIR/dir$i/file$j $expected
5160         done
5161     done
5162 }
5163 run_test 56w "check lfs_migrate -c stripe_count works"
5164
5165 test_56x() {
5166         check_swap_layouts_support && return 0
5167         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
5168
5169         local dir0=$DIR/$tdir
5170         local ref1=/etc/passwd
5171         local file1=$dir0/file1
5172
5173         test_mkdir $dir0 || error "creating dir $dir0"
5174         $LFS setstripe -c 2 $file1
5175         cp $ref1 $file1
5176         $LFS migrate -c 1 $file1 || error "migrate failed rc = $?"
5177         stripe=$($LFS getstripe -c $file1)
5178         [[ $stripe == 1 ]] || error "stripe of $file1 is $stripe != 1"
5179         cmp $file1 $ref1 || error "content mismatch $file1 differs from $ref1"
5180
5181         # clean up
5182         rm -f $file1
5183 }
5184 run_test 56x "lfs migration support"
5185
5186 test_56xa() {
5187         check_swap_layouts_support && return 0
5188         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
5189
5190         local dir0=$DIR/$tdir/$testnum
5191         test_mkdir -p $dir0
5192
5193         local ref1=/etc/passwd
5194         local file1=$dir0/file1
5195
5196         $LFS setstripe -c 2 $file1
5197         cp $ref1 $file1
5198         $LFS migrate --block -c 1 $file1 || error "migrate failed rc = $?"
5199         local stripe=$($LFS getstripe -c $file1)
5200         [[ $stripe == 1 ]] || error "stripe of $file1 is $stripe != 1"
5201         cmp $file1 $ref1 || error "content mismatch $file1 differs from $ref1"
5202
5203         # clean up
5204         rm -f $file1
5205 }
5206 run_test 56xa "lfs migration --block support"
5207
5208 check_migrate_links() {
5209         local dir="$1"
5210         local file1="$dir/file1"
5211         local begin="$2"
5212         local count="$3"
5213         local total_count=$(($begin + $count - 1))
5214         local symlink_count=10
5215         local uniq_count=10
5216
5217         if [ ! -f "$file1" ]; then
5218                 echo -n "creating initial file..."
5219                 $LFS setstripe -c 1 -S "512k" "$file1" ||
5220                         error "cannot setstripe initial file"
5221                 echo "done"
5222
5223                 echo -n "creating symlinks..."
5224                 for s in $(seq 1 $symlink_count); do
5225                         ln -s "$file1" "$dir/slink$s" ||
5226                                 error "cannot create symlinks"
5227                 done
5228                 echo "done"
5229
5230                 echo -n "creating nonlinked files..."
5231                 createmany -o "$dir/uniq" 1 10 &> /dev/null ||
5232                         error "cannot create nonlinked files"
5233                 echo "done"
5234         fi
5235
5236         # create hard links
5237         if [ ! -f "$dir/file$total_count" ]; then
5238                 echo -n "creating hard links $begin:$total_count..."
5239                 createmany -l"$file1" "$dir/file" "$begin" "$count" &>  \
5240                         /dev/null || error "cannot create hard links"
5241                 echo "done"
5242         fi
5243
5244         echo -n "checking number of hard links listed in xattrs..."
5245         local fid=$($LFS getstripe -F "$file1")
5246         local paths=($($LFS fid2path "$MOUNT" "$fid" 2> /dev/null))
5247
5248         echo "${#paths[*]}"
5249         if [ ${#paths[*]} -lt $total_count -a "$begin" -eq 2  ]; then
5250                         echo "hard link list has unexpected size, skipping test"
5251                         return 0
5252         fi
5253         if [ ${#paths[*]} -ge $total_count -a "$begin" -ne 2  ]; then
5254                         error "link names should exceed xattrs size"
5255         fi
5256
5257         echo -n "migrating files..."
5258         local migrate_out=$($LFS_MIGRATE -y -S '1m' $dir)
5259         local rc=$?
5260         [ $rc -eq 0 ] || error "migrate failed rc = $rc"
5261         echo "done"
5262
5263         # make sure all links have been properly migrated
5264         echo -n "verifying files..."
5265         fid=$($LFS getstripe -F "$file1") ||
5266                 error "cannot get fid for file $file1"
5267         for i in $(seq 2 $total_count); do
5268                 local fid2=$($LFS getstripe -F $dir/file$i)
5269                 [ "$fid2" == "$fid" ] ||
5270                         error "migrated hard link has mismatched FID"
5271         done
5272
5273         # make sure hard links were properly detected, and migration was
5274         # performed only once for the entire link set; nonlinked files should
5275         # also be migrated
5276         local actual=$(grep -c 'done migrate' <<< "$migrate_out")
5277         local expected=$(($uniq_count + 1))
5278         [ "$actual" -eq  "$expected" ] ||
5279                 error "hard links individually migrated ($actual != $expected)"
5280
5281         # make sure the correct number of hard links are present
5282         local hardlinks=$(stat -c '%h' "$file1")
5283         [ $hardlinks -eq $total_count ] ||
5284                 error "num hard links $hardlinks != $total_count"
5285         echo "done"
5286
5287         return 0
5288 }
5289
5290 test_56xb() {
5291         local dir0="$DIR/$tdir"
5292
5293         test_mkdir "$dir0" || error "cannot create dir $dir0"
5294
5295         echo "testing lfs migrate mode when all links fit within xattrs"
5296         LFS_MIGRATE_RSYNC=false check_migrate_links "$dir0" 2 99
5297
5298         echo "testing rsync mode when all links fit within xattrs"
5299         LFS_MIGRATE_RSYNC=true check_migrate_links "$dir0" 2 99
5300
5301         echo "testing lfs migrate mode when all links do not fit within xattrs"
5302         LFS_MIGRATE_RSYNC=false check_migrate_links "$dir0" 101 100
5303
5304         echo "testing rsync mode when all links do not fit within xattrs"
5305         LFS_MIGRATE_RSYNC=true check_migrate_links "$dir0" 101 100
5306
5307         # clean up
5308         rm -rf $dir0
5309 }
5310 run_test 56xb "lfs migration hard link support"
5311
5312 test_56y() {
5313         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.53) ] &&
5314                 skip "No HSM $(lustre_build_version $SINGLEMDS) MDS < 2.4.53" &&
5315                 return
5316
5317         local res=""
5318         local dir0=$DIR/$tdir/$testnum
5319         test_mkdir -p $dir0
5320         local f1=$dir0/file1
5321         local f2=$dir0/file2
5322
5323         touch $f1 || error "creating std file $f1"
5324         $MULTIOP $f2 H2c || error "creating released file $f2"
5325
5326         # a directory can be raid0, so ask only for files
5327         res=$($LFIND $dir0 -L raid0 -type f | wc -l)
5328         [[ $res == 2 ]] || error "search raid0: found $res files != 2"
5329
5330         res=$($LFIND $dir0 \! -L raid0 -type f | wc -l)
5331         [[ $res == 0 ]] || error "search !raid0: found $res files != 0"
5332
5333         # only files can be released, so no need to force file search
5334         res=$($LFIND $dir0 -L released)
5335         [[ $res == $f2 ]] || error "search released: found $res != $f2"
5336
5337         res=$($LFIND $dir0 \! -L released)
5338         [[ $res == $f1 ]] || error "search !released: found $res != $f1"
5339
5340 }
5341 run_test 56y "lfs find -L raid0|released"
5342
5343 test_56z() { # LU-4824
5344         # This checks to make sure 'lfs find' continues after errors
5345         # There are two classes of errors that should be caught:
5346         # - If multiple paths are provided, all should be searched even if one
5347         #   errors out
5348         # - If errors are encountered during the search, it should not terminate
5349         #   early
5350         local i
5351         test_mkdir $DIR/$tdir
5352         for i in d{0..9}; do
5353                 test_mkdir $DIR/$tdir/$i
5354         done
5355         touch $DIR/$tdir/d{0..9}/$tfile
5356         $LFS find $DIR/non_existent_dir $DIR/$tdir &&
5357                 error "$LFS find did not return an error"
5358         # Make a directory unsearchable. This should NOT be the last entry in
5359         # directory order.  Arbitrarily pick the 6th entry
5360         chmod 700 $($LFS find $DIR/$tdir -type d | sed '6!d')
5361         local count=$($RUNAS $LFS find $DIR/non_existent $DIR/$tdir | wc -l)
5362         # The user should be able to see 10 directories and 9 files
5363         [ $count == 19 ] || error "$LFS find did not continue after error"
5364 }
5365 run_test 56z "lfs find should continue after an error"
5366
5367 test_56aa() { # LU-5937
5368         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
5369
5370         mkdir $DIR/$tdir
5371         $LFS setdirstripe -c$MDSCOUNT $DIR/$tdir/striped_dir
5372
5373         createmany -o $DIR/$tdir/striped_dir/${tfile}- 1024
5374         local dirs=$(lfs find --size +8k $DIR/$tdir/)
5375
5376         [ -n "$dirs" ] || error "lfs find --size wrong under striped dir"
5377 }
5378 run_test 56aa "lfs find --size under striped dir"
5379
5380 test_56ba() {
5381         # Create composite files with one component
5382         TDIR=$DIR/$tdir/1Mfiles
5383         setup_56 5 1 "--component-end 1M"
5384         # Create composite files with three components
5385         TDIR=$DIR/$tdir/2Mfiles
5386         setup_56 5 2 "-E 2M -E 4M -E 6M"
5387         TDIR=$DIR/$tdir
5388         # Create non-composite files
5389         createmany -o $TDIR/${tfile}- 10
5390
5391         local nfiles=$($LFIND --component-end 1M --type f $TDIR | wc -l)
5392         [[ $nfiles == 10 ]] ||
5393                 error "lfs find -E 1M found $nfiles != 10 files"
5394
5395         nfiles=$($LFIND ! -E 1M --type f $TDIR | wc -l)
5396         [[ $nfiles == 25 ]] ||
5397                 error "lfs find ! -E 1M found $nfiles != 25 files"
5398
5399         # All files have a component that starts at 0
5400         local nfiles=$($LFIND --component-start 0 --type f $TDIR | wc -l)
5401         [[ $nfiles == 35 ]] ||
5402                 error "lfs find --component-start 0 found $nfiles != 35 files"
5403
5404         nfiles=$($LFIND --component-start 2M --type f $TDIR | wc -l)
5405         [[ $nfiles == 15 ]] ||
5406                 error "$LFIND --component-start 2M found $nfiles != 15 files"
5407
5408         # All files created here have a componenet that does not starts at 2M
5409         nfiles=$($LFIND ! --component-start 2M --type f $TDIR | wc -l)
5410         [[ $nfiles == 35 ]] ||
5411                 error "$LFIND ! --component-start 2M found $nfiles != 35 files"
5412
5413         # Find files with a specified number of components
5414         local nfiles=$($LFIND --component-count 3 --type f $TDIR | wc -l)
5415         [[ $nfiles == 15 ]] ||
5416                 error "lfs find --component-count 3 found $nfiles != 15 files"
5417
5418         # Remember non-composite files have a component count of zero
5419         local nfiles=$($LFIND --component-count 0 --type f $TDIR | wc -l)
5420         [[ $nfiles == 10 ]] ||
5421                 error "lfs find --component-count 0 found $nfiles != 10 files"
5422
5423         nfiles=$($LFIND ! --component-count 3 --type f $TDIR | wc -l)
5424         [[ $nfiles == 20 ]] ||
5425                 error "$LFIND ! --component-count 3 found $nfiles != 20 files"
5426
5427         # All files have a flag called "init"
5428         local nfiles=$($LFIND --component-flags init --type f $TDIR | wc -l)
5429         [[ $nfiles == 35 ]] ||
5430                 error "$LFIND --component-flags init found $nfiles != 35 files"
5431
5432         # Multi-component files will have a component not initialized
5433         local nfiles=$($LFIND ! --component-flags init --type f $TDIR | wc -l)
5434         [[ $nfiles == 15 ]] ||
5435                 error "$LFIND !--component-flags init found $nfiles != 15 files"
5436
5437         rm -rf $TDIR
5438
5439 }
5440 run_test 56ba "test lfs find --component-end, -start, -count, and -flags"
5441
5442 test_57a() {
5443         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5444         # note test will not do anything if MDS is not local
5445         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
5446                 skip "ldiskfs only test"
5447                 return
5448         fi
5449
5450         remote_mds_nodsh && skip "remote MDS with nodsh" && return
5451         local MNTDEV="osd*.*MDT*.mntdev"
5452         DEV=$(do_facet $SINGLEMDS lctl get_param -n $MNTDEV)
5453         [ -z "$DEV" ] && error "can't access $MNTDEV"
5454         for DEV in $(do_facet $SINGLEMDS lctl get_param -n $MNTDEV); do
5455                 do_facet $SINGLEMDS $DUMPE2FS -h $DEV > $TMP/t57a.dump ||
5456                         error "can't access $DEV"
5457                 DEVISIZE=$(awk '/Inode size:/ { print $3 }' $TMP/t57a.dump)
5458                 [[ $DEVISIZE -gt 128 ]] || error "inode size $DEVISIZE"
5459                 rm $TMP/t57a.dump
5460         done
5461 }
5462 run_test 57a "verify MDS filesystem created with large inodes =="
5463
5464 test_57b() {
5465         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5466         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
5467                 skip "ldiskfs only test"
5468                 return
5469         fi
5470
5471         remote_mds_nodsh && skip "remote MDS with nodsh" && return
5472         local dir=$DIR/$tdir
5473
5474         local FILECOUNT=100
5475         local FILE1=$dir/f1
5476         local FILEN=$dir/f$FILECOUNT
5477
5478         rm -rf $dir || error "removing $dir"
5479         test_mkdir -c1 $dir
5480         local mdtidx=$($LFS getstripe -M $dir)
5481         local mdtname=MDT$(printf %04x $mdtidx)
5482         local facet=mds$((mdtidx + 1))
5483
5484         echo "mcreating $FILECOUNT files"
5485         createmany -m $dir/f 1 $FILECOUNT || \
5486                 error "creating files in $dir"
5487
5488         # verify that files do not have EAs yet
5489         $GETSTRIPE $FILE1 2>&1 | grep -q "no stripe" || error "$FILE1 has an EA"
5490         $GETSTRIPE $FILEN 2>&1 | grep -q "no stripe" || error "$FILEN has an EA"
5491
5492         sync
5493         sleep 1
5494         df $dir  #make sure we get new statfs data
5495         local MDSFREE=$(do_facet $facet \
5496                 lctl get_param -n osd*.*$mdtname.kbytesfree)
5497         local MDCFREE=$(lctl get_param -n mdc.*$mdtname-mdc-*.kbytesfree)
5498         echo "opening files to create objects/EAs"
5499         local FILE
5500         for FILE in `seq -f $dir/f%g 1 $FILECOUNT`; do
5501                 $OPENFILE -f O_RDWR $FILE > /dev/null 2>&1 || error "opening $FILE"
5502         done
5503
5504         # verify that files have EAs now
5505         $GETSTRIPE $FILE1 | grep -q "obdidx" || error "$FILE1 missing EA"
5506         $GETSTRIPE $FILEN | grep -q "obdidx" || error "$FILEN missing EA"
5507
5508         sleep 1  #make sure we get new statfs data
5509         df $dir
5510         local MDSFREE2=$(do_facet $facet \
5511                 lctl get_param -n osd*.*$mdtname.kbytesfree)
5512         local MDCFREE2=$(lctl get_param -n mdc.*$mdtname-mdc-*.kbytesfree)
5513         if [[ $MDCFREE2 -lt $((MDCFREE - 16)) ]]; then
5514                 if [ "$MDSFREE" != "$MDSFREE2" ]; then
5515                         error "MDC before $MDCFREE != after $MDCFREE2"
5516                 else
5517                         echo "MDC before $MDCFREE != after $MDCFREE2"
5518                         echo "unable to confirm if MDS has large inodes"
5519                 fi
5520         fi
5521         rm -rf $dir
5522 }
5523 run_test 57b "default LOV EAs are stored inside large inodes ==="
5524
5525 test_58() {
5526         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5527         [ -z "$(which wiretest 2>/dev/null)" ] &&
5528                         skip_env "could not find wiretest" && return
5529         wiretest
5530 }
5531 run_test 58 "verify cross-platform wire constants =============="
5532
5533 test_59() {
5534         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5535         echo "touch 130 files"
5536         createmany -o $DIR/f59- 130
5537         echo "rm 130 files"
5538         unlinkmany $DIR/f59- 130
5539         sync
5540         # wait for commitment of removal
5541         wait_delete_completed
5542 }
5543 run_test 59 "verify cancellation of llog records async ========="
5544
5545 TEST60_HEAD="test_60 run $RANDOM"
5546 test_60a() {
5547         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5548         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
5549         do_facet mgs "! which run-llog.sh &> /dev/null" &&
5550                 do_facet mgs "! ls run-llog.sh &> /dev/null" &&
5551                         skip_env "missing subtest run-llog.sh" && return
5552
5553         log "$TEST60_HEAD - from kernel mode"
5554         do_facet mgs "$LCTL set_param debug=warning; $LCTL dk > /dev/null"
5555         do_facet mgs "sh run-llog.sh" || error "run-llog.sh failed"
5556         do_facet mgs $LCTL dk > $TMP/$tfile
5557
5558         # LU-6388: test llog_reader
5559         local llog_reader=$(do_facet mgs "which llog_reader 2> /dev/null")
5560         llog_reader=${llog_reader:-$LUSTRE/utils/llog_reader}
5561         [ -z $(do_facet mgs ls -d $llog_reader 2> /dev/null) ] &&
5562                         skip_env "missing llog_reader" && return
5563         local fstype=$(facet_fstype mgs)
5564         [ $fstype != ldiskfs -a $fstype != zfs ] &&
5565                 skip_env "Only for ldiskfs or zfs type mgs" && return
5566
5567         local mntpt=$(facet_mntpt mgs)
5568         local mgsdev=$(mgsdevname 1)
5569         local fid_list
5570         local fid
5571         local rec_list
5572         local rec
5573         local rec_type
5574         local obj_file
5575         local path
5576         local seq
5577         local oid
5578         local pass=true
5579
5580         #get fid and record list
5581         fid_list=($(awk '/9_sub.*record/ { print $NF }' /$TMP/$tfile |
5582                 tail -n 4))
5583         rec_list=($(awk '/9_sub.*record/ { print $((NF-3)) }' /$TMP/$tfile |
5584                 tail -n 4))
5585         #remount mgs as ldiskfs or zfs type
5586         stop mgs || error "stop mgs failed"
5587         mount_fstype mgs || error "remount mgs failed"
5588         for ((i = 0; i < ${#fid_list[@]}; i++)); do
5589                 fid=${fid_list[i]}
5590                 rec=${rec_list[i]}
5591                 seq=$(echo $fid | awk -F ':' '{ print $1 }' | sed -e "s/^0x//g")
5592                 oid=$(echo $fid | awk -F ':' '{ print $2 }' | sed -e "s/^0x//g")
5593                 oid=$((16#$oid))
5594
5595                 case $fstype in
5596                         ldiskfs )
5597                                 obj_file=$mntpt/O/$seq/d$((oid%32))/$oid ;;
5598                         zfs )
5599                                 obj_file=$mntpt/oi.$(($((16#$seq))&127))/$fid ;;
5600                 esac
5601                 echo "obj_file is $obj_file"
5602                 do_facet mgs $llog_reader $obj_file
5603
5604                 rec_type=$(do_facet mgs $llog_reader $obj_file | grep "type=" |
5605                         awk '{ print $3 }' | sed -e "s/^type=//g")
5606                 if [ $rec_type != $rec ]; then
5607                         echo "FAILED test_60a wrong record type $rec_type," \
5608                               "should be $rec"
5609                         pass=false
5610                         break
5611                 fi
5612
5613                 #check obj path if record type is LLOG_LOGID_MAGIC
5614                 if [ "$rec" == "1064553b" ]; then
5615                         path=$(do_facet mgs $llog_reader $obj_file |
5616                                 grep "path=" | awk '{ print $NF }' |
5617                                 sed -e "s/^path=//g")
5618                         if [ $obj_file != $mntpt/$path ]; then
5619                                 echo "FAILED test_60a wrong obj path" \
5620                                       "$montpt/$path, should be $obj_file"
5621                                 pass=false
5622                                 break
5623                         fi
5624                 fi
5625         done
5626         rm -f $TMP/$tfile
5627         #restart mgs before "error", otherwise it will block the next test
5628         stop mgs || error "stop mgs failed"
5629         start mgs $(mgsdevname) $MGS_MOUNT_OPTS || error "start mgs failed"
5630         $pass || error "test failed, see FAILED test_60a messages for specifics"
5631 }
5632 run_test 60a "llog_test run from kernel module and test llog_reader"
5633
5634 test_60aa() {
5635         # test old logid format
5636         if [ $(lustre_version_code mgs) -le $(version_code 3.1.53) ]; then
5637                 do_facet mgs $LCTL dl | grep MGS
5638                 do_facet mgs "$LCTL --device %MGS llog_print \\\\\\\$$FSNAME-client" ||
5639                         error "old llog_print failed"
5640         fi
5641
5642         # test new logid format
5643         if [ $(lustre_version_code mgs) -ge $(version_code 2.9.53) ]; then
5644                 do_facet mgs "$LCTL --device MGS llog_print $FSNAME-client" ||
5645                         error "new llog_print failed"
5646         fi
5647 }
5648 run_test 60aa "llog_print works with FIDs and simple names"
5649
5650 test_60b() { # bug 6411
5651         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5652         dmesg > $DIR/$tfile
5653         LLOG_COUNT=$(dmesg | awk "/$TEST60_HEAD/ { marker = 1; from_marker = 0; }
5654                                 /llog.test/ {
5655                                         if (marker)
5656                                                 from_marker++
5657                                         from_begin++
5658                                 }
5659                                 END {
5660                                         if (marker)
5661                                                 print from_marker
5662                                         else
5663                                                 print from_begin
5664                                 }")
5665         [[ $LLOG_COUNT -gt 100 ]] &&
5666                 error "CDEBUG_LIMIT not limiting messages ($LLOG_COUNT)" || true
5667 }
5668 run_test 60b "limit repeated messages from CERROR/CWARN ========"
5669
5670 test_60c() {
5671         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5672         echo "create 5000 files"
5673         createmany -o $DIR/f60c- 5000
5674 #define OBD_FAIL_MDS_LLOG_CREATE_FAILED  0x137
5675         lctl set_param fail_loc=0x80000137
5676         unlinkmany $DIR/f60c- 5000
5677         lctl set_param fail_loc=0
5678 }
5679 run_test 60c "unlink file when mds full"
5680
5681 test_60d() {
5682         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5683         SAVEPRINTK=$(lctl get_param -n printk)
5684
5685         # verify "lctl mark" is even working"
5686         MESSAGE="test message ID $RANDOM $$"
5687         $LCTL mark "$MESSAGE" || error "$LCTL mark failed"
5688         dmesg | grep -q "$MESSAGE" || error "didn't find debug marker in log"
5689
5690         lctl set_param printk=0 || error "set lnet.printk failed"
5691         lctl get_param -n printk | grep emerg || error "lnet.printk dropped emerg"
5692         MESSAGE="new test message ID $RANDOM $$"
5693         # Assume here that libcfs_debug_mark_buffer() uses D_WARNING
5694         $LCTL mark "$MESSAGE" || error "$LCTL mark failed"
5695         dmesg | grep -q "$MESSAGE" && error "D_WARNING wasn't masked" || true
5696
5697         lctl set_param -n printk="$SAVEPRINTK"
5698 }
5699 run_test 60d "test printk console message masking"
5700
5701 test_60e() {
5702         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5703         remote_mds_nodsh && skip "remote MDS with nodsh" && return
5704         touch $DIR/$tfile
5705 #define OBD_FAIL_MDS_LLOG_CREATE_FAILED2  0x15b
5706         do_facet mds1 lctl set_param fail_loc=0x15b
5707         rm $DIR/$tfile
5708 }
5709 run_test 60e "no space while new llog is being created"
5710
5711 test_61() {
5712         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5713         f="$DIR/f61"
5714         dd if=/dev/zero of=$f bs=$(page_size) count=1 || error "dd $f failed"
5715         cancel_lru_locks osc
5716         $MULTIOP $f OSMWUc || error "$MULTIOP $f failed"
5717         sync
5718 }
5719 run_test 61 "mmap() writes don't make sync hang ================"
5720
5721 # bug 2330 - insufficient obd_match error checking causes LBUG
5722 test_62() {
5723         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5724         f="$DIR/f62"
5725         echo foo > $f
5726         cancel_lru_locks osc
5727         lctl set_param fail_loc=0x405
5728         cat $f && error "cat succeeded, expect -EIO"
5729         lctl set_param fail_loc=0
5730 }
5731 # This test is now irrelevant (as of bug 10718 inclusion), we no longer
5732 # match every page all of the time.
5733 #run_test 62 "verify obd_match failure doesn't LBUG (should -EIO)"
5734
5735 # bug 2319 - oig_wait() interrupted causes crash because of invalid waitq.
5736 # Though this test is irrelevant anymore, it helped to reveal some
5737 # other grant bugs (LU-4482), let's keep it.
5738 test_63a() {   # was test_63
5739         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5740         MAX_DIRTY_MB=`lctl get_param -n osc.*.max_dirty_mb | head -n 1`
5741         for i in `seq 10` ; do
5742                 dd if=/dev/zero of=$DIR/f63 bs=8k &
5743                 sleep 5
5744                 kill $!
5745                 sleep 1
5746         done
5747
5748         rm -f $DIR/f63 || true
5749 }
5750 run_test 63a "Verify oig_wait interruption does not crash ======="
5751
5752 # bug 2248 - async write errors didn't return to application on sync
5753 # bug 3677 - async write errors left page locked
5754 test_63b() {
5755         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5756         debugsave
5757         lctl set_param debug=-1
5758
5759         # ensure we have a grant to do async writes
5760         dd if=/dev/zero of=$DIR/$tfile bs=4k count=1
5761         rm $DIR/$tfile
5762
5763         sync    # sync lest earlier test intercept the fail_loc
5764
5765         #define OBD_FAIL_OSC_BRW_PREP_REQ        0x406
5766         lctl set_param fail_loc=0x80000406
5767         $MULTIOP $DIR/$tfile Owy && \
5768                 error "sync didn't return ENOMEM"
5769         sync; sleep 2; sync     # do a real sync this time to flush page
5770         lctl get_param -n llite.*.dump_page_cache | grep locked && \
5771                 error "locked page left in cache after async error" || true
5772         debugrestore
5773 }
5774 run_test 63b "async write errors should be returned to fsync ==="
5775
5776 test_64a () {
5777         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5778         df $DIR
5779         lctl get_param -n osc.*[oO][sS][cC][_-]*.cur* | grep "[0-9]"
5780 }
5781 run_test 64a "verify filter grant calculations (in kernel) ====="
5782
5783 test_64b () {
5784         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5785         sh oos.sh $MOUNT || error "oos.sh failed: $?"
5786 }
5787 run_test 64b "check out-of-space detection on client"
5788
5789 test_64c() {
5790         $LCTL set_param osc.*OST0000-osc-[^mM]*.cur_grant_bytes=0
5791 }
5792 run_test 64c "verify grant shrink"
5793
5794 # bug 1414 - set/get directories' stripe info
5795 test_65a() {
5796         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5797         test_mkdir $DIR/$tdir
5798         touch $DIR/$tdir/f1
5799         $LVERIFY $DIR/$tdir $DIR/$tdir/f1 || error "lverify failed"
5800 }
5801 run_test 65a "directory with no stripe info"
5802
5803 test_65b() {
5804         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5805         test_mkdir $DIR/$tdir
5806         local STRIPESIZE=$($GETSTRIPE -S $DIR/$tdir)
5807
5808         $SETSTRIPE -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
5809                                                 error "setstripe"
5810         touch $DIR/$tdir/f2
5811         $LVERIFY $DIR/$tdir $DIR/$tdir/f2 || error "lverify failed"
5812 }
5813 run_test 65b "directory setstripe -S stripe_size*2 -i 0 -c 1"
5814
5815 test_65c() {
5816         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5817         [ $OSTCOUNT -lt 2 ] && skip "need at least 2 OSTs" && return
5818         test_mkdir $DIR/$tdir
5819         local stripesize=$($GETSTRIPE -S $DIR/$tdir)
5820
5821         $LFS setstripe -S $((stripesize * 4)) -i 1 \
5822                 -c $((OSTCOUNT - 1)) $DIR/$tdir || error "setstripe"
5823         touch $DIR/$tdir/f3
5824         $LVERIFY $DIR/$tdir $DIR/$tdir/f3 || error "lverify failed"
5825 }
5826 run_test 65c "directory setstripe -S stripe_size*4 -i 1 -c $((OSTCOUNT-1))"
5827
5828 test_65d() {
5829         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5830         test_mkdir $DIR/$tdir
5831         local STRIPECOUNT=$($GETSTRIPE -c $DIR/$tdir)
5832         local STRIPESIZE=$($GETSTRIPE -S $DIR/$tdir)
5833
5834         if [[ $STRIPECOUNT -le 0 ]]; then
5835                 sc=1
5836         elif [[ $STRIPECOUNT -gt 2000 ]]; then
5837 #LOV_MAX_STRIPE_COUNT is 2000
5838                 [[ $OSTCOUNT -gt 2000 ]] && sc=2000 || sc=$(($OSTCOUNT - 1))
5839         else
5840                 sc=$(($STRIPECOUNT - 1))
5841         fi
5842         $SETSTRIPE -S $STRIPESIZE -c $sc $DIR/$tdir || error "setstripe"
5843         touch $DIR/$tdir/f4 $DIR/$tdir/f5
5844         $LVERIFY $DIR/$tdir $DIR/$tdir/f4 $DIR/$tdir/f5 ||
5845                 error "lverify failed"
5846 }
5847 run_test 65d "directory setstripe -S stripe_size -c stripe_count"
5848
5849 test_65e() {
5850         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5851         test_mkdir $DIR/$tdir
5852
5853         $SETSTRIPE $DIR/$tdir || error "setstripe"
5854         $GETSTRIPE -v $DIR/$tdir | grep "Default" ||
5855                                         error "no stripe info failed"
5856         touch $DIR/$tdir/f6
5857         $LVERIFY $DIR/$tdir $DIR/$tdir/f6 || error "lverify failed"
5858 }
5859 run_test 65e "directory setstripe defaults"
5860
5861 test_65f() {
5862         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5863         test_mkdir $DIR/${tdir}f
5864         $RUNAS $SETSTRIPE $DIR/${tdir}f && error "setstripe succeeded" || true
5865 }
5866 run_test 65f "dir setstripe permission (should return error) ==="
5867
5868 test_65g() {
5869         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5870         test_mkdir $DIR/$tdir
5871         local STRIPESIZE=$($GETSTRIPE -S $DIR/$tdir)
5872
5873         $LFS setstripe -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
5874                 error "setstripe -S failed"
5875         $LFS setstripe -d $DIR/$tdir || error "setstripe -d failed"
5876         $LFS getstripe -v $DIR/$tdir | grep "Default" ||
5877                 error "delete default stripe failed"
5878 }
5879 run_test 65g "directory setstripe -d"
5880
5881 test_65h() {
5882         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5883         test_mkdir $DIR/$tdir
5884         local STRIPESIZE=$($GETSTRIPE -S $DIR/$tdir)
5885
5886         $LFS setstripe -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
5887                 error "setstripe -S failed"
5888         test_mkdir $DIR/$tdir/dd1
5889         [ $($LFS getstripe -c $DIR/$tdir) = $($GETSTRIPE -c $DIR/$tdir/dd1) ] ||
5890                 error "stripe info inherit failed"
5891 }
5892 run_test 65h "directory stripe info inherit ===================="
5893
5894 test_65i() { # bug6367
5895         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5896         $SETSTRIPE -S 65536 -c -1 $MOUNT
5897 }
5898 run_test 65i "set non-default striping on root directory (bug 6367)="
5899
5900 test_65ia() { # bug12836
5901         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5902         $GETSTRIPE $MOUNT || error "getstripe $MOUNT failed"
5903 }
5904 run_test 65ia "getstripe on -1 default directory striping"
5905
5906 test_65ib() { # bug12836
5907         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5908         $GETSTRIPE -v $MOUNT || error "getstripe -v $MOUNT failed"
5909 }
5910 run_test 65ib "getstripe -v on -1 default directory striping"
5911
5912 test_65ic() { # bug12836
5913         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5914         $LFS find -mtime -1 $MOUNT > /dev/null || error "find $MOUNT failed"
5915 }
5916 run_test 65ic "new find on -1 default directory striping"
5917
5918 test_65j() { # bug6367
5919         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5920         sync; sleep 1
5921         # if we aren't already remounting for each test, do so for this test
5922         if [ "$CLEANUP" = ":" -a "$I_MOUNTED" = "yes" ]; then
5923                 cleanup || error "failed to unmount"
5924                 setup
5925         fi
5926         $SETSTRIPE -d $MOUNT || error "setstripe failed"
5927 }
5928 run_test 65j "set default striping on root directory (bug 6367)="
5929
5930 test_65k() { # bug11679
5931         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5932         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
5933         remote_mds_nodsh && skip "remote MDS with nodsh" && return
5934
5935         local disable_precreate=true
5936         [ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.8.54) ] &&
5937                 disable_precreate=false
5938
5939         echo "Check OST status: "
5940         local MDS_OSCS=$(do_facet $SINGLEMDS lctl dl |
5941                 awk '/[oO][sS][cC].*md[ts]/ { print $4 }')
5942
5943         for OSC in $MDS_OSCS; do
5944                 echo $OSC "is active"
5945                 do_facet $SINGLEMDS lctl --device %$OSC activate
5946         done
5947
5948         for INACTIVE_OSC in $MDS_OSCS; do
5949                 local ost=$(osc_to_ost $INACTIVE_OSC)
5950                 local ostnum=$(do_facet $SINGLEMDS lctl get_param -n \
5951                                lov.*md*.target_obd |
5952                                awk -F: /$ost/'{ print $1 }' | head -n 1)
5953
5954                 mkdir -p $DIR/$tdir
5955                 $SETSTRIPE -i $ostnum -c 1 $DIR/$tdir
5956                 createmany -o $DIR/$tdir/$tfile.$ostnum. 1000
5957
5958                 echo "Deactivate: " $INACTIVE_OSC
5959                 do_facet $SINGLEMDS lctl --device %$INACTIVE_OSC deactivate
5960
5961                 local count=$(do_facet $SINGLEMDS "lctl get_param -n \
5962                               osp.$ost*MDT0000.create_count")
5963                 local max_count=$(do_facet $SINGLEMDS "lctl get_param -n \
5964                                   osp.$ost*MDT0000.max_create_count")
5965                 $disable_precreate &&
5966                         do_facet $SINGLEMDS "lctl set_param -n \
5967                                 osp.$ost*MDT0000.max_create_count=0"
5968
5969                 for idx in $(seq 0 $((OSTCOUNT - 1))); do
5970                         [ -f $DIR/$tdir/$idx ] && continue
5971                         echo "$SETSTRIPE -i $idx -c 1 $DIR/$tdir/$idx"
5972                         $SETSTRIPE -i $idx -c 1 $DIR/$tdir/$idx ||
5973                                 error "setstripe $idx should succeed"
5974                         rm -f $DIR/$tdir/$idx || error "rm $idx failed"
5975                 done
5976                 unlinkmany $DIR/$tdir/$tfile.$ostnum. 1000
5977                 rmdir $DIR/$tdir
5978
5979                 do_facet $SINGLEMDS "lctl set_param -n \
5980                         osp.$ost*MDT0000.max_create_count=$max_count"
5981                 do_facet $SINGLEMDS "lctl set_param -n \
5982                         osp.$ost*MDT0000.create_count=$count"
5983                 do_facet $SINGLEMDS lctl --device  %$INACTIVE_OSC activate
5984                 echo $INACTIVE_OSC "is Activate"
5985
5986                 wait_osc_import_state mds ost$ostnum FULL
5987         done
5988 }
5989 run_test 65k "validate manual striping works properly with deactivated OSCs"
5990
5991 test_65l() { # bug 12836
5992         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5993         test_mkdir -p $DIR/$tdir/test_dir
5994         $SETSTRIPE -c -1 $DIR/$tdir/test_dir
5995         $LFS find -mtime -1 $DIR/$tdir >/dev/null
5996 }
5997 run_test 65l "lfs find on -1 stripe dir ========================"
5998
5999 test_65m() {
6000         $RUNAS $SETSTRIPE -c 2 $MOUNT && error "setstripe should fail"
6001         true
6002 }
6003 run_test 65m "normal user can't set filesystem default stripe"
6004
6005 # bug 2543 - update blocks count on client
6006 test_66() {
6007         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6008         COUNT=${COUNT:-8}
6009         dd if=/dev/zero of=$DIR/f66 bs=1k count=$COUNT
6010         sync; sync_all_data; sync; sync_all_data
6011         cancel_lru_locks osc
6012         BLOCKS=`ls -s $DIR/f66 | awk '{ print $1 }'`
6013         [ $BLOCKS -ge $COUNT ] || error "$DIR/f66 blocks $BLOCKS < $COUNT"
6014 }
6015 run_test 66 "update inode blocks count on client ==============="
6016
6017 meminfo() {
6018         awk '($1 == "'$1':") { print $2 }' /proc/meminfo
6019 }
6020
6021 swap_used() {
6022         swapon -s | awk '($1 == "'$1'") { print $4 }'
6023 }
6024
6025 # bug5265, obdfilter oa2dentry return -ENOENT
6026 # #define OBD_FAIL_SRV_ENOENT 0x217
6027 test_69() {
6028         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6029         remote_ost_nodsh && skip "remote OST with nodsh" && return
6030
6031         f="$DIR/$tfile"
6032         $SETSTRIPE -c 1 -i 0 $f
6033
6034         $DIRECTIO write ${f}.2 0 1 || error "directio write error"
6035
6036         do_facet ost1 lctl set_param fail_loc=0x217
6037         $TRUNCATE $f 1 # vmtruncate() will ignore truncate() error.
6038         $DIRECTIO write $f 0 2 && error "write succeeded, expect -ENOENT"
6039
6040         do_facet ost1 lctl set_param fail_loc=0
6041         $DIRECTIO write $f 0 2 || error "write error"
6042
6043         cancel_lru_locks osc
6044         $DIRECTIO read $f 0 1 || error "read error"
6045
6046         do_facet ost1 lctl set_param fail_loc=0x217
6047         $DIRECTIO read $f 1 1 && error "read succeeded, expect -ENOENT"
6048
6049         do_facet ost1 lctl set_param fail_loc=0
6050         rm -f $f
6051 }
6052 run_test 69 "verify oa2dentry return -ENOENT doesn't LBUG ======"
6053
6054 test_71() {
6055         test_mkdir $DIR/$tdir
6056         $LFS setdirstripe -D -c$MDSCOUNT $DIR/$tdir
6057         sh rundbench -C -D $DIR/$tdir 2 || error "dbench failed!"
6058 }
6059 run_test 71 "Running dbench on lustre (don't segment fault) ===="
6060
6061 test_72a() { # bug 5695 - Test that on 2.6 remove_suid works properly
6062         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6063         [ "$RUNAS_ID" = "$UID" ] &&
6064                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
6065
6066         # Check that testing environment is properly set up. Skip if not
6067         FAIL_ON_ERROR=false check_runas_id_ret $RUNAS_ID $RUNAS_GID $RUNAS || {
6068                 skip_env "User $RUNAS_ID does not exist - skipping"
6069                 return 0
6070         }
6071         touch $DIR/$tfile
6072         chmod 777 $DIR/$tfile
6073         chmod ug+s $DIR/$tfile
6074         $RUNAS dd if=/dev/zero of=$DIR/$tfile bs=512 count=1 ||
6075                 error "$RUNAS dd $DIR/$tfile failed"
6076         # See if we are still setuid/sgid
6077         test -u $DIR/$tfile -o -g $DIR/$tfile &&
6078                 error "S/gid is not dropped on write"
6079         # Now test that MDS is updated too
6080         cancel_lru_locks mdc
6081         test -u $DIR/$tfile -o -g $DIR/$tfile &&
6082                 error "S/gid is not dropped on MDS"
6083         rm -f $DIR/$tfile
6084 }
6085 run_test 72a "Test that remove suid works properly (bug5695) ===="
6086
6087 test_72b() { # bug 24226 -- keep mode setting when size is not changing
6088         local perm
6089
6090         [ "$RUNAS_ID" = "$UID" ] && \
6091                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
6092         [ "$RUNAS_ID" -eq 0 ] && \
6093                 skip_env "RUNAS_ID = 0 -- skipping" && return
6094
6095         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6096         # Check that testing environment is properly set up. Skip if not
6097         FAIL_ON_ERROR=false check_runas_id_ret $RUNAS_ID $RUNAS_ID $RUNAS || {
6098                 skip_env "User $RUNAS_ID does not exist - skipping"
6099                 return 0
6100         }
6101         touch $DIR/${tfile}-f{g,u}
6102         test_mkdir $DIR/${tfile}-dg
6103         test_mkdir $DIR/${tfile}-du
6104         chmod 770 $DIR/${tfile}-{f,d}{g,u}
6105         chmod g+s $DIR/${tfile}-{f,d}g
6106         chmod u+s $DIR/${tfile}-{f,d}u
6107         for perm in 777 2777 4777; do
6108                 $RUNAS chmod $perm $DIR/${tfile}-fg && error "S/gid file allowed improper chmod to $perm"
6109                 $RUNAS chmod $perm $DIR/${tfile}-fu && error "S/uid file allowed improper chmod to $perm"
6110                 $RUNAS chmod $perm $DIR/${tfile}-dg && error "S/gid dir allowed improper chmod to $perm"
6111                 $RUNAS chmod $perm $DIR/${tfile}-du && error "S/uid dir allowed improper chmod to $perm"
6112         done
6113         true
6114 }
6115 run_test 72b "Test that we keep mode setting if without file data changed (bug 24226)"
6116
6117 # bug 3462 - multiple simultaneous MDC requests
6118 test_73() {
6119         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6120         test_mkdir $DIR/d73-1
6121         test_mkdir $DIR/d73-2
6122         multiop_bg_pause $DIR/d73-1/f73-1 O_c || return 1
6123         pid1=$!
6124
6125         lctl set_param fail_loc=0x80000129
6126         $MULTIOP $DIR/d73-1/f73-2 Oc &
6127         sleep 1
6128         lctl set_param fail_loc=0
6129
6130         $MULTIOP $DIR/d73-2/f73-3 Oc &
6131         pid3=$!
6132
6133         kill -USR1 $pid1
6134         wait $pid1 || return 1
6135
6136         sleep 25
6137
6138         $CHECKSTAT -t file $DIR/d73-1/f73-1 || return 4
6139         $CHECKSTAT -t file $DIR/d73-1/f73-2 || return 5
6140         $CHECKSTAT -t file $DIR/d73-2/f73-3 || return 6
6141
6142         rm -rf $DIR/d73-*
6143 }
6144 run_test 73 "multiple MDC requests (should not deadlock)"
6145
6146 test_74a() { # bug 6149, 6184
6147         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6148         #define OBD_FAIL_LDLM_ENQUEUE_OLD_EXPORT 0x30e
6149         #
6150         # very important to OR with OBD_FAIL_ONCE (0x80000000) -- otherwise it
6151         # will spin in a tight reconnection loop
6152         touch $DIR/f74a
6153         $LCTL set_param fail_loc=0x8000030e
6154         # get any lock that won't be difficult - lookup works.
6155         ls $DIR/f74a
6156         $LCTL set_param fail_loc=0
6157         rm -f $DIR/f74a
6158         true
6159 }
6160 run_test 74a "ldlm_enqueue freed-export error path, ls (shouldn't LBUG)"
6161
6162 test_74b() { # bug 13310
6163         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6164         #define OBD_FAIL_LDLM_ENQUEUE_OLD_EXPORT 0x30e
6165         #
6166         # very important to OR with OBD_FAIL_ONCE (0x80000000) -- otherwise it
6167         # will spin in a tight reconnection loop
6168         $LCTL set_param fail_loc=0x8000030e
6169         # get a "difficult" lock
6170         touch $DIR/f74b
6171         $LCTL set_param fail_loc=0
6172         rm -f $DIR/f74b
6173         true
6174 }
6175 run_test 74b "ldlm_enqueue freed-export error path, touch (shouldn't LBUG)"
6176
6177 test_74c() {
6178         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6179         #define OBD_FAIL_LDLM_NEW_LOCK
6180         $LCTL set_param fail_loc=0x319
6181         touch $DIR/$tfile && error "touch successful"
6182         $LCTL set_param fail_loc=0
6183         true
6184 }
6185 run_test 74c "ldlm_lock_create error path, (shouldn't LBUG)"
6186
6187 num_inodes() {
6188         awk '/lustre_inode_cache/ {print $2; exit}' /proc/slabinfo
6189 }
6190
6191 test_76() { # Now for bug 20433, added originally in bug 1443
6192         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6193         local CPUS=$(getconf _NPROCESSORS_ONLN 2>/dev/null)
6194         cancel_lru_locks osc
6195         BEFORE_INODES=$(num_inodes)
6196         echo "before inodes: $BEFORE_INODES"
6197         local COUNT=1000
6198         [ "$SLOW" = "no" ] && COUNT=100
6199         for i in $(seq $COUNT); do
6200                 touch $DIR/$tfile
6201                 rm -f $DIR/$tfile
6202         done
6203         cancel_lru_locks osc
6204         AFTER_INODES=$(num_inodes)
6205         echo "after inodes: $AFTER_INODES"
6206         local wait=0
6207         while [[ $((AFTER_INODES-1*${CPUS:-1})) -gt $BEFORE_INODES ]]; do
6208                 sleep 2
6209                 AFTER_INODES=$(num_inodes)
6210                 wait=$((wait+2))
6211                 echo "wait $wait seconds inodes: $AFTER_INODES"
6212                 if [ $wait -gt 30 ]; then
6213                         error "inode slab grew from $BEFORE_INODES to $AFTER_INODES"
6214                 fi
6215         done
6216 }
6217 run_test 76 "confirm clients recycle inodes properly ===="
6218
6219
6220 export ORIG_CSUM=""
6221 set_checksums()
6222 {
6223         # Note: in sptlrpc modes which enable its own bulk checksum, the
6224         # original crc32_le bulk checksum will be automatically disabled,
6225         # and the OBD_FAIL_OSC_CHECKSUM_SEND/OBD_FAIL_OSC_CHECKSUM_RECEIVE
6226         # will be checked by sptlrpc code against sptlrpc bulk checksum.
6227         # In this case set_checksums() will not be no-op, because sptlrpc
6228         # bulk checksum will be enabled all through the test.
6229
6230         [ "$ORIG_CSUM" ] || ORIG_CSUM=`lctl get_param -n osc.*.checksums | head -n1`
6231         lctl set_param -n osc.*.checksums $1
6232         return 0
6233 }
6234
6235 export ORIG_CSUM_TYPE="`lctl get_param -n osc.*osc-[^mM]*.checksum_type |
6236                         sed 's/.*\[\(.*\)\].*/\1/g' | head -n1`"
6237 CKSUM_TYPES=${CKSUM_TYPES:-"crc32 adler"}
6238 [ "$ORIG_CSUM_TYPE" = "crc32c" ] && CKSUM_TYPES="$CKSUM_TYPES crc32c"
6239 set_checksum_type()
6240 {
6241         lctl set_param -n osc.*osc-[^mM]*.checksum_type $1
6242         log "set checksum type to $1"
6243         return 0
6244 }
6245 F77_TMP=$TMP/f77-temp
6246 F77SZ=8
6247 setup_f77() {
6248         dd if=/dev/urandom of=$F77_TMP bs=1M count=$F77SZ || \
6249                 error "error writing to $F77_TMP"
6250 }
6251
6252 test_77a() { # bug 10889
6253         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6254         $GSS && skip "could not run with gss" && return
6255         [ ! -f $F77_TMP ] && setup_f77
6256         set_checksums 1
6257         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ || error "dd error"
6258         set_checksums 0
6259         rm -f $DIR/$tfile
6260 }
6261 run_test 77a "normal checksum read/write operation"
6262
6263 test_77b() { # bug 10889
6264         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6265         $GSS && skip "could not run with gss" && return
6266         [ ! -f $F77_TMP ] && setup_f77
6267         #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
6268         $LCTL set_param fail_loc=0x80000409
6269         set_checksums 1
6270
6271         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ conv=sync ||
6272                 error "dd error: $?"
6273         $LCTL set_param fail_loc=0
6274
6275         for algo in $CKSUM_TYPES; do
6276                 cancel_lru_locks osc
6277                 set_checksum_type $algo
6278                 #define OBD_FAIL_OSC_CHECKSUM_RECEIVE    0x408
6279                 $LCTL set_param fail_loc=0x80000408
6280                 cmp $F77_TMP $DIR/$tfile || error "file compare failed"
6281                 $LCTL set_param fail_loc=0
6282         done
6283         set_checksums 0
6284         set_checksum_type $ORIG_CSUM_TYPE
6285         rm -f $DIR/$tfile
6286 }
6287 run_test 77b "checksum error on client write, read"
6288
6289 cleanup_77c() {
6290         trap 0
6291         set_checksums 0
6292         $LCTL set_param osc.*osc-[^mM]*.checksum_dump=0
6293         $check_ost &&
6294                 do_facet ost1 $LCTL set_param obdfilter.*-OST*.checksum_dump=0
6295         [ -n $osc_file_prefix ] && rm -f ${osc_file_prefix}*
6296         $check_ost && [ -n $ost_file_prefix ] &&
6297                 do_facet ost1 rm -f ${ost_file_prefix}\*
6298 }
6299
6300 test_77c() {
6301         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6302         $GSS && skip "could not run with gss" && return
6303
6304         local bad1
6305         local osc_file_prefix
6306         local osc_file
6307         local check_ost=false
6308         local ost_file_prefix
6309         local ost_file
6310         local orig_cksum
6311         local dump_cksum
6312         local fid
6313
6314         # ensure corruption will occur on first OSS/OST
6315         $LFS setstripe -i 0 $DIR/$tfile
6316
6317         [ ! -f $F77_TMP ] && setup_f77
6318         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ conv=sync ||
6319                 error "dd write error: $?"
6320         fid=$($LFS path2fid $DIR/$tfile)
6321
6322         if [ $(lustre_version_code ost1) -ge $(version_code 2.9.57) ]
6323         then
6324                 check_ost=true
6325                 ost_file_prefix=$(do_facet ost1 $LCTL get_param -n debug_path)
6326                 ost_file_prefix=${ost_file_prefix}-checksum_dump-ost-\\${fid}
6327         else
6328                 echo "OSS do not support bulk pages dump upon error"
6329         fi
6330
6331         osc_file_prefix=$($LCTL get_param -n debug_path)
6332         osc_file_prefix=${osc_file_prefix}-checksum_dump-osc-\\${fid}
6333
6334         trap cleanup_77c EXIT
6335
6336         set_checksums 1
6337         # enable bulk pages dump upon error on Client
6338         $LCTL set_param osc.*osc-[^mM]*.checksum_dump=1
6339         # enable bulk pages dump upon error on OSS
6340         $check_ost &&
6341                 do_facet ost1 $LCTL set_param obdfilter.*-OST*.checksum_dump=1
6342
6343         # flush Client cache to allow next read to reach OSS
6344         cancel_lru_locks osc
6345
6346         #define OBD_FAIL_OSC_CHECKSUM_RECEIVE       0x408
6347         $LCTL set_param fail_loc=0x80000408
6348         dd if=$DIR/$tfile of=/dev/null bs=1M || error "dd read error: $?"
6349         $LCTL set_param fail_loc=0
6350
6351         rm -f $DIR/$tfile
6352
6353         # check cksum dump on Client
6354         osc_file=$(ls ${osc_file_prefix}*)
6355         [ -n "$osc_file" ] || error "no checksum dump file on Client"
6356         # OBD_FAIL_OSC_CHECKSUM_RECEIVE corrupts with "bad1" at start of file
6357         bad1=$(dd if=$osc_file bs=1 count=4 2>/dev/null) || error "dd error: $?"
6358         [ $bad1 == "bad1" ] || error "unexpected corrupt pattern"
6359         orig_cksum=$(dd if=$F77_TMP bs=1 skip=4 count=1048572 2>/dev/null |
6360                      cksum)
6361         dump_cksum=$(dd if=$osc_file bs=1 skip=4 2>/dev/null | cksum)
6362         [[ "$orig_cksum" == "$dump_cksum" ]] ||
6363                 error "dump content does not match on Client"
6364
6365         $check_ost || skip "No need to check cksum dump on OSS"
6366
6367         # check cksum dump on OSS
6368         ost_file=$(do_facet ost1 ls ${ost_file_prefix}\*)
6369         [ -n "$ost_file" ] || error "no checksum dump file on OSS"
6370         orig_cksum=$(dd if=$F77_TMP bs=1048576 count=1 2>/dev/null | cksum)
6371         dump_cksum=$(do_facet ost1 dd if=$ost_file 2>/dev/null \| cksum)
6372         [[ "$orig_cksum" == "$dump_cksum" ]] ||
6373                 error "dump content does not match on OSS"
6374
6375         cleanup_77c
6376 }
6377 run_test 77c "checksum error on client read with debug"
6378
6379 test_77d() { # bug 10889
6380         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6381         $GSS && skip "could not run with gss" && return
6382         #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
6383         $LCTL set_param fail_loc=0x80000409
6384         set_checksums 1
6385         $DIRECTIO write $DIR/$tfile 0 $F77SZ $((1024 * 1024)) ||
6386                 error "direct write: rc=$?"
6387         $LCTL set_param fail_loc=0
6388         set_checksums 0
6389
6390         #define OBD_FAIL_OSC_CHECKSUM_RECEIVE    0x408
6391         $LCTL set_param fail_loc=0x80000408
6392         set_checksums 1
6393         cancel_lru_locks osc
6394         $DIRECTIO read $DIR/$tfile 0 $F77SZ $((1024 * 1024)) ||
6395                 error "direct read: rc=$?"
6396         $LCTL set_param fail_loc=0
6397         set_checksums 0
6398 }
6399 run_test 77d "checksum error on OST direct write, read"
6400
6401 test_77f() { # bug 10889
6402         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6403         $GSS && skip "could not run with gss" && return
6404         set_checksums 1
6405         for algo in $CKSUM_TYPES; do
6406                 cancel_lru_locks osc
6407                 set_checksum_type $algo
6408                 #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
6409                 $LCTL set_param fail_loc=0x409
6410                 $DIRECTIO write $DIR/$tfile 0 $F77SZ $((1024 * 1024)) &&
6411                         error "direct write succeeded"
6412                 $LCTL set_param fail_loc=0
6413         done
6414         set_checksum_type $ORIG_CSUM_TYPE
6415         set_checksums 0
6416 }
6417 run_test 77f "repeat checksum error on write (expect error)"
6418
6419 test_77g() { # bug 10889
6420         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6421         $GSS && skip "could not run with gss" && return
6422         remote_ost_nodsh && skip "remote OST with nodsh" && return
6423
6424         [ ! -f $F77_TMP ] && setup_f77
6425
6426         $SETSTRIPE -c 1 -i 0 $DIR/$tfile
6427         #define OBD_FAIL_OST_CHECKSUM_RECEIVE       0x21a
6428         do_facet ost1 lctl set_param fail_loc=0x8000021a
6429         set_checksums 1
6430         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ ||
6431                 error "write error: rc=$?"
6432         do_facet ost1 lctl set_param fail_loc=0
6433         set_checksums 0
6434
6435         cancel_lru_locks osc
6436         #define OBD_FAIL_OST_CHECKSUM_SEND          0x21b
6437         do_facet ost1 lctl set_param fail_loc=0x8000021b
6438         set_checksums 1
6439         cmp $F77_TMP $DIR/$tfile || error "file compare failed"
6440         do_facet ost1 lctl set_param fail_loc=0
6441         set_checksums 0
6442 }
6443 run_test 77g "checksum error on OST write, read"
6444
6445 test_77j() { # bug 13805
6446         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6447         $GSS && skip "could not run with gss" && return
6448         #define OBD_FAIL_OSC_CKSUM_ADLER_ONLY    0x40c
6449         lctl set_param fail_loc=0x40c
6450         remount_client $MOUNT
6451         lctl set_param fail_loc=0
6452         # wait async osc connect to finish and reflect updated state value
6453         local i
6454         for (( i=0; i < OSTCOUNT; i++ )) ; do
6455                 wait_osc_import_state client ost$((i+1)) FULL
6456         done
6457
6458         for VALUE in $(lctl get_param osc.*osc-[^mM]*.checksum_type); do
6459                 PARAM=$(echo ${VALUE[0]} | cut -d "=" -f1)
6460                 algo=$(lctl get_param -n $PARAM | sed 's/.*\[\(.*\)\].*/\1/g')
6461                 [ "$algo" = "adler" ] || error "algo set to $algo instead of adler"
6462         done
6463         remount_client $MOUNT
6464 }
6465 run_test 77j "client only supporting ADLER32"
6466
6467 [ "$ORIG_CSUM" ] && set_checksums $ORIG_CSUM || true
6468 rm -f $F77_TMP
6469 unset F77_TMP
6470
6471 cleanup_test_78() {
6472         trap 0
6473         rm -f $DIR/$tfile
6474 }
6475
6476 test_78() { # bug 10901
6477         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6478         remote_ost || { skip_env "local OST" && return; }
6479
6480         NSEQ=5
6481         F78SIZE=$(($(awk '/MemFree:/ { print $2 }' /proc/meminfo) / 1024))
6482         echo "MemFree: $F78SIZE, Max file size: $MAXFREE"
6483         MEMTOTAL=$(($(awk '/MemTotal:/ { print $2 }' /proc/meminfo) / 1024))
6484         echo "MemTotal: $MEMTOTAL"
6485
6486         # reserve 256MB of memory for the kernel and other running processes,
6487         # and then take 1/2 of the remaining memory for the read/write buffers.
6488         if [ $MEMTOTAL -gt 512 ] ;then
6489                 MEMTOTAL=$(((MEMTOTAL - 256 ) / 2))
6490         else
6491                 # for those poor memory-starved high-end clusters...
6492                 MEMTOTAL=$((MEMTOTAL / 2))
6493         fi
6494         echo "Mem to use for directio: $MEMTOTAL"
6495
6496         [[ $F78SIZE -gt $MEMTOTAL ]] && F78SIZE=$MEMTOTAL
6497         [[ $F78SIZE -gt 512 ]] && F78SIZE=512
6498         [[ $F78SIZE -gt $((MAXFREE / 1024)) ]] && F78SIZE=$((MAXFREE / 1024))
6499         SMALLESTOST=$($LFS df $DIR | grep OST | awk '{ print $4 }' | sort -n |
6500                 head -n1)
6501         echo "Smallest OST: $SMALLESTOST"
6502         [[ $SMALLESTOST -lt 10240 ]] &&
6503                 skip "too small OSTSIZE, useless to run large O_DIRECT test" && return 0
6504
6505         trap cleanup_test_78 EXIT
6506
6507         [[ $F78SIZE -gt $((SMALLESTOST * $OSTCOUNT / 1024 - 80)) ]] &&
6508                 F78SIZE=$((SMALLESTOST * $OSTCOUNT / 1024 - 80))
6509
6510         [ "$SLOW" = "no" ] && NSEQ=1 && [ $F78SIZE -gt 32 ] && F78SIZE=32
6511         echo "File size: $F78SIZE"
6512         $SETSTRIPE -c $OSTCOUNT $DIR/$tfile || error "setstripe failed"
6513         for i in $(seq 1 $NSEQ); do
6514                 FSIZE=$(($F78SIZE / ($NSEQ - $i + 1)))
6515                 echo directIO rdwr round $i of $NSEQ
6516                 $DIRECTIO rdwr $DIR/$tfile 0 $FSIZE 1048576||error "rdwr failed"
6517         done
6518
6519         cleanup_test_78
6520 }
6521 run_test 78 "handle large O_DIRECT writes correctly ============"
6522
6523 test_79() { # bug 12743
6524         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6525         wait_delete_completed
6526
6527         BKTOTAL=$(calc_osc_kbytes kbytestotal)
6528         BKFREE=$(calc_osc_kbytes kbytesfree)
6529         BKAVAIL=$(calc_osc_kbytes kbytesavail)
6530
6531         STRING=`df -P $MOUNT | tail -n 1 | awk '{print $2","$3","$4}'`
6532         DFTOTAL=`echo $STRING | cut -d, -f1`
6533         DFUSED=`echo $STRING  | cut -d, -f2`
6534         DFAVAIL=`echo $STRING | cut -d, -f3`
6535         DFFREE=$(($DFTOTAL - $DFUSED))
6536
6537         ALLOWANCE=$((64 * $OSTCOUNT))
6538
6539         if [ $DFTOTAL -lt $(($BKTOTAL - $ALLOWANCE)) ] ||
6540            [ $DFTOTAL -gt $(($BKTOTAL + $ALLOWANCE)) ] ; then
6541                 error "df total($DFTOTAL) mismatch OST total($BKTOTAL)"
6542         fi
6543         if [ $DFFREE -lt $(($BKFREE - $ALLOWANCE)) ] ||
6544            [ $DFFREE -gt $(($BKFREE + $ALLOWANCE)) ] ; then
6545                 error "df free($DFFREE) mismatch OST free($BKFREE)"
6546         fi
6547         if [ $DFAVAIL -lt $(($BKAVAIL - $ALLOWANCE)) ] ||
6548            [ $DFAVAIL -gt $(($BKAVAIL + $ALLOWANCE)) ] ; then
6549                 error "df avail($DFAVAIL) mismatch OST avail($BKAVAIL)"
6550         fi
6551 }
6552 run_test 79 "df report consistency check ======================="
6553
6554 test_80() { # bug 10718
6555         remote_ost_nodsh && skip "remote OST with nodsh" && return
6556         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6557         # relax strong synchronous semantics for slow backends like ZFS
6558         local soc="obdfilter.*.sync_on_lock_cancel"
6559         local soc_old=$(do_facet ost1 lctl get_param -n $soc | head -n1)
6560         local hosts=
6561         if [ "$soc_old" != "never" -a "$(facet_fstype ost1)" != "ldiskfs" ]; then
6562                 hosts=$(for host in $(seq -f "ost%g" 1 $OSTCOUNT); do
6563                           facet_active_host $host; done | sort -u)
6564                 do_nodes $hosts lctl set_param $soc=never
6565         fi
6566
6567         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=1M
6568         sync; sleep 1; sync
6569         local BEFORE=`date +%s`
6570         cancel_lru_locks osc
6571         local AFTER=`date +%s`
6572         local DIFF=$((AFTER-BEFORE))
6573         if [ $DIFF -gt 1 ] ; then
6574                 error "elapsed for 1M@1T = $DIFF"
6575         fi
6576
6577         [ -n "$hosts" ] && do_nodes $hosts lctl set_param $soc=$soc_old
6578
6579         rm -f $DIR/$tfile
6580 }
6581 run_test 80 "Page eviction is equally fast at high offsets too  ===="
6582
6583 test_81a() { # LU-456
6584         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6585         remote_ost_nodsh && skip "remote OST with nodsh" && return
6586         # define OBD_FAIL_OST_MAPBLK_ENOSPC    0x228
6587         # MUST OR with the OBD_FAIL_ONCE (0x80000000)
6588         do_facet ost1 lctl set_param fail_loc=0x80000228
6589
6590         # write should trigger a retry and success
6591         $SETSTRIPE -i 0 -c 1 $DIR/$tfile
6592         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
6593         RC=$?
6594         if [ $RC -ne 0 ] ; then
6595                 error "write should success, but failed for $RC"
6596         fi
6597 }
6598 run_test 81a "OST should retry write when get -ENOSPC ==============="
6599
6600 test_81b() { # LU-456
6601         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6602         remote_ost_nodsh && skip "remote OST with nodsh" && return
6603         # define OBD_FAIL_OST_MAPBLK_ENOSPC    0x228
6604         # Don't OR with the OBD_FAIL_ONCE (0x80000000)
6605         do_facet ost1 lctl set_param fail_loc=0x228
6606
6607         # write should retry several times and return -ENOSPC finally
6608         $SETSTRIPE -i 0 -c 1 $DIR/$tfile
6609         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
6610         RC=$?
6611         ENOSPC=28
6612         if [ $RC -ne $ENOSPC ] ; then
6613                 error "dd should fail for -ENOSPC, but succeed."
6614         fi
6615 }
6616 run_test 81b "OST should return -ENOSPC when retry still fails ======="
6617
6618 test_82() { # LU-1031
6619         dd if=/dev/zero of=$DIR/$tfile bs=1M count=10
6620         local gid1=14091995
6621         local gid2=16022000
6622
6623         multiop_bg_pause $DIR/$tfile OG${gid1}_g${gid1}c || return 1
6624         local MULTIPID1=$!
6625         multiop_bg_pause $DIR/$tfile O_G${gid2}r10g${gid2}c || return 2
6626         local MULTIPID2=$!
6627         kill -USR1 $MULTIPID2
6628         sleep 2
6629         if [[ `ps h -o comm -p $MULTIPID2` == "" ]]; then
6630                 error "First grouplock does not block second one"
6631         else
6632                 echo "Second grouplock blocks first one"
6633         fi
6634         kill -USR1 $MULTIPID1
6635         wait $MULTIPID1
6636         wait $MULTIPID2
6637 }
6638 run_test 82 "Basic grouplock test"
6639
6640 test_83() {
6641         local sfile="/boot/System.map-$(uname -r)"
6642         # define OBD_FAIL_LLITE_PTASK_IO_FAIL 0x140d
6643         $LCTL set_param fail_loc=0x140d
6644         cp $sfile $DIR/$tfile || error "write failed"
6645         diff -c $sfile $DIR/$tfile || error "files are different"
6646         $LCTL set_param fail_loc=0
6647         rm -f $DIR/$tfile
6648 }
6649 run_test 83 "Short write in ptask ==============================="
6650
6651 test_99() {
6652         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" &&
6653                 return
6654         test_mkdir $DIR/$tdir.cvsroot
6655         chown $RUNAS_ID $DIR/$tdir.cvsroot
6656
6657         cd $TMP
6658         $RUNAS cvs -d $DIR/$tdir.cvsroot init || error "cvs init failed"
6659
6660         cd /etc/init.d
6661         # some versions of cvs import exit(1) when asked to import links or
6662         # files they can't read.  ignore those files.
6663         local toignore=$(find . -type l -printf '-I %f\n' -o \
6664                          ! -perm /4 -printf '-I %f\n')
6665         $RUNAS cvs -d $DIR/$tdir.cvsroot import -m "nomesg" $toignore \
6666                 $tdir.reposname vtag rtag
6667
6668         cd $DIR
6669         test_mkdir $DIR/$tdir.reposname
6670         chown $RUNAS_ID $DIR/$tdir.reposname
6671         $RUNAS cvs -d $DIR/$tdir.cvsroot co $tdir.reposname
6672
6673         cd $DIR/$tdir.reposname
6674         $RUNAS touch foo99
6675         $RUNAS cvs add -m 'addmsg' foo99
6676         $RUNAS cvs update
6677         $RUNAS cvs commit -m 'nomsg' foo99
6678         rm -fr $DIR/$tdir.cvsroot
6679 }
6680 run_test 99 "cvs strange file/directory operations"
6681
6682 test_100() {
6683         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6684         [[ "$NETTYPE" =~ tcp ]] ||
6685                 { skip "TCP secure port test, not useful for NETTYPE=$NETTYPE" &&
6686                         return ; }
6687
6688         remote_ost_nodsh && skip "remote OST with nodsh" && return
6689         remote_mds_nodsh && skip "remote MDS with nodsh" && return
6690         remote_servers ||
6691                 { skip "useless for local single node setup" && return; }
6692
6693         netstat -tna | ( rc=1; while read PROT SND RCV LOCAL REMOTE STAT; do
6694                 [ "$PROT" != "tcp" ] && continue
6695                 RPORT=$(echo $REMOTE | cut -d: -f2)
6696                 [ "$RPORT" != "$ACCEPTOR_PORT" ] && continue
6697
6698                 rc=0
6699                 LPORT=`echo $LOCAL | cut -d: -f2`
6700                 if [ $LPORT -ge 1024 ]; then
6701                         echo "bad: $PROT $SND $RCV $LOCAL $REMOTE $STAT"
6702                         netstat -tna
6703                         error_exit "local: $LPORT > 1024, remote: $RPORT"
6704                 fi
6705         done
6706         [ "$rc" = 0 ] || error_exit "privileged port not found" )
6707 }
6708 run_test 100 "check local port using privileged port ==========="
6709
6710 function get_named_value()
6711 {
6712     local tag
6713
6714     tag=$1
6715     while read ;do
6716         line=$REPLY
6717         case $line in
6718         $tag*)
6719             echo $line | sed "s/^$tag[ ]*//"
6720             break
6721             ;;
6722         esac
6723     done
6724 }
6725
6726 export CACHE_MAX=$($LCTL get_param -n llite.*.max_cached_mb |
6727                    awk '/^max_cached_mb/ { print $2 }')
6728
6729 cleanup_101a() {
6730         $LCTL set_param -n llite.*.max_cached_mb $CACHE_MAX
6731         trap 0
6732 }
6733
6734 test_101a() {
6735         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6736         [ $MDSCOUNT -ge 2 ] && skip "needs < 2 MDTs" && return #LU-4322
6737         local s
6738         local discard
6739         local nreads=10000
6740         local cache_limit=32
6741
6742         $LCTL set_param -n osc.*-osc*.rpc_stats 0
6743         trap cleanup_101a EXIT
6744         $LCTL set_param -n llite.*.read_ahead_stats 0
6745         $LCTL set_param -n llite.*.max_cached_mb $cache_limit
6746
6747         #
6748         # randomly read 10000 of 64K chunks from file 3x 32MB in size
6749         #
6750         echo "nreads: $nreads file size: $((cache_limit * 3))MB"
6751         $READS -f $DIR/$tfile -s$((cache_limit * 3192 * 1024)) -b65536 -C -n$nreads -t 180
6752
6753         discard=0
6754         for s in $($LCTL get_param -n llite.*.read_ahead_stats |
6755                 get_named_value 'read but discarded' | cut -d" " -f1); do
6756                         discard=$(($discard + $s))
6757         done
6758         cleanup_101a
6759
6760         if [[ $(($discard * 10)) -gt $nreads ]]; then
6761                 $LCTL get_param osc.*-osc*.rpc_stats
6762                 $LCTL get_param llite.*.read_ahead_stats
6763                 error "too many ($discard) discarded pages"
6764         fi
6765         rm -f $DIR/$tfile || true
6766 }
6767 run_test 101a "check read-ahead for random reads"
6768
6769 setup_test101bc() {
6770         test_mkdir $DIR/$tdir
6771         local STRIPE_SIZE=$1
6772         local FILE_LENGTH=$2
6773         STRIPE_OFFSET=0
6774
6775         local FILE_SIZE_MB=$((FILE_LENGTH / STRIPE_SIZE))
6776
6777         local list=$(comma_list $(osts_nodes))
6778         set_osd_param $list '' read_cache_enable 0
6779         set_osd_param $list '' writethrough_cache_enable 0
6780
6781         trap cleanup_test101bc EXIT
6782         # prepare the read-ahead file
6783         $SETSTRIPE -S $STRIPE_SIZE -i $STRIPE_OFFSET -c $OSTCOUNT $DIR/$tfile
6784
6785         dd if=/dev/zero of=$DIR/$tfile bs=$STRIPE_SIZE \
6786                                 count=$FILE_SIZE_MB 2> /dev/null
6787
6788 }
6789
6790 cleanup_test101bc() {
6791         trap 0
6792         rm -rf $DIR/$tdir
6793         rm -f $DIR/$tfile
6794
6795         local list=$(comma_list $(osts_nodes))
6796         set_osd_param $list '' read_cache_enable 1
6797         set_osd_param $list '' writethrough_cache_enable 1
6798 }
6799
6800 calc_total() {
6801         awk 'BEGIN{total=0}; {total+=$1}; END{print total}'
6802 }
6803
6804 ra_check_101() {
6805         local READ_SIZE=$1
6806         local STRIPE_SIZE=$2
6807         local FILE_LENGTH=$3
6808         local RA_INC=1048576
6809         local STRIDE_LENGTH=$((STRIPE_SIZE/READ_SIZE))
6810         local discard_limit=$((((STRIDE_LENGTH - 1)*3/(STRIDE_LENGTH*OSTCOUNT))* \
6811                              (STRIDE_LENGTH*OSTCOUNT - STRIDE_LENGTH)))
6812         DISCARD=$($LCTL get_param -n llite.*.read_ahead_stats |
6813                         get_named_value 'read but discarded' |
6814                         cut -d" " -f1 | calc_total)
6815         if [[ $DISCARD -gt $discard_limit ]]; then
6816                 $LCTL get_param llite.*.read_ahead_stats
6817                 error "Too many ($DISCARD) discarded pages with size (${READ_SIZE})"
6818         else
6819                 echo "Read-ahead success for size ${READ_SIZE}"
6820         fi
6821 }
6822
6823 test_101b() {
6824         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6825         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
6826         local STRIPE_SIZE=1048576
6827         local STRIDE_SIZE=$((STRIPE_SIZE*OSTCOUNT))
6828         if [ $SLOW == "yes" ]; then
6829                 local FILE_LENGTH=$((STRIDE_SIZE * 64))
6830         else
6831                 local FILE_LENGTH=$((STRIDE_SIZE * 8))
6832         fi
6833
6834         local ITERATION=$((FILE_LENGTH / STRIDE_SIZE))
6835
6836         # prepare the read-ahead file
6837         setup_test101bc $STRIPE_SIZE $FILE_LENGTH
6838         cancel_lru_locks osc
6839         for BIDX in 2 4 8 16 32 64 128 256
6840         do
6841                 local BSIZE=$((BIDX*4096))
6842                 local READ_COUNT=$((STRIPE_SIZE/BSIZE))
6843                 local STRIDE_LENGTH=$((STRIDE_SIZE/BSIZE))
6844                 local OFFSET=$((STRIPE_SIZE/BSIZE*(OSTCOUNT - 1)))
6845                 $LCTL set_param -n llite.*.read_ahead_stats 0
6846                 $READS -f $DIR/$tfile  -l $STRIDE_LENGTH -o $OFFSET \
6847                               -s $FILE_LENGTH -b $STRIPE_SIZE -a $READ_COUNT -n $ITERATION
6848                 cancel_lru_locks osc
6849                 ra_check_101 $BSIZE $STRIPE_SIZE $FILE_LENGTH
6850         done
6851         cleanup_test101bc
6852         true
6853 }
6854 run_test 101b "check stride-io mode read-ahead ================="
6855
6856 test_101c() {
6857         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6858         local STRIPE_SIZE=1048576
6859         local FILE_LENGTH=$((STRIPE_SIZE*100))
6860         local nreads=10000
6861         local osc_rpc_stats
6862
6863         setup_test101bc $STRIPE_SIZE $FILE_LENGTH
6864
6865         cancel_lru_locks osc
6866         $LCTL set_param osc.*.rpc_stats 0
6867         $READS -f $DIR/$tfile -s$FILE_LENGTH -b65536 -n$nreads -t 180
6868         for osc_rpc_stats in $($LCTL get_param -N osc.*.rpc_stats); do
6869                 local stats=$($LCTL get_param -n $osc_rpc_stats)
6870                 local lines=$(echo "$stats" | awk 'END {print NR;}')
6871                 local size
6872
6873                 if [ $lines -le 20 ]; then
6874                         continue
6875                 fi
6876                 for size in 1 2 4 8; do
6877                         local rpc=$(echo "$stats" |
6878                                     awk '($1 == "'$size':") {print $2; exit; }')
6879                         [ $rpc != 0 ] &&
6880                                 error "Small $((size*4))k read IO $rpc !"
6881                 done
6882                 echo "$osc_rpc_stats check passed!"
6883         done
6884         cleanup_test101bc
6885         true
6886 }
6887 run_test 101c "check stripe_size aligned read-ahead ================="
6888
6889 set_read_ahead() {
6890         $LCTL get_param -n llite.*.max_read_ahead_mb | head -n 1
6891         $LCTL set_param -n llite.*.max_read_ahead_mb $1 > /dev/null 2>&1
6892 }
6893
6894 test_101d() {
6895         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6896         local file=$DIR/$tfile
6897         local sz_MB=${FILESIZE_101d:-500}
6898         local ra_MB=${READAHEAD_MB:-40}
6899
6900         local free_MB=$(($(df -P $DIR | tail -n 1 | awk '{ print $4 }') / 1024))
6901         [ $free_MB -lt $sz_MB ] &&
6902                 skip "Need free space ${sz_MB}M, have ${free_MB}M" && return
6903
6904         echo "Create test file $file size ${sz_MB}M, ${free_MB}M free"
6905         $SETSTRIPE -c -1 $file || error "setstripe failed"
6906
6907         dd if=/dev/zero of=$file bs=1M count=$sz_MB || error "dd failed"
6908         echo Cancel LRU locks on lustre client to flush the client cache
6909         cancel_lru_locks osc
6910
6911         echo Disable read-ahead
6912         local old_READAHEAD=$(set_read_ahead 0)
6913
6914         echo Reading the test file $file with read-ahead disabled
6915         local raOFF=$(do_and_time "dd if=$file of=/dev/null bs=1M count=$sz_MB")
6916
6917         echo Cancel LRU locks on lustre client to flush the client cache
6918         cancel_lru_locks osc
6919         echo Enable read-ahead with ${ra_MB}MB
6920         set_read_ahead $ra_MB
6921
6922         echo Reading the test file $file with read-ahead enabled
6923         local raON=$(do_and_time "dd if=$file of=/dev/null bs=1M count=$sz_MB")
6924
6925         echo "read-ahead disabled time read $raOFF"
6926         echo "read-ahead enabled  time read $raON"
6927
6928         set_read_ahead $old_READAHEAD
6929         rm -f $file
6930         wait_delete_completed
6931
6932         [ $raOFF -le 1 -o $raON -lt $raOFF ] ||
6933                 error "readahead ${raON}s > no-readahead ${raOFF}s ${sz_MB}M"
6934 }
6935 run_test 101d "file read with and without read-ahead enabled"
6936
6937 test_101e() {
6938         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6939         local file=$DIR/$tfile
6940         local size_KB=500  #KB
6941         local count=100
6942         local bsize=1024
6943
6944         local free_KB=$(df -P $DIR | tail -n 1 | awk '{ print $4 }')
6945         local need_KB=$((count * size_KB))
6946         [[ $free_KB -le $need_KB ]] &&
6947                 skip_env "Need free space $need_KB, have $free_KB" && return
6948
6949         echo "Creating $count ${size_KB}K test files"
6950         for ((i = 0; i < $count; i++)); do
6951                 dd if=/dev/zero of=$file.$i bs=$bsize count=$size_KB 2>/dev/null
6952         done
6953
6954         echo "Cancel LRU locks on lustre client to flush the client cache"
6955         cancel_lru_locks $OSC
6956
6957         echo "Reset readahead stats"
6958         $LCTL set_param -n llite.*.read_ahead_stats 0
6959
6960         for ((i = 0; i < $count; i++)); do
6961                 dd if=$file.$i of=/dev/null bs=$bsize count=$size_KB 2>/dev/null
6962         done
6963
6964         local miss=$($LCTL get_param -n llite.*.read_ahead_stats |
6965                      get_named_value 'misses' | cut -d" " -f1 | calc_total)
6966
6967         for ((i = 0; i < $count; i++)); do
6968                 rm -rf $file.$i 2>/dev/null
6969         done
6970
6971         #10000 means 20% reads are missing in readahead
6972         [[ $miss -lt 10000 ]] ||  error "misses too much for small reads"
6973 }
6974 run_test 101e "check read-ahead for small read(1k) for small files(500k)"
6975
6976 test_101f() {
6977         which iozone || { skip "no iozone installed" && return; }
6978
6979         local old_debug=$($LCTL get_param debug)
6980         old_debug=${old_debug#*=}
6981         $LCTL set_param debug="reada mmap"
6982
6983         # create a test file
6984         iozone -i 0 -+n -r 1m -s 128m -w -f $DIR/$tfile > /dev/null 2>&1
6985
6986         echo Cancel LRU locks on lustre client to flush the client cache
6987         cancel_lru_locks osc
6988
6989         echo Reset readahead stats
6990         $LCTL set_param -n llite.*.read_ahead_stats 0
6991
6992         echo mmap read the file with small block size
6993         iozone -i 1 -u 1 -l 1 -+n -r 32k -s 128m -B -f $DIR/$tfile \
6994                 > /dev/null 2>&1
6995
6996         echo checking missing pages
6997         $LCTL get_param llite.*.read_ahead_stats
6998         local miss=$($LCTL get_param -n llite.*.read_ahead_stats |
6999                         get_named_value 'misses' | cut -d" " -f1 | calc_total)
7000
7001         $LCTL set_param debug="$old_debug"
7002         [ $miss -lt 3 ] || error "misses too much pages ('$miss')!"
7003         rm -f $DIR/$tfile
7004 }
7005 run_test 101f "check mmap read performance"
7006
7007 test_101g_brw_size_test() {
7008         local mb=$1
7009         local pages=$((mb * 1048576 / $(page_size)))
7010
7011         $LCTL set_param osc.*.max_pages_per_rpc=${mb}M ||
7012                 { error "unable to set max_pages_per_rpc=${mb}M"; return 1; }
7013         for mp in $($LCTL get_param -n osc.*.max_pages_per_rpc); do
7014                 [ $mp -ne $pages ] && error "max_pages_per_rpc $mp != $pages" &&
7015                         return 2
7016         done
7017
7018         $LCTL set_param -n osc.*.rpc_stats=0
7019
7020         # 10 RPCs should be enough for the test
7021         local count=10
7022         dd if=/dev/zero of=$DIR/$tfile bs=${mb}M count=$count ||
7023                 { error "dd write ${mb} MB blocks failed"; return 3; }
7024         cancel_lru_locks osc
7025         dd of=/dev/null if=$DIR/$tfile bs=${mb}M count=$count ||
7026                 { error "dd write ${mb} MB blocks failed"; return 4; }
7027
7028         # calculate number of full-sized read and write RPCs
7029         rpcs=($($LCTL get_param -n 'osc.*.rpc_stats' |
7030                 sed -n '/pages per rpc/,/^$/p' |
7031                 awk '/'$pages':/ { reads += $2; writes += $6 }; \
7032                 END { print reads,writes }'))
7033         [ ${rpcs[0]} -ne $count ] && error "${rpcs[0]} != $count read RPCs" &&
7034                 return 5
7035         [ ${rpcs[1]} -ne $count ] && error "${rpcs[1]} != $count write RPCs" &&
7036                 return 6
7037
7038         return 0
7039 }
7040
7041 test_101g() {
7042         local rpcs
7043         local osts=$(get_facets OST)
7044         local list=$(comma_list $(osts_nodes))
7045         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
7046         local brw_size="obdfilter.*.brw_size"
7047
7048         $LFS setstripe -i 0 -c 1 $DIR/$tfile
7049
7050         local orig_mb=$(do_facet ost1 $LCTL get_param -n $brw_size | head -n 1)
7051         if [ $(lustre_version_code ost1) -ge $(version_code 2.8.52) -a \
7052              $(lustre_version_code client) -ge $(version_code 2.8.52) ]; then
7053                 [ $(lustre_version_code ost1) -ge $(version_code 2.9.52) ] &&
7054                         suffix="M"
7055                 if [[ $orig_mb -lt 16 ]]; then
7056                         save_lustre_params $osts "$brw_size" > $p
7057                         do_nodes $list $LCTL set_param -n $brw_size=16$suffix ||
7058                                 error "set 16MB RPC size failed"
7059
7060                         echo "remount client to enable new RPC size"
7061                         remount_client $MOUNT || error "remount_client failed"
7062                 fi
7063
7064                 test_101g_brw_size_test 16 || error "16MB RPC test failed"
7065                 # should be able to set brw_size=12, but no rpc_stats for that
7066                 test_101g_brw_size_test 8 || error "8MB RPC test failed"
7067         fi
7068
7069         test_101g_brw_size_test 4 || error "4MB RPC test failed"
7070
7071         if [[ $orig_mb -lt 16 ]]; then
7072                 restore_lustre_params < $p
7073                 remount_client $MOUNT || error "remount_client restore failed"
7074         fi
7075
7076         rm -f $p $DIR/$tfile
7077 }
7078 run_test 101g "Big bulk(4/16 MiB) readahead"
7079
7080 setup_test102() {
7081         test_mkdir $DIR/$tdir
7082         chown $RUNAS_ID $DIR/$tdir
7083         STRIPE_SIZE=65536
7084         STRIPE_OFFSET=1
7085         STRIPE_COUNT=$OSTCOUNT
7086         [[ $OSTCOUNT -gt 4 ]] && STRIPE_COUNT=4
7087
7088         trap cleanup_test102 EXIT
7089         cd $DIR
7090         $1 $SETSTRIPE -S $STRIPE_SIZE -i $STRIPE_OFFSET -c $STRIPE_COUNT $tdir
7091         cd $DIR/$tdir
7092         for num in 1 2 3 4; do
7093                 for count in $(seq 1 $STRIPE_COUNT); do
7094                         for idx in $(seq 0 $[$STRIPE_COUNT - 1]); do
7095                                 local size=`expr $STRIPE_SIZE \* $num`
7096                                 local file=file"$num-$idx-$count"
7097                                 $1 $SETSTRIPE -S $size -i $idx -c $count $file
7098                         done
7099                 done
7100         done
7101
7102         cd $DIR
7103         $1 tar cf $TMP/f102.tar $tdir --xattrs
7104 }
7105
7106 cleanup_test102() {
7107         trap 0
7108         rm -f $TMP/f102.tar
7109         rm -rf $DIR/d0.sanity/d102
7110 }
7111
7112 test_102a() {
7113         local testfile=$DIR/$tfile
7114
7115         touch $testfile
7116
7117         [ "$UID" != 0 ] && skip_env "must run as root" && return
7118         [ -z "$(lctl get_param -n mdc.*-mdc-*.connect_flags | grep xattr)" ] &&
7119                 skip_env "must have user_xattr" && return
7120
7121         [ -z "$(which setfattr 2>/dev/null)" ] &&
7122                 skip_env "could not find setfattr" && return
7123
7124         echo "set/get xattr..."
7125         setfattr -n trusted.name1 -v value1 $testfile ||
7126                 error "setfattr -n trusted.name1=value1 $testfile failed"
7127         getfattr -n trusted.name1 $testfile 2> /dev/null |
7128           grep "trusted.name1=.value1" ||
7129                 error "$testfile missing trusted.name1=value1"
7130
7131         setfattr -n user.author1 -v author1 $testfile ||
7132                 error "setfattr -n user.author1=author1 $testfile failed"
7133         getfattr -n user.author1 $testfile 2> /dev/null |
7134           grep "user.author1=.author1" ||
7135                 error "$testfile missing trusted.author1=author1"
7136
7137         echo "listxattr..."
7138         setfattr -n trusted.name2 -v value2 $testfile ||
7139                 error "$testfile unable to set trusted.name2"
7140         setfattr -n trusted.name3 -v value3 $testfile ||
7141                 error "$testfile unable to set trusted.name3"
7142         [ $(getfattr -d -m "^trusted" $testfile 2> /dev/null |
7143             grep "trusted.name" | wc -l) -eq 3 ] ||
7144                 error "$testfile missing 3 trusted.name xattrs"
7145
7146         setfattr -n user.author2 -v author2 $testfile ||
7147                 error "$testfile unable to set user.author2"
7148         setfattr -n user.author3 -v author3 $testfile ||
7149                 error "$testfile unable to set user.author3"
7150         [ $(getfattr -d -m "^user" $testfile 2> /dev/null |
7151             grep "user.author" | wc -l) -eq 3 ] ||
7152                 error "$testfile missing 3 user.author xattrs"
7153
7154         echo "remove xattr..."
7155         setfattr -x trusted.name1 $testfile ||
7156                 error "$testfile error deleting trusted.name1"
7157         getfattr -d -m trusted $testfile 2> /dev/null | grep "trusted.name1" &&
7158                 error "$testfile did not delete trusted.name1 xattr"
7159
7160         setfattr -x user.author1 $testfile ||
7161                 error "$testfile error deleting user.author1"
7162         echo "set lustre special xattr ..."
7163         $LFS setstripe -c1 $testfile
7164         local lovea=$(getfattr -n "trusted.lov" -e hex $testfile |
7165                 awk -F "=" '/trusted.lov/ { print $2 }' )
7166         setfattr -n "trusted.lov" -v $lovea $testfile ||
7167                 error "$testfile doesn't ignore setting trusted.lov again"
7168         setfattr -n "trusted.lov" -v "invalid_value" $testfile &&
7169                 error "$testfile allow setting invalid trusted.lov"
7170         rm -f $testfile
7171 }
7172 run_test 102a "user xattr test =================================="
7173
7174 test_102b() {
7175         [ -z "$(which setfattr 2>/dev/null)" ] &&
7176                 skip_env "could not find setfattr" && return
7177
7178         # b10930: get/set/list trusted.lov xattr
7179         echo "get/set/list trusted.lov xattr ..."
7180         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
7181         local testfile=$DIR/$tfile
7182         $SETSTRIPE -S 65536 -i 1 -c $OSTCOUNT $testfile ||
7183                 error "setstripe failed"
7184         local STRIPECOUNT=$($GETSTRIPE -c $testfile) ||
7185                 error "getstripe failed"
7186         getfattr -d -m "^trusted" $testfile 2>/dev/null | grep "trusted.lov" ||
7187                 error "can't get trusted.lov from $testfile"
7188
7189         local testfile2=${testfile}2
7190         local value=$(getfattr -n trusted.lov $testfile 2>/dev/null |
7191                         grep "trusted.lov" | sed -e 's/[^=]\+=//')
7192
7193         $MCREATE $testfile2
7194         setfattr -n trusted.lov -v $value $testfile2
7195         local stripe_size=$($GETSTRIPE -S $testfile2)
7196         local stripe_count=$($GETSTRIPE -c $testfile2)
7197         [[ $stripe_size -eq 65536 ]] ||
7198                 error "stripe size $stripe_size != 65536"
7199         [[ $stripe_count -eq $STRIPECOUNT ]] ||
7200                 error "stripe count $stripe_count != $STRIPECOUNT"
7201         rm -f $DIR/$tfile
7202 }
7203 run_test 102b "getfattr/setfattr for trusted.lov EAs ============"
7204
7205 test_102c() {
7206         [ -z "$(which setfattr 2>/dev/null)" ] &&
7207                 skip_env "could not find setfattr" && return
7208
7209         # b10930: get/set/list lustre.lov xattr
7210         echo "get/set/list lustre.lov xattr ..."
7211         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
7212         test_mkdir $DIR/$tdir
7213         chown $RUNAS_ID $DIR/$tdir
7214         local testfile=$DIR/$tdir/$tfile
7215         $RUNAS $SETSTRIPE -S 65536 -i 1 -c $OSTCOUNT $testfile ||
7216                 error "setstripe failed"
7217         local STRIPECOUNT=$($RUNAS $GETSTRIPE -c $testfile) ||
7218                 error "getstripe failed"
7219         $RUNAS getfattr -d -m "^lustre" $testfile 2> /dev/null | \
7220         grep "lustre.lov" || error "can't get lustre.lov from $testfile"
7221
7222         local testfile2=${testfile}2
7223         local value=`getfattr -n lustre.lov $testfile 2> /dev/null | \
7224                      grep "lustre.lov" |sed -e 's/[^=]\+=//'  `
7225
7226         $RUNAS $MCREATE $testfile2
7227         $RUNAS setfattr -n lustre.lov -v $value $testfile2
7228         local stripe_size=$($RUNAS $GETSTRIPE -S $testfile2)
7229         local stripe_count=$($RUNAS $GETSTRIPE -c $testfile2)
7230         [ $stripe_size -eq 65536 ] || error "stripe size $stripe_size != 65536"
7231         [ $stripe_count -eq $STRIPECOUNT ] ||
7232                 error "stripe count $stripe_count != $STRIPECOUNT"
7233 }
7234 run_test 102c "non-root getfattr/setfattr for lustre.lov EAs ==========="
7235
7236 compare_stripe_info1() {
7237         local stripe_index_all_zero=true
7238
7239         for num in 1 2 3 4; do
7240                 for count in $(seq 1 $STRIPE_COUNT); do
7241                         for offset in $(seq 0 $[$STRIPE_COUNT - 1]); do
7242                                 local size=$((STRIPE_SIZE * num))
7243                                 local file=file"$num-$offset-$count"
7244                                 stripe_size=$($LFS getstripe -S $PWD/$file)
7245                                 [[ $stripe_size -ne $size ]] &&
7246                                     error "$file: size $stripe_size != $size"
7247                                 stripe_count=$($LFS getstripe -c $PWD/$file)
7248                                 # allow fewer stripes to be created, ORI-601
7249                                 [[ $stripe_count -lt $(((3 * count + 3) / 4)) ]] &&
7250                                     error "$file: count $stripe_count != $count"
7251                                 stripe_index=$($LFS getstripe -i $PWD/$file)
7252                                 [[ $stripe_index -ne 0 ]] &&
7253                                         stripe_index_all_zero=false
7254                         done
7255                 done
7256         done
7257         $stripe_index_all_zero &&
7258                 error "all files are being extracted starting from OST index 0"
7259         return 0
7260 }
7261
7262 have_xattrs_include() {
7263         tar --help | grep -q xattrs-include &&
7264                 echo --xattrs-include="lustre.*"
7265 }
7266
7267 test_102d() {
7268         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7269         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
7270         XINC=$(have_xattrs_include)
7271         setup_test102
7272         tar xf $TMP/f102.tar -C $DIR/$tdir --xattrs $XINC
7273         cd $DIR/$tdir/$tdir
7274         compare_stripe_info1
7275 }
7276 run_test 102d "tar restore stripe info from tarfile,not keep osts"
7277
7278 test_102f() {
7279         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7280         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
7281         XINC=$(have_xattrs_include)
7282         setup_test102
7283         test_mkdir $DIR/$tdir.restore
7284         cd $DIR
7285         tar cf - --xattrs $tdir | tar xf - \
7286                 -C $DIR/$tdir.restore --xattrs $XINC
7287         cd $DIR/$tdir.restore/$tdir
7288         compare_stripe_info1
7289 }
7290 run_test 102f "tar copy files, not keep osts"
7291
7292 grow_xattr() {
7293         local xsize=${1:-1024}  # in bytes
7294         local file=$DIR/$tfile
7295
7296         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep xattr)" ] &&
7297                 skip "must have user_xattr" && return 0
7298         [ -z "$(which setfattr 2>/dev/null)" ] &&
7299                 skip_env "could not find setfattr" && return 0
7300         [ -z "$(which getfattr 2>/dev/null)" ] &&
7301                 skip_env "could not find getfattr" && return 0
7302
7303         touch $file
7304
7305         local value="$(generate_string $xsize)"
7306
7307         local xbig=trusted.big
7308         log "save $xbig on $file"
7309         setfattr -n $xbig -v $value $file ||
7310                 error "saving $xbig on $file failed"
7311
7312         local orig=$(get_xattr_value $xbig $file)
7313         [[ "$orig" != "$value" ]] && error "$xbig different after saving $xbig"
7314
7315         local xsml=trusted.sml
7316         log "save $xsml on $file"
7317         setfattr -n $xsml -v val $file || error "saving $xsml on $file failed"
7318
7319         local new=$(get_xattr_value $xbig $file)
7320         [[ "$new" != "$orig" ]] && error "$xbig different after saving $xsml"
7321
7322         log "grow $xsml on $file"
7323         setfattr -n $xsml -v "$value" $file ||
7324                 error "growing $xsml on $file failed"
7325
7326         new=$(get_xattr_value $xbig $file)
7327         [[ "$new" != "$orig" ]] && error "$xbig different after growing $xsml"
7328         log "$xbig still valid after growing $xsml"
7329
7330         rm -f $file
7331 }
7332
7333 test_102h() { # bug 15777
7334         grow_xattr 1024
7335 }
7336 run_test 102h "grow xattr from inside inode to external block"
7337
7338 test_102ha() {
7339         large_xattr_enabled || { skip "large_xattr disabled" && return; }
7340         grow_xattr $(max_xattr_size)
7341 }
7342 run_test 102ha "grow xattr from inside inode to external inode"
7343
7344 test_102i() { # bug 17038
7345         [ -z "$(which getfattr 2>/dev/null)" ] &&
7346                 skip "could not find getfattr" && return
7347         touch $DIR/$tfile
7348         ln -s $DIR/$tfile $DIR/${tfile}link
7349         getfattr -n trusted.lov $DIR/$tfile ||
7350                 error "lgetxattr on $DIR/$tfile failed"
7351         getfattr -h -n trusted.lov $DIR/${tfile}link 2>&1 |
7352                 grep -i "no such attr" ||
7353                 error "error for lgetxattr on $DIR/${tfile}link is not ENODATA"
7354         rm -f $DIR/$tfile $DIR/${tfile}link
7355 }
7356 run_test 102i "lgetxattr test on symbolic link ============"
7357
7358 test_102j() {
7359         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7360         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
7361         XINC=$(have_xattrs_include)
7362         setup_test102 "$RUNAS"
7363         chown $RUNAS_ID $DIR/$tdir
7364         $RUNAS tar xf $TMP/f102.tar -C $DIR/$tdir --xattrs $XINC
7365         cd $DIR/$tdir/$tdir
7366         compare_stripe_info1 "$RUNAS"
7367 }
7368 run_test 102j "non-root tar restore stripe info from tarfile, not keep osts ==="
7369
7370 test_102k() {
7371         [ -z "$(which setfattr 2>/dev/null)" ] &&
7372                 skip "could not find setfattr" && return
7373         touch $DIR/$tfile
7374         # b22187 just check that does not crash for regular file.
7375         setfattr -n trusted.lov $DIR/$tfile
7376         # b22187 'setfattr -n trusted.lov' should remove LOV EA for directories
7377         local test_kdir=$DIR/$tdir
7378         test_mkdir $test_kdir
7379         local default_size=$($LFS getstripe -S $test_kdir)
7380         local default_count=$($LFS getstripe -c $test_kdir)
7381         local default_offset=$($LFS getstripe -i $test_kdir)
7382         $SETSTRIPE -S 65536 -i 0 -c $OSTCOUNT $test_kdir ||
7383                 error 'dir setstripe failed'
7384         setfattr -n trusted.lov $test_kdir
7385         local stripe_size=$($LFS getstripe -S $test_kdir)
7386         local stripe_count=$($LFS getstripe -c $test_kdir)
7387         local stripe_offset=$($LFS getstripe -i $test_kdir)
7388         [ $stripe_size -eq $default_size ] ||
7389                 error "stripe size $stripe_size != $default_size"
7390         [ $stripe_count -eq $default_count ] ||
7391                 error "stripe count $stripe_count != $default_count"
7392         [ $stripe_offset -eq $default_offset ] ||
7393                 error "stripe offset $stripe_offset != $default_offset"
7394         rm -rf $DIR/$tfile $test_kdir
7395 }
7396 run_test 102k "setfattr without parameter of value shouldn't cause a crash"
7397
7398 test_102l() {
7399         [ -z "$(which getfattr 2>/dev/null)" ] &&
7400                 skip "could not find getfattr" && return
7401
7402         # LU-532 trusted. xattr is invisible to non-root
7403         local testfile=$DIR/$tfile
7404
7405         touch $testfile
7406
7407         echo "listxattr as user..."
7408         chown $RUNAS_ID $testfile
7409         $RUNAS getfattr -d -m '.*' $testfile 2>&1 |
7410             grep -q "trusted" &&
7411                 error "$testfile trusted xattrs are user visible"
7412
7413         return 0;
7414 }
7415 run_test 102l "listxattr size test =================================="
7416
7417 test_102m() { # LU-3403 llite: error of listxattr when buffer is small
7418         local path=$DIR/$tfile
7419         touch $path
7420
7421         listxattr_size_check $path || error "listattr_size_check $path failed"
7422 }
7423 run_test 102m "Ensure listxattr fails on small bufffer ========"
7424
7425 cleanup_test102
7426
7427 getxattr() { # getxattr path name
7428         # Return the base64 encoding of the value of xattr name on path.
7429         local path=$1
7430         local name=$2
7431
7432         # # getfattr --absolute-names --encoding=base64 --name=trusted.lov $path
7433         # file: $path
7434         # trusted.lov=0s0AvRCwEAAAAGAAAAAAAAAAAEAAACAAAAAAAQAAEAA...AAAAAAAAA=
7435         #
7436         # We print just 0s0AvRCwEAAAAGAAAAAAAAAAAEAAACAAAAAAAQAAEAA...AAAAAAAAA=
7437
7438         getfattr --absolute-names --encoding=base64 --name=$name $path |
7439                 awk -F= -v name=$name '$1 == name {
7440                         print substr($0, index($0, "=") + 1);
7441         }'
7442 }
7443
7444 test_102n() { # LU-4101 mdt: protect internal xattrs
7445         [ -z "$(which setfattr 2>/dev/null)" ] &&
7446                 skip "could not find setfattr" && return
7447         if [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.5.50) ]
7448         then
7449                 skip "MDT < 2.5.50 allows setxattr on internal trusted xattrs"
7450                 return
7451         fi
7452
7453         local file0=$DIR/$tfile.0
7454         local file1=$DIR/$tfile.1
7455         local xattr0=$TMP/$tfile.0
7456         local xattr1=$TMP/$tfile.1
7457         local namelist="lov lma lmv link fid version som hsm"
7458         local name
7459         local value
7460
7461         rm -rf $file0 $file1 $xattr0 $xattr1
7462         touch $file0 $file1
7463
7464         # Get 'before' xattrs of $file1.
7465         getfattr --absolute-names --dump --match=- $file1 > $xattr0
7466
7467         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.53) ] &&
7468                 namelist+=" lfsck_namespace"
7469         for name in $namelist; do
7470                 # Try to copy xattr from $file0 to $file1.
7471                 value=$(getxattr $file0 trusted.$name 2> /dev/null)
7472
7473                 setfattr --name=trusted.$name --value="$value" $file1 ||
7474                         error "setxattr 'trusted.$name' failed"
7475
7476                 # Try to set a garbage xattr.
7477                 value=0sVGhlIHF1aWNrIGJyb3duIGZveCBqdW1wcyBvdmVyIGl0c2VsZi4=
7478
7479                 if [[ x$name == "xlov" ]]; then
7480                         setfattr --name=trusted.lov --value="$value" $file1 &&
7481                         error "setxattr invalid 'trusted.lov' success"
7482                 else
7483                         setfattr --name=trusted.$name --value="$value" $file1 ||
7484                                 error "setxattr invalid 'trusted.$name' failed"
7485                 fi
7486
7487                 # Try to remove the xattr from $file1. We don't care if this
7488                 # appears to succeed or fail, we just don't want there to be
7489                 # any changes or crashes.
7490                 setfattr --remove=$trusted.$name $file1 2> /dev/null
7491         done
7492
7493         if [ $(lustre_version_code $SINGLEMDS) -gt $(version_code 2.6.50) ]
7494         then
7495                 name="lfsck_ns"
7496                 # Try to copy xattr from $file0 to $file1.
7497                 value=$(getxattr $file0 trusted.$name 2> /dev/null)
7498
7499                 setfattr --name=trusted.$name --value="$value" $file1 ||
7500                         error "setxattr 'trusted.$name' failed"
7501
7502                 # Try to set a garbage xattr.
7503                 value=0sVGhlIHF1aWNrIGJyb3duIGZveCBqdW1wcyBvdmVyIGl0c2VsZi4=
7504
7505                 setfattr --name=trusted.$name --value="$value" $file1 ||
7506                         error "setxattr 'trusted.$name' failed"
7507
7508                 # Try to remove the xattr from $file1. We don't care if this
7509                 # appears to succeed or fail, we just don't want there to be
7510                 # any changes or crashes.
7511                 setfattr --remove=$trusted.$name $file1 2> /dev/null
7512         fi
7513
7514         # Get 'after' xattrs of file1.
7515         getfattr --absolute-names --dump --match=- $file1 > $xattr1
7516
7517         if ! diff $xattr0 $xattr1; then
7518                 error "before and after xattrs of '$file1' differ"
7519         fi
7520
7521         rm -rf $file0 $file1 $xattr0 $xattr1
7522
7523         return 0
7524 }
7525 run_test 102n "silently ignore setxattr on internal trusted xattrs"
7526
7527 test_102p() { # LU-4703 setxattr did not check ownership
7528         local testfile=$DIR/$tfile
7529
7530         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.5.56) ] &&
7531                 skip "MDS needs to be at least 2.5.56" && return
7532
7533         touch $testfile
7534
7535         echo "setfacl as user..."
7536         $RUNAS setfacl -m "u:$RUNAS_ID:rwx" $testfile
7537         [ $? -ne 0 ] || error "setfacl by $RUNAS_ID was allowed on $testfile"
7538
7539         echo "setfattr as user..."
7540         setfacl -m "u:$RUNAS_ID:---" $testfile
7541         $RUNAS setfattr -x system.posix_acl_access $testfile
7542         [ $? -ne 0 ] || error "setfattr by $RUNAS_ID was allowed on $testfile"
7543 }
7544 run_test 102p "check setxattr(2) correctly fails without permission"
7545
7546 test_102q() {
7547         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.6.92) ] &&
7548                 skip "MDS needs to be at least 2.6.92" && return
7549         orphan_linkea_check $DIR/$tfile || error "orphan_linkea_check"
7550 }
7551 run_test 102q "flistxattr should not return trusted.link EAs for orphans"
7552
7553 test_102r() {
7554         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.6.93) ] &&
7555                 skip "MDS needs to be at least 2.6.93" && return
7556         touch $DIR/$tfile || error "touch"
7557         setfattr -n user.$(basename $tfile) $DIR/$tfile || error "setfattr"
7558         getfattr -n user.$(basename $tfile) $DIR/$tfile || error "getfattr"
7559         rm $DIR/$tfile || error "rm"
7560
7561         #normal directory
7562         mkdir -p $DIR/$tdir || error "mkdir"
7563         setfattr -n user.$(basename $tdir) $DIR/$tdir || error "setfattr dir"
7564         getfattr -n user.$(basename $tdir) $DIR/$tdir || error "getfattr dir"
7565         setfattr -x user.$(basename $tdir) $DIR/$tdir ||
7566                 error "$testfile error deleting user.author1"
7567         getfattr -d -m user.$(basename $tdir) 2> /dev/null |
7568                 grep "user.$(basename $tdir)" &&
7569                 error "$tdir did not delete user.$(basename $tdir)"
7570         rmdir $DIR/$tdir || error "rmdir"
7571
7572         #striped directory
7573         test_mkdir $DIR/$tdir
7574         setfattr -n user.$(basename $tdir) $DIR/$tdir || error "setfattr dir"
7575         getfattr -n user.$(basename $tdir) $DIR/$tdir || error "getfattr dir"
7576         setfattr -x user.$(basename $tdir) $DIR/$tdir ||
7577                 error "$testfile error deleting user.author1"
7578         getfattr -d -m user.$(basename $tdir) 2> /dev/null |
7579                 grep "user.$(basename $tdir)" &&
7580                 error "$tdir did not delete user.$(basename $tdir)"
7581         rmdir $DIR/$tdir || error "rm striped dir"
7582 }
7583 run_test 102r "set EAs with empty values"
7584
7585 run_acl_subtest()
7586 {
7587     $LUSTRE/tests/acl/run $LUSTRE/tests/acl/$1.test
7588     return $?
7589 }
7590
7591 test_103a() {
7592         [ "$UID" != 0 ] && skip_env "must run as root" && return
7593         [ -z "$(lctl get_param -n mdc.*-mdc-*.connect_flags | grep acl)" ] &&
7594                 skip "must have acl enabled" && return
7595         [ -z "$(which setfacl 2>/dev/null)" ] &&
7596                 skip_env "could not find setfacl" && return
7597         $GSS && skip "could not run under gss" && return
7598         remote_mds_nodsh && skip "remote MDS with nodsh" && return
7599
7600         gpasswd -a daemon bin                           # LU-5641
7601         do_facet $SINGLEMDS gpasswd -a daemon bin       # LU-5641
7602
7603         declare -a identity_old
7604
7605         for num in $(seq $MDSCOUNT); do
7606                 switch_identity $num true || identity_old[$num]=$?
7607         done
7608
7609         SAVE_UMASK=$(umask)
7610         umask 0022
7611         mkdir -p $DIR/$tdir
7612         cd $DIR/$tdir
7613
7614         echo "performing cp ..."
7615         run_acl_subtest cp || error "run_acl_subtest cp failed"
7616         echo "performing getfacl-noacl..."
7617         run_acl_subtest getfacl-noacl || error "getfacl-noacl test failed"
7618         echo "performing misc..."
7619         run_acl_subtest misc || error  "misc test failed"
7620         echo "performing permissions..."
7621         run_acl_subtest permissions || error "permissions failed"
7622         # LU-1482 mdd: Setting xattr are properly checked with and without ACLs
7623         if [ $(lustre_version_code $SINGLEMDS) -gt $(version_code 2.8.55) -o \
7624              \( $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.6) -a \
7625              $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.5.29) \) ]
7626         then
7627                 echo "performing permissions xattr..."
7628                 run_acl_subtest permissions_xattr ||
7629                         error "permissions_xattr failed"
7630         fi
7631         echo "performing setfacl..."
7632         run_acl_subtest setfacl || error  "setfacl test failed"
7633
7634         # inheritance test got from HP
7635         echo "performing inheritance..."
7636         cp $LUSTRE/tests/acl/make-tree . || error "cannot copy make-tree"
7637         chmod +x make-tree || error "chmod +x failed"
7638         run_acl_subtest inheritance || error "inheritance test failed"
7639         rm -f make-tree
7640
7641         echo "LU-974 ignore umask when acl is enabled..."
7642         run_acl_subtest 974 || error "LU-974 umask test failed"
7643         if [ $MDSCOUNT -ge 2 ]; then
7644                 run_acl_subtest 974_remote ||
7645                         error "LU-974 umask test failed under remote dir"
7646         fi
7647
7648         echo "LU-2561 newly created file is same size as directory..."
7649         if [ $(facet_fstype $SINGLEMDS) != "zfs" ]; then
7650                 run_acl_subtest 2561 || error "LU-2561 test failed"
7651         else
7652                 run_acl_subtest 2561_zfs || error "LU-2561 zfs test failed"
7653         fi
7654
7655         run_acl_subtest 4924 || error "LU-4924 test failed"
7656
7657         cd $SAVE_PWD
7658         umask $SAVE_UMASK
7659
7660         for num in $(seq $MDSCOUNT); do
7661                 if [ "${identity_old[$num]}" = 1 ]; then
7662                         switch_identity $num false || identity_old[$num]=$?
7663                 fi
7664         done
7665 }
7666 run_test 103a "acl test ========================================="
7667
7668 test_103c() {
7669         mkdir -p $DIR/$tdir
7670         cp -rp $DIR/$tdir $DIR/$tdir.bak
7671
7672         [ -n "$(getfattr -d -m. $DIR/$tdir | grep posix_acl_default)" ] &&
7673                 error "$DIR/$tdir shouldn't contain default ACL"
7674         [ -n "$(getfattr -d -m. $DIR/$tdir.bak | grep posix_acl_default)" ] &&
7675                 error "$DIR/$tdir.bak shouldn't contain default ACL"
7676         true
7677 }
7678 run_test 103c "'cp -rp' won't set empty acl"
7679
7680 test_104a() {
7681         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7682         touch $DIR/$tfile
7683         lfs df || error "lfs df failed"
7684         lfs df -ih || error "lfs df -ih failed"
7685         lfs df -h $DIR || error "lfs df -h $DIR failed"
7686         lfs df -i $DIR || error "lfs df -i $DIR failed"
7687         lfs df $DIR/$tfile || error "lfs df $DIR/$tfile failed"
7688         lfs df -ih $DIR/$tfile || error "lfs df -ih $DIR/$tfile failed"
7689
7690         local OSC=$(lctl dl | grep OST0000-osc-[^M] | awk '{ print $4 }')
7691         lctl --device %$OSC deactivate
7692         lfs df || error "lfs df with deactivated OSC failed"
7693         lctl --device %$OSC activate
7694         # wait the osc back to normal
7695         wait_osc_import_state client ost FULL
7696
7697         lfs df || error "lfs df with reactivated OSC failed"
7698         rm -f $DIR/$tfile
7699 }
7700 run_test 104a "lfs df [-ih] [path] test ========================="
7701
7702 test_104b() {
7703         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7704         [ $RUNAS_ID -eq $UID ] &&
7705                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
7706         chmod 666 /dev/obd
7707         denied_cnt=$(($($RUNAS $LFS check servers 2>&1 |
7708                         grep "Permission denied" | wc -l)))
7709         if [ $denied_cnt -ne 0 ]; then
7710                 error "lfs check servers test failed"
7711         fi
7712 }
7713 run_test 104b "$RUNAS lfs check servers test ===================="
7714
7715 test_105a() {
7716         # doesn't work on 2.4 kernels
7717         touch $DIR/$tfile
7718         if $(flock_is_enabled); then
7719                 flocks_test 1 on -f $DIR/$tfile || error "fail flock on"
7720         else
7721                 flocks_test 1 off -f $DIR/$tfile || error "fail flock off"
7722         fi
7723         rm -f $DIR/$tfile
7724 }
7725 run_test 105a "flock when mounted without -o flock test ========"
7726
7727 test_105b() {
7728         touch $DIR/$tfile
7729         if $(flock_is_enabled); then
7730                 flocks_test 1 on -c $DIR/$tfile || error "fail flock on"
7731         else
7732                 flocks_test 1 off -c $DIR/$tfile || error "fail flock off"
7733         fi
7734         rm -f $DIR/$tfile
7735 }
7736 run_test 105b "fcntl when mounted without -o flock test ========"
7737
7738 test_105c() {
7739         touch $DIR/$tfile
7740         if $(flock_is_enabled); then
7741                 flocks_test 1 on -l $DIR/$tfile || error "fail flock on"
7742         else
7743                 flocks_test 1 off -l $DIR/$tfile || error "fail flock off"
7744         fi
7745         rm -f $DIR/$tfile
7746 }
7747 run_test 105c "lockf when mounted without -o flock test"
7748
7749 test_105d() { # bug 15924
7750         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7751         test_mkdir $DIR/$tdir
7752         flock_is_enabled || { skip "mount w/o flock enabled" && return; }
7753         #define OBD_FAIL_LDLM_CP_CB_WAIT  0x315
7754         $LCTL set_param fail_loc=0x80000315
7755         flocks_test 2 $DIR/$tdir
7756 }
7757 run_test 105d "flock race (should not freeze) ========"
7758
7759 test_105e() { # bug 22660 && 22040
7760         flock_is_enabled || { skip "mount w/o flock enabled" && return; }
7761         touch $DIR/$tfile
7762         flocks_test 3 $DIR/$tfile
7763 }
7764 run_test 105e "Two conflicting flocks from same process"
7765
7766 test_106() { #bug 10921
7767         test_mkdir $DIR/$tdir
7768         $DIR/$tdir && error "exec $DIR/$tdir succeeded"
7769         chmod 777 $DIR/$tdir || error "chmod $DIR/$tdir failed"
7770 }
7771 run_test 106 "attempt exec of dir followed by chown of that dir"
7772
7773 test_107() {
7774         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7775         CDIR=`pwd`
7776         cd $DIR
7777
7778         local file=core
7779         rm -f $file
7780
7781         local save_pattern=$(sysctl -n kernel.core_pattern)
7782         local save_uses_pid=$(sysctl -n kernel.core_uses_pid)
7783         sysctl -w kernel.core_pattern=$file
7784         sysctl -w kernel.core_uses_pid=0
7785
7786         ulimit -c unlimited
7787         sleep 60 &
7788         SLEEPPID=$!
7789
7790         sleep 1
7791
7792         kill -s 11 $SLEEPPID
7793         wait $SLEEPPID
7794         if [ -e $file ]; then
7795                 size=`stat -c%s $file`
7796                 [ $size -eq 0 ] && error "Fail to create core file $file"
7797         else
7798                 error "Fail to create core file $file"
7799         fi
7800         rm -f $file
7801         sysctl -w kernel.core_pattern=$save_pattern
7802         sysctl -w kernel.core_uses_pid=$save_uses_pid
7803         cd $CDIR
7804 }
7805 run_test 107 "Coredump on SIG"
7806
7807 test_110() {
7808         test_mkdir $DIR/$tdir
7809         test_mkdir $DIR/$tdir/$(str_repeat 'a' 255)
7810         $LFS mkdir -c $MDSCOUNT $DIR/$tdir/$(str_repeat 'b' 256) &&
7811                 error "mkdir with 256 char should fail, but did not"
7812         touch $DIR/$tdir/$(str_repeat 'x' 255) ||
7813                 error "create with 255 char failed"
7814         touch $DIR/$tdir/$(str_repeat 'y' 256) &&
7815                 error "create with 256 char should fail, but did not"
7816
7817         ls -l $DIR/$tdir
7818         rm -rf $DIR/$tdir
7819 }
7820 run_test 110 "filename length checking"
7821
7822 #
7823 # Purpose: To verify dynamic thread (OSS) creation.
7824 #
7825 test_115() {
7826         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7827         remote_ost_nodsh && skip "remote OST with nodsh" && return
7828
7829         # Lustre does not stop service threads once they are started.
7830         # Reset number of running threads to default.
7831         stopall
7832         setupall
7833
7834         local OSTIO_pre
7835         local save_params="$TMP/sanity-$TESTNAME.parameters"
7836
7837         # Get ll_ost_io count before I/O
7838         OSTIO_pre=$(do_facet ost1 \
7839                 "$LCTL get_param ost.OSS.ost_io.threads_started | cut -d= -f2")
7840         # Exit if lustre is not running (ll_ost_io not running).
7841         [ -z "$OSTIO_pre" ] && error "no OSS threads"
7842
7843         echo "Starting with $OSTIO_pre threads"
7844         local thread_max=$((OSTIO_pre * 2))
7845         local rpc_in_flight=$((thread_max * 2))
7846         # Number of I/O Process proposed to be started.
7847         local nfiles
7848         local facets=$(get_facets OST)
7849
7850         save_lustre_params client "osc.*OST*.max_rpcs_in_flight" > $save_params
7851         save_lustre_params $facets "ost.OSS.ost_io.threads_max" >> $save_params
7852
7853         # Set in_flight to $rpc_in_flight
7854         $LCTL set_param osc.*OST*.max_rpcs_in_flight=$rpc_in_flight ||
7855                 error "Failed to set max_rpcs_in_flight to $rpc_in_flight"
7856         nfiles=${rpc_in_flight}
7857         # Set ost thread_max to $thread_max
7858         do_facet ost1 "$LCTL set_param ost.OSS.ost_io.threads_max=$thread_max"
7859
7860         # 5 Minutes should be sufficient for max number of OSS
7861         # threads(thread_max) to be created.
7862         local timeout=300
7863
7864         # Start I/O.
7865         local WTL=${WTL:-"$LUSTRE/tests/write_time_limit"}
7866         test_mkdir $DIR/$tdir
7867         for i in $(seq $nfiles); do
7868                 local file=$DIR/$tdir/${tfile}-$i
7869                 $LFS setstripe -c -1 -i 0 $file
7870                 ($WTL $file $timeout)&
7871         done
7872
7873         # I/O Started - Wait for thread_started to reach thread_max or report
7874         # error if thread_started is more than thread_max.
7875         echo "Waiting for thread_started to reach thread_max"
7876         local thread_started=0
7877         local end_time=$((SECONDS + timeout))
7878
7879         while [ $SECONDS -le $end_time ] ; do
7880                 echo -n "."
7881                 # Get ost i/o thread_started count.
7882                 thread_started=$(do_facet ost1 \
7883                         "$LCTL get_param \
7884                         ost.OSS.ost_io.threads_started | cut -d= -f2")
7885                 # Break out if thread_started is equal/greater than thread_max
7886                 if [[ $thread_started -ge $thread_max ]]; then
7887                         echo ll_ost_io thread_started $thread_started, \
7888                                 equal/greater than thread_max $thread_max
7889                         break
7890                 fi
7891                 sleep 1
7892         done
7893
7894         # Cleanup - We have the numbers, Kill i/o jobs if running.
7895         jobcount=($(jobs -p))
7896         for i in $(seq 0 $((${#jobcount[@]}-1)))
7897         do
7898                 kill -9 ${jobcount[$i]}
7899                 if [ $? -ne 0 ] ; then
7900                         echo Warning: \
7901                         Failed to Kill \'WTL\(I/O\)\' with pid ${jobcount[$i]}
7902                 fi
7903         done
7904
7905         # Cleanup files left by WTL binary.
7906         for i in $(seq $nfiles); do
7907                 local file=$DIR/$tdir/${tfile}-$i
7908                 rm -rf $file
7909                 if [ $? -ne 0 ] ; then
7910                         echo "Warning: Failed to delete file $file"
7911                 fi
7912         done
7913
7914         restore_lustre_params <$save_params
7915         rm -f $save_params || echo "Warning: delete file '$save_params' failed"
7916
7917         # Error out if no new thread has started or Thread started is greater
7918         # than thread max.
7919         if [[ $thread_started -le $OSTIO_pre ||
7920                         $thread_started -gt $thread_max ]]; then
7921                 error "ll_ost_io: thread_started $thread_started" \
7922                       "OSTIO_pre $OSTIO_pre, thread_max $thread_max." \
7923                       "No new thread started or thread started greater " \
7924                       "than thread_max."
7925         fi
7926 }
7927 run_test 115 "verify dynamic thread creation===================="
7928
7929 free_min_max () {
7930         wait_delete_completed
7931         AVAIL=($(lctl get_param -n osc.*[oO][sS][cC]-[^M]*.kbytesavail))
7932         echo "OST kbytes available: ${AVAIL[@]}"
7933         MAXV=${AVAIL[0]}
7934         MAXI=0
7935         MINV=${AVAIL[0]}
7936         MINI=0
7937         for ((i = 0; i < ${#AVAIL[@]}; i++)); do
7938                 #echo OST $i: ${AVAIL[i]}kb
7939                 if [[ ${AVAIL[i]} -gt $MAXV ]]; then
7940                         MAXV=${AVAIL[i]}
7941                         MAXI=$i
7942                 fi
7943                 if [[ ${AVAIL[i]} -lt $MINV ]]; then
7944                         MINV=${AVAIL[i]}
7945                         MINI=$i
7946                 fi
7947         done
7948         echo "Min free space: OST $MINI: $MINV"
7949         echo "Max free space: OST $MAXI: $MAXV"
7950 }
7951
7952 test_116a() { # was previously test_116()
7953         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7954         remote_mds_nodsh && skip "remote MDS with nodsh" && return
7955
7956         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
7957
7958         echo -n "Free space priority "
7959         do_facet $SINGLEMDS lctl get_param -n lo*.*-mdtlov.qos_prio_free |
7960                 head -n1
7961         declare -a AVAIL
7962         free_min_max
7963
7964         [ $MINV -eq 0 ] && skip "no free space in OST$MINI, skip" && return
7965         [ $MINV -gt 10000000 ] && skip "too much free space in OST$MINI, skip" \
7966                 && return
7967         trap simple_cleanup_common EXIT
7968
7969
7970         # Check if we need to generate uneven OSTs
7971         test_mkdir -p $DIR/$tdir/OST${MINI}
7972         local FILL=$((MINV / 4))
7973         local DIFF=$((MAXV - MINV))
7974         local DIFF2=$((DIFF * 100 / MINV))
7975
7976         local threshold=$(do_facet $SINGLEMDS \
7977                 lctl get_param -n *.*MDT0000-mdtlov.qos_threshold_rr | head -n1)
7978         threshold=${threshold%%%}
7979         echo -n "Check for uneven OSTs: "
7980         echo -n "diff=${DIFF}KB (${DIFF2}%) must be > ${threshold}% ..."
7981
7982         if [[ $DIFF2 -gt $threshold ]]; then
7983                 echo "ok"
7984                 echo "Don't need to fill OST$MINI"
7985         else
7986                 # generate uneven OSTs. Write 2% over the QOS threshold value
7987                 echo "no"
7988                 DIFF=$((threshold - DIFF2 + 2))
7989                 DIFF2=$((MINV * DIFF / 100))
7990                 echo "Fill $DIFF% remaining space in OST$MINI with ${DIFF2}KB"
7991                 $SETSTRIPE -i $MINI -c 1 $DIR/$tdir/OST${MINI} ||
7992                         error "setstripe failed"
7993                 DIFF=$((DIFF2 / 2048))
7994                 i=0
7995                 while [ $i -lt $DIFF ]; do
7996                         i=$((i + 1))
7997                         dd if=/dev/zero of=$DIR/$tdir/OST${MINI}/$tfile-$i \
7998                                 bs=2M count=1 2>/dev/null
7999                         echo -n .
8000                 done
8001                 echo .
8002                 sync
8003                 sleep_maxage
8004                 free_min_max
8005         fi
8006
8007         DIFF=$((MAXV - MINV))
8008         DIFF2=$((DIFF * 100 / MINV))
8009         echo -n "diff=$DIFF=$DIFF2% must be > $threshold% for QOS mode..."
8010         if [ $DIFF2 -gt $threshold ]; then
8011                 echo "ok"
8012         else
8013                 echo "failed - QOS mode won't be used"
8014                 skip "QOS imbalance criteria not met"
8015                 simple_cleanup_common
8016                 return
8017         fi
8018
8019         MINI1=$MINI
8020         MINV1=$MINV
8021         MAXI1=$MAXI
8022         MAXV1=$MAXV
8023
8024         # now fill using QOS
8025         $SETSTRIPE -c 1 $DIR/$tdir
8026         FILL=$((FILL / 200))
8027         if [ $FILL -gt 600 ]; then
8028                 FILL=600
8029         fi
8030         echo "writing $FILL files to QOS-assigned OSTs"
8031         i=0
8032         while [ $i -lt $FILL ]; do
8033                 i=$((i + 1))
8034                 dd if=/dev/zero of=$DIR/$tdir/$tfile-$i bs=200k \
8035                         count=1 2>/dev/null
8036                 echo -n .
8037         done
8038         echo "wrote $i 200k files"
8039         sync
8040         sleep_maxage
8041
8042         echo "Note: free space may not be updated, so measurements might be off"
8043         free_min_max
8044         DIFF2=$((MAXV - MINV))
8045         echo "free space delta: orig $DIFF final $DIFF2"
8046         [ $DIFF2 -gt $DIFF ] && echo "delta got worse!"
8047         DIFF=$((MINV1 - ${AVAIL[$MINI1]}))
8048         echo "Wrote ${DIFF}KB to smaller OST $MINI1"
8049         DIFF2=$((MAXV1 - ${AVAIL[$MAXI1]}))
8050         echo "Wrote ${DIFF2}KB to larger OST $MAXI1"
8051         if [[ $DIFF -gt 0 ]]; then
8052                 FILL=$((DIFF2 * 100 / DIFF - 100))
8053                 echo "Wrote ${FILL}% more data to larger OST $MAXI1"
8054         fi
8055
8056         # Figure out which files were written where
8057         UUID=$(lctl get_param -n lov.${FSNAME}-clilov-*.target_obd |
8058                awk '/'$MINI1': / {print $2; exit}')
8059         echo $UUID
8060         MINC=$($GETSTRIPE --ost $UUID $DIR/$tdir | grep $DIR | wc -l)
8061         echo "$MINC files created on smaller OST $MINI1"
8062         UUID=$(lctl get_param -n lov.${FSNAME}-clilov-*.target_obd |
8063                awk '/'$MAXI1': / {print $2; exit}')
8064         echo $UUID
8065         MAXC=$($GETSTRIPE --ost $UUID $DIR/$tdir | grep $DIR | wc -l)
8066         echo "$MAXC files created on larger OST $MAXI1"
8067         if [[ $MINC -gt 0 ]]; then
8068                 FILL=$((MAXC * 100 / MINC - 100))
8069                 echo "Wrote ${FILL}% more files to larger OST $MAXI1"
8070         fi
8071         [[ $MAXC -gt $MINC ]] ||
8072                 error_ignore LU-9 "stripe QOS didn't balance free space"
8073         simple_cleanup_common
8074 }
8075 run_test 116a "stripe QOS: free space balance ==================="
8076
8077 test_116b() { # LU-2093
8078         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8079         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8080
8081 #define OBD_FAIL_MDS_OSC_CREATE_FAIL     0x147
8082         local old_rr=$(do_facet $SINGLEMDS lctl get_param -n \
8083                        lo*.$FSNAME-MDT0000-mdtlov.qos_threshold_rr | head -1)
8084         [ -z "$old_rr" ] && skip "no QOS" && return 0
8085         do_facet $SINGLEMDS lctl set_param \
8086                 lo*.$FSNAME-MDT0000-mdtlov.qos_threshold_rr=0
8087         mkdir -p $DIR/$tdir
8088         do_facet $SINGLEMDS lctl set_param fail_loc=0x147
8089         createmany -o $DIR/$tdir/f- 20 || error "can't create"
8090         do_facet $SINGLEMDS lctl set_param fail_loc=0
8091         rm -rf $DIR/$tdir
8092         do_facet $SINGLEMDS lctl set_param \
8093                 lo*.$FSNAME-MDT0000-mdtlov.qos_threshold_rr=$old_rr
8094 }
8095 run_test 116b "QoS shouldn't LBUG if not enough OSTs found on the 2nd pass"
8096
8097 test_117() # bug 10891
8098 {
8099         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8100         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1
8101         #define OBD_FAIL_OST_SETATTR_CREDITS 0x21e
8102         lctl set_param fail_loc=0x21e
8103         > $DIR/$tfile || error "truncate failed"
8104         lctl set_param fail_loc=0
8105         echo "Truncate succeeded."
8106         rm -f $DIR/$tfile
8107 }
8108 run_test 117 "verify osd extend =========="
8109
8110 NO_SLOW_RESENDCOUNT=4
8111 export OLD_RESENDCOUNT=""
8112 set_resend_count () {
8113         local PROC_RESENDCOUNT="osc.${FSNAME}-OST*-osc-*.resend_count"
8114         OLD_RESENDCOUNT=$(lctl get_param -n $PROC_RESENDCOUNT | head -n1)
8115         lctl set_param -n $PROC_RESENDCOUNT $1
8116         echo resend_count is set to $(lctl get_param -n $PROC_RESENDCOUNT)
8117 }
8118
8119 # for reduce test_118* time (b=14842)
8120 [ "$SLOW" = "no" ] && set_resend_count $NO_SLOW_RESENDCOUNT
8121
8122 # Reset async IO behavior after error case
8123 reset_async() {
8124         FILE=$DIR/reset_async
8125
8126         # Ensure all OSCs are cleared
8127         $SETSTRIPE -c -1 $FILE
8128         dd if=/dev/zero of=$FILE bs=64k count=$OSTCOUNT
8129         sync
8130         rm $FILE
8131 }
8132
8133 test_118a() #bug 11710
8134 {
8135         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8136         reset_async
8137
8138         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
8139         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
8140         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
8141
8142         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
8143                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
8144                 return 1;
8145         fi
8146         rm -f $DIR/$tfile
8147 }
8148 run_test 118a "verify O_SYNC works =========="
8149
8150 test_118b()
8151 {
8152         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8153         remote_ost_nodsh && skip "remote OST with nodsh" && return
8154
8155         reset_async
8156
8157         #define OBD_FAIL_SRV_ENOENT 0x217
8158         set_nodes_failloc "$(osts_nodes)" 0x217
8159         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
8160         RC=$?
8161         set_nodes_failloc "$(osts_nodes)" 0
8162         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
8163         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
8164                     grep -c writeback)
8165
8166         if [[ $RC -eq 0 ]]; then
8167                 error "Must return error due to dropped pages, rc=$RC"
8168                 return 1;
8169         fi
8170
8171         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
8172                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
8173                 return 1;
8174         fi
8175
8176         echo "Dirty pages not leaked on ENOENT"
8177
8178         # Due to the above error the OSC will issue all RPCs syncronously
8179         # until a subsequent RPC completes successfully without error.
8180         $MULTIOP $DIR/$tfile Ow4096yc
8181         rm -f $DIR/$tfile
8182
8183         return 0
8184 }
8185 run_test 118b "Reclaim dirty pages on fatal error =========="
8186
8187 test_118c()
8188 {
8189         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8190
8191         # for 118c, restore the original resend count, LU-1940
8192         [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] &&
8193                                 set_resend_count $OLD_RESENDCOUNT
8194         remote_ost_nodsh && skip "remote OST with nodsh" && return
8195
8196         reset_async
8197
8198         #define OBD_FAIL_OST_EROFS               0x216
8199         set_nodes_failloc "$(osts_nodes)" 0x216
8200
8201         # multiop should block due to fsync until pages are written
8202         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
8203         MULTIPID=$!
8204         sleep 1
8205
8206         if [[ `ps h -o comm -p $MULTIPID` != "multiop" ]]; then
8207                 error "Multiop failed to block on fsync, pid=$MULTIPID"
8208         fi
8209
8210         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
8211                     grep -c writeback)
8212         if [[ $WRITEBACK -eq 0 ]]; then
8213                 error "No page in writeback, writeback=$WRITEBACK"
8214         fi
8215
8216         set_nodes_failloc "$(osts_nodes)" 0
8217         wait $MULTIPID
8218         RC=$?
8219         if [[ $RC -ne 0 ]]; then
8220                 error "Multiop fsync failed, rc=$RC"
8221         fi
8222
8223         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
8224         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
8225                     grep -c writeback)
8226         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
8227                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
8228         fi
8229
8230         rm -f $DIR/$tfile
8231         echo "Dirty pages flushed via fsync on EROFS"
8232         return 0
8233 }
8234 run_test 118c "Fsync blocks on EROFS until dirty pages are flushed =========="
8235
8236 # continue to use small resend count to reduce test_118* time (b=14842)
8237 [ "$SLOW" = "no" ] && set_resend_count $NO_SLOW_RESENDCOUNT
8238
8239 test_118d()
8240 {
8241         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8242         remote_ost_nodsh && skip "remote OST with nodsh" && return
8243
8244         reset_async
8245
8246         #define OBD_FAIL_OST_BRW_PAUSE_BULK
8247         set_nodes_failloc "$(osts_nodes)" 0x214
8248         # multiop should block due to fsync until pages are written
8249         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
8250         MULTIPID=$!
8251         sleep 1
8252
8253         if [[ `ps h -o comm -p $MULTIPID` != "multiop" ]]; then
8254                 error "Multiop failed to block on fsync, pid=$MULTIPID"
8255         fi
8256
8257         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
8258                     grep -c writeback)
8259         if [[ $WRITEBACK -eq 0 ]]; then
8260                 error "No page in writeback, writeback=$WRITEBACK"
8261         fi
8262
8263         wait $MULTIPID || error "Multiop fsync failed, rc=$?"
8264         set_nodes_failloc "$(osts_nodes)" 0
8265
8266         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
8267         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
8268                     grep -c writeback)
8269         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
8270                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
8271         fi
8272
8273         rm -f $DIR/$tfile
8274         echo "Dirty pages gaurenteed flushed via fsync"
8275         return 0
8276 }
8277 run_test 118d "Fsync validation inject a delay of the bulk =========="
8278
8279 test_118f() {
8280         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8281         reset_async
8282
8283         #define OBD_FAIL_OSC_BRW_PREP_REQ2        0x40a
8284         lctl set_param fail_loc=0x8000040a
8285
8286         # Should simulate EINVAL error which is fatal
8287         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
8288         RC=$?
8289         if [[ $RC -eq 0 ]]; then
8290                 error "Must return error due to dropped pages, rc=$RC"
8291         fi
8292
8293         lctl set_param fail_loc=0x0
8294
8295         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
8296         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
8297         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
8298                     grep -c writeback)
8299         if [[ $LOCKED -ne 0 ]]; then
8300                 error "Locked pages remain in cache, locked=$LOCKED"
8301         fi
8302
8303         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
8304                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
8305         fi
8306
8307         rm -f $DIR/$tfile
8308         echo "No pages locked after fsync"
8309
8310         reset_async
8311         return 0
8312 }
8313 run_test 118f "Simulate unrecoverable OSC side error =========="
8314
8315 test_118g() {
8316         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8317         reset_async
8318
8319         #define OBD_FAIL_OSC_BRW_PREP_REQ        0x406
8320         lctl set_param fail_loc=0x406
8321
8322         # simulate local -ENOMEM
8323         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
8324         RC=$?
8325
8326         lctl set_param fail_loc=0
8327         if [[ $RC -eq 0 ]]; then
8328                 error "Must return error due to dropped pages, rc=$RC"
8329         fi
8330
8331         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
8332         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
8333         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
8334                         grep -c writeback)
8335         if [[ $LOCKED -ne 0 ]]; then
8336                 error "Locked pages remain in cache, locked=$LOCKED"
8337         fi
8338
8339         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
8340                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
8341         fi
8342
8343         rm -f $DIR/$tfile
8344         echo "No pages locked after fsync"
8345
8346         reset_async
8347         return 0
8348 }
8349 run_test 118g "Don't stay in wait if we got local -ENOMEM  =========="
8350
8351 test_118h() {
8352         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8353         remote_ost_nodsh && skip "remote OST with nodsh" && return
8354
8355         reset_async
8356
8357         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
8358         set_nodes_failloc "$(osts_nodes)" 0x20e
8359         # Should simulate ENOMEM error which is recoverable and should be handled by timeout
8360         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
8361         RC=$?
8362
8363         set_nodes_failloc "$(osts_nodes)" 0
8364         if [[ $RC -eq 0 ]]; then
8365                 error "Must return error due to dropped pages, rc=$RC"
8366         fi
8367
8368         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
8369         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
8370         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
8371                     grep -c writeback)
8372         if [[ $LOCKED -ne 0 ]]; then
8373                 error "Locked pages remain in cache, locked=$LOCKED"
8374         fi
8375
8376         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
8377                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
8378         fi
8379
8380         rm -f $DIR/$tfile
8381         echo "No pages locked after fsync"
8382
8383         return 0
8384 }
8385 run_test 118h "Verify timeout in handling recoverables errors  =========="
8386
8387 [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] && set_resend_count $OLD_RESENDCOUNT
8388
8389 test_118i() {
8390         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8391         remote_ost_nodsh && skip "remote OST with nodsh" && return
8392
8393         reset_async
8394
8395         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
8396         set_nodes_failloc "$(osts_nodes)" 0x20e
8397
8398         # Should simulate ENOMEM error which is recoverable and should be handled by timeout
8399         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
8400         PID=$!
8401         sleep 5
8402         set_nodes_failloc "$(osts_nodes)" 0
8403
8404         wait $PID
8405         RC=$?
8406         if [[ $RC -ne 0 ]]; then
8407                 error "got error, but should be not, rc=$RC"
8408         fi
8409
8410         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
8411         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
8412         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
8413         if [[ $LOCKED -ne 0 ]]; then
8414                 error "Locked pages remain in cache, locked=$LOCKED"
8415         fi
8416
8417         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
8418                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
8419         fi
8420
8421         rm -f $DIR/$tfile
8422         echo "No pages locked after fsync"
8423
8424         return 0
8425 }
8426 run_test 118i "Fix error before timeout in recoverable error  =========="
8427
8428 [ "$SLOW" = "no" ] && set_resend_count 4
8429
8430 test_118j() {
8431         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8432         remote_ost_nodsh && skip "remote OST with nodsh" && return
8433
8434         reset_async
8435
8436         #define OBD_FAIL_OST_BRW_WRITE_BULK2     0x220
8437         set_nodes_failloc "$(osts_nodes)" 0x220
8438
8439         # return -EIO from OST
8440         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
8441         RC=$?
8442         set_nodes_failloc "$(osts_nodes)" 0x0
8443         if [[ $RC -eq 0 ]]; then
8444                 error "Must return error due to dropped pages, rc=$RC"
8445         fi
8446
8447         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
8448         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
8449         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
8450         if [[ $LOCKED -ne 0 ]]; then
8451                 error "Locked pages remain in cache, locked=$LOCKED"
8452         fi
8453
8454         # in recoverable error on OST we want resend and stay until it finished
8455         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
8456                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
8457         fi
8458
8459         rm -f $DIR/$tfile
8460         echo "No pages locked after fsync"
8461
8462         return 0
8463 }
8464 run_test 118j "Simulate unrecoverable OST side error =========="
8465
8466 test_118k()
8467 {
8468         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8469         remote_ost_nodsh && skip "remote OSTs with nodsh" && return
8470
8471         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
8472         set_nodes_failloc "$(osts_nodes)" 0x20e
8473         test_mkdir $DIR/$tdir
8474
8475         for ((i=0;i<10;i++)); do
8476                 (dd if=/dev/zero of=$DIR/$tdir/$tfile-$i bs=1M count=10 || \
8477                         error "dd to $DIR/$tdir/$tfile-$i failed" )&
8478                 SLEEPPID=$!
8479                 sleep 0.500s
8480                 kill $SLEEPPID
8481                 wait $SLEEPPID
8482         done
8483
8484         set_nodes_failloc "$(osts_nodes)" 0
8485         rm -rf $DIR/$tdir
8486 }
8487 run_test 118k "bio alloc -ENOMEM and IO TERM handling ========="
8488
8489 test_118l()
8490 {
8491         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8492         # LU-646
8493         test_mkdir $DIR/$tdir
8494         $MULTIOP $DIR/$tdir Dy || error "fsync dir failed"
8495         rm -rf $DIR/$tdir
8496 }
8497 run_test 118l "fsync dir"
8498
8499 test_118m() # LU-3066
8500 {
8501         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8502         test_mkdir $DIR/$tdir
8503         $MULTIOP $DIR/$tdir DY || error "fdatasync dir failed"
8504         rm -rf $DIR/$tdir
8505 }
8506 run_test 118m "fdatasync dir ========="
8507
8508 [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] && set_resend_count $OLD_RESENDCOUNT
8509
8510 test_119a() # bug 11737
8511 {
8512         BSIZE=$((512 * 1024))
8513         directio write $DIR/$tfile 0 1 $BSIZE
8514         # We ask to read two blocks, which is more than a file size.
8515         # directio will indicate an error when requested and actual
8516         # sizes aren't equeal (a normal situation in this case) and
8517         # print actual read amount.
8518         NOB=`directio read $DIR/$tfile 0 2 $BSIZE | awk '/error/ {print $6}'`
8519         if [ "$NOB" != "$BSIZE" ]; then
8520                 error "read $NOB bytes instead of $BSIZE"
8521         fi
8522         rm -f $DIR/$tfile
8523 }
8524 run_test 119a "Short directIO read must return actual read amount"
8525
8526 test_119b() # bug 11737
8527 {
8528         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
8529
8530         $SETSTRIPE -c 2 $DIR/$tfile || error "setstripe failed"
8531         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=1 || error "dd failed"
8532         sync
8533         $MULTIOP $DIR/$tfile oO_RDONLY:O_DIRECT:r$((2048 * 1024)) || \
8534                 error "direct read failed"
8535         rm -f $DIR/$tfile
8536 }
8537 run_test 119b "Sparse directIO read must return actual read amount"
8538
8539 test_119c() # bug 13099
8540 {
8541         BSIZE=1048576
8542         directio write $DIR/$tfile 3 1 $BSIZE || error "direct write failed"
8543         directio readhole $DIR/$tfile 0 2 $BSIZE || error "reading hole failed"
8544         rm -f $DIR/$tfile
8545 }
8546 run_test 119c "Testing for direct read hitting hole"
8547
8548 test_119d() # bug 15950
8549 {
8550         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8551         MAX_RPCS_IN_FLIGHT=`$LCTL get_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight`
8552         $LCTL set_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight 1
8553         BSIZE=1048576
8554         $SETSTRIPE $DIR/$tfile -i 0 -c 1 || error "setstripe failed"
8555         $DIRECTIO write $DIR/$tfile 0 1 $BSIZE || error "first directio failed"
8556         #define OBD_FAIL_OSC_DIO_PAUSE           0x40d
8557         lctl set_param fail_loc=0x40d
8558         $DIRECTIO write $DIR/$tfile 1 4 $BSIZE &
8559         pid_dio=$!
8560         sleep 1
8561         cat $DIR/$tfile > /dev/null &
8562         lctl set_param fail_loc=0
8563         pid_reads=$!
8564         wait $pid_dio
8565         log "the DIO writes have completed, now wait for the reads (should not block very long)"
8566         sleep 2
8567         [ -n "`ps h -p $pid_reads -o comm`" ] && \
8568         error "the read rpcs have not completed in 2s"
8569         rm -f $DIR/$tfile
8570         $LCTL set_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight $MAX_RPCS_IN_FLIGHT
8571 }
8572 run_test 119d "The DIO path should try to send a new rpc once one is completed"
8573
8574 test_120a() {
8575         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8576         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8577         test_mkdir $DIR/$tdir
8578         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
8579                 { skip "no early lock cancel on server"; return 0; }
8580
8581         lru_resize_disable mdc
8582         lru_resize_disable osc
8583         cancel_lru_locks mdc
8584         # asynchronous object destroy at MDT could cause bl ast to client
8585         cancel_lru_locks osc
8586
8587         stat $DIR/$tdir > /dev/null
8588         can1=$(do_facet $SINGLEMDS \
8589                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8590                awk '/ldlm_cancel/ {print $2}')
8591         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8592                awk '/ldlm_bl_callback/ {print $2}')
8593         test_mkdir -c1 $DIR/$tdir/d1
8594         can2=$(do_facet $SINGLEMDS \
8595                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8596                awk '/ldlm_cancel/ {print $2}')
8597         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8598                awk '/ldlm_bl_callback/ {print $2}')
8599         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
8600         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
8601         lru_resize_enable mdc
8602         lru_resize_enable osc
8603 }
8604 run_test 120a "Early Lock Cancel: mkdir test"
8605
8606 test_120b() {
8607         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8608         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8609         test_mkdir $DIR/$tdir
8610         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
8611                 { skip "no early lock cancel on server"; return 0; }
8612         lru_resize_disable mdc
8613         lru_resize_disable osc
8614         cancel_lru_locks mdc
8615         stat $DIR/$tdir > /dev/null
8616         can1=$(do_facet $SINGLEMDS \
8617                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8618                awk '/ldlm_cancel/ {print $2}')
8619         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8620                awk '/ldlm_bl_callback/ {print $2}')
8621         touch $DIR/$tdir/f1
8622         can2=$(do_facet $SINGLEMDS \
8623                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8624                awk '/ldlm_cancel/ {print $2}')
8625         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8626                awk '/ldlm_bl_callback/ {print $2}')
8627         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
8628         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
8629         lru_resize_enable mdc
8630         lru_resize_enable osc
8631 }
8632 run_test 120b "Early Lock Cancel: create test"
8633
8634 test_120c() {
8635         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8636         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8637         test_mkdir -c1 $DIR/$tdir
8638         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
8639                 { skip "no early lock cancel on server"; return 0; }
8640         lru_resize_disable mdc
8641         lru_resize_disable osc
8642         test_mkdir -c1 $DIR/$tdir/d1
8643         test_mkdir -c1 $DIR/$tdir/d2
8644         touch $DIR/$tdir/d1/f1
8645         cancel_lru_locks mdc
8646         stat $DIR/$tdir/d1 $DIR/$tdir/d2 $DIR/$tdir/d1/f1 > /dev/null
8647         can1=$(do_facet $SINGLEMDS \
8648                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8649                awk '/ldlm_cancel/ {print $2}')
8650         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8651                awk '/ldlm_bl_callback/ {print $2}')
8652         ln $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2
8653         can2=$(do_facet $SINGLEMDS \
8654                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8655                awk '/ldlm_cancel/ {print $2}')
8656         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8657                awk '/ldlm_bl_callback/ {print $2}')
8658         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
8659         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
8660         lru_resize_enable mdc
8661         lru_resize_enable osc
8662 }
8663 run_test 120c "Early Lock Cancel: link test"
8664
8665 test_120d() {
8666         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8667         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8668         test_mkdir -c1 $DIR/$tdir
8669         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
8670                 { skip "no early lock cancel on server"; return 0; }
8671         lru_resize_disable mdc
8672         lru_resize_disable osc
8673         touch $DIR/$tdir
8674         cancel_lru_locks mdc
8675         stat $DIR/$tdir > /dev/null
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         chmod a+x $DIR/$tdir
8682         can2=$(do_facet $SINGLEMDS \
8683                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8684                awk '/ldlm_cancel/ {print $2}')
8685         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8686                awk '/ldlm_bl_callback/ {print $2}')
8687         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
8688         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
8689         lru_resize_enable mdc
8690         lru_resize_enable osc
8691 }
8692 run_test 120d "Early Lock Cancel: setattr test"
8693
8694 test_120e() {
8695         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8696         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
8697                 { skip "no early lock cancel on server"; return 0; }
8698         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8699         local dlmtrace_set=false
8700
8701         test_mkdir -c1 $DIR/$tdir
8702         lru_resize_disable mdc
8703         lru_resize_disable osc
8704         ! $LCTL get_param debug | grep -q dlmtrace &&
8705                 $LCTL set_param debug=+dlmtrace && dlmtrace_set=true
8706         dd if=/dev/zero of=$DIR/$tdir/f1 count=1
8707         cancel_lru_locks mdc
8708         cancel_lru_locks osc
8709         dd if=$DIR/$tdir/f1 of=/dev/null
8710         stat $DIR/$tdir $DIR/$tdir/f1 > /dev/null
8711         # XXX client can not do early lock cancel of OST lock
8712         # during unlink (LU-4206), so cancel osc lock now.
8713         sleep 2
8714         cancel_lru_locks osc
8715         can1=$(do_facet $SINGLEMDS \
8716                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8717                awk '/ldlm_cancel/ {print $2}')
8718         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8719                awk '/ldlm_bl_callback/ {print $2}')
8720         unlink $DIR/$tdir/f1
8721         sleep 5
8722         can2=$(do_facet $SINGLEMDS \
8723                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8724                awk '/ldlm_cancel/ {print $2}')
8725         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8726                awk '/ldlm_bl_callback/ {print $2}')
8727         [ $can1 -ne $can2 ] && error "$((can2 - can1)) cancel RPC occured" &&
8728                 $LCTL dk $TMP/cancel.debug.txt
8729         [ $blk1 -ne $blk2 ] && error "$((blk2 - blk1)) blocking RPC occured" &&
8730                 $LCTL dk $TMP/blocking.debug.txt
8731         $dlmtrace_set && $LCTL set_param debug=-dlmtrace
8732         lru_resize_enable mdc
8733         lru_resize_enable osc
8734 }
8735 run_test 120e "Early Lock Cancel: unlink test"
8736
8737 test_120f() {
8738         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8739         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
8740                 { skip "no early lock cancel on server"; return 0; }
8741         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8742         test_mkdir -c1 $DIR/$tdir
8743         lru_resize_disable mdc
8744         lru_resize_disable osc
8745         test_mkdir -c1 $DIR/$tdir/d1
8746         test_mkdir -c1 $DIR/$tdir/d2
8747         dd if=/dev/zero of=$DIR/$tdir/d1/f1 count=1
8748         dd if=/dev/zero of=$DIR/$tdir/d2/f2 count=1
8749         cancel_lru_locks mdc
8750         cancel_lru_locks osc
8751         dd if=$DIR/$tdir/d1/f1 of=/dev/null
8752         dd if=$DIR/$tdir/d2/f2 of=/dev/null
8753         stat $DIR/$tdir/d1 $DIR/$tdir/d2 $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2 > /dev/null
8754         # XXX client can not do early lock cancel of OST lock
8755         # during rename (LU-4206), so cancel osc lock now.
8756         sleep 2
8757         cancel_lru_locks osc
8758         can1=$(do_facet $SINGLEMDS \
8759                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8760                awk '/ldlm_cancel/ {print $2}')
8761         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8762                awk '/ldlm_bl_callback/ {print $2}')
8763         mrename $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2
8764         sleep 5
8765         can2=$(do_facet $SINGLEMDS \
8766                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8767                awk '/ldlm_cancel/ {print $2}')
8768         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8769                awk '/ldlm_bl_callback/ {print $2}')
8770         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
8771         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
8772         lru_resize_enable mdc
8773         lru_resize_enable osc
8774 }
8775 run_test 120f "Early Lock Cancel: rename test"
8776
8777 test_120g() {
8778         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8779         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
8780                 { skip "no early lock cancel on server"; return 0; }
8781         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8782         lru_resize_disable mdc
8783         lru_resize_disable osc
8784         count=10000
8785         echo create $count files
8786         test_mkdir $DIR/$tdir
8787         cancel_lru_locks mdc
8788         cancel_lru_locks osc
8789         t0=$(date +%s)
8790
8791         can0=$(do_facet $SINGLEMDS \
8792                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8793                awk '/ldlm_cancel/ {print $2}')
8794         blk0=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8795                awk '/ldlm_bl_callback/ {print $2}')
8796         createmany -o $DIR/$tdir/f $count
8797         sync
8798         can1=$(do_facet $SINGLEMDS \
8799                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8800                awk '/ldlm_cancel/ {print $2}')
8801         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8802                awk '/ldlm_bl_callback/ {print $2}')
8803         t1=$(date +%s)
8804         echo total: $((can1-can0)) cancels, $((blk1-blk0)) blockings
8805         echo rm $count files
8806         rm -r $DIR/$tdir
8807         sync
8808         can2=$(do_facet $SINGLEMDS \
8809                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8810                awk '/ldlm_cancel/ {print $2}')
8811         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8812                awk '/ldlm_bl_callback/ {print $2}')
8813         t2=$(date +%s)
8814         echo total: $count removes in $((t2-t1))
8815         echo total: $((can2-can1)) cancels, $((blk2-blk1)) blockings
8816         sleep 2
8817         # wait for commitment of removal
8818         lru_resize_enable mdc
8819         lru_resize_enable osc
8820 }
8821 run_test 120g "Early Lock Cancel: performance test"
8822
8823 test_121() { #bug #10589
8824         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8825         rm -rf $DIR/$tfile
8826         writes=$(LANG=C dd if=/dev/zero of=$DIR/$tfile count=1 2>&1 | awk -F '+' '/out$/ {print $1}')
8827 #define OBD_FAIL_LDLM_CANCEL_RACE        0x310
8828         lctl set_param fail_loc=0x310
8829         cancel_lru_locks osc > /dev/null
8830         reads=$(LANG=C dd if=$DIR/$tfile of=/dev/null 2>&1 | awk -F '+' '/in$/ {print $1}')
8831         lctl set_param fail_loc=0
8832         [[ $reads -eq $writes ]] ||
8833                 error "read $reads blocks, must be $writes blocks"
8834 }
8835 run_test 121 "read cancel race ========="
8836
8837 test_123a() { # was test 123, statahead(bug 11401)
8838         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8839         SLOWOK=0
8840         if ! grep -q "processor.*: 1" /proc/cpuinfo; then
8841                 log "testing UP system. Performance may be lower than expected."
8842                 SLOWOK=1
8843         fi
8844
8845         rm -rf $DIR/$tdir
8846         test_mkdir $DIR/$tdir
8847         NUMFREE=$(df -i -P $DIR | tail -n 1 | awk '{ print $4 }')
8848         [[ $NUMFREE -gt 100000 ]] && NUMFREE=100000 || NUMFREE=$((NUMFREE-1000))
8849         MULT=10
8850         for ((i=100, j=0; i<=$NUMFREE; j=$i, i=$((i * MULT)) )); do
8851                 createmany -o $DIR/$tdir/$tfile $j $((i - j))
8852
8853                 max=`lctl get_param -n llite.*.statahead_max | head -n 1`
8854                 lctl set_param -n llite.*.statahead_max 0
8855                 lctl get_param llite.*.statahead_max
8856                 cancel_lru_locks mdc
8857                 cancel_lru_locks osc
8858                 stime=`date +%s`
8859                 time ls -l $DIR/$tdir | wc -l
8860                 etime=`date +%s`
8861                 delta=$((etime - stime))
8862                 log "ls $i files without statahead: $delta sec"
8863                 lctl set_param llite.*.statahead_max=$max
8864
8865                 swrong=`lctl get_param -n llite.*.statahead_stats | grep "statahead wrong:" | awk '{print $3}'`
8866                 lctl get_param -n llite.*.statahead_max | grep '[0-9]'
8867                 cancel_lru_locks mdc
8868                 cancel_lru_locks osc
8869                 stime=`date +%s`
8870                 time ls -l $DIR/$tdir | wc -l
8871                 etime=`date +%s`
8872                 delta_sa=$((etime - stime))
8873                 log "ls $i files with statahead: $delta_sa sec"
8874                 lctl get_param -n llite.*.statahead_stats
8875                 ewrong=`lctl get_param -n llite.*.statahead_stats | grep "statahead wrong:" | awk '{print $3}'`
8876
8877                 [[ $swrong -lt $ewrong ]] &&
8878                         log "statahead was stopped, maybe too many locks held!"
8879                 [[ $delta -eq 0 || $delta_sa -eq 0 ]] && continue
8880
8881                 if [ $((delta_sa * 100)) -gt $((delta * 105)) -a $delta_sa -gt $((delta + 2)) ]; then
8882                     max=`lctl get_param -n llite.*.statahead_max | head -n 1`
8883                     lctl set_param -n llite.*.statahead_max 0
8884                     lctl get_param llite.*.statahead_max
8885                     cancel_lru_locks mdc
8886                     cancel_lru_locks osc
8887                     stime=`date +%s`
8888                     time ls -l $DIR/$tdir | wc -l
8889                     etime=`date +%s`
8890                     delta=$((etime - stime))
8891                     log "ls $i files again without statahead: $delta sec"
8892                     lctl set_param llite.*.statahead_max=$max
8893                     if [ $((delta_sa * 100)) -gt $((delta * 105)) -a $delta_sa -gt $((delta + 2)) ]; then
8894                         if [  $SLOWOK -eq 0 ]; then
8895                                 error "ls $i files is slower with statahead!"
8896                         else
8897                                 log "ls $i files is slower with statahead!"
8898                         fi
8899                         break
8900                     fi
8901                 fi
8902
8903                 [ $delta -gt 20 ] && break
8904                 [ $delta -gt 8 ] && MULT=$((50 / delta))
8905                 [ "$SLOW" = "no" -a $delta -gt 5 ] && break
8906         done
8907         log "ls done"
8908
8909         stime=`date +%s`
8910         rm -r $DIR/$tdir
8911         sync
8912         etime=`date +%s`
8913         delta=$((etime - stime))
8914         log "rm -r $DIR/$tdir/: $delta seconds"
8915         log "rm done"
8916         lctl get_param -n llite.*.statahead_stats
8917 }
8918 run_test 123a "verify statahead work"
8919
8920 test_123b () { # statahead(bug 15027)
8921         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8922         test_mkdir $DIR/$tdir
8923         createmany -o $DIR/$tdir/$tfile-%d 1000
8924
8925         cancel_lru_locks mdc
8926         cancel_lru_locks osc
8927
8928 #define OBD_FAIL_MDC_GETATTR_ENQUEUE     0x803
8929         lctl set_param fail_loc=0x80000803
8930         ls -lR $DIR/$tdir > /dev/null
8931         log "ls done"
8932         lctl set_param fail_loc=0x0
8933         lctl get_param -n llite.*.statahead_stats
8934         rm -r $DIR/$tdir
8935         sync
8936
8937 }
8938 run_test 123b "not panic with network error in statahead enqueue (bug 15027)"
8939
8940 test_124a() {
8941         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8942         $LCTL get_param -n mdc.*.connect_flags | grep -q lru_resize ||
8943                 { skip "no lru resize on server"; return 0; }
8944         local NR=2000
8945         test_mkdir $DIR/$tdir
8946
8947         log "create $NR files at $DIR/$tdir"
8948         createmany -o $DIR/$tdir/f $NR ||
8949                 error "failed to create $NR files in $DIR/$tdir"
8950
8951         cancel_lru_locks mdc
8952         ls -l $DIR/$tdir > /dev/null
8953
8954         local NSDIR=""
8955         local LRU_SIZE=0
8956         for VALUE in $($LCTL get_param ldlm.namespaces.*mdc-*.lru_size); do
8957                 local PARAM=$(echo ${VALUE[0]} | cut -d "=" -f1)
8958                 LRU_SIZE=$($LCTL get_param -n $PARAM)
8959                 if [[ $LRU_SIZE -gt $(default_lru_size) ]]; then
8960                         NSDIR=$(echo $PARAM | cut -d "." -f1-3)
8961                         log "NSDIR=$NSDIR"
8962                         log "NS=$(basename $NSDIR)"
8963                         break
8964                 fi
8965         done
8966
8967         if [[ -z "$NSDIR" || $LRU_SIZE -lt $(default_lru_size) ]]; then
8968                 skip "Not enough cached locks created!"
8969                 return 0
8970         fi
8971         log "LRU=$LRU_SIZE"
8972
8973         local SLEEP=30
8974
8975         # We know that lru resize allows one client to hold $LIMIT locks
8976         # for 10h. After that locks begin to be killed by client.
8977         local MAX_HRS=10
8978         local LIMIT=$($LCTL get_param -n $NSDIR.pool.limit)
8979         log "LIMIT=$LIMIT"
8980         if [ $LIMIT -lt $LRU_SIZE ]; then
8981             skip "Limit is too small $LIMIT"
8982             return 0
8983         fi
8984
8985         # Make LVF so higher that sleeping for $SLEEP is enough to _start_
8986         # killing locks. Some time was spent for creating locks. This means
8987         # that up to the moment of sleep finish we must have killed some of
8988         # them (10-100 locks). This depends on how fast ther were created.
8989         # Many of them were touched in almost the same moment and thus will
8990         # be killed in groups.
8991         local LVF=$(($MAX_HRS * 60 * 60 / $SLEEP * $LIMIT / $LRU_SIZE))
8992
8993         # Use $LRU_SIZE_B here to take into account real number of locks
8994         # created in the case of CMD, LRU_SIZE_B != $NR in most of cases
8995         local LRU_SIZE_B=$LRU_SIZE
8996         log "LVF=$LVF"
8997         local OLD_LVF=$($LCTL get_param -n $NSDIR.pool.lock_volume_factor)
8998         log "OLD_LVF=$OLD_LVF"
8999         $LCTL set_param -n $NSDIR.pool.lock_volume_factor $LVF
9000
9001         # Let's make sure that we really have some margin. Client checks
9002         # cached locks every 10 sec.
9003         SLEEP=$((SLEEP+20))
9004         log "Sleep ${SLEEP} sec"
9005         local SEC=0
9006         while ((SEC<$SLEEP)); do
9007                 echo -n "..."
9008                 sleep 5
9009                 SEC=$((SEC+5))
9010                 LRU_SIZE=$($LCTL get_param -n $NSDIR/lru_size)
9011                 echo -n "$LRU_SIZE"
9012         done
9013         echo ""
9014         $LCTL set_param -n $NSDIR.pool.lock_volume_factor $OLD_LVF
9015         local LRU_SIZE_A=$($LCTL get_param -n $NSDIR.lru_size)
9016
9017         [[ $LRU_SIZE_B -gt $LRU_SIZE_A ]] || {
9018                 error "No locks dropped in ${SLEEP}s. LRU size: $LRU_SIZE_A"
9019                 unlinkmany $DIR/$tdir/f $NR
9020                 return
9021         }
9022
9023         log "Dropped "$((LRU_SIZE_B-LRU_SIZE_A))" locks in ${SLEEP}s"
9024         log "unlink $NR files at $DIR/$tdir"
9025         unlinkmany $DIR/$tdir/f $NR
9026 }
9027 run_test 124a "lru resize ======================================="
9028
9029 get_max_pool_limit()
9030 {
9031         local limit=$($LCTL get_param \
9032                       -n ldlm.namespaces.*-MDT0000-mdc-*.pool.limit)
9033         local max=0
9034         for l in $limit; do
9035                 if [[ $l -gt $max ]]; then
9036                         max=$l
9037                 fi
9038         done
9039         echo $max
9040 }
9041
9042 test_124b() {
9043         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9044         $LCTL get_param -n mdc.*.connect_flags | grep -q lru_resize ||
9045                 { skip "no lru resize on server"; return 0; }
9046
9047         LIMIT=$(get_max_pool_limit)
9048
9049         NR=$(($(default_lru_size)*20))
9050         if [[ $NR -gt $LIMIT ]]; then
9051                 log "Limit lock number by $LIMIT locks"
9052                 NR=$LIMIT
9053         fi
9054
9055         IFree=$(mdsrate_inodes_available)
9056         if [ $IFree -lt $NR ]; then
9057                 log "Limit lock number by $IFree inodes"
9058                 NR=$IFree
9059         fi
9060
9061         lru_resize_disable mdc
9062         test_mkdir -p $DIR/$tdir/disable_lru_resize
9063
9064         createmany -o $DIR/$tdir/disable_lru_resize/f $NR
9065         log "doing ls -la $DIR/$tdir/disable_lru_resize 3 times"
9066         cancel_lru_locks mdc
9067         stime=`date +%s`
9068         PID=""
9069         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
9070         PID="$PID $!"
9071         sleep 2
9072         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
9073         PID="$PID $!"
9074         sleep 2
9075         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
9076         PID="$PID $!"
9077         wait $PID
9078         etime=`date +%s`
9079         nolruresize_delta=$((etime-stime))
9080         log "ls -la time: $nolruresize_delta seconds"
9081         log "lru_size = $(lctl get_param -n ldlm.namespaces.*mdc*.lru_size)"
9082         unlinkmany $DIR/$tdir/disable_lru_resize/f $NR
9083
9084         lru_resize_enable mdc
9085         test_mkdir -p $DIR/$tdir/enable_lru_resize
9086
9087         createmany -o $DIR/$tdir/enable_lru_resize/f $NR
9088         log "doing ls -la $DIR/$tdir/enable_lru_resize 3 times"
9089         cancel_lru_locks mdc
9090         stime=`date +%s`
9091         PID=""
9092         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
9093         PID="$PID $!"
9094         sleep 2
9095         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
9096         PID="$PID $!"
9097         sleep 2
9098         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
9099         PID="$PID $!"
9100         wait $PID
9101         etime=`date +%s`
9102         lruresize_delta=$((etime-stime))
9103         log "ls -la time: $lruresize_delta seconds"
9104         log "lru_size = $(lctl get_param -n ldlm.namespaces.*mdc*.lru_size)"
9105
9106         if [ $lruresize_delta -gt $nolruresize_delta ]; then
9107                 log "ls -la is $(((lruresize_delta - $nolruresize_delta) * 100 / $nolruresize_delta))% slower with lru resize enabled"
9108         elif [ $nolruresize_delta -gt $lruresize_delta ]; then
9109                 log "ls -la is $(((nolruresize_delta - $lruresize_delta) * 100 / $nolruresize_delta))% faster with lru resize enabled"
9110         else
9111                 log "lru resize performs the same with no lru resize"
9112         fi
9113         unlinkmany $DIR/$tdir/enable_lru_resize/f $NR
9114 }
9115 run_test 124b "lru resize (performance test) ======================="
9116
9117 test_124c() {
9118         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9119         $LCTL get_param -n mdc.*.connect_flags | grep -q lru_resize ||
9120                 { skip "no lru resize on server"; return 0; }
9121
9122         # cache ununsed locks on client
9123         local nr=100
9124         cancel_lru_locks mdc
9125         test_mkdir $DIR/$tdir
9126         createmany -o $DIR/$tdir/f $nr ||
9127                 error "failed to create $nr files in $DIR/$tdir"
9128         ls -l $DIR/$tdir > /dev/null
9129
9130         local nsdir="ldlm.namespaces.*-MDT0000-mdc-*"
9131         local unused=$($LCTL get_param -n $nsdir.lock_unused_count)
9132         local max_age=$($LCTL get_param -n $nsdir.lru_max_age)
9133         local recalc_p=$($LCTL get_param -n $nsdir.pool.recalc_period)
9134         echo "unused=$unused, max_age=$max_age, recalc_p=$recalc_p"
9135
9136         # set lru_max_age to 1 sec
9137         $LCTL set_param $nsdir.lru_max_age=1000 # milliseconds
9138         echo "sleep $((recalc_p * 2)) seconds..."
9139         sleep $((recalc_p * 2))
9140
9141         local remaining=$($LCTL get_param -n $nsdir.lock_unused_count)
9142         # restore lru_max_age
9143         $LCTL set_param -n $nsdir.lru_max_age $max_age
9144         [ $remaining -eq 0 ] || error "$remaining locks are not canceled"
9145         unlinkmany $DIR/$tdir/f $nr
9146 }
9147 run_test 124c "LRUR cancel very aged locks"
9148
9149 test_125() { # 13358
9150         $LCTL get_param -n llite.*.client_type | grep -q local ||
9151                 { skip "must run as local client"; return; }
9152         $LCTL get_param -n mdc.*-mdc-*.connect_flags | grep -q acl ||
9153                 { skip "must have acl enabled"; return; }
9154         [ -z "$(which setfacl)" ] && skip "must have setfacl tool" && return
9155         test_mkdir $DIR/$tdir
9156         $LFS setstripe -S 65536 -c -1 $DIR/$tdir || error "setstripe failed"
9157         setfacl -R -m u:bin:rwx $DIR/$tdir || error "setfacl $DIR/$tdir failed"
9158         ls -ld $DIR/$tdir || error "cannot access $DIR/$tdir"
9159 }
9160 run_test 125 "don't return EPROTO when a dir has a non-default striping and ACLs"
9161
9162 test_126() { # bug 12829/13455
9163         $LCTL get_param -n llite.*.client_type | grep -q local ||
9164                 { skip "must run as local client"; return; }
9165         [ "$UID" != 0 ] && skip_env "$TESTNAME (must run as root)" && return
9166         $GSS && skip "must run as gss disabled" && return
9167
9168         $RUNAS -u 0 -g 1 touch $DIR/$tfile || error "touch failed"
9169         gid=`ls -n $DIR/$tfile | awk '{print $4}'`
9170         rm -f $DIR/$tfile
9171         [ $gid -eq "1" ] || error "gid is set to" $gid "instead of 1"
9172 }
9173 run_test 126 "check that the fsgid provided by the client is taken into account"
9174
9175 test_127a() { # bug 15521
9176         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9177         $SETSTRIPE -i 0 -c 1 $DIR/$tfile || error "setstripe failed"
9178         $LCTL set_param osc.*.stats=0
9179         FSIZE=$((2048 * 1024))
9180         dd if=/dev/zero of=$DIR/$tfile bs=$FSIZE count=1
9181         cancel_lru_locks osc
9182         dd if=$DIR/$tfile of=/dev/null bs=$FSIZE
9183
9184         $LCTL get_param osc.*0000-osc-*.stats | grep samples > $DIR/${tfile}.tmp
9185         while read NAME COUNT SAMP UNIT MIN MAX SUM SUMSQ; do
9186                 echo "got $COUNT $NAME"
9187                 [ ! $MIN ] && error "Missing min value for $NAME proc entry"
9188                 eval $NAME=$COUNT || error "Wrong proc format"
9189
9190                 case $NAME in
9191                         read_bytes|write_bytes)
9192                         [ $MIN -lt 4096 ] && error "min is too small: $MIN"
9193                         [ $MIN -gt $FSIZE ] && error "min is too big: $MIN"
9194                         [ $MAX -lt 4096 ] && error "max is too small: $MAX"
9195                         [ $MAX -gt $FSIZE ] && error "max is too big: $MAX"
9196                         [ $SUM -ne $FSIZE ] && error "sum is wrong: $SUM"
9197                         [ $SUMSQ -lt $(((FSIZE /4096) * (4096 * 4096))) ] &&
9198                                 error "sumsquare is too small: $SUMSQ"
9199                         [ $SUMSQ -gt $((FSIZE * FSIZE)) ] &&
9200                                 error "sumsquare is too big: $SUMSQ"
9201                         ;;
9202                         *) ;;
9203                 esac
9204         done < $DIR/${tfile}.tmp
9205
9206         #check that we actually got some stats
9207         [ "$read_bytes" ] || error "Missing read_bytes stats"
9208         [ "$write_bytes" ] || error "Missing write_bytes stats"
9209         [ "$read_bytes" != 0 ] || error "no read done"
9210         [ "$write_bytes" != 0 ] || error "no write done"
9211 }
9212 run_test 127a "verify the client stats are sane"
9213
9214 test_127b() { # bug LU-333
9215         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9216         $LCTL set_param llite.*.stats=0
9217         FSIZE=65536 # sized fixed to match PAGE_SIZE for most clients
9218         # perform 2 reads and writes so MAX is different from SUM.
9219         dd if=/dev/zero of=$DIR/$tfile bs=$FSIZE count=1
9220         dd if=/dev/zero of=$DIR/$tfile bs=$FSIZE count=1
9221         cancel_lru_locks osc
9222         dd if=$DIR/$tfile of=/dev/null bs=$FSIZE count=1
9223         dd if=$DIR/$tfile of=/dev/null bs=$FSIZE count=1
9224
9225         $LCTL get_param llite.*.stats | grep samples > $TMP/${tfile}.tmp
9226         while read NAME COUNT SAMP UNIT MIN MAX SUM SUMSQ; do
9227                 echo "got $COUNT $NAME"
9228                 eval $NAME=$COUNT || error "Wrong proc format"
9229
9230         case $NAME in
9231                 read_bytes)
9232                         [ $COUNT -ne 2 ] && error "count is not 2: $COUNT"
9233                         [ $MIN -ne $FSIZE ] && error "min is not $FSIZE: $MIN"
9234                         [ $MAX -ne $FSIZE ] && error "max is incorrect: $MAX"
9235                         [ $SUM -ne $((FSIZE * 2)) ] && error "sum is wrong: $SUM"
9236                         ;;
9237                 write_bytes)
9238                         [ $COUNT -ne 2 ] && error "count is not 2: $COUNT"
9239                         [ $MIN -ne $FSIZE ] && error "min is not $FSIZE: $MIN"
9240                         [ $MAX -ne $FSIZE ] && error "max is incorrect: $MAX"
9241                         [ $SUM -ne $((FSIZE * 2)) ] && error "sum is wrong: $SUM"
9242                         ;;
9243                         *) ;;
9244                 esac
9245         done < $TMP/${tfile}.tmp
9246
9247         #check that we actually got some stats
9248         [ "$read_bytes" ] || error "Missing read_bytes stats"
9249         [ "$write_bytes" ] || error "Missing write_bytes stats"
9250         [ "$read_bytes" != 0 ] || error "no read done"
9251         [ "$write_bytes" != 0 ] || error "no write done"
9252
9253         rm -f $TMP/${tfile}.tmp
9254 }
9255 run_test 127b "verify the llite client stats are sane"
9256
9257 test_128() { # bug 15212
9258         touch $DIR/$tfile
9259         $LFS 2>&1 <<-EOF | tee $TMP/$tfile.log
9260                 find $DIR/$tfile
9261                 find $DIR/$tfile
9262         EOF
9263
9264         result=$(grep error $TMP/$tfile.log)
9265         rm -f $DIR/$tfile $TMP/$tfile.log
9266         [ -z "$result" ] ||
9267                 error "consecutive find's under interactive lfs failed"
9268 }
9269 run_test 128 "interactive lfs for 2 consecutive find's"
9270
9271 set_dir_limits () {
9272         local mntdev
9273         local canondev
9274         local node
9275
9276         local ldproc=/proc/fs/ldiskfs
9277         local facets=$(get_facets MDS)
9278
9279         for facet in ${facets//,/ }; do
9280                 canondev=$(ldiskfs_canon \
9281                            *.$(convert_facet2label $facet).mntdev $facet)
9282                 do_facet $facet "test -e $ldproc/$canondev/max_dir_size" ||
9283                         ldproc=/sys/fs/ldiskfs
9284                 do_facet $facet "echo $1 >$ldproc/$canondev/max_dir_size"
9285                 do_facet $facet "echo $2 >$ldproc/$canondev/warning_dir_size"
9286         done
9287 }
9288
9289 check_mds_dmesg() {
9290         local facets=$(get_facets MDS)
9291         for facet in ${facets//,/ }; do
9292                 do_facet $facet "dmesg | tail -3 | grep -q $1" && return 0
9293         done
9294         return 1
9295 }
9296
9297 test_129() {
9298         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.5.56) ]] ||
9299                 { skip "Need MDS version with at least 2.5.56"; return 0; }
9300
9301         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9302         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
9303                 skip "ldiskfs only test"
9304                 return
9305         fi
9306         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9307         local ENOSPC=28
9308         local EFBIG=27
9309         local has_warning=false
9310
9311         rm -rf $DIR/$tdir
9312         mkdir -p $DIR/$tdir
9313
9314         # block size of mds1
9315         local maxsize=$(($($LCTL get_param -n mdc.*MDT0000*.blocksize) * 5))
9316         set_dir_limits $maxsize $maxsize
9317         local dirsize=$(stat -c%s "$DIR/$tdir")
9318         local nfiles=0
9319         while [[ $dirsize -le $maxsize ]]; do
9320                 $MULTIOP $DIR/$tdir/file_base_$nfiles Oc
9321                 rc=$?
9322                 if ! $has_warning; then
9323                         check_mds_dmesg '"is approaching"' && has_warning=true
9324                 fi
9325                 # check two errors:
9326                 # ENOSPC for new ext4 max_dir_size (kernel commit df981d03ee)
9327                 # EFBIG for previous versions included in ldiskfs series
9328                 if [ $rc -eq $EFBIG -o $rc -eq $ENOSPC ]; then
9329                         set_dir_limits 0 0
9330                         echo "return code $rc received as expected"
9331
9332                         createmany -o $DIR/$tdir/file_extra_$nfiles. 5 ||
9333                                 error_exit "create failed w/o dir size limit"
9334
9335                         check_mds_dmesg '"has reached"' ||
9336                                 error_exit "reached message should be output"
9337
9338                         [ $has_warning = "false" ] &&
9339                                 error_exit "warning message should be output"
9340
9341                         dirsize=$(stat -c%s "$DIR/$tdir")
9342
9343                         [[ $dirsize -ge $maxsize ]] && return 0
9344                         error_exit "current dir size $dirsize, " \
9345                                    "previous limit $maxsize"
9346                 elif [ $rc -ne 0 ]; then
9347                         set_dir_limits 0 0
9348                         error_exit "return $rc received instead of expected " \
9349                                    "$EFBIG or $ENOSPC, files in dir $dirsize"
9350                 fi
9351                 nfiles=$((nfiles + 1))
9352                 dirsize=$(stat -c%s "$DIR/$tdir")
9353         done
9354
9355         set_dir_limits 0 0
9356         error "exceeded dir size limit $maxsize($MDSCOUNT) : $dirsize bytes"
9357 }
9358 run_test 129 "test directory size limit ========================"
9359
9360 OLDIFS="$IFS"
9361 cleanup_130() {
9362         trap 0
9363         IFS="$OLDIFS"
9364 }
9365
9366 test_130a() {
9367         local filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
9368         [ -n "$filefrag_op" ] && skip_env "filefrag does not support FIEMAP" &&
9369                 return
9370
9371         trap cleanup_130 EXIT RETURN
9372
9373         local fm_file=$DIR/$tfile
9374         $SETSTRIPE -S 65536 -c 1 $fm_file || error "setstripe on $fm_file"
9375         dd if=/dev/zero of=$fm_file bs=65536 count=1 ||
9376                 error "dd failed for $fm_file"
9377
9378         # LU-1795: test filefrag/FIEMAP once, even if unsupported
9379         filefrag -ves $fm_file
9380         RC=$?
9381         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
9382                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
9383         [ $RC != 0 ] && error "filefrag $fm_file failed"
9384
9385         filefrag_op=$(filefrag -ve $fm_file |
9386                         sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
9387         lun=$($GETSTRIPE -i $fm_file)
9388
9389         start_blk=`echo $filefrag_op | cut -d: -f2 | cut -d. -f1`
9390         IFS=$'\n'
9391         tot_len=0
9392         for line in $filefrag_op
9393         do
9394                 frag_lun=`echo $line | cut -d: -f5`
9395                 ext_len=`echo $line | cut -d: -f4`
9396                 if (( $frag_lun != $lun )); then
9397                         cleanup_130
9398                         error "FIEMAP on 1-stripe file($fm_file) failed"
9399                         return
9400                 fi
9401                 (( tot_len += ext_len ))
9402         done
9403
9404         if (( lun != frag_lun || start_blk != 0 || tot_len != 64 )); then
9405                 cleanup_130
9406                 error "FIEMAP on 1-stripe file($fm_file) failed;"
9407                 return
9408         fi
9409
9410         cleanup_130
9411
9412         echo "FIEMAP on single striped file succeeded"
9413 }
9414 run_test 130a "FIEMAP (1-stripe file)"
9415
9416 test_130b() {
9417         [ "$OSTCOUNT" -lt "2" ] && skip_env "needs >= 2 OSTs" && return
9418
9419         local filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
9420         [ -n "$filefrag_op" ] && skip_env "filefrag does not support FIEMAP" &&
9421                 return
9422
9423         trap cleanup_130 EXIT RETURN
9424
9425         local fm_file=$DIR/$tfile
9426         $SETSTRIPE -S 65536 -c $OSTCOUNT $fm_file ||
9427                         error "setstripe on $fm_file"
9428         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
9429                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
9430
9431         dd if=/dev/zero of=$fm_file bs=1M count=$OSTCOUNT ||
9432                 error "dd failed on $fm_file"
9433
9434         filefrag -ves $fm_file || error "filefrag $fm_file failed"
9435         filefrag_op=$(filefrag -ve $fm_file |
9436                         sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
9437
9438         last_lun=$(echo $filefrag_op | cut -d: -f5 |
9439                 sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
9440
9441         IFS=$'\n'
9442         tot_len=0
9443         num_luns=1
9444         for line in $filefrag_op
9445         do
9446                 frag_lun=$(echo $line | cut -d: -f5 |
9447                         sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
9448                 ext_len=$(echo $line | cut -d: -f4)
9449                 if (( $frag_lun != $last_lun )); then
9450                         if (( tot_len != 1024 )); then
9451                                 cleanup_130
9452                                 error "FIEMAP on $fm_file failed; returned " \
9453                                 "len $tot_len for OST $last_lun instead of 1024"
9454                                 return
9455                         else
9456                                 (( num_luns += 1 ))
9457                                 tot_len=0
9458                         fi
9459                 fi
9460                 (( tot_len += ext_len ))
9461                 last_lun=$frag_lun
9462         done
9463         if (( num_luns != $OSTCOUNT || tot_len != 1024 )); then
9464                 cleanup_130
9465                 error "FIEMAP on $fm_file failed; returned wrong number of " \
9466                         "luns or wrong len for OST $last_lun"
9467                 return
9468         fi
9469
9470         cleanup_130
9471
9472         echo "FIEMAP on $OSTCOUNT-stripe file succeeded"
9473 }
9474 run_test 130b "FIEMAP ($OSTCOUNT-stripe file)"
9475
9476 test_130c() {
9477         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
9478
9479         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
9480         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP" &&
9481                 return
9482
9483         trap cleanup_130 EXIT RETURN
9484
9485         local fm_file=$DIR/$tfile
9486         $SETSTRIPE -S 65536 -c 2 $fm_file || error "setstripe on $fm_file"
9487         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
9488                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
9489
9490         dd if=/dev/zero of=$fm_file seek=1 bs=1M count=1 ||
9491                         error "dd failed on $fm_file"
9492
9493         filefrag -ves $fm_file || error "filefrag $fm_file failed"
9494         filefrag_op=$(filefrag -ve $fm_file |
9495                 sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
9496
9497         last_lun=$(echo $filefrag_op | cut -d: -f5 |
9498                 sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
9499
9500         IFS=$'\n'
9501         tot_len=0
9502         num_luns=1
9503         for line in $filefrag_op
9504         do
9505                 frag_lun=$(echo $line | cut -d: -f5 |
9506                         sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
9507                 ext_len=$(echo $line | cut -d: -f4)
9508                 if (( $frag_lun != $last_lun )); then
9509                         logical=`echo $line | cut -d: -f2 | cut -d. -f1`
9510                         if (( logical != 512 )); then
9511                                 cleanup_130
9512                                 error "FIEMAP on $fm_file failed; returned " \
9513                                 "logical start for lun $logical instead of 512"
9514                                 return
9515                         fi
9516                         if (( tot_len != 512 )); then
9517                                 cleanup_130
9518                                 error "FIEMAP on $fm_file failed; returned " \
9519                                 "len $tot_len for OST $last_lun instead of 1024"
9520                                 return
9521                         else
9522                                 (( num_luns += 1 ))
9523                                 tot_len=0
9524                         fi
9525                 fi
9526                 (( tot_len += ext_len ))
9527                 last_lun=$frag_lun
9528         done
9529         if (( num_luns != 2 || tot_len != 512 )); then
9530                 cleanup_130
9531                 error "FIEMAP on $fm_file failed; returned wrong number of " \
9532                         "luns or wrong len for OST $last_lun"
9533                 return
9534         fi
9535
9536         cleanup_130
9537
9538         echo "FIEMAP on 2-stripe file with hole succeeded"
9539 }
9540 run_test 130c "FIEMAP (2-stripe file with hole)"
9541
9542 test_130d() {
9543         [[ $OSTCOUNT -lt 3 ]] && skip_env "needs >= 3 OSTs" && return
9544
9545         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
9546         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP" &&
9547                 return
9548
9549         trap cleanup_130 EXIT RETURN
9550
9551         local fm_file=$DIR/$tfile
9552         $SETSTRIPE -S 65536 -c $OSTCOUNT $fm_file ||
9553                         error "setstripe on $fm_file"
9554         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
9555                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
9556
9557         local actual_stripe_count=$($GETSTRIPE -c $fm_file)
9558         dd if=/dev/zero of=$fm_file bs=1M count=$actual_stripe_count ||
9559                 error "dd failed on $fm_file"
9560
9561         filefrag -ves $fm_file || error "filefrag $fm_file failed"
9562         filefrag_op=$(filefrag -ve $fm_file |
9563                         sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
9564
9565         last_lun=$(echo $filefrag_op | cut -d: -f5 |
9566                 sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
9567
9568         IFS=$'\n'
9569         tot_len=0
9570         num_luns=1
9571         for line in $filefrag_op
9572         do
9573                 frag_lun=$(echo $line | cut -d: -f5 |
9574                         sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
9575                 ext_len=$(echo $line | cut -d: -f4)
9576                 if (( $frag_lun != $last_lun )); then
9577                         if (( tot_len != 1024 )); then
9578                                 cleanup_130
9579                                 error "FIEMAP on $fm_file failed; returned " \
9580                                 "len $tot_len for OST $last_lun instead of 1024"
9581                                 return
9582                         else
9583                                 (( num_luns += 1 ))
9584                                 tot_len=0
9585                         fi
9586                 fi
9587                 (( tot_len += ext_len ))
9588                 last_lun=$frag_lun
9589         done
9590         if (( num_luns != actual_stripe_count || tot_len != 1024 )); then
9591                 cleanup_130
9592                 error "FIEMAP on $fm_file failed; returned wrong number of " \
9593                         "luns or wrong len for OST $last_lun"
9594                 return
9595         fi
9596
9597         cleanup_130
9598
9599         echo "FIEMAP on N-stripe file succeeded"
9600 }
9601 run_test 130d "FIEMAP (N-stripe file)"
9602
9603 test_130e() {
9604         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
9605
9606         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
9607         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP" && return
9608
9609         trap cleanup_130 EXIT RETURN
9610
9611         local fm_file=$DIR/$tfile
9612         $SETSTRIPE -S 131072 -c 2 $fm_file || error "setstripe on $fm_file"
9613         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
9614                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
9615
9616         NUM_BLKS=512
9617         EXPECTED_LEN=$(( (NUM_BLKS / 2) * 64 ))
9618         for ((i = 0; i < $NUM_BLKS; i++))
9619         do
9620                 dd if=/dev/zero of=$fm_file count=1 bs=64k seek=$((2*$i)) conv=notrunc > /dev/null 2>&1
9621         done
9622
9623         filefrag -ves $fm_file || error "filefrag $fm_file failed"
9624         filefrag_op=$(filefrag -ve $fm_file |
9625                         sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
9626
9627         last_lun=$(echo $filefrag_op | cut -d: -f5 |
9628                 sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
9629
9630         IFS=$'\n'
9631         tot_len=0
9632         num_luns=1
9633         for line in $filefrag_op
9634         do
9635                 frag_lun=$(echo $line | cut -d: -f5 |
9636                         sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
9637                 ext_len=$(echo $line | cut -d: -f4)
9638                 if (( $frag_lun != $last_lun )); then
9639                         if (( tot_len != $EXPECTED_LEN )); then
9640                                 cleanup_130
9641                                 error "FIEMAP on $fm_file failed; returned " \
9642                                 "len $tot_len for OST $last_lun instead " \
9643                                 "of $EXPECTED_LEN"
9644                                 return
9645                         else
9646                                 (( num_luns += 1 ))
9647                                 tot_len=0
9648                         fi
9649                 fi
9650                 (( tot_len += ext_len ))
9651                 last_lun=$frag_lun
9652         done
9653         if (( num_luns != 2 || tot_len != $EXPECTED_LEN )); then
9654                 cleanup_130
9655                 error "FIEMAP on $fm_file failed; returned wrong number " \
9656                         "of luns or wrong len for OST $last_lun"
9657                 return
9658         fi
9659
9660         cleanup_130
9661
9662         echo "FIEMAP with continuation calls succeeded"
9663 }
9664 run_test 130e "FIEMAP (test continuation FIEMAP calls)"
9665
9666 # Test for writev/readv
9667 test_131a() {
9668         rwv -f $DIR/$tfile -w -n 3 524288 1048576 1572864 ||
9669                 error "writev test failed"
9670         rwv -f $DIR/$tfile -r -v -n 2 1572864 1048576 ||
9671                 error "readv failed"
9672         rm -f $DIR/$tfile
9673 }
9674 run_test 131a "test iov's crossing stripe boundary for writev/readv"
9675
9676 test_131b() {
9677         local fsize=$((524288 + 1048576 + 1572864))
9678         rwv -f $DIR/$tfile -w -a -n 3 524288 1048576 1572864 &&
9679                 $CHECKSTAT -t file $DIR/$tfile -s $fsize ||
9680                         error "append writev test failed"
9681
9682         ((fsize += 1572864 + 1048576))
9683         rwv -f $DIR/$tfile -w -a -n 2 1572864 1048576 &&
9684                 $CHECKSTAT -t file $DIR/$tfile -s $fsize ||
9685                         error "append writev test failed"
9686         rm -f $DIR/$tfile
9687 }
9688 run_test 131b "test append writev"
9689
9690 test_131c() {
9691         rwv -f $DIR/$tfile -w -d -n 1 1048576 || return 0
9692         error "NOT PASS"
9693 }
9694 run_test 131c "test read/write on file w/o objects"
9695
9696 test_131d() {
9697         rwv -f $DIR/$tfile -w -n 1 1572864
9698         NOB=`rwv -f $DIR/$tfile -r -n 3 524288 524288 1048576 | awk '/error/ {print $6}'`
9699         if [ "$NOB" != 1572864 ]; then
9700                 error "Short read filed: read $NOB bytes instead of 1572864"
9701         fi
9702         rm -f $DIR/$tfile
9703 }
9704 run_test 131d "test short read"
9705
9706 test_131e() {
9707         rwv -f $DIR/$tfile -w -s 1048576 -n 1 1048576
9708         rwv -f $DIR/$tfile -r -z -s 0 -n 1 524288 || \
9709         error "read hitting hole failed"
9710         rm -f $DIR/$tfile
9711 }
9712 run_test 131e "test read hitting hole"
9713
9714 check_stats() {
9715         local facet=$1
9716         local op=$2
9717         local want=${3:-0}
9718         local res
9719
9720         case $facet in
9721         mds*) res=$(do_facet $facet \
9722                    $LCTL get_param mdt.$FSNAME-MDT0000.md_stats | grep "$op")
9723                  ;;
9724         ost*) res=$(do_facet $facet \
9725                    $LCTL get_param obdfilter.$FSNAME-OST0000.stats | grep "$op")
9726                  ;;
9727         *) error "Wrong facet '$facet'" ;;
9728         esac
9729         echo $res
9730         [ "$res" ] || error "The counter for $op on $facet was not incremented"
9731         # if the argument $3 is zero, it means any stat increment is ok.
9732         if [[ $want -gt 0 ]]; then
9733                 local count=$(echo $res | awk '{ print $2 }')
9734                 [[ $count -ne $want ]] &&
9735                         error "The $op counter on $facet is $count, not $want"
9736         fi
9737 }
9738
9739 test_133a() {
9740         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9741         remote_ost_nodsh && skip "remote OST with nodsh" && return
9742         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9743
9744         do_facet $SINGLEMDS $LCTL list_param mdt.*.rename_stats ||
9745                 { skip "MDS doesn't support rename stats"; return; }
9746         local testdir=$DIR/${tdir}/stats_testdir
9747         mkdir -p $DIR/${tdir}
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         # verify mdt stats first.
9754         mkdir ${testdir} || error "mkdir failed"
9755         check_stats $SINGLEMDS "mkdir" 1
9756         touch ${testdir}/${tfile} || error "touch failed"
9757         check_stats $SINGLEMDS "open" 1
9758         check_stats $SINGLEMDS "close" 1
9759         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.8.54) ] && {
9760                 mknod ${testdir}/${tfile}-pipe p || error "mknod failed"
9761                 check_stats $SINGLEMDS "mknod" 2
9762         }
9763         rm -f ${testdir}/${tfile}-pipe || error "pipe remove failed"
9764         check_stats $SINGLEMDS "unlink" 1
9765         rm -f ${testdir}/${tfile} || error "file remove failed"
9766         check_stats $SINGLEMDS "unlink" 2
9767
9768         # remove working dir and check mdt stats again.
9769         rmdir ${testdir} || error "rmdir failed"
9770         check_stats $SINGLEMDS "rmdir" 1
9771
9772         local testdir1=$DIR/${tdir}/stats_testdir1
9773         mkdir -p ${testdir}
9774         mkdir -p ${testdir1}
9775         touch ${testdir1}/test1
9776         mv ${testdir1}/test1 ${testdir} || error "file crossdir rename"
9777         check_stats $SINGLEMDS "crossdir_rename" 1
9778
9779         mv ${testdir}/test1 ${testdir}/test0 || error "file samedir rename"
9780         check_stats $SINGLEMDS "samedir_rename" 1
9781
9782         rm -rf $DIR/${tdir}
9783 }
9784 run_test 133a "Verifying MDT stats ========================================"
9785
9786 test_133b() {
9787         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9788         remote_ost_nodsh && skip "remote OST with nodsh" && return
9789         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9790         local testdir=$DIR/${tdir}/stats_testdir
9791         mkdir -p ${testdir} || error "mkdir failed"
9792         touch ${testdir}/${tfile} || error "touch failed"
9793         cancel_lru_locks mdc
9794
9795         # clear stats.
9796         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
9797         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
9798
9799         # extra mdt stats verification.
9800         chmod 444 ${testdir}/${tfile} || error "chmod failed"
9801         check_stats $SINGLEMDS "setattr" 1
9802         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
9803         if [ $(lustre_version_code $SINGLEMDS) -ne $(version_code 2.2.0) ]
9804         then            # LU-1740
9805                 ls -l ${testdir}/${tfile} > /dev/null|| error "ls failed"
9806                 check_stats $SINGLEMDS "getattr" 1
9807         fi
9808         $LFS df || error "lfs failed"
9809         check_stats $SINGLEMDS "statfs" 1
9810
9811         rm -rf $DIR/${tdir}
9812 }
9813 run_test 133b "Verifying extra MDT stats =================================="
9814
9815 test_133c() {
9816         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9817         remote_ost_nodsh && skip "remote OST with nodsh" && return
9818         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9819         local testdir=$DIR/$tdir/stats_testdir
9820         test_mkdir -p $testdir
9821
9822         # verify obdfilter stats.
9823         $SETSTRIPE -c 1 -i 0 $testdir/$tfile
9824         sync
9825         cancel_lru_locks osc
9826         wait_delete_completed
9827
9828         # clear stats.
9829         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
9830         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
9831
9832         dd if=/dev/zero of=$testdir/$tfile conv=notrunc bs=512k count=1 ||
9833                 error "dd failed"
9834         sync
9835         cancel_lru_locks osc
9836         check_stats ost1 "write" 1
9837
9838         dd if=$testdir/$tfile of=/dev/null bs=1k count=1 || error "dd failed"
9839         check_stats ost1 "read" 1
9840
9841         > $testdir/$tfile || error "truncate failed"
9842         check_stats ost1 "punch" 1
9843
9844         rm -f $testdir/$tfile || error "file remove failed"
9845         wait_delete_completed
9846         check_stats ost1 "destroy" 1
9847
9848         rm -rf $DIR/$tdir
9849 }
9850 run_test 133c "Verifying OST stats ========================================"
9851
9852 order_2() {
9853         local value=$1
9854         local orig=$value
9855         local order=1
9856
9857         while [ $value -ge 2 ]; do
9858                 order=$((order*2))
9859                 value=$((value/2))
9860         done
9861
9862         if [ $orig -gt $order ]; then
9863                 order=$((order*2))
9864         fi
9865         echo $order
9866 }
9867
9868 size_in_KMGT() {
9869     local value=$1
9870     local size=('K' 'M' 'G' 'T');
9871     local i=0
9872     local size_string=$value
9873
9874     while [ $value -ge 1024 ]; do
9875         if [ $i -gt 3 ]; then
9876             #T is the biggest unit we get here, if that is bigger,
9877             #just return XXXT
9878             size_string=${value}T
9879             break
9880         fi
9881         value=$((value >> 10))
9882         if [ $value -lt 1024 ]; then
9883             size_string=${value}${size[$i]}
9884             break
9885         fi
9886         i=$((i + 1))
9887     done
9888
9889     echo $size_string
9890 }
9891
9892 get_rename_size() {
9893     local size=$1
9894     local context=${2:-.}
9895     local sample=$(do_facet $SINGLEMDS $LCTL get_param mdt.*.rename_stats |
9896                 grep -A1 $context |
9897                 awk '/ '${size}'/ {print $4}' | sed -e "s/,//g")
9898     echo $sample
9899 }
9900
9901 test_133d() {
9902         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9903         remote_ost_nodsh && skip "remote OST with nodsh" && return
9904         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9905         do_facet $SINGLEMDS $LCTL list_param mdt.*.rename_stats ||
9906         { skip "MDS doesn't support rename stats"; return; }
9907
9908         local testdir1=$DIR/${tdir}/stats_testdir1
9909         local testdir2=$DIR/${tdir}/stats_testdir2
9910
9911         do_facet $SINGLEMDS $LCTL set_param mdt.*.rename_stats=clear
9912
9913         mkdir -p ${testdir1} || error "mkdir failed"
9914         mkdir -p ${testdir2} || error "mkdir failed"
9915
9916         createmany -o $testdir1/test 512 || error "createmany failed"
9917
9918         # check samedir rename size
9919         mv ${testdir1}/test0 ${testdir1}/test_0
9920
9921         local testdir1_size=$(ls -l $DIR/${tdir} |
9922                 awk '/stats_testdir1/ {print $5}')
9923         local testdir2_size=$(ls -l $DIR/${tdir} |
9924                 awk '/stats_testdir2/ {print $5}')
9925
9926         testdir1_size=$(order_2 $testdir1_size)
9927         testdir2_size=$(order_2 $testdir2_size)
9928
9929         testdir1_size=$(size_in_KMGT $testdir1_size)
9930         testdir2_size=$(size_in_KMGT $testdir2_size)
9931
9932         echo "source rename dir size: ${testdir1_size}"
9933         echo "target rename dir size: ${testdir2_size}"
9934
9935         local cmd="do_facet $SINGLEMDS $LCTL get_param mdt.*.rename_stats"
9936         eval $cmd || error "$cmd failed"
9937         local samedir=$($cmd | grep 'same_dir')
9938         local same_sample=$(get_rename_size $testdir1_size)
9939         [ -z "$samedir" ] && error "samedir_rename_size count error"
9940         [[ $same_sample -eq 1 ]] ||
9941                 error "samedir_rename_size error $same_sample"
9942         echo "Check same dir rename stats success"
9943
9944         do_facet $SINGLEMDS $LCTL set_param mdt.*.rename_stats=clear
9945
9946         # check crossdir rename size
9947         mv ${testdir1}/test_0 ${testdir2}/test_0
9948
9949         testdir1_size=$(ls -l $DIR/${tdir} |
9950                 awk '/stats_testdir1/ {print $5}')
9951         testdir2_size=$(ls -l $DIR/${tdir} |
9952                 awk '/stats_testdir2/ {print $5}')
9953
9954         testdir1_size=$(order_2 $testdir1_size)
9955         testdir2_size=$(order_2 $testdir2_size)
9956
9957         testdir1_size=$(size_in_KMGT $testdir1_size)
9958         testdir2_size=$(size_in_KMGT $testdir2_size)
9959
9960         echo "source rename dir size: ${testdir1_size}"
9961         echo "target rename dir size: ${testdir2_size}"
9962
9963         eval $cmd || error "$cmd failed"
9964         local crossdir=$($cmd | grep 'crossdir')
9965         local src_sample=$(get_rename_size $testdir1_size crossdir_src)
9966         local tgt_sample=$(get_rename_size $testdir2_size crossdir_tgt)
9967         [ -z "$crossdir" ] && error "crossdir_rename_size count error"
9968         [[ $src_sample -eq 1 ]] ||
9969                 error "crossdir_rename_size error $src_sample"
9970         [[ $tgt_sample -eq 1 ]] ||
9971                 error "crossdir_rename_size error $tgt_sample"
9972         echo "Check cross dir rename stats success"
9973         rm -rf $DIR/${tdir}
9974 }
9975 run_test 133d "Verifying rename_stats ========================================"
9976
9977 test_133e() {
9978         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9979         remote_ost_nodsh && skip "remote OST with nodsh" && return
9980         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9981         local testdir=$DIR/${tdir}/stats_testdir
9982         local ctr f0 f1 bs=32768 count=42 sum
9983
9984         mkdir -p ${testdir} || error "mkdir failed"
9985
9986         $SETSTRIPE -c 1 -i 0 ${testdir}/${tfile}
9987
9988         for ctr in {write,read}_bytes; do
9989                 sync
9990                 cancel_lru_locks osc
9991
9992                 do_facet ost1 $LCTL set_param -n \
9993                         "obdfilter.*.exports.clear=clear"
9994
9995                 if [ $ctr = write_bytes ]; then
9996                         f0=/dev/zero
9997                         f1=${testdir}/${tfile}
9998                 else
9999                         f0=${testdir}/${tfile}
10000                         f1=/dev/null
10001                 fi
10002
10003                 dd if=$f0 of=$f1 conv=notrunc bs=$bs count=$count || \
10004                         error "dd failed"
10005                 sync
10006                 cancel_lru_locks osc
10007
10008                 sum=$(do_facet ost1 $LCTL get_param \
10009                         "obdfilter.*.exports.*.stats" |
10010                         awk -v ctr=$ctr 'BEGIN { sum = 0 }
10011                                 $1 == ctr { sum += $7 }
10012                                 END { printf("%0.0f", sum) }')
10013
10014                 if ((sum != bs * count)); then
10015                         error "Bad $ctr sum, expected $((bs * count)), got $sum"
10016                 fi
10017         done
10018
10019         rm -rf $DIR/${tdir}
10020 }
10021 run_test 133e "Verifying OST {read,write}_bytes nid stats ================="
10022
10023 proc_regexp="/{proc,sys}/{fs,sys,kernel/debug}/{lustre,lnet}/"
10024
10025 test_133f() {
10026         remote_mds_nodsh && skip "remote MDS with nodsh" && return
10027         remote_ost_nodsh && skip "remote OST with nodsh" && return
10028         # First without trusting modes.
10029         local proc_dirs=$(eval \ls -d $proc_regexp 2>/dev/null)
10030         echo "proc_dirs='$proc_dirs'"
10031         [ -n "$proc_dirs" ] || error "no proc_dirs on $HOSTNAME"
10032         find $proc_dirs -exec cat '{}' \; &> /dev/null
10033
10034         # Second verifying readability.
10035         $LCTL get_param -R '*' &> /dev/null || error "proc file read failed"
10036
10037         # eventually, this can also be replaced with "lctl get_param -R",
10038         # but not until that option is always available on the server
10039         local facet
10040         for facet in mds1 ost1; do
10041                 local facet_proc_dirs=$(do_facet $facet \
10042                                         \\\ls -d $proc_regexp 2>/dev/null)
10043                 echo "${facet}_proc_dirs='$facet_proc_dirs'"
10044                 [ -z "$facet_proc_dirs" ] && error "no proc_dirs on $facet"
10045                 do_facet $facet find $facet_proc_dirs \
10046                         ! -name req_history \
10047                         -exec cat '{}' \\\; &> /dev/null
10048
10049                 do_facet $facet find $facet_proc_dirs \
10050                         ! -name req_history \
10051                         -type f \
10052                         -exec cat '{}' \\\; &> /dev/null ||
10053                                 error "proc file read failed"
10054         done
10055 }
10056 run_test 133f "Check for LBUGs/Oopses/unreadable files in /proc"
10057
10058 test_133g() {
10059         remote_mds_nodsh && skip "remote MDS with nodsh" && return
10060         remote_ost_nodsh && skip "remote OST with nodsh" && return
10061         # Second verifying writability.
10062         local proc_dirs=$(eval \ls -d $proc_regexp 2>/dev/null)
10063         echo "proc_dirs='$proc_dirs'"
10064         [ -n "$proc_dirs" ] || error "no proc_dirs on $HOSTNAME"
10065         find $proc_dirs \
10066                 -type f \
10067                 -not -name force_lbug \
10068                 -not -name changelog_mask \
10069                 -exec badarea_io '{}' \; ||
10070                 error "find $proc_dirs failed"
10071
10072         local facet
10073         for facet in mds1 ost1; do
10074                 [ $(lustre_version_code $facet) -le $(version_code 2.5.54) ] &&
10075                         skip "Too old lustre on $facet" && continue
10076                 local facet_proc_dirs=$(do_facet $facet \
10077                                         \\\ls -d $proc_regexp 2> /dev/null)
10078                 echo "${facet}_proc_dirs='$facet_proc_dirs'"
10079                 [ -z "$facet_proc_dirs" ] && error "no proc_dirs on $facet"
10080                 do_facet $facet find $facet_proc_dirs \
10081                         -type f \
10082                         -not -name force_lbug \
10083                         -not -name changelog_mask \
10084                         -exec badarea_io '{}' \\\; ||
10085                                 error "$facet find $facet_proc_dirs failed"
10086         done
10087
10088         # remount the FS in case writes/reads /proc break the FS
10089         cleanup || error "failed to unmount"
10090         setup || error "failed to setup"
10091         true
10092 }
10093 run_test 133g "Check for Oopses on bad io area writes/reads in /proc"
10094
10095 test_133h() {
10096         remote_mds_nodsh && skip "remote MDS with nodsh" && return
10097         remote_ost_nodsh && skip "remote OST with nodsh" && return
10098         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.9.54) ]] &&
10099                 skip "Need MDS version at least 2.9.54" && return
10100
10101         local facet
10102         for facet in client mds1 ost1; do
10103                 local facet_proc_dirs=$(do_facet $facet \
10104                                         \\\ls -d $proc_regexp 2> /dev/null)
10105                 [ -z "$facet_proc_dirs" ] && error "no proc_dirs on $facet"
10106                 echo "${facet}_proc_dirs='$facet_proc_dirs'"
10107                 # Get the list of files that are missing the terminating newline
10108                 local missing=($(do_facet $facet \
10109                         find ${facet_proc_dirs} -type f \|              \
10110                                 while read F\; do                       \
10111                                         awk -v FS='\v' -v RS='\v\v'     \
10112                                         "'END { if(NR>0 &&              \
10113                                         \\\$NF !~ /.*\\\n\$/)           \
10114                                                 print FILENAME}'"       \
10115                                         '\$F'\;                         \
10116                                 done 2>/dev/null))
10117                 [ ${#missing[*]} -eq 0 ] ||
10118                         error "files do not end with newline: ${missing[*]}"
10119         done
10120 }
10121 run_test 133h "Proc files should end with newlines"
10122
10123 test_134a() {
10124         remote_mds_nodsh && skip "remote MDS with nodsh" && return
10125         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.54) ]] &&
10126                 skip "Need MDS version at least 2.7.54" && return
10127
10128         mkdir -p $DIR/$tdir || error "failed to create $DIR/$tdir"
10129         cancel_lru_locks mdc
10130
10131         local nsdir="ldlm.namespaces.*-MDT0000-mdc-*"
10132         local unused=$($LCTL get_param -n $nsdir.lock_unused_count)
10133         [ $unused -eq 0 ] || error "$unused locks are not cleared"
10134
10135         local nr=1000
10136         createmany -o $DIR/$tdir/f $nr ||
10137                 error "failed to create $nr files in $DIR/$tdir"
10138         unused=$($LCTL get_param -n $nsdir.lock_unused_count)
10139
10140         #define OBD_FAIL_LDLM_WATERMARK_LOW     0x327
10141         do_facet mds1 $LCTL set_param fail_loc=0x327
10142         do_facet mds1 $LCTL set_param fail_val=500
10143         touch $DIR/$tdir/m
10144
10145         echo "sleep 10 seconds ..."
10146         sleep 10
10147         local lck_cnt=$($LCTL get_param -n $nsdir.lock_unused_count)
10148
10149         do_facet mds1 $LCTL set_param fail_loc=0
10150         do_facet mds1 $LCTL set_param fail_val=0
10151         [ $lck_cnt -lt $unused ] ||
10152                 error "No locks reclaimed, before:$unused, after:$lck_cnt"
10153
10154         rm $DIR/$tdir/m
10155         unlinkmany $DIR/$tdir/f $nr
10156 }
10157 run_test 134a "Server reclaims locks when reaching lock_reclaim_threshold"
10158
10159 test_134b() {
10160         remote_mds_nodsh && skip "remote MDS with nodsh" && return
10161         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.54) ]] &&
10162                 skip "Need MDS version at least 2.7.54" && return
10163
10164         mkdir -p $DIR/$tdir || error "failed to create $DIR/$tdir"
10165         cancel_lru_locks mdc
10166
10167         local low_wm=$(do_facet mds1 $LCTL get_param -n \
10168                         ldlm.lock_reclaim_threshold_mb)
10169         # disable reclaim temporarily
10170         do_facet mds1 $LCTL set_param ldlm.lock_reclaim_threshold_mb=0
10171
10172         #define OBD_FAIL_LDLM_WATERMARK_HIGH     0x328
10173         do_facet mds1 $LCTL set_param fail_loc=0x328
10174         do_facet mds1 $LCTL set_param fail_val=500
10175
10176         $LCTL set_param debug=+trace
10177
10178         local nr=600
10179         createmany -o $DIR/$tdir/f $nr &
10180         local create_pid=$!
10181
10182         echo "Sleep $TIMEOUT seconds ..."
10183         sleep $TIMEOUT
10184         if ! ps -p $create_pid  > /dev/null 2>&1; then
10185                 do_facet mds1 $LCTL set_param fail_loc=0
10186                 do_facet mds1 $LCTL set_param fail_val=0
10187                 do_facet mds1 $LCTL set_param \
10188                         ldlm.lock_reclaim_threshold_mb=${low_wm}m
10189                 error "createmany finished incorrectly!"
10190         fi
10191         do_facet mds1 $LCTL set_param fail_loc=0
10192         do_facet mds1 $LCTL set_param fail_val=0
10193         do_facet mds1 $LCTL set_param ldlm.lock_reclaim_threshold_mb=${low_wm}m
10194         wait $create_pid || return 1
10195
10196         unlinkmany $DIR/$tdir/f $nr
10197 }
10198 run_test 134b "Server rejects lock request when reaching lock_limit_mb"
10199
10200 test_140() { #bug-17379
10201         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10202         test_mkdir $DIR/$tdir
10203         cd $DIR/$tdir || error "Changing to $DIR/$tdir"
10204         cp $(which stat) . || error "Copying stat to $DIR/$tdir"
10205
10206         # VFS limits max symlink depth to 5(4KSTACK) or 7(8KSTACK) or 8
10207         # For kernel > 3.5, bellow only tests consecutive symlink (MAX 40)
10208         local i=0
10209         while i=$((i + 1)); do
10210                 test_mkdir $i
10211                 cd $i || error "Changing to $i"
10212                 ln -s ../stat stat || error "Creating stat symlink"
10213                 # Read the symlink until ELOOP present,
10214                 # not LBUGing the system is considered success,
10215                 # we didn't overrun the stack.
10216                 $OPENFILE -f O_RDONLY stat >/dev/null 2>&1; ret=$?
10217                 if [ $ret -ne 0 ]; then
10218                         if [ $ret -eq 40 ]; then
10219                                 break  # -ELOOP
10220                         else
10221                                 error "Open stat symlink"
10222                                         return
10223                         fi
10224                 fi
10225         done
10226         i=$((i - 1))
10227         echo "The symlink depth = $i"
10228         [ $i -eq 5 -o $i -eq 7 -o $i -eq 8 -o $i -eq 40 ] ||
10229                                         error "Invalid symlink depth"
10230
10231         # Test recursive symlink
10232         ln -s symlink_self symlink_self
10233         $OPENFILE -f O_RDONLY symlink_self >/dev/null 2>&1; ret=$?
10234         echo "open symlink_self returns $ret"
10235         [ $ret -eq 40 ] || error "recursive symlink doesn't return -ELOOP"
10236 }
10237 run_test 140 "Check reasonable stack depth (shouldn't LBUG) ===="
10238
10239 test_150() {
10240         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10241         local TF="$TMP/$tfile"
10242
10243         dd if=/dev/urandom of=$TF bs=6096 count=1 || error "dd failed"
10244         cp $TF $DIR/$tfile
10245         cancel_lru_locks $OSC
10246         cmp $TF $DIR/$tfile || error "$TMP/$tfile $DIR/$tfile differ"
10247         remount_client $MOUNT
10248         df -P $MOUNT
10249         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (remount)"
10250
10251         $TRUNCATE $TF 6000
10252         $TRUNCATE $DIR/$tfile 6000
10253         cancel_lru_locks $OSC
10254         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (truncate1)"
10255
10256         echo "12345" >>$TF
10257         echo "12345" >>$DIR/$tfile
10258         cancel_lru_locks $OSC
10259         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (append1)"
10260
10261         echo "12345" >>$TF
10262         echo "12345" >>$DIR/$tfile
10263         cancel_lru_locks $OSC
10264         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (append2)"
10265
10266         rm -f $TF
10267         true
10268 }
10269 run_test 150 "truncate/append tests"
10270
10271 #LU-2902 roc_hit was not able to read all values from lproc
10272 function roc_hit_init() {
10273         local list=$(comma_list $(osts_nodes))
10274         local dir=$DIR/$tdir-check
10275         local file=$dir/$tfile
10276         local BEFORE
10277         local AFTER
10278         local idx
10279
10280         test_mkdir $dir
10281         #use setstripe to do a write to every ost
10282         for i in $(seq 0 $((OSTCOUNT-1))); do
10283                 $SETSTRIPE -c 1 -i $i $dir || error "$SETSTRIPE $file failed"
10284                 dd if=/dev/urandom of=$file bs=4k count=4 2>&1 > /dev/null
10285                 idx=$(printf %04x $i)
10286                 BEFORE=$(get_osd_param $list *OST*$idx stats |
10287                         awk '$1 == "cache_access" {sum += $7}
10288                                 END { printf("%0.0f", sum) }')
10289
10290                 cancel_lru_locks osc
10291                 cat $file >/dev/null
10292
10293                 AFTER=$(get_osd_param $list *OST*$idx stats |
10294                         awk '$1 == "cache_access" {sum += $7}
10295                                 END { printf("%0.0f", sum) }')
10296
10297                 echo BEFORE:$BEFORE AFTER:$AFTER
10298                 if ! let "AFTER - BEFORE == 4"; then
10299                         rm -rf $dir
10300                         error "roc_hit is not safe to use"
10301                 fi
10302                 rm $file
10303         done
10304
10305         rm -rf $dir
10306 }
10307
10308 function roc_hit() {
10309         local list=$(comma_list $(osts_nodes))
10310         echo $(get_osd_param $list '' stats |
10311                 awk '$1 == "cache_hit" {sum += $7}
10312                         END { printf("%0.0f", sum) }')
10313 }
10314
10315 function set_cache() {
10316         local on=1
10317
10318         if [ "$2" == "off" ]; then
10319                 on=0;
10320         fi
10321         local list=$(comma_list $(osts_nodes))
10322         set_osd_param $list '' $1_cache_enable $on
10323
10324         cancel_lru_locks osc
10325 }
10326
10327 test_151() {
10328         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10329         remote_ost_nodsh && skip "remote OST with nodsh" && return
10330
10331         local CPAGES=3
10332         local list=$(comma_list $(osts_nodes))
10333
10334         # check whether obdfilter is cache capable at all
10335         if ! get_osd_param $list '' read_cache_enable >/dev/null; then
10336                 echo "not cache-capable obdfilter"
10337                 return 0
10338         fi
10339
10340         # check cache is enabled on all obdfilters
10341         if get_osd_param $list '' read_cache_enable | grep 0; then
10342                 echo "oss cache is disabled"
10343                 return 0
10344         fi
10345
10346         set_osd_param $list '' writethrough_cache_enable 1
10347
10348         # check write cache is enabled on all obdfilters
10349         if get_osd_param $list '' writethrough_cache_enable | grep 0; then
10350                 echo "oss write cache is NOT enabled"
10351                 return 0
10352         fi
10353
10354         roc_hit_init
10355
10356         #define OBD_FAIL_OBD_NO_LRU  0x609
10357         do_nodes $list $LCTL set_param fail_loc=0x609
10358
10359         # pages should be in the case right after write
10360         dd if=/dev/urandom of=$DIR/$tfile bs=4k count=$CPAGES ||
10361                 error "dd failed"
10362
10363         local BEFORE=$(roc_hit)
10364         cancel_lru_locks osc
10365         cat $DIR/$tfile >/dev/null
10366         local AFTER=$(roc_hit)
10367
10368         do_nodes $list $LCTL set_param fail_loc=0
10369
10370         if ! let "AFTER - BEFORE == CPAGES"; then
10371                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
10372         fi
10373
10374         # the following read invalidates the cache
10375         cancel_lru_locks osc
10376         set_osd_param $list '' read_cache_enable 0
10377         cat $DIR/$tfile >/dev/null
10378
10379         # now data shouldn't be found in the cache
10380         BEFORE=$(roc_hit)
10381         cancel_lru_locks osc
10382         cat $DIR/$tfile >/dev/null
10383         AFTER=$(roc_hit)
10384         if let "AFTER - BEFORE != 0"; then
10385                 error "IN CACHE: before: $BEFORE, after: $AFTER"
10386         fi
10387
10388         set_osd_param $list '' read_cache_enable 1
10389         rm -f $DIR/$tfile
10390 }
10391 run_test 151 "test cache on oss and controls ==============================="
10392
10393 test_152() {
10394         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10395         local TF="$TMP/$tfile"
10396
10397         # simulate ENOMEM during write
10398 #define OBD_FAIL_OST_NOMEM      0x226
10399         lctl set_param fail_loc=0x80000226
10400         dd if=/dev/urandom of=$TF bs=6096 count=1 || error "dd failed"
10401         cp $TF $DIR/$tfile
10402         sync || error "sync failed"
10403         lctl set_param fail_loc=0
10404
10405         # discard client's cache
10406         cancel_lru_locks osc
10407
10408         # simulate ENOMEM during read
10409         lctl set_param fail_loc=0x80000226
10410         cmp $TF $DIR/$tfile || error "cmp failed"
10411         lctl set_param fail_loc=0
10412
10413         rm -f $TF
10414 }
10415 run_test 152 "test read/write with enomem ============================"
10416
10417 test_153() {
10418         $MULTIOP $DIR/$tfile Ow4096Ycu || error "multiop failed"
10419 }
10420 run_test 153 "test if fdatasync does not crash ======================="
10421
10422 dot_lustre_fid_permission_check() {
10423         local fid=$1
10424         local ffid=$MOUNT/.lustre/fid/$fid
10425         local test_dir=$2
10426
10427         echo "stat fid $fid"
10428         stat $ffid > /dev/null || error "stat $ffid failed."
10429         echo "touch fid $fid"
10430         touch $ffid || error "touch $ffid failed."
10431         echo "write to fid $fid"
10432         cat /etc/hosts > $ffid || error "write $ffid failed."
10433         echo "read fid $fid"
10434         diff /etc/hosts $ffid || error "read $ffid failed."
10435         echo "append write to fid $fid"
10436         cat /etc/hosts >> $ffid || error "append write $ffid failed."
10437         echo "rename fid $fid"
10438         mv $ffid $test_dir/$tfile.1 &&
10439                 error "rename $ffid to $tfile.1 should fail."
10440         touch $test_dir/$tfile.1
10441         mv $test_dir/$tfile.1 $ffid &&
10442                 error "rename $tfile.1 to $ffid should fail."
10443         rm -f $test_dir/$tfile.1
10444         echo "truncate fid $fid"
10445         $TRUNCATE $ffid 777 || error "truncate $ffid failed."
10446         if [ $MDSCOUNT -lt 2 ]; then #FIXME when cross-MDT hard link is working
10447                 echo "link fid $fid"
10448                 ln -f $ffid $test_dir/tfile.lnk || error "link $ffid failed."
10449         fi
10450         if [ -n $(lctl get_param -n mdc.*-mdc-*.connect_flags | grep acl) ]; then
10451                 echo "setfacl fid $fid"
10452                 setfacl -R -m u:bin:rwx $ffid || error "setfacl $ffid failed."
10453                 echo "getfacl fid $fid"
10454                 getfacl $ffid >/dev/null || error "getfacl $ffid failed."
10455         fi
10456         echo "unlink fid $fid"
10457         unlink $MOUNT/.lustre/fid/$fid && error "unlink $ffid should fail."
10458         echo "mknod fid $fid"
10459         mknod $ffid c 1 3 && error "mknod $ffid should fail."
10460
10461         fid=[0xf00000400:0x1:0x0]
10462         ffid=$MOUNT/.lustre/fid/$fid
10463
10464         echo "stat non-exist fid $fid"
10465         stat $ffid > /dev/null && error "stat non-exist $ffid should fail."
10466         echo "write to non-exist fid $fid"
10467         cat /etc/hosts > $ffid && error "write non-exist $ffid should fail."
10468         echo "link new fid $fid"
10469         ln $test_dir/$tfile $ffid && error "link $ffid should fail."
10470
10471         mkdir -p $test_dir/$tdir
10472         touch $test_dir/$tdir/$tfile
10473         fid=$($LFS path2fid $test_dir/$tdir)
10474         rc=$?
10475         [ $rc -ne 0 ] &&
10476                 error "error: could not get fid for $test_dir/$dir/$tfile."
10477
10478         ffid=$MOUNT/.lustre/fid/$fid
10479
10480         echo "ls $fid"
10481         ls $ffid > /dev/null || error "ls $ffid failed."
10482         echo "touch $fid/$tfile.1"
10483         touch $ffid/$tfile.1 || error "touch $ffid/$tfile.1 failed."
10484
10485         echo "touch $MOUNT/.lustre/fid/$tfile"
10486         touch $MOUNT/.lustre/fid/$tfile && \
10487                 error "touch $MOUNT/.lustre/fid/$tfile should fail."
10488
10489         echo "setxattr to $MOUNT/.lustre/fid"
10490         setfattr -n trusted.name1 -v value1 $MOUNT/.lustre/fid
10491
10492         echo "listxattr for $MOUNT/.lustre/fid"
10493         getfattr -d -m "^trusted" $MOUNT/.lustre/fid
10494
10495         echo "delxattr from $MOUNT/.lustre/fid"
10496         setfattr -x trusted.name1 $MOUNT/.lustre/fid
10497
10498         echo "touch invalid fid: $MOUNT/.lustre/fid/[0x200000400:0x2:0x3]"
10499         touch $MOUNT/.lustre/fid/[0x200000400:0x2:0x3] &&
10500                 error "touch invalid fid should fail."
10501
10502         echo "touch non-normal fid: $MOUNT/.lustre/fid/[0x1:0x2:0x0]"
10503         touch $MOUNT/.lustre/fid/[0x1:0x2:0x0] &&
10504                 error "touch non-normal fid should fail."
10505
10506         echo "rename $tdir to $MOUNT/.lustre/fid"
10507         mrename $test_dir/$tdir $MOUNT/.lustre/fid &&
10508                 error "rename to $MOUNT/.lustre/fid should fail."
10509
10510         if [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.51) ]
10511         then            # LU-3547
10512                 local old_obf_mode=$(stat --format="%a" $DIR/.lustre/fid)
10513                 local new_obf_mode=777
10514
10515                 echo "change mode of $DIR/.lustre/fid to $new_obf_mode"
10516                 chmod $new_obf_mode $DIR/.lustre/fid ||
10517                         error "chmod $new_obf_mode $DIR/.lustre/fid failed"
10518
10519                 local obf_mode=$(stat --format=%a $DIR/.lustre/fid)
10520                 [ $obf_mode -eq $new_obf_mode ] ||
10521                         error "stat $DIR/.lustre/fid returned wrong mode $obf_mode"
10522
10523                 echo "restore mode of $DIR/.lustre/fid to $old_obf_mode"
10524                 chmod $old_obf_mode $DIR/.lustre/fid ||
10525                         error "chmod $old_obf_mode $DIR/.lustre/fid failed"
10526         fi
10527
10528         $OPENFILE -f O_LOV_DELAY_CREATE:O_CREAT $test_dir/$tfile-2
10529         fid=$($LFS path2fid $test_dir/$tfile-2)
10530
10531         if [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.50) ]
10532         then # LU-5424
10533                 echo "cp /etc/passwd $MOUNT/.lustre/fid/$fid"
10534                 cp /etc/passwd $MOUNT/.lustre/fid/$fid ||
10535                         error "create lov data thru .lustre failed"
10536         fi
10537         echo "cp /etc/passwd $test_dir/$tfile-2"
10538         cp /etc/passwd $test_dir/$tfile-2 ||
10539                 error "copy to $test_dir/$tfile-2 failed."
10540         echo "diff /etc/passwd $MOUNT/.lustre/fid/$fid"
10541         diff /etc/passwd $MOUNT/.lustre/fid/$fid ||
10542                 error "diff /etc/passwd $MOUNT/.lustre/fid/$fid failed."
10543
10544         rm -rf $test_dir/tfile.lnk
10545         rm -rf $test_dir/$tfile-2
10546 }
10547
10548 test_154A() {
10549         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.1) ]] &&
10550                 skip "Need MDS version at least 2.4.1" && return
10551
10552         local tf=$DIR/$tfile
10553         touch $tf
10554
10555         local fid=$($LFS path2fid $tf)
10556         [ -z "$fid" ] && error "path2fid unable to get $tf FID"
10557
10558         # check that we get the same pathname back
10559         local found=$($LFS fid2path $MOUNT "$fid")
10560         [ -z "$found" ] && error "fid2path unable to get '$fid' path"
10561         [ "$found" == "$tf" ] ||
10562                 error "fid2path($fid=path2fid($tf)) = $found != $tf"
10563 }
10564 run_test 154A "lfs path2fid and fid2path basic checks"
10565
10566 test_154B() {
10567         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.1) ]] &&
10568                 skip "Need MDS version at least 2.4.1" && return
10569
10570         mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
10571         touch $DIR/$tdir/$tfile || error "touch $DIR/$tdir/$tfile failed"
10572         local linkea=$($LL_DECODE_LINKEA $DIR/$tdir/$tfile | grep 'pfid')
10573         [ -z "$linkea" ] && error "decode linkea $DIR/$tdir/$tfile failed"
10574
10575         local name=$(echo $linkea | awk '/pfid/ {print $5}' | sed -e "s/'//g")
10576         local PFID=$(echo $linkea | awk '/pfid/ {print $3}' | sed -e "s/,//g")
10577
10578         # check that we get the same pathname
10579         echo "PFID: $PFID, name: $name"
10580         local FOUND=$($LFS fid2path $MOUNT "$PFID")
10581         [ -z "$FOUND" ] && error "fid2path unable to get $PFID path"
10582         [ "$FOUND/$name" != "$DIR/$tdir/$tfile" ] &&
10583                 error "ll_decode_linkea has $FOUND/$name != $DIR/$tdir/$tfile"
10584
10585         rm -rf $DIR/$tdir || error "Can not delete directory $DIR/$tdir"
10586 }
10587 run_test 154B "verify the ll_decode_linkea tool"
10588
10589 test_154a() {
10590         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10591         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ]] ||
10592                 { skip "Need MDS version at least 2.2.51"; return 0; }
10593         [ -z "$(which setfacl)" ] && skip "must have setfacl tool" && return
10594         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
10595
10596         cp /etc/hosts $DIR/$tfile
10597
10598         fid=$($LFS path2fid $DIR/$tfile)
10599         rc=$?
10600         [ $rc -ne 0 ] && error "error: could not get fid for $DIR/$tfile."
10601
10602         dot_lustre_fid_permission_check "$fid" $DIR ||
10603                 error "dot lustre permission check $fid failed"
10604
10605         rm -rf $MOUNT/.lustre && error ".lustre is not allowed to be unlinked"
10606
10607         touch $MOUNT/.lustre/file &&
10608                 error "creation is not allowed under .lustre"
10609
10610         mkdir $MOUNT/.lustre/dir &&
10611                 error "mkdir is not allowed under .lustre"
10612
10613         rm -rf $DIR/$tfile
10614 }
10615 run_test 154a "Open-by-FID"
10616
10617 test_154b() {
10618         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10619         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ]] ||
10620                 { skip "Need MDS version at least 2.2.51"; return 0; }
10621         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
10622
10623         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
10624
10625         local remote_dir=$DIR/$tdir/remote_dir
10626         local MDTIDX=1
10627         local rc=0
10628
10629         mkdir -p $DIR/$tdir
10630         $LFS mkdir -i $MDTIDX $remote_dir ||
10631                 error "create remote directory failed"
10632
10633         cp /etc/hosts $remote_dir/$tfile
10634
10635         fid=$($LFS path2fid $remote_dir/$tfile)
10636         rc=$?
10637         [ $rc -ne 0 ] && error "error: could not get fid for $remote_dir/$tfile"
10638
10639         dot_lustre_fid_permission_check "$fid" $remote_dir ||
10640                 error "dot lustre permission check $fid failed"
10641         rm -rf $DIR/$tdir
10642 }
10643 run_test 154b "Open-by-FID for remote directory"
10644
10645 test_154c() {
10646         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.1) ]] &&
10647                 skip "Need MDS version at least 2.4.1" && return
10648
10649         touch $DIR/$tfile.1 $DIR/$tfile.2 $DIR/$tfile.3
10650         local FID1=$($LFS path2fid $DIR/$tfile.1)
10651         local FID2=$($LFS path2fid $DIR/$tfile.2)
10652         local FID3=$($LFS path2fid $DIR/$tfile.3)
10653
10654         local N=1
10655         $LFS path2fid $DIR/$tfile.[123] | while read PATHNAME FID; do
10656                 [ "$PATHNAME" = "$DIR/$tfile.$N:" ] ||
10657                         error "path2fid pathname $PATHNAME != $DIR/$tfile.$N:"
10658                 local want=FID$N
10659                 [ "$FID" = "${!want}" ] ||
10660                         error "path2fid $PATHNAME FID $FID != FID$N ${!want}"
10661                 N=$((N + 1))
10662         done
10663
10664         $LFS fid2path $MOUNT "$FID1" "$FID2" "$FID3" | while read PATHNAME;
10665         do
10666                 [ "$PATHNAME" = "$DIR/$tfile.$N" ] ||
10667                         error "fid2path pathname $PATHNAME != $DIR/$tfile.$N:"
10668                 N=$((N + 1))
10669         done
10670 }
10671 run_test 154c "lfs path2fid and fid2path multiple arguments"
10672
10673 test_154d() {
10674         remote_mds_nodsh && skip "remote MDS with nodsh" && return
10675         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.5.53) ]] &&
10676                 skip "Need MDS version at least 2.5.53" && return
10677
10678         if remote_mds; then
10679                 nid=$($LCTL list_nids | sed  "s/\./\\\./g")
10680         else
10681                 nid="0@lo"
10682         fi
10683         local proc_ofile="mdt.*.exports.'$nid'.open_files"
10684         local fd
10685         local cmd
10686
10687         rm -f $DIR/$tfile
10688         touch $DIR/$tfile
10689
10690         local fid=$($LFS path2fid $DIR/$tfile)
10691         # Open the file
10692         fd=$(free_fd)
10693         cmd="exec $fd<$DIR/$tfile"
10694         eval $cmd
10695         local fid_list=$(do_facet $SINGLEMDS $LCTL get_param $proc_ofile)
10696         echo "$fid_list" | grep "$fid"
10697         rc=$?
10698
10699         cmd="exec $fd>/dev/null"
10700         eval $cmd
10701         if [ $rc -ne 0 ]; then
10702                 error "FID $fid not found in open files list $fid_list"
10703         fi
10704 }
10705 run_test 154d "Verify open file fid"
10706
10707 test_154e()
10708 {
10709         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.6.50) ]] &&
10710                 skip "Need MDS version at least 2.6.50" && return
10711
10712         if ls -a $MOUNT | grep -q '^\.lustre$'; then
10713                 error ".lustre returned by readdir"
10714         fi
10715 }
10716 run_test 154e ".lustre is not returned by readdir"
10717
10718 test_154f() {
10719         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
10720         # create parent directory on a single MDT to avoid cross-MDT hardlinks
10721         test_mkdir -p -c1 $DIR/$tdir/d
10722         # test dirs inherit from its stripe
10723         mkdir -p $DIR/$tdir/d/foo1 || error "mkdir error"
10724         mkdir -p $DIR/$tdir/d/foo2 || error "mkdir error"
10725         cp /etc/hosts $DIR/$tdir/d/foo1/$tfile
10726         ln $DIR/$tdir/d/foo1/$tfile $DIR/$tdir/d/foo2/link
10727         touch $DIR/f
10728
10729         # get fid of parents
10730         local FID0=$($LFS path2fid $DIR/$tdir/d)
10731         local FID1=$($LFS path2fid $DIR/$tdir/d/foo1)
10732         local FID2=$($LFS path2fid $DIR/$tdir/d/foo2)
10733         local FID3=$($LFS path2fid $DIR)
10734
10735         # check that path2fid --parents returns expected <parent_fid>/name
10736         # 1) test for a directory (single parent)
10737         local parent=$($LFS path2fid --parents $DIR/$tdir/d/foo1)
10738         [ "$parent" == "$FID0/foo1" ] ||
10739                 error "expected parent: $FID0/foo1, got: $parent"
10740
10741         # 2) test for a file with nlink > 1 (multiple parents)
10742         parent=$($LFS path2fid --parents $DIR/$tdir/d/foo1/$tfile)
10743         echo "$parent" | grep -F "$FID1/$tfile" ||
10744                 error "$FID1/$tfile not returned in parent list"
10745         echo "$parent" | grep -F "$FID2/link" ||
10746                 error "$FID2/link not returned in parent list"
10747
10748         # 3) get parent by fid
10749         local file_fid=$($LFS path2fid $DIR/$tdir/d/foo1/$tfile)
10750         parent=$($LFS path2fid --parents $MOUNT/.lustre/fid/$file_fid)
10751         echo "$parent" | grep -F "$FID1/$tfile" ||
10752                 error "$FID1/$tfile not returned in parent list (by fid)"
10753         echo "$parent" | grep -F "$FID2/link" ||
10754                 error "$FID2/link not returned in parent list (by fid)"
10755
10756         # 4) test for entry in root directory
10757         parent=$($LFS path2fid --parents $DIR/f)
10758         echo "$parent" | grep -F "$FID3/f" ||
10759                 error "$FID3/f not returned in parent list"
10760
10761         # 5) test it on root directory
10762         [ -z "$($LFS path2fid --parents $MOUNT 2>/dev/null)" ] ||
10763                 error "$MOUNT should not have parents"
10764
10765         # enable xattr caching and check that linkea is correctly updated
10766         local save="$TMP/$TESTSUITE-$TESTNAME.parameters"
10767         save_lustre_params client "llite.*.xattr_cache" > $save
10768         lctl set_param llite.*.xattr_cache 1
10769
10770         # 6.1) linkea update on rename
10771         mv $DIR/$tdir/d/foo1/$tfile $DIR/$tdir/d/foo2/$tfile.moved
10772
10773         # get parents by fid
10774         parent=$($LFS path2fid --parents $MOUNT/.lustre/fid/$file_fid)
10775         # foo1 should no longer be returned in parent list
10776         echo "$parent" | grep -F "$FID1" &&
10777                 error "$FID1 should no longer be in parent list"
10778         # the new path should appear
10779         echo "$parent" | grep -F "$FID2/$tfile.moved" ||
10780                 error "$FID2/$tfile.moved is not in parent list"
10781
10782         # 6.2) linkea update on unlink
10783         rm -f $DIR/$tdir/d/foo2/link
10784         parent=$($LFS path2fid --parents $MOUNT/.lustre/fid/$file_fid)
10785         # foo2/link should no longer be returned in parent list
10786         echo "$parent" | grep -F "$FID2/link" &&
10787                 error "$FID2/link should no longer be in parent list"
10788         true
10789
10790         rm -f $DIR/f
10791         restore_lustre_params < $save
10792         rm -f $save
10793 }
10794 run_test 154f "get parent fids by reading link ea"
10795
10796 test_154g()
10797 {
10798         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.92) && \
10799            $(lustre_version_code client) -gt $(version_code 2.6.99) ]] ||
10800                 { skip "Need MDS version at least 2.6.92"; return 0; }
10801         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
10802
10803         mkdir -p $DIR/$tdir
10804         llapi_fid_test -d $DIR/$tdir
10805 }
10806 run_test 154g "various llapi FID tests"
10807
10808 test_155_small_load() {
10809     local temp=$TMP/$tfile
10810     local file=$DIR/$tfile
10811
10812     dd if=/dev/urandom of=$temp bs=6096 count=1 || \
10813         error "dd of=$temp bs=6096 count=1 failed"
10814     cp $temp $file
10815     cancel_lru_locks $OSC
10816     cmp $temp $file || error "$temp $file differ"
10817
10818     $TRUNCATE $temp 6000
10819     $TRUNCATE $file 6000
10820     cmp $temp $file || error "$temp $file differ (truncate1)"
10821
10822     echo "12345" >>$temp
10823     echo "12345" >>$file
10824     cmp $temp $file || error "$temp $file differ (append1)"
10825
10826     echo "12345" >>$temp
10827     echo "12345" >>$file
10828     cmp $temp $file || error "$temp $file differ (append2)"
10829
10830     rm -f $temp $file
10831     true
10832 }
10833
10834 test_155_big_load() {
10835     remote_ost_nodsh && skip "remote OST with nodsh" && return
10836     local temp=$TMP/$tfile
10837     local file=$DIR/$tfile
10838
10839     free_min_max
10840     local cache_size=$(do_facet ost$((MAXI+1)) \
10841         "awk '/cache/ {sum+=\\\$4} END {print sum}' /proc/cpuinfo")
10842     local large_file_size=$((cache_size * 2))
10843
10844     echo "OSS cache size: $cache_size KB"
10845     echo "Large file size: $large_file_size KB"
10846
10847     [ $MAXV -le $large_file_size ] && \
10848         skip_env "max available OST size needs > $large_file_size KB" && \
10849         return 0
10850
10851     $SETSTRIPE $file -c 1 -i $MAXI || error "$SETSTRIPE $file failed"
10852
10853     dd if=/dev/urandom of=$temp bs=$large_file_size count=1k || \
10854         error "dd of=$temp bs=$large_file_size count=1k failed"
10855     cp $temp $file
10856     ls -lh $temp $file
10857     cancel_lru_locks osc
10858     cmp $temp $file || error "$temp $file differ"
10859
10860     rm -f $temp $file
10861     true
10862 }
10863
10864 save_writethrough() {
10865         local facets=$(get_facets OST)
10866
10867         save_lustre_params $facets "obdfilter.*.writethrough_cache_enable" > $1
10868         save_lustre_params $facets "osd-*.*.writethrough_cache_enable" >> $1
10869 }
10870
10871 test_155a() {
10872         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10873         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
10874         save_writethrough $p
10875
10876         set_cache read on
10877         set_cache writethrough on
10878         test_155_small_load
10879         restore_lustre_params < $p
10880         rm -f $p
10881 }
10882 run_test 155a "Verify small file correctness: read cache:on write_cache:on"
10883
10884 test_155b() {
10885         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10886         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
10887         save_writethrough $p
10888
10889         set_cache read on
10890         set_cache writethrough off
10891         test_155_small_load
10892         restore_lustre_params < $p
10893         rm -f $p
10894 }
10895 run_test 155b "Verify small file correctness: read cache:on write_cache:off"
10896
10897 test_155c() {
10898         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10899         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
10900         save_writethrough $p
10901
10902         set_cache read off
10903         set_cache writethrough on
10904         test_155_small_load
10905         restore_lustre_params < $p
10906         rm -f $p
10907 }
10908 run_test 155c "Verify small file correctness: read cache:off write_cache:on"
10909
10910 test_155d() {
10911         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10912         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
10913         save_writethrough $p
10914
10915         set_cache read off
10916         set_cache writethrough off
10917         test_155_small_load
10918         restore_lustre_params < $p
10919         rm -f $p
10920 }
10921 run_test 155d "Verify small file correctness: read cache:off write_cache:off"
10922
10923 test_155e() {
10924         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10925         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
10926         save_writethrough $p
10927
10928         set_cache read on
10929         set_cache writethrough on
10930         test_155_big_load
10931         restore_lustre_params < $p
10932         rm -f $p
10933 }
10934 run_test 155e "Verify big file correctness: read cache:on write_cache:on"
10935
10936 test_155f() {
10937         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10938         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
10939         save_writethrough $p
10940
10941         set_cache read on
10942         set_cache writethrough off
10943         test_155_big_load
10944         restore_lustre_params < $p
10945         rm -f $p
10946 }
10947 run_test 155f "Verify big file correctness: read cache:on write_cache:off"
10948
10949 test_155g() {
10950         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10951         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
10952         save_writethrough $p
10953
10954         set_cache read off
10955         set_cache writethrough on
10956         test_155_big_load
10957         restore_lustre_params < $p
10958         rm -f $p
10959 }
10960 run_test 155g "Verify big file correctness: read cache:off write_cache:on"
10961
10962 test_155h() {
10963         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10964         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
10965         save_writethrough $p
10966
10967         set_cache read off
10968         set_cache writethrough off
10969         test_155_big_load
10970         restore_lustre_params < $p
10971         rm -f $p
10972 }
10973 run_test 155h "Verify big file correctness: read cache:off write_cache:off"
10974
10975 test_156() {
10976         remote_ost_nodsh && skip "remote OST with nodsh" && return
10977         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10978         local CPAGES=3
10979         local BEFORE
10980         local AFTER
10981         local file="$DIR/$tfile"
10982         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
10983
10984         [ "$(facet_fstype ost1)" = "zfs" -a \
10985            $(lustre_version_code ost1 -lt $(version_code 2.6.93)) ] &&
10986                 skip "LU-1956/LU-2261: stats not implemented on OSD ZFS" &&
10987                 return
10988
10989         save_writethrough $p
10990         roc_hit_init
10991
10992         log "Turn on read and write cache"
10993         set_cache read on
10994         set_cache writethrough on
10995
10996         log "Write data and read it back."
10997         log "Read should be satisfied from the cache."
10998         dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
10999         BEFORE=$(roc_hit)
11000         cancel_lru_locks osc
11001         cat $file >/dev/null
11002         AFTER=$(roc_hit)
11003         if ! let "AFTER - BEFORE == CPAGES"; then
11004                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
11005         else
11006                 log "cache hits:: before: $BEFORE, after: $AFTER"
11007         fi
11008
11009         log "Read again; it should be satisfied from the cache."
11010         BEFORE=$AFTER
11011         cancel_lru_locks osc
11012         cat $file >/dev/null
11013         AFTER=$(roc_hit)
11014         if ! let "AFTER - BEFORE == CPAGES"; then
11015                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
11016         else
11017                 log "cache hits:: before: $BEFORE, after: $AFTER"
11018         fi
11019
11020         log "Turn off the read cache and turn on the write cache"
11021         set_cache read off
11022         set_cache writethrough on
11023
11024         log "Read again; it should be satisfied from the cache."
11025         BEFORE=$(roc_hit)
11026         cancel_lru_locks osc
11027         cat $file >/dev/null
11028         AFTER=$(roc_hit)
11029         if ! let "AFTER - BEFORE == CPAGES"; then
11030                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
11031         else
11032                 log "cache hits:: before: $BEFORE, after: $AFTER"
11033         fi
11034
11035         log "Read again; it should not be satisfied from the cache."
11036         BEFORE=$AFTER
11037         cancel_lru_locks osc
11038         cat $file >/dev/null
11039         AFTER=$(roc_hit)
11040         if ! let "AFTER - BEFORE == 0"; then
11041                 error "IN CACHE: before: $BEFORE, after: $AFTER"
11042         else
11043                 log "cache hits:: before: $BEFORE, after: $AFTER"
11044         fi
11045
11046         log "Write data and read it back."
11047         log "Read should be satisfied from the cache."
11048         dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
11049         BEFORE=$(roc_hit)
11050         cancel_lru_locks osc
11051         cat $file >/dev/null
11052         AFTER=$(roc_hit)
11053         if ! let "AFTER - BEFORE == CPAGES"; then
11054                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
11055         else
11056                 log "cache hits:: before: $BEFORE, after: $AFTER"
11057         fi
11058
11059         log "Read again; it should not be satisfied from the cache."
11060         BEFORE=$AFTER
11061         cancel_lru_locks osc
11062         cat $file >/dev/null
11063         AFTER=$(roc_hit)
11064         if ! let "AFTER - BEFORE == 0"; then
11065                 error "IN CACHE: before: $BEFORE, after: $AFTER"
11066         else
11067                 log "cache hits:: before: $BEFORE, after: $AFTER"
11068         fi
11069
11070         log "Turn off read and write cache"
11071         set_cache read off
11072         set_cache writethrough off
11073
11074         log "Write data and read it back"
11075         log "It should not be satisfied from the cache."
11076         rm -f $file
11077         dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
11078         cancel_lru_locks osc
11079         BEFORE=$(roc_hit)
11080         cat $file >/dev/null
11081         AFTER=$(roc_hit)
11082         if ! let "AFTER - BEFORE == 0"; then
11083                 error_ignore bz20762 "IN CACHE: before: $BEFORE, after: $AFTER"
11084         else
11085                 log "cache hits:: before: $BEFORE, after: $AFTER"
11086         fi
11087
11088         log "Turn on the read cache and turn off the write cache"
11089         set_cache read on
11090         set_cache writethrough off
11091
11092         log "Write data and read it back"
11093         log "It should not be satisfied from the cache."
11094         rm -f $file
11095         dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
11096         BEFORE=$(roc_hit)
11097         cancel_lru_locks osc
11098         cat $file >/dev/null
11099         AFTER=$(roc_hit)
11100         if ! let "AFTER - BEFORE == 0"; then
11101                 error_ignore bz20762 "IN CACHE: before: $BEFORE, after: $AFTER"
11102         else
11103                 log "cache hits:: before: $BEFORE, after: $AFTER"
11104         fi
11105
11106         log "Read again; it should be satisfied from the cache."
11107         BEFORE=$(roc_hit)
11108         cancel_lru_locks osc
11109         cat $file >/dev/null
11110         AFTER=$(roc_hit)
11111         if ! let "AFTER - BEFORE == CPAGES"; then
11112                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
11113         else
11114                 log "cache hits:: before: $BEFORE, after: $AFTER"
11115         fi
11116
11117         restore_lustre_params < $p
11118         rm -f $p $file
11119 }
11120 run_test 156 "Verification of tunables"
11121
11122 #Changelogs
11123 cleanup_changelog () {
11124         trap 0
11125         echo "Deregistering changelog client $CL_USER"
11126         do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister $CL_USER
11127 }
11128
11129 err17935 () {
11130         if [[ $MDSCOUNT -gt 1 ]]; then
11131                 error_ignore bz17935 $*
11132         else
11133                 error $*
11134         fi
11135 }
11136
11137 changelog_chmask()
11138 {
11139         local CL_MASK_PARAM="mdd.$MDT0.changelog_mask"
11140
11141         MASK=$(do_facet $SINGLEMDS $LCTL get_param $CL_MASK_PARAM| grep -c "$1")
11142
11143         if [ $MASK -eq 1 ]; then
11144                 do_facet $SINGLEMDS $LCTL set_param $CL_MASK_PARAM="-$1"
11145         else
11146                 do_facet $SINGLEMDS $LCTL set_param $CL_MASK_PARAM="+$1"
11147         fi
11148 }
11149
11150 changelog_extract_field() {
11151         local mdt=$1
11152         local cltype=$2
11153         local file=$3
11154         local identifier=$4
11155
11156         $LFS changelog $mdt | gawk "/$cltype.*$file$/ {
11157                 print gensub(/^.* "$identifier'(\[[^\]]*\]).*$/,"\\1",1)}' |
11158                 tail -1
11159 }
11160
11161 test_160a() {
11162         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11163         remote_mds_nodsh && skip "remote MDS with nodsh" && return
11164         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] ||
11165                 { skip "Need MDS version at least 2.2.0"; return; }
11166
11167         local CL_USERS="mdd.$MDT0.changelog_users"
11168         local GET_CL_USERS="do_facet $SINGLEMDS $LCTL get_param -n $CL_USERS"
11169         CL_USER=$(do_facet $SINGLEMDS $LCTL --device $MDT0 \
11170                 changelog_register -n)
11171         echo "Registered as changelog user $CL_USER"
11172         trap cleanup_changelog EXIT
11173         $GET_CL_USERS | grep -q $CL_USER ||
11174                 error "User $CL_USER not found in changelog_users"
11175
11176         # change something
11177         test_mkdir -p $DIR/$tdir/pics/2008/zachy
11178         touch $DIR/$tdir/pics/2008/zachy/timestamp
11179         cp /etc/hosts $DIR/$tdir/pics/2008/zachy/pic1.jpg
11180         mv $DIR/$tdir/pics/2008/zachy $DIR/$tdir/pics/zach
11181         ln $DIR/$tdir/pics/zach/pic1.jpg $DIR/$tdir/pics/2008/portland.jpg
11182         ln -s $DIR/$tdir/pics/2008/portland.jpg $DIR/$tdir/pics/desktop.jpg
11183         rm $DIR/$tdir/pics/desktop.jpg
11184
11185         $LFS changelog $MDT0 | tail -5
11186
11187         echo "verifying changelog mask"
11188         changelog_chmask "MKDIR"
11189         changelog_chmask "CLOSE"
11190
11191         test_mkdir -p $DIR/$tdir/pics/zach/sofia
11192         echo "zzzzzz" > $DIR/$tdir/pics/zach/file
11193
11194         changelog_chmask "MKDIR"
11195         changelog_chmask "CLOSE"
11196
11197         test_mkdir -p $DIR/$tdir/pics/2008/sofia
11198         echo "zzzzzz" > $DIR/$tdir/pics/zach/file
11199
11200         $LFS changelog $MDT0
11201         MKDIRS=$($LFS changelog $MDT0 | tail -5 | grep -c "MKDIR")
11202         CLOSES=$($LFS changelog $MDT0 | tail -5 | grep -c "CLOSE")
11203         [ $MKDIRS -eq 1 ] || err17935 "MKDIR changelog mask count $DIRS != 1"
11204         [ $CLOSES -eq 1 ] || err17935 "CLOSE changelog mask count $DIRS != 1"
11205
11206         # verify contents
11207         echo "verifying target fid"
11208         fidc=$(changelog_extract_field $MDT0 "CREAT" "timestamp" "t=")
11209         fidf=$($LFS path2fid $DIR/$tdir/pics/zach/timestamp)
11210         [ "$fidc" == "$fidf" ] ||
11211                 err17935 "fid in changelog $fidc != file fid $fidf"
11212         echo "verifying parent fid"
11213         fidc=$(changelog_extract_field $MDT0 "CREAT" "timestamp" "p=")
11214         fidf=$($LFS path2fid $DIR/$tdir/pics/zach)
11215         [ "$fidc" == "$fidf" ] ||
11216                 err17935 "pfid in changelog $fidc != dir fid $fidf"
11217
11218         USER_REC1=$($GET_CL_USERS | awk "\$1 == \"$CL_USER\" {print \$2}")
11219         $LFS changelog_clear $MDT0 $CL_USER $(($USER_REC1 + 5))
11220         USER_REC2=$($GET_CL_USERS | awk "\$1 == \"$CL_USER\" {print \$2}")
11221         echo "verifying user clear: $(( $USER_REC1 + 5 )) == $USER_REC2"
11222         [ $USER_REC2 == $(($USER_REC1 + 5)) ] ||
11223                 err17935 "user index expected $(($USER_REC1 + 5)) is $USER_REC2"
11224
11225         MIN_REC=$($GET_CL_USERS |
11226                 awk 'min == "" || $2 < min {min = $2}; END {print min}')
11227         FIRST_REC=$($LFS changelog $MDT0 | head -n1 | awk '{print $1}')
11228         echo "verifying min purge: $(( $MIN_REC + 1 )) == $FIRST_REC"
11229         [ $FIRST_REC == $(($MIN_REC + 1)) ] ||
11230                 err17935 "first index should be $(($MIN_REC + 1)) is $FIRST_REC"
11231
11232         # LU-3446 changelog index reset on MDT restart
11233         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
11234         CUR_REC1=$($GET_CL_USERS | head -n1 | cut -f3 -d' ')
11235         $LFS changelog_clear $MDT0 $CL_USER 0
11236         stop $SINGLEMDS || error "Fail to stop MDT."
11237         start $SINGLEMDS $MDT_DEV $MDS_MOUNT_OPTS || error "Fail to start MDT."
11238         CUR_REC2=$($GET_CL_USERS | head -n1 | cut -f3 -d' ')
11239         echo "verifying index survives MDT restart: $CUR_REC1 == $CUR_REC2"
11240         [ $CUR_REC1 == $CUR_REC2 ] ||
11241                 err17935 "current index should be $CUR_REC1 is $CUR_REC2"
11242
11243         echo "verifying user deregister"
11244         cleanup_changelog
11245         $GET_CL_USERS | grep -q $CL_USER &&
11246                 error "User $CL_USER still in changelog_users"
11247
11248         USERS=$(( $($GET_CL_USERS | wc -l) - 2 ))
11249         if [ $CL_USER -eq 0 ]; then
11250                 LAST_REC1=$($GET_CL_USERS | head -n1 | cut -f3 -d' ')
11251                 touch $DIR/$tdir/chloe
11252                 LAST_REC2=$($GET_CL_USERS | head -n1 | cut -f3 -d' ')
11253                 echo "verify changelogs are off: $LAST_REC1 == $LAST_REC2"
11254                 [ $LAST_REC1 == $LAST_REC2 ] || error "changelogs not off"
11255         else
11256                 echo "$CL_USER other changelog users; can't verify off"
11257         fi
11258 }
11259 run_test 160a "changelog sanity"
11260
11261 test_160b() { # LU-3587
11262         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11263         remote_mds_nodsh && skip "remote MDS with nodsh" && return
11264         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] ||
11265                 { skip "Need MDS version at least 2.2.0"; return; }
11266
11267         local CL_USERS="mdd.$MDT0.changelog_users"
11268         local GET_CL_USERS="do_facet $SINGLEMDS $LCTL get_param -n $CL_USERS"
11269         CL_USER=$(do_facet $SINGLEMDS $LCTL --device $MDT0 \
11270                 changelog_register -n)
11271         echo "Registered as changelog user $CL_USER"
11272         trap cleanup_changelog EXIT
11273         $GET_CL_USERS | grep -q $CL_USER ||
11274                 error "User $CL_USER not found in changelog_users"
11275
11276         local LONGNAME1=$(str_repeat a 255)
11277         local LONGNAME2=$(str_repeat b 255)
11278
11279         cd $DIR
11280         echo "creating very long named file"
11281         touch $LONGNAME1 || error "create of $LONGNAME1 failed"
11282         echo "moving very long named file"
11283         mv $LONGNAME1 $LONGNAME2
11284
11285         $LFS changelog $MDT0 | grep RENME
11286         rm -f $LONGNAME2
11287         cleanup_changelog
11288 }
11289 run_test 160b "Verify that very long rename doesn't crash in changelog"
11290
11291 test_160c() {
11292         remote_mds_nodsh && skip "remote MDS with nodsh" && return
11293
11294         local rc=0
11295         local server_version=$(lustre_version_code $SINGLEMDS)
11296
11297         [[ $server_version -gt $(version_code 2.5.57) ]] ||
11298                 [[ $server_version -gt $(version_code 2.5.1) &&
11299                    $server_version -lt $(version_code 2.5.50) ]] ||
11300                 { skip "Need MDS version at least 2.5.58 or 2.5.2+"; return; }
11301         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11302
11303         # Registration step
11304         CL_USER=$(do_facet $SINGLEMDS $LCTL --device $MDT0 \
11305                 changelog_register -n)
11306         trap cleanup_changelog EXIT
11307
11308         rm -rf $DIR/$tdir
11309         mkdir -p $DIR/$tdir
11310         $MCREATE $DIR/$tdir/foo_160c
11311         changelog_chmask "TRUNC"
11312         $TRUNCATE $DIR/$tdir/foo_160c 200
11313         changelog_chmask "TRUNC"
11314         $TRUNCATE $DIR/$tdir/foo_160c 199
11315         $LFS changelog $MDT0
11316         TRUNCS=$($LFS changelog $MDT0 | tail -5 | grep -c "TRUNC")
11317         [ $TRUNCS -eq 1 ] || err17935 "TRUNC changelog mask count $TRUNCS != 1"
11318         $LFS changelog_clear $MDT0 $CL_USER 0
11319
11320         # Deregistration step
11321         cleanup_changelog
11322 }
11323 run_test 160c "verify that changelog log catch the truncate event"
11324
11325 test_160d() {
11326         remote_mds_nodsh && skip "remote MDS with nodsh" && return
11327         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
11328
11329         local server_version=$(lustre_version_code mds1)
11330         local CL_MASK_PARAM="mdd.$MDT0.changelog_mask"
11331
11332         [[ $server_version -ge $(version_code 2.7.60) ]] ||
11333                 { skip "Need MDS version at least 2.7.60+"; return; }
11334         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11335
11336         # Registration step
11337         CL_USER=$(do_facet mds1 $LCTL --device $MDT0 \
11338                 changelog_register -n)
11339
11340         trap cleanup_changelog EXIT
11341         mkdir -p $DIR/$tdir/migrate_dir
11342         $LFS changelog_clear $MDT0 $CL_USER 0
11343
11344         $LFS migrate -m 1 $DIR/$tdir/migrate_dir || error "migrate fails"
11345         $LFS changelog $MDT0
11346         MIGRATES=$($LFS changelog $MDT0 | tail -5 | grep -c "MIGRT")
11347         $LFS changelog_clear $MDT0 $CL_USER 0
11348         [ $MIGRATES -eq 1 ] ||
11349                 error "MIGRATE changelog mask count $MIGRATES != 1"
11350
11351         # Deregistration step
11352         cleanup_changelog
11353 }
11354 run_test 160d "verify that changelog log catch the migrate event"
11355
11356 test_160e() {
11357         remote_mds_nodsh && skip "remote MDS with nodsh" && return
11358
11359         # Create a user
11360         CL_USER=$(do_facet $SINGLEMDS $LCTL --device $MDT0 \
11361                 changelog_register -n)
11362         echo "Registered as changelog user $CL_USER"
11363         trap cleanup_changelog EXIT
11364
11365         # Delete a future user (expect fail)
11366         do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister cl77
11367         local rc=$?
11368
11369         if [ $rc -eq 0 ]; then
11370                 error "Deleted non-existant user cl77"
11371         elif [ $rc -ne 2 ]; then
11372                 error "changelog_deregister failed with $rc, " \
11373                         "expected 2 (ENOENT)"
11374         fi
11375
11376         # Clear to a bad index (1 billion should be safe)
11377         $LFS changelog_clear $MDT0 $CL_USER 1000000000
11378         rc=$?
11379
11380         if [ $rc -eq 0 ]; then
11381                 error "Successfully cleared to invalid CL index"
11382         elif [ $rc -ne 22 ]; then
11383                 error "changelog_clear failed with $rc, expected 22 (EINVAL)"
11384         fi
11385 }
11386 run_test 160e "changelog negative testing"
11387
11388 test_161a() {
11389         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11390         test_mkdir -c1 $DIR/$tdir
11391         cp /etc/hosts $DIR/$tdir/$tfile
11392         test_mkdir -c1 $DIR/$tdir/foo1
11393         test_mkdir -c1 $DIR/$tdir/foo2
11394         ln $DIR/$tdir/$tfile $DIR/$tdir/foo1/sofia
11395         ln $DIR/$tdir/$tfile $DIR/$tdir/foo2/zachary
11396         ln $DIR/$tdir/$tfile $DIR/$tdir/foo1/luna
11397         ln $DIR/$tdir/$tfile $DIR/$tdir/foo2/thor
11398         local FID=$($LFS path2fid $DIR/$tdir/$tfile | tr -d '[]')
11399         if [ "$($LFS fid2path $DIR $FID | wc -l)" != "5" ]; then
11400                 $LFS fid2path $DIR $FID
11401                 err17935 "bad link ea"
11402         fi
11403     # middle
11404     rm $DIR/$tdir/foo2/zachary
11405     # last
11406     rm $DIR/$tdir/foo2/thor
11407     # first
11408     rm $DIR/$tdir/$tfile
11409     # rename
11410     mv $DIR/$tdir/foo1/sofia $DIR/$tdir/foo2/maggie
11411     if [ "$($LFS fid2path $FSNAME --link 1 $FID)" != "$tdir/foo2/maggie" ]
11412         then
11413         $LFS fid2path $DIR $FID
11414         err17935 "bad link rename"
11415     fi
11416     rm $DIR/$tdir/foo2/maggie
11417
11418         # overflow the EA
11419         local longname=filename_avg_len_is_thirty_two_
11420         createmany -l$DIR/$tdir/foo1/luna $DIR/$tdir/foo2/$longname 1000 ||
11421                 error "failed to hardlink many files"
11422         links=$($LFS fid2path $DIR $FID | wc -l)
11423         echo -n "${links}/1000 links in link EA"
11424         [[ $links -gt 60 ]] ||
11425                 err17935 "expected at least 60 links in link EA"
11426         unlinkmany $DIR/$tdir/foo2/$longname 1000 ||
11427                 error "failed to unlink many hardlinks"
11428 }
11429 run_test 161a "link ea sanity"
11430
11431 test_161b() {
11432         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11433         [ $MDSCOUNT -lt 2 ] && skip "skipping remote directory test" && return
11434         local MDTIDX=1
11435         local remote_dir=$DIR/$tdir/remote_dir
11436
11437         mkdir -p $DIR/$tdir
11438         $LFS mkdir -i $MDTIDX $remote_dir ||
11439                 error "create remote directory failed"
11440
11441         cp /etc/hosts $remote_dir/$tfile
11442         mkdir -p $remote_dir/foo1
11443         mkdir -p $remote_dir/foo2
11444         ln $remote_dir/$tfile $remote_dir/foo1/sofia
11445         ln $remote_dir/$tfile $remote_dir/foo2/zachary
11446         ln $remote_dir/$tfile $remote_dir/foo1/luna
11447         ln $remote_dir/$tfile $remote_dir/foo2/thor
11448
11449         local FID=$($LFS path2fid $remote_dir/$tfile | tr -d '[' |
11450                      tr -d ']')
11451         if [ "$($LFS fid2path $DIR $FID | wc -l)" != "5" ]; then
11452                 $LFS fid2path $DIR $FID
11453                 err17935 "bad link ea"
11454         fi
11455         # middle
11456         rm $remote_dir/foo2/zachary
11457         # last
11458         rm $remote_dir/foo2/thor
11459         # first
11460         rm $remote_dir/$tfile
11461         # rename
11462         mv $remote_dir/foo1/sofia $remote_dir/foo2/maggie
11463         local link_path=$($LFS fid2path $FSNAME --link 1 $FID)
11464         if [ "$DIR/$link_path" != "$remote_dir/foo2/maggie" ]; then
11465                 $LFS fid2path $DIR $FID
11466                 err17935 "bad link rename"
11467         fi
11468         rm $remote_dir/foo2/maggie
11469
11470         # overflow the EA
11471         local longname=filename_avg_len_is_thirty_two_
11472         createmany -l$remote_dir/foo1/luna $remote_dir/foo2/$longname 1000 ||
11473                 error "failed to hardlink many files"
11474         links=$($LFS fid2path $DIR $FID | wc -l)
11475         echo -n "${links}/1000 links in link EA"
11476         [[ ${links} -gt 60 ]] ||
11477                 err17935 "expected at least 60 links in link EA"
11478         unlinkmany $remote_dir/foo2/$longname 1000 ||
11479         error "failed to unlink many hardlinks"
11480 }
11481 run_test 161b "link ea sanity under remote directory"
11482
11483 test_161c() {
11484         remote_mds_nodsh && skip "remote MDS with nodsh" && return
11485         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11486         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.1.5) ]] &&
11487                 skip "Need MDS version at least 2.1.5" && return
11488
11489         # define CLF_RENAME_LAST 0x0001
11490         # rename overwrite a target having nlink = 1 (changelog flag 0x1)
11491         CL_USER=$(do_facet $SINGLEMDS $LCTL --device $MDT0 \
11492                 changelog_register -n)
11493
11494         trap cleanup_changelog EXIT
11495         rm -rf $DIR/$tdir
11496         mkdir -p $DIR/$tdir
11497         touch $DIR/$tdir/foo_161c
11498         touch $DIR/$tdir/bar_161c
11499         mv -f $DIR/$tdir/foo_161c $DIR/$tdir/bar_161c
11500         $LFS changelog $MDT0 | grep RENME
11501         local flags=$($LFS changelog $MDT0 | grep RENME | tail -1 | \
11502                 cut -f5 -d' ')
11503         $LFS changelog_clear $MDT0 $CL_USER 0
11504         if [ x$flags != "x0x1" ]; then
11505                 error "flag $flags is not 0x1"
11506         fi
11507         echo "rename overwrite a target having nlink = 1," \
11508                 "changelog record has flags of $flags"
11509
11510         # rename overwrite a target having nlink > 1 (changelog flag 0x0)
11511         touch $DIR/$tdir/foo_161c
11512         touch $DIR/$tdir/bar_161c
11513         ln $DIR/$tdir/bar_161c $DIR/$tdir/foobar_161c
11514         mv -f $DIR/$tdir/foo_161c $DIR/$tdir/bar_161c
11515         $LFS changelog $MDT0 | grep RENME
11516         flags=$($LFS changelog $MDT0 | grep RENME | tail -1 | cut -f5 -d' ')
11517         $LFS changelog_clear $MDT0 $CL_USER 0
11518         if [ x$flags != "x0x0" ]; then
11519                 error "flag $flags is not 0x0"
11520         fi
11521         echo "rename overwrite a target having nlink > 1," \
11522                 "changelog record has flags of $flags"
11523
11524         # rename doesn't overwrite a target (changelog flag 0x0)
11525         touch $DIR/$tdir/foo_161c
11526         mv -f $DIR/$tdir/foo_161c $DIR/$tdir/foo2_161c
11527         $LFS changelog $MDT0 | grep RENME
11528         flags=$($LFS changelog $MDT0 | grep RENME | tail -1 | cut -f5 -d' ')
11529         $LFS changelog_clear $MDT0 $CL_USER 0
11530         if [ x$flags != "x0x0" ]; then
11531                 error "flag $flags is not 0x0"
11532         fi
11533         echo "rename doesn't overwrite a target," \
11534                 "changelog record has flags of $flags"
11535
11536         # define CLF_UNLINK_LAST 0x0001
11537         # unlink a file having nlink = 1 (changelog flag 0x1)
11538         rm -f $DIR/$tdir/foo2_161c
11539         $LFS changelog $MDT0 | grep UNLNK
11540         flags=$($LFS changelog $MDT0 | grep UNLNK | tail -1 | cut -f5 -d' ')
11541         $LFS changelog_clear $MDT0 $CL_USER 0
11542         if [ x$flags != "x0x1" ]; then
11543                 error "flag $flags is not 0x1"
11544         fi
11545         echo "unlink a file having nlink = 1," \
11546                 "changelog record has flags of $flags"
11547
11548         # unlink a file having nlink > 1 (changelog flag 0x0)
11549         ln -f $DIR/$tdir/bar_161c $DIR/$tdir/foobar_161c
11550         rm -f $DIR/$tdir/foobar_161c
11551         $LFS changelog $MDT0 | grep UNLNK
11552         flags=$($LFS changelog $MDT0 | grep UNLNK | tail -1 | cut -f5 -d' ')
11553         $LFS changelog_clear $MDT0 $CL_USER 0
11554         if [ x$flags != "x0x0" ]; then
11555                 error "flag $flags is not 0x0"
11556         fi
11557         echo "unlink a file having nlink > 1," \
11558                 "changelog record has flags of $flags"
11559         cleanup_changelog
11560 }
11561 run_test 161c "check CL_RENME[UNLINK] changelog record flags"
11562
11563 test_161d() {
11564         local user
11565         local pid
11566         local fid
11567
11568         # cleanup previous run
11569         rm -rf $DIR/$tdir/$tfile
11570
11571         user=$(do_facet $SINGLEMDS $LCTL --device $MDT0 \
11572                 changelog_register -n)
11573         [[ $? -eq 0 ]] || error "changelog_register failed"
11574
11575         # work in a standalone dir to avoid locking on $DIR/$MOUNT to
11576         # interfer with $MOUNT/.lustre/fid/ access
11577         mkdir $DIR/$tdir
11578         [[ $? -eq 0 ]] || error "mkdir failed"
11579
11580         #define OBD_FAIL_LLITE_CREATE_NODE_PAUSE 0x140c | OBD_FAIL_ONCE
11581         $LCTL set_param fail_loc=0x8000140c
11582         # 5s pause
11583         $LCTL set_param fail_val=5
11584
11585         # create file
11586         echo foofoo > $DIR/$tdir/$tfile &
11587         pid=$!
11588
11589         # wait for create to be delayed
11590         sleep 2
11591
11592         ps -p $pid
11593         [[ $? -eq 0 ]] || error "create should be blocked"
11594
11595         local tempfile=$(mktemp)
11596         fid=$(changelog_extract_field $MDT0 "CREAT" "$tfile" "t=")
11597         cat $MOUNT/.lustre/fid/$fid 2>/dev/null >$tempfile || error "cat failed"
11598         # some delay may occur during ChangeLog publishing and file read just
11599         # above, that could allow file write to happen finally
11600         [[ -s $tempfile ]] && echo "file should be empty"
11601
11602         $LCTL set_param fail_loc=0
11603
11604         wait $pid
11605         [[ $? -eq 0 ]] || error "create failed"
11606
11607         $LFS changelog_clear $MDT0 $user 0
11608         do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister $user
11609 }
11610 run_test 161d "create with concurrent .lustre/fid access"
11611
11612 check_path() {
11613     local expected=$1
11614     shift
11615     local fid=$2
11616
11617     local path=$(${LFS} fid2path $*)
11618     # Remove the '//' indicating a remote directory
11619     path=$(echo $path | sed 's#//#/#g')
11620     RC=$?
11621
11622     if [ $RC -ne 0 ]; then
11623         err17935 "path looked up of $expected failed. Error $RC"
11624         return $RC
11625     elif [ "${path}" != "${expected}" ]; then
11626         err17935 "path looked up \"${path}\" instead of \"${expected}\""
11627         return 2
11628     fi
11629     echo "fid $fid resolves to path $path (expected $expected)"
11630 }
11631
11632 test_162a() { # was test_162
11633         # Make changes to filesystem
11634         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11635         test_mkdir -p -c1 $DIR/$tdir/d2
11636         touch $DIR/$tdir/d2/$tfile
11637         touch $DIR/$tdir/d2/x1
11638         touch $DIR/$tdir/d2/x2
11639         test_mkdir -p -c1 $DIR/$tdir/d2/a/b/c
11640         test_mkdir -p -c1 $DIR/$tdir/d2/p/q/r
11641         # regular file
11642         FID=$($LFS path2fid $DIR/$tdir/d2/$tfile | tr -d '[]')
11643         check_path "$tdir/d2/$tfile" $FSNAME $FID --link 0 ||
11644                 error "check path $tdir/d2/$tfile failed"
11645
11646         # softlink
11647         ln -s $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/p/q/r/slink
11648         FID=$($LFS path2fid $DIR/$tdir/d2/p/q/r/slink | tr -d '[]')
11649         check_path "$tdir/d2/p/q/r/slink" $FSNAME $FID --link 0 ||
11650                 error "check path $tdir/d2/p/q/r/slink failed"
11651
11652         # softlink to wrong file
11653         ln -s /this/is/garbage $DIR/$tdir/d2/p/q/r/slink.wrong
11654         FID=$($LFS path2fid $DIR/$tdir/d2/p/q/r/slink.wrong | tr -d '[]')
11655         check_path "$tdir/d2/p/q/r/slink.wrong" $FSNAME $FID --link 0 ||
11656                 error "check path $tdir/d2/p/q/r/slink.wrong failed"
11657
11658         # hardlink
11659         ln $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/p/q/r/hlink
11660         mv $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/a/b/c/new_file
11661         FID=$($LFS path2fid $DIR/$tdir/d2/a/b/c/new_file | tr -d '[]')
11662         # fid2path dir/fsname should both work
11663         check_path "$tdir/d2/a/b/c/new_file" $FSNAME $FID --link 1 ||
11664                 error "check path $tdir/d2/a/b/c/new_file failed"
11665         check_path "$DIR/$tdir/d2/p/q/r/hlink" $DIR $FID --link 0 ||
11666                 error "check path $DIR/$tdir/d2/p/q/r/hlink failed"
11667
11668         # hardlink count: check that there are 2 links
11669         # Doesnt work with CMD yet: 17935
11670         ${LFS} fid2path $DIR $FID | wc -l | grep -q 2 || \
11671                 err17935 "expected 2 links"
11672
11673         # hardlink indexing: remove the first link
11674         rm $DIR/$tdir/d2/p/q/r/hlink
11675         check_path "$tdir/d2/a/b/c/new_file" $FSNAME $FID --link 0 ||
11676                 error "check path $DIR/$tdir/d2/a/b/c/new_file failed"
11677
11678         return 0
11679 }
11680 run_test 162a "path lookup sanity"
11681
11682 test_162b() {
11683         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11684         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
11685
11686         mkdir $DIR/$tdir
11687         $LFS setdirstripe -i0 -c$MDSCOUNT -t all_char $DIR/$tdir/striped_dir ||
11688                                 error "create striped dir failed"
11689
11690         local FID=$($LFS getdirstripe $DIR/$tdir/striped_dir |
11691                                         tail -n 1 | awk '{print $2}')
11692         stat $MOUNT/.lustre/fid/$FID && error "sub_stripe can be accessed"
11693
11694         touch $DIR/$tdir/striped_dir/f{0..4} || error "touch f0..4 failed"
11695         mkdir $DIR/$tdir/striped_dir/d{0..4} || error "mkdir d0..4 failed"
11696
11697         # regular file
11698         for ((i=0;i<5;i++)); do
11699                 FID=$($LFS path2fid $DIR/$tdir/striped_dir/f$i | tr -d '[]') ||
11700                         error "get fid for f$i failed"
11701                 check_path "$tdir/striped_dir/f$i" $FSNAME $FID --link 0 ||
11702                         error "check path $tdir/striped_dir/f$i failed"
11703
11704                 FID=$($LFS path2fid $DIR/$tdir/striped_dir/d$i | tr -d '[]') ||
11705                         error "get fid for d$i failed"
11706                 check_path "$tdir/striped_dir/d$i" $FSNAME $FID --link 0 ||
11707                         error "check path $tdir/striped_dir/d$i failed"
11708         done
11709
11710         return 0
11711 }
11712 run_test 162b "striped directory path lookup sanity"
11713
11714 # LU-4239: Verify fid2path works with paths 100 or more directories deep
11715 test_162c() {
11716         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.51) ]] &&
11717                 skip "Need MDS version at least 2.7.51" && return
11718         test_mkdir $DIR/$tdir.local
11719         test_mkdir $DIR/$tdir.remote
11720         local lpath=$tdir.local
11721         local rpath=$tdir.remote
11722
11723         for ((i = 0; i <= 101; i++)); do
11724                 lpath="$lpath/$i"
11725                 mkdir $DIR/$lpath
11726                 FID=$($LFS path2fid $DIR/$lpath | tr -d '[]') ||
11727                         error "get fid for local directory $DIR/$lpath failed"
11728                 check_path "$DIR/$lpath" $MOUNT $FID --link 0 ||
11729                         error "check path for local directory $DIR/$lpath failed"
11730
11731                 rpath="$rpath/$i"
11732                 test_mkdir $DIR/$rpath
11733                 FID=$($LFS path2fid $DIR/$rpath | tr -d '[]') ||
11734                         error "get fid for remote directory $DIR/$rpath failed"
11735                 check_path "$DIR/$rpath" $MOUNT $FID --link 0 ||
11736                         error "check path for remote directory $DIR/$rpath failed"
11737         done
11738
11739         return 0
11740 }
11741 run_test 162c "fid2path works with paths 100 or more directories deep"
11742
11743 test_169() {
11744         # do directio so as not to populate the page cache
11745         log "creating a 10 Mb file"
11746         $MULTIOP $DIR/$tfile oO_CREAT:O_DIRECT:O_RDWR:w$((10*1048576))c || error "multiop failed while creating a file"
11747         log "starting reads"
11748         dd if=$DIR/$tfile of=/dev/null bs=4096 &
11749         log "truncating the file"
11750         $MULTIOP $DIR/$tfile oO_TRUNC:c || error "multiop failed while truncating the file"
11751         log "killing dd"
11752         kill %+ || true # reads might have finished
11753         echo "wait until dd is finished"
11754         wait
11755         log "removing the temporary file"
11756         rm -rf $DIR/$tfile || error "tmp file removal failed"
11757 }
11758 run_test 169 "parallel read and truncate should not deadlock"
11759
11760 test_170() {
11761         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11762         $LCTL clear     # bug 18514
11763         $LCTL debug_daemon start $TMP/${tfile}_log_good
11764         touch $DIR/$tfile
11765         $LCTL debug_daemon stop
11766         sed -e "s/^...../a/g" $TMP/${tfile}_log_good > $TMP/${tfile}_log_bad ||
11767                error "sed failed to read log_good"
11768
11769         $LCTL debug_daemon start $TMP/${tfile}_log_good
11770         rm -rf $DIR/$tfile
11771         $LCTL debug_daemon stop
11772
11773         $LCTL df $TMP/${tfile}_log_bad > $TMP/${tfile}_log_bad.out 2>&1 ||
11774                error "lctl df log_bad failed"
11775
11776         local bad_line=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $9}')
11777         local good_line1=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $5}')
11778
11779         $LCTL df $TMP/${tfile}_log_good > $TMP/${tfile}_log_good.out 2>&1
11780         local good_line2=$(tail -n 1 $TMP/${tfile}_log_good.out | awk '{print $5}')
11781
11782         [ "$bad_line" ] && [ "$good_line1" ] && [ "$good_line2" ] ||
11783                 error "bad_line good_line1 good_line2 are empty"
11784
11785         cat $TMP/${tfile}_log_good >> $TMP/${tfile}_logs_corrupt
11786         cat $TMP/${tfile}_log_bad >> $TMP/${tfile}_logs_corrupt
11787         cat $TMP/${tfile}_log_good >> $TMP/${tfile}_logs_corrupt
11788
11789         $LCTL df $TMP/${tfile}_logs_corrupt > $TMP/${tfile}_log_bad.out 2>&1
11790         local bad_line_new=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $9}')
11791         local good_line_new=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $5}')
11792
11793         [ "$bad_line_new" ] && [ "$good_line_new" ] ||
11794                 error "bad_line_new good_line_new are empty"
11795
11796         local expected_good=$((good_line1 + good_line2*2))
11797
11798         rm -f $TMP/${tfile}*
11799         # LU-231, short malformed line may not be counted into bad lines
11800         if [ $bad_line -ne $bad_line_new ] &&
11801                    [ $bad_line -ne $((bad_line_new - 1)) ]; then
11802                 error "expected $bad_line bad lines, but got $bad_line_new"
11803                 return 1
11804         fi
11805
11806         if [ $expected_good -ne $good_line_new ]; then
11807                 error "expected $expected_good good lines, but got $good_line_new"
11808                 return 2
11809         fi
11810         true
11811 }
11812 run_test 170 "test lctl df to handle corrupted log ====================="
11813
11814 test_171() { # bug20592
11815         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11816 #define OBD_FAIL_PTLRPC_DUMP_LOG         0x50e
11817         $LCTL set_param fail_loc=0x50e
11818         $LCTL set_param fail_val=3000
11819         multiop_bg_pause $DIR/$tfile O_s || true
11820         local MULTIPID=$!
11821         kill -USR1 $MULTIPID
11822         # cause log dump
11823         sleep 3
11824         wait $MULTIPID
11825         if dmesg | grep "recursive fault"; then
11826                 error "caught a recursive fault"
11827         fi
11828         $LCTL set_param fail_loc=0
11829         true
11830 }
11831 run_test 171 "test libcfs_debug_dumplog_thread stuck in do_exit() ======"
11832
11833 # it would be good to share it with obdfilter-survey/iokit-libecho code
11834 setup_obdecho_osc () {
11835         local rc=0
11836         local ost_nid=$1
11837         local obdfilter_name=$2
11838         echo "Creating new osc for $obdfilter_name on $ost_nid"
11839         # make sure we can find loopback nid
11840         $LCTL add_uuid $ost_nid $ost_nid >/dev/null 2>&1
11841
11842         [ $rc -eq 0 ] && { $LCTL attach osc ${obdfilter_name}_osc     \
11843                            ${obdfilter_name}_osc_UUID || rc=2; }
11844         [ $rc -eq 0 ] && { $LCTL --device ${obdfilter_name}_osc setup \
11845                            ${obdfilter_name}_UUID  $ost_nid || rc=3; }
11846         return $rc
11847 }
11848
11849 cleanup_obdecho_osc () {
11850         local obdfilter_name=$1
11851         $LCTL --device ${obdfilter_name}_osc cleanup >/dev/null
11852         $LCTL --device ${obdfilter_name}_osc detach  >/dev/null
11853         return 0
11854 }
11855
11856 obdecho_test() {
11857         local OBD=$1
11858         local node=$2
11859         local pages=${3:-64}
11860         local rc=0
11861         local id
11862
11863         local count=10
11864         local obd_size=$(get_obd_size $node $OBD)
11865         local page_size=$(get_page_size $node)
11866         if [[ -n "$obd_size" ]]; then
11867                 local new_count=$((obd_size / (pages * page_size / 1024)))
11868                 [[ $new_count -ge $count ]] || count=$new_count
11869         fi
11870
11871         do_facet $node "$LCTL attach echo_client ec ec_uuid" || rc=1
11872         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec setup $OBD" ||
11873                            rc=2; }
11874         if [ $rc -eq 0 ]; then
11875             id=$(do_facet $node "$LCTL --device ec create 1"  | awk '/object id/ {print $6}')
11876             [ ${PIPESTATUS[0]} -eq 0 -a -n "$id" ] || rc=3
11877         fi
11878         echo "New object id is $id"
11879         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec getattr $id" ||
11880                            rc=4; }
11881         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec "                 \
11882                            "test_brw $count w v $pages $id" || rc=4; }
11883         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec destroy $id 1" ||
11884                            rc=4; }
11885         [ $rc -eq 0 -o $rc -gt 2 ] && { do_facet $node "$LCTL --device ec "    \
11886                                         "cleanup" || rc=5; }
11887         [ $rc -eq 0 -o $rc -gt 1 ] && { do_facet $node "$LCTL --device ec "    \
11888                                         "detach" || rc=6; }
11889         [ $rc -ne 0 ] && echo "obecho_create_test failed: $rc"
11890         return $rc
11891 }
11892
11893 test_180a() {
11894         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11895         remote_ost_nodsh && skip "remote OST with nodsh" && return
11896         local rc=0
11897         local rmmod_local=0
11898
11899         if ! module_loaded obdecho; then
11900             load_module obdecho/obdecho
11901             rmmod_local=1
11902         fi
11903
11904         local osc=$($LCTL dl | grep -v mdt | awk '$3 == "osc" {print $4; exit}')
11905         local host=$(lctl get_param -n osc.$osc.import |
11906                              awk '/current_connection:/ {print $2}' )
11907         local target=$(lctl get_param -n osc.$osc.import |
11908                              awk '/target:/ {print $2}' )
11909         target=${target%_UUID}
11910
11911         [[ -n $target ]]  && { setup_obdecho_osc $host $target || rc=1; } || rc=1
11912         [ $rc -eq 0 ] && { obdecho_test ${target}_osc client || rc=2; }
11913         [[ -n $target ]] && cleanup_obdecho_osc $target
11914         [ $rmmod_local -eq 1 ] && rmmod obdecho
11915         return $rc
11916 }
11917 run_test 180a "test obdecho on osc"
11918
11919 test_180b() {
11920         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11921         remote_ost_nodsh && skip "remote OST with nodsh" && return
11922         local rc=0
11923         local rmmod_remote=0
11924
11925         do_rpc_nodes $(facet_active_host ost1) load_module obdecho/obdecho &&
11926                 rmmod_remote=true || error "failed to load module obdecho"
11927         target=$(do_facet ost1 $LCTL dl | awk '/obdfilter/ {print $4;exit}')
11928         [[ -n $target ]] && { obdecho_test $target ost1 || rc=1; }
11929         $rmmod_remote && do_facet ost1 "rmmod obdecho"
11930         return $rc
11931 }
11932 run_test 180b "test obdecho directly on obdfilter"
11933
11934 test_180c() { # LU-2598
11935         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11936         remote_ost_nodsh && skip "remote OST with nodsh" && return
11937         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.0) ]] &&
11938                 skip "Need MDS version at least 2.4.0" && return
11939
11940         local rc=0
11941         local rmmod_remote=false
11942         local pages=16384 # 64MB bulk I/O RPC size
11943         local target
11944
11945         do_rpc_nodes $(facet_active_host ost1) load_module obdecho/obdecho &&
11946                 rmmod_remote=true || error "failed to load module obdecho"
11947
11948         target=$(do_facet ost1 $LCTL dl | awk '/obdfilter/ { print $4 }' |
11949                 head -n1)
11950         if [ -n "$target" ]; then
11951                 obdecho_test "$target" ost1 "$pages" || rc=${PIPESTATUS[0]}
11952         else
11953                 echo "there is no obdfilter target on ost1"
11954                 rc=2
11955         fi
11956         $rmmod_remote && do_facet ost1 "rmmod obdecho" || true
11957         return $rc
11958 }
11959 run_test 180c "test huge bulk I/O size on obdfilter, don't LASSERT"
11960
11961 test_181() { # bug 22177
11962         test_mkdir $DIR/$tdir
11963         # create enough files to index the directory
11964         createmany -o $DIR/$tdir/foobar 4000
11965         # print attributes for debug purpose
11966         lsattr -d .
11967         # open dir
11968         multiop_bg_pause $DIR/$tdir D_Sc || return 1
11969         MULTIPID=$!
11970         # remove the files & current working dir
11971         unlinkmany $DIR/$tdir/foobar 4000
11972         rmdir $DIR/$tdir
11973         kill -USR1 $MULTIPID
11974         wait $MULTIPID
11975         stat $DIR/$tdir && error "open-unlinked dir was not removed!"
11976         return 0
11977 }
11978 run_test 181 "Test open-unlinked dir ========================"
11979
11980 test_182() {
11981         local fcount=1000
11982         local tcount=10
11983
11984         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
11985
11986         $LCTL set_param mdc.*.rpc_stats=clear
11987
11988         for (( i = 0; i < $tcount; i++ )) ; do
11989                 mkdir $DIR/$tdir/$i
11990         done
11991
11992         for (( i = 0; i < $tcount; i++ )) ; do
11993                 createmany -o $DIR/$tdir/$i/f- $fcount &
11994         done
11995         wait
11996
11997         for (( i = 0; i < $tcount; i++ )) ; do
11998                 unlinkmany $DIR/$tdir/$i/f- $fcount &
11999         done
12000         wait
12001
12002         $LCTL get_param mdc.*.rpc_stats
12003
12004         rm -rf $DIR/$tdir
12005 }
12006 run_test 182 "Test parallel modify metadata operations ================"
12007
12008 test_183() { # LU-2275
12009         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12010         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.56) ]] &&
12011                 skip "Need MDS version at least 2.3.56" && return
12012
12013         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12014         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
12015         echo aaa > $DIR/$tdir/$tfile
12016
12017 #define OBD_FAIL_MDS_NEGATIVE_POSITIVE  0x148
12018         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x148
12019
12020         ls -l $DIR/$tdir && error "ls succeeded, should have failed"
12021         cat $DIR/$tdir/$tfile && error "cat succeeded, should have failed"
12022
12023         do_facet $SINGLEMDS $LCTL set_param fail_loc=0
12024
12025         # Flush negative dentry cache
12026         touch $DIR/$tdir/$tfile
12027
12028         # We are not checking for any leaked references here, they'll
12029         # become evident next time we do cleanup with module unload.
12030         rm -rf $DIR/$tdir
12031 }
12032 run_test 183 "No crash or request leak in case of strange dispositions ========"
12033
12034 # test suite 184 is for LU-2016, LU-2017
12035 test_184a() {
12036         check_swap_layouts_support && return 0
12037
12038         dir0=$DIR/$tdir/$testnum
12039         test_mkdir -p -c1 $dir0
12040         ref1=/etc/passwd
12041         ref2=/etc/group
12042         file1=$dir0/f1
12043         file2=$dir0/f2
12044         $SETSTRIPE -c1 $file1
12045         cp $ref1 $file1
12046         $SETSTRIPE -c2 $file2
12047         cp $ref2 $file2
12048         gen1=$($GETSTRIPE -g $file1)
12049         gen2=$($GETSTRIPE -g $file2)
12050
12051         $LFS swap_layouts $file1 $file2 || error "swap of file layout failed"
12052         gen=$($GETSTRIPE -g $file1)
12053         [[ $gen1 != $gen ]] ||
12054                 "Layout generation on $file1 does not change"
12055         gen=$($GETSTRIPE -g $file2)
12056         [[ $gen2 != $gen ]] ||
12057                 "Layout generation on $file2 does not change"
12058
12059         cmp $ref1 $file2 || error "content compare failed ($ref1 != $file2)"
12060         cmp $ref2 $file1 || error "content compare failed ($ref2 != $file1)"
12061 }
12062 run_test 184a "Basic layout swap"
12063
12064 test_184b() {
12065         check_swap_layouts_support && return 0
12066
12067         dir0=$DIR/$tdir/$testnum
12068         mkdir -p $dir0 || error "creating dir $dir0"
12069         file1=$dir0/f1
12070         file2=$dir0/f2
12071         file3=$dir0/f3
12072         dir1=$dir0/d1
12073         dir2=$dir0/d2
12074         mkdir $dir1 $dir2
12075         $SETSTRIPE -c1 $file1
12076         $SETSTRIPE -c2 $file2
12077         $SETSTRIPE -c1 $file3
12078         chown $RUNAS_ID $file3
12079         gen1=$($GETSTRIPE -g $file1)
12080         gen2=$($GETSTRIPE -g $file2)
12081
12082         $LFS swap_layouts $dir1 $dir2 &&
12083                 error "swap of directories layouts should fail"
12084         $LFS swap_layouts $dir1 $file1 &&
12085                 error "swap of directory and file layouts should fail"
12086         $RUNAS $LFS swap_layouts $file1 $file2 &&
12087                 error "swap of file we cannot write should fail"
12088         $LFS swap_layouts $file1 $file3 &&
12089                 error "swap of file with different owner should fail"
12090         /bin/true # to clear error code
12091 }
12092 run_test 184b "Forbidden layout swap (will generate errors)"
12093
12094 test_184c() {
12095         local cmpn_arg=$(cmp -n 2>&1 | grep "invalid option")
12096         [ -n "$cmpn_arg" ] && skip_env "cmp does not support -n" && return
12097         check_swap_layouts_support && return 0
12098
12099         local dir0=$DIR/$tdir/$testnum
12100         mkdir -p $dir0 || error "creating dir $dir0"
12101
12102         local ref1=$dir0/ref1
12103         local ref2=$dir0/ref2
12104         local file1=$dir0/file1
12105         local file2=$dir0/file2
12106         # create a file large enough for the concurrent test
12107         dd if=/dev/urandom of=$ref1 bs=1M count=$((RANDOM % 50 + 20))
12108         dd if=/dev/urandom of=$ref2 bs=1M count=$((RANDOM % 50 + 20))
12109         echo "ref file size: ref1($(stat -c %s $ref1))," \
12110              "ref2($(stat -c %s $ref2))"
12111
12112         cp $ref2 $file2
12113         dd if=$ref1 of=$file1 bs=16k &
12114         local DD_PID=$!
12115
12116         # Make sure dd starts to copy file
12117         while [ ! -f $file1 ]; do sleep 0.1; done
12118
12119         $LFS swap_layouts $file1 $file2
12120         local rc=$?
12121         wait $DD_PID
12122         [[ $? == 0 ]] || error "concurrent write on $file1 failed"
12123         [[ $rc == 0 ]] || error "swap of $file1 and $file2 failed"
12124
12125         # how many bytes copied before swapping layout
12126         local copied=$(stat -c %s $file2)
12127         local remaining=$(stat -c %s $ref1)
12128         remaining=$((remaining - copied))
12129         echo "Copied $copied bytes before swapping layout..."
12130
12131         cmp -n $copied $file1 $ref2 | grep differ &&
12132                 error "Content mismatch [0, $copied) of ref2 and file1"
12133         cmp -n $copied $file2 $ref1 ||
12134                 error "Content mismatch [0, $copied) of ref1 and file2"
12135         cmp -i $copied:$copied -n $remaining $file1 $ref1 ||
12136                 error "Content mismatch [$copied, EOF) of ref1 and file1"
12137
12138         # clean up
12139         rm -f $ref1 $ref2 $file1 $file2
12140 }
12141 run_test 184c "Concurrent write and layout swap"
12142
12143 test_184d() {
12144         check_swap_layouts_support && return 0
12145         [ -z "$(which getfattr 2>/dev/null)" ] &&
12146                 skip "no getfattr command" && return 0
12147
12148         local file1=$DIR/$tdir/$tfile-1
12149         local file2=$DIR/$tdir/$tfile-2
12150         local file3=$DIR/$tdir/$tfile-3
12151         local lovea1
12152         local lovea2
12153
12154         mkdir -p $DIR/$tdir
12155         touch $file1 || error "create $file1 failed"
12156         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file2 ||
12157                 error "create $file2 failed"
12158         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file3 ||
12159                 error "create $file3 failed"
12160         lovea1=$(get_layout_param $file1)
12161
12162         $LFS swap_layouts $file2 $file3 ||
12163                 error "swap $file2 $file3 layouts failed"
12164         $LFS swap_layouts $file1 $file2 ||
12165                 error "swap $file1 $file2 layouts failed"
12166
12167         lovea2=$(get_layout_param $file2)
12168         echo "$lovea1"
12169         echo "$lovea2"
12170         [ "$lovea1" == "$lovea2" ] || error "lovea $lovea1 != $lovea2"
12171
12172         lovea1=$(getfattr -n trusted.lov $file1 | grep ^trusted)
12173         [[ -z "$lovea1" ]] || error "$file1 shouldn't have lovea"
12174 }
12175 run_test 184d "allow stripeless layouts swap"
12176
12177 test_184e() {
12178         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.94) ]] ||
12179                 { skip "Need MDS version at least 2.6.94"; return 0; }
12180         check_swap_layouts_support && return 0
12181         [ -z "$(which getfattr 2>/dev/null)" ] &&
12182                 skip "no getfattr command" && return 0
12183
12184         local file1=$DIR/$tdir/$tfile-1
12185         local file2=$DIR/$tdir/$tfile-2
12186         local file3=$DIR/$tdir/$tfile-3
12187         local lovea
12188
12189         mkdir -p $DIR/$tdir
12190         touch $file1 || error "create $file1 failed"
12191         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file2 ||
12192                 error "create $file2 failed"
12193         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file3 ||
12194                 error "create $file3 failed"
12195
12196         $LFS swap_layouts $file1 $file2 ||
12197                 error "swap $file1 $file2 layouts failed"
12198
12199         lovea=$(getfattr -n trusted.lov $file1 | grep ^trusted)
12200         [[ -z "$lovea" ]] || error "$file1 shouldn't have lovea"
12201
12202         echo 123 > $file1 || error "Should be able to write into $file1"
12203
12204         $LFS swap_layouts $file1 $file3 ||
12205                 error "swap $file1 $file3 layouts failed"
12206
12207         echo 123 > $file1 || error "Should be able to write into $file1"
12208
12209         rm -rf $file1 $file2 $file3
12210 }
12211 run_test 184e "Recreate layout after stripeless layout swaps"
12212
12213 test_185() { # LU-2441
12214         # LU-3553 - no volatile file support in old servers
12215         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.60) ]] ||
12216                 { skip "Need MDS version at least 2.3.60"; return 0; }
12217
12218         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
12219         touch $DIR/$tdir/spoo
12220         local mtime1=$(stat -c "%Y" $DIR/$tdir)
12221         local fid=$($MULTIOP $DIR/$tdir VFw4096c) ||
12222                 error "cannot create/write a volatile file"
12223         [ "$FILESET" == "" ] &&
12224         $CHECKSTAT -t file $MOUNT/.lustre/fid/$fid 2>/dev/null &&
12225                 error "FID is still valid after close"
12226
12227         multiop_bg_pause $DIR/$tdir vVw4096_c
12228         local multi_pid=$!
12229
12230         local OLD_IFS=$IFS
12231         IFS=":"
12232         local fidv=($fid)
12233         IFS=$OLD_IFS
12234         # assume that the next FID for this client is sequential, since stdout
12235         # is unfortunately eaten by multiop_bg_pause
12236         local n=$((${fidv[1]} + 1))
12237         local next_fid="${fidv[0]}:$(printf "0x%x" $n):${fidv[2]}"
12238         if [ "$FILESET" == "" ]; then
12239                 $CHECKSTAT -t file $MOUNT/.lustre/fid/$next_fid ||
12240                         error "FID is missing before close"
12241         fi
12242         kill -USR1 $multi_pid
12243         # 1 second delay, so if mtime change we will see it
12244         sleep 1
12245         local mtime2=$(stat -c "%Y" $DIR/$tdir)
12246         [[ $mtime1 == $mtime2 ]] || error "mtime has changed"
12247 }
12248 run_test 185 "Volatile file support"
12249
12250 test_187a() {
12251         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12252         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.0) ] &&
12253                 skip "Need MDS version at least 2.3.0" && return
12254
12255         local dir0=$DIR/$tdir/$testnum
12256         mkdir -p $dir0 || error "creating dir $dir0"
12257
12258         local file=$dir0/file1
12259         dd if=/dev/urandom of=$file count=10 bs=1M conv=fsync
12260         local dv1=$($LFS data_version $file)
12261         dd if=/dev/urandom of=$file seek=10 count=1 bs=1M conv=fsync
12262         local dv2=$($LFS data_version $file)
12263         [[ $dv1 != $dv2 ]] ||
12264                 error "data version did not change on write $dv1 == $dv2"
12265
12266         # clean up
12267         rm -f $file1
12268 }
12269 run_test 187a "Test data version change"
12270
12271 test_187b() {
12272         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12273         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.0) ] &&
12274                 skip "Need MDS version at least 2.3.0" && return
12275
12276         local dir0=$DIR/$tdir/$testnum
12277         mkdir -p $dir0 || error "creating dir $dir0"
12278
12279         declare -a DV=$($MULTIOP $dir0 Vw1000xYw1000xY | cut -f3 -d" ")
12280         [[ ${DV[0]} != ${DV[1]} ]] ||
12281                 error "data version did not change on write"\
12282                       " ${DV[0]} == ${DV[1]}"
12283
12284         # clean up
12285         rm -f $file1
12286 }
12287 run_test 187b "Test data version change on volatile file"
12288
12289 test_200() {
12290         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12291         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
12292         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
12293
12294         local POOL=${POOL:-cea1}
12295         local POOL_ROOT=${POOL_ROOT:-$DIR/d200.pools}
12296         local POOL_DIR_NAME=${POOL_DIR_NAME:-dir_tst}
12297         # Pool OST targets
12298         local first_ost=0
12299         local last_ost=$(($OSTCOUNT - 1))
12300         local ost_step=2
12301         local ost_list=$(seq $first_ost $ost_step $last_ost)
12302         local ost_range="$first_ost $last_ost $ost_step"
12303         local test_path=$POOL_ROOT/$POOL_DIR_NAME
12304         local file_dir=$POOL_ROOT/file_tst
12305         local subdir=$test_path/subdir
12306         local rc=0
12307
12308         if ! combined_mgs_mds ; then
12309                 mount_mgs_client
12310         fi
12311
12312         while : ; do
12313                 # former test_200a test_200b
12314                 pool_add $POOL                          || { rc=$? ; break; }
12315                 pool_add_targets  $POOL $ost_range      || { rc=$? ; break; }
12316                 # former test_200c test_200d
12317                 mkdir -p $test_path
12318                 pool_set_dir      $POOL $test_path      || { rc=$? ; break; }
12319                 pool_check_dir    $POOL $test_path      || { rc=$? ; break; }
12320                 mkdir -p $subdir
12321                 pool_check_dir    $POOL $subdir         || { rc=$? ; break; }
12322                 pool_dir_rel_path $POOL $POOL_DIR_NAME $POOL_ROOT \
12323                                                         || { rc=$? ; break; }
12324                 # former test_200e test_200f
12325                 local files=$((OSTCOUNT*3))
12326                 pool_alloc_files  $POOL $test_path $files "$ost_list" \
12327                                                         || { rc=$? ; break; }
12328                 pool_create_files $POOL $file_dir $files "$ost_list" \
12329                                                         || { rc=$? ; break; }
12330                 # former test_200g test_200h
12331                 pool_lfs_df $POOL                       || { rc=$? ; break; }
12332                 pool_file_rel_path $POOL $test_path     || { rc=$? ; break; }
12333
12334                 # former test_201a test_201b test_201c
12335                 pool_remove_first_target $POOL          || { rc=$? ; break; }
12336
12337                 local f=$test_path/$tfile
12338                 pool_remove_all_targets $POOL $f        || { rc=$? ; break; }
12339                 pool_remove $POOL $f                    || { rc=$? ; break; }
12340                 break
12341         done
12342
12343         destroy_test_pools
12344
12345         if ! combined_mgs_mds ; then
12346                 umount_mgs_client
12347         fi
12348         return $rc
12349 }
12350 run_test 200 "OST pools"
12351
12352 # usage: default_attr <count | size | offset>
12353 default_attr() {
12354         $LCTL get_param -n lov.$FSNAME-clilov-\*.stripe${1}
12355 }
12356
12357 # usage: check_default_stripe_attr
12358 check_default_stripe_attr() {
12359         ACTUAL=$($GETSTRIPE $* $DIR/$tdir)
12360         case $1 in
12361         --stripe-count|-c)
12362                 [ -n "$2" ] && EXPECTED=0 || EXPECTED=$(default_attr count);;
12363         --stripe-size|-S)
12364                 [ -n "$2" ] && EXPECTED=0 || EXPECTED=$(default_attr size);;
12365         --stripe-index|-i)
12366                 EXPECTED=-1;;
12367         *)
12368                 error "unknown getstripe attr '$1'"
12369         esac
12370
12371         [ $ACTUAL == $EXPECTED ] ||
12372                 error "$DIR/$tdir has $1 '$ACTUAL', not '$EXPECTED'"
12373 }
12374
12375 test_204a() {
12376         test_mkdir $DIR/$tdir
12377         $SETSTRIPE --stripe-count 0 --stripe-size 0 --stripe-index -1 $DIR/$tdir
12378
12379         check_default_stripe_attr --stripe-count
12380         check_default_stripe_attr --stripe-size
12381         check_default_stripe_attr --stripe-index
12382 }
12383 run_test 204a "Print default stripe attributes"
12384
12385 test_204b() {
12386         test_mkdir $DIR/$tdir
12387         $SETSTRIPE --stripe-count 1 $DIR/$tdir
12388
12389         check_default_stripe_attr --stripe-size
12390         check_default_stripe_attr --stripe-index
12391 }
12392 run_test 204b "Print default stripe size and offset"
12393
12394 test_204c() {
12395         test_mkdir $DIR/$tdir
12396         $SETSTRIPE --stripe-size 65536 $DIR/$tdir
12397
12398         check_default_stripe_attr --stripe-count
12399         check_default_stripe_attr --stripe-index
12400 }
12401 run_test 204c "Print default stripe count and offset"
12402
12403 test_204d() {
12404         test_mkdir $DIR/$tdir
12405         $SETSTRIPE --stripe-index 0 $DIR/$tdir
12406
12407         check_default_stripe_attr --stripe-count
12408         check_default_stripe_attr --stripe-size
12409 }
12410 run_test 204d "Print default stripe count and size"
12411
12412 test_204e() {
12413         test_mkdir $DIR/$tdir
12414         $SETSTRIPE -d $DIR/$tdir
12415
12416         check_default_stripe_attr --stripe-count --raw
12417         check_default_stripe_attr --stripe-size --raw
12418         check_default_stripe_attr --stripe-index --raw
12419 }
12420 run_test 204e "Print raw stripe attributes"
12421
12422 test_204f() {
12423         test_mkdir $DIR/$tdir
12424         $SETSTRIPE --stripe-count 1 $DIR/$tdir
12425
12426         check_default_stripe_attr --stripe-size --raw
12427         check_default_stripe_attr --stripe-index --raw
12428 }
12429 run_test 204f "Print raw stripe size and offset"
12430
12431 test_204g() {
12432         test_mkdir $DIR/$tdir
12433         $SETSTRIPE --stripe-size 65536 $DIR/$tdir
12434
12435         check_default_stripe_attr --stripe-count --raw
12436         check_default_stripe_attr --stripe-index --raw
12437 }
12438 run_test 204g "Print raw stripe count and offset"
12439
12440 test_204h() {
12441         test_mkdir $DIR/$tdir
12442         $SETSTRIPE --stripe-index 0 $DIR/$tdir
12443
12444         check_default_stripe_attr --stripe-count --raw
12445         check_default_stripe_attr --stripe-size --raw
12446 }
12447 run_test 204h "Print raw stripe count and size"
12448
12449 # Figure out which job scheduler is being used, if any,
12450 # or use a fake one
12451 if [ -n "$SLURM_JOB_ID" ]; then # SLURM
12452         JOBENV=SLURM_JOB_ID
12453 elif [ -n "$LSB_JOBID" ]; then # Load Sharing Facility
12454         JOBENV=LSB_JOBID
12455 elif [ -n "$PBS_JOBID" ]; then # PBS/Maui/Moab
12456         JOBENV=PBS_JOBID
12457 elif [ -n "$LOADL_STEPID" ]; then # LoadLeveller
12458         JOBENV=LOADL_STEP_ID
12459 elif [ -n "$JOB_ID" ]; then # Sun Grid Engine
12460         JOBENV=JOB_ID
12461 else
12462         $LCTL list_param jobid_name > /dev/null 2>&1
12463         if [ $? -eq 0 ]; then
12464                 JOBENV=nodelocal
12465         else
12466                 JOBENV=FAKE_JOBID
12467         fi
12468 fi
12469
12470 verify_jobstats() {
12471         local cmd=($1)
12472         shift
12473         local facets="$@"
12474
12475 # we don't really need to clear the stats for this test to work, since each
12476 # command has a unique jobid, but it makes debugging easier if needed.
12477 #       for facet in $facets; do
12478 #               local dev=$(convert_facet2label $facet)
12479 #               # clear old jobstats
12480 #               do_facet $facet lctl set_param *.$dev.job_stats="clear"
12481 #       done
12482
12483         # use a new JobID for each test, or we might see an old one
12484         [ "$JOBENV" = "FAKE_JOBID" ] &&
12485                 FAKE_JOBID=id.$testnum.$(basename ${cmd[0]}).$RANDOM
12486
12487         JOBVAL=${!JOBENV}
12488
12489         [ "$JOBENV" = "nodelocal" ] && {
12490                 FAKE_JOBID=id.$testnum.$(basename ${cmd[0]}).$RANDOM
12491                 $LCTL set_param jobid_name=$FAKE_JOBID
12492                 JOBVAL=$FAKE_JOBID
12493         }
12494
12495         log "Test: ${cmd[*]}"
12496         log "Using JobID environment variable $JOBENV=$JOBVAL"
12497
12498         if [ $JOBENV = "FAKE_JOBID" ]; then
12499                 FAKE_JOBID=$JOBVAL ${cmd[*]}
12500         else
12501                 ${cmd[*]}
12502         fi
12503
12504         # all files are created on OST0000
12505         for facet in $facets; do
12506                 local stats="*.$(convert_facet2label $facet).job_stats"
12507                 if [ $(do_facet $facet lctl get_param $stats |
12508                        grep -c $JOBVAL) -ne 1 ]; then
12509                         do_facet $facet lctl get_param $stats
12510                         error "No jobstats for $JOBVAL found on $facet::$stats"
12511                 fi
12512         done
12513 }
12514
12515 jobstats_set() {
12516         trap 0
12517         NEW_JOBENV=${1:-$OLD_JOBENV}
12518         do_facet mgs $LCTL conf_param $FSNAME.sys.jobid_var=$NEW_JOBENV
12519         wait_update $HOSTNAME "$LCTL get_param -n jobid_var" $NEW_JOBENV
12520 }
12521
12522 cleanup_205() {
12523         trap 0
12524         do_facet $SINGLEMDS \
12525                 $LCTL set_param mdt.*.job_cleanup_interval=$OLD_INTERVAL
12526         [ $OLD_JOBENV != $JOBENV ] && jobstats_set $OLD_JOBENV
12527         cleanup_changelog
12528 }
12529
12530 test_205() { # Job stats
12531         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.7.1) ]] ||
12532                 { skip "Need MDS version with at least 2.7.1"; return 0; }
12533
12534         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12535         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
12536         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12537         remote_ost_nodsh && skip "remote OST with nodsh" && return
12538
12539         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep jobstats)" ] &&
12540                 skip "Server doesn't support jobstats" && return 0
12541         [[ $JOBID_VAR = disable ]] && skip "jobstats is disabled" && return
12542
12543         OLD_JOBENV=$($LCTL get_param -n jobid_var)
12544         if [ $OLD_JOBENV != $JOBENV ]; then
12545                 jobstats_set $JOBENV
12546                 trap cleanup_205 EXIT
12547         fi
12548
12549         CL_USER=$(do_facet $SINGLEMDS lctl --device $MDT0 changelog_register -n)
12550         echo "Registered as changelog user $CL_USER"
12551
12552         OLD_INTERVAL=$(do_facet $SINGLEMDS \
12553                        lctl get_param -n mdt.*.job_cleanup_interval)
12554         local interval_new=5
12555         do_facet $SINGLEMDS \
12556                 $LCTL set_param mdt.*.job_cleanup_interval=$interval_new
12557         local start=$SECONDS
12558
12559         local cmd
12560         # mkdir
12561         cmd="mkdir $DIR/$tdir"
12562         verify_jobstats "$cmd" "$SINGLEMDS"
12563         # rmdir
12564         cmd="rmdir $DIR/$tdir"
12565         verify_jobstats "$cmd" "$SINGLEMDS"
12566         # mkdir on secondary MDT
12567         if [ $MDSCOUNT -gt 1 ]; then
12568                 cmd="lfs mkdir -i 1 $DIR/$tdir.remote"
12569                 verify_jobstats "$cmd" "mds2"
12570         fi
12571         # mknod
12572         cmd="mknod $DIR/$tfile c 1 3"
12573         verify_jobstats "$cmd" "$SINGLEMDS"
12574         # unlink
12575         cmd="rm -f $DIR/$tfile"
12576         verify_jobstats "$cmd" "$SINGLEMDS"
12577         # create all files on OST0000 so verify_jobstats can find OST stats
12578         # open & close
12579         cmd="$SETSTRIPE -i 0 -c 1 $DIR/$tfile"
12580         verify_jobstats "$cmd" "$SINGLEMDS"
12581         # setattr
12582         cmd="touch $DIR/$tfile"
12583         verify_jobstats "$cmd" "$SINGLEMDS ost1"
12584         # write
12585         cmd="dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 oflag=sync"
12586         verify_jobstats "$cmd" "ost1"
12587         # read
12588         cancel_lru_locks osc
12589         cmd="dd if=$DIR/$tfile of=/dev/null bs=1M count=1 iflag=direct"
12590         verify_jobstats "$cmd" "ost1"
12591         # truncate
12592         cmd="$TRUNCATE $DIR/$tfile 0"
12593         verify_jobstats "$cmd" "$SINGLEMDS ost1"
12594         # rename
12595         cmd="mv -f $DIR/$tfile $DIR/$tdir.rename"
12596         verify_jobstats "$cmd" "$SINGLEMDS"
12597         # jobstats expiry - sleep until old stats should be expired
12598         local left=$((interval_new + 5 - (SECONDS - start)))
12599         [ $left -ge 0 ] && wait_update_facet $SINGLEMDS \
12600                 "lctl get_param *.*.job_stats | grep -c 'job_id.*mkdir'" \
12601                         "0" $left
12602         cmd="mkdir $DIR/$tdir.expire"
12603         verify_jobstats "$cmd" "$SINGLEMDS"
12604         [ $(do_facet $SINGLEMDS lctl get_param *.*.job_stats |
12605             grep -c "job_id.*mkdir") -gt 1 ] && error "old jobstats not expired"
12606
12607         # Ensure that jobid are present in changelog (if supported by MDS)
12608         if [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.52) ]
12609         then
12610                 $LFS changelog $MDT0 | tail -9
12611                 jobids=$($LFS changelog $MDT0 | tail -9 | grep -c "j=")
12612                 [ $jobids -eq 9 ] ||
12613                         error "Wrong changelog jobid count $jobids != 9"
12614
12615                 # LU-5862
12616                 JOBENV="disable"
12617                 jobstats_set $JOBENV
12618                 touch $DIR/$tfile
12619                 $LFS changelog $MDT0 | tail -1
12620                 jobids=$($LFS changelog $MDT0 | tail -1 | grep -c "j=")
12621                 [ $jobids -eq 0 ] ||
12622                         error "Unexpected jobids when jobid_var=$JOBENV"
12623         fi
12624
12625         cleanup_205
12626 }
12627 run_test 205 "Verify job stats"
12628
12629 # LU-1480, LU-1773 and LU-1657
12630 test_206() {
12631         mkdir -p $DIR/$tdir
12632         $SETSTRIPE -c -1 $DIR/$tdir
12633 #define OBD_FAIL_LOV_INIT 0x1403
12634         $LCTL set_param fail_loc=0xa0001403
12635         $LCTL set_param fail_val=1
12636         touch $DIR/$tdir/$tfile || true
12637 }
12638 run_test 206 "fail lov_init_raid0() doesn't lbug"
12639
12640 test_207a() {
12641         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((RANDOM%10+1))
12642         local fsz=`stat -c %s $DIR/$tfile`
12643         cancel_lru_locks mdc
12644
12645         # do not return layout in getattr intent
12646 #define OBD_FAIL_MDS_NO_LL_GETATTR 0x170
12647         $LCTL set_param fail_loc=0x170
12648         local sz=`stat -c %s $DIR/$tfile`
12649
12650         [ $fsz -eq $sz ] || error "file size expected $fsz, actual $sz"
12651
12652         rm -rf $DIR/$tfile
12653 }
12654 run_test 207a "can refresh layout at glimpse"
12655
12656 test_207b() {
12657         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((RANDOM%10+1))
12658         local cksum=`md5sum $DIR/$tfile`
12659         local fsz=`stat -c %s $DIR/$tfile`
12660         cancel_lru_locks mdc
12661         cancel_lru_locks osc
12662
12663         # do not return layout in getattr intent
12664 #define OBD_FAIL_MDS_NO_LL_OPEN 0x171
12665         $LCTL set_param fail_loc=0x171
12666
12667         # it will refresh layout after the file is opened but before read issues
12668         echo checksum is "$cksum"
12669         echo "$cksum" |md5sum -c --quiet || error "file differs"
12670
12671         rm -rf $DIR/$tfile
12672 }
12673 run_test 207b "can refresh layout at open"
12674
12675 test_208() {
12676         # FIXME: in this test suite, only RD lease is used. This is okay
12677         # for now as only exclusive open is supported. After generic lease
12678         # is done, this test suite should be revised. - Jinshan
12679
12680         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12681         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.4.52) ]] ||
12682                 { skip "Need MDS version at least 2.4.52"; return 0; }
12683
12684         echo "==== test 1: verify get lease work"
12685         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:eRE+eU || error "get lease error"
12686
12687         echo "==== test 2: verify lease can be broken by upcoming open"
12688         $MULTIOP $DIR/$tfile oO_RDONLY:eR_E-eUc &
12689         local PID=$!
12690         sleep 1
12691
12692         $MULTIOP $DIR/$tfile oO_RDONLY:c
12693         kill -USR1 $PID && wait $PID || error "break lease error"
12694
12695         echo "==== test 3: verify lease can't be granted if an open already exists"
12696         $MULTIOP $DIR/$tfile oO_RDONLY:_c &
12697         local PID=$!
12698         sleep 1
12699
12700         $MULTIOP $DIR/$tfile oO_RDONLY:eReUc && error "apply lease should fail"
12701         kill -USR1 $PID && wait $PID || error "open file error"
12702
12703         echo "==== test 4: lease can sustain over recovery"
12704         $MULTIOP $DIR/$tfile oO_RDONLY:eR_E+eUc &
12705         PID=$!
12706         sleep 1
12707
12708         fail mds1
12709
12710         kill -USR1 $PID && wait $PID || error "lease broken over recovery"
12711
12712         echo "==== test 5: lease broken can't be regained by replay"
12713         $MULTIOP $DIR/$tfile oO_RDONLY:eR_E-eUc &
12714         PID=$!
12715         sleep 1
12716
12717         # open file to break lease and then recovery
12718         $MULTIOP $DIR/$tfile oO_RDWR:c || error "open file error"
12719         fail mds1
12720
12721         kill -USR1 $PID && wait $PID || error "lease not broken over recovery"
12722
12723         rm -f $DIR/$tfile
12724 }
12725 run_test 208 "Exclusive open"
12726
12727 test_209() {
12728         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep disp_stripe)" ] &&
12729                 skip_env "must have disp_stripe" && return
12730
12731         touch $DIR/$tfile
12732         sync; sleep 5; sync;
12733
12734         echo 3 > /proc/sys/vm/drop_caches
12735         req_before=$(awk '/ptlrpc_cache / { print $2 }' /proc/slabinfo)
12736
12737         # open/close 500 times
12738         for i in $(seq 500); do
12739                 cat $DIR/$tfile
12740         done
12741
12742         echo 3 > /proc/sys/vm/drop_caches
12743         req_after=$(awk '/ptlrpc_cache / { print $2 }' /proc/slabinfo)
12744
12745         echo "before: $req_before, after: $req_after"
12746         [ $((req_after - req_before)) -ge 300 ] &&
12747                 error "open/close requests are not freed"
12748         return 0
12749 }
12750 run_test 209 "read-only open/close requests should be freed promptly"
12751
12752 test_212() {
12753         size=`date +%s`
12754         size=$((size % 8192 + 1))
12755         dd if=/dev/urandom of=$DIR/f212 bs=1k count=$size
12756         sendfile $DIR/f212 $DIR/f212.xyz || error "sendfile wrong"
12757         rm -f $DIR/f212 $DIR/f212.xyz
12758 }
12759 run_test 212 "Sendfile test ============================================"
12760
12761 test_213() {
12762         dd if=/dev/zero of=$DIR/$tfile bs=4k count=4
12763         cancel_lru_locks osc
12764         lctl set_param fail_loc=0x8000040f
12765         # generate a read lock
12766         cat $DIR/$tfile > /dev/null
12767         # write to the file, it will try to cancel the above read lock.
12768         cat /etc/hosts >> $DIR/$tfile
12769 }
12770 run_test 213 "OSC lock completion and cancel race don't crash - bug 18829"
12771
12772 test_214() { # for bug 20133
12773         mkdir -p $DIR/$tdir/d214c || error "mkdir $DIR/$tdir/d214c failed"
12774         for (( i=0; i < 340; i++ )) ; do
12775                 touch $DIR/$tdir/d214c/a$i
12776         done
12777
12778         ls -l $DIR/$tdir || error "ls -l $DIR/d214p failed"
12779         mv $DIR/$tdir/d214c $DIR/ || error "mv $DIR/d214p/d214c $DIR/ failed"
12780         ls $DIR/d214c || error "ls $DIR/d214c failed"
12781         rm -rf $DIR/$tdir || error "rm -rf $DIR/d214* failed"
12782         rm -rf $DIR/d214* || error "rm -rf $DIR/d214* failed"
12783 }
12784 run_test 214 "hash-indexed directory test - bug 20133"
12785
12786 # having "abc" as 1st arg, creates $TMP/lnet_abc.out and $TMP/lnet_abc.sys
12787 create_lnet_proc_files() {
12788         lctl get_param -n $1 >$TMP/lnet_$1.sys || error "cannot read lnet.$1"
12789 }
12790
12791 # counterpart of create_lnet_proc_files
12792 remove_lnet_proc_files() {
12793         rm -f $TMP/lnet_$1.sys
12794 }
12795
12796 # uses 1st arg as trailing part of filename, 2nd arg as description for reports,
12797 # 3rd arg as regexp for body
12798 check_lnet_proc_stats() {
12799         local l=$(cat "$TMP/lnet_$1" |wc -l)
12800         [ $l = 1 ] || (cat "$TMP/lnet_$1" && error "$2 is not of 1 line: $l")
12801
12802         grep -E "$3" "$TMP/lnet_$1" || (cat "$TMP/lnet_$1" && error "$2 misformatted")
12803 }
12804
12805 # uses 1st arg as trailing part of filename, 2nd arg as description for reports,
12806 # 3rd arg as regexp for body, 4th arg as regexp for 1st line, 5th arg is
12807 # optional and can be regexp for 2nd line (lnet.routes case)
12808 check_lnet_proc_entry() {
12809         local blp=2          # blp stands for 'position of 1st line of body'
12810         [ -z "$5" ] || blp=3 # lnet.routes case
12811
12812         local l=$(cat "$TMP/lnet_$1" |wc -l)
12813         # subtracting one from $blp because the body can be empty
12814         [ "$l" -ge "$(($blp - 1))" ] || (cat "$TMP/lnet_$1" && error "$2 is too short: $l")
12815
12816         sed -n '1 p' "$TMP/lnet_$1" |grep -E "$4" >/dev/null ||
12817                 (cat "$TMP/lnet_$1" && error "1st line of $2 misformatted")
12818
12819         [ "$5" = "" ] || sed -n '2 p' "$TMP/lnet_$1" |grep -E "$5" >/dev/null ||
12820                 (cat "$TMP/lnet_$1" && error "2nd line of $2 misformatted")
12821
12822         # bail out if any unexpected line happened
12823         sed -n "$blp p" "$TMP/lnet_$1" | grep -Ev "$3"
12824         [ "$?" != 0 ] || error "$2 misformatted"
12825 }
12826
12827 test_215() { # for bugs 18102, 21079, 21517
12828         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12829         local N='(0|[1-9][0-9]*)'       # non-negative numeric
12830         local P='[1-9][0-9]*'           # positive numeric
12831         local I='(0|-?[1-9][0-9]*|NA)'  # any numeric (0 | >0 | <0) or NA if no value
12832         local NET='[a-z][a-z0-9]*'      # LNET net like o2ib2
12833         local ADDR='[0-9.]+'            # LNET addr like 10.0.0.1
12834         local NID="$ADDR@$NET"          # LNET nid like 10.0.0.1@o2ib2
12835
12836         local L1 # regexp for 1st line
12837         local L2 # regexp for 2nd line (optional)
12838         local BR # regexp for the rest (body)
12839
12840         # lnet.stats should look as 11 space-separated non-negative numerics
12841         BR="^$N $N $N $N $N $N $N $N $N $N $N$"
12842         create_lnet_proc_files "stats"
12843         check_lnet_proc_stats "stats.sys" "lnet.stats" "$BR"
12844         remove_lnet_proc_files "stats"
12845
12846         # lnet.routes should look like this:
12847         # Routing disabled/enabled
12848         # net hops priority state router
12849         # where net is a string like tcp0, hops > 0, priority >= 0,
12850         # state is up/down,
12851         # router is a string like 192.168.1.1@tcp2
12852         L1="^Routing (disabled|enabled)$"
12853         L2="^net +hops +priority +state +router$"
12854         BR="^$NET +$N +(0|1) +(up|down) +$NID$"
12855         create_lnet_proc_files "routes"
12856         check_lnet_proc_entry "routes.sys" "lnet.routes" "$BR" "$L1" "$L2"
12857         remove_lnet_proc_files "routes"
12858
12859         # lnet.routers should look like this:
12860         # ref rtr_ref alive_cnt state last_ping ping_sent deadline down_ni router
12861         # where ref > 0, rtr_ref > 0, alive_cnt >= 0, state is up/down,
12862         # last_ping >= 0, ping_sent is boolean (0/1), deadline and down_ni are
12863         # numeric (0 or >0 or <0), router is a string like 192.168.1.1@tcp2
12864         L1="^ref +rtr_ref +alive_cnt +state +last_ping +ping_sent +deadline +down_ni +router$"
12865         BR="^$P +$P +$N +(up|down) +$N +(0|1) +$I +$I +$NID$"
12866         create_lnet_proc_files "routers"
12867         check_lnet_proc_entry "routers.sys" "lnet.routers" "$BR" "$L1"
12868         remove_lnet_proc_files "routers"
12869
12870         # lnet.peers should look like this:
12871         # nid refs state last max rtr min tx min queue
12872         # where nid is a string like 192.168.1.1@tcp2, refs > 0,
12873         # state is up/down/NA, max >= 0. last, rtr, min, tx, min are
12874         # numeric (0 or >0 or <0), queue >= 0.
12875         L1="^nid +refs +state +last +max +rtr +min +tx +min +queue$"
12876         BR="^$NID +$P +(up|down|NA) +$I +$N +$I +$I +$I +$I +$N$"
12877         create_lnet_proc_files "peers"
12878         check_lnet_proc_entry "peers.sys" "lnet.peers" "$BR" "$L1"
12879         remove_lnet_proc_files "peers"
12880
12881         # lnet.buffers  should look like this:
12882         # pages count credits min
12883         # where pages >=0, count >=0, credits and min are numeric (0 or >0 or <0)
12884         L1="^pages +count +credits +min$"
12885         BR="^ +$N +$N +$I +$I$"
12886         create_lnet_proc_files "buffers"
12887         check_lnet_proc_entry "buffers.sys" "lnet.buffers" "$BR" "$L1"
12888         remove_lnet_proc_files "buffers"
12889
12890         # lnet.nis should look like this:
12891         # nid status alive refs peer rtr max tx min
12892         # where nid is a string like 192.168.1.1@tcp2, status is up/down,
12893         # alive is numeric (0 or >0 or <0), refs >= 0, peer >= 0,
12894         # rtr >= 0, max >=0, tx and min are numeric (0 or >0 or <0).
12895         L1="^nid +status +alive +refs +peer +rtr +max +tx +min$"
12896         BR="^$NID +(up|down) +$I +$N +$N +$N +$N +$I +$I$"
12897         create_lnet_proc_files "nis"
12898         check_lnet_proc_entry "nis.sys" "lnet.nis" "$BR" "$L1"
12899         remove_lnet_proc_files "nis"
12900
12901         # can we successfully write to lnet.stats?
12902         lctl set_param -n stats=0 || error "cannot write to lnet.stats"
12903 }
12904 run_test 215 "lnet exists and has proper content - bugs 18102, 21079, 21517"
12905
12906 test_216() { # bug 20317
12907         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12908         remote_ost_nodsh && skip "remote OST with nodsh" && return
12909
12910         local node
12911         local facets=$(get_facets OST)
12912         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
12913
12914         save_lustre_params client "osc.*.contention_seconds" > $p
12915         save_lustre_params $facets \
12916                 "ldlm.namespaces.filter-*.max_nolock_bytes" >> $p
12917         save_lustre_params $facets \
12918                 "ldlm.namespaces.filter-*.contended_locks" >> $p
12919         save_lustre_params $facets \
12920                 "ldlm.namespaces.filter-*.contention_seconds" >> $p
12921         clear_stats osc.*.osc_stats
12922
12923         # agressive lockless i/o settings
12924         do_nodes $(comma_list $(osts_nodes)) \
12925                 "lctl set_param -n ldlm.namespaces.*.max_nolock_bytes=2000000 \
12926                         ldlm.namespaces.filter-*.contended_locks=0 \
12927                         ldlm.namespaces.filter-*.contention_seconds=60"
12928         lctl set_param -n osc.*.contention_seconds=60
12929
12930         $DIRECTIO write $DIR/$tfile 0 10 4096
12931         $CHECKSTAT -s 40960 $DIR/$tfile
12932
12933         # disable lockless i/o
12934         do_nodes $(comma_list $(osts_nodes)) \
12935                 "lctl set_param -n ldlm.namespaces.filter-*.max_nolock_bytes=0 \
12936                         ldlm.namespaces.filter-*.contended_locks=32 \
12937                         ldlm.namespaces.filter-*.contention_seconds=0"
12938         lctl set_param -n osc.*.contention_seconds=0
12939         clear_stats osc.*.osc_stats
12940
12941         dd if=/dev/zero of=$DIR/$tfile count=0
12942         $CHECKSTAT -s 0 $DIR/$tfile
12943
12944         restore_lustre_params <$p
12945         rm -f $p
12946         rm $DIR/$tfile
12947 }
12948 run_test 216 "check lockless direct write updates file size and kms correctly"
12949
12950 test_217() { # bug 22430
12951         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12952         local node
12953         local nid
12954
12955         for node in $(nodes_list); do
12956                 nid=$(host_nids_address $node $NETTYPE)
12957                 if [[ $nid = *-* ]] ; then
12958                         echo "lctl ping $(h2nettype $nid)"
12959                         lctl ping $(h2nettype $nid)
12960                 else
12961                         echo "skipping $node (no hyphen detected)"
12962                 fi
12963         done
12964 }
12965 run_test 217 "check lctl ping for hostnames with hiphen ('-')"
12966
12967 test_218() {
12968        # do directio so as not to populate the page cache
12969        log "creating a 10 Mb file"
12970        $MULTIOP $DIR/$tfile oO_CREAT:O_DIRECT:O_RDWR:w$((10*1048576))c || error "multiop failed while creating a file"
12971        log "starting reads"
12972        dd if=$DIR/$tfile of=/dev/null bs=4096 &
12973        log "truncating the file"
12974        $MULTIOP $DIR/$tfile oO_TRUNC:c || error "multiop failed while truncating the file"
12975        log "killing dd"
12976        kill %+ || true # reads might have finished
12977        echo "wait until dd is finished"
12978        wait
12979        log "removing the temporary file"
12980        rm -rf $DIR/$tfile || error "tmp file removal failed"
12981 }
12982 run_test 218 "parallel read and truncate should not deadlock ======================="
12983
12984 test_219() {
12985         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12986         # write one partial page
12987         dd if=/dev/zero of=$DIR/$tfile bs=1024 count=1
12988         # set no grant so vvp_io_commit_write will do sync write
12989         $LCTL set_param fail_loc=0x411
12990         # write a full page at the end of file
12991         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 seek=1 conv=notrunc
12992
12993         $LCTL set_param fail_loc=0
12994         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 seek=3
12995         $LCTL set_param fail_loc=0x411
12996         dd if=/dev/zero of=$DIR/$tfile bs=1024 count=1 seek=2 conv=notrunc
12997
12998         # LU-4201
12999         dd if=/dev/zero of=$DIR/$tfile-2 bs=1024 count=1
13000         $CHECKSTAT -s 1024 $DIR/$tfile-2 || error "checkstat wrong size"
13001 }
13002 run_test 219 "LU-394: Write partial won't cause uncontiguous pages vec at LND"
13003
13004 test_220() { #LU-325
13005         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13006         remote_ost_nodsh && skip "remote OST with nodsh" && return
13007         remote_mds_nodsh && skip "remote MDS with nodsh" && return
13008         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
13009         local OSTIDX=0
13010
13011         # create on MDT0000 so the last_id and next_id are correct
13012         mkdir $DIR/$tdir
13013         local OST=$($LFS df $DIR | awk '/OST:'$OSTIDX'/ { print $1 }')
13014         OST=${OST%_UUID}
13015
13016         # on the mdt's osc
13017         local mdtosc_proc1=$(get_mdtosc_proc_path $SINGLEMDS $OST)
13018         local last_id=$(do_facet $SINGLEMDS lctl get_param -n \
13019                         osc.$mdtosc_proc1.prealloc_last_id)
13020         local next_id=$(do_facet $SINGLEMDS lctl get_param -n \
13021                         osc.$mdtosc_proc1.prealloc_next_id)
13022
13023         $LFS df -i
13024
13025         if ! combined_mgs_mds ; then
13026                 mount_mgs_client
13027         fi
13028
13029         do_facet ost$((OSTIDX + 1)) lctl set_param fail_val=-1
13030         #define OBD_FAIL_OST_ENOINO              0x229
13031         do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=0x229
13032         create_pool $FSNAME.$TESTNAME || return 1
13033         do_facet mgs $LCTL pool_add $FSNAME.$TESTNAME $OST || return 2
13034
13035         $SETSTRIPE $DIR/$tdir -i $OSTIDX -c 1 -p $FSNAME.$TESTNAME
13036
13037         MDSOBJS=$((last_id - next_id))
13038         echo "preallocated objects on MDS is $MDSOBJS" "($last_id - $next_id)"
13039
13040         blocks=$($LFS df $MOUNT | awk '($1 == '$OSTIDX') { print $4 }')
13041         echo "OST still has $count kbytes free"
13042
13043         echo "create $MDSOBJS files @next_id..."
13044         createmany -o $DIR/$tdir/f $MDSOBJS || return 3
13045
13046         local last_id2=$(do_facet mds${MDSIDX} lctl get_param -n \
13047                         osc.$mdtosc_proc1.prealloc_last_id)
13048         local next_id2=$(do_facet mds${MDSIDX} lctl get_param -n \
13049                         osc.$mdtosc_proc1.prealloc_next_id)
13050
13051         echo "after creation, last_id=$last_id2, next_id=$next_id2"
13052         $LFS df -i
13053
13054         echo "cleanup..."
13055
13056         do_facet ost$((OSTIDX + 1)) lctl set_param fail_val=0
13057         do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=0
13058
13059         do_facet mgs $LCTL pool_remove $FSNAME.$TESTNAME $OST ||
13060                 error "$LCTL pool_remove $FSNAME.$TESTNAME $OST failed"
13061         do_facet mgs $LCTL pool_destroy $FSNAME.$TESTNAME ||
13062                 error "$LCTL pool_destroy $FSNAME.$TESTNAME failed"
13063         echo "unlink $MDSOBJS files @$next_id..."
13064         unlinkmany $DIR/$tdir/f $MDSOBJS || error "unlinkmany failed"
13065
13066         if ! combined_mgs_mds ; then
13067                 umount_mgs_client
13068         fi
13069 }
13070 run_test 220 "preallocated MDS objects still used if ENOSPC from OST"
13071
13072 test_221() {
13073         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13074         dd if=`which date` of=$MOUNT/date oflag=sync
13075         chmod +x $MOUNT/date
13076
13077         #define OBD_FAIL_LLITE_FAULT_TRUNC_RACE  0x1401
13078         $LCTL set_param fail_loc=0x80001401
13079
13080         $MOUNT/date > /dev/null
13081         rm -f $MOUNT/date
13082 }
13083 run_test 221 "make sure fault and truncate race to not cause OOM"
13084
13085 test_222a () {
13086         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13087         rm -rf $DIR/$tdir
13088         test_mkdir $DIR/$tdir
13089         $LFS setstripe -c 1 -i 0 $DIR/$tdir
13090         createmany -o $DIR/$tdir/$tfile 10
13091         cancel_lru_locks mdc
13092         cancel_lru_locks osc
13093         #define OBD_FAIL_LDLM_AGL_DELAY           0x31a
13094         $LCTL set_param fail_loc=0x31a
13095         ls -l $DIR/$tdir > /dev/null || error "AGL for ls failed"
13096         $LCTL set_param fail_loc=0
13097         rm -r $DIR/$tdir
13098 }
13099 run_test 222a "AGL for ls should not trigger CLIO lock failure"
13100
13101 test_222b () {
13102         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13103         rm -rf $DIR/$tdir
13104         test_mkdir $DIR/$tdir
13105         $LFS setstripe -c 1 -i 0 $DIR/$tdir
13106         createmany -o $DIR/$tdir/$tfile 10
13107         cancel_lru_locks mdc
13108         cancel_lru_locks osc
13109         #define OBD_FAIL_LDLM_AGL_DELAY           0x31a
13110         $LCTL set_param fail_loc=0x31a
13111         rm -r $DIR/$tdir || error "AGL for rmdir failed"
13112         $LCTL set_param fail_loc=0
13113 }
13114 run_test 222b "AGL for rmdir should not trigger CLIO lock failure"
13115
13116 test_223 () {
13117         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13118         rm -rf $DIR/$tdir
13119         test_mkdir $DIR/$tdir
13120         $LFS setstripe -c 1 -i 0 $DIR/$tdir
13121         createmany -o $DIR/$tdir/$tfile 10
13122         cancel_lru_locks mdc
13123         cancel_lru_locks osc
13124         #define OBD_FAIL_LDLM_AGL_NOLOCK          0x31b
13125         $LCTL set_param fail_loc=0x31b
13126         ls -l $DIR/$tdir > /dev/null || error "reenqueue failed"
13127         $LCTL set_param fail_loc=0
13128         rm -r $DIR/$tdir
13129 }
13130 run_test 223 "osc reenqueue if without AGL lock granted ======================="
13131
13132 test_224a() { # LU-1039, MRP-303
13133         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13134         #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB   0x508
13135         $LCTL set_param fail_loc=0x508
13136         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 conv=fsync
13137         $LCTL set_param fail_loc=0
13138         df $DIR
13139 }
13140 run_test 224a "Don't panic on bulk IO failure"
13141
13142 test_224b() { # LU-1039, MRP-303
13143         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13144         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1
13145         cancel_lru_locks osc
13146         #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB2   0x515
13147         $LCTL set_param fail_loc=0x515
13148         dd of=/dev/null if=$DIR/$tfile bs=4096 count=1
13149         $LCTL set_param fail_loc=0
13150         df $DIR
13151 }
13152 run_test 224b "Don't panic on bulk IO failure"
13153
13154 test_224c() { # LU-6441
13155         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13156         remote_mds_nodsh && skip "remote MDS with nodsh" && return
13157
13158         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
13159         save_writethrough $p
13160         set_cache writethrough on
13161
13162         local pages_per_rpc=$($LCTL get_param \
13163                                 osc.*.max_pages_per_rpc)
13164         local at_max=$($LCTL get_param -n at_max)
13165         local timeout=$($LCTL get_param -n timeout)
13166         local test_at="$LCTL get_param -n at_max"
13167         local param_at="$FSNAME.sys.at_max"
13168         local test_timeout="$LCTL get_param -n timeout"
13169         local param_timeout="$FSNAME.sys.timeout"
13170
13171         $LCTL set_param -n osc.*.max_pages_per_rpc=1024
13172
13173         set_conf_param_and_check client "$test_at" "$param_at" 0 ||
13174                 error "conf_param at_max=0 failed"
13175         set_conf_param_and_check client "$test_timeout" "$param_timeout" 5 ||
13176                 error "conf_param timeout=5 failed"
13177
13178         #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB3   0x520
13179         do_facet ost1 $LCTL set_param fail_loc=0x520
13180         $LFS setstripe -c 1 -i 0 $DIR/$tfile
13181         dd if=/dev/zero of=$DIR/$tfile bs=8MB count=1
13182         sync
13183         do_facet ost1 $LCTL set_param fail_loc=0
13184
13185         set_conf_param_and_check client "$test_at" "$param_at" $at_max ||
13186                 error "conf_param at_max=$at_max failed"
13187         set_conf_param_and_check client "$test_timeout" "$param_timeout" \
13188                 $timeout || error "conf_param timeout=$timeout failed"
13189
13190         $LCTL set_param -n $pages_per_rpc
13191         restore_lustre_params < $p
13192         rm -f $p
13193 }
13194 run_test 224c "Don't hang if one of md lost during large bulk RPC"
13195
13196 MDSSURVEY=${MDSSURVEY:-$(which mds-survey 2>/dev/null || true)}
13197 test_225a () {
13198         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13199         remote_mds_nodsh && skip "remote MDS with nodsh" && return
13200         if [ -z ${MDSSURVEY} ]; then
13201               skip_env "mds-survey not found" && return
13202         fi
13203
13204         [ $MDSCOUNT -ge 2 ] &&
13205                 skip "skipping now for more than one MDT" && return
13206
13207        [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ] ||
13208             { skip "Need MDS version at least 2.2.51"; return; }
13209
13210        local mds=$(facet_host $SINGLEMDS)
13211        local target=$(do_nodes $mds 'lctl dl' | \
13212                       awk "{if (\$2 == \"UP\" && \$3 == \"mdt\") {print \$4}}")
13213
13214        local cmd1="file_count=1000 thrhi=4"
13215        local cmd2="dir_count=2 layer=mdd stripe_count=0"
13216        local cmd3="rslt_loc=${TMP} targets=\"$mds:$target\" $MDSSURVEY"
13217        local cmd="$cmd1 $cmd2 $cmd3"
13218
13219        rm -f ${TMP}/mds_survey*
13220        echo + $cmd
13221        eval $cmd || error "mds-survey with zero-stripe failed"
13222        cat ${TMP}/mds_survey*
13223        rm -f ${TMP}/mds_survey*
13224 }
13225 run_test 225a "Metadata survey sanity with zero-stripe"
13226
13227 test_225b () {
13228         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13229         remote_mds_nodsh && skip "remote MDS with nodsh" && return
13230         if [ -z ${MDSSURVEY} ]; then
13231               skip_env "mds-survey not found" && return
13232         fi
13233         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ] ||
13234             { skip "Need MDS version at least 2.2.51"; return; }
13235
13236         if [ $($LCTL dl | grep -c osc) -eq 0 ]; then
13237               skip_env "Need to mount OST to test" && return
13238         fi
13239
13240        local mds=$(facet_host $SINGLEMDS)
13241        local target=$(do_nodes $mds 'lctl dl' | \
13242                       awk "{if (\$2 == \"UP\" && \$3 == \"mdt\") {print \$4}}")
13243
13244        local cmd1="file_count=1000 thrhi=4"
13245        local cmd2="dir_count=2 layer=mdd stripe_count=1"
13246        local cmd3="rslt_loc=${TMP} targets=\"$mds:$target\" $MDSSURVEY"
13247        local cmd="$cmd1 $cmd2 $cmd3"
13248
13249        rm -f ${TMP}/mds_survey*
13250        echo + $cmd
13251        eval $cmd || error "mds-survey with stripe_count failed"
13252        cat ${TMP}/mds_survey*
13253        rm -f ${TMP}/mds_survey*
13254 }
13255 run_test 225b "Metadata survey sanity with stripe_count = 1"
13256
13257 mcreate_path2fid () {
13258         local mode=$1
13259         local major=$2
13260         local minor=$3
13261         local name=$4
13262         local desc=$5
13263         local path=$DIR/$tdir/$name
13264         local fid
13265         local rc
13266         local fid_path
13267
13268         $MCREATE --mode=$1 --major=$2 --minor=$3 $path ||
13269                 error "cannot create $desc"
13270
13271         fid=$($LFS path2fid $path | tr -d '[' | tr -d ']')
13272         rc=$?
13273         [ $rc -ne 0 ] && error "cannot get fid of a $desc"
13274
13275         fid_path=$($LFS fid2path $MOUNT $fid)
13276         rc=$?
13277         [ $rc -ne 0 ] && error "cannot get path of $desc by $DIR $path $fid"
13278
13279         [ "$path" == "$fid_path" ] ||
13280                 error "fid2path returned $fid_path, expected $path"
13281
13282         echo "pass with $path and $fid"
13283 }
13284
13285 test_226a () {
13286         rm -rf $DIR/$tdir
13287         mkdir -p $DIR/$tdir
13288
13289         mcreate_path2fid 0010666 0 0 fifo "FIFO"
13290         mcreate_path2fid 0020666 1 3 null "character special file (null)"
13291         mcreate_path2fid 0020666 1 255 none "character special file (no device)"
13292         mcreate_path2fid 0040666 0 0 dir "directory"
13293         mcreate_path2fid 0060666 7 0 loop0 "block special file (loop)"
13294         mcreate_path2fid 0100666 0 0 file "regular file"
13295         mcreate_path2fid 0120666 0 0 link "symbolic link"
13296         mcreate_path2fid 0140666 0 0 sock "socket"
13297 }
13298 run_test 226a "call path2fid and fid2path on files of all type"
13299
13300 test_226b () {
13301         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13302         rm -rf $DIR/$tdir
13303         local MDTIDX=1
13304
13305         mkdir -p $DIR/$tdir
13306         $LFS setdirstripe -i $MDTIDX $DIR/$tdir/remote_dir ||
13307                 error "create remote directory failed"
13308         mcreate_path2fid 0010666 0 0 "remote_dir/fifo" "FIFO"
13309         mcreate_path2fid 0020666 1 3 "remote_dir/null" \
13310                                 "character special file (null)"
13311         mcreate_path2fid 0020666 1 255 "remote_dir/none" \
13312                                 "character special file (no device)"
13313         mcreate_path2fid 0040666 0 0 "remote_dir/dir" "directory"
13314         mcreate_path2fid 0060666 7 0 "remote_dir/loop0" \
13315                                 "block special file (loop)"
13316         mcreate_path2fid 0100666 0 0 "remote_dir/file" "regular file"
13317         mcreate_path2fid 0120666 0 0 "remote_dir/link" "symbolic link"
13318         mcreate_path2fid 0140666 0 0 "remote_dir/sock" "socket"
13319 }
13320 run_test 226b "call path2fid and fid2path on files of all type under remote dir"
13321
13322 # LU-1299 Executing or running ldd on a truncated executable does not
13323 # cause an out-of-memory condition.
13324 test_227() {
13325         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13326         [ -z "$(which ldd)" ] && skip "should have ldd tool" && return
13327         dd if=$(which date) of=$MOUNT/date bs=1k count=1
13328         chmod +x $MOUNT/date
13329
13330         $MOUNT/date > /dev/null
13331         ldd $MOUNT/date > /dev/null
13332         rm -f $MOUNT/date
13333 }
13334 run_test 227 "running truncated executable does not cause OOM"
13335
13336 # LU-1512 try to reuse idle OI blocks
13337 test_228a() {
13338         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13339         remote_mds_nodsh && skip "remote MDS with nodsh" && return
13340         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
13341                 skip "ldiskfs only test" && return
13342
13343         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
13344         local myDIR=$DIR/$tdir
13345
13346         mkdir -p $myDIR
13347         #define OBD_FAIL_SEQ_EXHAUST             0x1002
13348         $LCTL set_param fail_loc=0x80001002
13349         createmany -o $myDIR/t- 10000
13350         $LCTL set_param fail_loc=0
13351         # The guard is current the largest FID holder
13352         touch $myDIR/guard
13353         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
13354                     tr -d '[')
13355         local IDX=$(($SEQ % 64))
13356
13357         do_facet $SINGLEMDS sync
13358         # Make sure journal flushed.
13359         sleep 6
13360         local blk1=$(do_facet $SINGLEMDS \
13361                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
13362                      grep Blockcount | awk '{print $4}')
13363
13364         # Remove old files, some OI blocks will become idle.
13365         unlinkmany $myDIR/t- 10000
13366         # Create new files, idle OI blocks should be reused.
13367         createmany -o $myDIR/t- 2000
13368         do_facet $SINGLEMDS sync
13369         # Make sure journal flushed.
13370         sleep 6
13371         local blk2=$(do_facet $SINGLEMDS \
13372                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
13373                      grep Blockcount | awk '{print $4}')
13374
13375         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
13376 }
13377 run_test 228a "try to reuse idle OI blocks"
13378
13379 test_228b() {
13380         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13381         remote_mds_nodsh && skip "remote MDS with nodsh" && return
13382         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
13383                 skip "ldiskfs only test" && return
13384
13385         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
13386         local myDIR=$DIR/$tdir
13387
13388         mkdir -p $myDIR
13389         #define OBD_FAIL_SEQ_EXHAUST             0x1002
13390         $LCTL set_param fail_loc=0x80001002
13391         createmany -o $myDIR/t- 10000
13392         $LCTL set_param fail_loc=0
13393         # The guard is current the largest FID holder
13394         touch $myDIR/guard
13395         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
13396                     tr -d '[')
13397         local IDX=$(($SEQ % 64))
13398
13399         do_facet $SINGLEMDS sync
13400         # Make sure journal flushed.
13401         sleep 6
13402         local blk1=$(do_facet $SINGLEMDS \
13403                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
13404                      grep Blockcount | awk '{print $4}')
13405
13406         # Remove old files, some OI blocks will become idle.
13407         unlinkmany $myDIR/t- 10000
13408
13409         # stop the MDT
13410         stop $SINGLEMDS || error "Fail to stop MDT."
13411         # remount the MDT
13412         start $SINGLEMDS $MDT_DEV $MDS_MOUNT_OPTS || error "Fail to start MDT."
13413
13414         df $MOUNT || error "Fail to df."
13415         # Create new files, idle OI blocks should be reused.
13416         createmany -o $myDIR/t- 2000
13417         do_facet $SINGLEMDS sync
13418         # Make sure journal flushed.
13419         sleep 6
13420         local blk2=$(do_facet $SINGLEMDS \
13421                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
13422                      grep Blockcount | awk '{print $4}')
13423
13424         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
13425 }
13426 run_test 228b "idle OI blocks can be reused after MDT restart"
13427
13428 #LU-1881
13429 test_228c() {
13430         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13431         remote_mds_nodsh && skip "remote MDS with nodsh" && return
13432         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
13433                 skip "ldiskfs only test" && return
13434
13435         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
13436         local myDIR=$DIR/$tdir
13437
13438         mkdir -p $myDIR
13439         #define OBD_FAIL_SEQ_EXHAUST             0x1002
13440         $LCTL set_param fail_loc=0x80001002
13441         # 20000 files can guarantee there are index nodes in the OI file
13442         createmany -o $myDIR/t- 20000
13443         $LCTL set_param fail_loc=0
13444         # The guard is current the largest FID holder
13445         touch $myDIR/guard
13446         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
13447                     tr -d '[')
13448         local IDX=$(($SEQ % 64))
13449
13450         do_facet $SINGLEMDS sync
13451         # Make sure journal flushed.
13452         sleep 6
13453         local blk1=$(do_facet $SINGLEMDS \
13454                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
13455                      grep Blockcount | awk '{print $4}')
13456
13457         # Remove old files, some OI blocks will become idle.
13458         unlinkmany $myDIR/t- 20000
13459         rm -f $myDIR/guard
13460         # The OI file should become empty now
13461
13462         # Create new files, idle OI blocks should be reused.
13463         createmany -o $myDIR/t- 2000
13464         do_facet $SINGLEMDS sync
13465         # Make sure journal flushed.
13466         sleep 6
13467         local blk2=$(do_facet $SINGLEMDS \
13468                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
13469                      grep Blockcount | awk '{print $4}')
13470
13471         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
13472 }
13473 run_test 228c "NOT shrink the last entry in OI index node to recycle idle leaf"
13474
13475 test_229() { # LU-2482, LU-3448
13476         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.53) ] &&
13477                 skip "No HSM $(lustre_build_version $SINGLEMDS) MDS < 2.4.53" &&
13478                 return
13479         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13480         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
13481
13482         rm -f $DIR/$tfile
13483
13484         # Create a file with a released layout and stripe count 2.
13485         $MULTIOP $DIR/$tfile H2c ||
13486                 error "failed to create file with released layout"
13487
13488         $GETSTRIPE -v $DIR/$tfile
13489
13490         local pattern=$($GETSTRIPE -L $DIR/$tfile)
13491         [ X"$pattern" = X"released" ] || error "pattern error ($pattern)"
13492
13493         local stripe_count=$($GETSTRIPE -c $DIR/$tfile) || error "getstripe"
13494         [ $stripe_count -eq 2 ] || error "stripe count not 2 ($stripe_count)"
13495         stat $DIR/$tfile || error "failed to stat released file"
13496
13497         chown $RUNAS_ID $DIR/$tfile ||
13498                 error "chown $RUNAS_ID $DIR/$tfile failed"
13499
13500         chgrp $RUNAS_ID $DIR/$tfile ||
13501                 error "chgrp $RUNAS_ID $DIR/$tfile failed"
13502
13503         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
13504         rm $DIR/$tfile || error "failed to remove released file"
13505 }
13506 run_test 229 "getstripe/stat/rm/attr changes work on released files"
13507
13508 test_230a() {
13509         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13510         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13511         local MDTIDX=1
13512
13513         test_mkdir $DIR/$tdir
13514         test_mkdir -i0 -c1 $DIR/$tdir/test_230_local
13515         local mdt_idx=$($GETSTRIPE -M $DIR/$tdir/test_230_local)
13516         [ $mdt_idx -ne 0 ] &&
13517                 error "create local directory on wrong MDT $mdt_idx"
13518
13519         $LFS mkdir -i $MDTIDX $DIR/$tdir/test_230 ||
13520                         error "create remote directory failed"
13521         local mdt_idx=$($GETSTRIPE -M $DIR/$tdir/test_230)
13522         [ $mdt_idx -ne $MDTIDX ] &&
13523                 error "create remote directory on wrong MDT $mdt_idx"
13524
13525         createmany -o $DIR/$tdir/test_230/t- 10 ||
13526                 error "create files on remote directory failed"
13527         mdt_idx=$($GETSTRIPE -M $DIR/$tdir/test_230/t-0)
13528         [ $mdt_idx -ne $MDTIDX ] && error "create files on wrong MDT $mdt_idx"
13529         rm -r $DIR/$tdir || error "unlink remote directory failed"
13530 }
13531 run_test 230a "Create remote directory and files under the remote directory"
13532
13533 test_230b() {
13534         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13535         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13536         local MDTIDX=1
13537         local mdt_index
13538         local i
13539         local file
13540         local pid
13541         local stripe_count
13542         local migrate_dir=$DIR/$tdir/migrate_dir
13543         local other_dir=$DIR/$tdir/other_dir
13544
13545         test_mkdir $DIR/$tdir
13546         test_mkdir -i0 -c1 $migrate_dir
13547         test_mkdir -i0 -c1 $other_dir
13548         for ((i=0; i<10; i++)); do
13549                 mkdir -p $migrate_dir/dir_${i}
13550                 createmany -o $migrate_dir/dir_${i}/f 10 ||
13551                         error "create files under remote dir failed $i"
13552         done
13553
13554         cp /etc/passwd $migrate_dir/$tfile
13555         cp /etc/passwd $other_dir/$tfile
13556         chattr +SAD $migrate_dir
13557         chattr +SAD $migrate_dir/$tfile
13558
13559         local old_dir_flag=$(lsattr -a $migrate_dir | awk '/\/\.$/ {print $1}')
13560         local old_file_flag=$(lsattr $migrate_dir/$tfile | awk '{print $1}')
13561         local old_dir_mode=$(stat -c%f $migrate_dir)
13562         local old_file_mode=$(stat -c%f $migrate_dir/$tfile)
13563
13564         mkdir -p $migrate_dir/dir_default_stripe2
13565         $SETSTRIPE -c 2 $migrate_dir/dir_default_stripe2
13566         $SETSTRIPE -c 2 $migrate_dir/${tfile}_stripe2
13567
13568         mkdir -p $other_dir
13569         ln $migrate_dir/$tfile $other_dir/luna
13570         ln $migrate_dir/$tfile $migrate_dir/sofia
13571         ln $other_dir/$tfile $migrate_dir/david
13572         ln -s $migrate_dir/$tfile $other_dir/zachary
13573         ln -s $migrate_dir/$tfile $migrate_dir/${tfile}_ln
13574         ln -s $other_dir/$tfile $migrate_dir/${tfile}_ln_other
13575
13576         $LFS migrate -m $MDTIDX $migrate_dir ||
13577                 error "fails on migrating remote dir to MDT1"
13578
13579         echo "migratate to MDT1, then checking.."
13580         for ((i = 0; i < 10; i++)); do
13581                 for file in $(find $migrate_dir/dir_${i}); do
13582                         mdt_index=$($LFS getstripe -M $file)
13583                         [ $mdt_index == $MDTIDX ] ||
13584                                 error "$file is not on MDT${MDTIDX}"
13585                 done
13586         done
13587
13588         # the multiple link file should still in MDT0
13589         mdt_index=$($LFS getstripe -M $migrate_dir/$tfile)
13590         [ $mdt_index == 0 ] ||
13591                 error "$file is not on MDT${MDTIDX}"
13592
13593         local new_dir_flag=$(lsattr -a $migrate_dir | awk '/\/\.$/ {print $1}')
13594         [ "$old_dir_flag" = "$new_dir_flag" ] ||
13595                 error " expect $old_dir_flag get $new_dir_flag"
13596
13597         local new_file_flag=$(lsattr $migrate_dir/$tfile | awk '{print $1}')
13598         [ "$old_file_flag" = "$new_file_flag" ] ||
13599                 error " expect $old_file_flag get $new_file_flag"
13600
13601         local new_dir_mode=$(stat -c%f $migrate_dir)
13602         [ "$old_dir_mode" = "$new_dir_mode" ] ||
13603                 error "expect mode $old_dir_mode get $new_dir_mode"
13604
13605         local new_file_mode=$(stat -c%f $migrate_dir/$tfile)
13606         [ "$old_file_mode" = "$new_file_mode" ] ||
13607                 error "expect mode $old_file_mode get $new_file_mode"
13608
13609         diff /etc/passwd $migrate_dir/$tfile ||
13610                 error "$tfile different after migration"
13611
13612         diff /etc/passwd $other_dir/luna ||
13613                 error "luna different after migration"
13614
13615         diff /etc/passwd $migrate_dir/sofia ||
13616                 error "sofia different after migration"
13617
13618         diff /etc/passwd $migrate_dir/david ||
13619                 error "david different after migration"
13620
13621         diff /etc/passwd $other_dir/zachary ||
13622                 error "zachary different after migration"
13623
13624         diff /etc/passwd $migrate_dir/${tfile}_ln ||
13625                 error "${tfile}_ln different after migration"
13626
13627         diff /etc/passwd $migrate_dir/${tfile}_ln_other ||
13628                 error "${tfile}_ln_other different after migration"
13629
13630         stripe_count=$($LFS getstripe -c $migrate_dir/dir_default_stripe2)
13631         [ $stripe_count = 2 ] ||
13632                 error "dir strpe_count $d != 2 after migration."
13633
13634         stripe_count=$($LFS getstripe -c $migrate_dir/${tfile}_stripe2)
13635         [ $stripe_count = 2 ] ||
13636                 error "file strpe_count $d != 2 after migration."
13637
13638         #migrate back to MDT0
13639         MDTIDX=0
13640
13641         $LFS migrate -m $MDTIDX $migrate_dir ||
13642                 error "fails on migrating remote dir to MDT0"
13643
13644         echo "migrate back to MDT0, checking.."
13645         for file in $(find $migrate_dir); do
13646                 mdt_index=$($LFS getstripe -M $file)
13647                 [ $mdt_index == $MDTIDX ] ||
13648                         error "$file is not on MDT${MDTIDX}"
13649         done
13650
13651         local new_dir_flag=$(lsattr -a $migrate_dir | awk '/\/\.$/ {print $1}')
13652         [ "$old_dir_flag" = "$new_dir_flag" ] ||
13653                 error " expect $old_dir_flag get $new_dir_flag"
13654
13655         local new_file_flag=$(lsattr $migrate_dir/$tfile | awk '{print $1}')
13656         [ "$old_file_flag" = "$new_file_flag" ] ||
13657                 error " expect $old_file_flag get $new_file_flag"
13658
13659         local new_dir_mode=$(stat -c%f $migrate_dir)
13660         [ "$old_dir_mode" = "$new_dir_mode" ] ||
13661                 error "expect mode $old_dir_mode get $new_dir_mode"
13662
13663         local new_file_mode=$(stat -c%f $migrate_dir/$tfile)
13664         [ "$old_file_mode" = "$new_file_mode" ] ||
13665                 error "expect mode $old_file_mode get $new_file_mode"
13666
13667         diff /etc/passwd ${migrate_dir}/$tfile ||
13668                 error "$tfile different after migration"
13669
13670         diff /etc/passwd ${other_dir}/luna ||
13671                 error "luna different after migration"
13672
13673         diff /etc/passwd ${migrate_dir}/sofia ||
13674                 error "sofia different after migration"
13675
13676         diff /etc/passwd ${other_dir}/zachary ||
13677                 error "zachary different after migration"
13678
13679         diff /etc/passwd $migrate_dir/${tfile}_ln ||
13680                 error "${tfile}_ln different after migration"
13681
13682         diff /etc/passwd $migrate_dir/${tfile}_ln_other ||
13683                 error "${tfile}_ln_other different after migration"
13684
13685         stripe_count=$($LFS getstripe -c ${migrate_dir}/dir_default_stripe2)
13686         [ $stripe_count = 2 ] ||
13687                 error "dir strpe_count $d != 2 after migration."
13688
13689         stripe_count=$($LFS getstripe -c ${migrate_dir}/${tfile}_stripe2)
13690         [ $stripe_count = 2 ] ||
13691                 error "file strpe_count $d != 2 after migration."
13692
13693         rm -rf $DIR/$tdir || error "rm dir failed after migration"
13694 }
13695 run_test 230b "migrate directory"
13696
13697 test_230c() {
13698         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13699         remote_mds_nodsh && skip "remote MDS with nodsh" && return
13700         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13701         local MDTIDX=1
13702         local mdt_index
13703         local file
13704         local migrate_dir=$DIR/$tdir/migrate_dir
13705
13706         #If migrating directory fails in the middle, all entries of
13707         #the directory is still accessiable.
13708         test_mkdir $DIR/$tdir
13709         test_mkdir -i0 -c1 $migrate_dir
13710         stat $migrate_dir
13711         createmany -o $migrate_dir/f 10 ||
13712                 error "create files under ${migrate_dir} failed"
13713
13714         #failed after migrating 5 entries
13715         #OBD_FAIL_MIGRATE_ENTRIES       0x1801
13716         do_facet mds1 lctl set_param fail_loc=0x20001801
13717         do_facet mds1 lctl  set_param fail_val=5
13718         local t=$(ls $migrate_dir | wc -l)
13719         $LFS migrate --mdt-index $MDTIDX $migrate_dir &&
13720                 error "migrate should fail after 5 entries"
13721
13722         mkdir $migrate_dir/dir &&
13723                 error "mkdir succeeds under migrating directory"
13724         touch $migrate_dir/file &&
13725                 error "touch file succeeds under migrating directory"
13726
13727         local u=$(ls $migrate_dir | wc -l)
13728         [ "$u" == "$t" ] || error "$u != $t during migration"
13729
13730         for file in $(find $migrate_dir); do
13731                 stat $file || error "stat $file failed"
13732         done
13733
13734         do_facet mds1 lctl set_param fail_loc=0
13735         do_facet mds1 lctl set_param fail_val=0
13736
13737         $LFS migrate -m $MDTIDX $migrate_dir ||
13738                 error "migrate open files should failed with open files"
13739
13740         echo "Finish migration, then checking.."
13741         for file in $(find $migrate_dir); do
13742                 mdt_index=$($LFS getstripe -M $file)
13743                 [ $mdt_index == $MDTIDX ] ||
13744                         error "$file is not on MDT${MDTIDX}"
13745         done
13746
13747         rm -rf $DIR/$tdir || error "rm dir failed after migration"
13748 }
13749 run_test 230c "check directory accessiblity if migration is failed"
13750
13751 test_230d() {
13752         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13753         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13754         local MDTIDX=1
13755         local mdt_index
13756         local migrate_dir=$DIR/$tdir/migrate_dir
13757         local i
13758         local j
13759
13760         test_mkdir $DIR/$tdir
13761         test_mkdir -i0 -c1 $migrate_dir
13762
13763         for ((i=0; i<100; i++)); do
13764                 test_mkdir -i0 -c1 $migrate_dir/dir_${i}
13765                 createmany -o $migrate_dir/dir_${i}/f 100 ||
13766                         error "create files under remote dir failed $i"
13767         done
13768
13769         $LFS migrate -m $MDTIDX $migrate_dir ||
13770                 error "migrate remote dir error"
13771
13772         echo "Finish migration, then checking.."
13773         for file in $(find $migrate_dir); do
13774                 mdt_index=$($LFS getstripe -M $file)
13775                 [ $mdt_index == $MDTIDX ] ||
13776                         error "$file is not on MDT${MDTIDX}"
13777         done
13778
13779         rm -rf $DIR/$tdir || error "rm dir failed after migration"
13780 }
13781 run_test 230d "check migrate big directory"
13782
13783 test_230e() {
13784         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13785         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13786         local i
13787         local j
13788         local a_fid
13789         local b_fid
13790
13791         mkdir -p $DIR/$tdir
13792         mkdir $DIR/$tdir/migrate_dir
13793         mkdir $DIR/$tdir/other_dir
13794         touch $DIR/$tdir/migrate_dir/a
13795         ln $DIR/$tdir/migrate_dir/a $DIR/$tdir/other_dir/b
13796         ls $DIR/$tdir/other_dir
13797
13798         $LFS migrate -m 1 $DIR/$tdir/migrate_dir ||
13799                 error "migrate dir fails"
13800
13801         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir)
13802         [ $mdt_index == 1 ] || error "migrate_dir is not on MDT1"
13803
13804         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir/a)
13805         [ $mdt_index == 0 ] || error "a is not on MDT0"
13806
13807         $LFS migrate -m 1 $DIR/$tdir/other_dir ||
13808                 error "migrate dir fails"
13809
13810         mdt_index=$($LFS getstripe -M $DIR/$tdir/other_dir)
13811         [ $mdt_index == 1 ] || error "other_dir is not on MDT1"
13812
13813         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir/a)
13814         [ $mdt_index == 1 ] || error "a is not on MDT1"
13815
13816         mdt_index=$($LFS getstripe -M $DIR/$tdir/other_dir/b)
13817         [ $mdt_index == 1 ] || error "b is not on MDT1"
13818
13819         a_fid=$($LFS path2fid $DIR/$tdir/migrate_dir/a)
13820         b_fid=$($LFS path2fid $DIR/$tdir/other_dir/b)
13821
13822         [ "$a_fid" = "$b_fid" ] || error "different fid after migration"
13823
13824         rm -rf $DIR/$tdir || error "rm dir failed after migration"
13825 }
13826 run_test 230e "migrate mulitple local link files"
13827
13828 test_230f() {
13829         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13830         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13831         local a_fid
13832         local ln_fid
13833
13834         mkdir -p $DIR/$tdir
13835         mkdir $DIR/$tdir/migrate_dir
13836         $LFS mkdir -i1 $DIR/$tdir/other_dir
13837         touch $DIR/$tdir/migrate_dir/a
13838         ln $DIR/$tdir/migrate_dir/a $DIR/$tdir/other_dir/ln1
13839         ln $DIR/$tdir/migrate_dir/a $DIR/$tdir/other_dir/ln2
13840         ls $DIR/$tdir/other_dir
13841
13842         # a should be migrated to MDT1, since no other links on MDT0
13843         $LFS migrate -m 1 $DIR/$tdir/migrate_dir ||
13844                 error "#1 migrate dir fails"
13845         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir)
13846         [ $mdt_index == 1 ] || error "migrate_dir is not on MDT1"
13847         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir/a)
13848         [ $mdt_index == 1 ] || error "a is not on MDT1"
13849
13850         # a should stay on MDT1, because it is a mulitple link file
13851         $LFS migrate -m 0 $DIR/$tdir/migrate_dir ||
13852                 error "#2 migrate dir fails"
13853         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir/a)
13854         [ $mdt_index == 1 ] || error "a is not on MDT1"
13855
13856         $LFS migrate -m 1 $DIR/$tdir/migrate_dir ||
13857                 error "#3 migrate dir fails"
13858
13859         a_fid=$($LFS path2fid $DIR/$tdir/migrate_dir/a)
13860         ln_fid=$($LFS path2fid $DIR/$tdir/other_dir/ln1)
13861         [ "$a_fid" = "$ln_fid" ] || error "different fid after migrate to MDT1"
13862
13863         rm -rf $DIR/$tdir/other_dir/ln1 || error "unlink ln1 fails"
13864         rm -rf $DIR/$tdir/other_dir/ln2 || error "unlink ln2 fails"
13865
13866         # a should be migrated to MDT0, since no other links on MDT1
13867         $LFS migrate -m 0 $DIR/$tdir/migrate_dir ||
13868                 error "#4 migrate dir fails"
13869         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir/a)
13870         [ $mdt_index == 0 ] || error "a is not on MDT0"
13871
13872         rm -rf $DIR/$tdir || error "rm dir failed after migration"
13873 }
13874 run_test 230f "migrate mulitple remote link files"
13875
13876 test_230g() {
13877         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13878         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13879
13880         mkdir -p $DIR/$tdir/migrate_dir
13881
13882         $LFS migrate -m 1000 $DIR/$tdir/migrate_dir &&
13883                 error "migrating dir to non-exist MDT succeeds"
13884         true
13885 }
13886 run_test 230g "migrate dir to non-exist MDT"
13887
13888 test_230h() {
13889         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13890         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13891         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.64) ] &&
13892                 skip "Need MDS version at least 2.7.64" && return
13893         local mdt_index
13894
13895         mkdir -p $DIR/$tdir/migrate_dir
13896
13897         $LFS migrate -m1 $DIR &&
13898                 error "migrating mountpoint1 should fail"
13899
13900         $LFS migrate -m1 $DIR/$tdir/.. &&
13901                 error "migrating mountpoint2 should fail"
13902
13903         $LFS migrate -m1 $DIR/$tdir/migrate_dir/.. ||
13904                 error "migrating $tdir fail"
13905
13906         mdt_index=$($LFS getstripe -M $DIR/$tdir)
13907         [ $mdt_index == 1 ] || error "$mdt_index != 1 after migration"
13908
13909         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir)
13910         [ $mdt_index == 1 ] || error "$mdt_index != 1 after migration"
13911
13912 }
13913 run_test 230h "migrate .. and root"
13914
13915 test_230i() {
13916         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13917         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13918
13919         mkdir -p $DIR/$tdir/migrate_dir
13920
13921         $LFS migrate -m 1 $DIR/$tdir/migrate_dir/ ||
13922                 error "migration fails with a tailing slash"
13923
13924         $LFS migrate -m 0 $DIR/$tdir/migrate_dir// ||
13925                 error "migration fails with two tailing slashes"
13926 }
13927 run_test 230i "lfs migrate -m tolerates trailing slashes"
13928
13929 test_231a()
13930 {
13931         # For simplicity this test assumes that max_pages_per_rpc
13932         # is the same across all OSCs
13933         local max_pages=$($LCTL get_param -n osc.*.max_pages_per_rpc | head -n1)
13934         local bulk_size=$((max_pages * 4096))
13935         local brw_size=$(do_facet ost1 $LCTL get_param -n obdfilter.*.brw_size |
13936                                        head -n 1)
13937
13938         mkdir -p $DIR/$tdir
13939         $LFS setstripe -S ${brw_size}M $DIR/$tdir ||
13940                 error "failed to set stripe with -S ${brw_size}M option"
13941
13942         # clear the OSC stats
13943         $LCTL set_param osc.*.stats=0 &>/dev/null
13944         stop_writeback
13945
13946         # Client writes $bulk_size - there must be 1 rpc for $max_pages.
13947         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=$bulk_size count=1 \
13948                 oflag=direct &>/dev/null || error "dd failed"
13949
13950         sync; sleep 1; sync # just to be safe
13951         local nrpcs=$($LCTL get_param osc.*.stats |awk '/ost_write/ {print $2}')
13952         if [ x$nrpcs != "x1" ]; then
13953                 $LCTL get_param osc.*.stats
13954                 error "found $nrpcs ost_write RPCs, not 1 as expected"
13955         fi
13956
13957         start_writeback
13958         # Drop the OSC cache, otherwise we will read from it
13959         cancel_lru_locks osc
13960
13961         # clear the OSC stats
13962         $LCTL set_param osc.*.stats=0 &>/dev/null
13963
13964         # Client reads $bulk_size.
13965         dd if=$DIR/$tdir/$tfile of=/dev/null bs=$bulk_size count=1 \
13966                 iflag=direct &>/dev/null || error "dd failed"
13967
13968         nrpcs=$($LCTL get_param osc.*.stats | awk '/ost_read/ { print $2 }')
13969         if [ x$nrpcs != "x1" ]; then
13970                 $LCTL get_param osc.*.stats
13971                 error "found $nrpcs ost_read RPCs, not 1 as expected"
13972         fi
13973 }
13974 run_test 231a "checking that reading/writing of BRW RPC size results in one RPC"
13975
13976 test_231b() {
13977         mkdir -p $DIR/$tdir
13978         local i
13979         for i in {0..1023}; do
13980                 dd if=/dev/zero of=$DIR/$tdir/$tfile conv=notrunc \
13981                         seek=$((2 * i)) bs=4096 count=1 &>/dev/null ||
13982                         error "dd of=$DIR/$tdir/$tfile seek=$((2 * i)) failed"
13983         done
13984         sync
13985 }
13986 run_test 231b "must not assert on fully utilized OST request buffer"
13987
13988 test_232() {
13989         mkdir -p $DIR/$tdir
13990         #define OBD_FAIL_LDLM_OST_LVB            0x31c
13991         $LCTL set_param fail_loc=0x31c
13992
13993         # ignore dd failure
13994         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=1 || true
13995
13996         $LCTL set_param fail_loc=0
13997         umount_client $MOUNT || error "umount failed"
13998         mount_client $MOUNT || error "mount failed"
13999 }
14000 run_test 232 "failed lock should not block umount"
14001
14002 test_233a() {
14003         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.64) ] ||
14004         { skip "Need MDS version at least 2.3.64"; return; }
14005         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
14006
14007         local fid=$($LFS path2fid $MOUNT)
14008         stat $MOUNT/.lustre/fid/$fid > /dev/null ||
14009                 error "cannot access $MOUNT using its FID '$fid'"
14010 }
14011 run_test 233a "checking that OBF of the FS root succeeds"
14012
14013 test_233b() {
14014         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.5.90) ] ||
14015         { skip "Need MDS version at least 2.5.90"; return; }
14016         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
14017
14018         local fid=$($LFS path2fid $MOUNT/.lustre)
14019         stat $MOUNT/.lustre/fid/$fid > /dev/null ||
14020                 error "cannot access $MOUNT/.lustre using its FID '$fid'"
14021
14022         fid=$($LFS path2fid $MOUNT/.lustre/fid)
14023         stat $MOUNT/.lustre/fid/$fid > /dev/null ||
14024                 error "cannot access $MOUNT/.lustre/fid using its FID '$fid'"
14025 }
14026 run_test 233b "checking that OBF of the FS .lustre succeeds"
14027
14028 test_234() {
14029         local p="$TMP/sanityN-$TESTNAME.parameters"
14030         save_lustre_params client "llite.*.xattr_cache" > $p
14031         lctl set_param llite.*.xattr_cache 1 ||
14032                 { skip "xattr cache is not supported"; return 0; }
14033
14034         mkdir -p $DIR/$tdir || error "mkdir failed"
14035         touch $DIR/$tdir/$tfile || error "touch failed"
14036         # OBD_FAIL_LLITE_XATTR_ENOMEM
14037         $LCTL set_param fail_loc=0x1405
14038         # output of the form: attr 2 4 44 3 fc13 x86_64
14039         V=($(IFS=".-" rpm -q attr))
14040         if [[ ${V[1]} > 2 || ${V[2]} > 4 || ${V[3]} > 44 ||
14041               ${V[1]} = 2 && ${V[2]} = 4 && ${V[3]} = 44 && ${V[4]} > 6 ]]; then
14042                 # attr pre-2.4.44-7 had a bug with rc
14043                 # LU-3703 - SLES 11 and FC13 clients have older attr
14044                 getfattr -n user.attr $DIR/$tdir/$tfile &&
14045                         error "getfattr should have failed with ENOMEM"
14046         else
14047                 skip "LU-3703: attr version $(getfattr --version) too old"
14048         fi
14049         $LCTL set_param fail_loc=0x0
14050         rm -rf $DIR/$tdir
14051
14052         restore_lustre_params < $p
14053         rm -f $p
14054 }
14055 run_test 234 "xattr cache should not crash on ENOMEM"
14056
14057 test_235() {
14058         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.52) ] &&
14059                 skip "Need MDS version at least 2.4.52" && return
14060         flock_deadlock $DIR/$tfile
14061         local RC=$?
14062         case $RC in
14063                 0)
14064                 ;;
14065                 124) error "process hangs on a deadlock"
14066                 ;;
14067                 *) error "error executing flock_deadlock $DIR/$tfile"
14068                 ;;
14069         esac
14070 }
14071 run_test 235 "LU-1715: flock deadlock detection does not work properly"
14072
14073 #LU-2935
14074 test_236() {
14075         check_swap_layouts_support && return 0
14076         test_mkdir -c1 $DIR/$tdir
14077
14078         local ref1=/etc/passwd
14079         local ref2=/etc/group
14080         local file1=$DIR/$tdir/f1
14081         local file2=$DIR/$tdir/f2
14082
14083         $SETSTRIPE -c 1 $file1 || error "cannot setstripe on '$file1': rc = $?"
14084         cp $ref1 $file1 || error "cp $ref1 $file1 failed: rc = $?"
14085         $SETSTRIPE -c 2 $file2 || error "cannot setstripe on '$file2': rc = $?"
14086         cp $ref2 $file2 || error "cp $ref2 $file2 failed: rc = $?"
14087         local fd=$(free_fd)
14088         local cmd="exec $fd<>$file2"
14089         eval $cmd
14090         rm $file2
14091         $LFS swap_layouts $file1 /proc/self/fd/${fd} ||
14092                 error "cannot swap layouts of '$file1' and /proc/self/fd/${fd}"
14093         cmd="exec $fd>&-"
14094         eval $cmd
14095         cmp $ref2 $file1 || error "content compare failed ($ref2 != $file1)"
14096
14097         #cleanup
14098         rm -rf $DIR/$tdir
14099 }
14100 run_test 236 "Layout swap on open unlinked file"
14101
14102 # test to verify file handle related system calls
14103 # (name_to_handle_at/open_by_handle_at)
14104 # The new system calls are supported in glibc >= 2.14.
14105
14106 test_237() {
14107         echo "Test file_handle syscalls" > $DIR/$tfile ||
14108                 error "write failed"
14109         check_fhandle_syscalls $DIR/$tfile ||
14110                 error "check_fhandle_syscalls failed"
14111 }
14112 run_test 237 "Verify name_to_handle_at/open_by_handle_at syscalls"
14113
14114 # LU-4659 linkea consistency
14115 test_238() {
14116         local server_version=$(lustre_version_code $SINGLEMDS)
14117
14118         [[ $server_version -gt $(version_code 2.5.57) ]] ||
14119                 [[ $server_version -gt $(version_code 2.5.1) &&
14120                    $server_version -lt $(version_code 2.5.50) ]] ||
14121                 { skip "Need MDS version at least 2.5.58 or 2.5.2+"; return; }
14122
14123         touch $DIR/$tfile
14124         ln $DIR/$tfile $DIR/$tfile.lnk
14125         touch $DIR/$tfile.new
14126         mv $DIR/$tfile.new $DIR/$tfile
14127         local fid1=$($LFS path2fid $DIR/$tfile)
14128         local fid2=$($LFS path2fid $DIR/$tfile.lnk)
14129         local path1=$($LFS fid2path $FSNAME "$fid1")
14130         [ $tfile == $path1 ] || error "linkea inconsistent: $tfile $fid1 $path1"
14131         local path2=$($LFS fid2path $FSNAME "$fid2")
14132         [ $tfile.lnk == $path2 ] ||
14133                 error "linkea inconsistent: $tfile.lnk $fid2 $path2!"
14134         rm -f $DIR/$tfile*
14135 }
14136 run_test 238 "Verify linkea consistency"
14137
14138 test_239() {
14139         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.5.60) ] &&
14140                 skip "Need MDS version at least 2.5.60" && return
14141         local list=$(comma_list $(mdts_nodes))
14142
14143         mkdir -p $DIR/$tdir
14144         createmany -o $DIR/$tdir/f- 5000
14145         unlinkmany $DIR/$tdir/f- 5000
14146         [ $(lustre_version_code $SINGLEMDS) -gt $(version_code 2.10.53) ] &&
14147                 do_nodes $list "lctl set_param -n osp.*.force_sync=1"
14148         changes=$(do_nodes $list "lctl get_param -n osp.*MDT*.sync_changes \
14149                         osp.*MDT*.sync_in_flight" | calc_sum)
14150         [ "$changes" -eq 0 ] || error "$changes not synced"
14151 }
14152 run_test 239 "osp_sync test"
14153
14154 test_239a() { #LU-5297
14155         remote_mds_nodsh && skip "remote MDS with nodsh" && return
14156         touch $DIR/$tfile
14157         #define OBD_FAIL_OSP_CHECK_INVALID_REC     0x2100
14158         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x2100
14159         chgrp $RUNAS_GID $DIR/$tfile
14160         wait_delete_completed
14161 }
14162 run_test 239a "process invalid osp sync record correctly"
14163
14164 test_239b() { #LU-5297
14165         remote_mds_nodsh && skip "remote MDS with nodsh" && return
14166         touch $DIR/$tfile1
14167         #define OBD_FAIL_OSP_CHECK_ENOMEM     0x2101
14168         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x2101
14169         chgrp $RUNAS_GID $DIR/$tfile1
14170         wait_delete_completed
14171         do_facet $SINGLEMDS $LCTL set_param fail_loc=0
14172         touch $DIR/$tfile2
14173         chgrp $RUNAS_GID $DIR/$tfile2
14174         wait_delete_completed
14175 }
14176 run_test 239b "process osp sync record with ENOMEM error correctly"
14177
14178 test_240() {
14179         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
14180         remote_mds_nodsh && skip "remote MDS with nodsh" && return
14181
14182         mkdir -p $DIR/$tdir
14183
14184         $LFS mkdir -i 0 $DIR/$tdir/d0 ||
14185                 error "failed to mkdir $DIR/$tdir/d0 on MDT0"
14186         $LFS mkdir -i 1 $DIR/$tdir/d0/d1 ||
14187                 error "failed to mkdir $DIR/$tdir/d0/d1 on MDT1"
14188
14189         umount_client $MOUNT || error "umount failed"
14190         #define OBD_FAIL_TGT_DELAY_CONDITIONAL   0x713
14191         do_facet mds2 lctl set_param fail_loc=0x713 fail_val=1
14192         mount_client $MOUNT || error "failed to mount client"
14193
14194         echo "stat $DIR/$tdir/d0/d1, should not fail/ASSERT"
14195         stat $DIR/$tdir/d0/d1 || error "fail to stat $DIR/$tdir/d0/d1"
14196 }
14197 run_test 240 "race between ldlm enqueue and the connection RPC (no ASSERT)"
14198
14199 test_241_bio() {
14200         for LOOP in $(seq $1); do
14201                 dd if=$DIR/$tfile of=/dev/null bs=40960 count=1 2>/dev/null
14202                 cancel_lru_locks $OSC || true
14203         done
14204 }
14205
14206 test_241_dio() {
14207         for LOOP in $(seq $1); do
14208                 dd if=$DIR/$tfile of=/dev/null bs=40960 count=1 \
14209                                                 iflag=direct 2>/dev/null
14210         done
14211 }
14212
14213 test_241a() { # was test_241
14214         dd if=/dev/zero of=$DIR/$tfile count=1 bs=40960
14215         ls -la $DIR/$tfile
14216         cancel_lru_locks $OSC
14217         test_241_bio 1000 &
14218         PID=$!
14219         test_241_dio 1000
14220         wait $PID
14221 }
14222 run_test 241a "bio vs dio"
14223
14224 test_241b() {
14225         dd if=/dev/zero of=$DIR/$tfile count=1 bs=40960
14226         ls -la $DIR/$tfile
14227         test_241_dio 1000 &
14228         PID=$!
14229         test_241_dio 1000
14230         wait $PID
14231 }
14232 run_test 241b "dio vs dio"
14233
14234 test_242() {
14235         remote_mds_nodsh && skip "remote MDS with nodsh" && return
14236         mkdir -p $DIR/$tdir
14237         touch $DIR/$tdir/$tfile
14238
14239         #define OBD_FAIL_MDS_READPAGE_PACK      0x105
14240         do_facet mds1 lctl set_param fail_loc=0x105
14241         /bin/ls $DIR/$tdir && error "ls $DIR/$tdir should fail"
14242
14243         do_facet mds1 lctl set_param fail_loc=0
14244         /bin/ls $DIR/$tdir || error "ls $DIR/$tdir failed"
14245 }
14246 run_test 242 "mdt_readpage failure should not cause directory unreadable"
14247
14248 test_243()
14249 {
14250         test_mkdir $DIR/$tdir
14251         group_lock_test -d $DIR/$tdir || error "A group lock test failed"
14252 }
14253 run_test 243 "various group lock tests"
14254
14255 test_244()
14256 {
14257         test_mkdir $DIR/$tdir
14258         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=35
14259         sendfile_grouplock $DIR/$tdir/$tfile || \
14260                 error "sendfile+grouplock failed"
14261         rm -rf $DIR/$tdir
14262 }
14263 run_test 244 "sendfile with group lock tests"
14264
14265 test_245() {
14266         local flagname="multi_mod_rpcs"
14267         local connect_data_name="max_mod_rpcs"
14268         local out
14269
14270         # check if multiple modify RPCs flag is set
14271         out=$($LCTL get_param mdc.$FSNAME-MDT0000-*.import |
14272                 grep "connect_flags:")
14273         echo "$out"
14274
14275         echo "$out" | grep -qw $flagname
14276         if [ $? -ne 0 ]; then
14277                 echo "connect flag $flagname is not set"
14278                 return
14279         fi
14280
14281         # check if multiple modify RPCs data is set
14282         out=$($LCTL get_param mdc.$FSNAME-MDT0000-*.import)
14283         echo "$out"
14284
14285         echo "$out" | grep -qw $connect_data_name ||
14286                 error "import should have connect data $connect_data_name"
14287 }
14288 run_test 245 "check mdc connection flag/data: multiple modify RPCs"
14289
14290 test_246() { # LU-7371
14291         remote_ost_nodsh && skip "remote OST with nodsh" && return
14292         [ $(lustre_version_code ost1) -lt $(version_code 2.7.62) ] &&
14293                 skip "Need OST version >= 2.7.62" && return 0
14294         do_facet ost1 $LCTL set_param fail_val=4095
14295 #define OBD_FAIL_OST_READ_SIZE          0x234
14296         do_facet ost1 $LCTL set_param fail_loc=0x234
14297         $LFS setstripe $DIR/$tfile -i 0 -c 1
14298         dd if=/dev/zero of=$DIR/$tfile bs=4095 count=1 > /dev/null 2>&1
14299         cancel_lru_locks $FSNAME-OST0000
14300         dd if=$DIR/$tfile of=/dev/null bs=1048576 || error "Read failed"
14301 }
14302 run_test 246 "Read file of size 4095 should return right length"
14303
14304 cleanup_247() {
14305         local submount=$1
14306
14307         trap 0
14308         umount_client $submount
14309         rmdir $submount
14310 }
14311
14312 test_247a() {
14313         lctl get_param -n mdc.$FSNAME-MDT0000*.import |
14314                 grep -q subtree ||
14315                 { skip "Fileset feature is not supported"; return; }
14316
14317         local submount=${MOUNT}_$tdir
14318
14319         mkdir $MOUNT/$tdir
14320         mkdir -p $submount || error "mkdir $submount failed"
14321         FILESET="$FILESET/$tdir" mount_client $submount ||
14322                 error "mount $submount failed"
14323         trap "cleanup_247 $submount" EXIT
14324         echo foo > $submount/$tfile || error "write $submount/$tfile failed"
14325         [ $(cat $MOUNT/$tdir/$tfile) = "foo" ] ||
14326                 error "read $MOUNT/$tdir/$tfile failed"
14327         cleanup_247 $submount
14328 }
14329 run_test 247a "mount subdir as fileset"
14330
14331 test_247b() {
14332         lctl get_param -n mdc.$FSNAME-MDT0000*.import | grep -q subtree ||
14333                 { skip "Fileset feature is not supported"; return; }
14334
14335         local submount=${MOUNT}_$tdir
14336
14337         rm -rf $MOUNT/$tdir
14338         mkdir -p $submount || error "mkdir $submount failed"
14339         SKIP_FILESET=1
14340         FILESET="$FILESET/$tdir" mount_client $submount &&
14341                 error "mount $submount should fail"
14342         rmdir $submount
14343 }
14344 run_test 247b "mount subdir that dose not exist"
14345
14346 test_247c() {
14347         lctl get_param -n mdc.$FSNAME-MDT0000*.import | grep -q subtree ||
14348                 { skip "Fileset feature is not supported"; return; }
14349
14350         local submount=${MOUNT}_$tdir
14351
14352         mkdir -p $MOUNT/$tdir/dir1
14353         mkdir -p $submount || error "mkdir $submount failed"
14354         trap "cleanup_247 $submount" EXIT
14355         FILESET="$FILESET/$tdir" mount_client $submount ||
14356                 error "mount $submount failed"
14357         local fid=$($LFS path2fid $MOUNT/)
14358         $LFS fid2path $submount $fid && error "fid2path should fail"
14359         cleanup_247 $submount
14360 }
14361 run_test 247c "running fid2path outside root"
14362
14363 test_247d() {
14364         lctl get_param -n mdc.$FSNAME-MDT0000*.import | grep -q subtree ||
14365                 { skip "Fileset feature is not supported"; return; }
14366
14367         local submount=${MOUNT}_$tdir
14368
14369         mkdir -p $MOUNT/$tdir/dir1
14370         mkdir -p $submount || error "mkdir $submount failed"
14371         FILESET="$FILESET/$tdir" mount_client $submount ||
14372                 error "mount $submount failed"
14373         trap "cleanup_247 $submount" EXIT
14374         local fid=$($LFS path2fid $submount/dir1)
14375         $LFS fid2path $submount $fid || error "fid2path should succeed"
14376         cleanup_247 $submount
14377 }
14378 run_test 247d "running fid2path inside root"
14379
14380 # LU-8037
14381 test_247e() {
14382         lctl get_param -n mdc.$FSNAME-MDT0000*.import |
14383                 grep -q subtree ||
14384                 { skip "Fileset feature is not supported"; return; }
14385
14386         local submount=${MOUNT}_$tdir
14387
14388         mkdir $MOUNT/$tdir
14389         mkdir -p $submount || error "mkdir $submount failed"
14390         FILESET="$FILESET/.." mount_client $submount &&
14391                 error "mount $submount should fail"
14392         rmdir $submount
14393 }
14394 run_test 247e "mount .. as fileset"
14395
14396 test_248() {
14397         local fast_read_sav=$($LCTL get_param -n llite.*.fast_read 2>/dev/null)
14398         [ -z "$fast_read_sav" ] && skip "no fast read support" && return
14399
14400         # create a large file for fast read verification
14401         dd if=/dev/zero of=$DIR/$tfile bs=1M count=128 > /dev/null 2>&1
14402
14403         # make sure the file is created correctly
14404         $CHECKSTAT -s $((128*1024*1024)) $DIR/$tfile ||
14405                 { rm -f $DIR/$tfile; skip "file creation error" && return; }
14406
14407         echo "Test 1: verify that fast read is 4 times faster on cache read"
14408
14409         # small read with fast read enabled
14410         $LCTL set_param -n llite.*.fast_read=1
14411         local t_fast=$(dd if=$DIR/$tfile of=/dev/null bs=4k 2>&1 |
14412                 egrep -o '([[:digit:]\.\,e-]+) s' | cut -d's' -f1 |
14413                 sed -e 's/,/./' -e 's/[eE]+*/\*10\^/')
14414         # small read with fast read disabled
14415         $LCTL set_param -n llite.*.fast_read=0
14416         local t_slow=$(dd if=$DIR/$tfile of=/dev/null bs=4k 2>&1 |
14417                 egrep -o '([[:digit:]\.\,e-]+) s' | cut -d's' -f1 |
14418                 sed -e 's/,/./' -e 's/[eE]+*/\*10\^/')
14419
14420         # verify that fast read is 4 times faster for cache read
14421         [ $(bc <<< "4 * $t_fast < $t_slow") -eq 1 ] ||
14422                 error_not_in_vm "fast read was not 4 times faster: " \
14423                            "$t_fast vs $t_slow"
14424
14425         echo "Test 2: verify the performance between big and small read"
14426         $LCTL set_param -n llite.*.fast_read=1
14427
14428         # 1k non-cache read
14429         cancel_lru_locks osc
14430         local t_1k=$(dd if=$DIR/$tfile of=/dev/null bs=1k 2>&1 |
14431                 egrep -o '([[:digit:]\.\,e-]+) s' | cut -d's' -f1 |
14432                 sed -e 's/,/./' -e 's/[eE]+*/\*10\^/')
14433
14434         # 1M non-cache read
14435         cancel_lru_locks osc
14436         local t_1m=$(dd if=$DIR/$tfile of=/dev/null bs=1k 2>&1 |
14437                 egrep -o '([[:digit:]\.\,e-]+) s' | cut -d's' -f1 |
14438                 sed -e 's/,/./' -e 's/[eE]+*/\*10\^/')
14439
14440         # verify that big IO is not 4 times faster than small IO
14441         [ $(bc <<< "4 * $t_1k >= $t_1m") -eq 1 ] ||
14442                 error_not_in_vm "bigger IO is way too fast: $t_1k vs $t_1m"
14443
14444         $LCTL set_param -n llite.*.fast_read=$fast_read_sav
14445         rm -f $DIR/$tfile
14446 }
14447 run_test 248 "fast read verification"
14448
14449 test_249() { # LU-7890
14450         rm -f $DIR/$tfile
14451         $SETSTRIPE -c 1 $DIR/$tfile
14452
14453         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.53) ] &&
14454         skip "Need at least version 2.8.54"
14455
14456         # Offset 2T == 4k * 512M
14457         dd if=/dev/zero of=$DIR/$tfile bs=4k count=1 seek=512M ||
14458                 error "dd to 2T offset failed"
14459 }
14460 run_test 249 "Write above 2T file size"
14461
14462 test_250() {
14463         [ "$(facet_fstype ost$(($($GETSTRIPE -i $DIR/$tfile) + 1)))" = "zfs" ] \
14464          && skip "no 16TB file size limit on ZFS" && return
14465
14466         $SETSTRIPE -c 1 $DIR/$tfile
14467         # ldiskfs extent file size limit is (16TB - 4KB - 1) bytes
14468         local size=$((16 * 1024 * 1024 * 1024 * 1024 - 4096 - 1))
14469         $TRUNCATE $DIR/$tfile $size || error "truncate $tfile to $size failed"
14470         dd if=/dev/zero of=$DIR/$tfile bs=10 count=1 oflag=append \
14471                 conv=notrunc,fsync && error "append succeeded"
14472         return 0
14473 }
14474 run_test 250 "Write above 16T limit"
14475
14476 test_251() {
14477         $SETSTRIPE -c -1 -S 1048576 $DIR/$tfile
14478
14479         #define OBD_FAIL_LLITE_LOST_LAYOUT 0x1407
14480         #Skip once - writing the first stripe will succeed
14481         $LCTL set_param fail_loc=0xa0001407 fail_val=1
14482         $MULTIOP $DIR/$tfile o:O_RDWR:w2097152c 2>&1 | grep -q "short write" &&
14483                 error "short write happened"
14484
14485         $LCTL set_param fail_loc=0xa0001407 fail_val=1
14486         $MULTIOP $DIR/$tfile or2097152c 2>&1 | grep -q "short read" &&
14487                 error "short read happened"
14488
14489         rm -f $DIR/$tfile
14490 }
14491 run_test 251 "Handling short read and write correctly"
14492
14493 test_252() {
14494         local tgt
14495         local dev
14496         local out
14497         local uuid
14498         local num
14499         local gen
14500
14501         remote_mds_nodsh && skip "remote MDS with nodsh" && return
14502         remote_ost_nodsh && skip "remote OST with nodsh" && return
14503         if [ "$(facet_fstype ost1)" != "ldiskfs" -o \
14504              "$(facet_fstype mds1)" != "ldiskfs" ]; then
14505                 skip "ldiskfs only test"
14506                 return
14507         fi
14508
14509         # check lr_reader on OST0000
14510         tgt=ost1
14511         dev=$(facet_device $tgt)
14512         out=$(do_facet $tgt $LR_READER $dev)
14513         [ $? -eq 0 ] || error "$LR_READER failed on target $tgt device $dev"
14514         echo "$out"
14515         uuid=$(echo "$out" | grep -i uuid | awk '{ print $2 }')
14516         [ "$uuid" == "$(ostuuid_from_index 0)" ] ||
14517                 error "Invalid uuid returned by $LR_READER on target $tgt"
14518         echo -e "uuid returned by $LR_READER is '$uuid'\n"
14519
14520         # check lr_reader -c on MDT0000
14521         tgt=mds1
14522         dev=$(facet_device $tgt)
14523         if ! do_facet $tgt $LR_READER -h | grep -q OPTIONS; then
14524                 echo "$LR_READER does not support additional options"
14525                 return 0
14526         fi
14527         out=$(do_facet $tgt $LR_READER -c $dev)
14528         [ $? -eq 0 ] || error "$LR_READER failed on target $tgt device $dev"
14529         echo "$out"
14530         num=$(echo "$out" | grep -c "mdtlov")
14531         [ "$num" -eq $((MDSCOUNT - 1)) ] ||
14532                 error "Invalid number of mdtlov clients returned by $LR_READER"
14533         echo -e "Number of mdtlov clients returned by $LR_READER is '$num'\n"
14534
14535         # check lr_reader -cr on MDT0000
14536         out=$(do_facet $tgt $LR_READER -cr $dev)
14537         [ $? -eq 0 ] || error "$LR_READER failed on target $tgt device $dev"
14538         echo "$out"
14539         echo "$out" | grep -q "^reply_data:$" ||
14540                 error "$LR_READER should have returned 'reply_data' section"
14541         num=$(echo "$out" | grep -c "client_generation")
14542         echo -e "Number of reply data returned by $LR_READER is '$num'\n"
14543 }
14544 run_test 252 "check lr_reader tool"
14545
14546 test_253_fill_ost() {
14547         local size_mb #how many MB should we write to pass watermark
14548         local lwm=$3  #low watermark
14549         local free_10mb #10% of free space
14550
14551         free_kb=$($LFS df $MOUNT | grep $1 | awk '{ print $4 }')
14552         size_mb=$((free_kb / 1024 - lwm))
14553         free_10mb=$((free_kb / 10240))
14554         #If 10% of free space cross low watermark use it
14555         if (( free_10mb > size_mb )); then
14556                 size_mb=$free_10mb
14557         else
14558                 #At least we need to store 1.1 of difference between
14559                 #free space and low watermark
14560                 size_mb=$((size_mb + size_mb / 10))
14561         fi
14562         if (( lwm <= $((free_kb / 1024)) )) || [ ! -f $DIR/$tdir/1 ]; then
14563                 dd if=/dev/zero of=$DIR/$tdir/1 bs=1M count=$size_mb \
14564                          oflag=append conv=notrunc
14565         fi
14566
14567         sleep_maxage
14568
14569         free_kb=$($LFS df $MOUNT | grep $1 | awk '{ print $4 }')
14570         echo "OST still has $((free_kb / 1024)) mbytes free"
14571 }
14572
14573 test_253() {
14574         local ostidx=0
14575         local rc=0
14576
14577         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14578         remote_mds_nodsh && skip "remote MDS with nodsh" && return
14579         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
14580
14581         local ost_name=$($LFS osts |
14582                 sed -n 's/^'$ostidx': \(.*\)_UUID .*/\1/p')
14583         # on the mdt's osc
14584         local mdtosc_proc1=$(get_mdtosc_proc_path $SINGLEMDS $ost_name)
14585         do_facet $SINGLEMDS $LCTL get_param -n \
14586                 osp.$mdtosc_proc1.reserved_mb_high ||
14587                 { skip  "remote MDS does not support reserved_mb_high" &&
14588                   return; }
14589
14590         rm -rf $DIR/$tdir
14591         wait_mds_ost_sync
14592         wait_delete_completed
14593         mkdir $DIR/$tdir
14594
14595         local last_wm_h=$(do_facet $SINGLEMDS $LCTL get_param -n \
14596                         osp.$mdtosc_proc1.reserved_mb_high)
14597         local last_wm_l=$(do_facet $SINGLEMDS $LCTL get_param -n \
14598                         osp.$mdtosc_proc1.reserved_mb_low)
14599         echo "prev high watermark $last_wm_h, prev low watermark $last_wm_l"
14600
14601         if ! combined_mgs_mds ; then
14602                 mount_mgs_client
14603         fi
14604         create_pool $FSNAME.$TESTNAME || error "Pool creation failed"
14605         do_facet mgs $LCTL pool_add $FSNAME.$TESTNAME $ost_name ||
14606                 error "Adding $ost_name to pool failed"
14607
14608         # Wait for client to see a OST at pool
14609         wait_update $HOSTNAME "$LCTL get_param -n
14610                 lov.$FSNAME-*.pools.$TESTNAME | sort -u |
14611                 grep $ost_name" "$ost_name""_UUID" $((TIMEOUT/2)) ||
14612                 error "Client can not see the pool"
14613         $SETSTRIPE $DIR/$tdir -i $ostidx -c 1 -p $FSNAME.$TESTNAME ||
14614                 error "Setstripe failed"
14615
14616         dd if=/dev/zero of=$DIR/$tdir/0 bs=1M count=10
14617         local blocks=$($LFS df $MOUNT | grep $ost_name | awk '{ print $4 }')
14618         echo "OST still has $((blocks/1024)) mbytes free"
14619
14620         local new_lwm=$((blocks/1024-10))
14621         do_facet $SINGLEMDS $LCTL set_param \
14622                         osp.$mdtosc_proc1.reserved_mb_high=$((new_lwm+5))
14623         do_facet $SINGLEMDS $LCTL set_param \
14624                         osp.$mdtosc_proc1.reserved_mb_low=$new_lwm
14625
14626         test_253_fill_ost $ost_name $mdtosc_proc1 $new_lwm
14627
14628         #First enospc could execute orphan deletion so repeat.
14629         test_253_fill_ost $ost_name $mdtosc_proc1 $new_lwm
14630
14631         local oa_status=$(do_facet $SINGLEMDS $LCTL get_param -n \
14632                         osp.$mdtosc_proc1.prealloc_status)
14633         echo "prealloc_status $oa_status"
14634
14635         dd if=/dev/zero of=$DIR/$tdir/2 bs=1M count=1 &&
14636                 error "File creation should fail"
14637         #object allocation was stopped, but we still able to append files
14638         dd if=/dev/zero of=$DIR/$tdir/1 bs=1M seek=6 count=5 oflag=append ||
14639                 error "Append failed"
14640         rm -f $DIR/$tdir/1 $DIR/$tdir/0 $DIR/$tdir/r*
14641
14642         wait_delete_completed
14643
14644         sleep_maxage
14645
14646         for i in $(seq 10 12); do
14647                 dd if=/dev/zero of=$DIR/$tdir/$i bs=1M count=1 2>/dev/null ||
14648                         error "File creation failed after rm";
14649         done
14650
14651         oa_status=$(do_facet $SINGLEMDS $LCTL get_param -n \
14652                         osp.$mdtosc_proc1.prealloc_status)
14653         echo "prealloc_status $oa_status"
14654
14655         if (( oa_status != 0 )); then
14656                 error "Object allocation still disable after rm"
14657         fi
14658         do_facet $SINGLEMDS $LCTL set_param \
14659                         osp.$mdtosc_proc1.reserved_mb_high=$last_wm_h
14660         do_facet $SINGLEMDS $LCTL set_param \
14661                         osp.$mdtosc_proc1.reserved_mb_low=$last_wm_l
14662
14663
14664         do_facet mgs $LCTL pool_remove $FSNAME.$TESTNAME $ost_name ||
14665                 error "Remove $ost_name from pool failed"
14666         do_facet mgs $LCTL pool_destroy $FSNAME.$TESTNAME ||
14667                 error "Pool destroy fialed"
14668
14669         if ! combined_mgs_mds ; then
14670                 umount_mgs_client
14671         fi
14672 }
14673 run_test 253 "Check object allocation limit"
14674
14675 test_254() {
14676         local cl_user
14677
14678         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14679         remote_mds_nodsh && skip "remote MDS with nodsh" && return
14680         do_facet mds1 $LCTL get_param -n mdd.$MDT0.changelog_size ||
14681                 { skip "MDS does not support changelog_size" && return; }
14682
14683         cl_user=$(do_facet mds1 $LCTL --device $MDT0 changelog_register -n)
14684         echo "Registered as changelog user $cl_user"
14685
14686         $LFS changelog_clear $MDT0 $cl_user 0
14687
14688         local size1=$(do_facet mds1 \
14689                       $LCTL get_param -n mdd.$MDT0.changelog_size)
14690         echo "Changelog size $size1"
14691
14692         rm -rf $DIR/$tdir
14693         $LFS mkdir -i 0 $DIR/$tdir
14694         # change something
14695         mkdir -p $DIR/$tdir/pics/2008/zachy
14696         touch $DIR/$tdir/pics/2008/zachy/timestamp
14697         cp /etc/hosts $DIR/$tdir/pics/2008/zachy/pic1.jpg
14698         mv $DIR/$tdir/pics/2008/zachy $DIR/$tdir/pics/zach
14699         ln $DIR/$tdir/pics/zach/pic1.jpg $DIR/$tdir/pics/2008/portland.jpg
14700         ln -s $DIR/$tdir/pics/2008/portland.jpg $DIR/$tdir/pics/desktop.jpg
14701         rm $DIR/$tdir/pics/desktop.jpg
14702
14703         local size2=$(do_facet mds1 \
14704                       $LCTL get_param -n mdd.$MDT0.changelog_size)
14705         echo "Changelog size after work $size2"
14706
14707         do_facet mds1 $LCTL --device $MDT0 changelog_deregister $cl_user
14708
14709         if (( size2 <= size1 )); then
14710                 error "Changelog size after work should be greater than original"
14711         fi
14712         return 0
14713 }
14714 run_test 254 "Check changelog size"
14715
14716 ladvise_no_type()
14717 {
14718         local type=$1
14719         local file=$2
14720
14721         lfs ladvise -a invalid $file 2>&1 | grep "Valid types" |
14722                 awk -F: '{print $2}' | grep $type > /dev/null
14723         if [ $? -ne 0 ]; then
14724                 return 0
14725         fi
14726         return 1
14727 }
14728
14729 ladvise_no_ioctl()
14730 {
14731         local file=$1
14732
14733         lfs ladvise -a willread $file > /dev/null 2>&1
14734         if [ $? -eq 0 ]; then
14735                 return 1
14736         fi
14737
14738         lfs ladvise -a willread $file 2>&1 |
14739                 grep "Inappropriate ioctl for device" > /dev/null
14740         if [ $? -eq 0 ]; then
14741                 return 0
14742         fi
14743         return 1
14744 }
14745
14746 percent() {
14747         bc <<<"scale=2; ($1 - $2) * 100 / $2"
14748 }
14749
14750 # run a random read IO workload
14751 # usage: random_read_iops <filename> <filesize> <iosize>
14752 random_read_iops() {
14753         local file=$1
14754         local fsize=$2
14755         local iosize=${3:-4096}
14756
14757         $READS -f $file -s $fsize -b $iosize -n $((fsize / iosize)) -t 60 |
14758                 sed -e '/^$/d' -e 's#.*s, ##' -e 's#MB/s##'
14759 }
14760
14761 drop_file_oss_cache() {
14762         local file="$1"
14763         local nodes="$2"
14764
14765         $LFS ladvise -a dontneed $file 2>/dev/null ||
14766                 do_nodes $nodes "echo 3 > /proc/sys/vm/drop_caches"
14767 }
14768
14769 ladvise_willread_performance()
14770 {
14771         local repeat=10
14772         local average_origin=0
14773         local average_cache=0
14774         local average_ladvise=0
14775
14776         for ((i = 1; i <= $repeat; i++)); do
14777                 echo "Iter $i/$repeat: reading without willread hint"
14778                 cancel_lru_locks osc
14779                 drop_file_oss_cache $DIR/$tfile $(comma_list $(osts_nodes))
14780                 local speed_origin=$(random_read_iops $DIR/$tfile $size)
14781                 echo "Iter $i/$repeat: uncached speed: $speed_origin"
14782                 average_origin=$(bc <<<"$average_origin + $speed_origin")
14783
14784                 cancel_lru_locks osc
14785                 local speed_cache=$(random_read_iops $DIR/$tfile $size)
14786                 echo "Iter $i/$repeat: OSS cache speed: $speed_cache"
14787                 average_cache=$(bc <<<"$average_cache + $speed_cache")
14788
14789                 cancel_lru_locks osc
14790                 drop_file_oss_cache $DIR/$tfile $(comma_list $(osts_nodes))
14791                 $LFS ladvise -a willread $DIR/$tfile || error "ladvise failed"
14792                 local speed_ladvise=$(random_read_iops $DIR/$tfile $size)
14793                 echo "Iter $i/$repeat: ladvise speed: $speed_ladvise"
14794                 average_ladvise=$(bc <<<"$average_ladvise + $speed_ladvise")
14795         done
14796         average_origin=$(bc <<<"scale=2; $average_origin / $repeat")
14797         average_cache=$(bc <<<"scale=2; $average_cache / $repeat")
14798         average_ladvise=$(bc <<<"scale=2; $average_ladvise / $repeat")
14799
14800         speedup_cache=$(percent $average_cache $average_origin)
14801         speedup_ladvise=$(percent $average_ladvise $average_origin)
14802
14803         echo "Average uncached read: $average_origin"
14804         echo "Average speedup with OSS cached read: " \
14805                 "$average_cache = +$speedup_cache%"
14806         echo "Average speedup with ladvise willread: " \
14807                 "$average_ladvise = +$speedup_ladvise%"
14808
14809         local lowest_speedup=20
14810         if [ ${average_cache%.*} -lt $lowest_speedup ]; then
14811                 echo "Speedup with OSS cached read less than $lowest_speedup%," \
14812                         "got $average_cache%. Skipping ladvise willread check."
14813                 return 0
14814         fi
14815
14816         # the test won't work on ZFS until it supports 'ladvise dontneed', but
14817         # it is still good to run until then to exercise 'ladvise willread'
14818         ! $LFS ladvise -a dontneed $DIR/$tfile &&
14819                 [ "$(facet_fstype ost1)" = "zfs" ] &&
14820                 echo "osd-zfs does not support dontneed or drop_caches" &&
14821                 return 0
14822
14823         lowest_speedup=$(bc <<<"scale=2; $average_cache / 2")
14824         [ ${average_ladvise%.*} -gt $lowest_speedup ] ||
14825                 error_not_in_vm "Speedup with willread is less than " \
14826                         "$lowest_speedup%, got $average_ladvise%"
14827 }
14828
14829 test_255a() {
14830         [ $(lustre_version_code ost1) -lt $(version_code 2.8.54) ] &&
14831                 skip "lustre < 2.8.54 does not support ladvise " && return
14832         remote_ost_nodsh && skip "remote OST with nodsh" && return
14833
14834         lfs setstripe -c -1 -i 0 $DIR/$tfile || error "$tfile failed"
14835
14836         ladvise_no_type willread $DIR/$tfile &&
14837                 skip "willread ladvise is not supported" && return
14838
14839         ladvise_no_ioctl $DIR/$tfile &&
14840                 skip "ladvise ioctl is not supported" && return
14841
14842         local size_mb=100
14843         local size=$((size_mb * 1048576))
14844         dd if=/dev/zero of=$DIR/$tfile bs=1048576 count=$size_mb ||
14845                 error "dd to $DIR/$tfile failed"
14846
14847         lfs ladvise -a willread $DIR/$tfile ||
14848                 error "Ladvise failed with no range argument"
14849
14850         lfs ladvise -a willread -s 0 $DIR/$tfile ||
14851                 error "Ladvise failed with no -l or -e argument"
14852
14853         lfs ladvise -a willread -e 1 $DIR/$tfile ||
14854                 error "Ladvise failed with only -e argument"
14855
14856         lfs ladvise -a willread -l 1 $DIR/$tfile ||
14857                 error "Ladvise failed with only -l argument"
14858
14859         lfs ladvise -a willread -s 2 -e 1 $DIR/$tfile &&
14860                 error "End offset should not be smaller than start offset"
14861
14862         lfs ladvise -a willread -s 2 -e 2 $DIR/$tfile &&
14863                 error "End offset should not be equal to start offset"
14864
14865         lfs ladvise -a willread -s $size -l 1 $DIR/$tfile ||
14866                 error "Ladvise failed with overflowing -s argument"
14867
14868         lfs ladvise -a willread -s 1 -e $((size + 1)) $DIR/$tfile ||
14869                 error "Ladvise failed with overflowing -e argument"
14870
14871         lfs ladvise -a willread -s 1 -l $size $DIR/$tfile ||
14872                 error "Ladvise failed with overflowing -l argument"
14873
14874         lfs ladvise -a willread -l 1 -e 2 $DIR/$tfile &&
14875                 error "Ladvise succeeded with conflicting -l and -e arguments"
14876
14877         echo "Synchronous ladvise should wait"
14878         local delay=4
14879 #define OBD_FAIL_OST_LADVISE_PAUSE       0x237
14880         do_nodes $(comma_list $(osts_nodes)) \
14881                 $LCTL set_param fail_val=$delay fail_loc=0x237
14882
14883         local start_ts=$SECONDS
14884         lfs ladvise -a willread $DIR/$tfile ||
14885                 error "Ladvise failed with no range argument"
14886         local end_ts=$SECONDS
14887         local inteval_ts=$((end_ts - start_ts))
14888
14889         if [ $inteval_ts -lt $(($delay - 1)) ]; then
14890                 error "Synchronous advice didn't wait reply"
14891         fi
14892
14893         echo "Asynchronous ladvise shouldn't wait"
14894         local start_ts=$SECONDS
14895         lfs ladvise -a willread -b $DIR/$tfile ||
14896                 error "Ladvise failed with no range argument"
14897         local end_ts=$SECONDS
14898         local inteval_ts=$((end_ts - start_ts))
14899
14900         if [ $inteval_ts -gt $(($delay / 2)) ]; then
14901                 error "Asynchronous advice blocked"
14902         fi
14903
14904         do_nodes $(comma_list $(osts_nodes)) $LCTL set_param fail_loc=0
14905         ladvise_willread_performance
14906 }
14907 run_test 255a "check 'lfs ladvise -a willread'"
14908
14909 facet_meminfo() {
14910         local facet=$1
14911         local info=$2
14912
14913         do_facet $facet "cat /proc/meminfo | grep ^${info}:" | awk '{print $2}'
14914 }
14915
14916 test_255b() {
14917         remote_ost_nodsh && skip "remote OST with nodsh" && return
14918
14919         lfs setstripe -c 1 -i 0 $DIR/$tfile
14920
14921         ladvise_no_type dontneed $DIR/$tfile &&
14922                 skip "dontneed ladvise is not supported" && return
14923
14924         ladvise_no_ioctl $DIR/$tfile &&
14925                 skip "ladvise ioctl is not supported" && return
14926
14927         [ $(lustre_version_code ost1) -lt $(version_code 2.8.54) ] &&
14928                 skip "lustre < 2.8.54 does not support ladvise" && return
14929
14930         ! $LFS ladvise -a dontneed $DIR/$tfile &&
14931                 [ "$(facet_fstype ost1)" = "zfs" ] &&
14932                 skip "zfs-osd does not support 'ladvise dontneed'" && return
14933
14934         local size_mb=100
14935         local size=$((size_mb * 1048576))
14936         # In order to prevent disturbance of other processes, only check 3/4
14937         # of the memory usage
14938         local kibibytes=$((size_mb * 1024 * 3 / 4))
14939
14940         dd if=/dev/zero of=$DIR/$tfile bs=1048576 count=$size_mb ||
14941                 error "dd to $DIR/$tfile failed"
14942
14943         local total=$(facet_meminfo ost1 MemTotal)
14944         echo "Total memory: $total KiB"
14945
14946         do_facet ost1 "sync && echo 3 > /proc/sys/vm/drop_caches"
14947         local before_read=$(facet_meminfo ost1 Cached)
14948         echo "Cache used before read: $before_read KiB"
14949
14950         lfs ladvise -a willread $DIR/$tfile ||
14951                 error "Ladvise willread failed"
14952         local after_read=$(facet_meminfo ost1 Cached)
14953         echo "Cache used after read: $after_read KiB"
14954
14955         lfs ladvise -a dontneed $DIR/$tfile ||
14956                 error "Ladvise dontneed again failed"
14957         local no_read=$(facet_meminfo ost1 Cached)
14958         echo "Cache used after dontneed ladvise: $no_read KiB"
14959
14960         if [ $total -lt $((before_read + kibibytes)) ]; then
14961                 echo "Memory is too small, abort checking"
14962                 return 0
14963         fi
14964
14965         if [ $((before_read + kibibytes)) -gt $after_read ]; then
14966                 error "Ladvise willread should use more memory" \
14967                         "than $kibibytes KiB"
14968         fi
14969
14970         if [ $((no_read + kibibytes)) -gt $after_read ]; then
14971                 error "Ladvise dontneed should release more memory" \
14972                         "than $kibibytes KiB"
14973         fi
14974 }
14975 run_test 255b "check 'lfs ladvise -a dontneed'"
14976
14977 test_255c() {
14978         local count
14979         local new_count
14980         local difference
14981         local i
14982         local rc
14983
14984         [ $(lustre_version_code ost1) -lt $(version_code 2.10.50) ] &&
14985                 skip "lustre < 2.10.53 does not support lockahead" && return
14986
14987         test_mkdir -p $DIR/$tdir
14988         $SETSTRIPE -i 0 $DIR/$tdir
14989
14990         #test 10 returns only success/failure
14991         i=10
14992         lockahead_test -d $DIR/$tdir -t $i
14993         rc=$?
14994         if [ $rc -eq 255 ]; then
14995                 error "Ladvise test${i} failed, ${rc}"
14996         fi
14997
14998         #test 11 counts lock enqueue requests, all others count new locks
14999         i=11
15000         count=$(do_facet ost1 \
15001                 $LCTL get_param -n ost.OSS.ost.stats)
15002         count=$(echo "$count" | grep ldlm_extent_enqueue | awk '{ print $2 }')
15003
15004         lockahead_test -d $DIR/$tdir -t $i
15005         rc=$?
15006         if [ $rc -eq 255 ]; then
15007                 error "Ladvise test${i} failed, ${rc}"
15008         fi
15009
15010         new_count=$(do_facet ost1 \
15011                 $LCTL get_param -n ost.OSS.ost.stats)
15012         new_count=$(echo "$new_count" | grep ldlm_extent_enqueue | \
15013                    awk '{ print $2 }')
15014
15015         difference="$((new_count - count))"
15016         if [ $difference -ne $rc ]; then
15017                 error "Ladvise test${i}, bad enqueue count, returned " \
15018                       "${rc}, actual ${difference}"
15019         fi
15020
15021         for i in $(seq 12 21); do
15022                 # If we do not do this, we run the risk of having too many
15023                 # locks and starting lock cancellation while we are checking
15024                 # lock counts.
15025                 cancel_lru_locks osc
15026
15027                 count=$($LCTL get_param -n \
15028                        ldlm.namespaces.$FSNAME-OST0000*osc-f*.lock_unused_count)
15029
15030                 lockahead_test -d $DIR/$tdir -t $i
15031                 rc=$?
15032                 if [ $rc -eq 255 ]; then
15033                         error "Ladvise test ${i} failed, ${rc}"
15034                 fi
15035
15036                 new_count=$($LCTL get_param -n \
15037                        ldlm.namespaces.$FSNAME-OST0000*osc-f*.lock_unused_count)
15038                 difference="$((new_count - count))"
15039
15040                 # Test 15 output is divided by 100 to map down to valid return
15041                 if [ $i -eq 15 ]; then
15042                         rc="$((rc * 100))"
15043                 fi
15044
15045                 if [ $difference -ne $rc ]; then
15046                         error "Ladvise test ${i}, bad lock count, returned " \
15047                               "${rc}, actual ${difference}"
15048                 fi
15049         done
15050
15051         #test 22 returns only success/failure
15052         i=22
15053         lockahead_test -d $DIR/$tdir -t $i
15054         rc=$?
15055         if [ $rc -eq 255 ]; then
15056                 error "Ladvise test${i} failed, ${rc}"
15057         fi
15058
15059 }
15060 run_test 255c "suite of ladvise lockahead tests"
15061
15062 test_256() {
15063         local cl_user
15064         local cat_sl
15065         local mdt_dev
15066
15067         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15068         remote_mds_nodsh && skip "remote MDS with nodsh" && return
15069         [ "$(facet_fstype mds1)" != "ldiskfs" ] &&
15070                 skip "ldiskfs only test" && return
15071
15072         mdt_dev=$(mdsdevname 1)
15073         echo $mdt_dev
15074         cl_user=$(do_facet mds1 \
15075         "$LCTL get_param -n mdd.$MDT0.changelog_users | grep cl")
15076         if [[ -n $cl_user ]]; then
15077                 skip "active changelog user"
15078                 return
15079         fi
15080
15081         cl_user=$(do_facet mds1 $LCTL --device $MDT0 changelog_register -n)
15082         echo "Registered as changelog user $cl_user"
15083
15084         rm -rf $DIR/$tdir
15085         mkdir -p $DIR/$tdir
15086
15087         $LFS changelog_clear $MDT0 $cl_user 0
15088
15089         # change something
15090         touch $DIR/$tdir/{1..10}
15091
15092         # stop the MDT
15093         stop mds1 || error "Fail to stop MDT."
15094
15095         # remount the MDT
15096         start mds1 $mdt_dev $MDS_MOUNT_OPTS || error "Fail to start MDT."
15097
15098         #after mount new plainllog is used
15099         touch $DIR/$tdir/{11..19}
15100         do_facet mds1 sync
15101         local TEMP256FILE=$(mktemp -u TEMP256XXXXXX)
15102         cat_sl=$(do_facet mds1 \
15103         "$DEBUGFS -R \\\"dump changelog_catalog $TEMP256FILE\\\" $mdt_dev; \
15104          llog_reader $TEMP256FILE | grep \\\"type=1064553b\\\" | wc -l")
15105         do_facet mds1 rm $TEMP256FILE
15106
15107         if (( cat_sl != 2 )); then
15108                 do_facet mds1 $LCTL --device $MDT0 changelog_deregister $cl_user
15109                 error "Changelog catalog has wrong number of slots $cat_sl"
15110         fi
15111
15112         $LFS changelog_clear $MDT0 $cl_user 0
15113
15114         do_facet mds1 sync
15115         TEMP256FILE=$(mktemp -u TEMP256XXXXXX)
15116         cat_sl=$(do_facet mds1 \
15117         "$DEBUGFS -R \\\"dump changelog_catalog $TEMP256FILE\\\" $mdt_dev; \
15118          llog_reader $TEMP256FILE | grep \\\"type=1064553b\\\" | wc -l")
15119         do_facet mds1 rm $TEMP256FILE
15120
15121         do_facet mds1 $LCTL --device $MDT0 changelog_deregister $cl_user
15122
15123         if (( cat_sl == 2 )); then
15124                 error "Empty plain llog was not deleted from changelog catalog"
15125         fi
15126         if (( cat_sl != 1 )); then
15127                 error "Active plain llog shouldn\`t be deleted from catalog"
15128         fi
15129 }
15130 run_test 256 "Check llog delete for empty and not full state"
15131
15132 test_257() {
15133         remote_mds_nodsh && skip "remote MDS with nodsh" && return
15134         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.55) ]] &&
15135                 skip "Need MDS version at least 2.8.55" && return
15136
15137         test_mkdir $DIR/$tdir
15138
15139         setfattr -n trusted.name1 -v value1 $DIR/$tdir ||
15140                 error "setfattr -n trusted.name1=value1 $DIR/$tdir failed"
15141         stat $DIR/$tdir
15142
15143 #define OBD_FAIL_MDS_XATTR_REP                  0x161
15144         local mdtidx=$($LFS getstripe -M $DIR/$tdir)
15145         local facet=mds$((mdtidx + 1))
15146         set_nodes_failloc $(facet_active_host $facet) 0x80000161
15147         getfattr -n trusted.name1 $DIR/$tdir 2> /dev/null
15148
15149         stop $facet || error "stop MDS failed"
15150         start $facet $(mdsdevname $((mdtidx + 1))) $MDS_MOUNT_OPTS ||
15151                 error "start MDS fail"
15152 }
15153 run_test 257 "xattr locks are not lost"
15154
15155 # Verify we take the i_mutex when security requires it
15156 test_258a() {
15157 #define OBD_FAIL_IMUTEX_SEC 0x141c
15158         $LCTL set_param fail_loc=0x141c
15159         touch $DIR/$tfile
15160         chmod u+s $DIR/$tfile
15161         chmod a+rwx $DIR/$tfile
15162         $RUNAS dd if=/dev/zero of=$DIR/$tfile bs=4k count=1 oflag=append
15163         RC=$?
15164         if [ $RC -ne 0 ]; then
15165                 error "error, failed to take i_mutex, rc=$?"
15166         fi
15167         rm -f $DIR/$tfile
15168 }
15169 run_test 258a
15170
15171 # Verify we do NOT take the i_mutex in the normal case
15172 test_258b() {
15173 #define OBD_FAIL_IMUTEX_NOSEC 0x141d
15174         $LCTL set_param fail_loc=0x141d
15175         touch $DIR/$tfile
15176         chmod a+rwx $DIR
15177         chmod a+rw $DIR/$tfile
15178         $RUNAS dd if=/dev/zero of=$DIR/$tfile bs=4k count=1 oflag=append
15179         RC=$?
15180         if [ $RC -ne 0 ]; then
15181                 error "error, took i_mutex unnecessarily, rc=$?"
15182         fi
15183         rm -f $DIR/$tfile
15184
15185 }
15186 run_test 258b "verify i_mutex security behavior"
15187
15188 test_260() {
15189 #define OBD_FAIL_MDC_CLOSE               0x806
15190         $LCTL set_param fail_loc=0x80000806
15191         touch $DIR/$tfile
15192
15193 }
15194 run_test 260 "Check mdc_close fail"
15195
15196 ### Data-on-MDT sanity tests ###
15197 test_270a() {
15198
15199         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.55) ] &&
15200                 skip "Need MDS version at least 2.10.55" && return
15201
15202         # create DoM file
15203         local dom=$DIR/$tdir/dom_file
15204         local tmp=$DIR/$tdir/tmp_file
15205
15206         mkdir -p $DIR/$tdir
15207
15208         # basic checks for DoM component creation
15209         $LFS setstripe -E 1024K -E 1024K -L mdt $dom 2>/dev/null &&
15210                 error "Can set MDT layout to non-first entry"
15211
15212         $LFS setstripe -E 1024K -L mdt -E 1024K -L mdt $dom 2>/dev/null &&
15213                 error "Can define multiple entries as MDT layout"
15214
15215         $LFS setstripe -E 1M -L mdt $dom ||
15216                 error "Can't create DoM layout"
15217
15218         [ $($LFS getstripe -L $dom) == "mdt" ] || error "bad pattern"
15219         [ $($LFS getstripe -c $dom) == 0 ] || error "bad stripe count"
15220         [ $($LFS getstripe -S $dom) == 1048576 ] || error "bad stripe size"
15221
15222         local mdtidx=$($GETSTRIPE -M $dom)
15223         local mdtname=MDT$(printf %04x $mdtidx)
15224         local facet=mds$((mdtidx + 1))
15225         local space_check=1
15226
15227         # Skip free space checks with ZFS
15228         if [ "$(facet_fstype $facet)" == "zfs" ]; then
15229                 space_check=0
15230         fi
15231
15232         # write
15233         sync
15234         local mdtfree1=$(do_facet $facet \
15235                 lctl get_param -n osd*.*$mdtname.kbytesfree)
15236         dd if=/dev/urandom of=$tmp bs=1024 count=100
15237         # check also direct IO along write
15238         dd if=$tmp of=$dom bs=102400 count=1 oflag=direct
15239         sync
15240         cmp $tmp $dom || error "file data is different"
15241         [ $(stat -c%s $dom) == 102400 ] || error "bad size after write"
15242         if [ $space_check == 1 ]; then
15243                 local mdtfree2=$(do_facet $facet \
15244                                 lctl get_param -n osd*.*$mdtname.kbytesfree)
15245                 [ $(($mdtfree1 - $mdtfree2)) -ge 102 ] ||
15246                         error "MDT free space is wrong after write"
15247         fi
15248
15249         # truncate
15250         $TRUNCATE $dom 10000
15251         [ $(stat -c%s $dom) == 10000 ] || error "bad size after truncate"
15252         if [ $space_check == 1 ]; then
15253                 mdtfree1=$(do_facet $facet \
15254                                 lctl get_param -n osd*.*$mdtname.kbytesfree)
15255                 [ $(($mdtfree1 - $mdtfree2)) -ge 92 ] ||
15256                         error "MDT free space is wrong after truncate"
15257         fi
15258
15259         # append
15260         cat $tmp >> $dom
15261         sync
15262         [ $(stat -c%s $dom) == 112400 ] || error "bad size after append"
15263         if [ $space_check == 1 ]; then
15264                 mdtfree2=$(do_facet $facet \
15265                                 lctl get_param -n osd*.*$mdtname.kbytesfree)
15266                 [ $(($mdtfree1 - $mdtfree2)) -ge 102 ] ||
15267                         error "MDT free space is wrong after append"
15268         fi
15269
15270         # delete
15271         rm $dom
15272         if [ $space_check == 1 ]; then
15273                 mdtfree1=$(do_facet $facet \
15274                                 lctl get_param -n osd*.*$mdtname.kbytesfree)
15275                 [ $(($mdtfree1 - $mdtfree2)) -ge 112 ] ||
15276                         error "MDT free space is wrong after removal"
15277         fi
15278
15279         # combined striping
15280         $LFS setstripe -E 1024K -L mdt -E EOF $dom ||
15281                 error "Can't create DoM + OST striping"
15282
15283         dd if=/dev/urandom of=$tmp bs=1024 count=2000
15284         # check also direct IO along write
15285         dd if=$tmp of=$dom bs=102400 count=20 oflag=direct
15286         sync
15287         cmp $tmp $dom || error "file data is different"
15288         [ $(stat -c%s $dom) == 2048000 ] || error "bad size after write"
15289         rm $dom
15290         rm $tmp
15291
15292         return 0
15293 }
15294 run_test 270a "DoM: basic functionality tests"
15295
15296 test_270b() {
15297         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.55) ] &&
15298                 skip "Need MDS version at least 2.10.55" && return
15299
15300         local dom=$DIR/$tdir/dom_file
15301         local max_size=1048576
15302
15303         mkdir -p $DIR/$tdir
15304         $LFS setstripe -E $max_size -L mdt $dom
15305
15306         # truncate over the limit
15307         $TRUNCATE $dom $(($max_size + 1)) &&
15308                 error "successful truncate over the maximum size"
15309         # write over the limit
15310         dd if=/dev/zero of=$dom bs=$max_size seek=1 count=1 &&
15311                 error "successful write over the maximum size"
15312         # append over the limit
15313         dd if=/dev/zero of=$dom bs=$(($max_size - 3)) count=1
15314         echo "12345" >> $dom && error "successful append over the maximum size"
15315         rm $dom
15316
15317         return 0
15318 }
15319 run_test 270b "DoM: maximum size overflow checks for DoM-only file"
15320
15321 test_270c() {
15322         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.55) ] &&
15323                 skip "Need MDS version at least 2.10.55" && return
15324
15325         mkdir -p $DIR/$tdir
15326         $LFS setstripe -E 1024K -L mdt $DIR/$tdir
15327
15328         # check files inherit DoM EA
15329         touch $DIR/$tdir/first
15330         [ $($GETSTRIPE -L $DIR/$tdir/first) == "mdt" ] ||
15331                 error "bad pattern"
15332         [ $($LFS getstripe -c $DIR/$tdir/first) == 0 ] ||
15333                 error "bad stripe count"
15334         [ $($LFS getstripe -S $DIR/$tdir/first) == 1048576 ] ||
15335                 error "bad stripe size"
15336
15337         # check directory inherits DoM EA and uses it as default
15338         mkdir $DIR/$tdir/subdir
15339         touch $DIR/$tdir/subdir/second
15340         [ $($LFS getstripe -L $DIR/$tdir/subdir/second) == "mdt" ] ||
15341                 error "bad pattern in sub-directory"
15342         [ $($LFS getstripe -c $DIR/$tdir/subdir/second) == 0 ] ||
15343                 error "bad stripe count in sub-directory"
15344         [ $($LFS getstripe -S $DIR/$tdir/subdir/second) == 1048576 ] ||
15345                 error "bad stripe size in sub-directory"
15346         return 0
15347 }
15348 run_test 270c "DoM: DoM EA inheritance tests"
15349
15350 test_270d() {
15351         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.55) ] &&
15352                 skip "Need MDS version at least 2.10.55" && return
15353
15354         mkdir -p $DIR/$tdir
15355         $LFS setstripe -E 1024K -L mdt $DIR/$tdir
15356
15357         # inherit default DoM striping
15358         mkdir $DIR/$tdir/subdir
15359         touch $DIR/$tdir/subdir/f1
15360
15361         # change default directory striping
15362         $LFS setstripe -c 1 $DIR/$tdir/subdir
15363         touch $DIR/$tdir/subdir/f2
15364         [ $($LFS getstripe -c $DIR/$tdir/subdir/f2) == 1 ] ||
15365                 error "wrong default striping in file 2"
15366         [ $($LFS getstripe -L $DIR/$tdir/subdir/f2) == "raid0" ] ||
15367                 error "bad pattern in file 2"
15368         return 0
15369 }
15370 run_test 270d "DoM: change striping from DoM to RAID0"
15371
15372 test_270e() {
15373         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.55) ] &&
15374                 skip "Need MDS version at least 2.10.55" && return
15375
15376         mkdir -p $DIR/$tdir/dom
15377         mkdir -p $DIR/$tdir/norm
15378         DOMFILES=20
15379         NORMFILES=10
15380         $LFS setstripe -E 1M -L mdt $DIR/$tdir/dom
15381         $LFS setstripe -i 0 -S 2M $DIR/$tdir/norm
15382
15383         createmany -o $DIR/$tdir/dom/dom- $DOMFILES
15384         createmany -o $DIR/$tdir/norm/norm- $NORMFILES
15385
15386         # find DoM files by layout
15387         NUM=$($LFIND -L mdt -type f $DIR/$tdir 2>/dev/null | wc -l)
15388         [ $NUM -eq  $DOMFILES ] ||
15389                 error "lfs find -L: found $NUM, expected $DOMFILES"
15390         echo "Test 1: lfs find 20 DOM files by layout: OK"
15391
15392         # there should be 1 dir with default DOM striping
15393         NUM=$($LFIND -L mdt -type d $DIR/$tdir 2>/dev/null | wc -l)
15394         [ $NUM -eq  1 ] ||
15395                 error "lfs find -L: found $NUM, expected 1 dir"
15396         echo "Test 2: lfs find 1 DOM dir by layout: OK"
15397
15398         # find DoM files by stripe size
15399         NUM=$($LFIND -S -1200K -type f $DIR/$tdir 2>/dev/null | wc -l)
15400         [ $NUM -eq  $DOMFILES ] ||
15401                 error "lfs find -S: found $NUM, expected $DOMFILES"
15402         echo "Test 4: lfs find 20 DOM files by stripe size: OK"
15403
15404         # find files by stripe offset except DoM files
15405         NUM=$($LFIND -i 0 -type f $DIR/$tdir 2>/dev/null | wc -l)
15406         [ $NUM -eq  $NORMFILES ] ||
15407                 error "lfs find -i: found $NUM, expected $NORMFILES"
15408         echo "Test 5: lfs find no DOM files by stripe index: OK"
15409         return 0
15410 }
15411 run_test 270e "DoM: lfs find with DoM files test"
15412
15413 test_270f() {
15414         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.55) ] &&
15415                 skip "Need MDS version at least 2.10.55" && return
15416
15417         local mdtname=${FSNAME}-MDT0000-mdtlov
15418         local dom=$DIR/$tdir/dom_file
15419         local dom_limit_saved=$(do_facet mds1 $LCTL get_param -n \
15420                                                 lod.$mdtname.dom_stripesize)
15421         local dom_limit=131072
15422
15423         do_facet mds1 $LCTL set_param -n lod.$mdtname.dom_stripesize=$dom_limit
15424         local dom_current=$(do_facet mds1 $LCTL get_param -n \
15425                                                 lod.$mdtname.dom_stripesize)
15426         [ ${dom_limit} -eq ${dom_current} ] ||
15427                 error "Cannot change per-MDT DoM stripe limit to $dom_limit"
15428
15429         $LFS mkdir -i 0 -c 1 $DIR/$tdir
15430         $LFS setstripe -d $DIR/$tdir
15431         $LFS setstripe -E $dom_limit -L mdt $DIR/$tdir ||
15432                 error "Can't set directory default striping"
15433
15434         # exceed maximum stripe size
15435         $LFS setstripe -E $(($dom_limit * 2)) -L mdt $dom &&
15436                 error "Able to create DoM component size more than LOD limit"
15437
15438         do_facet mds1 $LCTL set_param -n lod.$mdtname.dom_stripesize=0
15439         dom_current=$(do_facet mds1 $LCTL get_param -n \
15440                                                 lod.$mdtname.dom_stripesize)
15441         [ 0 -eq ${dom_current} ] ||
15442                 error "Can't set zero DoM stripe limit"
15443
15444         # too low values to be aligned with smallest stripe size 64K
15445         do_facet mds1 $LCTL set_param -n lod.$mdtname.dom_stripesize=30000
15446         dom_current=$(do_facet mds1 $LCTL get_param -n \
15447                                                 lod.$mdtname.dom_stripesize)
15448         [ 30000 -eq ${dom_current} ] &&
15449                 error "Can set too small DoM stripe limit"
15450
15451         do_facet mds1 $LCTL set_param -n lod.$mdtname.dom_stripesize=2147483648
15452         dom_current=$(do_facet mds1 $LCTL get_param -n \
15453                                                 lod.$mdtname.dom_stripesize)
15454         echo $dom_current
15455         [ 2147483648 -eq ${dom_current} ] &&
15456                 error "Can set too large DoM stripe limit"
15457
15458         do_facet mds1 $LCTL set_param -n \
15459                                 lod.$mdtname.dom_stripesize=$((dom_limit * 2))
15460         $LFS setstripe -E $((dom_limit * 2)) -L mdt $dom ||
15461                 error "Can't create DoM component size after limit change"
15462         do_facet mds1 $LCTL set_param -n \
15463                                 lod.$mdtname.dom_stripesize=$((dom_limit / 2))
15464         $LFS setstripe -E $dom_limit -L mdt ${dom}_big &&
15465                 error "Can create big DoM component after limit decrease"
15466         touch ${dom}_def ||
15467                 error "Can't create file with old default layout"
15468
15469         do_facet mds1 $LCTL set_param -n lod.*.dom_stripesize=$dom_limit_saved
15470         return 0
15471 }
15472 run_test 270f "DoM: maximum DoM stripe size checks"
15473
15474 test_271a() {
15475         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.55) ] &&
15476                 skip "Need MDS version at least 2.10.55" && return
15477
15478         local dom=$DIR/$tdir/dom
15479
15480         mkdir -p $DIR/$tdir
15481
15482         $LFS setstripe -E 1024K -L mdt $dom
15483
15484         lctl set_param -n mdc.*.stats=clear
15485         dd if=/dev/zero of=$dom bs=4096 count=1 || return 1
15486         cat $dom > /dev/null
15487         local reads=$(lctl get_param -n mdc.*.stats |
15488                         awk '/ost_read/ {print $2}')
15489         [ -z $reads ] || error "Unexpected $reads READ RPCs"
15490         ls $dom
15491         rm -f $dom
15492 }
15493 run_test 271a "DoM: data is cached for read after write"
15494
15495 test_271b() {
15496         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.55) ] &&
15497                 skip "Need MDS version at least 2.10.55" && return
15498
15499         local dom=$DIR/$tdir/dom
15500
15501         mkdir -p $DIR/$tdir
15502
15503         $LFS setstripe -E 1024K -L mdt -E EOF $dom
15504
15505         lctl set_param -n mdc.*.stats=clear
15506         dd if=/dev/zero of=$dom bs=4096 count=1 || return 1
15507         cancel_lru_locks mdc
15508         $CHECKSTAT -t file -s 4096 $dom || error "stat #1 fails"
15509         # second stat to check size is cached on client
15510         $CHECKSTAT -t file -s 4096 $dom || error "stat #2 fails"
15511         local gls=$(lctl get_param -n mdc.*.stats |
15512                         awk '/ldlm_glimpse/ {print $2}')
15513         [ -z $gls ] || error "Unexpected $gls glimpse RPCs"
15514         rm -f $dom
15515 }
15516 run_test 271b "DoM: no glimpse RPC for stat (DoM only file)"
15517
15518 test_271ba() {
15519         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.55) ] &&
15520                 skip "Need MDS version at least 2.10.55" && return
15521
15522         local dom=$DIR/$tdir/dom
15523
15524         mkdir -p $DIR/$tdir
15525
15526         $LFS setstripe -E 1024K -L mdt -E EOF $dom
15527
15528         lctl set_param -n mdc.*.stats=clear
15529         lctl set_param -n osc.*.stats=clear
15530         dd if=/dev/zero of=$dom bs=2048K count=1 || return 1
15531         cancel_lru_locks mdc
15532         $CHECKSTAT -t file -s 2097152 $dom || error "stat"
15533         # second stat to check size is cached on client
15534         $CHECKSTAT -t file -s 2097152 $dom || error "stat"
15535         local gls=$(lctl get_param -n mdc.*.stats |
15536                         awk '/ldlm_glimpse/ {print $2}')
15537         [ -z $gls ] || error "Unexpected $gls glimpse RPCs"
15538         local gls=$(lctl get_param -n osc.*.stats |
15539                         awk '/ldlm_glimpse/ {print $2}')
15540         [ -z $gls ] || error "Unexpected $gls OSC glimpse RPCs"
15541         rm -f $dom
15542 }
15543 run_test 271ba "DoM: no glimpse RPC for stat (combined file)"
15544
15545 test_271c() {
15546         # test to be enabled with lock_convert
15547         skip "skipped until lock convert will be implemented" && return
15548
15549         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.55) ] &&
15550                 skip "Need MDS version at least 2.10.55" && return
15551
15552         local dom=$DIR/$tdir/dom
15553
15554         mkdir -p $DIR/$tdir
15555
15556         $LFS setstripe -E 1024K -L mdt $DIR/$tdir
15557
15558         local mdtidx=$($LFS getstripe -M $DIR/$tdir)
15559         local facet=mds$((mdtidx + 1))
15560
15561         cancel_lru_locks mdc
15562         do_facet $facet lctl set_param -n mdt.*.dom_lock=0
15563         createmany -o $dom 1000
15564         lctl set_param -n mdc.*.stats=clear
15565         smalliomany -w $dom 1000 200
15566         lctl get_param -n mdc.*.stats
15567         local enq=$(lctl get_param -n mdc.*.stats |
15568                         awk '/ldlm_ibits_enqueue/ {print $2}')
15569         # Each file has 1 open, 1 IO enqueues, total 2000
15570         # but now we have also +1 getxattr for security.capability, total 3000
15571         [ $enq -ge 2000 ] || error "Too few enqueues $enq, expected > 2000"
15572         unlinkmany $dom 1000
15573
15574         cancel_lru_locks mdc
15575         do_facet $facet lctl set_param -n mdt.*.dom_lock=1
15576         createmany -o $dom 1000
15577         lctl set_param -n mdc.*.stats=clear
15578         smalliomany -w $dom 1000 200
15579         lctl get_param -n mdc.*.stats
15580         local enq_2=$(lctl get_param -n mdc.*.stats |
15581                         awk '/ldlm_ibits_enqueue/ {print $2}')
15582         # Expect to see reduced amount of RPCs by 1000 due to single enqueue
15583         # for OPEN and IO lock.
15584         [ $((enq - enq_2)) -ge 1000 ] ||
15585                 error "Too many enqueues $enq_2, expected about $((enq - 1000))"
15586         unlinkmany $dom 1000
15587         return 0
15588 }
15589 run_test 271c "DoM: IO lock at open saves enqueue RPCs"
15590
15591 cleanup_test_300() {
15592         trap 0
15593         umask $SAVE_UMASK
15594 }
15595 test_striped_dir() {
15596         local mdt_index=$1
15597         local stripe_count
15598         local stripe_index
15599
15600         mkdir -p $DIR/$tdir
15601
15602         SAVE_UMASK=$(umask)
15603         trap cleanup_test_300 RETURN EXIT
15604
15605         $LFS setdirstripe -i $mdt_index -c 2 -t all_char -m 755 \
15606                                                 $DIR/$tdir/striped_dir ||
15607                 error "set striped dir error"
15608
15609         local mode=$(stat -c%a $DIR/$tdir/striped_dir)
15610         [ "$mode" = "755" ] || error "expect 755 got $mode"
15611
15612         $LFS getdirstripe $DIR/$tdir/striped_dir > /dev/null 2>&1 ||
15613                 error "getdirstripe failed"
15614         stripe_count=$($LFS getdirstripe -c $DIR/$tdir/striped_dir)
15615         if [ "$stripe_count" != "2" ]; then
15616                 error "1:stripe_count is $stripe_count, expect 2"
15617         fi
15618         stripe_count=$($LFS getdirstripe -T $DIR/$tdir/striped_dir)
15619         if [ "$stripe_count" != "2" ]; then
15620                 error "2:stripe_count is $stripe_count, expect 2"
15621         fi
15622
15623         stripe_index=$($LFS getdirstripe -i $DIR/$tdir/striped_dir)
15624         if [ "$stripe_index" != "$mdt_index" ]; then
15625                 error "stripe_index is $stripe_index, expect $mdt_index"
15626         fi
15627
15628         [ $(stat -c%h $DIR/$tdir/striped_dir) == '2' ] ||
15629                 error "nlink error after create striped dir"
15630
15631         mkdir $DIR/$tdir/striped_dir/a
15632         mkdir $DIR/$tdir/striped_dir/b
15633
15634         stat $DIR/$tdir/striped_dir/a ||
15635                 error "create dir under striped dir failed"
15636         stat $DIR/$tdir/striped_dir/b ||
15637                 error "create dir under striped dir failed"
15638
15639         [ $(stat -c%h $DIR/$tdir/striped_dir) == '4' ] ||
15640                 error "nlink error after mkdir"
15641
15642         rmdir $DIR/$tdir/striped_dir/a
15643         [ $(stat -c%h $DIR/$tdir/striped_dir) == '3' ] ||
15644                 error "nlink error after rmdir"
15645
15646         rmdir $DIR/$tdir/striped_dir/b
15647         [ $(stat -c%h $DIR/$tdir/striped_dir) == '2' ] ||
15648                 error "nlink error after rmdir"
15649
15650         chattr +i $DIR/$tdir/striped_dir
15651         createmany -o $DIR/$tdir/striped_dir/f 10 &&
15652                 error "immutable flags not working under striped dir!"
15653         chattr -i $DIR/$tdir/striped_dir
15654
15655         rmdir $DIR/$tdir/striped_dir ||
15656                 error "rmdir striped dir error"
15657
15658         cleanup_test_300
15659
15660         true
15661 }
15662
15663 test_300a() {
15664         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.0) ] &&
15665                 skip "skipped for lustre < 2.7.0" && return
15666         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15667         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15668
15669         test_striped_dir 0 || error "failed on striped dir on MDT0"
15670         test_striped_dir 1 || error "failed on striped dir on MDT0"
15671 }
15672 run_test 300a "basic striped dir sanity test"
15673
15674 test_300b() {
15675         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.0) ] &&
15676                 skip "skipped for lustre < 2.7.0" && return
15677         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15678         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15679         local i
15680         local mtime1
15681         local mtime2
15682         local mtime3
15683
15684         test_mkdir $DIR/$tdir
15685         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir ||
15686                 error "set striped dir error"
15687         for ((i=0; i<10; i++)); do
15688                 mtime1=$(stat -c %Y $DIR/$tdir/striped_dir)
15689                 sleep 1
15690                 touch $DIR/$tdir/striped_dir/file_$i ||
15691                                         error "touch error $i"
15692                 mtime2=$(stat -c %Y $DIR/$tdir/striped_dir)
15693                 [ $mtime1 -eq $mtime2 ] &&
15694                         error "mtime not change after create"
15695                 sleep 1
15696                 rm -f $DIR/$tdir/striped_dir/file_$i ||
15697                                         error "unlink error $i"
15698                 mtime3=$(stat -c %Y $DIR/$tdir/striped_dir)
15699                 [ $mtime2 -eq $mtime3 ] &&
15700                         error "mtime did not change after unlink"
15701         done
15702         true
15703 }
15704 run_test 300b "check ctime/mtime for striped dir"
15705
15706 test_300c() {
15707         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.0) ] &&
15708                 skip "skipped for lustre < 2.7.0" && return
15709         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15710         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15711         local file_count
15712
15713         mkdir -p $DIR/$tdir
15714         $LFS setdirstripe -i 0 -c 2 $DIR/$tdir/striped_dir ||
15715                 error "set striped dir error"
15716
15717         chown $RUNAS_ID:$RUNAS_GID $DIR/$tdir/striped_dir ||
15718                 error "chown striped dir failed"
15719
15720         $RUNAS createmany -o $DIR/$tdir/striped_dir/f 5000 ||
15721                 error "create 5k files failed"
15722
15723         file_count=$(ls $DIR/$tdir/striped_dir | wc -l)
15724
15725         [ "$file_count" = 5000 ] || error "file count $file_count != 5000"
15726
15727         rm -rf $DIR/$tdir
15728 }
15729 run_test 300c "chown && check ls under striped directory"
15730
15731 test_300d() {
15732         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.0) ] &&
15733                 skip "skipped for lustre < 2.7.0" && return
15734         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15735         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15736         local stripe_count
15737         local file
15738
15739         mkdir -p $DIR/$tdir
15740         $SETSTRIPE -c 2 $DIR/$tdir
15741
15742         #local striped directory
15743         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir ||
15744                 error "set striped dir error"
15745         createmany -o $DIR/$tdir/striped_dir/f 10 ||
15746                 error "create 10 files failed"
15747
15748         #remote striped directory
15749         $LFS setdirstripe -i 1 -c 2 $DIR/$tdir/remote_striped_dir ||
15750                 error "set striped dir error"
15751         createmany -o $DIR/$tdir/remote_striped_dir/f 10 ||
15752                 error "create 10 files failed"
15753
15754         for file in $(find $DIR/$tdir); do
15755                 stripe_count=$($GETSTRIPE -c $file)
15756                 [ $stripe_count -eq 2 ] ||
15757                         error "wrong stripe $stripe_count for $file"
15758         done
15759
15760         rm -rf $DIR/$tdir
15761 }
15762 run_test 300d "check default stripe under striped directory"
15763
15764 test_300e() {
15765         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
15766                 skip "Need MDS version at least 2.7.55" && return
15767         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15768         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15769         local stripe_count
15770         local file
15771
15772         mkdir -p $DIR/$tdir
15773
15774         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir ||
15775                 error "set striped dir error"
15776
15777         touch $DIR/$tdir/striped_dir/a
15778         touch $DIR/$tdir/striped_dir/b
15779         touch $DIR/$tdir/striped_dir/c
15780
15781         mkdir $DIR/$tdir/striped_dir/dir_a
15782         mkdir $DIR/$tdir/striped_dir/dir_b
15783         mkdir $DIR/$tdir/striped_dir/dir_c
15784
15785         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir/stp_a ||
15786                 error "set striped adir under striped dir error"
15787
15788         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir/stp_b ||
15789                 error "set striped bdir under striped dir error"
15790
15791         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir/stp_c ||
15792                 error "set striped cdir under striped dir error"
15793
15794         mrename $DIR/$tdir/striped_dir/dir_a $DIR/$tdir/striped_dir/dir_b ||
15795                 error "rename dir under striped dir fails"
15796
15797         mrename $DIR/$tdir/striped_dir/stp_a $DIR/$tdir/striped_dir/stp_b ||
15798                 error "rename dir under different stripes fails"
15799
15800         mrename $DIR/$tdir/striped_dir/a $DIR/$tdir/striped_dir/c ||
15801                 error "rename file under striped dir should succeed"
15802
15803         mrename $DIR/$tdir/striped_dir/dir_b $DIR/$tdir/striped_dir/dir_c ||
15804                 error "rename dir under striped dir should succeed"
15805
15806         rm -rf $DIR/$tdir
15807 }
15808 run_test 300e "check rename under striped directory"
15809
15810 test_300f() {
15811         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
15812                 skip "Need MDS version at least 2.7.55" && return
15813         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15814         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15815         local stripe_count
15816         local file
15817
15818         rm -rf $DIR/$tdir
15819         mkdir -p $DIR/$tdir
15820
15821         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir ||
15822                 error "set striped dir error"
15823
15824         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir1 ||
15825                 error "set striped dir error"
15826
15827         touch $DIR/$tdir/striped_dir/a
15828         mkdir $DIR/$tdir/striped_dir/dir_a
15829         $LFS setdirstripe -i 0 -c 2 $DIR/$tdir/striped_dir/stp_a ||
15830                 error "create striped dir under striped dir fails"
15831
15832         touch $DIR/$tdir/striped_dir1/b
15833         mkdir $DIR/$tdir/striped_dir1/dir_b
15834         $LFS setdirstripe -i 0 -c 2 $DIR/$tdir/striped_dir/stp_b ||
15835                 error "create striped dir under striped dir fails"
15836
15837         mrename $DIR/$tdir/striped_dir/dir_a $DIR/$tdir/striped_dir1/dir_b ||
15838                 error "rename dir under different striped dir should fail"
15839
15840         mrename $DIR/$tdir/striped_dir/stp_a $DIR/$tdir/striped_dir1/stp_b ||
15841                 error "rename striped dir under diff striped dir should fail"
15842
15843         mrename $DIR/$tdir/striped_dir/a $DIR/$tdir/striped_dir1/a ||
15844                 error "rename file under diff striped dirs fails"
15845
15846         rm -rf $DIR/$tdir
15847 }
15848 run_test 300f "check rename cross striped directory"
15849
15850 test_300_check_default_striped_dir()
15851 {
15852         local dirname=$1
15853         local default_count=$2
15854         local default_index=$3
15855         local stripe_count
15856         local stripe_index
15857         local dir_stripe_index
15858         local dir
15859
15860         echo "checking $dirname $default_count $default_index"
15861         $LFS setdirstripe -D -c $default_count -i $default_index \
15862                                 -t all_char $DIR/$tdir/$dirname ||
15863                 error "set default stripe on striped dir error"
15864         stripe_count=$($LFS getdirstripe -D -c $DIR/$tdir/$dirname)
15865         [ $stripe_count -eq $default_count ] ||
15866                 error "expect $default_count get $stripe_count for $dirname"
15867
15868         stripe_index=$($LFS getdirstripe -D -i $DIR/$tdir/$dirname)
15869         [ $stripe_index -eq $default_index ] ||
15870                 error "expect $default_index get $stripe_index for $dirname"
15871
15872         mkdir $DIR/$tdir/$dirname/{test1,test2,test3,test4} ||
15873                                                 error "create dirs failed"
15874
15875         createmany -o $DIR/$tdir/$dirname/f- 10 || error "create files failed"
15876         unlinkmany $DIR/$tdir/$dirname/f- 10    || error "unlink files failed"
15877         for dir in $(find $DIR/$tdir/$dirname/*); do
15878                 stripe_count=$($LFS getdirstripe -c $dir)
15879                 [ $stripe_count -eq $default_count ] ||
15880                 [ $stripe_count -eq 0 -o $default_count -eq 1 ] ||
15881                 error "stripe count $default_count != $stripe_count for $dir"
15882
15883                 stripe_index=$($LFS getdirstripe -i $dir)
15884                 [ $default_index -eq -1 -o $stripe_index -eq $default_index ] ||
15885                         error "$stripe_index != $default_index for $dir"
15886
15887                 #check default stripe
15888                 stripe_count=$($LFS getdirstripe -D -c $dir)
15889                 [ $stripe_count -eq $default_count ] ||
15890                 error "default count $default_count != $stripe_count for $dir"
15891
15892                 stripe_index=$($LFS getdirstripe -D -i $dir)
15893                 [ $stripe_index -eq $default_index ] ||
15894                 error "default index $default_index != $stripe_index for $dir"
15895         done
15896         rmdir $DIR/$tdir/$dirname/* || error "rmdir failed"
15897 }
15898
15899 test_300g() {
15900         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
15901                 skip "Need MDS version at least 2.7.55" && return
15902         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15903         local dir
15904         local stripe_count
15905         local stripe_index
15906
15907         mkdir $DIR/$tdir
15908         mkdir $DIR/$tdir/normal_dir
15909
15910         #Checking when client cache stripe index
15911         $LFS setdirstripe -c$MDSCOUNT $DIR/$tdir/striped_dir
15912         $LFS setdirstripe -D -i1 $DIR/$tdir/striped_dir ||
15913                 error "create striped_dir failed"
15914
15915         $LFS setdirstripe -i0 $DIR/$tdir/striped_dir/dir0 ||
15916                 error "create dir0 fails"
15917         stripe_index=$($LFS getdirstripe -i $DIR/$tdir/striped_dir/dir0)
15918         [ $stripe_index -eq 0 ] ||
15919                 error "dir0 expect index 0 got $stripe_index"
15920
15921         mkdir $DIR/$tdir/striped_dir/dir1 ||
15922                 error "create dir1 fails"
15923         stripe_index=$($LFS getdirstripe -i $DIR/$tdir/striped_dir/dir1)
15924         [ $stripe_index -eq 1 ] ||
15925                 error "dir1 expect index 1 got $stripe_index"
15926
15927         #check default stripe count/stripe index
15928         test_300_check_default_striped_dir normal_dir $MDSCOUNT 1
15929         test_300_check_default_striped_dir normal_dir 1 0
15930         test_300_check_default_striped_dir normal_dir 2 1
15931         test_300_check_default_striped_dir normal_dir 2 -1
15932
15933         #delete default stripe information
15934         echo "delete default stripeEA"
15935         $LFS setdirstripe -d $DIR/$tdir/normal_dir ||
15936                 error "set default stripe on striped dir error"
15937
15938         mkdir -p $DIR/$tdir/normal_dir/{test1,test2,test3,test4}
15939         for dir in $(find $DIR/$tdir/normal_dir/*); do
15940                 stripe_count=$($LFS getdirstripe -c $dir)
15941                 [ $stripe_count -eq 0 ] ||
15942                         error "expect 1 get $stripe_count for $dir"
15943                 stripe_index=$($LFS getdirstripe -i $dir)
15944                 [ $stripe_index -eq 0 ] ||
15945                         error "expect 0 get $stripe_index for $dir"
15946         done
15947 }
15948 run_test 300g "check default striped directory for normal directory"
15949
15950 test_300h() {
15951         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
15952                 skip "Need MDS version at least 2.7.55" && return
15953         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15954         local dir
15955         local stripe_count
15956
15957         mkdir $DIR/$tdir
15958         $LFS setdirstripe -i 0 -c $MDSCOUNT -t all_char \
15959                                         $DIR/$tdir/striped_dir ||
15960                 error "set striped dir error"
15961
15962         test_300_check_default_striped_dir striped_dir $MDSCOUNT 1
15963         test_300_check_default_striped_dir striped_dir 1 0
15964         test_300_check_default_striped_dir striped_dir 2 1
15965         test_300_check_default_striped_dir striped_dir 2 -1
15966
15967         #delete default stripe information
15968         $LFS setdirstripe -d $DIR/$tdir/striped_dir ||
15969                 error "set default stripe on striped dir error"
15970
15971         mkdir -p $DIR/$tdir/striped_dir/{test1,test2,test3,test4}
15972         for dir in $(find $DIR/$tdir/striped_dir/*); do
15973                 stripe_count=$($LFS getdirstripe -c $dir)
15974                 [ $stripe_count -eq 0 ] ||
15975                         error "expect 1 get $stripe_count for $dir"
15976         done
15977 }
15978 run_test 300h "check default striped directory for striped directory"
15979
15980 test_300i() {
15981         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
15982                 skip "Need MDS version at least 2.7.55" && return
15983         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15984         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15985         local stripe_count
15986         local file
15987
15988         mkdir $DIR/$tdir
15989
15990         $LFS setdirstripe -i 0 -c$MDSCOUNT -t all_char $DIR/$tdir/striped_dir ||
15991                 error "set striped dir error"
15992
15993         createmany -o $DIR/$tdir/striped_dir/f- 10 ||
15994                 error "create files under striped dir failed"
15995
15996         $LFS setdirstripe -i0 -c$MDSCOUNT -H all_char $DIR/$tdir/hashdir ||
15997                 error "set striped hashdir error"
15998
15999         $LFS setdirstripe -i0 -c$MDSCOUNT -H all_char $DIR/$tdir/hashdir/d0 ||
16000                 error "create dir0 under hash dir failed"
16001         $LFS setdirstripe -i0 -c$MDSCOUNT -H fnv_1a_64 $DIR/$tdir/hashdir/d1 ||
16002                 error "create dir1 under hash dir failed"
16003
16004         # unfortunately, we need to umount to clear dir layout cache for now
16005         # once we fully implement dir layout, we can drop this
16006         umount_client $MOUNT || error "umount failed"
16007         mount_client $MOUNT || error "mount failed"
16008
16009         $LFS find -H fnv_1a_64 $DIR/$tdir/hashdir
16010         local dircnt=$($LFS find -H fnv_1a_64 $DIR/$tdir/hashdir | wc -l)
16011         [ $dircnt -eq 1 ] || error "lfs find striped dir got:$dircnt,except:1"
16012
16013         #set the stripe to be unknown hash type
16014         #define OBD_FAIL_UNKNOWN_LMV_STRIPE     0x1901
16015         $LCTL set_param fail_loc=0x1901
16016         for ((i = 0; i < 10; i++)); do
16017                 $CHECKSTAT -t file $DIR/$tdir/striped_dir/f-$i ||
16018                         error "stat f-$i failed"
16019                 rm $DIR/$tdir/striped_dir/f-$i || error "unlink f-$i failed"
16020         done
16021
16022         touch $DIR/$tdir/striped_dir/f0 &&
16023                 error "create under striped dir with unknown hash should fail"
16024
16025         $LCTL set_param fail_loc=0
16026
16027         umount_client $MOUNT || error "umount failed"
16028         mount_client $MOUNT || error "mount failed"
16029
16030         return 0
16031 }
16032 run_test 300i "client handle unknown hash type striped directory"
16033
16034 test_300j() {
16035         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
16036         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
16037                 skip "Need MDS version at least 2.7.55" && return
16038         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
16039         local stripe_count
16040         local file
16041
16042         mkdir $DIR/$tdir
16043
16044         #define OBD_FAIL_SPLIT_UPDATE_REC       0x1702
16045         $LCTL set_param fail_loc=0x1702
16046         $LFS setdirstripe -i 0 -c$MDSCOUNT -t all_char $DIR/$tdir/striped_dir ||
16047                 error "set striped dir error"
16048
16049         createmany -o $DIR/$tdir/striped_dir/f- 10 ||
16050                 error "create files under striped dir failed"
16051
16052         $LCTL set_param fail_loc=0
16053
16054         rm -rf $DIR/$tdir || error "unlink striped dir fails"
16055
16056         return 0
16057 }
16058 run_test 300j "test large update record"
16059
16060 test_300k() {
16061         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
16062                 skip "Need MDS version at least 2.7.55" && return
16063         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
16064         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
16065         local stripe_count
16066         local file
16067
16068         mkdir $DIR/$tdir
16069
16070         #define OBD_FAIL_LARGE_STRIPE   0x1703
16071         $LCTL set_param fail_loc=0x1703
16072         $LFS setdirstripe -i 0 -c512 $DIR/$tdir/striped_dir ||
16073                 error "set striped dir error"
16074         $LCTL set_param fail_loc=0
16075
16076         $LFS getdirstripe $DIR/$tdir/striped_dir ||
16077                 error "getstripeddir fails"
16078         rm -rf $DIR/$tdir/striped_dir ||
16079                 error "unlink striped dir fails"
16080
16081         return 0
16082 }
16083 run_test 300k "test large striped directory"
16084
16085 test_300l() {
16086         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
16087                 skip "Need MDS version at least 2.7.55" && return
16088         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
16089         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
16090         local stripe_index
16091
16092         test_mkdir -p $DIR/$tdir/striped_dir
16093         chown $RUNAS_ID $DIR/$tdir/striped_dir ||
16094                         error "chown $RUNAS_ID failed"
16095         $LFS setdirstripe -i 1 -D $DIR/$tdir/striped_dir ||
16096                 error "set default striped dir failed"
16097
16098         #define OBD_FAIL_MDS_STALE_DIR_LAYOUT    0x158
16099         $LCTL set_param fail_loc=0x80000158
16100         $RUNAS mkdir $DIR/$tdir/striped_dir/test_dir || error "create dir fails"
16101
16102         stripe_index=$($LFS getdirstripe -i $DIR/$tdir/striped_dir/test_dir)
16103         [ $stripe_index -eq 1 ] ||
16104                 error "expect 1 get $stripe_index for $dir"
16105 }
16106 run_test 300l "non-root user to create dir under striped dir with stale layout"
16107
16108 test_300m() {
16109         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
16110                 skip "Need MDS version at least 2.7.55" && return
16111         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
16112         [ $MDSCOUNT -ge 2 ] && skip "Only for single MDT" && return
16113
16114         mkdir -p $DIR/$tdir/striped_dir
16115         $LFS setdirstripe -D -c 1 $DIR/$tdir/striped_dir ||
16116                 error "set default stripes dir error"
16117
16118         mkdir $DIR/$tdir/striped_dir/a || error "mkdir a fails"
16119
16120         stripe_count=$($LFS getdirstripe -c $DIR/$tdir/striped_dir/a)
16121         [ $stripe_count -eq 0 ] ||
16122                         error "expect 0 get $stripe_count for a"
16123
16124         $LFS setdirstripe -D -c 2 $DIR/$tdir/striped_dir ||
16125                 error "set default stripes dir error"
16126
16127         mkdir $DIR/$tdir/striped_dir/b || error "mkdir b fails"
16128
16129         stripe_count=$($LFS getdirstripe -c $DIR/$tdir/striped_dir/b)
16130         [ $stripe_count -eq 0 ] ||
16131                         error "expect 0 get $stripe_count for b"
16132
16133         $LFS setdirstripe -D -c1 -i2 $DIR/$tdir/striped_dir ||
16134                 error "set default stripes dir error"
16135
16136         mkdir $DIR/$tdir/striped_dir/c &&
16137                 error "default stripe_index is invalid, mkdir c should fails"
16138
16139         rm -rf $DIR/$tdir || error "rmdir fails"
16140 }
16141 run_test 300m "setstriped directory on single MDT FS"
16142
16143 cleanup_300n() {
16144         local list=$(comma_list $(mdts_nodes))
16145
16146         trap 0
16147         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=0
16148 }
16149
16150 test_300n() {
16151         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
16152                 skip "Need MDS version at least 2.7.55" && return
16153         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
16154         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
16155         remote_mds_nodsh && skip "remote MDS with nodsh" && return
16156
16157         local stripe_index
16158         local list=$(comma_list $(mdts_nodes))
16159
16160         trap cleanup_300n RETURN EXIT
16161         mkdir -p $DIR/$tdir
16162         chmod 777 $DIR/$tdir
16163         $RUNAS $LFS setdirstripe -i0 -c$MDSCOUNT \
16164                                 $DIR/$tdir/striped_dir > /dev/null 2>&1 &&
16165                 error "create striped dir succeeds with gid=0"
16166
16167         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=-1
16168         $RUNAS $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/striped_dir ||
16169                 error "create striped dir fails with gid=-1"
16170
16171         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=0
16172         $RUNAS $LFS setdirstripe -i 1 -c$MDSCOUNT -D \
16173                                 $DIR/$tdir/striped_dir > /dev/null 2>&1 &&
16174                 error "set default striped dir succeeds with gid=0"
16175
16176
16177         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=-1
16178         $RUNAS $LFS setdirstripe -i 1 -c$MDSCOUNT -D $DIR/$tdir/striped_dir ||
16179                 error "set default striped dir fails with gid=-1"
16180
16181
16182         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=0
16183         $RUNAS mkdir $DIR/$tdir/striped_dir/test_dir ||
16184                                         error "create test_dir fails"
16185         $RUNAS mkdir $DIR/$tdir/striped_dir/test_dir1 ||
16186                                         error "create test_dir1 fails"
16187         $RUNAS mkdir $DIR/$tdir/striped_dir/test_dir2 ||
16188                                         error "create test_dir2 fails"
16189         cleanup_300n
16190 }
16191 run_test 300n "non-root user to create dir under striped dir with default EA"
16192
16193 test_300o() {
16194         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
16195                 skip "Need MDS version at least 2.7.55" && return
16196         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
16197         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
16198         local numfree1
16199         local numfree2
16200
16201         mkdir -p $DIR/$tdir
16202
16203         numfree1=$(lctl get_param -n mdc.*MDT0000*.filesfree)
16204         numfree2=$(lctl get_param -n mdc.*MDT0001*.filesfree)
16205         if [ $numfree1 -lt 66000 -o $numfree2 -lt 66000 ]; then
16206                 skip "not enough free inodes $numfree1 $numfree2"
16207                 return
16208         fi
16209
16210         numfree1=$(lctl get_param -n mdc.*MDT0000-mdc-*.kbytesfree)
16211         numfree2=$(lctl get_param -n mdc.*MDT0001-mdc-*.kbytesfree)
16212         if [ $numfree1 -lt 300000 -o $numfree2 -lt 300000 ]; then
16213                 skip "not enough free space $numfree1 $numfree2"
16214                 return
16215         fi
16216
16217         $LFS setdirstripe -c2 $DIR/$tdir/striped_dir ||
16218                 error "setdirstripe fails"
16219
16220         createmany -d $DIR/$tdir/striped_dir/d 131000 ||
16221                 error "create dirs fails"
16222
16223         $LCTL set_param ldlm.namespaces.*mdc-*.lru_size=0
16224         ls $DIR/$tdir/striped_dir > /dev/null ||
16225                 error "ls striped dir fails"
16226         unlinkmany -d $DIR/$tdir/striped_dir/d 131000 ||
16227                 error "unlink big striped dir fails"
16228 }
16229 run_test 300o "unlink big sub stripe(> 65000 subdirs)"
16230
16231 test_300p() {
16232         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
16233         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
16234         remote_mds_nodsh && skip "remote MDS with nodsh" && return
16235
16236         mkdir -p $DIR/$tdir
16237
16238         #define OBD_FAIL_OUT_ENOSPC     0x1704
16239         do_facet mds2 lctl set_param fail_loc=0x80001704
16240         $LFS setdirstripe -c2 $DIR/$tdir/bad_striped_dir > /dev/null 2>&1 &&
16241                         error "create striped directory should fail"
16242
16243         [ -e $DIR/$tdir/bad_striped_dir ] && error "striped dir exists"
16244
16245         $LFS setdirstripe -c2 $DIR/$tdir/bad_striped_dir
16246         true
16247 }
16248 run_test 300p "create striped directory without space"
16249
16250 test_300q() {
16251         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
16252         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
16253
16254         local fd=$(free_fd)
16255         local cmd="exec $fd<$tdir"
16256         cd $DIR
16257         $LFS mkdir -c $MDSCOUNT $tdir || error "create $tdir fails"
16258         eval $cmd
16259         cmd="exec $fd<&-"
16260         trap "eval $cmd" EXIT
16261         cd $tdir || error "cd $tdir fails"
16262         rmdir  ../$tdir || error "rmdir $tdir fails"
16263         mkdir local_dir && error "create dir succeeds"
16264         $LFS setdirstripe -i1 remote_dir && error "create remote dir succeeds"
16265         eval $cmd
16266         return 0
16267 }
16268 run_test 300q "create remote directory under orphan directory"
16269
16270 prepare_remote_file() {
16271         mkdir $DIR/$tdir/src_dir ||
16272                 error "create remote source failed"
16273
16274         cp /etc/hosts $DIR/$tdir/src_dir/a || error
16275         touch $DIR/$tdir/src_dir/a
16276
16277         $LFS mkdir -i 1 $DIR/$tdir/tgt_dir ||
16278                 error "create remote target dir failed"
16279
16280         touch $DIR/$tdir/tgt_dir/b
16281
16282         mrename $DIR/$tdir/src_dir/a $DIR/$tdir/tgt_dir/b ||
16283                 error "rename dir cross MDT failed!"
16284
16285         $CHECKSTAT -t file $DIR/$tdir/src_dir/a &&
16286                 error "src_child still exists after rename"
16287
16288         $CHECKSTAT -t file $DIR/$tdir/tgt_dir/b ||
16289                 error "missing file(a) after rename"
16290
16291         diff /etc/hosts $DIR/$tdir/tgt_dir/b ||
16292                 error "diff after rename"
16293 }
16294
16295 test_310a() {
16296         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 4 MDTs" && return
16297         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
16298         local remote_file=$DIR/$tdir/tgt_dir/b
16299
16300         mkdir -p $DIR/$tdir
16301
16302         prepare_remote_file || error "prepare remote file failed"
16303
16304         #open-unlink file
16305         $OPENUNLINK $remote_file $remote_file || error
16306         $CHECKSTAT -a $remote_file || error
16307 }
16308 run_test 310a "open unlink remote file"
16309
16310 test_310b() {
16311         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 4 MDTs" && return
16312         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
16313         local remote_file=$DIR/$tdir/tgt_dir/b
16314
16315         mkdir -p $DIR/$tdir
16316
16317         prepare_remote_file || error "prepare remote file failed"
16318
16319         ln $remote_file $DIR/$tfile || error "link failed for remote file"
16320         $MULTIOP $DIR/$tfile Ouc || error "mulitop failed"
16321         $CHECKSTAT -t file $remote_file || error "check file failed"
16322 }
16323 run_test 310b "unlink remote file with multiple links while open"
16324
16325 test_310c() {
16326         [[ $MDSCOUNT -lt 4 ]] && skip "needs >= 4 MDTs" && return
16327         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
16328         local remote_file=$DIR/$tdir/tgt_dir/b
16329
16330         mkdir -p $DIR/$tdir
16331
16332         prepare_remote_file || error "prepare remote file failed"
16333
16334         ln $remote_file $DIR/$tfile || error "link failed for remote file"
16335         multiop_bg_pause $remote_file O_uc ||
16336                         error "mulitop failed for remote file"
16337         MULTIPID=$!
16338         $MULTIOP $DIR/$tfile Ouc
16339         kill -USR1 $MULTIPID
16340         wait $MULTIPID
16341 }
16342 run_test 310c "open-unlink remote file with multiple links"
16343
16344 #LU-4825
16345 test_311() {
16346         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.54) ] &&
16347                 skip "lustre < 2.8.54 does not contain LU-4825 fix" && return
16348         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
16349         remote_mds_nodsh && skip "remote MDS with nodsh" && return
16350
16351         local old_iused=$($LFS df -i | grep OST0000 | awk '{ print $3 }')
16352
16353         mkdir -p $DIR/$tdir
16354         $SETSTRIPE -i 0 -c 1 $DIR/$tdir
16355         createmany -o $DIR/$tdir/$tfile. 1000
16356
16357         # statfs data is not real time, let's just calculate it
16358         old_iused=$((old_iused + 1000))
16359
16360         local count=$(do_facet $SINGLEMDS "lctl get_param -n \
16361                         osp.*OST0000*MDT0000.create_count")
16362         local max_count=$(do_facet $SINGLEMDS "lctl get_param -n \
16363                                 osp.*OST0000*MDT0000.max_create_count")
16364         for idx in $(seq $MDSCOUNT); do
16365                 do_facet mds$idx "lctl set_param -n \
16366                         osp.*OST0000*MDT000?.max_create_count=0"
16367         done
16368
16369         $SETSTRIPE -i 0 $DIR/$tdir/$tfile || error "setstripe failed"
16370         local index=$($GETSTRIPE -i $DIR/$tdir/$tfile)
16371         [ $index -ne 0 ] || error "$tfile stripe index is 0"
16372
16373         unlinkmany $DIR/$tdir/$tfile. 1000
16374
16375         for idx in $(seq $MDSCOUNT); do
16376                 do_facet mds$idx "lctl set_param -n \
16377                         osp.*OST0000*MDT000?.max_create_count=$max_count"
16378                 do_facet mds$idx "lctl set_param -n \
16379                         osp.*OST0000*MDT000?.create_count=$count"
16380         done
16381
16382         local new_iused
16383         for i in $(seq 120); do
16384                 new_iused=$($LFS df -i | grep OST0000 | awk '{ print $3 }')
16385                 # system may be too busy to destroy all objs in time, use
16386                 # a somewhat small value to not fail autotest
16387                 [ $((old_iused - new_iused)) -gt 400 ] && break
16388                 sleep 1
16389         done
16390
16391         echo "waited $i sec, old Iused $old_iused, new Iused $new_iused"
16392         [ $((old_iused - new_iused)) -gt 400 ] ||
16393                 error "objs not destroyed after unlink"
16394 }
16395 run_test 311 "disable OSP precreate, and unlink should destroy objs"
16396
16397 zfs_oid_to_objid()
16398 {
16399         local ost=$1
16400         local objid=$2
16401
16402         local vdevdir=$(dirname $(facet_vdevice $ost))
16403         local cmd="$ZDB -e -p $vdevdir -ddddd $(facet_device $ost)"
16404         local zfs_zapid=$(do_facet $ost $cmd |
16405                           grep -w "/O/0/d$((objid%32))" -C 5 |
16406                           awk '/Object/{getline; print $1}')
16407         local zfs_objid=$(do_facet $ost $cmd $zfs_zapid |
16408                           awk "/$objid = /"'{printf $3}')
16409
16410         echo $zfs_objid
16411 }
16412
16413 zfs_object_blksz() {
16414         local ost=$1
16415         local objid=$2
16416
16417         local vdevdir=$(dirname $(facet_vdevice $ost))
16418         local cmd="$ZDB -e -p $vdevdir -dddd $(facet_device $ost)"
16419         local blksz=$(do_facet $ost $cmd $objid |
16420                       awk '/dblk/{getline; printf $4}')
16421
16422         case "${blksz: -1}" in
16423                 k|K) blksz=$((${blksz:0:$((${#blksz} - 1))}*1024)) ;;
16424                 m|M) blksz=$((${blksz:0:$((${#blksz} - 1))}*1024*1024)) ;;
16425                 *) ;;
16426         esac
16427
16428         echo $blksz
16429 }
16430
16431 test_312() { # LU-4856
16432         remote_ost_nodsh && skip "remote OST with nodsh" && return
16433
16434         [ $(facet_fstype ost1) = "zfs" ] ||
16435                 { skip "the test only applies to zfs" && return; }
16436
16437         local max_blksz=$(do_facet ost1 \
16438                           $ZFS get -p recordsize $(facet_device ost1) |
16439                           awk '!/VALUE/{print $3}')
16440         local min_blksz=$(getconf PAGE_SIZE)
16441
16442         # to make life a little bit easier
16443         $LFS mkdir -c 1 -i 0 $DIR/$tdir
16444         $LFS setstripe -c 1 -i 0 $DIR/$tdir
16445
16446         local tf=$DIR/$tdir/$tfile
16447         touch $tf
16448         local oid=$($LFS getstripe $tf | awk '/obdidx/{getline; print $2}')
16449
16450         # Get ZFS object id
16451         local zfs_objid=$(zfs_oid_to_objid ost1 $oid)
16452
16453         # block size change by sequential over write
16454         local blksz
16455         for ((bs=$min_blksz; bs <= max_blksz; bs <<= 2)); do
16456                 dd if=/dev/zero of=$tf bs=$bs count=1 oflag=sync conv=notrunc
16457
16458                 blksz=$(zfs_object_blksz ost1 $zfs_objid)
16459                 [ $blksz -eq $bs ] || error "blksz error: $blksz, expected: $bs"
16460         done
16461         rm -f $tf
16462
16463         # block size change by sequential append write
16464         dd if=/dev/zero of=$tf bs=$min_blksz count=1 oflag=sync conv=notrunc
16465         oid=$($LFS getstripe $tf | awk '/obdidx/{getline; print $2}')
16466         zfs_objid=$(zfs_oid_to_objid ost1 $oid)
16467
16468         for ((count = 1; count < $((max_blksz / min_blksz)); count *= 2)); do
16469                 dd if=/dev/zero of=$tf bs=$min_blksz count=$count seek=$count \
16470                         oflag=sync conv=notrunc
16471
16472                 blksz=$(zfs_object_blksz ost1 $zfs_objid)
16473                 [ $blksz -eq $((2 * count * min_blksz)) ] ||
16474                         error "blksz error, actual $blksz, "    \
16475                                 "expected: 2 * $count * $min_blksz"
16476         done
16477         rm -f $tf
16478
16479         # random write
16480         touch $tf
16481         oid=$($LFS getstripe $tf | awk '/obdidx/{getline; print $2}')
16482         zfs_objid=$(zfs_oid_to_objid ost1 $oid)
16483
16484         dd if=/dev/zero of=$tf bs=1K count=1 oflag=sync conv=notrunc
16485         blksz=$(zfs_object_blksz ost1 $zfs_objid)
16486         [ $blksz -eq $min_blksz ] ||
16487                 error "blksz error: $blksz, expected: $min_blksz"
16488
16489         dd if=/dev/zero of=$tf bs=64K count=1 oflag=sync conv=notrunc seek=128
16490         blksz=$(zfs_object_blksz ost1 $zfs_objid)
16491         [ $blksz -eq 65536 ] || error "blksz error: $blksz, expected: 64k"
16492
16493         dd if=/dev/zero of=$tf bs=1M count=1 oflag=sync conv=notrunc
16494         blksz=$(zfs_object_blksz ost1 $zfs_objid)
16495         [ $blksz -eq 65536 ] || error "rewrite error: $blksz, expected: 64k"
16496 }
16497 run_test 312 "make sure ZFS adjusts its block size by write pattern"
16498
16499 test_313() {
16500         remote_ost_nodsh && skip "remote OST with nodsh" && return
16501
16502         local file=$DIR/$tfile
16503         rm -f $file
16504         $SETSTRIPE -c 1 -i 0 $file || error "setstripe failed"
16505
16506         # define OBD_FAIL_TGT_RCVD_EIO           0x720
16507         do_facet ost1 "$LCTL set_param fail_loc=0x720"
16508         dd if=/dev/zero of=$file bs=4096 oflag=direct count=1 &&
16509                 error "write should failed"
16510         do_facet ost1 "$LCTL set_param fail_loc=0"
16511         rm -f $file
16512 }
16513 run_test 313 "io should fail after last_rcvd update fail"
16514
16515 test_314() {
16516         $SETSTRIPE -c 2 -i 0 $DIR/$tfile || error "setstripe failed"
16517         do_facet ost1 "$LCTL set_param fail_loc=0x720"
16518         rm -f $DIR/$tfile
16519         wait_delete_completed
16520         do_facet ost1 "$LCTL set_param fail_loc=0"
16521 }
16522 run_test 314 "OSP shouldn't fail after last_rcvd update failure"
16523
16524 test_fake_rw() {
16525         local read_write=$1
16526         if [ "$read_write" = "write" ]; then
16527                 local dd_cmd="dd if=/dev/zero of=$DIR/$tfile"
16528         elif [ "$read_write" = "read" ]; then
16529                 local dd_cmd="dd of=/dev/null if=$DIR/$tfile"
16530         else
16531                 error "argument error"
16532         fi
16533
16534         # turn off debug for performance testing
16535         local saved_debug=$($LCTL get_param -n debug)
16536         $LCTL set_param debug=0
16537
16538         $SETSTRIPE -c 1 -i 0 $DIR/$tfile
16539
16540         # get ost1 size - lustre-OST0000
16541         local ost1_avail_size=$($LFS df | awk /${ost1_svc}/'{ print $4 }')
16542         local blocks=$((ost1_avail_size/2/1024)) # half avail space by megabytes
16543         [ $blocks -gt 1000 ] && blocks=1000 # 1G in maximum
16544
16545         if [ "$read_write" = "read" ]; then
16546                 truncate -s $(expr 1048576 \* $blocks) $DIR/$tfile
16547         fi
16548
16549         local start_time=$(date +%s.%N)
16550         $dd_cmd bs=1M count=$blocks oflag=sync ||
16551                 error "real dd $read_write error"
16552         local duration=$(bc <<< "$(date +%s.%N) - $start_time")
16553
16554         if [ "$read_write" = "write" ]; then
16555                 rm -f $DIR/$tfile
16556         fi
16557
16558         # define OBD_FAIL_OST_FAKE_RW           0x238
16559         do_facet ost1 $LCTL set_param fail_loc=0x238
16560
16561         local start_time=$(date +%s.%N)
16562         $dd_cmd bs=1M count=$blocks oflag=sync ||
16563                 error "fake dd $read_write error"
16564         local duration_fake=$(bc <<< "$(date +%s.%N) - $start_time")
16565
16566         if [ "$read_write" = "write" ]; then
16567                 # verify file size
16568                 cancel_lru_locks osc
16569                 $CHECKSTAT -t file -s $((blocks * 1024 * 1024)) $DIR/$tfile ||
16570                         error "$tfile size not $blocks MB"
16571         fi
16572         do_facet ost1 $LCTL set_param fail_loc=0
16573
16574         echo "fake $read_write $duration_fake vs. normal $read_write" \
16575                 "$duration in seconds"
16576         [ $(bc <<< "$duration_fake < $duration") -eq 1 ] ||
16577                 error_not_in_vm "fake write is slower"
16578
16579         $LCTL set_param -n debug="$saved_debug"
16580         rm -f $DIR/$tfile
16581 }
16582 test_399a() { # LU-7655 for OST fake write
16583         remote_ost_nodsh && skip "remote OST with nodsh" && return
16584
16585         test_fake_rw write
16586 }
16587 run_test 399a "fake write should not be slower than normal write"
16588
16589 test_399b() { # LU-8726 for OST fake read
16590         remote_ost_nodsh && skip "remote OST with nodsh" && return
16591
16592         if [ "$(facet_fstype ost1)" != "ldiskfs" ]; then
16593                 skip "ldiskfs only test" && return 0
16594         fi
16595         test_fake_rw read
16596 }
16597 run_test 399b "fake read should not be slower than normal read"
16598
16599 test_400a() { # LU-1606, was conf-sanity test_74
16600         local extra_flags=''
16601         local out=$TMP/$tfile
16602         local prefix=/usr/include/lustre
16603         local prog
16604
16605         if ! which $CC > /dev/null 2>&1; then
16606                 skip_env "$CC is not installed"
16607                 return 0
16608         fi
16609
16610         if ! [[ -d $prefix ]]; then
16611                 # Assume we're running in tree and fixup the include path.
16612                 extra_flags+=" -I$LUSTRE/include"
16613                 extra_flags+=" -L$LUSTRE/utils"
16614         fi
16615
16616         for prog in $LUSTRE_TESTS_API_DIR/*.c; do
16617                 $CC -Wall -Werror $extra_flags -llustreapi -o $out $prog ||
16618                         error "client api broken"
16619         done
16620         rm -f $out
16621 }
16622 run_test 400a "Lustre client api program can compile and link"
16623
16624 test_400b() { # LU-1606, LU-5011
16625         local header
16626         local out=$TMP/$tfile
16627         local prefix=/usr/include/linux/lustre
16628
16629         # We use a hard coded prefix so that this test will not fail
16630         # when run in tree. There are headers in lustre/include/lustre/
16631         # that are not packaged (like lustre_idl.h) and have more
16632         # complicated include dependencies (like config.h and lnet/types.h).
16633         # Since this test about correct packaging we just skip them when
16634         # they don't exist (see below) rather than try to fixup cppflags.
16635
16636         if ! which $CC > /dev/null 2>&1; then
16637                 skip_env "$CC is not installed"
16638                 return 0
16639         fi
16640
16641         for header in $prefix/*.h; do
16642                 if ! [[ -f "$header" ]]; then
16643                         continue
16644                 fi
16645
16646                 if [[ "$(basename $header)" == lustre_ioctl.h ]]; then
16647                         continue # lustre_ioctl.h is internal header
16648                 fi
16649
16650                 $CC -Wall -Werror -include $header -c -x c /dev/null -o $out ||
16651                         error "cannot compile '$header'"
16652         done
16653         rm -f $out
16654 }
16655 run_test 400b "packaged headers can be compiled"
16656
16657 test_401a() { #LU-7437
16658         local printf_arg=$(find -printf 2>&1 | grep "unrecognized:")
16659         [ -n "$printf_arg" ] && skip_env "find does not support -printf" &&
16660                 return
16661         #count the number of parameters by "list_param -R"
16662         local params=$($LCTL list_param -R '*' 2>/dev/null | wc -l)
16663         #count the number of parameters by listing proc files
16664         local proc_dirs=$(eval \ls -d $proc_regexp 2>/dev/null)
16665         echo "proc_dirs='$proc_dirs'"
16666         [ -n "$proc_dirs" ] || error "no proc_dirs on $HOSTNAME"
16667         local procs=$(find -L $proc_dirs -mindepth 1 -printf '%P\n' 2>/dev/null|
16668                       sort -u | wc -l)
16669
16670         [ $params -eq $procs ] ||
16671                 error "found $params parameters vs. $procs proc files"
16672
16673         # test the list_param -D option only returns directories
16674         params=$($LCTL list_param -R -D '*' 2>/dev/null | wc -l)
16675         #count the number of parameters by listing proc directories
16676         procs=$(find -L $proc_dirs -mindepth 1 -type d -printf '%P\n' 2>/dev/null |
16677                 sort -u | wc -l)
16678
16679         [ $params -eq $procs ] ||
16680                 error "found $params parameters vs. $procs proc files"
16681 }
16682 run_test 401a "Verify if 'lctl list_param -R' can list parameters recursively"
16683
16684 test_401b() {
16685         local save=$($LCTL get_param -n jobid_var)
16686         local tmp=testing
16687
16688         $LCTL set_param foo=bar jobid_var=$tmp bar=baz &&
16689                 error "no error returned when setting bad parameters"
16690
16691         local jobid_new=$($LCTL get_param -n foe jobid_var baz)
16692         [[ "$jobid_new" == "$tmp" ]] || error "jobid tmp $jobid_new != $tmp"
16693
16694         $LCTL set_param -n fog=bam jobid_var=$save bat=fog
16695         local jobid_old=$($LCTL get_param -n foe jobid_var bag)
16696         [[ "$jobid_old" == "$save" ]] || error "jobid new $jobid_old != $save"
16697 }
16698 run_test 401b "Verify 'lctl {get,set}_param' continue after error"
16699
16700 test_401c() {
16701         local jobid_var_old=$($LCTL get_param -n jobid_var)
16702         local jobid_var_new
16703
16704         $LCTL set_param jobid_var= &&
16705                 error "no error returned for 'set_param a='"
16706
16707         jobid_var_new=$($LCTL get_param -n jobid_var)
16708         [[ "$jobid_var_old" == "$jobid_var_new" ]] ||
16709                 error "jobid_var was changed by setting without value"
16710
16711         $LCTL set_param jobid_var &&
16712                 error "no error returned for 'set_param a'"
16713
16714         jobid_var_new=$($LCTL get_param -n jobid_var)
16715         [[ "$jobid_var_old" == "$jobid_var_new" ]] ||
16716                 error "jobid_var was changed by setting without value"
16717 }
16718 run_test 401c "Verify 'lctl set_param' without value fails in either format."
16719
16720 test_401d() {
16721         local jobid_var_old=$($LCTL get_param -n jobid_var)
16722         local jobid_var_new
16723         local new_value="foo=bar"
16724
16725         $LCTL set_param jobid_var=$new_value ||
16726                 error "'set_param a=b' did not accept a value containing '='"
16727
16728         jobid_var_new=$($LCTL get_param -n jobid_var)
16729         [[ "$jobid_var_new" == "$new_value" ]] ||
16730                 error "'set_param a=b' failed on a value containing '='"
16731
16732         # Reset the jobid_var to test the other format
16733         $LCTL set_param jobid_var=$jobid_var_old
16734         jobid_var_new=$($LCTL get_param -n jobid_var)
16735         [[ "$jobid_var_new" == "$jobid_var_old" ]] ||
16736                 error "failed to reset jobid_var"
16737
16738         $LCTL set_param jobid_var $new_value ||
16739                 error "'set_param a b' did not accept a value containing '='"
16740
16741         jobid_var_new=$($LCTL get_param -n jobid_var)
16742         [[ "$jobid_var_new" == "$new_value" ]] ||
16743                 error "'set_param a b' failed on a value containing '='"
16744
16745         $LCTL set_param jobid_var $jobid_var_old
16746         jobid_var_new=$($LCTL get_param -n jobid_var)
16747         [[ "$jobid_var_new" == "$jobid_var_old" ]] ||
16748                 error "failed to reset jobid_var"
16749 }
16750 run_test 401d "Verify 'lctl set_param' accepts values containing '='"
16751
16752 test_402() {
16753         local server_version=$(lustre_version_code $SINGLEMDS)
16754         [[ $server_version -ge $(version_code 2.7.66) ]] ||
16755         [[ $server_version -ge $(version_code 2.7.18.4) &&
16756                 $server_version -lt $(version_code 2.7.50) ]] ||
16757         [[ $server_version -ge $(version_code 2.7.2) &&
16758                 $server_version -lt $(version_code 2.7.11) ]] ||
16759                 { skip "Need MDS version 2.7.2+ or 2.7.18.4+ or 2.7.66+";
16760                         return; }
16761         remote_mds_nodsh && skip "remote MDS with nodsh" && return
16762         $LFS setdirstripe -i 0 $DIR/$tdir || error "setdirstripe -i 0 failed"
16763 #define OBD_FAIL_MDS_FLD_LOOKUP 0x15c
16764         do_facet mds1 "lctl set_param fail_loc=0x8000015c"
16765         touch $DIR/$tdir/$tfile && error "touch should fail with ENOENT" ||
16766                 echo "Touch failed - OK"
16767 }
16768 run_test 402 "Return ENOENT to lod_generate_and_set_lovea"
16769
16770 test_403() {
16771         local file1=$DIR/$tfile.1
16772         local file2=$DIR/$tfile.2
16773         local tfile=$TMP/$tfile
16774
16775         rm -f $file1 $file2 $tfile
16776
16777         touch $file1
16778         ln $file1 $file2
16779
16780         # 30 sec OBD_TIMEOUT in ll_getattr()
16781         # right before populating st_nlink
16782         $LCTL set_param fail_loc=0x80001409
16783         stat -c %h $file1 > $tfile &
16784
16785         # create an alias, drop all locks and reclaim the dentry
16786         < $file2
16787         cancel_lru_locks mdc
16788         cancel_lru_locks osc
16789         sysctl -w vm.drop_caches=2
16790
16791         wait
16792
16793         [ $(cat $tfile) -gt 0 ] || error "wrong nlink count: $(cat $tfile)"
16794
16795         rm -f $tfile $file1 $file2
16796 }
16797 run_test 403 "i_nlink should not drop to zero due to aliasing"
16798
16799 test_404() { # LU-6601
16800         local server_version=$(lustre_version_code $SINGLEMDS)
16801         [[ $server_version -ge $(version_code 2.8.53) ]] ||
16802                 { skip "Need server version newer than 2.8.52"; return 0; }
16803
16804         remote_mds_nodsh && skip "remote MDS with nodsh" && return
16805         local mosps=$(do_facet $SINGLEMDS $LCTL dl |
16806                 awk '/osp .*-osc-MDT/ { print $4}')
16807
16808         local osp
16809         for osp in $mosps; do
16810                 echo "Deactivate: " $osp
16811                 do_facet $SINGLEMDS $LCTL --device %$osp deactivate
16812                 local stat=$(do_facet $SINGLEMDS $LCTL dl |
16813                         awk -vp=$osp '$4 == p { print $2 }')
16814                 [ $stat = IN ] || {
16815                         do_facet $SINGLEMDS $LCTL dl | grep -w $osp
16816                         error "deactivate error"
16817                 }
16818                 echo "Activate: " $osp
16819                 do_facet $SINGLEMDS $LCTL --device %$osp activate
16820                 local stat=$(do_facet $SINGLEMDS $LCTL dl |
16821                         awk -vp=$osp '$4 == p { print $2 }')
16822                 [ $stat = UP ] || {
16823                         do_facet $SINGLEMDS $LCTL dl | grep -w $osp
16824                         error "activate error"
16825                 }
16826         done
16827 }
16828 run_test 404 "validate manual {de}activated works properly for OSPs"
16829
16830 test_405() {
16831         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.6.92) -o \
16832         [ $(lustre_version_code client) -lt $(version_code 2.6.99) ] &&
16833                 skip "Layout swap lock is not supported" && return
16834
16835         check_swap_layouts_support && return 0
16836
16837         test_mkdir $DIR/$tdir
16838         swap_lock_test -d $DIR/$tdir ||
16839                 error "One layout swap locked test failed"
16840 }
16841 run_test 405 "Various layout swap lock tests"
16842
16843 test_406() {
16844         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
16845         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
16846         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
16847         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
16848         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.50) ] &&
16849                 skip "Need MDS version at least 2.8.50" && return
16850
16851         local def_stripe_count=$($GETSTRIPE -c $MOUNT)
16852         local def_stripe_size=$($GETSTRIPE -S $MOUNT)
16853         local def_stripe_offset=$($GETSTRIPE -i $MOUNT)
16854         local def_pool=$($GETSTRIPE -p $MOUNT)
16855         local test_pool=$TESTNAME
16856
16857         if ! combined_mgs_mds ; then
16858                 mount_mgs_client
16859         fi
16860         pool_add $test_pool || error "pool_add failed"
16861         pool_add_targets $test_pool 0 $(($OSTCOUNT - 1)) 1 ||
16862                 error "pool_add_targets failed"
16863
16864         # parent set default stripe count only, child will stripe from both
16865         # parent and fs default
16866         $SETSTRIPE -c 1 -i 1 -S $((def_stripe_size * 2)) -p $test_pool $MOUNT ||
16867                 error "setstripe $MOUNT failed"
16868         $LFS mkdir -c $MDSCOUNT $DIR/$tdir || error "mkdir $tdir failed"
16869         $SETSTRIPE -c $OSTCOUNT $DIR/$tdir || error "setstripe $tdir failed"
16870         for i in $(seq 10); do
16871                 local f=$DIR/$tdir/$tfile.$i
16872                 touch $f || error "touch failed"
16873                 local count=$($GETSTRIPE -c $f)
16874                 [ $count -eq $OSTCOUNT ] ||
16875                         error "$f stripe count $count != $OSTCOUNT"
16876                 local offset=$($GETSTRIPE -i $f)
16877                 [ $offset -eq 1 ] || error "$f stripe offset $offset != 1"
16878                 local size=$($GETSTRIPE -S $f)
16879                 [ $size -eq $((def_stripe_size * 2)) ] ||
16880                         error "$f stripe size $size != $((def_stripe_size * 2))"
16881                 local pool=$($GETSTRIPE -p $f)
16882                 [ $pool == $test_pool ] || error "$f pool $pool != $test_pool"
16883         done
16884
16885         # change fs default striping, delete parent default striping, now child
16886         # will stripe from new fs default striping only
16887         $SETSTRIPE -c 1 -S $def_stripe_size -i 0 $MOUNT ||
16888                 error "change $MOUNT default stripe failed"
16889         $SETSTRIPE -c 0 $DIR/$tdir || error "delete $tdir default stripe failed"
16890         for i in $(seq 11 20); do
16891                 local f=$DIR/$tdir/$tfile.$i
16892                 touch $f || error "touch $f failed"
16893                 local count=$($GETSTRIPE -c $f)
16894                 [ $count -eq 1 ] || error "$f stripe count $count != 1"
16895                 local offset=$($GETSTRIPE -i $f)
16896                 [ $offset -eq 0 ] || error "$f stripe offset $offset != 0"
16897                 local size=$($GETSTRIPE -S $f)
16898                 [ $size -eq $def_stripe_size ] ||
16899                         error "$f stripe size $size != $def_stripe_size"
16900                 local pool=$($GETSTRIPE -p $f)
16901                 [ "#$pool" == "#" ] || error "$f pool $pool is set"
16902
16903         done
16904
16905         unlinkmany $DIR/$tdir/$tfile. 1 20
16906
16907         # restore FS default striping
16908         if [ -z $def_pool ]; then
16909                 $SETSTRIPE -c $def_stripe_count -S $def_stripe_size \
16910                         -i $def_stripe_offset $MOUNT ||
16911                         error "restore default striping failed"
16912         else
16913                 $SETSTRIPE -c $def_stripe_count -S $def_stripe_size \
16914                         -i $def_stripe_offset -p $def_pool $MOUNT ||
16915                         error "restore default striping with $def_pool failed"
16916         fi
16917
16918         local f=$DIR/$tdir/$tfile
16919         pool_remove_all_targets $test_pool $f
16920         pool_remove $test_pool $f
16921
16922         if ! combined_mgs_mds ; then
16923                 umount_mgs_client
16924         fi
16925 }
16926 run_test 406 "DNE support fs default striping"
16927
16928 test_407() {
16929         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
16930         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.55) ]] &&
16931                 skip "Need MDS version at least 2.8.55" && return
16932         remote_mds_nodsh && skip "remote MDS with nodsh" && return
16933
16934         $LFS mkdir -i 0 -c 1 $DIR/$tdir.0 ||
16935                 error "$LFS mkdir -i 0 -c 1 $tdir.0 failed"
16936         $LFS mkdir -i 1 -c 1 $DIR/$tdir.1 ||
16937                 error "$LFS mkdir -i 1 -c 1 $tdir.1 failed"
16938         touch $DIR/$tdir.0/$tfile.0 || error "touch $tdir.0/$tfile.0 failed"
16939
16940         #define OBD_FAIL_DT_TXN_STOP    0x2019
16941         for idx in $(seq $MDSCOUNT); do
16942                 do_facet mds$idx "lctl set_param fail_loc=0x2019"
16943         done
16944         $LFS mkdir -c 2 $DIR/$tdir && error "$LFS mkdir -c 2 $tdir should fail"
16945         mv $DIR/$tdir.0/$tfile.0 $DIR/$tdir.1/$tfile.1 &&
16946                 error "mv $tdir.0/$tfile.0 $tdir.1/$tfile.1 should fail"
16947         true
16948 }
16949 run_test 407 "transaction fail should cause operation fail"
16950
16951 test_408() {
16952         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 oflag=direct
16953
16954         #define OBD_FAIL_OSC_BRW_PREP_REQ2        0x40a
16955         lctl set_param fail_loc=0x8000040a
16956         # let ll_prepare_partial_page() fail
16957         dd if=/dev/zero of=$DIR/$tfile bs=2048 count=1 conv=notrunc || true
16958
16959         rm -f $DIR/$tfile
16960
16961         # create at least 100 unused inodes so that
16962         # shrink_icache_memory(0) should not return 0
16963         touch $DIR/$tfile-{0..100}
16964         rm -f $DIR/$tfile-{0..100}
16965         sync
16966
16967         echo 2 > /proc/sys/vm/drop_caches
16968 }
16969 run_test 408 "drop_caches should not hang due to page leaks"
16970
16971 test_409()
16972 {
16973         [ $MDSCOUNT -lt 2 ] &&
16974                 skip "We need at least 2 MDTs for this test" && return
16975
16976         check_mount_and_prep
16977
16978         mkdir -p $DIR/$tdir || error "(0) Fail to mkdir"
16979         $LFS mkdir -i 1 -c 2 $DIR/$tdir/foo || error "(1) Fail to mkdir"
16980         touch $DIR/$tdir/guard || error "(2) Fail to create"
16981
16982         local PREFIX=$(str_repeat 'A' 128)
16983         echo "Create 1K hard links start at $(date)"
16984         createmany -l $DIR/$tdir/guard $DIR/$tdir/foo/${PREFIX}_ 1000 ||
16985                 error "(3) Fail to hard link"
16986
16987         echo "Links count should be right although linkEA overflow"
16988         stat $DIR/$tdir/guard || error "(4) Fail to stat"
16989         local linkcount=$(stat --format=%h $DIR/$tdir/guard)
16990         [ $linkcount -eq 1001 ] ||
16991                 error "(5) Unexpected hard links count: $linkcount"
16992
16993         echo "List all links start at $(date)"
16994         ls -l $DIR/$tdir/foo > /dev/null ||
16995                 error "(6) Fail to list $DIR/$tdir/foo"
16996
16997         echo "Unlink hard links start at $(date)"
16998         unlinkmany $DIR/$tdir/foo/${PREFIX}_ 1000 ||
16999                 error "(7) Fail to unlink"
17000 }
17001 run_test 409 "Large amount of cross-MDTs hard links on the same file"
17002
17003 test_410()
17004 {
17005         [[ $(lustre_version_code client) -lt $(version_code 2.9.59) ]] &&
17006                 skip "Need client version at least 2.9.59" && return
17007
17008         # Create a file, and stat it from the kernel
17009         local testfile=$DIR/$tfile
17010         touch $testfile
17011
17012         local run_id=$RANDOM
17013         local my_ino=$(stat --format "%i" $testfile)
17014
17015         # Try to insert the module. This will always fail as the
17016         # module is designed to not be inserted.
17017         insmod $LUSTRE/tests/kernel/kinode.ko run_id=$run_id fname=$testfile \
17018             &> /dev/null
17019
17020         # Anything but success is a test failure
17021         dmesg | grep -q \
17022             "lustre_kinode_$run_id: inode numbers are identical: $my_ino" ||
17023             error "no inode match"
17024 }
17025 run_test 410 "Test inode number returned from kernel thread"
17026
17027 cleanup_test411_cgroup() {
17028         trap 0
17029         rmdir "$1"
17030 }
17031
17032 test_411() {
17033         local cg_basedir=/sys/fs/cgroup/memory
17034         # LU-9966
17035         test -f "$cg_basedir/memory.kmem.limit_in_bytes" ||
17036                 { skip "no setup for cgroup"; return; }
17037
17038         dd if=/dev/zero of=$DIR/$tfile bs=1M count=100 conv=fsync ||
17039                 error "test file creation failed"
17040         cancel_lru_locks osc
17041
17042         # Create a very small memory cgroup to force a slab allocation error
17043         local cgdir=$cg_basedir/osc_slab_alloc
17044         mkdir $cgdir || error "cgroup mkdir '$cgdir' failed"
17045         trap "cleanup_test411_cgroup $cgdir" EXIT
17046         echo 2M > $cgdir/memory.kmem.limit_in_bytes
17047         echo 1M > $cgdir/memory.limit_in_bytes
17048
17049         # Should not LBUG, just be killed by oom-killer
17050         sh -c "echo \$$ > $cgdir/tasks && dd if=$DIR/$tfile of=/dev/null" &&
17051                 error "fail to trigger a memory allocation error"
17052
17053         cleanup_test411_cgroup $cgdir
17054
17055         return 0
17056 }
17057 run_test 411 "Slab allocation error with cgroup does not LBUG"
17058
17059 prep_801() {
17060         [[ $(lustre_version_code mds1) -lt $(version_code 2.9.55) ]] ||
17061         [[ $(lustre_version_code ost1) -lt $(version_code 2.9.55) ]] &&
17062                 skip "Need server version at least 2.9.55" & exit 0
17063         start_full_debug_logging
17064 }
17065
17066 post_801() {
17067         stop_full_debug_logging
17068 }
17069
17070 barrier_stat() {
17071         if [ $(lustre_version_code mgs) -le $(version_code 2.10.0) ]; then
17072                 local st=$(do_facet mgs $LCTL barrier_stat $FSNAME |
17073                            awk '/The barrier for/ { print $7 }')
17074                 echo $st
17075         else
17076                 local st=$(do_facet mgs $LCTL barrier_stat -s $FSNAME)
17077                 echo \'$st\'
17078         fi
17079 }
17080
17081 barrier_expired() {
17082         local expired
17083
17084         if [ $(lustre_version_code mgs) -le $(version_code 2.10.0) ]; then
17085                 expired=$(do_facet mgs $LCTL barrier_stat $FSNAME |
17086                           awk '/will be expired/ { print $7 }')
17087         else
17088                 expired=$(do_facet mgs $LCTL barrier_stat -t $FSNAME)
17089         fi
17090
17091         echo $expired
17092 }
17093
17094 test_801a() {
17095         prep_801
17096
17097         echo "Start barrier_freeze at: $(date)"
17098         #define OBD_FAIL_BARRIER_DELAY          0x2202
17099         do_facet mgs $LCTL set_param fail_val=5 fail_loc=0x2202
17100         do_facet mgs $LCTL barrier_freeze $FSNAME 10 &
17101
17102         sleep 2
17103         local b_status=$(barrier_stat)
17104         echo "Got barrier status at: $(date)"
17105         [ "$b_status" = "'freezing_p1'" ] ||
17106                 error "(1) unexpected barrier status $b_status"
17107
17108         do_facet mgs $LCTL set_param fail_val=0 fail_loc=0
17109         wait
17110         b_status=$(barrier_stat)
17111         [ "$b_status" = "'frozen'" ] ||
17112                 error "(2) unexpected barrier status $b_status"
17113
17114         local expired=$(barrier_expired)
17115         echo "sleep $((expired + 3)) seconds, then the barrier will be expired"
17116         sleep $((expired + 3))
17117
17118         b_status=$(barrier_stat)
17119         [ "$b_status" = "'expired'" ] ||
17120                 error "(3) unexpected barrier status $b_status"
17121
17122         do_facet mgs $LCTL barrier_freeze $FSNAME 10 ||
17123                 error "(4) fail to freeze barrier"
17124
17125         b_status=$(barrier_stat)
17126         [ "$b_status" = "'frozen'" ] ||
17127                 error "(5) unexpected barrier status $b_status"
17128
17129         echo "Start barrier_thaw at: $(date)"
17130         #define OBD_FAIL_BARRIER_DELAY          0x2202
17131         do_facet mgs $LCTL set_param fail_val=5 fail_loc=0x2202
17132         do_facet mgs $LCTL barrier_thaw $FSNAME &
17133
17134         sleep 2
17135         b_status=$(barrier_stat)
17136         echo "Got barrier status at: $(date)"
17137         [ "$b_status" = "'thawing'" ] ||
17138                 error "(6) unexpected barrier status $b_status"
17139
17140         do_facet mgs $LCTL set_param fail_val=0 fail_loc=0
17141         wait
17142         b_status=$(barrier_stat)
17143         [ "$b_status" = "'thawed'" ] ||
17144                 error "(7) unexpected barrier status $b_status"
17145
17146         #define OBD_FAIL_BARRIER_FAILURE        0x2203
17147         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x2203
17148         do_facet mgs $LCTL barrier_freeze $FSNAME
17149
17150         b_status=$(barrier_stat)
17151         [ "$b_status" = "'failed'" ] ||
17152                 error "(8) unexpected barrier status $b_status"
17153
17154         do_facet $SINGLEMDS $LCTL set_param fail_loc=0
17155         do_facet mgs $LCTL barrier_thaw $FSNAME
17156
17157         post_801
17158 }
17159 run_test 801a "write barrier user interfaces and stat machine"
17160
17161 test_801b() {
17162         prep_801
17163
17164         mkdir $DIR/$tdir || error "(1) fail to mkdir"
17165         createmany -d $DIR/$tdir/d 6 || "(2) fail to mkdir"
17166         touch $DIR/$tdir/d2/f10 || error "(3) fail to touch"
17167         touch $DIR/$tdir/d3/f11 || error "(4) fail to touch"
17168         touch $DIR/$tdir/d4/f12 || error "(5) fail to touch"
17169
17170         cancel_lru_locks mdc
17171
17172         # 180 seconds should be long enough
17173         do_facet mgs $LCTL barrier_freeze $FSNAME 180
17174
17175         local b_status=$(barrier_stat)
17176         [ "$b_status" = "'frozen'" ] ||
17177                 error "(6) unexpected barrier status $b_status"
17178
17179         mkdir $DIR/$tdir/d0/d10 &
17180         mkdir_pid=$!
17181
17182         touch $DIR/$tdir/d1/f13 &
17183         touch_pid=$!
17184
17185         ln $DIR/$tdir/d2/f10 $DIR/$tdir/d2/f14 &
17186         ln_pid=$!
17187
17188         mv $DIR/$tdir/d3/f11 $DIR/$tdir/d3/f15 &
17189         mv_pid=$!
17190
17191         rm -f $DIR/$tdir/d4/f12 &
17192         rm_pid=$!
17193
17194         stat $DIR/$tdir/d5 || error "(7) stat should succeed"
17195
17196         # To guarantee taht the 'stat' is not blocked
17197         b_status=$(barrier_stat)
17198         [ "$b_status" = "'frozen'" ] ||
17199                 error "(8) unexpected barrier status $b_status"
17200
17201         # let above commands to run at background
17202         sleep 5
17203
17204         ps -p $mkdir_pid || error "(9) mkdir should be blocked"
17205         ps -p $touch_pid || error "(10) touch should be blocked"
17206         ps -p $ln_pid || error "(11) link should be blocked"
17207         ps -p $mv_pid || error "(12) rename should be blocked"
17208         ps -p $rm_pid || error "(13) unlink should be blocked"
17209
17210         b_status=$(barrier_stat)
17211         [ "$b_status" = "'frozen'" ] ||
17212                 error "(14) unexpected barrier status $b_status"
17213
17214         do_facet mgs $LCTL barrier_thaw $FSNAME
17215         b_status=$(barrier_stat)
17216         [ "$b_status" = "'thawed'" ] ||
17217                 error "(15) unexpected barrier status $b_status"
17218
17219         wait $mkdir_pid || error "(16) mkdir should succeed"
17220         wait $touch_pid || error "(17) touch should succeed"
17221         wait $ln_pid || error "(18) link should succeed"
17222         wait $mv_pid || error "(19) rename should succeed"
17223         wait $rm_pid || error "(20) unlink should succeed"
17224
17225         post_801
17226 }
17227 run_test 801b "modification will be blocked by write barrier"
17228
17229 test_801c() {
17230         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 2 MDTs" && return
17231
17232         prep_801
17233
17234         stop mds2 || error "(1) Fail to stop mds2"
17235
17236         do_facet mgs $LCTL barrier_freeze $FSNAME 30
17237
17238         local b_status=$(barrier_stat)
17239         [ "$b_status" = "'expired'" -o "$b_status" = "'failed'" ] || {
17240                 do_facet mgs $LCTL barrier_thaw $FSNAME
17241                 error "(2) unexpected barrier status $b_status"
17242         }
17243
17244         do_facet mgs $LCTL barrier_rescan $FSNAME ||
17245                 error "(3) Fail to rescan barrier bitmap"
17246
17247         do_facet mgs $LCTL barrier_freeze $FSNAME 10
17248
17249         b_status=$(barrier_stat)
17250         [ "$b_status" = "'frozen'" ] ||
17251                 error "(4) unexpected barrier status $b_status"
17252
17253         do_facet mgs $LCTL barrier_thaw $FSNAME
17254         b_status=$(barrier_stat)
17255         [ "$b_status" = "'thawed'" ] ||
17256                 error "(5) unexpected barrier status $b_status"
17257
17258         local devname=$(mdsdevname 2)
17259
17260         start mds2 $devname $MDS_MOUNT_OPTS || error "(6) Fail to start mds2"
17261
17262         do_facet mgs $LCTL barrier_rescan $FSNAME ||
17263                 error "(7) Fail to rescan barrier bitmap"
17264
17265         post_801
17266 }
17267 run_test 801c "rescan barrier bitmap"
17268
17269 saved_MGS_MOUNT_OPTS=$MGS_MOUNT_OPTS
17270 saved_MDS_MOUNT_OPTS=$MDS_MOUNT_OPTS
17271 saved_OST_MOUNT_OPTS=$OST_MOUNT_OPTS
17272
17273 cleanup_802() {
17274         trap 0
17275
17276         stopall
17277         MGS_MOUNT_OPTS=$saved_MGS_MOUNT_OPTS
17278         MDS_MOUNT_OPTS=$saved_MDS_MOUNT_OPTS
17279         OST_MOUNT_OPTS=$saved_OST_MOUNT_OPTS
17280         setupall
17281 }
17282
17283 test_802() {
17284
17285         [[ $(lustre_version_code mds1) -lt $(version_code 2.9.55) ]] ||
17286         [[ $(lustre_version_code ost1) -lt $(version_code 2.9.55) ]] &&
17287                 skip "Need server version at least 2.9.55" & exit 0
17288
17289         mkdir $DIR/$tdir || error "(1) fail to mkdir"
17290
17291         cp $LUSTRE/tests/test-framework.sh $DIR/$tdir/ ||
17292                 error "(2) Fail to copy"
17293
17294         trap cleanup_802 EXIT
17295
17296         # sync by force before remount as readonly
17297         sync; sync_all_data; sleep 3; sync_all_data
17298
17299         stopall
17300
17301         MGS_MOUNT_OPTS=$(csa_add "$MGS_MOUNT_OPTS" -o rdonly_dev)
17302         MDS_MOUNT_OPTS=$(csa_add "$MDS_MOUNT_OPTS" -o rdonly_dev)
17303         OST_MOUNT_OPTS=$(csa_add "$OST_MOUNT_OPTS" -o rdonly_dev)
17304
17305         echo "Mount the server as read only"
17306         setupall server_only || error "(3) Fail to start servers"
17307
17308         echo "Mount client without ro should fail"
17309         mount_client $MOUNT &&
17310                 error "(4) Mount client without 'ro' should fail"
17311
17312         echo "Mount client with ro should succeed"
17313         mount_client $MOUNT ro ||
17314                 error "(5) Mount client with 'ro' should succeed"
17315
17316         echo "Modify should be refused"
17317         touch $DIR/$tdir/guard && error "(6) Touch should fail under ro mode"
17318
17319         echo "Read should be allowed"
17320         diff $LUSTRE/tests/test-framework.sh $DIR/$tdir/test-framework.sh ||
17321                 error "(7) Read should succeed under ro mode"
17322
17323         cleanup_802
17324 }
17325 run_test 802 "simulate readonly device"
17326
17327 #
17328 # tests that do cleanup/setup should be run at the end
17329 #
17330
17331 test_900() {
17332         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
17333         local ls
17334         #define OBD_FAIL_MGC_PAUSE_PROCESS_LOG   0x903
17335         $LCTL set_param fail_loc=0x903
17336
17337         cancel_lru_locks MGC
17338
17339         FAIL_ON_ERROR=true cleanup
17340         FAIL_ON_ERROR=true setup
17341 }
17342 run_test 900 "umount should not race with any mgc requeue thread"
17343
17344 complete $SECONDS
17345 [ -f $EXT2_DEV ] && rm $EXT2_DEV || true
17346 check_and_cleanup_lustre
17347 if [ "$I_MOUNTED" != "yes" ]; then
17348         lctl set_param debug="$OLDDEBUG" 2> /dev/null || true
17349 fi
17350 exit_status