Whamcloud - gitweb
c130a37da4df2ce49eae03ccfe92ea6c4bb8ac72
[fs/lustre-release.git] / lustre / tests / sanity.sh
1 #!/bin/bash
2 # -*- tab-width: 8; indent-tabs-mode: t; -*-
3 #
4 # Run select tests by setting ONLY, or as arguments to the script.
5 # Skip specific tests by setting EXCEPT.
6 #
7 # e.g. ONLY="22 23" or ONLY="`seq 32 39`" or EXCEPT="31"
8 set -e
9
10 ONLY=${ONLY:-"$*"}
11 # bug number for skipped test: LU-9693 LU-6493 LU-9693 3561 5188
12 ALWAYS_EXCEPT="                42a    42b      42c     45   68b $SANITY_EXCEPT"
13 # UPDATE THE COMMENT ABOVE WITH BUG NUMBERS WHEN CHANGING ALWAYS_EXCEPT!
14
15 # skipped tests: LU-2036 LU-8411 LU-9096 LU-9054
16 ALWAYS_EXCEPT="  76      407     253     312 $ALWAYS_EXCEPT"
17
18 # Check Grants after these tests
19 GRANT_CHECK_LIST="$GRANT_CHECK_LIST 42a 42b 42c 42d 42e 63a 63b 64a 64b 64c"
20
21 is_sles11()                                             # LU-4341
22 {
23         if [ -r /etc/SuSE-release ]
24         then
25                 local vers=$(grep VERSION /etc/SuSE-release | awk '{print $3}')
26                 local patchlev=$(grep PATCHLEVEL /etc/SuSE-release |
27                         awk '{ print $3 }')
28                 if [ $vers -eq 11 ] && [ $patchlev -ge 3 ]; then
29                         return 0
30                 fi
31         fi
32         return 1
33 }
34
35 if is_sles11; then                                      # LU-4341
36         ALWAYS_EXCEPT="$ALWAYS_EXCEPT 170"
37 fi
38
39 SRCDIR=$(cd $(dirname $0); echo $PWD)
40 export PATH=$PATH:/sbin
41
42 TMP=${TMP:-/tmp}
43
44 CC=${CC:-cc}
45 CHECKSTAT=${CHECKSTAT:-"checkstat -v"}
46 CREATETEST=${CREATETEST:-createtest}
47 LFS=${LFS:-lfs}
48 LFIND=${LFIND:-"$LFS find"}
49 LVERIFY=${LVERIFY:-ll_dirstripe_verify}
50 LCTL=${LCTL:-lctl}
51 OPENFILE=${OPENFILE:-openfile}
52 OPENUNLINK=${OPENUNLINK:-openunlink}
53 export MULTIOP=${MULTIOP:-multiop}
54 READS=${READS:-"reads"}
55 MUNLINK=${MUNLINK:-munlink}
56 SOCKETSERVER=${SOCKETSERVER:-socketserver}
57 SOCKETCLIENT=${SOCKETCLIENT:-socketclient}
58 MEMHOG=${MEMHOG:-memhog}
59 DIRECTIO=${DIRECTIO:-directio}
60 ACCEPTOR_PORT=${ACCEPTOR_PORT:-988}
61 STRIPES_PER_OBJ=-1
62 CHECK_GRANT=${CHECK_GRANT:-"yes"}
63 GRANT_CHECK_LIST=${GRANT_CHECK_LIST:-""}
64 export PARALLEL=${PARALLEL:-"no"}
65
66 export NAME=${NAME:-local}
67
68 SAVE_PWD=$PWD
69
70 CLEANUP=${CLEANUP:-:}
71 SETUP=${SETUP:-:}
72 TRACE=${TRACE:-""}
73 LUSTRE=${LUSTRE:-$(cd $(dirname $0)/..; echo $PWD)}
74 LUSTRE_TESTS_API_DIR=${LUSTRE_TESTS_API_DIR:-${LUSTRE}/tests/clientapi}
75 . $LUSTRE/tests/test-framework.sh
76 init_test_env $@
77 . ${CONFIG:=$LUSTRE/tests/cfg/${NAME}.sh}
78 init_logging
79
80 #                                  5          12          (min)"
81 [ "$SLOW" = "no" ] && EXCEPT_SLOW="27m 64b 68 71 115 300o"
82
83 if [ $(facet_fstype $SINGLEMDS) = "zfs" ]; then
84         # bug number for skipped test: LU-1957
85         ALWAYS_EXCEPT="$ALWAYS_EXCEPT  180"
86         #                                               13    (min)"
87         [ "$SLOW" = "no" ] && EXCEPT_SLOW="$EXCEPT_SLOW 51b"
88 fi
89
90 FAIL_ON_ERROR=false
91
92 cleanup() {
93         echo -n "cln.."
94         pgrep ll_sa > /dev/null && { echo "There are ll_sa thread not exit!"; exit 20; }
95         cleanupall ${FORCE} $* || { echo "FAILed to clean up"; exit 20; }
96 }
97 setup() {
98         echo -n "mnt.."
99         load_modules
100         setupall || exit 10
101         echo "done"
102 }
103
104 check_swap_layouts_support()
105 {
106         $LCTL get_param -n llite.*.sbi_flags | grep -q layout ||
107                 { skip "Does not support layout lock."; return 0; }
108         return 1
109 }
110
111 check_and_setup_lustre
112 DIR=${DIR:-$MOUNT}
113 assert_DIR
114
115 MDT0=$($LCTL get_param -n mdc.*.mds_server_uuid |
116         awk '{ gsub(/_UUID/,""); print $1 }' | head -n1)
117 MAXFREE=${MAXFREE:-$((200000 * $OSTCOUNT))}
118
119 [ -f $DIR/d52a/foo ] && chattr -a $DIR/d52a/foo
120 [ -f $DIR/d52b/foo ] && chattr -i $DIR/d52b/foo
121 rm -rf $DIR/[Rdfs][0-9]*
122
123 # $RUNAS_ID may get set incorrectly somewhere else
124 [ $UID -eq 0 -a $RUNAS_ID -eq 0 ] && error "\$RUNAS_ID set to 0, but \$UID is also 0!"
125
126 check_runas_id $RUNAS_ID $RUNAS_GID $RUNAS
127
128 build_test_filter
129
130 if [ "${ONLY}" = "MOUNT" ] ; then
131         echo "Lustre is up, please go on"
132         exit
133 fi
134
135 echo "preparing for tests involving mounts"
136 EXT2_DEV=${EXT2_DEV:-$TMP/SANITY.LOOP}
137 touch $EXT2_DEV
138 mke2fs -j -F $EXT2_DEV 8000 > /dev/null
139 echo # add a newline after mke2fs.
140
141 umask 077
142
143 OLDDEBUG=$(lctl get_param -n debug 2> /dev/null)
144 lctl set_param debug=-1 2> /dev/null || true
145 test_0a() {
146         touch $DIR/$tfile
147         $CHECKSTAT -t file $DIR/$tfile || error "$tfile is not a file"
148         rm $DIR/$tfile
149         $CHECKSTAT -a $DIR/$tfile || error "$tfile was not removed"
150 }
151 run_test 0a "touch; rm ====================="
152
153 test_0b() {
154         chmod 0755 $DIR || error "chmod 0755 $DIR failed"
155         $CHECKSTAT -p 0755 $DIR || error "$DIR permission is not 0755"
156 }
157 run_test 0b "chmod 0755 $DIR ============================="
158
159 test_0c() {
160         $LCTL get_param mdc.*.import | grep "state: FULL" ||
161                 error "import not FULL"
162         $LCTL get_param mdc.*.import | grep "target: $FSNAME-MDT" ||
163                 error "bad target"
164 }
165 run_test 0c "check import proc"
166
167 test_1() {
168         test_mkdir $DIR/$tdir
169         test_mkdir $DIR/$tdir/d2
170         mkdir $DIR/$tdir/d2 && error "we expect EEXIST, but not returned"
171         $CHECKSTAT -t dir $DIR/$tdir/d2 || error "$tdir/d2 is not a dir"
172         rmdir $DIR/$tdir/d2
173         rmdir $DIR/$tdir
174         $CHECKSTAT -a $DIR/$tdir || error "$tdir was not removed"
175 }
176 run_test 1 "mkdir; remkdir; rmdir"
177
178 test_2() {
179         test_mkdir $DIR/$tdir
180         touch $DIR/$tdir/$tfile || error "touch $tdir/$tfile failed"
181         $CHECKSTAT -t file $DIR/$tdir/$tfile || error "$tdir/$tfile not a file"
182         rm -r $DIR/$tdir
183         $CHECKSTAT -a $DIR/$tdir/$tfile || error "$tdir/$file is not removed"
184 }
185 run_test 2 "mkdir; touch; rmdir; check file"
186
187 test_3() {
188         test_mkdir $DIR/$tdir
189         $CHECKSTAT -t dir $DIR/$tdir || error "$tdir is not a directory"
190         touch $DIR/$tdir/$tfile
191         $CHECKSTAT -t file $DIR/$tdir/$tfile || error "$tdir/$tfile not a file"
192         rm -r $DIR/$tdir
193         $CHECKSTAT -a $DIR/$tdir || error "$tdir is not removed"
194 }
195 run_test 3 "mkdir; touch; rmdir; check dir"
196
197 # LU-4471 - failed rmdir on remote directories still removes directory on MDT0
198 test_4() {
199         test_mkdir -i 1 $DIR/$tdir
200
201         touch $DIR/$tdir/$tfile ||
202                 error "Create file under remote directory failed"
203
204         rmdir $DIR/$tdir &&
205                 error "Expect error removing in-use dir $DIR/$tdir"
206
207         test -d $DIR/$tdir || error "Remote directory disappeared"
208
209         rm -rf $DIR/$tdir || error "remove remote dir error"
210 }
211 run_test 4 "mkdir; touch dir/file; rmdir; checkdir (expect error)"
212
213 test_5() {
214         test_mkdir $DIR/$tdir
215         test_mkdir $DIR/$tdir/d2
216         chmod 0707 $DIR/$tdir/d2 || error "chmod 0707 $tdir/d2 failed"
217         $CHECKSTAT -t dir -p 0707 $DIR/$tdir/d2 || error "$tdir/d2 not mode 707"
218         $CHECKSTAT -t dir $DIR/$tdir/d2 || error "$tdir/d2 is not a directory"
219 }
220 run_test 5 "mkdir .../d5 .../d5/d2; chmod .../d5/d2"
221
222 test_6a() {
223         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
224         chmod 0666 $DIR/$tfile || error "chmod 0666 $tfile failed"
225         $CHECKSTAT -t file -p 0666 -u \#$UID $DIR/$tfile ||
226                 error "$tfile does not have perm 0666 or UID $UID"
227         $RUNAS chmod 0444 $DIR/$tfile && error "chmod $tfile worked on UID $UID"
228         $CHECKSTAT -t file -p 0666 -u \#$UID $DIR/$tfile ||
229                 error "$tfile should be 0666 and owned by UID $UID"
230 }
231 run_test 6a "touch f6a; chmod f6a; $RUNAS chmod f6a (should return error) =="
232
233 test_6c() {
234         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID" && return
235         touch $DIR/$tfile
236         chown $RUNAS_ID $DIR/$tfile || error "chown $RUNAS_ID $file failed"
237         $CHECKSTAT -t file -u \#$RUNAS_ID $DIR/$tfile ||
238                 error "$tfile should be owned by UID $RUNAS_ID"
239         $RUNAS chown $UID $DIR/$tfile && error "chown $UID $file succeeded"
240         $CHECKSTAT -t file -u \#$RUNAS_ID $DIR/$tfile ||
241                 error "$tfile should be owned by UID $RUNAS_ID"
242 }
243 run_test 6c "touch f6c; chown f6c; $RUNAS chown f6c (should return error) =="
244
245 test_6e() {
246         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID" && return
247         touch $DIR/$tfile
248         chgrp $RUNAS_ID $DIR/$tfile || error "chgrp $RUNAS_ID $file failed"
249         $CHECKSTAT -t file -u \#$UID -g \#$RUNAS_ID $DIR/$tfile ||
250                 error "$tfile should be owned by GID $UID"
251         $RUNAS chgrp $UID $DIR/$tfile && error "chgrp $UID $file succeeded"
252         $CHECKSTAT -t file -u \#$UID -g \#$RUNAS_ID $DIR/$tfile ||
253                 error "$tfile should be owned by UID $UID and GID $RUNAS_ID"
254 }
255 run_test 6e "touch+chgrp $tfile; $RUNAS chgrp $tfile (should return error)"
256
257 test_6g() {
258         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID" && return
259         test_mkdir $DIR/$tdir
260         chmod 777 $DIR/$tdir || error "chmod 0777 $tdir failed"
261         $RUNAS mkdir $DIR/$tdir/d || error "mkdir $tdir/d failed"
262         chmod g+s $DIR/$tdir/d || error "chmod g+s $tdir/d failed"
263         test_mkdir $DIR/$tdir/d/subdir
264         $CHECKSTAT -g \#$RUNAS_GID $DIR/$tdir/d/subdir ||
265                 error "$tdir/d/subdir should be GID $RUNAS_GID"
266         if [[ $MDSCOUNT -gt 1 ]]; then
267                 # check remote dir sgid inherite
268                 $LFS mkdir -i 0 $DIR/$tdir.local ||
269                         error "mkdir $tdir.local failed"
270                 chmod g+s $DIR/$tdir.local ||
271                         error "chmod $tdir.local failed"
272                 chgrp $RUNAS_GID $DIR/$tdir.local ||
273                         error "chgrp $tdir.local failed"
274                 $LFS mkdir -i 1 $DIR/$tdir.local/$tdir.remote ||
275                         error "mkdir $tdir.remote failed"
276                 $CHECKSTAT -g \#$RUNAS_GID $DIR/$tdir.local/$tdir.remote ||
277                         error "$tdir.remote should be owned by $UID.$RUNAS_ID"
278                 $CHECKSTAT -p 02755 $DIR/$tdir.local/$tdir.remote ||
279                         error "$tdir.remote should be mode 02755"
280         fi
281 }
282 run_test 6g "verify new dir in sgid dir inherits group"
283
284 test_6h() { # bug 7331
285         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID" && return
286         touch $DIR/$tfile || error "touch failed"
287         chown $RUNAS_ID:$RUNAS_GID $DIR/$tfile || error "initial chown failed"
288         $RUNAS -G$RUNAS_GID chown $RUNAS_ID:0 $DIR/$tfile &&
289                 error "chown $RUNAS_ID:0 $tfile worked as GID $RUNAS_GID"
290         $CHECKSTAT -t file -u \#$RUNAS_ID -g \#$RUNAS_GID $DIR/$tfile ||
291                 error "$tdir/$tfile should be UID $RUNAS_UID GID $RUNAS_GID"
292 }
293 run_test 6h "$RUNAS chown RUNAS_ID.0 .../$tfile (should return error)"
294
295 test_7a() {
296         test_mkdir $DIR/$tdir
297         $MCREATE $DIR/$tdir/$tfile
298         chmod 0666 $DIR/$tdir/$tfile
299         $CHECKSTAT -t file -p 0666 $DIR/$tdir/$tfile ||
300                 error "$tdir/$tfile should be mode 0666"
301 }
302 run_test 7a "mkdir .../d7; mcreate .../d7/f; chmod .../d7/f ===="
303
304 test_7b() {
305         if [ ! -d $DIR/$tdir ]; then
306                 test_mkdir $DIR/$tdir
307         fi
308         $MCREATE $DIR/$tdir/$tfile
309         echo -n foo > $DIR/$tdir/$tfile
310         [ "$(cat $DIR/$tdir/$tfile)" = "foo" ] || error "$tdir/$tfile not 'foo'"
311         $CHECKSTAT -t file -s 3 $DIR/$tdir/$tfile || error "$tfile size not 3"
312 }
313 run_test 7b "mkdir .../d7; mcreate d7/f2; echo foo > d7/f2 ====="
314
315 test_8() {
316         test_mkdir $DIR/$tdir
317         touch $DIR/$tdir/$tfile
318         chmod 0666 $DIR/$tdir/$tfile
319         $CHECKSTAT -t file -p 0666 $DIR/$tdir/$tfile ||
320                 error "$tfile mode not 0666"
321 }
322 run_test 8 "mkdir .../d8; touch .../d8/f; chmod .../d8/f ======="
323
324 test_9() {
325         test_mkdir $DIR/$tdir
326         test_mkdir $DIR/$tdir/d2
327         test_mkdir $DIR/$tdir/d2/d3
328         $CHECKSTAT -t dir $DIR/$tdir/d2/d3 || error "$tdir/d2/d3 not a dir"
329 }
330 run_test 9 "mkdir .../d9 .../d9/d2 .../d9/d2/d3 ================"
331
332 test_10() {
333         test_mkdir $DIR/$tdir
334         test_mkdir $DIR/$tdir/d2
335         touch $DIR/$tdir/d2/$tfile
336         $CHECKSTAT -t file $DIR/$tdir/d2/$tfile ||
337                 error "$tdir/d2/$tfile not a file"
338 }
339 run_test 10 "mkdir .../d10 .../d10/d2; touch .../d10/d2/f ======"
340
341 test_11() {
342         test_mkdir $DIR/$tdir
343         test_mkdir $DIR/$tdir/d2
344         chmod 0666 $DIR/$tdir/d2
345         chmod 0705 $DIR/$tdir/d2
346         $CHECKSTAT -t dir -p 0705 $DIR/$tdir/d2 ||
347                 error "$tdir/d2 mode not 0705"
348 }
349 run_test 11 "mkdir .../d11 d11/d2; chmod .../d11/d2 ============"
350
351 test_12() {
352         test_mkdir $DIR/$tdir
353         touch $DIR/$tdir/$tfile
354         chmod 0666 $DIR/$tdir/$tfile
355         chmod 0654 $DIR/$tdir/$tfile
356         $CHECKSTAT -t file -p 0654 $DIR/$tdir/$tfile ||
357                 error "$tdir/d2 mode not 0654"
358 }
359 run_test 12 "touch .../d12/f; chmod .../d12/f .../d12/f ========"
360
361 test_13() {
362         test_mkdir $DIR/$tdir
363         dd if=/dev/zero of=$DIR/$tdir/$tfile count=10
364         >  $DIR/$tdir/$tfile
365         $CHECKSTAT -t file -s 0 $DIR/$tdir/$tfile ||
366                 error "$tdir/$tfile size not 0 after truncate"
367 }
368 run_test 13 "creat .../d13/f; dd .../d13/f; > .../d13/f ========"
369
370 test_14() {
371         test_mkdir $DIR/$tdir
372         touch $DIR/$tdir/$tfile
373         rm $DIR/$tdir/$tfile
374         $CHECKSTAT -a $DIR/$tdir/$tfile || error "$tdir/$tfile not removed"
375 }
376 run_test 14 "touch .../d14/f; rm .../d14/f; rm .../d14/f ======="
377
378 test_15() {
379         test_mkdir $DIR/$tdir
380         touch $DIR/$tdir/$tfile
381         mv $DIR/$tdir/$tfile $DIR/$tdir/${tfile}_2
382         $CHECKSTAT -t file $DIR/$tdir/${tfile}_2 ||
383                 error "$tdir/${tfile_2} not a file after rename"
384         rm $DIR/$tdir/${tfile}_2 || error "unlink failed after rename"
385 }
386 run_test 15 "touch .../d15/f; mv .../d15/f .../d15/f2 =========="
387
388 test_16() {
389         test_mkdir $DIR/$tdir
390         touch $DIR/$tdir/$tfile
391         rm -rf $DIR/$tdir/$tfile
392         $CHECKSTAT -a $DIR/$tdir/$tfile || error "$tdir/$tfile not removed"
393 }
394 run_test 16 "touch .../d16/f; rm -rf .../d16/f"
395
396 test_17a() {
397         test_mkdir $DIR/$tdir
398         touch $DIR/$tdir/$tfile
399         ln -s $DIR/$tdir/$tfile $DIR/$tdir/l-exist
400         ls -l $DIR/$tdir
401         $CHECKSTAT -l $DIR/$tdir/$tfile $DIR/$tdir/l-exist ||
402                 error "$tdir/l-exist not a symlink"
403         $CHECKSTAT -f -t f $DIR/$tdir/l-exist ||
404                 error "$tdir/l-exist not referencing a file"
405         rm -f $DIR/$tdir/l-exist
406         $CHECKSTAT -a $DIR/$tdir/l-exist || error "$tdir/l-exist not removed"
407 }
408 run_test 17a "symlinks: create, remove (real)"
409
410 test_17b() {
411         test_mkdir $DIR/$tdir
412         ln -s no-such-file $DIR/$tdir/l-dangle
413         ls -l $DIR/$tdir
414         $CHECKSTAT -l no-such-file $DIR/$tdir/l-dangle ||
415                 error "$tdir/l-dangle not referencing no-such-file"
416         $CHECKSTAT -fa $DIR/$tdir/l-dangle ||
417                 error "$tdir/l-dangle not referencing non-existent file"
418         rm -f $DIR/$tdir/l-dangle
419         $CHECKSTAT -a $DIR/$tdir/l-dangle || error "$tdir/l-dangle not removed"
420 }
421 run_test 17b "symlinks: create, remove (dangling)"
422
423 test_17c() { # bug 3440 - don't save failed open RPC for replay
424         test_mkdir $DIR/$tdir
425         ln -s foo $DIR/$tdir/$tfile
426         cat $DIR/$tdir/$tfile && error "opened non-existent symlink" || true
427 }
428 run_test 17c "symlinks: open dangling (should return error)"
429
430 test_17d() {
431         test_mkdir $DIR/$tdir
432         ln -s foo $DIR/$tdir/$tfile
433         touch $DIR/$tdir/$tfile || error "creating to new symlink"
434 }
435 run_test 17d "symlinks: create dangling"
436
437 test_17e() {
438         test_mkdir $DIR/$tdir
439         local foo=$DIR/$tdir/$tfile
440         ln -s $foo $foo || error "create symlink failed"
441         ls -l $foo || error "ls -l failed"
442         ls $foo && error "ls not failed" || true
443 }
444 run_test 17e "symlinks: create recursive symlink (should return error)"
445
446 test_17f() {
447         test_mkdir $DIR/$tdir
448         ln -s 1234567890/2234567890/3234567890/4234567890 $DIR/$tdir/111
449         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890 $DIR/$tdir/222
450         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890 $DIR/$tdir/333
451         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890/9234567890/a234567890/b234567890 $DIR/$tdir/444
452         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890/9234567890/a234567890/b234567890/c234567890/d234567890/f234567890 $DIR/$tdir/555
453         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
454         ls -l  $DIR/$tdir
455 }
456 run_test 17f "symlinks: long and very long symlink name"
457
458 # str_repeat(S, N) generate a string that is string S repeated N times
459 str_repeat() {
460         local s=$1
461         local n=$2
462         local ret=''
463         while [ $((n -= 1)) -ge 0 ]; do
464                 ret=$ret$s
465         done
466         echo $ret
467 }
468
469 # Long symlinks and LU-2241
470 test_17g() {
471         test_mkdir $DIR/$tdir
472         local TESTS="59 60 61 4094 4095"
473
474         # Fix for inode size boundary in 2.1.4
475         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.1.4) ] &&
476                 TESTS="4094 4095"
477
478         # Patch not applied to 2.2 or 2.3 branches
479         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] &&
480         [ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.3.55) ] &&
481                 TESTS="4094 4095"
482
483         # skip long symlink name for rhel6.5.
484         # rhel6.5 has a limit (PATH_MAX - sizeof(struct filename))
485         grep -q '6.5' /etc/redhat-release &>/dev/null &&
486                 TESTS="59 60 61 4062 4063"
487
488         for i in $TESTS; do
489                 local SYMNAME=$(str_repeat 'x' $i)
490                 ln -s $SYMNAME $DIR/$tdir/f$i || error "failed $i-char symlink"
491                 readlink $DIR/$tdir/f$i || error "failed $i-char readlink"
492         done
493 }
494 run_test 17g "symlinks: really long symlink name and inode boundaries"
495
496 test_17h() { #bug 17378
497         remote_mds_nodsh && skip "remote MDS with nodsh" && return
498         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
499         local mdt_idx
500         test_mkdir $DIR/$tdir
501         if [[ $MDSCOUNT -gt 1 ]]; then
502                 mdt_idx=$($LFS getdirstripe -i $DIR/$tdir)
503         else
504                 mdt_idx=0
505         fi
506         $LFS setstripe -c -1 $DIR/$tdir
507         #define OBD_FAIL_MDS_LOV_PREP_CREATE 0x141
508         do_facet mds$((mdt_idx + 1)) lctl set_param fail_loc=0x80000141
509         touch $DIR/$tdir/$tfile || true
510 }
511 run_test 17h "create objects: lov_free_memmd() doesn't lbug"
512
513 test_17i() { #bug 20018
514         remote_mds_nodsh && skip "remote MDS with nodsh" && return
515         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
516         test_mkdir -c1 $DIR/$tdir
517         local foo=$DIR/$tdir/$tfile
518         local mdt_idx
519         if [[ $MDSCOUNT -gt 1 ]]; then
520                 mdt_idx=$($LFS getdirstripe -i $DIR/$tdir)
521         else
522                 mdt_idx=0
523         fi
524         ln -s $foo $foo || error "create symlink failed"
525 #define OBD_FAIL_MDS_READLINK_EPROTO     0x143
526         do_facet mds$((mdt_idx + 1)) lctl set_param fail_loc=0x80000143
527         ls -l $foo && error "error not detected"
528         return 0
529 }
530 run_test 17i "don't panic on short symlink"
531
532 test_17k() { #bug 22301
533         [[ -z "$(which rsync 2>/dev/null)" ]] &&
534                 skip "no rsync command" && return 0
535         rsync --help | grep -q xattr ||
536                 skip_env "$(rsync --version | head -n1) does not support xattrs"
537         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return 0
538         test_mkdir $DIR/$tdir
539         test_mkdir $DIR/$tdir.new
540         touch $DIR/$tdir/$tfile
541         ln -s $DIR/$tdir/$tfile $DIR/$tdir/$tfile.lnk
542         rsync -av -X $DIR/$tdir/ $DIR/$tdir.new ||
543                 error "rsync failed with xattrs enabled"
544 }
545 run_test 17k "symlinks: rsync with xattrs enabled"
546
547 test_17l() { # LU-279
548         [[ -z "$(which getfattr 2>/dev/null)" ]] &&
549                 skip "no getfattr command" && return 0
550         test_mkdir $DIR/$tdir
551         touch $DIR/$tdir/$tfile
552         ln -s $DIR/$tdir/$tfile $DIR/$tdir/$tfile.lnk
553         for path in "$DIR/$tdir" "$DIR/$tdir/$tfile" "$DIR/$tdir/$tfile.lnk"; do
554                 # -h to not follow symlinks. -m '' to list all the xattrs.
555                 # grep to remove first line: '# file: $path'.
556                 for xattr in `getfattr -hm '' $path 2>/dev/null | grep -v '^#'`;
557                 do
558                         lgetxattr_size_check $path $xattr ||
559                                 error "lgetxattr_size_check $path $xattr failed"
560                 done
561         done
562 }
563 run_test 17l "Ensure lgetxattr's returned xattr size is consistent"
564
565 # LU-1540
566 test_17m() {
567         local short_sym="0123456789"
568         local wdir=$DIR/$tdir
569         local i
570
571         remote_mds_nodsh && skip "remote MDS with nodsh" && return
572         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] &&
573         [ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.2.93) ] &&
574                 skip "MDS 2.2.0-2.2.93 do not NUL-terminate symlinks" && return
575
576         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
577                 skip "ldiskfs only test" && return 0
578
579         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
580
581         test_mkdir $wdir
582         long_sym=$short_sym
583         # create a long symlink file
584         for ((i = 0; i < 4; ++i)); do
585                 long_sym=${long_sym}${long_sym}
586         done
587
588         echo "create 512 short and long symlink files under $wdir"
589         for ((i = 0; i < 256; ++i)); do
590                 ln -sf ${long_sym}"a5a5" $wdir/long-$i
591                 ln -sf ${short_sym}"a5a5" $wdir/short-$i
592         done
593
594         echo "erase them"
595         rm -f $wdir/*
596         sync
597         wait_delete_completed
598
599         echo "recreate the 512 symlink files with a shorter string"
600         for ((i = 0; i < 512; ++i)); do
601                 # rewrite the symlink file with a shorter string
602                 ln -sf ${long_sym} $wdir/long-$i || error "long_sym failed"
603                 ln -sf ${short_sym} $wdir/short-$i || error "short_sym failed"
604         done
605
606         local mds_index=$(($($LFS getstripe -M $wdir) + 1))
607         local devname=$(mdsdevname $mds_index)
608
609         echo "stop and checking mds${mds_index}:"
610         # e2fsck should not return error
611         stop mds${mds_index}
612         run_e2fsck $(facet_active_host mds${mds_index}) $devname -n
613         rc=$?
614
615         start mds${mds_index} $devname $MDS_MOUNT_OPTS ||
616                 error "start mds${mds_index} failed"
617         df $MOUNT > /dev/null 2>&1
618         [ $rc -eq 0 ] ||
619                 error "e2fsck detected error for short/long symlink: rc=$rc"
620 }
621 run_test 17m "run e2fsck against MDT which contains short/long symlink"
622
623 check_fs_consistency_17n() {
624         local mdt_index
625         local rc=0
626
627         # create/unlink in 17n only change 2 MDTs(MDT1/MDT2),
628         # so it only check MDT1/MDT2 instead of all of MDTs.
629         for mdt_index in 1 2; do
630                 local devname=$(mdsdevname $mdt_index)
631                 # e2fsck should not return error
632                 stop mds${mdt_index}
633                 run_e2fsck $(facet_active_host mds$mdt_index) $devname -n ||
634                         rc=$((rc + $?))
635
636                 start mds${mdt_index} $devname $MDS_MOUNT_OPTS ||
637                         error "mount mds$mdt_index failed"
638                 df $MOUNT > /dev/null 2>&1
639         done
640         return $rc
641 }
642
643 test_17n() {
644         local i
645
646         remote_mds_nodsh && skip "remote MDS with nodsh" && return
647         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] &&
648         [ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.2.93) ] &&
649                 skip "MDS 2.2.0-2.2.93 do not NUL-terminate symlinks" && return
650
651         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
652                 skip "ldiskfs only test" && return 0
653
654         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 2 MDTs" && return
655
656         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
657
658         test_mkdir $DIR/$tdir
659         for ((i=0; i<10; i++)); do
660                 $LFS mkdir -i1 -c2 $DIR/$tdir/remote_dir_${i} ||
661                         error "create remote dir error $i"
662                 createmany -o $DIR/$tdir/remote_dir_${i}/f 10 ||
663                         error "create files under remote dir failed $i"
664         done
665
666         check_fs_consistency_17n ||
667                 error "e2fsck report error after create files under remote dir"
668
669         for ((i = 0; i < 10; i++)); do
670                 rm -rf $DIR/$tdir/remote_dir_${i} ||
671                         error "destroy remote dir error $i"
672         done
673
674         check_fs_consistency_17n ||
675                 error "e2fsck report error after unlink files under remote dir"
676
677         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.50) ] &&
678                 skip "lustre < 2.4.50 does not support migrate mv " && return
679
680         for ((i = 0; i < 10; i++)); do
681                 mkdir -p $DIR/$tdir/remote_dir_${i}
682                 createmany -o $DIR/$tdir/remote_dir_${i}/f 10 ||
683                         error "create files under remote dir failed $i"
684                 $LFS migrate --mdt-index 1 $DIR/$tdir/remote_dir_${i} ||
685                         error "migrate remote dir error $i"
686         done
687         check_fs_consistency_17n || error "e2fsck report error after migration"
688
689         for ((i = 0; i < 10; i++)); do
690                 rm -rf $DIR/$tdir/remote_dir_${i} ||
691                         error "destroy remote dir error $i"
692         done
693
694         check_fs_consistency_17n || error "e2fsck report error after unlink"
695 }
696 run_test 17n "run e2fsck against master/slave MDT which contains remote dir"
697
698 test_17o() {
699         remote_mds_nodsh && skip "remote MDS with nodsh" && return
700         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.64) ] &&
701                 skip "Need MDS version at least 2.3.64" && return
702
703         local wdir=$DIR/${tdir}o
704         local mdt_index
705         local rc=0
706
707         test_mkdir $wdir
708         touch $wdir/$tfile
709         mdt_index=$($LFS getstripe -M $wdir/$tfile)
710         mdt_index=$((mdt_index + 1))
711
712         cancel_lru_locks mdc
713         #fail mds will wait the failover finish then set
714         #following fail_loc to avoid interfer the recovery process.
715         fail mds${mdt_index}
716
717         #define OBD_FAIL_OSD_LMA_INCOMPAT 0x194
718         do_facet mds${mdt_index} lctl set_param fail_loc=0x194
719         ls -l $wdir/$tfile && rc=1
720         do_facet mds${mdt_index} lctl set_param fail_loc=0
721         [[ $rc -eq 0 ]] || error "stat file should fail"
722 }
723 run_test 17o "stat file with incompat LMA feature"
724
725 test_18() {
726         touch $DIR/$tfile || error "Failed to touch $DIR/$tfile: $?"
727         ls $DIR || error "Failed to ls $DIR: $?"
728 }
729 run_test 18 "touch .../f ; ls ... =============================="
730
731 test_19a() {
732         touch $DIR/$tfile
733         ls -l $DIR
734         rm $DIR/$tfile
735         $CHECKSTAT -a $DIR/$tfile || error "$tfile was not removed"
736 }
737 run_test 19a "touch .../f19 ; ls -l ... ; rm .../f19 ==========="
738
739 test_19b() {
740         ls -l $DIR/$tfile && error "ls -l $tfile failed"|| true
741 }
742 run_test 19b "ls -l .../f19 (should return error) =============="
743
744 test_19c() {
745         [ $RUNAS_ID -eq $UID ] &&
746                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
747         $RUNAS touch $DIR/$tfile && error "create non-root file failed" || true
748 }
749 run_test 19c "$RUNAS touch .../f19 (should return error) =="
750
751 test_19d() {
752         cat $DIR/f19 && error || true
753 }
754 run_test 19d "cat .../f19 (should return error) =============="
755
756 test_20() {
757         touch $DIR/$tfile
758         rm $DIR/$tfile
759         touch $DIR/$tfile
760         rm $DIR/$tfile
761         touch $DIR/$tfile
762         rm $DIR/$tfile
763         $CHECKSTAT -a $DIR/$tfile || error "$tfile was not removed"
764 }
765 run_test 20 "touch .../f ; ls -l ..."
766
767 test_21() {
768         test_mkdir $DIR/$tdir
769         [ -f $DIR/$tdir/dangle ] && rm -f $DIR/$tdir/dangle
770         ln -s dangle $DIR/$tdir/link
771         echo foo >> $DIR/$tdir/link
772         cat $DIR/$tdir/dangle
773         $CHECKSTAT -t link $DIR/$tdir/link || error "$tdir/link not a link"
774         $CHECKSTAT -f -t file $DIR/$tdir/link ||
775                 error "$tdir/link not linked to a file"
776 }
777 run_test 21 "write to dangling link"
778
779 test_22() {
780         local wdir=$DIR/$tdir
781         test_mkdir $wdir
782         chown $RUNAS_ID:$RUNAS_GID $wdir
783         (cd $wdir || error "cd $wdir failed";
784                 $RUNAS tar cf - /etc/hosts /etc/sysconfig/network |
785                 $RUNAS tar xf -)
786         ls -lR $wdir/etc || error "ls -lR $wdir/etc failed"
787         $CHECKSTAT -t dir $wdir/etc || error "checkstat -t dir failed"
788         $CHECKSTAT -u \#$RUNAS_ID -g \#$RUNAS_GID $wdir/etc ||
789                 error "checkstat -u failed"
790 }
791 run_test 22 "unpack tar archive as non-root user"
792
793 # was test_23
794 test_23a() {
795         test_mkdir $DIR/$tdir
796         local file=$DIR/$tdir/$tfile
797
798         openfile -f O_CREAT:O_EXCL $file || error "$file create failed"
799         openfile -f O_CREAT:O_EXCL $file &&
800                 error "$file recreate succeeded" || true
801 }
802 run_test 23a "O_CREAT|O_EXCL in subdir"
803
804 test_23b() { # bug 18988
805         test_mkdir $DIR/$tdir
806         local file=$DIR/$tdir/$tfile
807
808         rm -f $file
809         echo foo > $file || error "write filed"
810         echo bar >> $file || error "append filed"
811         $CHECKSTAT -s 8 $file || error "wrong size"
812         rm $file
813 }
814 run_test 23b "O_APPEND check"
815
816 # rename sanity
817 test_24a() {
818         echo '-- same directory rename'
819         test_mkdir $DIR/$tdir
820         touch $DIR/$tdir/$tfile.1
821         mv $DIR/$tdir/$tfile.1 $DIR/$tdir/$tfile.2
822         $CHECKSTAT -t file $DIR/$tdir/$tfile.2 || error "$tfile.2 not a file"
823 }
824 run_test 24a "rename file to non-existent target"
825
826 test_24b() {
827         test_mkdir $DIR/$tdir
828         touch $DIR/$tdir/$tfile.{1,2}
829         mv $DIR/$tdir/$tfile.1 $DIR/$tdir/$tfile.2
830         $CHECKSTAT -a $DIR/$tdir/$tfile.1 || error "$tfile.1 exists"
831         $CHECKSTAT -t file $DIR/$tdir/$tfile.2 || error "$tfile.2 not a file"
832 }
833 run_test 24b "rename file to existing target"
834
835 test_24c() {
836         test_mkdir $DIR/$tdir
837         test_mkdir $DIR/$tdir/d$testnum.1
838         mv $DIR/$tdir/d$testnum.1 $DIR/$tdir/d$testnum.2
839         $CHECKSTAT -a $DIR/$tdir/d$testnum.1 || error "d$testnum.1 exists"
840         $CHECKSTAT -t dir $DIR/$tdir/d$testnum.2 || error "d$testnum.2 not dir"
841 }
842 run_test 24c "rename directory to non-existent target"
843
844 test_24d() {
845         test_mkdir -c1 $DIR/$tdir
846         test_mkdir -c1 $DIR/$tdir/d$testnum.1
847         test_mkdir -c1 $DIR/$tdir/d$testnum.2
848         mrename $DIR/$tdir/d$testnum.1 $DIR/$tdir/d$testnum.2
849         $CHECKSTAT -a $DIR/$tdir/d$testnum.1 || error "d$testnum.1 exists"
850         $CHECKSTAT -t dir $DIR/$tdir/d$testnum.2 || error "d$testnum.2 not dir"
851 }
852 run_test 24d "rename directory to existing target"
853
854 test_24e() {
855         echo '-- cross directory renames --'
856         test_mkdir $DIR/R5a
857         test_mkdir $DIR/R5b
858         touch $DIR/R5a/f
859         mv $DIR/R5a/f $DIR/R5b/g
860         $CHECKSTAT -a $DIR/R5a/f || error
861         $CHECKSTAT -t file $DIR/R5b/g || error
862 }
863 run_test 24e "touch .../R5a/f; rename .../R5a/f .../R5b/g ======"
864
865 test_24f() {
866         test_mkdir $DIR/R6a
867         test_mkdir $DIR/R6b
868         touch $DIR/R6a/f $DIR/R6b/g
869         mv $DIR/R6a/f $DIR/R6b/g
870         $CHECKSTAT -a $DIR/R6a/f || error
871         $CHECKSTAT -t file $DIR/R6b/g || error
872 }
873 run_test 24f "touch .../R6a/f R6b/g; mv .../R6a/f .../R6b/g ===="
874
875 test_24g() {
876         test_mkdir $DIR/R7a
877         test_mkdir $DIR/R7b
878         test_mkdir $DIR/R7a/d
879         mv $DIR/R7a/d $DIR/R7b/e
880         $CHECKSTAT -a $DIR/R7a/d || error
881         $CHECKSTAT -t dir $DIR/R7b/e || error
882 }
883 run_test 24g "mkdir .../R7{a,b}/d; mv .../R7a/d .../R7b/e ======"
884
885 test_24h() {
886         test_mkdir -c1 $DIR/R8a
887         test_mkdir -c1 $DIR/R8b
888         test_mkdir -c1 $DIR/R8a/d
889         test_mkdir -c1 $DIR/R8b/e
890         mrename $DIR/R8a/d $DIR/R8b/e
891         $CHECKSTAT -a $DIR/R8a/d || error
892         $CHECKSTAT -t dir $DIR/R8b/e || error
893 }
894 run_test 24h "mkdir .../R8{a,b}/{d,e}; rename .../R8a/d .../R8b/e"
895
896 test_24i() {
897         echo "-- rename error cases"
898         test_mkdir $DIR/R9
899         test_mkdir $DIR/R9/a
900         touch $DIR/R9/f
901         mrename $DIR/R9/f $DIR/R9/a
902         $CHECKSTAT -t file $DIR/R9/f || error
903         $CHECKSTAT -t dir  $DIR/R9/a || error
904         $CHECKSTAT -a $DIR/R9/a/f || error
905 }
906 run_test 24i "rename file to dir error: touch f ; mkdir a ; rename f a"
907
908 test_24j() {
909         test_mkdir $DIR/R10
910         mrename $DIR/R10/f $DIR/R10/g
911         $CHECKSTAT -t dir $DIR/R10 || error
912         $CHECKSTAT -a $DIR/R10/f || error
913         $CHECKSTAT -a $DIR/R10/g || error
914 }
915 run_test 24j "source does not exist ============================"
916
917 test_24k() {
918         test_mkdir $DIR/R11a
919         test_mkdir $DIR/R11a/d
920         touch $DIR/R11a/f
921         mv $DIR/R11a/f $DIR/R11a/d
922         $CHECKSTAT -a $DIR/R11a/f || error
923         $CHECKSTAT -t file $DIR/R11a/d/f || error
924 }
925 run_test 24k "touch .../R11a/f; mv .../R11a/f .../R11a/d ======="
926
927 # bug 2429 - rename foo foo foo creates invalid file
928 test_24l() {
929         f="$DIR/f24l"
930         $MULTIOP $f OcNs || error
931 }
932 run_test 24l "Renaming a file to itself ========================"
933
934 test_24m() {
935         f="$DIR/f24m"
936         $MULTIOP $f OcLN ${f}2 ${f}2 || error "link ${f}2 ${f}2 failed"
937         # on ext3 this does not remove either the source or target files
938         # though the "expected" operation would be to remove the source
939         $CHECKSTAT -t file ${f} || error "${f} missing"
940         $CHECKSTAT -t file ${f}2 || error "${f}2 missing"
941 }
942 run_test 24m "Renaming a file to a hard link to itself ========="
943
944 test_24n() {
945     f="$DIR/f24n"
946     # this stats the old file after it was renamed, so it should fail
947     touch ${f}
948     $CHECKSTAT ${f}
949     mv ${f} ${f}.rename
950     $CHECKSTAT ${f}.rename
951     $CHECKSTAT -a ${f}
952 }
953 run_test 24n "Statting the old file after renaming (Posix rename 2)"
954
955 test_24o() {
956         test_mkdir $DIR/$tdir
957         rename_many -s random -v -n 10 $DIR/$tdir
958 }
959 run_test 24o "rename of files during htree split"
960
961 test_24p() {
962         test_mkdir $DIR/R12a
963         test_mkdir $DIR/R12b
964         DIRINO=`ls -lid $DIR/R12a | awk '{ print $1 }'`
965         mrename $DIR/R12a $DIR/R12b
966         $CHECKSTAT -a $DIR/R12a || error
967         $CHECKSTAT -t dir $DIR/R12b || error
968         DIRINO2=`ls -lid $DIR/R12b | awk '{ print $1 }'`
969         [ "$DIRINO" = "$DIRINO2" ] || error "R12a $DIRINO != R12b $DIRINO2"
970 }
971 run_test 24p "mkdir .../R12{a,b}; rename .../R12a .../R12b"
972
973 cleanup_multiop_pause() {
974         trap 0
975         kill -USR1 $MULTIPID
976 }
977
978 test_24q() {
979         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
980         test_mkdir $DIR/R13a
981         test_mkdir $DIR/R13b
982         local DIRINO=$(ls -lid $DIR/R13a | awk '{ print $1 }')
983         multiop_bg_pause $DIR/R13b D_c || error "multiop failed to start"
984         MULTIPID=$!
985
986         trap cleanup_multiop_pause EXIT
987         mrename $DIR/R13a $DIR/R13b
988         $CHECKSTAT -a $DIR/R13a || error "R13a still exists"
989         $CHECKSTAT -t dir $DIR/R13b || error "R13b does not exist"
990         local DIRINO2=$(ls -lid $DIR/R13b | awk '{ print $1 }')
991         [ "$DIRINO" = "$DIRINO2" ] || error "R13a $DIRINO != R13b $DIRINO2"
992         cleanup_multiop_pause
993         wait $MULTIPID || error "multiop close failed"
994 }
995 run_test 24q "mkdir .../R13{a,b}; open R13b rename R13a R13b ==="
996
997 test_24r() { #bug 3789
998         test_mkdir $DIR/R14a
999         test_mkdir $DIR/R14a/b
1000         mrename $DIR/R14a $DIR/R14a/b && error "rename to subdir worked!"
1001         $CHECKSTAT -t dir $DIR/R14a || error "$DIR/R14a missing"
1002         $CHECKSTAT -t dir $DIR/R14a/b || error "$DIR/R14a/b missing"
1003 }
1004 run_test 24r "mkdir .../R14a/b; rename .../R14a .../R14a/b ====="
1005
1006 test_24s() {
1007         test_mkdir $DIR/R15a
1008         test_mkdir $DIR/R15a/b
1009         test_mkdir $DIR/R15a/b/c
1010         mrename $DIR/R15a $DIR/R15a/b/c && error "rename to sub-subdir worked!"
1011         $CHECKSTAT -t dir $DIR/R15a || error "$DIR/R15a missing"
1012         $CHECKSTAT -t dir $DIR/R15a/b/c || error "$DIR/R15a/b/c missing"
1013 }
1014 run_test 24s "mkdir .../R15a/b/c; rename .../R15a .../R15a/b/c ="
1015 test_24t() {
1016         test_mkdir $DIR/R16a
1017         test_mkdir $DIR/R16a/b
1018         test_mkdir $DIR/R16a/b/c
1019         mrename $DIR/R16a/b/c $DIR/R16a && error "rename to sub-subdir worked!"
1020         $CHECKSTAT -t dir $DIR/R16a || error "$DIR/R16a missing"
1021         $CHECKSTAT -t dir $DIR/R16a/b/c || error "$DIR/R16a/b/c missing"
1022 }
1023 run_test 24t "mkdir .../R16a/b/c; rename .../R16a/b/c .../R16a ="
1024
1025 test_24u() { # bug12192
1026         $MULTIOP $DIR/$tfile C2w$((2048 * 1024))c || error
1027         $CHECKSTAT -s $((2048 * 1024)) $DIR/$tfile || error "wrong file size"
1028 }
1029 run_test 24u "create stripe file"
1030
1031 page_size() {
1032         local size
1033         size=$(getconf PAGE_SIZE 2>/dev/null)
1034         echo -n ${size:-4096}
1035 }
1036
1037 simple_cleanup_common() {
1038         local rc=0
1039         trap 0
1040         [ -z "$DIR" -o -z "$tdir" ] && return 0
1041
1042         local start=$SECONDS
1043         rm -rf $DIR/$tdir
1044         rc=$?
1045         wait_delete_completed
1046         echo "cleanup time $((SECONDS - start))"
1047         return $rc
1048 }
1049
1050 max_pages_per_rpc() {
1051         local mdtname="$(printf "MDT%04x" ${1:-0})"
1052         $LCTL get_param -n mdc.*$mdtname*.max_pages_per_rpc
1053 }
1054
1055 test_24v() {
1056         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1057         local nrfiles=${COUNT:-100000}
1058         # Performance issue on ZFS see LU-4072 (c.f. LU-2887)
1059         [ $(facet_fstype $SINGLEMDS) = "zfs" ] && nrfiles=${COUNT:-10000}
1060
1061         local fname="$DIR/$tdir/$tfile"
1062         test_mkdir "$(dirname $fname)"
1063         # assume MDT0000 has the fewest inodes
1064         local stripes=$($LFS getdirstripe -c $(dirname $fname))
1065         local free_inodes=$(($(mdt_free_inodes 0) * stripes))
1066         [[ $free_inodes -lt $nrfiles ]] && nrfiles=$free_inodes
1067
1068         trap simple_cleanup_common EXIT
1069
1070         createmany -m "$fname" $nrfiles
1071
1072         cancel_lru_locks mdc
1073         lctl set_param mdc.*.stats clear
1074
1075         # was previously test_24D: LU-6101
1076         # readdir() returns correct number of entries after cursor reload
1077         local num_ls=$(ls $DIR/$tdir | wc -l)
1078         local num_uniq=$(ls $DIR/$tdir | sort -u | wc -l)
1079         local num_all=$(ls -a $DIR/$tdir | wc -l)
1080         if [ $num_ls -ne $nrfiles -o $num_uniq -ne $nrfiles -o \
1081              $num_all -ne $((nrfiles + 2)) ]; then
1082                 error "Expected $nrfiles files, got $num_ls " \
1083                         "($num_uniq unique $num_all .&..)"
1084         fi
1085         # LU-5 large readdir
1086         # dirent_size = 32 bytes for sizeof(struct lu_dirent) +
1087         #               N bytes for name (len($nrfiles) rounded to 8 bytes) +
1088         #               8 bytes for luda_type (4 bytes rounded to 8 bytes)
1089         # take into account of overhead in lu_dirpage header and end mark in
1090         # each page, plus one in rpc_num calculation.
1091         local dirent_size=$((32 + (${#tfile} | 7) + 1 + 8))
1092         local page_entries=$((($(page_size) - 24) / dirent_size))
1093         local mdt_idx=$($LFS getdirstripe -i $(dirname $fname))
1094         local rpc_pages=$(max_pages_per_rpc $mdt_idx)
1095         local rpc_max=$((nrfiles / (page_entries * rpc_pages) + stripes))
1096         local mds_readpage=$(calc_stats mdc.*.stats mds_readpage)
1097         echo "readpages: $mds_readpage rpc_max: $rpc_max"
1098         (( $mds_readpage < $rpc_max - 2 || $mds_readpage > $rpc_max + 1)) &&
1099                 error "large readdir doesn't take effect: " \
1100                       "$mds_readpage should be about $rpc_max"
1101
1102         simple_cleanup_common
1103 }
1104 run_test 24v "list large directory (test hash collision, b=17560)"
1105
1106 test_24w() { # bug21506
1107         SZ1=234852
1108         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=4096 || return 1
1109         dd if=/dev/zero bs=$SZ1 count=1 >> $DIR/$tfile || return 2
1110         dd if=$DIR/$tfile of=$DIR/${tfile}_left bs=1M skip=4097 || return 3
1111         SZ2=`ls -l $DIR/${tfile}_left | awk '{print $5}'`
1112         [[ "$SZ1" -eq "$SZ2" ]] ||
1113                 error "Error reading at the end of the file $tfile"
1114 }
1115 run_test 24w "Reading a file larger than 4Gb"
1116
1117 test_24x() {
1118         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 2 MDTs" && return
1119
1120         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.56) ]] &&
1121                 skip "Need MDS version at least 2.7.56" && return
1122
1123         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1124         local MDTIDX=1
1125         local remote_dir=$DIR/$tdir/remote_dir
1126
1127         test_mkdir $DIR/$tdir
1128         $LFS mkdir -i $MDTIDX $remote_dir ||
1129                 error "create remote directory failed"
1130
1131         test_mkdir $DIR/$tdir/src_dir
1132         touch $DIR/$tdir/src_file
1133         test_mkdir $remote_dir/tgt_dir
1134         touch $remote_dir/tgt_file
1135
1136         mrename $DIR/$tdir/src_dir $remote_dir/tgt_dir ||
1137                 error "rename dir cross MDT failed!"
1138
1139         mrename $DIR/$tdir/src_file $remote_dir/tgt_file ||
1140                 error "rename file cross MDT failed!"
1141
1142         touch $DIR/$tdir/ln_file
1143         ln $DIR/$tdir/ln_file $remote_dir/ln_name ||
1144                 error "ln file cross MDT failed"
1145
1146         rm -rf $DIR/$tdir || error "Can not delete directories"
1147 }
1148 run_test 24x "cross MDT rename/link"
1149
1150 test_24y() {
1151         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 2 MDTs" && return
1152         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1153         local remote_dir=$DIR/$tdir/remote_dir
1154         local mdtidx=1
1155
1156         test_mkdir $DIR/$tdir
1157         $LFS mkdir -i $mdtidx $remote_dir ||
1158                    error "create remote directory failed"
1159
1160         test_mkdir $remote_dir/src_dir
1161         touch $remote_dir/src_file
1162         test_mkdir $remote_dir/tgt_dir
1163         touch $remote_dir/tgt_file
1164
1165         mrename $remote_dir/src_dir $remote_dir/tgt_dir ||
1166                 error "rename subdir in the same remote dir failed!"
1167
1168         mrename $remote_dir/src_file $remote_dir/tgt_file ||
1169                 error "rename files in the same remote dir failed!"
1170
1171         ln $remote_dir/tgt_file $remote_dir/tgt_file1 ||
1172                 error "link files in the same remote dir failed!"
1173
1174         rm -rf $DIR/$tdir || error "Can not delete directories"
1175 }
1176 run_test 24y "rename/link on the same dir should succeed"
1177
1178 test_24A() { # LU-3182
1179         local NFILES=5000
1180
1181         rm -rf $DIR/$tdir
1182         test_mkdir $DIR/$tdir
1183         trap simple_cleanup_common EXIT
1184         createmany -m $DIR/$tdir/$tfile $NFILES
1185         local t=$(ls $DIR/$tdir | wc -l)
1186         local u=$(ls $DIR/$tdir | sort -u | wc -l)
1187         local v=$(ls -ai $DIR/$tdir | sort -u | wc -l)
1188         if [ $t -ne $NFILES -o $u -ne $NFILES -o $v -ne $((NFILES + 2)) ] ; then
1189                 error "Expected $NFILES files, got $t ($u unique $v .&..)"
1190         fi
1191
1192         simple_cleanup_common || error "Can not delete directories"
1193 }
1194 run_test 24A "readdir() returns correct number of entries."
1195
1196 test_24B() { # LU-4805
1197         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
1198         local count
1199
1200         test_mkdir $DIR/$tdir
1201         $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/striped_dir ||
1202                 error "create striped dir failed"
1203
1204         count=$(ls -ai $DIR/$tdir/striped_dir | wc -l)
1205         [ $count -eq 2 ] || error "Expected 2, got $count"
1206
1207         touch $DIR/$tdir/striped_dir/a
1208
1209         count=$(ls -ai $DIR/$tdir/striped_dir | wc -l)
1210         [ $count -eq 3 ] || error "Expected 3, got $count"
1211
1212         touch $DIR/$tdir/striped_dir/.f
1213
1214         count=$(ls -ai $DIR/$tdir/striped_dir | wc -l)
1215         [ $count -eq 4 ] || error "Expected 4, got $count"
1216
1217         rm -rf $DIR/$tdir || error "Can not delete directories"
1218 }
1219 run_test 24B "readdir for striped dir return correct number of entries"
1220
1221 test_24C() {
1222         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
1223
1224         mkdir $DIR/$tdir
1225         mkdir $DIR/$tdir/d0
1226         mkdir $DIR/$tdir/d1
1227
1228         $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/d0/striped_dir ||
1229                 error "create striped dir failed"
1230
1231         cd $DIR/$tdir/d0/striped_dir
1232
1233         local d0_ino=$(ls -i -l -a $DIR/$tdir | grep "d0" | awk '{print $1}')
1234         local d1_ino=$(ls -i -l -a $DIR/$tdir | grep "d1" | awk '{print $1}')
1235         local parent_ino=$(ls -i -l -a | grep "\.\." | awk '{print $1}')
1236
1237         [ "$d0_ino" = "$parent_ino" ] ||
1238                 error ".. wrong, expect $d0_ino, get $parent_ino"
1239
1240         mv $DIR/$tdir/d0/striped_dir $DIR/$tdir/d1/ ||
1241                 error "mv striped dir failed"
1242
1243         parent_ino=$(ls -i -l -a | grep "\.\." | awk '{print $1}')
1244
1245         [ "$d1_ino" = "$parent_ino" ] ||
1246                 error ".. wrong after mv, expect $d1_ino, get $parent_ino"
1247 }
1248 run_test 24C "check .. in striped dir"
1249
1250 test_24E() {
1251         [[ $MDSCOUNT -lt 4 ]] && skip "needs >= 4 MDTs" && return
1252         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1253
1254         mkdir -p $DIR/$tdir
1255         mkdir $DIR/$tdir/src_dir
1256         $LFS mkdir -i 1 $DIR/$tdir/src_dir/src_child ||
1257                 error "create remote source failed"
1258
1259         touch $DIR/$tdir/src_dir/src_child/a
1260
1261         $LFS mkdir -i 2 $DIR/$tdir/tgt_dir ||
1262                 error "create remote target dir failed"
1263
1264         $LFS mkdir -i 3 $DIR/$tdir/tgt_dir/tgt_child ||
1265                 error "create remote target child failed"
1266
1267         mrename $DIR/$tdir/src_dir/src_child $DIR/$tdir/tgt_dir/tgt_child ||
1268                 error "rename dir cross MDT failed!"
1269
1270         find $DIR/$tdir
1271
1272         $CHECKSTAT -t dir $DIR/$tdir/src_dir/src_child &&
1273                 error "src_child still exists after rename"
1274
1275         $CHECKSTAT -t file $DIR/$tdir/tgt_dir/tgt_child/a ||
1276                 error "missing file(a) after rename"
1277
1278         rm -rf $DIR/$tdir || error "Can not delete directories"
1279 }
1280 run_test 24E "cross MDT rename/link"
1281
1282 test_25a() {
1283         echo '== symlink sanity ============================================='
1284
1285         test_mkdir $DIR/d25
1286         ln -s d25 $DIR/s25
1287         touch $DIR/s25/foo || error
1288 }
1289 run_test 25a "create file in symlinked directory ==============="
1290
1291 test_25b() {
1292         [ ! -d $DIR/d25 ] && test_25a
1293         $CHECKSTAT -t file $DIR/s25/foo || error
1294 }
1295 run_test 25b "lookup file in symlinked directory ==============="
1296
1297 test_26a() {
1298         test_mkdir $DIR/d26
1299         test_mkdir $DIR/d26/d26-2
1300         ln -s d26/d26-2 $DIR/s26
1301         touch $DIR/s26/foo || error
1302 }
1303 run_test 26a "multiple component symlink ======================="
1304
1305 test_26b() {
1306         test_mkdir -p $DIR/$tdir/d26-2
1307         ln -s $tdir/d26-2/foo $DIR/s26-2
1308         touch $DIR/s26-2 || error
1309 }
1310 run_test 26b "multiple component symlink at end of lookup ======"
1311
1312 test_26c() {
1313         test_mkdir $DIR/d26.2
1314         touch $DIR/d26.2/foo
1315         ln -s d26.2 $DIR/s26.2-1
1316         ln -s s26.2-1 $DIR/s26.2-2
1317         ln -s s26.2-2 $DIR/s26.2-3
1318         chmod 0666 $DIR/s26.2-3/foo
1319 }
1320 run_test 26c "chain of symlinks"
1321
1322 # recursive symlinks (bug 439)
1323 test_26d() {
1324         ln -s d26-3/foo $DIR/d26-3
1325 }
1326 run_test 26d "create multiple component recursive symlink"
1327
1328 test_26e() {
1329         [ ! -h $DIR/d26-3 ] && test_26d
1330         rm $DIR/d26-3
1331 }
1332 run_test 26e "unlink multiple component recursive symlink"
1333
1334 # recursive symlinks (bug 7022)
1335 test_26f() {
1336         test_mkdir $DIR/$tdir
1337         test_mkdir $DIR/$tdir/$tfile
1338         cd $DIR/$tdir/$tfile           || error "cd $DIR/$tdir/$tfile failed"
1339         test_mkdir -p lndir/bar1
1340         test_mkdir $DIR/$tdir/$tfile/$tfile
1341         cd $tfile                || error "cd $tfile failed"
1342         ln -s .. dotdot          || error "ln dotdot failed"
1343         ln -s dotdot/lndir lndir || error "ln lndir failed"
1344         cd $DIR/$tdir                 || error "cd $DIR/$tdir failed"
1345         output=`ls $tfile/$tfile/lndir/bar1`
1346         [ "$output" = bar1 ] && error "unexpected output"
1347         rm -r $tfile             || error "rm $tfile failed"
1348         $CHECKSTAT -a $DIR/$tfile || error "$tfile not gone"
1349 }
1350 run_test 26f "rm -r of a directory which has recursive symlink"
1351
1352 test_27a() {
1353         test_mkdir $DIR/$tdir
1354         $LFS getstripe $DIR/$tdir
1355         $LFS setstripe -c 1 $DIR/$tdir/$tfile || error "setstripe failed"
1356         $CHECKSTAT -t file $DIR/$tdir/$tfile || error "checkstat failed"
1357         cp /etc/hosts $DIR/$tdir/$tfile || error
1358 }
1359 run_test 27a "one stripe file"
1360
1361 test_27b() {
1362         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
1363         test_mkdir $DIR/$tdir
1364         $LFS setstripe -c 2 $DIR/$tdir/$tfile || error "setstripe failed"
1365         $LFS getstripe -c $DIR/$tdir/$tfile
1366         [ $($LFS getstripe -c $DIR/$tdir/$tfile) -eq 2 ] ||
1367                 error "two-stripe file doesn't have two stripes"
1368
1369         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=4k count=4 || error "dd failed"
1370 }
1371 run_test 27b "create and write to two stripe file"
1372
1373 test_27d() {
1374         test_mkdir $DIR/$tdir
1375         $LFS setstripe -c 0 -i -1 -S 0 $DIR/$tdir/$tfile ||
1376                 error "setstripe failed"
1377         $CHECKSTAT -t file $DIR/$tdir/$tfile || error "checkstat failed"
1378         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=4k count=4 || error "dd failed"
1379 }
1380 run_test 27d "create file with default settings"
1381
1382 test_27e() {
1383         # LU-5839 adds check for existed layout before setting it
1384         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.56) ]] &&
1385                 skip "Need MDS version at least 2.7.56" && return
1386         test_mkdir $DIR/$tdir
1387         $LFS setstripe -c 2 $DIR/$tdir/$tfile || error "setstripe failed"
1388         $LFS setstripe -c 2 $DIR/$tdir/$tfile && error "setstripe worked twice"
1389         $CHECKSTAT -t file $DIR/$tdir/$tfile || error "checkstat failed"
1390 }
1391 run_test 27e "setstripe existing file (should return error)"
1392
1393 test_27f() {
1394         test_mkdir $DIR/$tdir
1395         $LFS setstripe -S 100 -i 0 -c 1 $DIR/$tdir/$tfile &&
1396                 error "$SETSTRIPE $DIR/$tdir/$tfile failed"
1397         $CHECKSTAT -t file $DIR/$tdir/$tfile &&
1398                 error "$CHECKSTAT -t file $DIR/$tdir/$tfile should fail"
1399         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=4k count=4 || error "dd failed"
1400         $LFS getstripe $DIR/$tdir/$tfile || error "$LFS getstripe failed"
1401 }
1402 run_test 27f "setstripe with bad stripe size (should return error)"
1403
1404 test_27g() {
1405         test_mkdir $DIR/$tdir
1406         $MCREATE $DIR/$tdir/$tfile || error "mcreate failed"
1407         $LFS getstripe $DIR/$tdir/$tfile 2>&1 | grep "no stripe info" ||
1408                 error "$DIR/$tdir/$tfile has object"
1409 }
1410 run_test 27g "$LFS getstripe with no objects"
1411
1412 test_27i() {
1413         test_mkdir $DIR/$tdir
1414         touch $DIR/$tdir/$tfile || error "touch failed"
1415         [[ $($LFS getstripe -c $DIR/$tdir/$tfile) -gt 0 ]] ||
1416                 error "missing objects"
1417 }
1418 run_test 27i "$LFS getstripe with some objects"
1419
1420 test_27j() {
1421         test_mkdir $DIR/$tdir
1422         $LFS setstripe -i $OSTCOUNT $DIR/$tdir/$tfile &&
1423                 error "setstripe failed" || true
1424 }
1425 run_test 27j "setstripe with bad stripe offset (should return error)"
1426
1427 test_27k() { # bug 2844
1428         test_mkdir $DIR/$tdir
1429         local file=$DIR/$tdir/$tfile
1430         local ll_max_blksize=$((4 * 1024 * 1024))
1431         $LFS setstripe -S 67108864 $file || error "setstripe failed"
1432         local blksize=$(stat $file | awk '/IO Block:/ { print $7 }')
1433         [ $blksize -le $ll_max_blksize ] || error "1:$blksize > $ll_max_blksize"
1434         dd if=/dev/zero of=$file bs=4k count=1
1435         blksize=$(stat $file | awk '/IO Block:/ { print $7 }')
1436         [ $blksize -le $ll_max_blksize ] || error "2:$blksize > $ll_max_blksize"
1437 }
1438 run_test 27k "limit i_blksize for broken user apps"
1439
1440 test_27l() {
1441         mcreate $DIR/$tfile || error "creating file"
1442         $RUNAS $LFS setstripe -c 1 $DIR/$tfile &&
1443                 error "setstripe should have failed" || true
1444 }
1445 run_test 27l "check setstripe permissions (should return error)"
1446
1447 test_27m() {
1448         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
1449
1450         ORIGFREE=$($LCTL get_param -n lov.$FSNAME-clilov-*.kbytesavail |
1451                    head -n1)
1452         if [[ $ORIGFREE -gt $MAXFREE ]]; then
1453                 skip "$ORIGFREE > $MAXFREE skipping out-of-space test on OST0"
1454                 return
1455         fi
1456         trap simple_cleanup_common EXIT
1457         test_mkdir $DIR/$tdir
1458         $LFS setstripe -i 0 -c 1 $DIR/$tdir/$tfile.1
1459         dd if=/dev/zero of=$DIR/$tdir/$tfile.1 bs=1024 count=$MAXFREE &&
1460                 error "dd should fill OST0"
1461         i=2
1462         while $LFS setstripe -i 0 -c 1 $DIR/$tdir/$tfile.$i; do
1463                 i=$((i + 1))
1464                 [ $i -gt 256 ] && break
1465         done
1466         i=$((i + 1))
1467         touch $DIR/$tdir/$tfile.$i
1468         [ $($LFS getstripe $DIR/$tdir/$tfile.$i | grep -A 10 obdidx |
1469             awk '{print $1}'| grep -w "0") ] &&
1470                 error "OST0 was full but new created file still use it"
1471         i=$((i + 1))
1472         touch $DIR/$tdir/$tfile.$i
1473         [ $($LFS getstripe $DIR/$tdir/$tfile.$i | grep -A 10 obdidx |
1474             awk '{print $1}'| grep -w "0") ] &&
1475                 error "OST0 was full but new created file still use it"
1476         simple_cleanup_common
1477 }
1478 run_test 27m "create file while OST0 was full"
1479
1480 sleep_maxage() {
1481         local delay=$(do_facet $SINGLEMDS lctl get_param -n lov.*.qos_maxage |
1482                       head -n 1 | awk '{ print $1 * 2 }')
1483         sleep $delay
1484 }
1485
1486 # OSCs keep a NOSPC flag that will be reset after ~5s (qos_maxage)
1487 # if the OST isn't full anymore.
1488 reset_enospc() {
1489         local OSTIDX=${1:-""}
1490
1491         local list=$(comma_list $(osts_nodes))
1492         [ "$OSTIDX" ] && list=$(facet_host ost$((OSTIDX + 1)))
1493
1494         do_nodes $list lctl set_param fail_loc=0
1495         sync    # initiate all OST_DESTROYs from MDS to OST
1496         sleep_maxage
1497 }
1498
1499 exhaust_precreations() {
1500         local OSTIDX=$1
1501         local FAILLOC=$2
1502         local FAILIDX=${3:-$OSTIDX}
1503         local ofacet=ost$((OSTIDX + 1))
1504
1505         test_mkdir -p -c1 $DIR/$tdir
1506         local mdtidx=$($LFS getstripe -M $DIR/$tdir)
1507         local mfacet=mds$((mdtidx + 1))
1508         echo OSTIDX=$OSTIDX MDTIDX=$mdtidx
1509
1510         local OST=$(ostname_from_index $OSTIDX)
1511
1512         # on the mdt's osc
1513         local mdtosc_proc1=$(get_mdtosc_proc_path $mfacet $OST)
1514         local last_id=$(do_facet $mfacet lctl get_param -n \
1515                         osc.$mdtosc_proc1.prealloc_last_id)
1516         local next_id=$(do_facet $mfacet lctl get_param -n \
1517                         osc.$mdtosc_proc1.prealloc_next_id)
1518
1519         local mdtosc_proc2=$(get_mdtosc_proc_path $mfacet)
1520         do_facet $mfacet lctl get_param osc.$mdtosc_proc2.prealloc*
1521
1522         test_mkdir -p $DIR/$tdir/${OST}
1523         $SETSTRIPE -i $OSTIDX -c 1 $DIR/$tdir/${OST}
1524 #define OBD_FAIL_OST_ENOSPC              0x215
1525         do_facet $ofacet lctl set_param fail_val=$FAILIDX fail_loc=0x215
1526         echo "Creating to objid $last_id on ost $OST..."
1527         createmany -o $DIR/$tdir/${OST}/f $next_id $((last_id - next_id + 2))
1528         do_facet $mfacet lctl get_param osc.$mdtosc_proc2.prealloc*
1529         do_facet $ofacet lctl set_param fail_loc=$FAILLOC
1530         sleep_maxage
1531 }
1532
1533 exhaust_all_precreations() {
1534         local i
1535         for (( i=0; i < OSTCOUNT; i++ )) ; do
1536                 exhaust_precreations $i $1 -1
1537         done
1538 }
1539
1540 test_27n() {
1541         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
1542         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1543         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1544         remote_ost_nodsh && skip "remote OST with nodsh" && return
1545
1546         reset_enospc
1547         rm -f $DIR/$tdir/$tfile
1548         exhaust_precreations 0 0x80000215
1549         $LFS setstripe -c -1 $DIR/$tdir
1550         touch $DIR/$tdir/$tfile || error
1551         $LFS getstripe $DIR/$tdir/$tfile
1552         reset_enospc
1553 }
1554 run_test 27n "create file with some full OSTs"
1555
1556 test_27o() {
1557         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
1558         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1559         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1560         remote_ost_nodsh && skip "remote OST with nodsh" && return
1561
1562         reset_enospc
1563         rm -f $DIR/$tdir/$tfile
1564         exhaust_all_precreations 0x215
1565
1566         touch $DIR/$tdir/$tfile && error "able to create $DIR/$tdir/$tfile"
1567
1568         reset_enospc
1569         rm -rf $DIR/$tdir/*
1570 }
1571 run_test 27o "create file with all full OSTs (should error)"
1572
1573 test_27p() {
1574         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
1575         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1576         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1577         remote_ost_nodsh && skip "remote OST with nodsh" && return
1578
1579         reset_enospc
1580         rm -f $DIR/$tdir/$tfile
1581         test_mkdir $DIR/$tdir
1582
1583         $MCREATE $DIR/$tdir/$tfile || error "mcreate failed"
1584         $TRUNCATE $DIR/$tdir/$tfile 80000000 || error "truncate failed"
1585         $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat failed"
1586
1587         exhaust_precreations 0 0x80000215
1588         echo foo >> $DIR/$tdir/$tfile || error "append failed"
1589         $CHECKSTAT -s 80000004 $DIR/$tdir/$tfile || error "checkstat failed"
1590         $LFS getstripe $DIR/$tdir/$tfile
1591
1592         reset_enospc
1593 }
1594 run_test 27p "append to a truncated file with some full OSTs"
1595
1596 test_27q() {
1597         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
1598         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1599         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1600         remote_ost_nodsh && skip "remote OST with nodsh" && return
1601
1602         reset_enospc
1603         rm -f $DIR/$tdir/$tfile
1604
1605         test_mkdir $DIR/$tdir
1606         $MCREATE $DIR/$tdir/$tfile || error "mcreate $DIR/$tdir/$tfile failed"
1607         $TRUNCATE $DIR/$tdir/$tfile 80000000 ||
1608                 error "truncate $DIR/$tdir/$tfile failed"
1609         $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat failed"
1610
1611         exhaust_all_precreations 0x215
1612
1613         echo foo >> $DIR/$tdir/$tfile && error "append succeeded"
1614         $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat 2 failed"
1615
1616         reset_enospc
1617 }
1618 run_test 27q "append to truncated file with all OSTs full (should error)"
1619
1620 test_27r() {
1621         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
1622         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1623         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1624         remote_ost_nodsh && skip "remote OST with nodsh" && return
1625
1626         reset_enospc
1627         rm -f $DIR/$tdir/$tfile
1628         exhaust_precreations 0 0x80000215
1629
1630         $LFS setstripe -i 0 -c 2 $DIR/$tdir/$tfile # && error
1631
1632         reset_enospc
1633 }
1634 run_test 27r "stripe file with some full OSTs (shouldn't LBUG) ="
1635
1636 test_27s() { # bug 10725
1637         test_mkdir $DIR/$tdir
1638         local stripe_size=$((4096 * 1024 * 1024))       # 2^32
1639         local stripe_count=0
1640         [ $OSTCOUNT -eq 1 ] || stripe_count=2
1641         $LFS setstripe -S $stripe_size -c $stripe_count $DIR/$tdir &&
1642                 error "stripe width >= 2^32 succeeded" || true
1643
1644 }
1645 run_test 27s "lsm_xfersize overflow (should error) (bug 10725)"
1646
1647 test_27t() { # bug 10864
1648         WDIR=$(pwd)
1649         WLFS=$(which lfs)
1650         cd $DIR
1651         touch $tfile
1652         $WLFS getstripe $tfile
1653         cd $WDIR
1654 }
1655 run_test 27t "check that utils parse path correctly"
1656
1657 test_27u() { # bug 4900
1658         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
1659         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1660         local index
1661         local list=$(comma_list $(mdts_nodes))
1662
1663 #define OBD_FAIL_MDS_OSC_PRECREATE      0x139
1664         do_nodes $list $LCTL set_param fail_loc=0x139
1665         test_mkdir -p $DIR/$tdir
1666         trap simple_cleanup_common EXIT
1667         createmany -o $DIR/$tdir/t- 1000
1668         do_nodes $list $LCTL set_param fail_loc=0
1669
1670         TLOG=$TMP/$tfile.getstripe
1671         $LFS getstripe $DIR/$tdir > $TLOG
1672         OBJS=$(awk -vobj=0 '($1 == 0) { obj += 1 } END { print obj; }' $TLOG)
1673         unlinkmany $DIR/$tdir/t- 1000
1674         trap 0
1675         [[ $OBJS -gt 0 ]] &&
1676                 error "$OBJS objects created on OST-0. See $TLOG" || pass
1677 }
1678 run_test 27u "skip object creation on OSC w/o objects"
1679
1680 test_27v() { # bug 4900
1681         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
1682         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1683         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1684         remote_ost_nodsh && skip "remote OST with nodsh" && return
1685
1686         exhaust_all_precreations 0x215
1687         reset_enospc
1688
1689         $LFS setstripe -c 1 $DIR/$tdir         # 1 stripe / file
1690
1691         touch $DIR/$tdir/$tfile
1692         #define OBD_FAIL_TGT_DELAY_PRECREATE     0x705
1693         # all except ost1
1694         for (( i=1; i < OSTCOUNT; i++ )); do
1695                 do_facet ost$i lctl set_param fail_loc=0x705
1696         done
1697         local START=`date +%s`
1698         createmany -o $DIR/$tdir/$tfile 32
1699
1700         local FINISH=`date +%s`
1701         local TIMEOUT=`lctl get_param -n timeout`
1702         local PROCESS=$((FINISH - START))
1703         [ $PROCESS -ge $((TIMEOUT / 2)) ] && \
1704                error "$FINISH - $START >= $TIMEOUT / 2"
1705         sleep $((TIMEOUT / 2 - PROCESS))
1706         reset_enospc
1707 }
1708 run_test 27v "skip object creation on slow OST"
1709
1710 test_27w() { # bug 10997
1711         test_mkdir $DIR/$tdir
1712         $LFS setstripe -S 65536 $DIR/$tdir/f0 || error "setstripe failed"
1713         [ $($LFS getstripe -S $DIR/$tdir/f0) -ne 65536 ] &&
1714                 error "stripe size $size != 65536" || true
1715         [ $($LFS getstripe -d $DIR/$tdir | grep -c "stripe_count") -eq 0 ] &&
1716                 error "$LFS getstripe -d $DIR/$tdir no 'stripe_count'" || true
1717 }
1718 run_test 27w "check $LFS setstripe -S and getstrip -d options"
1719
1720 test_27wa() {
1721         [[ $OSTCOUNT -lt 2 ]] &&
1722                 skip_env "skipping multiple stripe count/offset test" && return
1723
1724         test_mkdir $DIR/$tdir
1725         for i in $(seq 1 $OSTCOUNT); do
1726                 offset=$((i - 1))
1727                 $LFS setstripe -c $i -i $offset $DIR/$tdir/f$i ||
1728                         error "setstripe -c $i -i $offset failed"
1729                 count=$($LFS getstripe -c $DIR/$tdir/f$i)
1730                 index=$($LFS getstripe -i $DIR/$tdir/f$i)
1731                 [ $count -ne $i ] && error "stripe count $count != $i" || true
1732                 [ $index -ne $offset ] &&
1733                         error "stripe offset $index != $offset" || true
1734         done
1735 }
1736 run_test 27wa "check $LFS setstripe -c -i options"
1737
1738 test_27x() {
1739         remote_ost_nodsh && skip "remote OST with nodsh" && return
1740         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
1741         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1742         OFFSET=$(($OSTCOUNT - 1))
1743         OSTIDX=0
1744         local OST=$(ostname_from_index $OSTIDX)
1745
1746         test_mkdir $DIR/$tdir
1747         $LFS setstripe -c 1 $DIR/$tdir  # 1 stripe per file
1748         do_facet ost$((OSTIDX + 1)) lctl set_param -n obdfilter.$OST.degraded 1
1749         sleep_maxage
1750         createmany -o $DIR/$tdir/$tfile $OSTCOUNT
1751         for i in $(seq 0 $OFFSET); do
1752                 [ $($LFS getstripe $DIR/$tdir/$tfile$i | grep -A 10 obdidx |
1753                         awk '{print $1}' | grep -w "$OSTIDX") ] &&
1754                 error "OST0 was degraded but new created file still use it"
1755         done
1756         do_facet ost$((OSTIDX + 1)) lctl set_param -n obdfilter.$OST.degraded 0
1757 }
1758 run_test 27x "create files while OST0 is degraded"
1759
1760 test_27y() {
1761         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
1762         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1763         remote_ost_nodsh && skip "remote OST with nodsh" && return
1764         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1765
1766         local mdtosc=$(get_mdtosc_proc_path $SINGLEMDS $FSNAME-OST0000)
1767         local last_id=$(do_facet $SINGLEMDS lctl get_param -n \
1768                 osc.$mdtosc.prealloc_last_id)
1769         local next_id=$(do_facet $SINGLEMDS lctl get_param -n \
1770                 osc.$mdtosc.prealloc_next_id)
1771         local fcount=$((last_id - next_id))
1772         [[ $fcount -eq 0 ]] && skip "not enough space on OST0" && return
1773         [[ $fcount -gt $OSTCOUNT ]] && fcount=$OSTCOUNT
1774
1775         local MDS_OSCS=$(do_facet $SINGLEMDS lctl dl |
1776                          awk '/[oO][sS][cC].*md[ts]/ { print $4 }')
1777         local OST_DEACTIVE_IDX=-1
1778         local OSC
1779         local OSTIDX
1780         local OST
1781
1782         for OSC in $MDS_OSCS; do
1783                 OST=$(osc_to_ost $OSC)
1784                 OSTIDX=$(index_from_ostuuid $OST)
1785                 if [ $OST_DEACTIVE_IDX == -1 ]; then
1786                         OST_DEACTIVE_IDX=$OSTIDX
1787                 fi
1788                 if [ $OSTIDX != $OST_DEACTIVE_IDX ]; then
1789                         echo $OSC "is Deactivated:"
1790                         do_facet $SINGLEMDS lctl --device  %$OSC deactivate
1791                 fi
1792         done
1793
1794         OSTIDX=$(index_from_ostuuid $OST)
1795         test_mkdir $DIR/$tdir
1796         $LFS setstripe -c 1 $DIR/$tdir      # 1 stripe / file
1797
1798         for OSC in $MDS_OSCS; do
1799                 OST=$(osc_to_ost $OSC)
1800                 OSTIDX=$(index_from_ostuuid $OST)
1801                 if [ $OSTIDX == $OST_DEACTIVE_IDX ]; then
1802                         echo $OST "is degraded:"
1803                         do_facet ost$((OSTIDX+1)) lctl set_param -n \
1804                                                 obdfilter.$OST.degraded=1
1805                 fi
1806         done
1807
1808         sleep_maxage
1809         createmany -o $DIR/$tdir/$tfile $fcount
1810
1811         for OSC in $MDS_OSCS; do
1812                 OST=$(osc_to_ost $OSC)
1813                 OSTIDX=$(index_from_ostuuid $OST)
1814                 if [ $OSTIDX == $OST_DEACTIVE_IDX ]; then
1815                         echo $OST "is recovered from degraded:"
1816                         do_facet ost$((OSTIDX+1)) lctl set_param -n \
1817                                                 obdfilter.$OST.degraded=0
1818                 else
1819                         do_facet $SINGLEMDS lctl --device %$OSC activate
1820                 fi
1821         done
1822
1823         # all osp devices get activated, hence -1 stripe count restored
1824         local stripe_count=0
1825
1826         # sleep 2*lod_qos_maxage seconds waiting for lod qos to notice osp
1827         # devices get activated.
1828         sleep_maxage
1829         $LFS setstripe -c -1 $DIR/$tfile
1830         stripe_count=$($LFS getstripe -c $DIR/$tfile)
1831         rm -f $DIR/$tfile
1832         [ $stripe_count -ne $OSTCOUNT ] &&
1833                 error "Of $OSTCOUNT OSTs, only $stripe_count is available"
1834         return 0
1835 }
1836 run_test 27y "create files while OST0 is degraded and the rest inactive"
1837
1838 check_seq_oid()
1839 {
1840         log "check file $1"
1841
1842         lmm_count=$($GETSTRIPE -c $1)
1843         lmm_seq=$($GETSTRIPE -v $1 | awk '/lmm_seq/ { print $2 }')
1844         lmm_oid=$($GETSTRIPE -v $1 | awk '/lmm_object_id/ { print $2 }')
1845
1846         local old_ifs="$IFS"
1847         IFS=$'[:]'
1848         fid=($($LFS path2fid $1))
1849         IFS="$old_ifs"
1850
1851         log "FID seq ${fid[1]}, oid ${fid[2]} ver ${fid[3]}"
1852         log "LOV seq $lmm_seq, oid $lmm_oid, count: $lmm_count"
1853
1854         # compare lmm_seq and lu_fid->f_seq
1855         [ $lmm_seq = ${fid[1]} ] || { error "SEQ mismatch"; return 1; }
1856         # compare lmm_object_id and lu_fid->oid
1857         [ $lmm_oid = ${fid[2]} ] || { error "OID mismatch"; return 2; }
1858
1859         # check the trusted.fid attribute of the OST objects of the file
1860         local have_obdidx=false
1861         local stripe_nr=0
1862         $GETSTRIPE $1 | while read obdidx oid hex seq; do
1863                 # skip lines up to and including "obdidx"
1864                 [ -z "$obdidx" ] && break
1865                 [ "$obdidx" = "obdidx" ] && have_obdidx=true && continue
1866                 $have_obdidx || continue
1867
1868                 local ost=$((obdidx + 1))
1869                 local dev=$(ostdevname $ost)
1870                 local oid_hex
1871
1872                 log "want: stripe:$stripe_nr ost:$obdidx oid:$oid/$hex seq:$seq"
1873
1874                 seq=$(echo $seq | sed -e "s/^0x//g")
1875                 if [ $seq == 0 ] || [ $(facet_fstype ost$ost) == zfs ]; then
1876                         oid_hex=$(echo $oid)
1877                 else
1878                         oid_hex=$(echo $hex | sed -e "s/^0x//g")
1879                 fi
1880                 local obj_file="O/$seq/d$((oid %32))/$oid_hex"
1881
1882                 local ff=""
1883                 #
1884                 # Don't unmount/remount the OSTs if we don't need to do that.
1885                 # LU-2577 changes filter_fid to be smaller, so debugfs needs
1886                 # update too, until that use mount/ll_decode_filter_fid/mount.
1887                 # Re-enable when debugfs will understand new filter_fid.
1888                 #
1889                 if [ $(facet_fstype ost$ost) == ldiskfs ]; then
1890                         ff=$(do_facet ost$ost "$DEBUGFS -c -R 'stat $obj_file' \
1891                                 $dev 2>/dev/null" | grep "parent=")
1892                 fi
1893                 if [ -z "$ff" ]; then
1894                         stop ost$ost
1895                         mount_fstype ost$ost
1896                         ff=$(do_facet ost$ost $LL_DECODE_FILTER_FID \
1897                                 $(facet_mntpt ost$ost)/$obj_file)
1898                         unmount_fstype ost$ost
1899                         start ost$ost $dev $OST_MOUNT_OPTS
1900                         clients_up
1901                 fi
1902
1903                 [ -z "$ff" ] && error "$obj_file: no filter_fid info"
1904
1905                 echo "$ff" | sed -e 's#.*objid=#got: objid=#'
1906
1907                 # /mnt/O/0/d23/23: objid=23 seq=0 parent=[0x200000400:0x1e:0x1]
1908                 # fid: objid=23 seq=0 parent=[0x200000400:0x1e:0x0] stripe=1
1909                 #
1910                 # fid: parent=[0x200000400:0x1e:0x0] stripe=1 stripe_count=2 \
1911                 #       stripe_size=1048576 component_id=1 component_start=0 \
1912                 #       component_end=33554432
1913                 local ff_parent=$(sed -e 's/.*parent=.//' <<<$ff)
1914                 local ff_pseq=$(cut -d: -f1 <<<$ff_parent)
1915                 local ff_poid=$(cut -d: -f2 <<<$ff_parent)
1916                 local ff_pstripe
1917                 if grep -q 'stripe=' <<<$ff; then
1918                         ff_pstripe=$(sed -e 's/.*stripe=//' -e 's/ .*//' <<<$ff)
1919                 else
1920                         # $LL_DECODE_FILTER_FID does not print "stripe="; look
1921                         # into f_ver in this case.  See comment on ff_parent.
1922                         ff_pstripe=$(cut -d: -f3 <<<$ff_parent | sed -e 's/]//')
1923                 fi
1924
1925                 # compare lmm_seq and filter_fid->ff_parent.f_seq
1926                 [ $ff_pseq = $lmm_seq ] ||
1927                         error "FF parent SEQ $ff_pseq != $lmm_seq"
1928                 # compare lmm_object_id and filter_fid->ff_parent.f_oid
1929                 [ $ff_poid = $lmm_oid ] ||
1930                         error "FF parent OID $ff_poid != $lmm_oid"
1931                 (($ff_pstripe == $stripe_nr)) ||
1932                         error "FF stripe $ff_pstripe != $stripe_nr"
1933
1934                 stripe_nr=$((stripe_nr + 1))
1935                 [ $(lustre_version_code client) -lt $(version_code 2.9.55) ] &&
1936                         continue
1937                 if grep -q 'stripe_count=' <<<$ff; then
1938                         local ff_scnt=$(sed -e 's/.*stripe_count=//' \
1939                                             -e 's/ .*//' <<<$ff)
1940                         [ $lmm_count = $ff_scnt ] ||
1941                                 error "FF stripe count $lmm_count != $ff_scnt"
1942                 fi
1943         done
1944 }
1945
1946 test_27z() {
1947         remote_ost_nodsh && skip "remote OST with nodsh" && return
1948         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1949         test_mkdir $DIR/$tdir
1950
1951         $LFS setstripe -c 1 -i 0 -S 64k $DIR/$tdir/$tfile-1 ||
1952                 { error "setstripe -c -1 failed"; return 1; }
1953         # We need to send a write to every object to get parent FID info set.
1954         # This _should_ also work for setattr, but does not currently.
1955         # touch $DIR/$tdir/$tfile-1 ||
1956         dd if=/dev/zero of=$DIR/$tdir/$tfile-1 bs=1M count=1 ||
1957                 { error "dd $tfile-1 failed"; return 2; }
1958         $LFS setstripe -c -1 -i $((OSTCOUNT - 1)) -S 1M $DIR/$tdir/$tfile-2 ||
1959                 { error "setstripe -c -1 failed"; return 3; }
1960         dd if=/dev/zero of=$DIR/$tdir/$tfile-2 bs=1M count=$OSTCOUNT ||
1961                 { error "dd $tfile-2 failed"; return 4; }
1962
1963         # make sure write RPCs have been sent to OSTs
1964         sync; sleep 5; sync
1965
1966         check_seq_oid $DIR/$tdir/$tfile-1 || return 5
1967         check_seq_oid $DIR/$tdir/$tfile-2 || return 6
1968 }
1969 run_test 27z "check SEQ/OID on the MDT and OST filesystems"
1970
1971 test_27A() { # b=19102
1972         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1973         local restore_size=$($GETSTRIPE -S $MOUNT)
1974         local restore_count=$($GETSTRIPE -c $MOUNT)
1975         local restore_offset=$($GETSTRIPE -i $MOUNT)
1976         $SETSTRIPE -c 0 -i -1 -S 0 $MOUNT
1977         wait_update $HOSTNAME "$GETSTRIPE -c $MOUNT | sed 's/  *//g'" "1" 20 ||
1978                 error "stripe count $($GETSTRIPE -c $MOUNT) != 1"
1979         local default_size=$($GETSTRIPE -S $MOUNT)
1980         local default_offset=$($GETSTRIPE -i $MOUNT)
1981         local dsize=$((1024 * 1024))
1982         [ $default_size -eq $dsize ] ||
1983                 error "stripe size $default_size != $dsize"
1984         [ $default_offset -eq -1 ] ||error "stripe offset $default_offset != -1"
1985         $SETSTRIPE -c $restore_count -i $restore_offset -S $restore_size $MOUNT
1986 }
1987 run_test 27A "check filesystem-wide default LOV EA values"
1988
1989 test_27B() { # LU-2523
1990         test_mkdir $DIR/$tdir
1991         rm -f $DIR/$tdir/f0 $DIR/$tdir/f1
1992         touch $DIR/$tdir/f0
1993         # open f1 with O_LOV_DELAY_CREATE
1994         # rename f0 onto f1
1995         # call setstripe ioctl on open file descriptor for f1
1996         # close
1997         multiop $DIR/$tdir/f1 oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:nB1c \
1998                 $DIR/$tdir/f0
1999
2000         rm -f $DIR/$tdir/f1
2001         # open f1 with O_LOV_DELAY_CREATE
2002         # unlink f1
2003         # call setstripe ioctl on open file descriptor for f1
2004         # close
2005         multiop $DIR/$tdir/f1 oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:uB1c
2006
2007         # Allow multiop to fail in imitation of NFS's busted semantics.
2008         true
2009 }
2010 run_test 27B "call setstripe on open unlinked file/rename victim"
2011
2012 test_27C() { #LU-2871
2013         [[ $OSTCOUNT -lt 2 ]] && skip "needs >= 2 OSTs" && return
2014
2015         declare -a ost_idx
2016         local index
2017         local found
2018         local i
2019         local j
2020
2021         test_mkdir $DIR/$tdir
2022         cd $DIR/$tdir
2023         for i in $(seq 0 $((OSTCOUNT - 1))); do
2024                 # set stripe across all OSTs starting from OST$i
2025                 $SETSTRIPE -i $i -c -1 $tfile$i
2026                 # get striping information
2027                 ost_idx=($($GETSTRIPE $tfile$i |
2028                          tail -n $((OSTCOUNT + 1)) | awk '{print $1}'))
2029                 echo ${ost_idx[@]}
2030
2031                 # check the layout
2032                 [ ${#ost_idx[@]} -eq $OSTCOUNT ] ||
2033                         error "${#ost_idx[@]} != $OSTCOUNT"
2034
2035                 for index in $(seq 0 $((OSTCOUNT - 1))); do
2036                         found=0
2037                         for j in $(echo ${ost_idx[@]}); do
2038                                 if [ $index -eq $j ]; then
2039                                         found=1
2040                                         break
2041                                 fi
2042                         done
2043                         [ $found = 1 ] ||
2044                                 error "Can not find $index in ${ost_idx[@]}"
2045                 done
2046         done
2047 }
2048 run_test 27C "check full striping across all OSTs"
2049
2050 test_27D() {
2051         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
2052         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
2053         remote_mds_nodsh && skip "remote MDS with nodsh" && return
2054         local POOL=${POOL:-testpool}
2055         local first_ost=0
2056         local last_ost=$(($OSTCOUNT - 1))
2057         local ost_step=1
2058         local ost_list=$(seq $first_ost $ost_step $last_ost)
2059         local ost_range="$first_ost $last_ost $ost_step"
2060
2061         test_mkdir $DIR/$tdir
2062         pool_add $POOL || error "pool_add failed"
2063         pool_add_targets $POOL $ost_range || error "pool_add_targets failed"
2064
2065         local skip27D
2066         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.55) ] &&
2067                 skip27D += "-s 29"
2068         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.9.55) -o \
2069           $(lustre_version_code client) -lt $(version_code 2.9.55) ] &&
2070                 skip27D += "-s 30,31"
2071         llapi_layout_test -d$DIR/$tdir -p$POOL -o$OSTCOUNT $skip27D ||
2072                 error "llapi_layout_test failed"
2073
2074         destroy_test_pools || error "destroy test pools failed"
2075 }
2076 run_test 27D "validate llapi_layout API"
2077
2078 # Verify that default_easize is increased from its initial value after
2079 # accessing a widely striped file.
2080 test_27E() {
2081         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
2082         [ $(lustre_version_code client) -lt $(version_code 2.5.57) ] &&
2083                 skip "client does not have LU-3338 fix" && return
2084
2085         # 72 bytes is the minimum space required to store striping
2086         # information for a file striped across one OST:
2087         # (sizeof(struct lov_user_md_v3) +
2088         #  sizeof(struct lov_user_ost_data_v1))
2089         local min_easize=72
2090         $LCTL set_param -n llite.*.default_easize $min_easize ||
2091                 error "lctl set_param failed"
2092         local easize=$($LCTL get_param -n llite.*.default_easize)
2093
2094         [ $easize -eq $min_easize ] ||
2095                 error "failed to set default_easize"
2096
2097         $LFS setstripe -c $OSTCOUNT $DIR/$tfile ||
2098                 error "setstripe failed"
2099         cat $DIR/$tfile
2100         rm $DIR/$tfile
2101
2102         easize=$($LCTL get_param -n llite.*.default_easize)
2103
2104         [ $easize -gt $min_easize ] ||
2105                 error "default_easize not updated"
2106 }
2107 run_test 27E "check that default extended attribute size properly increases"
2108
2109 test_27F() { # LU-5346/LU-7975
2110         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2111         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.51) ]] &&
2112                 skip "Need MDS version at least 2.8.51" && return
2113         remote_ost_nodsh && skip "remote OST with nodsh" && return
2114
2115         test_mkdir $DIR/$tdir
2116         rm -f $DIR/$tdir/f0
2117         $SETSTRIPE -c 2 $DIR/$tdir
2118
2119         # stop all OSTs to reproduce situation for LU-7975 ticket
2120         for num in $(seq $OSTCOUNT); do
2121                 stop ost$num
2122         done
2123
2124         # open/create f0 with O_LOV_DELAY_CREATE
2125         # truncate f0 to a non-0 size
2126         # close
2127         multiop $DIR/$tdir/f0 oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:T1050000c
2128
2129         $CHECKSTAT -s 1050000 $DIR/$tdir/f0 || error "checkstat failed"
2130         # open/write it again to force delayed layout creation
2131         cat /etc/hosts > $DIR/$tdir/f0 &
2132         catpid=$!
2133
2134         # restart OSTs
2135         for num in $(seq $OSTCOUNT); do
2136                 start ost$num $(ostdevname $num) $OST_MOUNT_OPTS ||
2137                         error "ost$num failed to start"
2138         done
2139
2140         wait $catpid || error "cat failed"
2141
2142         cmp /etc/hosts $DIR/$tdir/f0 || error "cmp failed"
2143         [[ $($GETSTRIPE -c $DIR/$tdir/f0) == 2 ]] || error "wrong stripecount"
2144
2145 }
2146 run_test 27F "Client resend delayed layout creation with non-zero size"
2147
2148 # createtest also checks that device nodes are created and
2149 # then visible correctly (#2091)
2150 test_28() { # bug 2091
2151         test_mkdir $DIR/d28
2152         $CREATETEST $DIR/d28/ct || error
2153 }
2154 run_test 28 "create/mknod/mkdir with bad file types ============"
2155
2156 test_29() {
2157         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return 0
2158         sync; sleep 1; sync # flush out any dirty pages from previous tests
2159         cancel_lru_locks
2160         test_mkdir $DIR/d29
2161         touch $DIR/d29/foo
2162         log 'first d29'
2163         ls -l $DIR/d29
2164
2165         declare -i LOCKCOUNTORIG=0
2166         for lock_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_count); do
2167                 let LOCKCOUNTORIG=$LOCKCOUNTORIG+$lock_count
2168         done
2169         [ $LOCKCOUNTORIG -eq 0 ] && error "No mdc lock count" && return 1
2170
2171         declare -i LOCKUNUSEDCOUNTORIG=0
2172         for unused_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_unused_count); do
2173                 let LOCKUNUSEDCOUNTORIG=$LOCKUNUSEDCOUNTORIG+$unused_count
2174         done
2175
2176         log 'second d29'
2177         ls -l $DIR/d29
2178         log 'done'
2179
2180         declare -i LOCKCOUNTCURRENT=0
2181         for lock_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_count); do
2182                 let LOCKCOUNTCURRENT=$LOCKCOUNTCURRENT+$lock_count
2183         done
2184
2185         declare -i LOCKUNUSEDCOUNTCURRENT=0
2186         for unused_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_unused_count); do
2187                 let LOCKUNUSEDCOUNTCURRENT=$LOCKUNUSEDCOUNTCURRENT+$unused_count
2188         done
2189
2190         if [[ $LOCKCOUNTCURRENT -gt $LOCKCOUNTORIG ]]; then
2191                 $LCTL set_param -n ldlm.dump_namespaces ""
2192                 error "CURRENT: $LOCKCOUNTCURRENT > $LOCKCOUNTORIG"
2193                 $LCTL dk | sort -k4 -t: > $TMP/test_29.dk
2194                 log "dumped log to $TMP/test_29.dk (bug 5793)"
2195                 return 2
2196         fi
2197         if [[ $LOCKUNUSEDCOUNTCURRENT -gt $LOCKUNUSEDCOUNTORIG ]]; then
2198                 error "UNUSED: $LOCKUNUSEDCOUNTCURRENT > $LOCKUNUSEDCOUNTORIG"
2199                 $LCTL dk | sort -k4 -t: > $TMP/test_29.dk
2200                 log "dumped log to $TMP/test_29.dk (bug 5793)"
2201                 return 3
2202         fi
2203 }
2204 run_test 29 "IT_GETATTR regression  ============================"
2205
2206 test_30a() { # was test_30
2207         cp $(which ls) $DIR || cp /bin/ls $DIR
2208         $DIR/ls / || error
2209         rm $DIR/ls
2210 }
2211 run_test 30a "execute binary from Lustre (execve) =============="
2212
2213 test_30b() {
2214         cp `which ls` $DIR || cp /bin/ls $DIR
2215         chmod go+rx $DIR/ls
2216         $RUNAS $DIR/ls / || error
2217         rm $DIR/ls
2218 }
2219 run_test 30b "execute binary from Lustre as non-root ==========="
2220
2221 test_30c() { # b=22376
2222         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2223         cp `which ls` $DIR || cp /bin/ls $DIR
2224         chmod a-rw $DIR/ls
2225         cancel_lru_locks mdc
2226         cancel_lru_locks osc
2227         $RUNAS $DIR/ls / || error
2228         rm -f $DIR/ls
2229 }
2230 run_test 30c "execute binary from Lustre without read perms ===="
2231
2232 test_31a() {
2233         $OPENUNLINK $DIR/f31 $DIR/f31 || error
2234         $CHECKSTAT -a $DIR/f31 || error
2235 }
2236 run_test 31a "open-unlink file =================================="
2237
2238 test_31b() {
2239         touch $DIR/f31 || error
2240         ln $DIR/f31 $DIR/f31b || error
2241         $MULTIOP $DIR/f31b Ouc || error
2242         $CHECKSTAT -t file $DIR/f31 || error
2243 }
2244 run_test 31b "unlink file with multiple links while open ======="
2245
2246 test_31c() {
2247         touch $DIR/f31 || error
2248         ln $DIR/f31 $DIR/f31c || error
2249         multiop_bg_pause $DIR/f31 O_uc || return 1
2250         MULTIPID=$!
2251         $MULTIOP $DIR/f31c Ouc
2252         kill -USR1 $MULTIPID
2253         wait $MULTIPID
2254 }
2255 run_test 31c "open-unlink file with multiple links ============="
2256
2257 test_31d() {
2258         opendirunlink $DIR/d31d $DIR/d31d || error
2259         $CHECKSTAT -a $DIR/d31d || error
2260 }
2261 run_test 31d "remove of open directory ========================="
2262
2263 test_31e() { # bug 2904
2264         openfilleddirunlink $DIR/d31e || error
2265 }
2266 run_test 31e "remove of open non-empty directory ==============="
2267
2268 test_31f() { # bug 4554
2269         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2270         set -vx
2271         test_mkdir $DIR/d31f
2272         $SETSTRIPE -S 1048576 -c 1 $DIR/d31f
2273         cp /etc/hosts $DIR/d31f
2274         ls -l $DIR/d31f
2275         $GETSTRIPE $DIR/d31f/hosts
2276         multiop_bg_pause $DIR/d31f D_c || return 1
2277         MULTIPID=$!
2278
2279         rm -rv $DIR/d31f || error "first of $DIR/d31f"
2280         test_mkdir $DIR/d31f
2281         $SETSTRIPE -S 1048576 -c 1 $DIR/d31f
2282         cp /etc/hosts $DIR/d31f
2283         ls -l $DIR/d31f
2284         $GETSTRIPE $DIR/d31f/hosts
2285         multiop_bg_pause $DIR/d31f D_c || return 1
2286         MULTIPID2=$!
2287
2288         kill -USR1 $MULTIPID || error "first opendir $MULTIPID not running"
2289         wait $MULTIPID || error "first opendir $MULTIPID failed"
2290
2291         sleep 6
2292
2293         kill -USR1 $MULTIPID2 || error "second opendir $MULTIPID not running"
2294         wait $MULTIPID2 || error "second opendir $MULTIPID2 failed"
2295         set +vx
2296 }
2297 run_test 31f "remove of open directory with open-unlink file ==="
2298
2299 test_31g() {
2300         echo "-- cross directory link --"
2301         test_mkdir -c1 $DIR/${tdir}ga
2302         test_mkdir -c1 $DIR/${tdir}gb
2303         touch $DIR/${tdir}ga/f
2304         ln $DIR/${tdir}ga/f $DIR/${tdir}gb/g
2305         $CHECKSTAT -t file $DIR/${tdir}ga/f || error "source"
2306         [ `stat -c%h $DIR/${tdir}ga/f` == '2' ] || error "source nlink"
2307         $CHECKSTAT -t file $DIR/${tdir}gb/g || error "target"
2308         [ `stat -c%h $DIR/${tdir}gb/g` == '2' ] || error "target nlink"
2309 }
2310 run_test 31g "cross directory link==============="
2311
2312 test_31h() {
2313         echo "-- cross directory link --"
2314         test_mkdir -c1 $DIR/${tdir}
2315         test_mkdir -c1 $DIR/${tdir}/dir
2316         touch $DIR/${tdir}/f
2317         ln $DIR/${tdir}/f $DIR/${tdir}/dir/g
2318         $CHECKSTAT -t file $DIR/${tdir}/f || error "source"
2319         [ `stat -c%h $DIR/${tdir}/f` == '2' ] || error "source nlink"
2320         $CHECKSTAT -t file $DIR/${tdir}/dir/g || error "target"
2321         [ `stat -c%h $DIR/${tdir}/dir/g` == '2' ] || error "target nlink"
2322 }
2323 run_test 31h "cross directory link under child==============="
2324
2325 test_31i() {
2326         echo "-- cross directory link --"
2327         test_mkdir -c1 $DIR/$tdir
2328         test_mkdir -c1 $DIR/$tdir/dir
2329         touch $DIR/$tdir/dir/f
2330         ln $DIR/$tdir/dir/f $DIR/$tdir/g
2331         $CHECKSTAT -t file $DIR/$tdir/dir/f || error "source"
2332         [ `stat -c%h $DIR/$tdir/dir/f` == '2' ] || error "source nlink"
2333         $CHECKSTAT -t file $DIR/$tdir/g || error "target"
2334         [ `stat -c%h $DIR/$tdir/g` == '2' ] || error "target nlink"
2335 }
2336 run_test 31i "cross directory link under parent==============="
2337
2338 test_31j() {
2339         test_mkdir -c1 -p $DIR/$tdir
2340         test_mkdir -c1 -p $DIR/$tdir/dir1
2341         ln $DIR/$tdir/dir1 $DIR/$tdir/dir2 && error "ln for dir"
2342         link $DIR/$tdir/dir1 $DIR/$tdir/dir3 && error "link for dir"
2343         mlink $DIR/$tdir/dir1 $DIR/$tdir/dir4 && error "mlink for dir"
2344         mlink $DIR/$tdir/dir1 $DIR/$tdir/dir1 && error "mlink to the same dir"
2345         return 0
2346 }
2347 run_test 31j "link for directory==============="
2348
2349 test_31k() {
2350         test_mkdir -c1 -p $DIR/$tdir
2351         touch $DIR/$tdir/s
2352         touch $DIR/$tdir/exist
2353         mlink $DIR/$tdir/s $DIR/$tdir/t || error "mlink"
2354         mlink $DIR/$tdir/s $DIR/$tdir/exist && error "mlink to exist file"
2355         mlink $DIR/$tdir/s $DIR/$tdir/s && error "mlink to the same file"
2356         mlink $DIR/$tdir/s $DIR/$tdir && error "mlink to parent dir"
2357         mlink $DIR/$tdir $DIR/$tdir/s && error "mlink parent dir to target"
2358         mlink $DIR/$tdir/not-exist $DIR/$tdir/foo && error "mlink non-existing to new"
2359         mlink $DIR/$tdir/not-exist $DIR/$tdir/s && error "mlink non-existing to exist"
2360         return 0
2361 }
2362 run_test 31k "link to file: the same, non-existing, dir==============="
2363
2364 test_31m() {
2365         mkdir $DIR/d31m
2366         touch $DIR/d31m/s
2367         mkdir $DIR/d31m2
2368         touch $DIR/d31m2/exist
2369         mlink $DIR/d31m/s $DIR/d31m2/t || error "mlink"
2370         mlink $DIR/d31m/s $DIR/d31m2/exist && error "mlink to exist file"
2371         mlink $DIR/d31m/s $DIR/d31m2 && error "mlink to parent dir"
2372         mlink $DIR/d31m2 $DIR/d31m/s && error "mlink parent dir to target"
2373         mlink $DIR/d31m/not-exist $DIR/d31m2/foo && error "mlink non-existing to new"
2374         mlink $DIR/d31m/not-exist $DIR/d31m2/s && error "mlink non-existing to exist"
2375         return 0
2376 }
2377 run_test 31m "link to file: the same, non-existing, dir==============="
2378
2379 test_31n() {
2380         touch $DIR/$tfile || error "cannot create '$DIR/$tfile'"
2381         nlink=$(stat --format=%h $DIR/$tfile)
2382         [ ${nlink:--1} -eq 1 ] || error "nlink is $nlink, expected 1"
2383         local fd=$(free_fd)
2384         local cmd="exec $fd<$DIR/$tfile"
2385         eval $cmd
2386         cmd="exec $fd<&-"
2387         trap "eval $cmd" EXIT
2388         nlink=$(stat --dereference --format=%h /proc/self/fd/$fd)
2389         [ ${nlink:--1} -eq 1 ] || error "nlink is $nlink, expected 1"
2390         rm $DIR/$tfile || error "cannot remove '$DIR/$tfile'"
2391         nlink=$(stat --dereference --format=%h /proc/self/fd/$fd)
2392         [ ${nlink:--1} -eq 0 ] || error "nlink is $nlink, expected 0"
2393         eval $cmd
2394 }
2395 run_test 31n "check link count of unlinked file"
2396
2397 link_one() {
2398         local TEMPNAME=$(mktemp $1_XXXXXX)
2399         mlink $TEMPNAME $1 2> /dev/null &&
2400                 echo "$BASHPID: link $TEMPNAME to $1 succeeded"
2401         munlink $TEMPNAME
2402 }
2403
2404 test_31o() { # LU-2901
2405         test_mkdir $DIR/$tdir
2406         for LOOP in $(seq 100); do
2407                 rm -f $DIR/$tdir/$tfile*
2408                 for THREAD in $(seq 8); do
2409                         link_one $DIR/$tdir/$tfile.$LOOP &
2410                 done
2411                 wait
2412                 local LINKS=$(ls -1 $DIR/$tdir | grep -c $tfile.$LOOP)
2413                 [[ $LINKS -gt 1 ]] && ls $DIR/$tdir &&
2414                         error "$LINKS duplicate links to $tfile.$LOOP" &&
2415                         break || true
2416         done
2417 }
2418 run_test 31o "duplicate hard links with same filename"
2419
2420 test_31p() {
2421         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
2422
2423         test_mkdir $DIR/$tdir
2424         $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
2425         $LFS setdirstripe -D -c2 -t all_char $DIR/$tdir/striped_dir
2426
2427         opendirunlink $DIR/$tdir/striped_dir/test1 ||
2428                 error "open unlink test1 failed"
2429         opendirunlink $DIR/$tdir/striped_dir/test2 ||
2430                 error "open unlink test2 failed"
2431
2432         $CHECKSTAT -a $DIR/$tdir/striped_dir/test1 ||
2433                 error "test1 still exists"
2434         $CHECKSTAT -a $DIR/$tdir/striped_dir/test2 ||
2435                 error "test2 still exists"
2436 }
2437 run_test 31p "remove of open striped directory"
2438
2439 cleanup_test32_mount() {
2440         local rc=0
2441         trap 0
2442         local loopdev=$(losetup -a | grep $EXT2_DEV | sed -ne 's/:.*$//p')
2443         $UMOUNT $DIR/$tdir/ext2-mountpoint || rc=$?
2444         losetup -d $loopdev || true
2445         rm -rf $DIR/$tdir
2446         return $rc
2447 }
2448
2449 test_32a() {
2450         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2451         echo "== more mountpoints and symlinks ================="
2452         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2453         trap cleanup_test32_mount EXIT
2454         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2455         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2456         $CHECKSTAT -t dir $DIR/$tdir/ext2-mountpoint/.. || error
2457         cleanup_test32_mount
2458 }
2459 run_test 32a "stat d32a/ext2-mountpoint/.. ====================="
2460
2461 test_32b() {
2462         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2463         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2464         trap cleanup_test32_mount EXIT
2465         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2466         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2467         ls -al $DIR/$tdir/ext2-mountpoint/.. || error
2468         cleanup_test32_mount
2469 }
2470 run_test 32b "open d32b/ext2-mountpoint/.. ====================="
2471
2472 test_32c() {
2473         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2474         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2475         trap cleanup_test32_mount EXIT
2476         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2477         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2478         test_mkdir -p $DIR/$tdir/d2/test_dir
2479         $CHECKSTAT -t dir $DIR/$tdir/ext2-mountpoint/../d2/test_dir || error
2480         cleanup_test32_mount
2481 }
2482 run_test 32c "stat d32c/ext2-mountpoint/../d2/test_dir ========="
2483
2484 test_32d() {
2485         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2486         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2487         trap cleanup_test32_mount EXIT
2488         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2489         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2490         test_mkdir -p $DIR/$tdir/d2/test_dir
2491         ls -al $DIR/$tdir/ext2-mountpoint/../d2/test_dir || error
2492         cleanup_test32_mount
2493 }
2494 run_test 32d "open d32d/ext2-mountpoint/../d2/test_dir"
2495
2496 test_32e() {
2497         rm -fr $DIR/$tdir
2498         test_mkdir -p $DIR/$tdir/tmp
2499         local tmp_dir=$DIR/$tdir/tmp
2500         ln -s $DIR/$tdir $tmp_dir/symlink11
2501         ln -s $tmp_dir/symlink11 $tmp_dir/../symlink01
2502         $CHECKSTAT -t link $DIR/$tdir/tmp/symlink11 || error "symlink11 bad"
2503         $CHECKSTAT -t link $DIR/$tdir/symlink01 || error "symlink01 bad"
2504 }
2505 run_test 32e "stat d32e/symlink->tmp/symlink->lustre-subdir"
2506
2507 test_32f() {
2508         rm -fr $DIR/$tdir
2509         test_mkdir -p $DIR/$tdir/tmp
2510         local tmp_dir=$DIR/$tdir/tmp
2511         ln -s $DIR/$tdir $tmp_dir/symlink11
2512         ln -s $tmp_dir/symlink11 $tmp_dir/../symlink01
2513         ls $DIR/$tdir/tmp/symlink11  || error "symlink11 bad"
2514         ls $DIR/$tdir/symlink01 || error "symlink01 bad"
2515 }
2516 run_test 32f "open d32f/symlink->tmp/symlink->lustre-subdir"
2517
2518 test_32g() {
2519         local tmp_dir=$DIR/$tdir/tmp
2520         test_mkdir -p $tmp_dir
2521         test_mkdir $DIR/${tdir}2
2522         ln -s $DIR/${tdir}2 $tmp_dir/symlink12
2523         ln -s $tmp_dir/symlink12 $tmp_dir/../symlink02
2524         $CHECKSTAT -t link $tmp_dir/symlink12 || error "symlink12 not a link"
2525         $CHECKSTAT -t link $DIR/$tdir/symlink02 || error "symlink02 not a link"
2526         $CHECKSTAT -t dir -f $tmp_dir/symlink12 || error "symlink12 not a dir"
2527         $CHECKSTAT -t dir -f $DIR/$tdir/symlink02 || error "symlink12 not a dir"
2528 }
2529 run_test 32g "stat d32g/symlink->tmp/symlink->lustre-subdir/${tdir}2"
2530
2531 test_32h() {
2532         rm -fr $DIR/$tdir $DIR/${tdir}2
2533         tmp_dir=$DIR/$tdir/tmp
2534         test_mkdir -p $tmp_dir
2535         test_mkdir $DIR/${tdir}2
2536         ln -s $DIR/${tdir}2 $tmp_dir/symlink12
2537         ln -s $tmp_dir/symlink12 $tmp_dir/../symlink02
2538         ls $tmp_dir/symlink12 || error "listing symlink12"
2539         ls $DIR/$tdir/symlink02  || error "listing symlink02"
2540 }
2541 run_test 32h "open d32h/symlink->tmp/symlink->lustre-subdir/${tdir}2"
2542
2543 test_32i() {
2544         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2545         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2546         trap cleanup_test32_mount EXIT
2547         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2548         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2549         touch $DIR/$tdir/test_file
2550         $CHECKSTAT -t file $DIR/$tdir/ext2-mountpoint/../test_file || error
2551         cleanup_test32_mount
2552 }
2553 run_test 32i "stat d32i/ext2-mountpoint/../test_file ==========="
2554
2555 test_32j() {
2556         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2557         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2558         trap cleanup_test32_mount EXIT
2559         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2560         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2561         touch $DIR/$tdir/test_file
2562         cat $DIR/$tdir/ext2-mountpoint/../test_file || error
2563         cleanup_test32_mount
2564 }
2565 run_test 32j "open d32j/ext2-mountpoint/../test_file ==========="
2566
2567 test_32k() {
2568         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2569         rm -fr $DIR/$tdir
2570         trap cleanup_test32_mount EXIT
2571         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2572         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint
2573         test_mkdir -p $DIR/$tdir/d2
2574         touch $DIR/$tdir/d2/test_file || error
2575         $CHECKSTAT -t file $DIR/$tdir/ext2-mountpoint/../d2/test_file || error
2576         cleanup_test32_mount
2577 }
2578 run_test 32k "stat d32k/ext2-mountpoint/../d2/test_file ========"
2579
2580 test_32l() {
2581         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2582         rm -fr $DIR/$tdir
2583         trap cleanup_test32_mount EXIT
2584         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2585         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2586         test_mkdir -p $DIR/$tdir/d2
2587         touch $DIR/$tdir/d2/test_file
2588         cat  $DIR/$tdir/ext2-mountpoint/../d2/test_file || error
2589         cleanup_test32_mount
2590 }
2591 run_test 32l "open d32l/ext2-mountpoint/../d2/test_file ========"
2592
2593 test_32m() {
2594         rm -fr $DIR/d32m
2595         test_mkdir -p $DIR/d32m/tmp
2596         TMP_DIR=$DIR/d32m/tmp
2597         ln -s $DIR $TMP_DIR/symlink11
2598         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2599         $CHECKSTAT -t link $DIR/d32m/tmp/symlink11 || error
2600         $CHECKSTAT -t link $DIR/d32m/symlink01 || error
2601 }
2602 run_test 32m "stat d32m/symlink->tmp/symlink->lustre-root ======"
2603
2604 test_32n() {
2605         rm -fr $DIR/d32n
2606         test_mkdir -p $DIR/d32n/tmp
2607         TMP_DIR=$DIR/d32n/tmp
2608         ln -s $DIR $TMP_DIR/symlink11
2609         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2610         ls -l $DIR/d32n/tmp/symlink11  || error
2611         ls -l $DIR/d32n/symlink01 || error
2612 }
2613 run_test 32n "open d32n/symlink->tmp/symlink->lustre-root ======"
2614
2615 test_32o() {
2616         touch $DIR/$tfile
2617         test_mkdir -p $DIR/d32o/tmp
2618         TMP_DIR=$DIR/d32o/tmp
2619         ln -s $DIR/$tfile $TMP_DIR/symlink12
2620         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2621         $CHECKSTAT -t link $DIR/d32o/tmp/symlink12 || error
2622         $CHECKSTAT -t link $DIR/d32o/symlink02 || error
2623         $CHECKSTAT -t file -f $DIR/d32o/tmp/symlink12 || error
2624         $CHECKSTAT -t file -f $DIR/d32o/symlink02 || error
2625 }
2626 run_test 32o "stat d32o/symlink->tmp/symlink->lustre-root/$tfile"
2627
2628 test_32p() {
2629         log 32p_1
2630         rm -fr $DIR/d32p
2631         log 32p_2
2632         rm -f $DIR/$tfile
2633         log 32p_3
2634         touch $DIR/$tfile
2635         log 32p_4
2636         test_mkdir -p $DIR/d32p/tmp
2637         log 32p_5
2638         TMP_DIR=$DIR/d32p/tmp
2639         log 32p_6
2640         ln -s $DIR/$tfile $TMP_DIR/symlink12
2641         log 32p_7
2642         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2643         log 32p_8
2644         cat $DIR/d32p/tmp/symlink12 || error
2645         log 32p_9
2646         cat $DIR/d32p/symlink02 || error
2647         log 32p_10
2648 }
2649 run_test 32p "open d32p/symlink->tmp/symlink->lustre-root/$tfile"
2650
2651 test_32q() {
2652         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2653         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2654         trap cleanup_test32_mount EXIT
2655         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2656         touch $DIR/$tdir/ext2-mountpoint/under_the_mount
2657         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint
2658         ls $DIR/$tdir/ext2-mountpoint | grep "\<under_the_mount\>" && error
2659         cleanup_test32_mount
2660 }
2661 run_test 32q "stat follows mountpoints in Lustre (should return error)"
2662
2663 test_32r() {
2664         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2665         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2666         trap cleanup_test32_mount EXIT
2667         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2668         touch $DIR/$tdir/ext2-mountpoint/under_the_mount
2669         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint
2670         ls $DIR/$tdir/ext2-mountpoint | grep -q under_the_mount && error || true
2671         cleanup_test32_mount
2672 }
2673 run_test 32r "opendir follows mountpoints in Lustre (should return error)"
2674
2675 test_33aa() {
2676         rm -f $DIR/$tfile
2677         touch $DIR/$tfile
2678         chmod 444 $DIR/$tfile
2679         chown $RUNAS_ID $DIR/$tfile
2680         log 33_1
2681         $RUNAS $OPENFILE -f O_RDWR $DIR/$tfile && error || true
2682         log 33_2
2683 }
2684 run_test 33aa "write file with mode 444 (should return error)"
2685
2686 test_33a() {
2687         rm -fr $DIR/$tdir
2688         test_mkdir $DIR/$tdir
2689         chown $RUNAS_ID $DIR/$tdir
2690         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $DIR/$tdir/$tfile ||
2691                 error "$RUNAS create $tdir/$tfile failed"
2692         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $DIR/$tdir/$tfile &&
2693                 error "open RDWR" || true
2694 }
2695 run_test 33a "test open file(mode=0444) with O_RDWR (should return error)"
2696
2697 test_33b() {
2698         rm -fr $DIR/$tdir
2699         test_mkdir $DIR/$tdir
2700         chown $RUNAS_ID $DIR/$tdir
2701         $RUNAS $OPENFILE -f 1286739555 $DIR/$tdir/$tfile || true
2702 }
2703 run_test 33b "test open file with malformed flags (No panic)"
2704
2705 test_33c() {
2706         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2707         local ostnum
2708         local ostname
2709         local write_bytes
2710         local all_zeros
2711
2712         remote_ost_nodsh && skip "remote OST with nodsh" && return
2713         all_zeros=:
2714         rm -fr $DIR/$tdir
2715         test_mkdir $DIR/$tdir
2716         # Read: 0, Write: 4, create/destroy: 2/0, stat: 1, punch: 0
2717
2718         sync
2719         for ostnum in $(seq $OSTCOUNT); do
2720                 # test-framework's OST numbering is one-based, while Lustre's
2721                 # is zero-based
2722                 ostname=$(printf "$FSNAME-OST%.4x" $((ostnum - 1)))
2723                 # Parsing llobdstat's output sucks; we could grep the /proc
2724                 # path, but that's likely to not be as portable as using the
2725                 # llobdstat utility.  So we parse lctl output instead.
2726                 write_bytes=$(do_facet ost$ostnum lctl get_param -n \
2727                         obdfilter/$ostname/stats |
2728                         awk '/^write_bytes/ {print $7}' )
2729                 echo "baseline_write_bytes@$OSTnum/$ostname=$write_bytes"
2730                 if (( ${write_bytes:-0} > 0 ))
2731                 then
2732                         all_zeros=false
2733                         break;
2734                 fi
2735         done
2736
2737         $all_zeros || return 0
2738
2739         # Write four bytes
2740         echo foo > $DIR/$tdir/bar
2741         # Really write them
2742         sync
2743
2744         # Total up write_bytes after writing.  We'd better find non-zeros.
2745         for ostnum in $(seq $OSTCOUNT); do
2746                 ostname=$(printf "$FSNAME-OST%.4x" $((ostnum - 1)))
2747                 write_bytes=$(do_facet ost$ostnum lctl get_param -n \
2748                         obdfilter/$ostname/stats |
2749                         awk '/^write_bytes/ {print $7}' )
2750                 echo "write_bytes@$OSTnum/$ostname=$write_bytes"
2751                 if (( ${write_bytes:-0} > 0 ))
2752                 then
2753                         all_zeros=false
2754                         break;
2755                 fi
2756         done
2757
2758         if $all_zeros
2759         then
2760                 for ostnum in $(seq $OSTCOUNT); do
2761                         ostname=$(printf "$FSNAME-OST%.4x" $((ostnum - 1)))
2762                         echo "Check that write_bytes is present in obdfilter/*/stats:"
2763                         do_facet ost$ostnum lctl get_param -n \
2764                                 obdfilter/$ostname/stats
2765                 done
2766                 error "OST not keeping write_bytes stats (b22312)"
2767         fi
2768 }
2769 run_test 33c "test llobdstat and write_bytes"
2770
2771 test_33d() {
2772         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 2 MDTs" && return
2773         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2774         local MDTIDX=1
2775         local remote_dir=$DIR/$tdir/remote_dir
2776
2777         test_mkdir $DIR/$tdir
2778         $LFS mkdir -i $MDTIDX $remote_dir ||
2779                 error "create remote directory failed"
2780
2781         touch $remote_dir/$tfile
2782         chmod 444 $remote_dir/$tfile
2783         chown $RUNAS_ID $remote_dir/$tfile
2784
2785         $RUNAS $OPENFILE -f O_RDWR $DIR/$tfile && error || true
2786
2787         chown $RUNAS_ID $remote_dir
2788         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $remote_dir/f33 ||
2789                                         error "create" || true
2790         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $remote_dir/f33 &&
2791                                     error "open RDWR" || true
2792         $RUNAS $OPENFILE -f 1286739555 $remote_dir/f33 || true
2793 }
2794 run_test 33d "openfile with 444 modes and malformed flags under remote dir"
2795
2796 test_33e() {
2797         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
2798
2799         mkdir $DIR/$tdir
2800
2801         $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
2802         $LFS setdirstripe -i1 -c2 $DIR/$tdir/striped_dir1
2803         mkdir $DIR/$tdir/local_dir
2804
2805         local s0_mode=$(stat -c%f $DIR/$tdir/striped_dir)
2806         local s1_mode=$(stat -c%f $DIR/$tdir/striped_dir1)
2807         local l_mode=$(stat -c%f $DIR/$tdir/local_dir)
2808
2809         [ "$l_mode" = "$s0_mode" -a "$l_mode" = "$s1_mode" ] ||
2810                 error "mkdir $l_mode striped0 $s0_mode striped1 $s1_mode"
2811
2812         rmdir $DIR/$tdir/* || error "rmdir failed"
2813
2814         umask 777
2815         $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
2816         $LFS setdirstripe -i1 -c2 $DIR/$tdir/striped_dir1
2817         mkdir $DIR/$tdir/local_dir
2818
2819         s0_mode=$(stat -c%f $DIR/$tdir/striped_dir)
2820         s1_mode=$(stat -c%f $DIR/$tdir/striped_dir1)
2821         l_mode=$(stat -c%f $DIR/$tdir/local_dir)
2822
2823         [ "$l_mode" = "$s0_mode" -a "$l_mode" = "$s1_mode" ] ||
2824                 error "mkdir $l_mode striped0 $s0_mode striped1 $s1_mode 777"
2825
2826         rmdir $DIR/$tdir/* || error "rmdir(umask 777) failed"
2827
2828         umask 000
2829         $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
2830         $LFS setdirstripe -i1 -c2 $DIR/$tdir/striped_dir1
2831         mkdir $DIR/$tdir/local_dir
2832
2833         s0_mode=$(stat -c%f $DIR/$tdir/striped_dir)
2834         s1_mode=$(stat -c%f $DIR/$tdir/striped_dir1)
2835         l_mode=$(stat -c%f $DIR/$tdir/local_dir)
2836
2837         [ "$l_mode" = "$s0_mode" -a "$l_mode" = "$s1_mode" ] ||
2838                 error "mkdir $l_mode striped0 $s0_mode striped1 $s1_mode 0"
2839 }
2840 run_test 33e "mkdir and striped directory should have same mode"
2841
2842 cleanup_33f() {
2843         trap 0
2844         do_facet $SINGLEMDS $LCTL set_param mdt.*.enable_remote_dir_gid=0
2845 }
2846
2847 test_33f() {
2848         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
2849         remote_mds_nodsh && skip "remote MDS with nodsh" && return
2850
2851         mkdir $DIR/$tdir
2852         chmod go+rwx $DIR/$tdir
2853         do_facet $SINGLEMDS $LCTL set_param mdt.*.enable_remote_dir_gid=-1
2854         trap cleanup_33f EXIT
2855
2856         $RUNAS lfs mkdir -c$MDSCOUNT $DIR/$tdir/striped_dir ||
2857                 error "cannot create striped directory"
2858
2859         $RUNAS touch $DIR/$tdir/striped_dir/{0..16} ||
2860                 error "cannot create files in striped directory"
2861
2862         $RUNAS rm $DIR/$tdir/striped_dir/{0..16} ||
2863                 error "cannot remove files in striped directory"
2864
2865         $RUNAS rmdir $DIR/$tdir/striped_dir ||
2866                 error "cannot remove striped directory"
2867
2868         cleanup_33f
2869 }
2870 run_test 33f "nonroot user can create, access, and remove a striped directory"
2871
2872 test_33g() {
2873         mkdir -p $DIR/$tdir/dir2
2874
2875         local err=$($RUNAS mkdir $DIR/$tdir/dir2 2>&1)
2876         echo $err
2877         [[ $err =~ "exists" ]] || error "Not exists error"
2878 }
2879 run_test 33g "nonroot user create already existing root created file"
2880
2881 TEST_34_SIZE=${TEST_34_SIZE:-2000000000000}
2882 test_34a() {
2883         rm -f $DIR/f34
2884         $MCREATE $DIR/f34 || error
2885         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" || error
2886         $TRUNCATE $DIR/f34 $TEST_34_SIZE || error
2887         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" || error
2888         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2889 }
2890 run_test 34a "truncate file that has not been opened ==========="
2891
2892 test_34b() {
2893         [ ! -f $DIR/f34 ] && test_34a
2894         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2895         $OPENFILE -f O_RDONLY $DIR/f34
2896         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" || error
2897         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2898 }
2899 run_test 34b "O_RDONLY opening file doesn't create objects ====="
2900
2901 test_34c() {
2902         [ ! -f $DIR/f34 ] && test_34a
2903         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2904         $OPENFILE -f O_RDWR $DIR/f34
2905         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" && error
2906         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2907 }
2908 run_test 34c "O_RDWR opening file-with-size works =============="
2909
2910 test_34d() {
2911         [ ! -f $DIR/f34 ] && test_34a
2912         dd if=/dev/zero of=$DIR/f34 conv=notrunc bs=4k count=1 || error
2913         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2914         rm $DIR/f34
2915 }
2916 run_test 34d "write to sparse file ============================="
2917
2918 test_34e() {
2919         rm -f $DIR/f34e
2920         $MCREATE $DIR/f34e || error
2921         $TRUNCATE $DIR/f34e 1000 || error
2922         $CHECKSTAT -s 1000 $DIR/f34e || error
2923         $OPENFILE -f O_RDWR $DIR/f34e
2924         $CHECKSTAT -s 1000 $DIR/f34e || error
2925 }
2926 run_test 34e "create objects, some with size and some without =="
2927
2928 test_34f() { # bug 6242, 6243
2929         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2930         SIZE34F=48000
2931         rm -f $DIR/f34f
2932         $MCREATE $DIR/f34f || error
2933         $TRUNCATE $DIR/f34f $SIZE34F || error "truncating $DIR/f3f to $SIZE34F"
2934         dd if=$DIR/f34f of=$TMP/f34f
2935         $CHECKSTAT -s $SIZE34F $TMP/f34f || error "$TMP/f34f not $SIZE34F bytes"
2936         dd if=/dev/zero of=$TMP/f34fzero bs=$SIZE34F count=1
2937         cmp $DIR/f34f $TMP/f34fzero || error "$DIR/f34f not all zero"
2938         cmp $TMP/f34f $TMP/f34fzero || error "$TMP/f34f not all zero"
2939         rm $TMP/f34f $TMP/f34fzero $DIR/f34f
2940 }
2941 run_test 34f "read from a file with no objects until EOF ======="
2942
2943 test_34g() {
2944         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2945         dd if=/dev/zero of=$DIR/$tfile bs=1 count=100 seek=$TEST_34_SIZE || error
2946         $TRUNCATE $DIR/$tfile $((TEST_34_SIZE / 2))|| error
2947         $CHECKSTAT -s $((TEST_34_SIZE / 2)) $DIR/$tfile || error "truncate failed"
2948         cancel_lru_locks osc
2949         $CHECKSTAT -s $((TEST_34_SIZE / 2)) $DIR/$tfile || \
2950                 error "wrong size after lock cancel"
2951
2952         $TRUNCATE $DIR/$tfile $TEST_34_SIZE || error
2953         $CHECKSTAT -s $TEST_34_SIZE $DIR/$tfile || \
2954                 error "expanding truncate failed"
2955         cancel_lru_locks osc
2956         $CHECKSTAT -s $TEST_34_SIZE $DIR/$tfile || \
2957                 error "wrong expanded size after lock cancel"
2958 }
2959 run_test 34g "truncate long file ==============================="
2960
2961 test_34h() {
2962         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2963         local gid=10
2964         local sz=1000
2965
2966         dd if=/dev/zero of=$DIR/$tfile bs=1M count=10 || error
2967         sync # Flush the cache so that multiop below does not block on cache
2968              # flush when getting the group lock
2969         $MULTIOP $DIR/$tfile OG${gid}T${sz}g${gid}c &
2970         MULTIPID=$!
2971
2972         # Since just timed wait is not good enough, let's do a sync write
2973         # that way we are sure enough time for a roundtrip + processing
2974         # passed + 2 seconds of extra margin.
2975         dd if=/dev/zero of=$DIR/${tfile}-1 bs=4096 oflag=direct count=1
2976         rm $DIR/${tfile}-1
2977         sleep 2
2978
2979         if [[ `ps h -o comm -p $MULTIPID` == "multiop" ]]; then
2980                 error "Multiop blocked on ftruncate, pid=$MULTIPID"
2981                 kill -9 $MULTIPID
2982         fi
2983         wait $MULTIPID
2984         local nsz=`stat -c %s $DIR/$tfile`
2985         [[ $nsz == $sz ]] || error "New size wrong $nsz != $sz"
2986 }
2987 run_test 34h "ftruncate file under grouplock should not block"
2988
2989 test_35a() {
2990         cp /bin/sh $DIR/f35a
2991         chmod 444 $DIR/f35a
2992         chown $RUNAS_ID $DIR/f35a
2993         $RUNAS $DIR/f35a && error || true
2994         rm $DIR/f35a
2995 }
2996 run_test 35a "exec file with mode 444 (should return and not leak)"
2997
2998 test_36a() {
2999         rm -f $DIR/f36
3000         utime $DIR/f36 || error
3001 }
3002 run_test 36a "MDS utime check (mknod, utime)"
3003
3004 test_36b() {
3005         echo "" > $DIR/f36
3006         utime $DIR/f36 || error
3007 }
3008 run_test 36b "OST utime check (open, utime)"
3009
3010 test_36c() {
3011         rm -f $DIR/d36/f36
3012         test_mkdir $DIR/d36
3013         chown $RUNAS_ID $DIR/d36
3014         $RUNAS utime $DIR/d36/f36 || error
3015 }
3016 run_test 36c "non-root MDS utime check (mknod, utime)"
3017
3018 test_36d() {
3019         [ ! -d $DIR/d36 ] && test_36c
3020         echo "" > $DIR/d36/f36
3021         $RUNAS utime $DIR/d36/f36 || error
3022 }
3023 run_test 36d "non-root OST utime check (open, utime)"
3024
3025 test_36e() {
3026         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID -- skipping" && return
3027         test_mkdir $DIR/$tdir
3028         touch $DIR/$tdir/$tfile
3029         $RUNAS utime $DIR/$tdir/$tfile &&
3030                 error "utime worked, expected failure" || true
3031 }
3032 run_test 36e "utime on non-owned file (should return error)"
3033
3034 subr_36fh() {
3035         local fl="$1"
3036         local LANG_SAVE=$LANG
3037         local LC_LANG_SAVE=$LC_LANG
3038         export LANG=C LC_LANG=C # for date language
3039
3040         DATESTR="Dec 20  2000"
3041         test_mkdir $DIR/$tdir
3042         lctl set_param fail_loc=$fl
3043         date; date +%s
3044         cp /etc/hosts $DIR/$tdir/$tfile
3045         sync & # write RPC generated with "current" inode timestamp, but delayed
3046         sleep 1
3047         touch --date="$DATESTR" $DIR/$tdir/$tfile # setattr timestamp in past
3048         LS_BEFORE="`ls -l $DIR/$tdir/$tfile`" # old timestamp from client cache
3049         cancel_lru_locks osc
3050         LS_AFTER="`ls -l $DIR/$tdir/$tfile`"  # timestamp from OST object
3051         date; date +%s
3052         [ "$LS_BEFORE" != "$LS_AFTER" ] && \
3053                 echo "BEFORE: $LS_BEFORE" && \
3054                 echo "AFTER : $LS_AFTER" && \
3055                 echo "WANT  : $DATESTR" && \
3056                 error "$DIR/$tdir/$tfile timestamps changed" || true
3057
3058         export LANG=$LANG_SAVE LC_LANG=$LC_LANG_SAVE
3059 }
3060
3061 test_36f() {
3062         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3063         #define OBD_FAIL_OST_BRW_PAUSE_BULK 0x214
3064         subr_36fh "0x80000214"
3065 }
3066 run_test 36f "utime on file racing with OST BRW write =========="
3067
3068 test_36g() {
3069         remote_ost_nodsh && skip "remote OST with nodsh" && return
3070         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3071         local fmd_max_age
3072         local fmd_before
3073         local fmd_after
3074
3075         test_mkdir $DIR/$tdir
3076         fmd_max_age=$(do_facet ost1 \
3077                 "lctl get_param -n obdfilter.*.client_cache_seconds 2> /dev/null | \
3078                 head -n 1")
3079
3080         fmd_before=$(do_facet ost1 \
3081                 "awk '/ll_fmd_cache/ {print \\\$2}' /proc/slabinfo")
3082         touch $DIR/$tdir/$tfile
3083         sleep $((fmd_max_age + 12))
3084         fmd_after=$(do_facet ost1 \
3085                 "awk '/ll_fmd_cache/ {print \\\$2}' /proc/slabinfo")
3086
3087         echo "fmd_before: $fmd_before"
3088         echo "fmd_after: $fmd_after"
3089         [[ $fmd_after -gt $fmd_before ]] &&
3090                 echo "AFTER: $fmd_after > BEFORE: $fmd_before" &&
3091                 error "fmd didn't expire after ping" || true
3092 }
3093 run_test 36g "filter mod data cache expiry ====================="
3094
3095 test_36h() {
3096         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3097         #define OBD_FAIL_OST_BRW_PAUSE_BULK2 0x227
3098         subr_36fh "0x80000227"
3099 }
3100 run_test 36h "utime on file racing with OST BRW write =========="
3101
3102 test_36i() {
3103         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
3104
3105         test_mkdir $DIR/$tdir
3106         $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/striped_dir
3107
3108         local mtime=$(stat -c%Y $DIR/$tdir/striped_dir)
3109         local new_mtime=$((mtime + 200))
3110
3111         #change Modify time of striped dir
3112         touch -m -d @$new_mtime $DIR/$tdir/striped_dir ||
3113                         error "change mtime failed"
3114
3115         local got=$(stat -c%Y $DIR/$tdir/striped_dir)
3116
3117         [ "$new_mtime" = "$got" ] || error "expect $new_mtime got $got"
3118 }
3119 run_test 36i "change mtime on striped directory"
3120
3121 # test_37 - duplicate with tests 32q 32r
3122
3123 test_38() {
3124         local file=$DIR/$tfile
3125         touch $file
3126         openfile -f O_DIRECTORY $file
3127         local RC=$?
3128         local ENOTDIR=20
3129         [ $RC -eq 0 ] && error "opened file $file with O_DIRECTORY" || true
3130         [ $RC -eq $ENOTDIR ] || error "error $RC should be ENOTDIR ($ENOTDIR)"
3131 }
3132 run_test 38 "open a regular file with O_DIRECTORY should return -ENOTDIR ==="
3133
3134 test_39a() { # was test_39
3135         touch $DIR/$tfile
3136         touch $DIR/${tfile}2
3137 #       ls -l  $DIR/$tfile $DIR/${tfile}2
3138 #       ls -lu  $DIR/$tfile $DIR/${tfile}2
3139 #       ls -lc  $DIR/$tfile $DIR/${tfile}2
3140         sleep 2
3141         $OPENFILE -f O_CREAT:O_TRUNC:O_WRONLY $DIR/${tfile}2
3142         if [ ! $DIR/${tfile}2 -nt $DIR/$tfile ]; then
3143                 echo "mtime"
3144                 ls -l --full-time $DIR/$tfile $DIR/${tfile}2
3145                 echo "atime"
3146                 ls -lu --full-time $DIR/$tfile $DIR/${tfile}2
3147                 echo "ctime"
3148                 ls -lc --full-time $DIR/$tfile $DIR/${tfile}2
3149                 error "O_TRUNC didn't change timestamps"
3150         fi
3151 }
3152 run_test 39a "mtime changed on create"
3153
3154 test_39b() {
3155         test_mkdir -c1 $DIR/$tdir
3156         cp -p /etc/passwd $DIR/$tdir/fopen
3157         cp -p /etc/passwd $DIR/$tdir/flink
3158         cp -p /etc/passwd $DIR/$tdir/funlink
3159         cp -p /etc/passwd $DIR/$tdir/frename
3160         ln $DIR/$tdir/funlink $DIR/$tdir/funlink2
3161
3162         sleep 1
3163         echo "aaaaaa" >> $DIR/$tdir/fopen
3164         echo "aaaaaa" >> $DIR/$tdir/flink
3165         echo "aaaaaa" >> $DIR/$tdir/funlink
3166         echo "aaaaaa" >> $DIR/$tdir/frename
3167
3168         local open_new=`stat -c %Y $DIR/$tdir/fopen`
3169         local link_new=`stat -c %Y $DIR/$tdir/flink`
3170         local unlink_new=`stat -c %Y $DIR/$tdir/funlink`
3171         local rename_new=`stat -c %Y $DIR/$tdir/frename`
3172
3173         cat $DIR/$tdir/fopen > /dev/null
3174         ln $DIR/$tdir/flink $DIR/$tdir/flink2
3175         rm -f $DIR/$tdir/funlink2
3176         mv -f $DIR/$tdir/frename $DIR/$tdir/frename2
3177
3178         for (( i=0; i < 2; i++ )) ; do
3179                 local open_new2=`stat -c %Y $DIR/$tdir/fopen`
3180                 local link_new2=`stat -c %Y $DIR/$tdir/flink`
3181                 local unlink_new2=`stat -c %Y $DIR/$tdir/funlink`
3182                 local rename_new2=`stat -c %Y $DIR/$tdir/frename2`
3183
3184                 [ $open_new2 -eq $open_new ] || error "open file reverses mtime"
3185                 [ $link_new2 -eq $link_new ] || error "link file reverses mtime"
3186                 [ $unlink_new2 -eq $unlink_new ] || error "unlink file reverses mtime"
3187                 [ $rename_new2 -eq $rename_new ] || error "rename file reverses mtime"
3188
3189                 cancel_lru_locks osc
3190                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3191         done
3192 }
3193 run_test 39b "mtime change on open, link, unlink, rename  ======"
3194
3195 # this should be set to past
3196 TEST_39_MTIME=`date -d "1 year ago" +%s`
3197
3198 # bug 11063
3199 test_39c() {
3200         touch $DIR1/$tfile
3201         sleep 2
3202         local mtime0=`stat -c %Y $DIR1/$tfile`
3203
3204         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3205         local mtime1=`stat -c %Y $DIR1/$tfile`
3206         [ "$mtime1" = $TEST_39_MTIME ] || \
3207                 error "mtime is not set to past: $mtime1, should be $TEST_39_MTIME"
3208
3209         local d1=`date +%s`
3210         echo hello >> $DIR1/$tfile
3211         local d2=`date +%s`
3212         local mtime2=`stat -c %Y $DIR1/$tfile`
3213         [ "$mtime2" -ge "$d1" ] && [ "$mtime2" -le "$d2" ] || \
3214                 error "mtime is not updated on write: $d1 <= $mtime2 <= $d2"
3215
3216         mv $DIR1/$tfile $DIR1/$tfile-1
3217
3218         for (( i=0; i < 2; i++ )) ; do
3219                 local mtime3=`stat -c %Y $DIR1/$tfile-1`
3220                 [ "$mtime2" = "$mtime3" ] || \
3221                         error "mtime ($mtime2) changed (to $mtime3) on rename"
3222
3223                 cancel_lru_locks osc
3224                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3225         done
3226 }
3227 run_test 39c "mtime change on rename ==========================="
3228
3229 # bug 21114
3230 test_39d() {
3231         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3232         touch $DIR1/$tfile
3233
3234         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3235
3236         for (( i=0; i < 2; i++ )) ; do
3237                 local mtime=`stat -c %Y $DIR1/$tfile`
3238                 [ $mtime = $TEST_39_MTIME ] || \
3239                         error "mtime($mtime) is not set to $TEST_39_MTIME"
3240
3241                 cancel_lru_locks osc
3242                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3243         done
3244 }
3245 run_test 39d "create, utime, stat =============================="
3246
3247 # bug 21114
3248 test_39e() {
3249         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3250         touch $DIR1/$tfile
3251         local mtime1=`stat -c %Y $DIR1/$tfile`
3252
3253         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3254
3255         for (( i=0; i < 2; i++ )) ; do
3256                 local mtime2=`stat -c %Y $DIR1/$tfile`
3257                 [ $mtime2 = $TEST_39_MTIME ] || \
3258                         error "mtime($mtime2) is not set to $TEST_39_MTIME"
3259
3260                 cancel_lru_locks osc
3261                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3262         done
3263 }
3264 run_test 39e "create, stat, utime, stat ========================"
3265
3266 # bug 21114
3267 test_39f() {
3268         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3269         touch $DIR1/$tfile
3270         mtime1=`stat -c %Y $DIR1/$tfile`
3271
3272         sleep 2
3273         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3274
3275         for (( i=0; i < 2; i++ )) ; do
3276                 local mtime2=`stat -c %Y $DIR1/$tfile`
3277                 [ $mtime2 = $TEST_39_MTIME ] || \
3278                         error "mtime($mtime2) is not set to $TEST_39_MTIME"
3279
3280                 cancel_lru_locks osc
3281                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3282         done
3283 }
3284 run_test 39f "create, stat, sleep, utime, stat ================="
3285
3286 # bug 11063
3287 test_39g() {
3288         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3289         echo hello >> $DIR1/$tfile
3290         local mtime1=`stat -c %Y $DIR1/$tfile`
3291
3292         sleep 2
3293         chmod o+r $DIR1/$tfile
3294
3295         for (( i=0; i < 2; i++ )) ; do
3296                 local mtime2=`stat -c %Y $DIR1/$tfile`
3297                 [ "$mtime1" = "$mtime2" ] || \
3298                         error "lost mtime: $mtime2, should be $mtime1"
3299
3300                 cancel_lru_locks osc
3301                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3302         done
3303 }
3304 run_test 39g "write, chmod, stat ==============================="
3305
3306 # bug 11063
3307 test_39h() {
3308         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3309         touch $DIR1/$tfile
3310         sleep 1
3311
3312         local d1=`date`
3313         echo hello >> $DIR1/$tfile
3314         local mtime1=`stat -c %Y $DIR1/$tfile`
3315
3316         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3317         local d2=`date`
3318         if [ "$d1" != "$d2" ]; then
3319                 echo "write and touch not within one second"
3320         else
3321                 for (( i=0; i < 2; i++ )) ; do
3322                         local mtime2=`stat -c %Y $DIR1/$tfile`
3323                         [ "$mtime2" = $TEST_39_MTIME ] || \
3324                                 error "lost mtime: $mtime2, should be $TEST_39_MTIME"
3325
3326                         cancel_lru_locks osc
3327                         if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3328                 done
3329         fi
3330 }
3331 run_test 39h "write, utime within one second, stat ============="
3332
3333 test_39i() {
3334         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3335         touch $DIR1/$tfile
3336         sleep 1
3337
3338         echo hello >> $DIR1/$tfile
3339         local mtime1=`stat -c %Y $DIR1/$tfile`
3340
3341         mv $DIR1/$tfile $DIR1/$tfile-1
3342
3343         for (( i=0; i < 2; i++ )) ; do
3344                 local mtime2=`stat -c %Y $DIR1/$tfile-1`
3345
3346                 [ "$mtime1" = "$mtime2" ] || \
3347                         error "lost mtime: $mtime2, should be $mtime1"
3348
3349                 cancel_lru_locks osc
3350                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3351         done
3352 }
3353 run_test 39i "write, rename, stat =============================="
3354
3355 test_39j() {
3356         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3357         start_full_debug_logging
3358         touch $DIR1/$tfile
3359         sleep 1
3360
3361         #define OBD_FAIL_OSC_DELAY_SETTIME       0x412
3362         lctl set_param fail_loc=0x80000412
3363         multiop_bg_pause $DIR1/$tfile oO_RDWR:w2097152_c ||
3364                 error "multiop failed"
3365         local multipid=$!
3366         local mtime1=`stat -c %Y $DIR1/$tfile`
3367
3368         mv $DIR1/$tfile $DIR1/$tfile-1
3369
3370         kill -USR1 $multipid
3371         wait $multipid || error "multiop close failed"
3372
3373         for (( i=0; i < 2; i++ )) ; do
3374                 local mtime2=`stat -c %Y $DIR1/$tfile-1`
3375                 [ "$mtime1" = "$mtime2" ] ||
3376                         error "mtime is lost on close: $mtime2, " \
3377                               "should be $mtime1"
3378
3379                 cancel_lru_locks osc
3380                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3381         done
3382         lctl set_param fail_loc=0
3383         stop_full_debug_logging
3384 }
3385 run_test 39j "write, rename, close, stat ======================="
3386
3387 test_39k() {
3388         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3389         touch $DIR1/$tfile
3390         sleep 1
3391
3392         multiop_bg_pause $DIR1/$tfile oO_RDWR:w2097152_c || error "multiop failed"
3393         local multipid=$!
3394         local mtime1=`stat -c %Y $DIR1/$tfile`
3395
3396         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3397
3398         kill -USR1 $multipid
3399         wait $multipid || error "multiop close failed"
3400
3401         for (( i=0; i < 2; i++ )) ; do
3402                 local mtime2=`stat -c %Y $DIR1/$tfile`
3403
3404                 [ "$mtime2" = $TEST_39_MTIME ] || \
3405                         error "mtime is lost on close: $mtime2, should be $TEST_39_MTIME"
3406
3407                 cancel_lru_locks osc
3408                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3409         done
3410 }
3411 run_test 39k "write, utime, close, stat ========================"
3412
3413 # this should be set to future
3414 TEST_39_ATIME=`date -d "1 year" +%s`
3415
3416 test_39l() {
3417         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3418         remote_mds_nodsh && skip "remote MDS with nodsh" && return
3419         local atime_diff=$(do_facet $SINGLEMDS \
3420                                 lctl get_param -n mdd.*MDT0000*.atime_diff)
3421         rm -rf $DIR/$tdir
3422         mkdir -p $DIR/$tdir
3423
3424         # test setting directory atime to future
3425         touch -a -d @$TEST_39_ATIME $DIR/$tdir
3426         local atime=$(stat -c %X $DIR/$tdir)
3427         [ "$atime" = $TEST_39_ATIME ] ||
3428                 error "atime is not set to future: $atime, $TEST_39_ATIME"
3429
3430         # test setting directory atime from future to now
3431         local now=$(date +%s)
3432         touch -a -d @$now $DIR/$tdir
3433
3434         atime=$(stat -c %X $DIR/$tdir)
3435         [ "$atime" -eq "$now"  ] ||
3436                 error "atime is not updated from future: $atime, $now"
3437
3438         do_facet $SINGLEMDS lctl set_param -n mdd.*MDT0000*.atime_diff=2
3439         sleep 3
3440
3441         # test setting directory atime when now > dir atime + atime_diff
3442         local d1=$(date +%s)
3443         ls $DIR/$tdir
3444         local d2=$(date +%s)
3445         cancel_lru_locks mdc
3446         atime=$(stat -c %X $DIR/$tdir)
3447         [ "$atime" -ge "$d1" -a "$atime" -le "$d2" ] ||
3448                 error "atime is not updated  : $atime, should be $d2"
3449
3450         do_facet $SINGLEMDS lctl set_param -n mdd.*MDT0000*.atime_diff=60
3451         sleep 3
3452
3453         # test not setting directory atime when now < dir atime + atime_diff
3454         ls $DIR/$tdir
3455         cancel_lru_locks mdc
3456         atime=$(stat -c %X $DIR/$tdir)
3457         [ "$atime" -ge "$d1" -a "$atime" -le "$d2" ] ||
3458                 error "atime is updated to $atime, should remain $d1<atime<$d2"
3459
3460         do_facet $SINGLEMDS \
3461                 lctl set_param -n mdd.*MDT0000*.atime_diff=$atime_diff
3462 }
3463 run_test 39l "directory atime update ==========================="
3464
3465 test_39m() {
3466         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3467         touch $DIR1/$tfile
3468         sleep 2
3469         local far_past_mtime=$(date -d "May 29 1953" +%s)
3470         local far_past_atime=$(date -d "Dec 17 1903" +%s)
3471
3472         touch -m -d @$far_past_mtime $DIR1/$tfile
3473         touch -a -d @$far_past_atime $DIR1/$tfile
3474
3475         for (( i=0; i < 2; i++ )) ; do
3476                 local timestamps=$(stat -c "%X %Y" $DIR1/$tfile)
3477                 [ "$timestamps" = "$far_past_atime $far_past_mtime" ] || \
3478                         error "atime or mtime set incorrectly"
3479
3480                 cancel_lru_locks osc
3481                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3482         done
3483 }
3484 run_test 39m "test atime and mtime before 1970"
3485
3486 test_39n() { # LU-3832
3487         remote_mds_nodsh && skip "remote MDS with nodsh" && return
3488         local atime_diff=$(do_facet $SINGLEMDS \
3489                 lctl get_param -n mdd.*MDT0000*.atime_diff)
3490         local atime0
3491         local atime1
3492         local atime2
3493
3494         do_facet $SINGLEMDS lctl set_param -n mdd.*MDT0000*.atime_diff=1
3495
3496         rm -rf $DIR/$tfile
3497         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 status=noxfer
3498         atime0=$(stat -c %X $DIR/$tfile)
3499
3500         sleep 5
3501         $MULTIOP $DIR/$tfile oO_RDONLY:O_NOATIME:r4096c
3502         atime1=$(stat -c %X $DIR/$tfile)
3503
3504         sleep 5
3505         cancel_lru_locks mdc
3506         cancel_lru_locks osc
3507         $MULTIOP $DIR/$tfile oO_RDONLY:O_NOATIME:r4096c
3508         atime2=$(stat -c %X $DIR/$tfile)
3509
3510         do_facet $SINGLEMDS \
3511                 lctl set_param -n mdd.*MDT0000*.atime_diff=$atime_diff
3512
3513         [ "$atime0" -eq "$atime1" ] || error "atime0 $atime0 != atime1 $atime1"
3514         [ "$atime1" -eq "$atime2" ] || error "atime0 $atime0 != atime1 $atime1"
3515 }
3516 run_test 39n "check that O_NOATIME is honored"
3517
3518 test_39o() {
3519         TESTDIR=$DIR/$tdir/$tfile
3520         [ -e $TESTDIR ] && rm -rf $TESTDIR
3521         mkdir -p $TESTDIR
3522         cd $TESTDIR
3523         links1=2
3524         ls
3525         mkdir a b
3526         ls
3527         links2=$(stat -c %h .)
3528         [ $(($links1 + 2)) != $links2 ] &&
3529                 error "wrong links count $(($links1 + 2)) != $links2"
3530         rmdir b
3531         links3=$(stat -c %h .)
3532         [ $(($links1 + 1)) != $links3 ] &&
3533                 error "wrong links count $links1 != $links3"
3534         return 0
3535 }
3536 run_test 39o "directory cached attributes updated after create"
3537
3538 test_39p() {
3539         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 2 MDTs" && return
3540         local MDTIDX=1
3541         TESTDIR=$DIR/$tdir/$tdir
3542         [ -e $TESTDIR ] && rm -rf $TESTDIR
3543         test_mkdir -p $TESTDIR
3544         cd $TESTDIR
3545         links1=2
3546         ls
3547         test_mkdir -i $MDTIDX $TESTDIR/remote_dir1
3548         test_mkdir -i $MDTIDX $TESTDIR/remote_dir2
3549         ls
3550         links2=$(stat -c %h .)
3551         [ $(($links1 + 2)) != $links2 ] &&
3552                 error "wrong links count $(($links1 + 2)) != $links2"
3553         rmdir remote_dir2
3554         links3=$(stat -c %h .)
3555         [ $(($links1 + 1)) != $links3 ] &&
3556                 error "wrong links count $links1 != $links3"
3557         return 0
3558 }
3559 run_test 39p "remote directory cached attributes updated after create ========"
3560
3561
3562 test_39q() { # LU-8041
3563         local testdir=$DIR/$tdir
3564         mkdir -p $testdir
3565         multiop_bg_pause $testdir D_c || error "multiop failed"
3566         local multipid=$!
3567         cancel_lru_locks mdc
3568         kill -USR1 $multipid
3569         local atime=$(stat -c %X $testdir)
3570         [ "$atime" -ne 0 ] || error "atime is zero"
3571 }
3572 run_test 39q "close won't zero out atime"
3573
3574 test_40() {
3575         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1
3576         $RUNAS $OPENFILE -f O_WRONLY:O_TRUNC $DIR/$tfile &&
3577                 error "openfile O_WRONLY:O_TRUNC $tfile failed"
3578         $CHECKSTAT -t file -s 4096 $DIR/$tfile ||
3579                 error "$tfile is not 4096 bytes in size"
3580 }
3581 run_test 40 "failed open(O_TRUNC) doesn't truncate ============="
3582
3583 test_41() {
3584         # bug 1553
3585         small_write $DIR/f41 18
3586 }
3587 run_test 41 "test small file write + fstat ====================="
3588
3589 count_ost_writes() {
3590         lctl get_param -n osc.*.stats |
3591                 awk -vwrites=0 '/ost_write/ { writes += $2 } \
3592                         END { printf("%0.0f", writes) }'
3593 }
3594
3595 # decent default
3596 WRITEBACK_SAVE=500
3597 DIRTY_RATIO_SAVE=40
3598 MAX_DIRTY_RATIO=50
3599 BG_DIRTY_RATIO_SAVE=10
3600 MAX_BG_DIRTY_RATIO=25
3601
3602 start_writeback() {
3603         trap 0
3604         # in 2.6, restore /proc/sys/vm/dirty_writeback_centisecs,
3605         # dirty_ratio, dirty_background_ratio
3606         if [ -f /proc/sys/vm/dirty_writeback_centisecs ]; then
3607                 sysctl -w vm.dirty_writeback_centisecs=$WRITEBACK_SAVE
3608                 sysctl -w vm.dirty_background_ratio=$BG_DIRTY_RATIO_SAVE
3609                 sysctl -w vm.dirty_ratio=$DIRTY_RATIO_SAVE
3610         else
3611                 # if file not here, we are a 2.4 kernel
3612                 kill -CONT `pidof kupdated`
3613         fi
3614 }
3615
3616 stop_writeback() {
3617         # setup the trap first, so someone cannot exit the test at the
3618         # exact wrong time and mess up a machine
3619         trap start_writeback EXIT
3620         # in 2.6, save and 0 /proc/sys/vm/dirty_writeback_centisecs
3621         if [ -f /proc/sys/vm/dirty_writeback_centisecs ]; then
3622                 WRITEBACK_SAVE=`sysctl -n vm.dirty_writeback_centisecs`
3623                 sysctl -w vm.dirty_writeback_centisecs=0
3624                 sysctl -w vm.dirty_writeback_centisecs=0
3625                 # save and increase /proc/sys/vm/dirty_ratio
3626                 DIRTY_RATIO_SAVE=`sysctl -n vm.dirty_ratio`
3627                 sysctl -w vm.dirty_ratio=$MAX_DIRTY_RATIO
3628                 # save and increase /proc/sys/vm/dirty_background_ratio
3629                 BG_DIRTY_RATIO_SAVE=`sysctl -n vm.dirty_background_ratio`
3630                 sysctl -w vm.dirty_background_ratio=$MAX_BG_DIRTY_RATIO
3631         else
3632                 # if file not here, we are a 2.4 kernel
3633                 kill -STOP `pidof kupdated`
3634         fi
3635 }
3636
3637 # ensure that all stripes have some grant before we test client-side cache
3638 setup_test42() {
3639         for i in `seq -f $DIR/f42-%g 1 $OSTCOUNT`; do
3640                 dd if=/dev/zero of=$i bs=4k count=1
3641                 rm $i
3642         done
3643 }
3644
3645 # Tests 42* verify that our behaviour is correct WRT caching, file closure,
3646 # file truncation, and file removal.
3647 test_42a() {
3648         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3649         setup_test42
3650         cancel_lru_locks osc
3651         stop_writeback
3652         sync; sleep 1; sync # just to be safe
3653         BEFOREWRITES=`count_ost_writes`
3654         lctl get_param -n osc.*[oO][sS][cC][_-]*.cur_grant_bytes | grep "[0-9]"
3655         dd if=/dev/zero of=$DIR/f42a bs=1024 count=100
3656         AFTERWRITES=`count_ost_writes`
3657         [ $BEFOREWRITES -eq $AFTERWRITES ] || \
3658                 error "$BEFOREWRITES < $AFTERWRITES"
3659         start_writeback
3660 }
3661 run_test 42a "ensure that we don't flush on close"
3662
3663 test_42b() {
3664         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3665         setup_test42
3666         cancel_lru_locks osc
3667         stop_writeback
3668         sync
3669         dd if=/dev/zero of=$DIR/f42b bs=1024 count=100
3670         BEFOREWRITES=$(count_ost_writes)
3671         $MUNLINK $DIR/f42b || error "$MUNLINK $DIR/f42b: $?"
3672         AFTERWRITES=$(count_ost_writes)
3673         if [[ $BEFOREWRITES -lt $AFTERWRITES ]]; then
3674                 error "$BEFOREWRITES < $AFTERWRITES on unlink"
3675         fi
3676         BEFOREWRITES=$(count_ost_writes)
3677         sync || error "sync: $?"
3678         AFTERWRITES=$(count_ost_writes)
3679         if [[ $BEFOREWRITES -lt $AFTERWRITES ]]; then
3680                 error "$BEFOREWRITES < $AFTERWRITES on sync"
3681         fi
3682         dmesg | grep 'error from obd_brw_async' && error 'error writing back'
3683         start_writeback
3684         return 0
3685 }
3686 run_test 42b "test destroy of file with cached dirty data ======"
3687
3688 # if these tests just want to test the effect of truncation,
3689 # they have to be very careful.  consider:
3690 # - the first open gets a {0,EOF}PR lock
3691 # - the first write conflicts and gets a {0, count-1}PW
3692 # - the rest of the writes are under {count,EOF}PW
3693 # - the open for truncate tries to match a {0,EOF}PR
3694 #   for the filesize and cancels the PWs.
3695 # any number of fixes (don't get {0,EOF} on open, match
3696 # composite locks, do smarter file size management) fix
3697 # this, but for now we want these tests to verify that
3698 # the cancellation with truncate intent works, so we
3699 # start the file with a full-file pw lock to match against
3700 # until the truncate.
3701 trunc_test() {
3702         test=$1
3703         file=$DIR/$test
3704         offset=$2
3705         cancel_lru_locks osc
3706         stop_writeback
3707         # prime the file with 0,EOF PW to match
3708         touch $file
3709         $TRUNCATE $file 0
3710         sync; sync
3711         # now the real test..
3712         dd if=/dev/zero of=$file bs=1024 count=100
3713         BEFOREWRITES=`count_ost_writes`
3714         $TRUNCATE $file $offset
3715         cancel_lru_locks osc
3716         AFTERWRITES=`count_ost_writes`
3717         start_writeback
3718 }
3719
3720 test_42c() {
3721         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3722         trunc_test 42c 1024
3723         [ $BEFOREWRITES -eq $AFTERWRITES ] && \
3724             error "beforewrites $BEFOREWRITES == afterwrites $AFTERWRITES on truncate"
3725         rm $file
3726 }
3727 run_test 42c "test partial truncate of file with cached dirty data"
3728
3729 test_42d() {
3730         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3731         trunc_test 42d 0
3732         [ $BEFOREWRITES -eq $AFTERWRITES ] || \
3733             error "beforewrites $BEFOREWRITES != afterwrites $AFTERWRITES on truncate"
3734         rm $file
3735 }
3736 run_test 42d "test complete truncate of file with cached dirty data"
3737
3738 test_42e() { # bug22074
3739         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3740         local TDIR=$DIR/${tdir}e
3741         local pagesz=$(page_size)
3742         local pages=16 # hardcoded 16 pages, don't change it.
3743         local files=$((OSTCOUNT * 500)) # hopefully 500 files on each OST
3744         local proc_osc0="osc.${FSNAME}-OST0000-osc-[^MDT]*"
3745         local max_dirty_mb
3746         local warmup_files
3747
3748         test_mkdir $DIR/${tdir}e
3749         $SETSTRIPE -c 1 $TDIR
3750         createmany -o $TDIR/f $files
3751
3752         max_dirty_mb=$($LCTL get_param -n $proc_osc0/max_dirty_mb)
3753
3754         # we assume that with $OSTCOUNT files, at least one of them will
3755         # be allocated on OST0.
3756         warmup_files=$((OSTCOUNT * max_dirty_mb))
3757         createmany -o $TDIR/w $warmup_files
3758
3759         # write a large amount of data into one file and sync, to get good
3760         # avail_grant number from OST.
3761         for ((i=0; i<$warmup_files; i++)); do
3762                 idx=$($GETSTRIPE -i $TDIR/w$i)
3763                 [ $idx -ne 0 ] && continue
3764                 dd if=/dev/zero of=$TDIR/w$i bs="$max_dirty_mb"M count=1
3765                 break
3766         done
3767         [[ $i -gt $warmup_files ]] && error "OST0 is still cold"
3768         sync
3769         $LCTL get_param $proc_osc0/cur_dirty_bytes
3770         $LCTL get_param $proc_osc0/cur_grant_bytes
3771
3772         # create as much dirty pages as we can while not to trigger the actual
3773         # RPCs directly. but depends on the env, VFS may trigger flush during this
3774         # period, hopefully we are good.
3775         for ((i=0; i<$warmup_files; i++)); do
3776                 idx=$($GETSTRIPE -i $TDIR/w$i)
3777                 [ $idx -ne 0 ] && continue
3778                 dd if=/dev/zero of=$TDIR/w$i bs=1M count=1 2>/dev/null
3779         done
3780         $LCTL get_param $proc_osc0/cur_dirty_bytes
3781         $LCTL get_param $proc_osc0/cur_grant_bytes
3782
3783         # perform the real test
3784         $LCTL set_param $proc_osc0/rpc_stats 0
3785         for ((;i<$files; i++)); do
3786                 [ $($GETSTRIPE -i $TDIR/f$i) -eq 0 ] || continue
3787                 dd if=/dev/zero of=$TDIR/f$i bs=$pagesz count=$pages 2>/dev/null
3788         done
3789         sync
3790         $LCTL get_param $proc_osc0/rpc_stats
3791
3792         local percent=0
3793         local have_ppr=false
3794         $LCTL get_param $proc_osc0/rpc_stats |
3795                 while read PPR RRPC RPCT RCUM BAR WRPC WPCT WCUM; do
3796                         # skip lines until we are at the RPC histogram data
3797                         [ "$PPR" == "pages" ] && have_ppr=true && continue
3798                         $have_ppr || continue
3799
3800                         # we only want the percent stat for < 16 pages
3801                         [[ $(echo $PPR | tr -d ':') -ge $pages ]] && break
3802
3803                         percent=$((percent + WPCT))
3804                         if [[ $percent -gt 15 ]]; then
3805                                 error "less than 16-pages write RPCs" \
3806                                       "$percent% > 15%"
3807                                 break
3808                         fi
3809                 done
3810         rm -rf $TDIR
3811 }
3812 run_test 42e "verify sub-RPC writes are not done synchronously"
3813
3814 test_43A() { # was test_43
3815         test_mkdir $DIR/$tdir
3816         cp -p /bin/ls $DIR/$tdir/$tfile
3817         $MULTIOP $DIR/$tdir/$tfile Ow_c &
3818         pid=$!
3819         # give multiop a chance to open
3820         sleep 1
3821
3822         $DIR/$tdir/$tfile && error "execute $DIR/$tdir/$tfile succeeded" || true
3823         kill -USR1 $pid
3824 }
3825 run_test 43A "execution of file opened for write should return -ETXTBSY"
3826
3827 test_43a() {
3828         test_mkdir $DIR/$tdir
3829         cp -p $(which $MULTIOP) $DIR/$tdir/multiop ||
3830                 cp -p multiop $DIR/$tdir/multiop
3831         MULTIOP_PROG=$DIR/$tdir/multiop multiop_bg_pause $TMP/$tfile.junk O_c ||
3832                 error "multiop open $TMP/$tfile.junk failed"
3833         MULTIOP_PID=$!
3834         $MULTIOP $DIR/$tdir/multiop Oc && error "expected error, got success"
3835         kill -USR1 $MULTIOP_PID || error "kill -USR1 PID $MULTIOP_PID failed"
3836         wait $MULTIOP_PID || error "wait PID $MULTIOP_PID failed"
3837 }
3838 run_test 43a "open(RDWR) of file being executed should return -ETXTBSY"
3839
3840 test_43b() {
3841         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3842         test_mkdir $DIR/$tdir
3843         cp -p $(which $MULTIOP) $DIR/$tdir/multiop ||
3844                 cp -p multiop $DIR/$tdir/multiop
3845         MULTIOP_PROG=$DIR/$tdir/multiop multiop_bg_pause $TMP/$tfile.junk O_c ||
3846                 error "multiop open $TMP/$tfile.junk failed"
3847         MULTIOP_PID=$!
3848         $TRUNCATE $DIR/$tdir/multiop 0 && error "expected error, got success"
3849         kill -USR1 $MULTIOP_PID || error "kill -USR1 PID $MULTIOP_PID failed"
3850         wait $MULTIOP_PID || error "wait PID $MULTIOP_PID failed"
3851 }
3852 run_test 43b "truncate of file being executed should return -ETXTBSY"
3853
3854 test_43c() {
3855         local testdir="$DIR/$tdir"
3856         test_mkdir $testdir
3857         cp $SHELL $testdir/
3858         ( cd $(dirname $SHELL) && md5sum $(basename $SHELL) ) |
3859                 ( cd $testdir && md5sum -c )
3860 }
3861 run_test 43c "md5sum of copy into lustre"
3862
3863 test_44A() { # was test_44
3864         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
3865         dd if=/dev/zero of=$DIR/f1 bs=4k count=1 seek=1023
3866         dd if=$DIR/f1 bs=4k count=1 > /dev/null
3867 }
3868 run_test 44A "zero length read from a sparse stripe"
3869
3870 test_44a() {
3871         local nstripe=$($LCTL lov_getconfig $DIR | grep default_stripe_count: |
3872                 awk '{ print $2 }')
3873         [ -z "$nstripe" ] && skip "can't get stripe info" && return
3874         [[ $nstripe -gt $OSTCOUNT ]] &&
3875             skip "Wrong default_stripe_count: $nstripe (OSTCOUNT: $OSTCOUNT)" &&
3876             return
3877         local stride=$($LCTL lov_getconfig $DIR | grep default_stripe_size: |
3878                 awk '{ print $2 }')
3879         if [[ $nstripe -eq 0 || $nstripe -eq -1 ]]; then
3880                 nstripe=$($LCTL lov_getconfig $DIR | grep obd_count: |
3881                         awk '{ print $2 }')
3882         fi
3883
3884         OFFSETS="0 $((stride/2)) $((stride-1))"
3885         for offset in $OFFSETS; do
3886                 for i in $(seq 0 $((nstripe-1))); do
3887                         local GLOBALOFFSETS=""
3888                         # size in Bytes
3889                         local size=$((((i + 2 * $nstripe )*$stride + $offset)))
3890                         local myfn=$DIR/d44a-$size
3891                         echo "--------writing $myfn at $size"
3892                         ll_sparseness_write $myfn $size ||
3893                                 error "ll_sparseness_write"
3894                         GLOBALOFFSETS="$GLOBALOFFSETS $size"
3895                         ll_sparseness_verify $myfn $GLOBALOFFSETS ||
3896                                 error "ll_sparseness_verify $GLOBALOFFSETS"
3897
3898                         for j in $(seq 0 $((nstripe-1))); do
3899                                 # size in Bytes
3900                                 size=$((((j + $nstripe )*$stride + $offset)))
3901                                 ll_sparseness_write $myfn $size ||
3902                                         error "ll_sparseness_write"
3903                                 GLOBALOFFSETS="$GLOBALOFFSETS $size"
3904                         done
3905                         ll_sparseness_verify $myfn $GLOBALOFFSETS ||
3906                                 error "ll_sparseness_verify $GLOBALOFFSETS"
3907                         rm -f $myfn
3908                 done
3909         done
3910 }
3911 run_test 44a "test sparse pwrite ==============================="
3912
3913 dirty_osc_total() {
3914         tot=0
3915         for d in `lctl get_param -n osc.*.cur_dirty_bytes`; do
3916                 tot=$(($tot + $d))
3917         done
3918         echo $tot
3919 }
3920 do_dirty_record() {
3921         before=`dirty_osc_total`
3922         echo executing "\"$*\""
3923         eval $*
3924         after=`dirty_osc_total`
3925         echo before $before, after $after
3926 }
3927 test_45() {
3928         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3929         f="$DIR/f45"
3930         # Obtain grants from OST if it supports it
3931         echo blah > ${f}_grant
3932         stop_writeback
3933         sync
3934         do_dirty_record "echo blah > $f"
3935         [[ $before -eq $after ]] && error "write wasn't cached"
3936         do_dirty_record "> $f"
3937         [[ $before -gt $after ]] || error "truncate didn't lower dirty count"
3938         do_dirty_record "echo blah > $f"
3939         [[ $before -eq $after ]] && error "write wasn't cached"
3940         do_dirty_record "sync"
3941         [[ $before -gt $after ]] || error "writeback didn't lower dirty count"
3942         do_dirty_record "echo blah > $f"
3943         [[ $before -eq $after ]] && error "write wasn't cached"
3944         do_dirty_record "cancel_lru_locks osc"
3945         [[ $before -gt $after ]] ||
3946                 error "lock cancellation didn't lower dirty count"
3947         start_writeback
3948 }
3949 run_test 45 "osc io page accounting ============================"
3950
3951 # in a 2 stripe file (lov.sh), page 1023 maps to page 511 in its object.  this
3952 # test tickles a bug where re-dirtying a page was failing to be mapped to the
3953 # objects offset and an assert hit when an rpc was built with 1023's mapped
3954 # offset 511 and 511's raw 511 offset. it also found general redirtying bugs.
3955 test_46() {
3956         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3957         f="$DIR/f46"
3958         stop_writeback
3959         sync
3960         dd if=/dev/zero of=$f bs=`page_size` seek=511 count=1
3961         sync
3962         dd conv=notrunc if=/dev/zero of=$f bs=`page_size` seek=1023 count=1
3963         dd conv=notrunc if=/dev/zero of=$f bs=`page_size` seek=511 count=1
3964         sync
3965         start_writeback
3966 }
3967 run_test 46 "dirtying a previously written page ================"
3968
3969 # test_47 is removed "Device nodes check" is moved to test_28
3970
3971 test_48a() { # bug 2399
3972         [ $(facet_fstype $SINGLEMDS) = "zfs" ] &&
3973         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.63) ] &&
3974                 skip "MDS prior to 2.3.63 handle ZFS dir .. incorrectly" &&
3975                 return
3976         test_mkdir $DIR/$tdir
3977         cd $DIR/$tdir
3978         mv $DIR/$tdir $DIR/$tdir.new || error "move directory failed"
3979         test_mkdir $DIR/$tdir
3980         touch foo || error "'touch foo' failed after recreating cwd"
3981         test_mkdir bar
3982         touch .foo || error "'touch .foo' failed after recreating cwd"
3983         test_mkdir .bar
3984         ls . > /dev/null || error "'ls .' failed after recreating cwd"
3985         ls .. > /dev/null || error "'ls ..' failed after removing cwd"
3986         cd . || error "'cd .' failed after recreating cwd"
3987         mkdir . && error "'mkdir .' worked after recreating cwd"
3988         rmdir . && error "'rmdir .' worked after recreating cwd"
3989         ln -s . baz || error "'ln -s .' failed after recreating cwd"
3990         cd .. || error "'cd ..' failed after recreating cwd"
3991 }
3992 run_test 48a "Access renamed working dir (should return errors)="
3993
3994 test_48b() { # bug 2399
3995         rm -rf $DIR/$tdir
3996         test_mkdir $DIR/$tdir
3997         cd $DIR/$tdir
3998         rmdir $DIR/$tdir || error "remove cwd $DIR/$tdir failed"
3999         touch foo && error "'touch foo' worked after removing cwd"
4000         mkdir foo && error "'mkdir foo' worked after removing cwd"
4001         touch .foo && error "'touch .foo' worked after removing cwd"
4002         mkdir .foo && error "'mkdir .foo' worked after removing cwd"
4003         ls . > /dev/null && error "'ls .' worked after removing cwd"
4004         ls .. > /dev/null || error "'ls ..' failed after removing cwd"
4005         mkdir . && error "'mkdir .' worked after removing cwd"
4006         rmdir . && error "'rmdir .' worked after removing cwd"
4007         ln -s . foo && error "'ln -s .' worked after removing cwd"
4008         cd .. || echo "'cd ..' failed after removing cwd `pwd`"  #bug 3517
4009 }
4010 run_test 48b "Access removed working dir (should return errors)="
4011
4012 test_48c() { # bug 2350
4013         #lctl set_param debug=-1
4014         #set -vx
4015         rm -rf $DIR/$tdir
4016         test_mkdir -p $DIR/$tdir/dir
4017         cd $DIR/$tdir/dir
4018         $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
4019         $TRACE touch foo && error "touch foo worked after removing cwd"
4020         $TRACE mkdir foo && error "'mkdir foo' worked after removing cwd"
4021         touch .foo && error "touch .foo worked after removing cwd"
4022         mkdir .foo && error "mkdir .foo worked after removing cwd"
4023         $TRACE ls . && error "'ls .' worked after removing cwd"
4024         $TRACE ls .. || error "'ls ..' failed after removing cwd"
4025         $TRACE mkdir . && error "'mkdir .' worked after removing cwd"
4026         $TRACE rmdir . && error "'rmdir .' worked after removing cwd"
4027         $TRACE ln -s . foo && error "'ln -s .' worked after removing cwd"
4028         $TRACE cd .. || echo "'cd ..' failed after removing cwd `pwd`" #bug 3415
4029 }
4030 run_test 48c "Access removed working subdir (should return errors)"
4031
4032 test_48d() { # bug 2350
4033         #lctl set_param debug=-1
4034         #set -vx
4035         rm -rf $DIR/$tdir
4036         test_mkdir -p $DIR/$tdir/dir
4037         cd $DIR/$tdir/dir
4038         $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
4039         $TRACE rmdir $DIR/$tdir || error "remove parent $DIR/$tdir failed"
4040         $TRACE touch foo && error "'touch foo' worked after removing parent"
4041         $TRACE mkdir foo && error "mkdir foo worked after removing parent"
4042         touch .foo && error "'touch .foo' worked after removing parent"
4043         mkdir .foo && error "mkdir .foo worked after removing parent"
4044         $TRACE ls . && error "'ls .' worked after removing parent"
4045         $TRACE ls .. && error "'ls ..' worked after removing parent"
4046         $TRACE mkdir . && error "'mkdir .' worked after removing parent"
4047         $TRACE rmdir . && error "'rmdir .' worked after removing parent"
4048         $TRACE ln -s . foo && error "'ln -s .' worked after removing parent"
4049         true
4050 }
4051 run_test 48d "Access removed parent subdir (should return errors)"
4052
4053 test_48e() { # bug 4134
4054         #lctl set_param debug=-1
4055         #set -vx
4056         rm -rf $DIR/$tdir
4057         test_mkdir -p $DIR/$tdir/dir
4058         cd $DIR/$tdir/dir
4059         $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
4060         $TRACE rmdir $DIR/$tdir || error "remove parent $DIR/$tdir failed"
4061         $TRACE touch $DIR/$tdir || error "'touch $DIR/$tdir' failed"
4062         $TRACE chmod +x $DIR/$tdir || error "'chmod +x $DIR/$tdir' failed"
4063         # On a buggy kernel addition of "touch foo" after cd .. will
4064         # produce kernel oops in lookup_hash_it
4065         touch ../foo && error "'cd ..' worked after recreate parent"
4066         cd $DIR
4067         $TRACE rm $DIR/$tdir || error "rm '$DIR/$tdir' failed"
4068 }
4069 run_test 48e "Access to recreated parent subdir (should return errors)"
4070
4071 test_49() { # LU-1030
4072         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4073         remote_ost_nodsh && skip "remote OST with nodsh" && return
4074         # get ost1 size - lustre-OST0000
4075         ost1_size=$(do_facet ost1 $LFS df | grep ${ost1_svc} |
4076                 awk '{ print $4 }')
4077         # write 800M at maximum
4078         [[ $ost1_size -lt 2 ]] && ost1_size=2
4079         [[ $ost1_size -gt 819200 ]] && ost1_size=819200
4080
4081         $SETSTRIPE -c 1 -i 0 $DIR/$tfile
4082         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((ost1_size >> 2)) &
4083         local dd_pid=$!
4084
4085         # change max_pages_per_rpc while writing the file
4086         local osc1_mppc=osc.$(get_osc_import_name client ost1).max_pages_per_rpc
4087         local orig_mppc=$($LCTL get_param -n $osc1_mppc)
4088         # loop until dd process exits
4089         while ps ax -opid | grep -wq $dd_pid; do
4090                 $LCTL set_param $osc1_mppc=$((RANDOM % 256 + 1))
4091                 sleep $((RANDOM % 5 + 1))
4092         done
4093         # restore original max_pages_per_rpc
4094         $LCTL set_param $osc1_mppc=$orig_mppc
4095         rm $DIR/$tfile || error "rm $DIR/$tfile failed"
4096 }
4097 run_test 49 "Change max_pages_per_rpc won't break osc extent"
4098
4099 test_50() {
4100         # bug 1485
4101         test_mkdir $DIR/$tdir
4102         cd $DIR/$tdir
4103         ls /proc/$$/cwd || error "ls /proc/$$/cwd failed"
4104 }
4105 run_test 50 "special situations: /proc symlinks  ==============="
4106
4107 test_51a() {    # was test_51
4108         # bug 1516 - create an empty entry right after ".." then split dir
4109         test_mkdir -c1 $DIR/$tdir
4110         touch $DIR/$tdir/foo
4111         $MCREATE $DIR/$tdir/bar
4112         rm $DIR/$tdir/foo
4113         createmany -m $DIR/$tdir/longfile 201
4114         FNUM=202
4115         while [[ $(ls -sd $DIR/$tdir | awk '{ print $1 }') -eq 4 ]]; do
4116                 $MCREATE $DIR/$tdir/longfile$FNUM
4117                 FNUM=$(($FNUM + 1))
4118                 echo -n "+"
4119         done
4120         echo
4121         ls -l $DIR/$tdir > /dev/null || error "ls -l $DIR/$tdir failed"
4122 }
4123 run_test 51a "special situations: split htree with empty entry =="
4124
4125 cleanup_print_lfs_df () {
4126         trap 0
4127         $LFS df
4128         $LFS df -i
4129 }
4130
4131 test_51b() {
4132         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4133         local dir=$DIR/$tdir
4134
4135         local nrdirs=$((65536 + 100))
4136
4137         # cleanup the directory
4138         rm -fr $dir
4139
4140         test_mkdir -c1 $dir
4141
4142         $LFS df
4143         $LFS df -i
4144         local mdtidx=$(printf "%04x" $($LFS getstripe -M $dir))
4145         local numfree=$(lctl get_param -n mdc.$FSNAME-MDT$mdtidx*.filesfree)
4146         [[ $numfree -lt $nrdirs ]] &&
4147                 skip "not enough free inodes ($numfree) on MDT$mdtidx" &&
4148                 return
4149
4150         # need to check free space for the directories as well
4151         local blkfree=$(lctl get_param -n mdc.$FSNAME-MDT$mdtidx*.kbytesavail)
4152         numfree=$(( blkfree / $(fs_inode_ksize) ))
4153         [[ $numfree -lt $nrdirs ]] && skip "not enough blocks ($numfree)" &&
4154                 return
4155
4156         trap cleanup_print_lfsdf EXIT
4157
4158         # create files
4159         createmany -d $dir/d $nrdirs ||
4160                 error "failed to create $nrdirs subdirs in MDT$mdtidx:$dir"
4161
4162         # really created :
4163         nrdirs=$(ls -U $dir | wc -l)
4164
4165         # unlink all but 100 subdirectories, then check it still works
4166         local left=100
4167         local delete=$((nrdirs - left))
4168
4169         $LFS df
4170         $LFS df -i
4171
4172         # for ldiskfs the nlink count should be 1, but this is OSD specific
4173         # and so this is listed for informational purposes only
4174         echo "nlink before: $(stat -c %h $dir), created before: $nrdirs"
4175         unlinkmany -d $dir/d $delete ||
4176                 error "unlink of first $delete subdirs failed"
4177
4178         echo "nlink between: $(stat -c %h $dir)"
4179         local found=$(ls -U $dir | wc -l)
4180         [ $found -ne $left ] &&
4181                 error "can't find subdirs: found only $found, expected $left"
4182
4183         unlinkmany -d $dir/d $delete $left ||
4184                 error "unlink of second $left subdirs failed"
4185         # regardless of whether the backing filesystem tracks nlink accurately
4186         # or not, the nlink count shouldn't be more than "." and ".." here
4187         local after=$(stat -c %h $dir)
4188         [[ $after -gt 2 ]] && error "nlink after: $after > 2" ||
4189                 echo "nlink after: $after"
4190
4191         cleanup_print_lfs_df
4192 }
4193 run_test 51b "exceed 64k subdirectory nlink limit on create, verify unlink"
4194
4195 test_51d() {
4196         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4197         [[ $OSTCOUNT -lt 3 ]] && skip_env "needs >= 3 OSTs" && return
4198         test_mkdir $DIR/$tdir
4199         createmany -o $DIR/$tdir/t- 1000
4200         $LFS getstripe $DIR/$tdir > $TMP/$tfile
4201         for N in $(seq 0 $((OSTCOUNT - 1))); do
4202                 OBJS[$N]=$(awk -vobjs=0 '($1 == '$N') { objs += 1 } \
4203                         END { printf("%0.0f", objs) }' $TMP/$tfile)
4204                 OBJS0[$N]=$(grep -A 1 idx $TMP/$tfile | awk -vobjs=0 \
4205                         '($1 == '$N') { objs += 1 } \
4206                         END { printf("%0.0f", objs) }')
4207                 log "OST$N has ${OBJS[$N]} objects, ${OBJS0[$N]} are index 0"
4208         done
4209         unlinkmany $DIR/$tdir/t- 1000
4210
4211         NLAST=0
4212         for N in $(seq 1 $((OSTCOUNT - 1))); do
4213                 [[ ${OBJS[$N]} -lt $((${OBJS[$NLAST]} - 20)) ]] &&
4214                         error "OST $N has less objects vs OST $NLAST" \
4215                               " (${OBJS[$N]} < ${OBJS[$NLAST]}"
4216                 [[ ${OBJS[$N]} -gt $((${OBJS[$NLAST]} + 20)) ]] &&
4217                         error "OST $N has less objects vs OST $NLAST" \
4218                               " (${OBJS[$N]} < ${OBJS[$NLAST]}"
4219
4220                 [[ ${OBJS0[$N]} -lt $((${OBJS0[$NLAST]} - 20)) ]] &&
4221                         error "OST $N has less #0 objects vs OST $NLAST" \
4222                               " (${OBJS0[$N]} < ${OBJS0[$NLAST]}"
4223                 [[ ${OBJS0[$N]} -gt $((${OBJS0[$NLAST]} + 20)) ]] &&
4224                         error "OST $N has less #0 objects vs OST $NLAST" \
4225                               " (${OBJS0[$N]} < ${OBJS0[$NLAST]}"
4226                 NLAST=$N
4227         done
4228         rm -f $TMP/$tfile
4229 }
4230 run_test 51d "check object distribution"
4231
4232 test_51e() {
4233         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
4234                 skip "ldiskfs only test"
4235                 return
4236         fi
4237
4238         test_mkdir -c1 $DIR/$tdir
4239         test_mkdir -c1 $DIR/$tdir/d0
4240
4241         touch $DIR/$tdir/d0/foo
4242         createmany -l $DIR/$tdir/d0/foo $DIR/$tdir/d0/f- 65001 &&
4243                 error "file exceed 65000 nlink limit!"
4244         unlinkmany $DIR/$tdir/d0/f- 65001
4245         return 0
4246 }
4247 run_test 51e "check file nlink limit"
4248
4249 test_51f() {
4250         test_mkdir $DIR/$tdir
4251
4252         local max=100000
4253         local ulimit_old=$(ulimit -n)
4254         local spare=20 # number of spare fd's for scripts/libraries, etc.
4255         local mdt=$(lfs getstripe -M $DIR/$tdir)
4256         local numfree=$(lfs df -i $DIR/$tdir | awk '/MDT:'$mdt'/ { print $4 }')
4257
4258         echo "MDT$mdt numfree=$numfree, max=$max"
4259         [[ $numfree -gt $max ]] && numfree=$max || numfree=$((numfree * 7 / 8))
4260         if [ $((numfree + spare)) -gt $ulimit_old ]; then
4261                 while ! ulimit -n $((numfree + spare)); do
4262                         numfree=$((numfree * 3 / 4))
4263                 done
4264                 echo "changed ulimit from $ulimit_old to $((numfree + spare))"
4265         else
4266                 echo "left ulimit at $ulimit_old"
4267         fi
4268
4269         createmany -o -k -t 120 $DIR/$tdir/f $numfree ||
4270                 error "create+open $numfree files in $DIR/$tdir failed"
4271         ulimit -n $ulimit_old
4272
4273         # if createmany exits at 120s there will be fewer than $numfree files
4274         unlinkmany $DIR/$tdir/f $numfree || true
4275 }
4276 run_test 51f "check many open files limit"
4277
4278 test_52a() {
4279         [ -f $DIR/$tdir/foo ] && chattr -a $DIR/$tdir/foo
4280         test_mkdir $DIR/$tdir
4281         touch $DIR/$tdir/foo
4282         chattr +a $DIR/$tdir/foo || error "chattr +a failed"
4283         echo bar >> $DIR/$tdir/foo || error "append bar failed"
4284         cp /etc/hosts $DIR/$tdir/foo && error "cp worked"
4285         rm -f $DIR/$tdir/foo 2>/dev/null && error "rm worked"
4286         link $DIR/$tdir/foo $DIR/$tdir/foo_link 2>/dev/null &&
4287                                         error "link worked"
4288         echo foo >> $DIR/$tdir/foo || error "append foo failed"
4289         mrename $DIR/$tdir/foo $DIR/$tdir/foo_ren && error "rename worked"
4290         lsattr $DIR/$tdir/foo | egrep -q "^-+a[-e]+ $DIR/$tdir/foo" ||
4291                                                      error "lsattr"
4292         chattr -a $DIR/$tdir/foo || error "chattr -a failed"
4293         cp -r $DIR/$tdir $TMP/
4294         rm -fr $DIR/$tdir $TMP/$tdir || error "cleanup rm failed"
4295 }
4296 run_test 52a "append-only flag test (should return errors)"
4297
4298 test_52b() {
4299         [ -f $DIR/$tdir/foo ] && chattr -i $DIR/$tdir/foo
4300         test_mkdir $DIR/$tdir
4301         touch $DIR/$tdir/foo
4302         chattr +i $DIR/$tdir/foo || error "chattr +i failed"
4303         cat test > $DIR/$tdir/foo && error "cat test worked"
4304         cp /etc/hosts $DIR/$tdir/foo && error "cp worked"
4305         rm -f $DIR/$tdir/foo 2>/dev/null && error "rm worked"
4306         link $DIR/$tdir/foo $DIR/$tdir/foo_link 2>/dev/null &&
4307                                         error "link worked"
4308         echo foo >> $DIR/$tdir/foo && error "echo worked"
4309         mrename $DIR/$tdir/foo $DIR/$tdir/foo_ren && error "rename worked"
4310         [ -f $DIR/$tdir/foo ] || error "$tdir/foo is not a file"
4311         [ -f $DIR/$tdir/foo_ren ] && error "$tdir/foo_ren is not a file"
4312         lsattr $DIR/$tdir/foo | egrep -q "^-+i[-e]+ $DIR/$tdir/foo" ||
4313                                                         error "lsattr"
4314         chattr -i $DIR/$tdir/foo || error "chattr failed"
4315
4316         rm -fr $DIR/$tdir || error "unable to remove $DIR/$tdir"
4317 }
4318 run_test 52b "immutable flag test (should return errors) ======="
4319
4320 test_53() {
4321         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4322         remote_mds_nodsh && skip "remote MDS with nodsh" && return
4323         remote_ost_nodsh && skip "remote OST with nodsh" && return
4324
4325         local param
4326         local param_seq
4327         local ostname
4328         local mds_last
4329         local mds_last_seq
4330         local ost_last
4331         local ost_last_seq
4332         local ost_last_id
4333         local ostnum
4334         local node
4335         local found=false
4336         local support_last_seq=true
4337
4338         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.60) ]] ||
4339                 support_last_seq=false
4340
4341         # only test MDT0000
4342         local mdtosc=$(get_mdtosc_proc_path $SINGLEMDS)
4343         local value
4344         for value in $(do_facet $SINGLEMDS \
4345                        $LCTL get_param osc.$mdtosc.prealloc_last_id) ; do
4346                 param=$(echo ${value[0]} | cut -d "=" -f1)
4347                 ostname=$(echo $param | cut -d "." -f2 | cut -d - -f 1-2)
4348
4349                 if $support_last_seq; then
4350                         param_seq=$(echo $param |
4351                                 sed -e s/prealloc_last_id/prealloc_last_seq/g)
4352                         mds_last_seq=$(do_facet $SINGLEMDS \
4353                                        $LCTL get_param -n $param_seq)
4354                 fi
4355                 mds_last=$(do_facet $SINGLEMDS $LCTL get_param -n $param)
4356
4357                 ostnum=$(index_from_ostuuid ${ostname}_UUID)
4358                 node=$(facet_active_host ost$((ostnum+1)))
4359                 param="obdfilter.$ostname.last_id"
4360                 for ost_last in $(do_node $node $LCTL get_param -n $param) ; do
4361                         echo "$ostname.last_id=$ost_last; MDS.last_id=$mds_last"
4362                         ost_last_id=$ost_last
4363
4364                         if $support_last_seq; then
4365                                 ost_last_id=$(echo $ost_last |
4366                                               awk -F':' '{print $2}' |
4367                                               sed -e "s/^0x//g")
4368                                 ost_last_seq=$(echo $ost_last |
4369                                                awk -F':' '{print $1}')
4370                                 [[ $ost_last_seq = $mds_last_seq ]] || continue
4371                         fi
4372
4373                         if [[ $ost_last_id != $mds_last ]]; then
4374                                 error "$ost_last_id != $mds_last"
4375                         else
4376                                 found=true
4377                                 break
4378                         fi
4379                 done
4380         done
4381         $found || error "can not match last_seq/last_id for $mdtosc"
4382         return 0
4383 }
4384 run_test 53 "verify that MDS and OSTs agree on pre-creation ===="
4385
4386 test_54a() {
4387         perl -MSocket -e ';' || { skip "no Socket perl module installed" && return; }
4388
4389         $SOCKETSERVER $DIR/socket ||
4390                 error "$SOCKETSERVER $DIR/socket failed: $?"
4391         $SOCKETCLIENT $DIR/socket ||
4392                 error "$SOCKETCLIENT $DIR/socket failed: $?"
4393         $MUNLINK $DIR/socket || error "$MUNLINK $DIR/socket failed: $?"
4394 }
4395 run_test 54a "unix domain socket test =========================="
4396
4397 test_54b() {
4398         f="$DIR/f54b"
4399         mknod $f c 1 3
4400         chmod 0666 $f
4401         dd if=/dev/zero of=$f bs=$(page_size) count=1
4402 }
4403 run_test 54b "char device works in lustre ======================"
4404
4405 find_loop_dev() {
4406         [ -b /dev/loop/0 ] && LOOPBASE=/dev/loop/
4407         [ -b /dev/loop0 ] && LOOPBASE=/dev/loop
4408         [ -z "$LOOPBASE" ] && echo "/dev/loop/0 and /dev/loop0 gone?" && return
4409
4410         for i in $(seq 3 7); do
4411                 losetup $LOOPBASE$i > /dev/null 2>&1 && continue
4412                 LOOPDEV=$LOOPBASE$i
4413                 LOOPNUM=$i
4414                 break
4415         done
4416 }
4417
4418 cleanup_54c() {
4419         local rc=0
4420         loopdev="$DIR/loop54c"
4421
4422         trap 0
4423         $UMOUNT $DIR/$tdir || rc=$?
4424         losetup -d $loopdev || true
4425         losetup -d $LOOPDEV || true
4426         rm -rf $loopdev $DIR/$tfile $DIR/$tdir
4427         return $rc
4428 }
4429
4430 test_54c() {
4431         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4432         loopdev="$DIR/loop54c"
4433
4434         find_loop_dev
4435         [ -z "$LOOPNUM" ] && echo "couldn't find empty loop device" && return
4436         trap cleanup_54c EXIT
4437         mknod $loopdev b 7 $LOOPNUM
4438         echo "make a loop file system with $DIR/$tfile on $loopdev ($LOOPNUM)."
4439         dd if=/dev/zero of=$DIR/$tfile bs=$(get_page_size client) seek=1024 count=1 > /dev/null
4440         losetup $loopdev $DIR/$tfile ||
4441                 error "can't set up $loopdev for $DIR/$tfile"
4442         mkfs.ext2 $loopdev || error "mke2fs on $loopdev"
4443         test_mkdir $DIR/$tdir
4444         mount -t ext2 $loopdev $DIR/$tdir ||
4445                 error "error mounting $loopdev on $DIR/$tdir"
4446         dd if=/dev/zero of=$DIR/$tdir/tmp bs=$(get_page_size client) count=30 ||
4447                 error "dd write"
4448         df $DIR/$tdir
4449         dd if=$DIR/$tdir/tmp of=/dev/zero bs=$(get_page_size client) count=30 ||
4450                 error "dd read"
4451         cleanup_54c
4452 }
4453 run_test 54c "block device works in lustre ====================="
4454
4455 test_54d() {
4456         f="$DIR/f54d"
4457         string="aaaaaa"
4458         mknod $f p
4459         [ "$string" = $(echo $string > $f | cat $f) ] || error "$f != $string"
4460 }
4461 run_test 54d "fifo device works in lustre ======================"
4462
4463 test_54e() {
4464         f="$DIR/f54e"
4465         string="aaaaaa"
4466         cp -aL /dev/console $f
4467         echo $string > $f || error "echo $string to $f failed"
4468 }
4469 run_test 54e "console/tty device works in lustre ======================"
4470
4471 #The test_55 used to be iopen test and it was removed by bz#24037.
4472 #run_test 55 "check iopen_connect_dentry() ======================"
4473
4474 test_56a() {    # was test_56
4475         rm -rf $DIR/$tdir
4476         $SETSTRIPE -d $DIR
4477         test_mkdir -p $DIR/$tdir/dir
4478         NUMFILES=3
4479         NUMFILESx2=$(($NUMFILES * 2))
4480         for i in $(seq 1 $NUMFILES); do
4481                 touch $DIR/$tdir/file$i
4482                 touch $DIR/$tdir/dir/file$i
4483         done
4484
4485         # test lfs getstripe with --recursive
4486         FILENUM=$($GETSTRIPE --recursive $DIR/$tdir | grep -c obdidx)
4487         [[ $FILENUM -eq $NUMFILESx2 ]] ||
4488                 error "$GETSTRIPE --recursive: found $FILENUM, not $NUMFILESx2"
4489         FILENUM=$($GETSTRIPE $DIR/$tdir | grep -c obdidx)
4490         [[ $FILENUM -eq $NUMFILES ]] ||
4491                 error "$GETSTRIPE $DIR/$tdir: found $FILENUM, not $NUMFILES"
4492         echo "$GETSTRIPE --recursive passed."
4493
4494         # test lfs getstripe with file instead of dir
4495         FILENUM=$($GETSTRIPE $DIR/$tdir/file1 | grep -c obdidx)
4496         [[ $FILENUM -eq 1 ]] ||
4497                 error "$GETSTRIPE $DIR/$tdir/file1: found $FILENUM, not 1"
4498         echo "$GETSTRIPE file1 passed."
4499
4500         #test lfs getstripe with --verbose
4501         [[ $($GETSTRIPE --verbose $DIR/$tdir |
4502                 grep -c lmm_magic) -eq $NUMFILES ]] ||
4503                 error "$GETSTRIPE --verbose $DIR/$tdir: want $NUMFILES"
4504         [[ $($GETSTRIPE $DIR/$tdir | grep -c lmm_magic) -eq 0 ]] ||
4505                 error "$GETSTRIPE $DIR/$tdir: showed lmm_magic"
4506
4507         #test lfs getstripe with -v prints lmm_fid
4508         [[ $($GETSTRIPE -v $DIR/$tdir | grep -c lmm_fid) -eq $NUMFILES ]] ||
4509                 error "$GETSTRIPE -v $DIR/$tdir: want $NUMFILES lmm_fid: lines"
4510         [[ $($GETSTRIPE $DIR/$tdir | grep -c lmm_fid) -eq 0 ]] ||
4511                 error "$GETSTRIPE $DIR/$tdir: showed lmm_fid"
4512         echo "$GETSTRIPE --verbose passed."
4513
4514         #check for FID information
4515         local fid1=$($GETSTRIPE --fid $DIR/$tdir/file1)
4516         local fid2=$($GETSTRIPE --verbose $DIR/$tdir/file1 |
4517                        awk '/lmm_fid: / { print $2 }')
4518         local fid3=$($LFS path2fid $DIR/$tdir/file1)
4519         [ "$fid1" != "$fid2" ] &&
4520                 error "getstripe --fid $fid1 != getstripe --verbose $fid2"
4521         [ "$fid1" != "$fid3" ] &&
4522                 error "getstripe --fid $fid1 != lfs path2fid $fid3"
4523         echo "$GETSTRIPE --fid passed."
4524
4525         #test lfs getstripe with --obd
4526         $GETSTRIPE --obd wrong_uuid $DIR/$tdir 2>&1 |
4527                 grep -q "unknown obduuid" ||
4528                 error "$GETSTRIPE --obd wrong_uuid should return error message"
4529
4530         [[ $OSTCOUNT -lt 2 ]] &&
4531                 skip_env "skipping other $GETSTRIPE --obd test" && return
4532
4533         OSTIDX=1
4534         OBDUUID=$(ostuuid_from_index $OSTIDX)
4535         FILENUM=$($GETSTRIPE -ir $DIR/$tdir | grep "^$OSTIDX\$" | wc -l)
4536         FOUND=$($GETSTRIPE -r --obd $OBDUUID $DIR/$tdir | grep obdidx | wc -l)
4537         [[ $FOUND -eq $FILENUM ]] ||
4538                 error "$GETSTRIPE --obd wrong: found $FOUND, expected $FILENUM"
4539         [[ $($GETSTRIPE -r -v --obd $OBDUUID $DIR/$tdir |
4540                 sed '/^[         ]*'${OSTIDX}'[  ]/d' |
4541                 sed -n '/^[      ]*[0-9][0-9]*[  ]/p' | wc -l) -eq 0 ]] ||
4542                 error "$GETSTRIPE --obd: should not show file on other obd"
4543         echo "$GETSTRIPE --obd passed"
4544 }
4545 run_test 56a "check $GETSTRIPE"
4546
4547 test_56b() {
4548         test_mkdir $DIR/$tdir
4549         NUMDIRS=3
4550         for i in $(seq 1 $NUMDIRS); do
4551                 test_mkdir $DIR/$tdir/dir$i
4552         done
4553
4554         # test lfs getdirstripe default mode is non-recursion, which is
4555         # different from lfs getstripe
4556         dircnt=$($LFS getdirstripe $DIR/$tdir | grep -c lmv_stripe_count)
4557         [[ $dircnt -eq 1 ]] ||
4558                 error "$LFS getdirstripe: found $dircnt, not 1"
4559         dircnt=$($LFS getdirstripe --recursive $DIR/$tdir |
4560                 grep -c lmv_stripe_count)
4561         [[ $dircnt -eq $((NUMDIRS + 1)) ]] ||
4562                 error "$LFS getdirstripe --recursive: found $dircnt, \
4563                         not $((NUMDIRS + 1))"
4564 }
4565 run_test 56b "check $LFS getdirstripe"
4566
4567 test_56c() {
4568         local ost_idx=0
4569         local ost_name=$(ostname_from_index $ost_idx)
4570
4571         local old_status=$(ost_dev_status $ost_idx)
4572         [[ -z "$old_status" ]] ||
4573                 { skip_env "OST $ost_name is in $old_status status"; return 0; }
4574
4575         do_facet ost1 $LCTL set_param -n obdfilter.$ost_name.degraded=1
4576         sleep_maxage
4577
4578         local new_status=$(ost_dev_status $ost_idx)
4579         [[ "$new_status" = "D" ]] ||
4580                 error "OST $ost_name is in status of '$new_status', not 'D'"
4581
4582         do_facet ost1 $LCTL set_param -n obdfilter.$ost_name.degraded=0
4583         sleep_maxage
4584
4585         new_status=$(ost_dev_status $ost_idx)
4586         [[ -z "$new_status" ]] ||
4587                 error "OST $ost_name is in status of '$new_status', not ''"
4588 }
4589 run_test 56c "check 'lfs df' showing device status"
4590
4591 NUMFILES=3
4592 NUMDIRS=3
4593 setup_56() {
4594         local LOCAL_NUMFILES="$1"
4595         local LOCAL_NUMDIRS="$2"
4596         local MKDIR_PARAMS="$3"
4597         local DIR_STRIPE_PARAMS="$4"
4598
4599         if [ ! -d "$TDIR" ] ; then
4600                 test_mkdir -p $DIR_STRIPE_PARAMS $TDIR
4601                 [ "$MKDIR_PARAMS" ] && $SETSTRIPE $MKDIR_PARAMS $TDIR
4602                 for i in `seq 1 $LOCAL_NUMFILES` ; do
4603                         touch $TDIR/file$i
4604                 done
4605                 for i in `seq 1 $LOCAL_NUMDIRS` ; do
4606                         test_mkdir $DIR_STRIPE_PARAMS $TDIR/dir$i
4607                         for j in `seq 1 $LOCAL_NUMFILES` ; do
4608                                 touch $TDIR/dir$i/file$j
4609                         done
4610                 done
4611         fi
4612 }
4613
4614 setup_56_special() {
4615         LOCAL_NUMFILES=$1
4616         LOCAL_NUMDIRS=$2
4617         setup_56 $1 $2
4618         if [ ! -e "$TDIR/loop1b" ] ; then
4619                 for i in `seq 1 $LOCAL_NUMFILES` ; do
4620                         mknod $TDIR/loop${i}b b 7 $i
4621                         mknod $TDIR/null${i}c c 1 3
4622                         ln -s $TDIR/file1 $TDIR/link${i}l
4623                 done
4624                 for i in `seq 1 $LOCAL_NUMDIRS` ; do
4625                         mknod $TDIR/dir$i/loop${i}b b 7 $i
4626                         mknod $TDIR/dir$i/null${i}c c 1 3
4627                         ln -s $TDIR/dir$i/file1 $TDIR/dir$i/link${i}l
4628                 done
4629         fi
4630 }
4631
4632 test_56g() {
4633         $SETSTRIPE -d $DIR
4634
4635         TDIR=$DIR/${tdir}g
4636         setup_56 $NUMFILES $NUMDIRS
4637
4638         EXPECTED=$(($NUMDIRS + 2))
4639         # test lfs find with -name
4640         for i in $(seq 1 $NUMFILES) ; do
4641                 NUMS=$($LFIND -name "*$i" $TDIR | wc -l)
4642                 [ $NUMS -eq $EXPECTED ] ||
4643                         error "lfs find -name \"*$i\" $TDIR wrong: "\
4644                               "found $NUMS, expected $EXPECTED"
4645         done
4646 }
4647 run_test 56g "check lfs find -name ============================="
4648
4649 test_56h() {
4650         $SETSTRIPE -d $DIR
4651
4652         TDIR=$DIR/${tdir}g
4653         setup_56 $NUMFILES $NUMDIRS
4654
4655         EXPECTED=$(((NUMDIRS + 1) * (NUMFILES - 1) + NUMFILES))
4656         # test lfs find with ! -name
4657         for i in $(seq 1 $NUMFILES) ; do
4658                 NUMS=$($LFIND ! -name "*$i" $TDIR | wc -l)
4659                 [ $NUMS -eq $EXPECTED ] ||
4660                         error "lfs find ! -name \"*$i\" $TDIR wrong: "\
4661                               "found $NUMS, expected $EXPECTED"
4662         done
4663 }
4664 run_test 56h "check lfs find ! -name"
4665
4666 test_56i() {
4667         tdir=${tdir}i
4668         test_mkdir $DIR/$tdir
4669         UUID=$(ostuuid_from_index 0 $DIR/$tdir)
4670         CMD="$LFIND -ost $UUID $DIR/$tdir"
4671         OUT=$($CMD)
4672         [ -z "$OUT" ] || error "'$CMD' returned directory '$OUT'"
4673 }
4674 run_test 56i "check 'lfs find -ost UUID' skips directories"
4675
4676 test_56j() {
4677         TDIR=$DIR/${tdir}g
4678         setup_56_special $NUMFILES $NUMDIRS
4679
4680         EXPECTED=$((NUMDIRS + 1))
4681         CMD="$LFIND -type d $TDIR"
4682         NUMS=$($CMD | wc -l)
4683         [ $NUMS -eq $EXPECTED ] ||
4684                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4685 }
4686 run_test 56j "check lfs find -type d ============================="
4687
4688 test_56k() {
4689         TDIR=$DIR/${tdir}g
4690         setup_56_special $NUMFILES $NUMDIRS
4691
4692         EXPECTED=$(((NUMDIRS + 1) * NUMFILES))
4693         CMD="$LFIND -type f $TDIR"
4694         NUMS=$($CMD | wc -l)
4695         [ $NUMS -eq $EXPECTED ] ||
4696                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4697 }
4698 run_test 56k "check lfs find -type f ============================="
4699
4700 test_56l() {
4701         TDIR=$DIR/${tdir}g
4702         setup_56_special $NUMFILES $NUMDIRS
4703
4704         EXPECTED=$((NUMDIRS + NUMFILES))
4705         CMD="$LFIND -type b $TDIR"
4706         NUMS=$($CMD | wc -l)
4707         [ $NUMS -eq $EXPECTED ] ||
4708                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4709 }
4710 run_test 56l "check lfs find -type b ============================="
4711
4712 test_56m() {
4713         TDIR=$DIR/${tdir}g
4714         setup_56_special $NUMFILES $NUMDIRS
4715
4716         EXPECTED=$((NUMDIRS + NUMFILES))
4717         CMD="$LFIND -type c $TDIR"
4718         NUMS=$($CMD | wc -l)
4719         [ $NUMS -eq $EXPECTED ] ||
4720                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4721 }
4722 run_test 56m "check lfs find -type c ============================="
4723
4724 test_56n() {
4725         TDIR=$DIR/${tdir}g
4726         setup_56_special $NUMFILES $NUMDIRS
4727
4728         EXPECTED=$((NUMDIRS + NUMFILES))
4729         CMD="$LFIND -type l $TDIR"
4730         NUMS=$($CMD | wc -l)
4731         [ $NUMS -eq $EXPECTED ] ||
4732                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4733 }
4734 run_test 56n "check lfs find -type l ============================="
4735
4736 test_56o() {
4737         TDIR=$DIR/${tdir}o
4738         setup_56 $NUMFILES $NUMDIRS
4739         utime $TDIR/file1 > /dev/null || error "utime (1)"
4740         utime $TDIR/file2 > /dev/null || error "utime (2)"
4741         utime $TDIR/dir1 > /dev/null || error "utime (3)"
4742         utime $TDIR/dir2 > /dev/null || error "utime (4)"
4743         utime $TDIR/dir1/file1 > /dev/null || error "utime (5)"
4744         dd if=/dev/zero count=1 >> $TDIR/dir1/file1 && sync
4745
4746         EXPECTED=4
4747         NUMS=`$LFIND -mtime +0 $TDIR | wc -l`
4748         [ $NUMS -eq $EXPECTED ] || \
4749                 error "lfs find -mtime +0 $TDIR wrong: found $NUMS, expected $EXPECTED"
4750
4751         EXPECTED=12
4752         CMD="$LFIND -mtime 0 $TDIR"
4753         NUMS=$($CMD | wc -l)
4754         [ $NUMS -eq $EXPECTED ] ||
4755                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4756 }
4757 run_test 56o "check lfs find -mtime for old files =========================="
4758
4759 test_56p() {
4760         [ $RUNAS_ID -eq $UID ] &&
4761                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
4762
4763         TDIR=$DIR/${tdir}p
4764         setup_56 $NUMFILES $NUMDIRS
4765
4766         chown $RUNAS_ID $TDIR/file* || error "chown $DIR/${tdir}g/file$i failed"
4767         EXPECTED=$NUMFILES
4768         CMD="$LFIND -uid $RUNAS_ID $TDIR"
4769         NUMS=$($CMD | wc -l)
4770         [ $NUMS -eq $EXPECTED ] || \
4771                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4772
4773         EXPECTED=$(((NUMFILES + 1) * NUMDIRS + 1))
4774         CMD="$LFIND ! -uid $RUNAS_ID $TDIR"
4775         NUMS=$($CMD | wc -l)
4776         [ $NUMS -eq $EXPECTED ] || \
4777                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4778 }
4779 run_test 56p "check lfs find -uid and ! -uid ==============================="
4780
4781 test_56q() {
4782         [ $RUNAS_ID -eq $UID ] &&
4783                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
4784
4785         TDIR=$DIR/${tdir}q
4786         setup_56 $NUMFILES $NUMDIRS
4787
4788         chgrp $RUNAS_GID $TDIR/file* || error "chown $TDIR/file$i failed"
4789
4790         EXPECTED=$NUMFILES
4791         CMD="$LFIND -gid $RUNAS_GID $TDIR"
4792         NUMS=$($CMD | wc -l)
4793         [ $NUMS -eq $EXPECTED ] ||
4794                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4795
4796         EXPECTED=$(( ($NUMFILES+1) * $NUMDIRS + 1))
4797         CMD="$LFIND ! -gid $RUNAS_GID $TDIR"
4798         NUMS=$($CMD | wc -l)
4799         [ $NUMS -eq $EXPECTED ] ||
4800                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4801 }
4802 run_test 56q "check lfs find -gid and ! -gid ==============================="
4803
4804 test_56r() {
4805         TDIR=$DIR/${tdir}r
4806         setup_56 $NUMFILES $NUMDIRS
4807
4808         EXPECTED=12
4809         CMD="$LFIND -size 0 -type f $TDIR"
4810         NUMS=$($CMD | wc -l)
4811         [ $NUMS -eq $EXPECTED ] ||
4812                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4813         EXPECTED=0
4814         CMD="$LFIND ! -size 0 -type f $TDIR"
4815         NUMS=$($CMD | wc -l)
4816         [ $NUMS -eq $EXPECTED ] ||
4817                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4818         echo "test" > $TDIR/$tfile
4819         echo "test2" > $TDIR/$tfile.2 && sync
4820         EXPECTED=1
4821         CMD="$LFIND -size 5 -type f $TDIR"
4822         NUMS=$($CMD | wc -l)
4823         [ $NUMS -eq $EXPECTED ] ||
4824                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4825         EXPECTED=1
4826         CMD="$LFIND -size +5 -type f $TDIR"
4827         NUMS=$($CMD | wc -l)
4828         [ $NUMS -eq $EXPECTED ] ||
4829                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4830         EXPECTED=2
4831         CMD="$LFIND -size +0 -type f $TDIR"
4832         NUMS=$($CMD | wc -l)
4833         [ $NUMS -eq $EXPECTED ] ||
4834                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4835         EXPECTED=2
4836         CMD="$LFIND ! -size -5 -type f $TDIR"
4837         NUMS=$($CMD | wc -l)
4838         [ $NUMS -eq $EXPECTED ] ||
4839                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4840         EXPECTED=12
4841         CMD="$LFIND -size -5 -type f $TDIR"
4842         NUMS=$($CMD | wc -l)
4843         [ $NUMS -eq $EXPECTED ] ||
4844                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4845 }
4846 run_test 56r "check lfs find -size works =========================="
4847
4848 test_56s() { # LU-611
4849         TDIR=$DIR/${tdir}s
4850
4851         #LU-9369
4852         setup_56 0 $NUMDIRS
4853         for i in $(seq 1 $NUMDIRS); do
4854                 $SETSTRIPE -c $((OSTCOUNT + 1)) $TDIR/dir$i/$tfile
4855         done
4856         EXPECTED=$NUMDIRS
4857         CMD="$LFIND -c $OSTCOUNT $TDIR"
4858         NUMS=$($CMD | wc -l)
4859         [ $NUMS -eq $EXPECTED ] || {
4860                 $GETSTRIPE -R $TDIR
4861                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4862         }
4863         rm -rf $TDIR
4864
4865         setup_56 $NUMFILES $NUMDIRS "-c $OSTCOUNT"
4866         if [[ $OSTCOUNT -gt 1 ]]; then
4867                 $SETSTRIPE -c 1 $TDIR/$tfile.{0,1,2,3}
4868                 ONESTRIPE=4
4869                 EXTRA=4
4870         else
4871                 ONESTRIPE=$(((NUMDIRS + 1) * NUMFILES))
4872                 EXTRA=0
4873         fi
4874
4875         EXPECTED=$(((NUMDIRS + 1) * NUMFILES))
4876         CMD="$LFIND -stripe-count $OSTCOUNT -type f $TDIR"
4877         NUMS=$($CMD | wc -l)
4878         [ $NUMS -eq $EXPECTED ] || {
4879                 $GETSTRIPE -R $TDIR
4880                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4881         }
4882
4883         EXPECTED=$(((NUMDIRS + 1) * NUMFILES + EXTRA))
4884         CMD="$LFIND -stripe-count +0 -type f $TDIR"
4885         NUMS=$($CMD | wc -l)
4886         [ $NUMS -eq $EXPECTED ] || {
4887                 $GETSTRIPE -R $TDIR
4888                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4889         }
4890
4891         EXPECTED=$ONESTRIPE
4892         CMD="$LFIND -stripe-count 1 -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         CMD="$LFIND -stripe-count -2 -type f $TDIR"
4900         NUMS=$($CMD | wc -l)
4901         [ $NUMS -eq $EXPECTED ] || {
4902                 $GETSTRIPE -R $TDIR
4903                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4904         }
4905
4906         EXPECTED=0
4907         CMD="$LFIND -stripe-count $((OSTCOUNT + 1)) -type f $TDIR"
4908         NUMS=$($CMD | wc -l)
4909         [ $NUMS -eq $EXPECTED ] || {
4910                 $GETSTRIPE -R $TDIR
4911                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4912         }
4913 }
4914 run_test 56s "check lfs find -stripe-count works"
4915
4916 test_56t() { # LU-611
4917         TDIR=$DIR/${tdir}t
4918
4919         #LU-9369
4920         setup_56 0 $NUMDIRS
4921         for i in $(seq 1 $NUMDIRS); do
4922                 $SETSTRIPE -S 4M $TDIR/dir$i/$tfile
4923         done
4924         EXPECTED=$NUMDIRS
4925         CMD="$LFIND -S 4M $TDIR"
4926         NUMS=$($CMD | wc -l)
4927         [ $NUMS -eq $EXPECTED ] || {
4928                 $GETSTRIPE -R $TDIR
4929                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4930         }
4931         rm -rf $TDIR
4932
4933         setup_56 $NUMFILES $NUMDIRS "--stripe-size 512k"
4934
4935         $SETSTRIPE -S 256k $TDIR/$tfile.{0,1,2,3}
4936
4937         EXPECTED=$(((NUMDIRS + 1) * NUMFILES))
4938         CMD="$LFIND -stripe-size 512k -type f $TDIR"
4939         NUMS=$($CMD | wc -l)
4940         [ $NUMS -eq $EXPECTED ] ||
4941                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4942
4943         CMD="$LFIND -stripe-size +320k -type f $TDIR"
4944         NUMS=$($CMD | wc -l)
4945         [ $NUMS -eq $EXPECTED ] ||
4946                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4947
4948         EXPECTED=$(((NUMDIRS + 1) * NUMFILES + 4))
4949         CMD="$LFIND -stripe-size +200k -type f $TDIR"
4950         NUMS=$($CMD | wc -l)
4951         [ $NUMS -eq $EXPECTED ] ||
4952                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4953
4954         CMD="$LFIND -stripe-size -640k -type f $TDIR"
4955         NUMS=$($CMD | wc -l)
4956         [ $NUMS -eq $EXPECTED ] ||
4957                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4958
4959         EXPECTED=4
4960         CMD="$LFIND -stripe-size 256k -type f $TDIR"
4961         NUMS=$($CMD | wc -l)
4962         [ $NUMS -eq $EXPECTED ] ||
4963                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4964
4965         CMD="$LFIND -stripe-size -320k -type f $TDIR"
4966         NUMS=$($CMD | wc -l)
4967         [ $NUMS -eq $EXPECTED ] ||
4968                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4969
4970         EXPECTED=0
4971         CMD="$LFIND -stripe-size 1024k -type f $TDIR"
4972         NUMS=$($CMD | wc -l)
4973         [ $NUMS -eq $EXPECTED ] ||
4974                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4975 }
4976 run_test 56t "check lfs find -stripe-size works"
4977
4978 test_56u() { # LU-611
4979         TDIR=$DIR/${tdir}u
4980         setup_56 $NUMFILES $NUMDIRS "-i 0"
4981
4982         if [[ $OSTCOUNT -gt 1 ]]; then
4983                 $SETSTRIPE -i 1 $TDIR/$tfile.{0,1,2,3}
4984                 ONESTRIPE=4
4985         else
4986                 ONESTRIPE=0
4987         fi
4988
4989         EXPECTED=$(((NUMDIRS + 1) * NUMFILES))
4990         CMD="$LFIND -stripe-index 0 -type f $TDIR"
4991         NUMS=$($CMD | wc -l)
4992         [ $NUMS -eq $EXPECTED ] ||
4993                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4994
4995         EXPECTED=$ONESTRIPE
4996         CMD="$LFIND -stripe-index 1 -type f $TDIR"
4997         NUMS=$($CMD | wc -l)
4998         [ $NUMS -eq $EXPECTED ] ||
4999                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
5000
5001         CMD="$LFIND ! -stripe-index 0 -type f $TDIR"
5002         NUMS=$($CMD | wc -l)
5003         [ $NUMS -eq $EXPECTED ] ||
5004                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
5005
5006         EXPECTED=0
5007         # This should produce an error and not return any files
5008         CMD="$LFIND -stripe-index $OSTCOUNT -type f $TDIR"
5009         NUMS=$($CMD 2>/dev/null | wc -l)
5010         [ $NUMS -eq $EXPECTED ] ||
5011                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
5012
5013         if [[ $OSTCOUNT -gt 1 ]]; then
5014                 EXPECTED=$(((NUMDIRS + 1) * NUMFILES + ONESTRIPE))
5015                 CMD="$LFIND -stripe-index 0,1 -type f $TDIR"
5016                 NUMS=$($CMD | wc -l)
5017                 [ $NUMS -eq $EXPECTED ] ||
5018                         error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
5019         fi
5020 }
5021 run_test 56u "check lfs find -stripe-index works"
5022
5023 test_56v() {
5024     local MDT_IDX=0
5025
5026     TDIR=$DIR/${tdir}v
5027     rm -rf $TDIR
5028     setup_56 $NUMFILES $NUMDIRS
5029
5030     UUID=$(mdtuuid_from_index $MDT_IDX $TDIR)
5031     [ -z "$UUID" ] && error "mdtuuid_from_index cannot find MDT index $MDT_IDX"
5032
5033     for file in $($LFIND -mdt $UUID $TDIR); do
5034         file_mdt_idx=$($GETSTRIPE -M $file)
5035         [ $file_mdt_idx -eq $MDT_IDX ] ||
5036             error "'lfind -mdt $UUID' != 'getstripe -M' ($file_mdt_idx)"
5037     done
5038 }
5039 run_test 56v "check 'lfs find -mdt match with lfs getstripe -M' ======="
5040
5041 test_56w() {
5042         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
5043         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5044         TDIR=$DIR/${tdir}w
5045
5046         rm -rf $TDIR || error "remove $TDIR failed"
5047         setup_56 $NUMFILES $NUMDIRS "-c $OSTCOUNT" "-c1"
5048
5049         local stripe_size
5050         stripe_size=$($GETSTRIPE -S -d $TDIR) ||
5051                 error "$GETSTRIPE -S -d $TDIR failed"
5052         stripe_size=${stripe_size%% *}
5053
5054         local file_size=$((stripe_size * OSTCOUNT))
5055         local file_num=$((NUMDIRS * NUMFILES + NUMFILES))
5056         local required_space=$((file_num * file_size))
5057
5058         local free_space=$($LCTL get_param -n lov.$FSNAME-clilov-*.kbytesavail |
5059                            head -n1)
5060         [[ $free_space -le $((required_space / 1024)) ]] &&
5061                 skip_env "need $required_space bytes, have $free_space KB" &&
5062                 return
5063
5064         local dd_bs=65536
5065         local dd_count=$((file_size / dd_bs))
5066
5067         # write data into the files
5068         local i
5069         local j
5070         local file
5071         for i in $(seq 1 $NUMFILES); do
5072                 file=$TDIR/file$i
5073                 yes | dd bs=$dd_bs count=$dd_count of=$file &>/dev/null ||
5074                         error "write data into $file failed"
5075         done
5076         for i in $(seq 1 $NUMDIRS); do
5077                 for j in $(seq 1 $NUMFILES); do
5078                         file=$TDIR/dir$i/file$j
5079                         yes|dd bs=$dd_bs count=$dd_count of=$file &>/dev/null ||
5080                                 error "write data into $file failed"
5081                 done
5082         done
5083
5084         # $LFS_MIGRATE will fail if hard link migration is unsupported
5085         if [[ $(lustre_version_code mds1) -gt $(version_code 2.5.55) ]]; then
5086                 createmany -l$TDIR/dir1/file1 $TDIR/dir1/link 200 ||
5087                         error "creating links to $TDIR/dir1/file1 failed"
5088         fi
5089
5090         local expected=-1
5091         [[ $OSTCOUNT -gt 1 ]] && expected=$((OSTCOUNT - 1))
5092
5093         # lfs_migrate file
5094         local cmd="$LFS_MIGRATE -y -c $expected $TDIR/file1"
5095         echo "$cmd"
5096         eval $cmd || error "$cmd failed"
5097
5098         check_stripe_count $TDIR/file1 $expected
5099
5100         if [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.90) ];
5101         then
5102                 # lfs_migrate file onto OST 0 if it is on OST 1, or onto
5103                 # OST 1 if it is on OST 0. This file is small enough to
5104                 # be on only one stripe.
5105                 file=$TDIR/migr_1_ost
5106                 dd bs=$dd_bs count=1 if=/dev/urandom of=$file >/dev/null 2>&1 ||
5107                         error "write data into $file failed"
5108                 local obdidx=$($LFS getstripe -i $file)
5109                 local oldmd5=$(md5sum $file)
5110                 local newobdidx=0
5111                 [[ $obdidx -eq 0 ]] && newobdidx=1
5112                 cmd="$LFS migrate -i $newobdidx $file"
5113                 echo $cmd
5114                 eval $cmd || error "$cmd failed"
5115                 local realobdix=$($LFS getstripe -i $file)
5116                 local newmd5=$(md5sum $file)
5117                 [[ $newobdidx -ne $realobdix ]] &&
5118                         error "new OST is different (was=$obdidx, wanted=$newobdidx, got=$realobdix)"
5119                 [[ "$oldmd5" != "$newmd5" ]] &&
5120                         error "md5sum differ: $oldmd5, $newmd5"
5121         fi
5122
5123     # lfs_migrate dir
5124     cmd="$LFS_MIGRATE -y -c $expected $TDIR/dir1"
5125     echo "$cmd"
5126     eval $cmd || error "$cmd failed"
5127
5128     for j in $(seq 1 $NUMFILES); do
5129         check_stripe_count $TDIR/dir1/file$j $expected
5130     done
5131
5132     # lfs_migrate works with lfs find
5133     cmd="$LFIND -stripe_count $OSTCOUNT -type f $TDIR |
5134          $LFS_MIGRATE -y -c $expected"
5135     echo "$cmd"
5136     eval $cmd || error "$cmd failed"
5137
5138     for i in $(seq 2 $NUMFILES); do
5139         check_stripe_count $TDIR/file$i $expected
5140     done
5141     for i in $(seq 2 $NUMDIRS); do
5142         for j in $(seq 1 $NUMFILES); do
5143             check_stripe_count $TDIR/dir$i/file$j $expected
5144         done
5145     done
5146 }
5147 run_test 56w "check lfs_migrate -c stripe_count works"
5148
5149 test_56x() {
5150         check_swap_layouts_support && return 0
5151         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
5152
5153         local dir0=$DIR/$tdir/$testnum
5154         test_mkdir -p $dir0
5155
5156         local ref1=/etc/passwd
5157         local file1=$dir0/file1
5158
5159         $SETSTRIPE -c 2 $file1
5160         cp $ref1 $file1
5161         $LFS migrate -c 1 $file1 || error "migrate failed rc = $?"
5162         stripe=$($GETSTRIPE -c $file1)
5163         [[ $stripe == 1 ]] || error "stripe of $file1 is $stripe != 1"
5164         cmp $file1 $ref1 || error "content mismatch $file1 differs from $ref1"
5165
5166         # clean up
5167         rm -f $file1
5168 }
5169 run_test 56x "lfs migration support"
5170
5171 test_56xa() {
5172         check_swap_layouts_support && return 0
5173         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
5174
5175         local dir0=$DIR/$tdir/$testnum
5176         test_mkdir -p $dir0
5177
5178         local ref1=/etc/passwd
5179         local file1=$dir0/file1
5180
5181         $SETSTRIPE -c 2 $file1
5182         cp $ref1 $file1
5183         $LFS migrate --block -c 1 $file1 || error "migrate failed rc = $?"
5184         local stripe=$($GETSTRIPE -c $file1)
5185         [[ $stripe == 1 ]] || error "stripe of $file1 is $stripe != 1"
5186         cmp $file1 $ref1 || error "content mismatch $file1 differs from $ref1"
5187
5188         # clean up
5189         rm -f $file1
5190 }
5191 run_test 56xa "lfs migration --block support"
5192
5193 test_56y() {
5194         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.53) ] &&
5195                 skip "No HSM $(lustre_build_version $SINGLEMDS) MDS < 2.4.53" &&
5196                 return
5197
5198         local res=""
5199         local dir0=$DIR/$tdir/$testnum
5200         test_mkdir -p $dir0
5201         local f1=$dir0/file1
5202         local f2=$dir0/file2
5203
5204         touch $f1 || error "creating std file $f1"
5205         $MULTIOP $f2 H2c || error "creating released file $f2"
5206
5207         # a directory can be raid0, so ask only for files
5208         res=$($LFIND $dir0 -L raid0 -type f | wc -l)
5209         [[ $res == 2 ]] || error "search raid0: found $res files != 2"
5210
5211         res=$($LFIND $dir0 \! -L raid0 -type f | wc -l)
5212         [[ $res == 0 ]] || error "search !raid0: found $res files != 0"
5213
5214         # only files can be released, so no need to force file search
5215         res=$($LFIND $dir0 -L released)
5216         [[ $res == $f2 ]] || error "search released: found $res != $f2"
5217
5218         res=$($LFIND $dir0 \! -L released)
5219         [[ $res == $f1 ]] || error "search !released: found $res != $f1"
5220
5221 }
5222 run_test 56y "lfs find -L raid0|released"
5223
5224 test_56z() { # LU-4824
5225         # This checks to make sure 'lfs find' continues after errors
5226         # There are two classes of errors that should be caught:
5227         # - If multiple paths are provided, all should be searched even if one
5228         #   errors out
5229         # - If errors are encountered during the search, it should not terminate
5230         #   early
5231         local i
5232         test_mkdir $DIR/$tdir
5233         for i in d{0..9}; do
5234                 test_mkdir $DIR/$tdir/$i
5235         done
5236         touch $DIR/$tdir/d{0..9}/$tfile
5237         $LFS find $DIR/non_existent_dir $DIR/$tdir &&
5238                 error "$LFS find did not return an error"
5239         # Make a directory unsearchable. This should NOT be the last entry in
5240         # directory order.  Arbitrarily pick the 6th entry
5241         chmod 700 $($LFS find $DIR/$tdir -type d | sed '6!d')
5242         local count=$($RUNAS $LFS find $DIR/non_existent $DIR/$tdir | wc -l)
5243         # The user should be able to see 10 directories and 9 files
5244         [ $count == 19 ] || error "$LFS find did not continue after error"
5245 }
5246 run_test 56z "lfs find should continue after an error"
5247
5248 test_56aa() { # LU-5937
5249         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
5250
5251         mkdir $DIR/$tdir
5252         $LFS setdirstripe -c$MDSCOUNT $DIR/$tdir/striped_dir
5253
5254         createmany -o $DIR/$tdir/striped_dir/${tfile}- 1024
5255         local dirs=$(lfs find --size +8k $DIR/$tdir/)
5256
5257         [ -n "$dirs" ] || error "lfs find --size wrong under striped dir"
5258 }
5259 run_test 56aa "lfs find --size under striped dir"
5260
5261 test_57a() {
5262         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5263         # note test will not do anything if MDS is not local
5264         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
5265                 skip "ldiskfs only test"
5266                 return
5267         fi
5268
5269         remote_mds_nodsh && skip "remote MDS with nodsh" && return
5270         local MNTDEV="osd*.*MDT*.mntdev"
5271         DEV=$(do_facet $SINGLEMDS lctl get_param -n $MNTDEV)
5272         [ -z "$DEV" ] && error "can't access $MNTDEV"
5273         for DEV in $(do_facet $SINGLEMDS lctl get_param -n $MNTDEV); do
5274                 do_facet $SINGLEMDS $DUMPE2FS -h $DEV > $TMP/t57a.dump ||
5275                         error "can't access $DEV"
5276                 DEVISIZE=$(awk '/Inode size:/ { print $3 }' $TMP/t57a.dump)
5277                 [[ $DEVISIZE -gt 128 ]] || error "inode size $DEVISIZE"
5278                 rm $TMP/t57a.dump
5279         done
5280 }
5281 run_test 57a "verify MDS filesystem created with large inodes =="
5282
5283 test_57b() {
5284         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5285         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
5286                 skip "ldiskfs only test"
5287                 return
5288         fi
5289
5290         remote_mds_nodsh && skip "remote MDS with nodsh" && return
5291         local dir=$DIR/$tdir
5292
5293         local FILECOUNT=100
5294         local FILE1=$dir/f1
5295         local FILEN=$dir/f$FILECOUNT
5296
5297         rm -rf $dir || error "removing $dir"
5298         test_mkdir -c1 $dir
5299         local mdtidx=$($LFS getstripe -M $dir)
5300         local mdtname=MDT$(printf %04x $mdtidx)
5301         local facet=mds$((mdtidx + 1))
5302
5303         echo "mcreating $FILECOUNT files"
5304         createmany -m $dir/f 1 $FILECOUNT || \
5305                 error "creating files in $dir"
5306
5307         # verify that files do not have EAs yet
5308         $GETSTRIPE $FILE1 2>&1 | grep -q "no stripe" || error "$FILE1 has an EA"
5309         $GETSTRIPE $FILEN 2>&1 | grep -q "no stripe" || error "$FILEN has an EA"
5310
5311         sync
5312         sleep 1
5313         df $dir  #make sure we get new statfs data
5314         local MDSFREE=$(do_facet $facet \
5315                 lctl get_param -n osd*.*$mdtname.kbytesfree)
5316         local MDCFREE=$(lctl get_param -n mdc.*$mdtname-mdc-*.kbytesfree)
5317         echo "opening files to create objects/EAs"
5318         local FILE
5319         for FILE in `seq -f $dir/f%g 1 $FILECOUNT`; do
5320                 $OPENFILE -f O_RDWR $FILE > /dev/null 2>&1 || error "opening $FILE"
5321         done
5322
5323         # verify that files have EAs now
5324         $GETSTRIPE $FILE1 | grep -q "obdidx" || error "$FILE1 missing EA"
5325         $GETSTRIPE $FILEN | grep -q "obdidx" || error "$FILEN missing EA"
5326
5327         sleep 1  #make sure we get new statfs data
5328         df $dir
5329         local MDSFREE2=$(do_facet $facet \
5330                 lctl get_param -n osd*.*$mdtname.kbytesfree)
5331         local MDCFREE2=$(lctl get_param -n mdc.*$mdtname-mdc-*.kbytesfree)
5332         if [[ $MDCFREE2 -lt $((MDCFREE - 16)) ]]; then
5333                 if [ "$MDSFREE" != "$MDSFREE2" ]; then
5334                         error "MDC before $MDCFREE != after $MDCFREE2"
5335                 else
5336                         echo "MDC before $MDCFREE != after $MDCFREE2"
5337                         echo "unable to confirm if MDS has large inodes"
5338                 fi
5339         fi
5340         rm -rf $dir
5341 }
5342 run_test 57b "default LOV EAs are stored inside large inodes ==="
5343
5344 test_58() {
5345         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5346         [ -z "$(which wiretest 2>/dev/null)" ] &&
5347                         skip_env "could not find wiretest" && return
5348         wiretest
5349 }
5350 run_test 58 "verify cross-platform wire constants =============="
5351
5352 test_59() {
5353         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5354         echo "touch 130 files"
5355         createmany -o $DIR/f59- 130
5356         echo "rm 130 files"
5357         unlinkmany $DIR/f59- 130
5358         sync
5359         # wait for commitment of removal
5360         wait_delete_completed
5361 }
5362 run_test 59 "verify cancellation of llog records async ========="
5363
5364 TEST60_HEAD="test_60 run $RANDOM"
5365 test_60a() {
5366         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5367         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
5368         do_facet mgs "! which run-llog.sh &> /dev/null" &&
5369                 do_facet mgs "! ls run-llog.sh &> /dev/null" &&
5370                         skip_env "missing subtest run-llog.sh" && return
5371
5372         log "$TEST60_HEAD - from kernel mode"
5373         do_facet mgs "$LCTL set_param debug=warning; $LCTL dk > /dev/null"
5374         do_facet mgs "sh run-llog.sh" || error "run-llog.sh failed"
5375         do_facet mgs $LCTL dk > $TMP/$tfile
5376
5377         # LU-6388: test llog_reader
5378         local llog_reader=$(do_facet mgs "which llog_reader 2> /dev/null")
5379         llog_reader=${llog_reader:-$LUSTRE/utils/llog_reader}
5380         [ -z $(do_facet mgs ls -d $llog_reader 2> /dev/null) ] &&
5381                         skip_env "missing llog_reader" && return
5382         local fstype=$(facet_fstype mgs)
5383         [ $fstype != ldiskfs -a $fstype != zfs ] &&
5384                 skip_env "Only for ldiskfs or zfs type mgs" && return
5385
5386         local mntpt=$(facet_mntpt mgs)
5387         local mgsdev=$(mgsdevname 1)
5388         local fid_list
5389         local fid
5390         local rec_list
5391         local rec
5392         local rec_type
5393         local obj_file
5394         local path
5395         local seq
5396         local oid
5397         local pass=true
5398
5399         #get fid and record list
5400         fid_list=($(awk '/9_sub.*record/ { print $NF }' /$TMP/$tfile |
5401                 tail -n 4))
5402         rec_list=($(awk '/9_sub.*record/ { print $((NF-3)) }' /$TMP/$tfile |
5403                 tail -n 4))
5404         #remount mgs as ldiskfs or zfs type
5405         stop mgs || error "stop mgs failed"
5406         mount_fstype mgs || error "remount mgs failed"
5407         for ((i = 0; i < ${#fid_list[@]}; i++)); do
5408                 fid=${fid_list[i]}
5409                 rec=${rec_list[i]}
5410                 seq=$(echo $fid | awk -F ':' '{ print $1 }' | sed -e "s/^0x//g")
5411                 oid=$(echo $fid | awk -F ':' '{ print $2 }' | sed -e "s/^0x//g")
5412                 oid=$((16#$oid))
5413
5414                 case $fstype in
5415                         ldiskfs )
5416                                 obj_file=$mntpt/O/$seq/d$((oid%32))/$oid ;;
5417                         zfs )
5418                                 obj_file=$mntpt/oi.$(($((16#$seq))&127))/$fid ;;
5419                 esac
5420                 echo "obj_file is $obj_file"
5421                 do_facet mgs $llog_reader $obj_file
5422
5423                 rec_type=$(do_facet mgs $llog_reader $obj_file | grep "type=" |
5424                         awk '{ print $3 }' | sed -e "s/^type=//g")
5425                 if [ $rec_type != $rec ]; then
5426                         echo "FAILED test_60a wrong record type $rec_type," \
5427                               "should be $rec"
5428                         pass=false
5429                         break
5430                 fi
5431
5432                 #check obj path if record type is LLOG_LOGID_MAGIC
5433                 if [ "$rec" == "1064553b" ]; then
5434                         path=$(do_facet mgs $llog_reader $obj_file |
5435                                 grep "path=" | awk '{ print $NF }' |
5436                                 sed -e "s/^path=//g")
5437                         if [ $obj_file != $mntpt/$path ]; then
5438                                 echo "FAILED test_60a wrong obj path" \
5439                                       "$montpt/$path, should be $obj_file"
5440                                 pass=false
5441                                 break
5442                         fi
5443                 fi
5444         done
5445         rm -f $TMP/$tfile
5446         #restart mgs before "error", otherwise it will block the next test
5447         stop mgs || error "stop mgs failed"
5448         start mgs $(mgsdevname) $MGS_MOUNT_OPTS || error "start mgs failed"
5449         $pass || error "test failed, see FAILED test_60a messages for specifics"
5450 }
5451 run_test 60a "llog_test run from kernel module and test llog_reader"
5452
5453 test_60aa() {
5454         # test old logid format
5455         if [ $(lustre_version_code mgs) -le $(version_code 3.1.53) ]; then
5456                 do_facet mgs $LCTL dl | grep MGS
5457                 do_facet mgs "$LCTL --device %MGS llog_print \\\\\\\$$FSNAME-client" ||
5458                         error "old llog_print failed"
5459         fi
5460
5461         # test new logid format
5462         if [ $(lustre_version_code mgs) -ge $(version_code 2.9.53) ]; then
5463                 do_facet mgs "$LCTL --device MGS llog_print $FSNAME-client" ||
5464                         error "new llog_print failed"
5465         fi
5466 }
5467 run_test 60aa "llog_print works with FIDs and simple names"
5468
5469 test_60b() { # bug 6411
5470         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5471         dmesg > $DIR/$tfile
5472         LLOG_COUNT=$(dmesg | awk "/$TEST60_HEAD/ { marker = 1; from_marker = 0; }
5473                                 /llog.test/ {
5474                                         if (marker)
5475                                                 from_marker++
5476                                         from_begin++
5477                                 }
5478                                 END {
5479                                         if (marker)
5480                                                 print from_marker
5481                                         else
5482                                                 print from_begin
5483                                 }")
5484         [[ $LLOG_COUNT -gt 100 ]] &&
5485                 error "CDEBUG_LIMIT not limiting messages ($LLOG_COUNT)" || true
5486 }
5487 run_test 60b "limit repeated messages from CERROR/CWARN ========"
5488
5489 test_60c() {
5490         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5491         echo "create 5000 files"
5492         createmany -o $DIR/f60c- 5000
5493 #define OBD_FAIL_MDS_LLOG_CREATE_FAILED  0x137
5494         lctl set_param fail_loc=0x80000137
5495         unlinkmany $DIR/f60c- 5000
5496         lctl set_param fail_loc=0
5497 }
5498 run_test 60c "unlink file when mds full"
5499
5500 test_60d() {
5501         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5502         SAVEPRINTK=$(lctl get_param -n printk)
5503
5504         # verify "lctl mark" is even working"
5505         MESSAGE="test message ID $RANDOM $$"
5506         $LCTL mark "$MESSAGE" || error "$LCTL mark failed"
5507         dmesg | grep -q "$MESSAGE" || error "didn't find debug marker in log"
5508
5509         lctl set_param printk=0 || error "set lnet.printk failed"
5510         lctl get_param -n printk | grep emerg || error "lnet.printk dropped emerg"
5511         MESSAGE="new test message ID $RANDOM $$"
5512         # Assume here that libcfs_debug_mark_buffer() uses D_WARNING
5513         $LCTL mark "$MESSAGE" || error "$LCTL mark failed"
5514         dmesg | grep -q "$MESSAGE" && error "D_WARNING wasn't masked" || true
5515
5516         lctl set_param -n printk="$SAVEPRINTK"
5517 }
5518 run_test 60d "test printk console message masking"
5519
5520 test_60e() {
5521         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5522         remote_mds_nodsh && skip "remote MDS with nodsh" && return
5523         touch $DIR/$tfile
5524 #define OBD_FAIL_MDS_LLOG_CREATE_FAILED2  0x15b
5525         do_facet mds1 lctl set_param fail_loc=0x15b
5526         rm $DIR/$tfile
5527 }
5528 run_test 60e "no space while new llog is being created"
5529
5530 test_61() {
5531         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5532         f="$DIR/f61"
5533         dd if=/dev/zero of=$f bs=$(page_size) count=1 || error "dd $f failed"
5534         cancel_lru_locks osc
5535         $MULTIOP $f OSMWUc || error "$MULTIOP $f failed"
5536         sync
5537 }
5538 run_test 61 "mmap() writes don't make sync hang ================"
5539
5540 # bug 2330 - insufficient obd_match error checking causes LBUG
5541 test_62() {
5542         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5543         f="$DIR/f62"
5544         echo foo > $f
5545         cancel_lru_locks osc
5546         lctl set_param fail_loc=0x405
5547         cat $f && error "cat succeeded, expect -EIO"
5548         lctl set_param fail_loc=0
5549 }
5550 # This test is now irrelevant (as of bug 10718 inclusion), we no longer
5551 # match every page all of the time.
5552 #run_test 62 "verify obd_match failure doesn't LBUG (should -EIO)"
5553
5554 # bug 2319 - oig_wait() interrupted causes crash because of invalid waitq.
5555 # Though this test is irrelevant anymore, it helped to reveal some
5556 # other grant bugs (LU-4482), let's keep it.
5557 test_63a() {   # was test_63
5558         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5559         MAX_DIRTY_MB=`lctl get_param -n osc.*.max_dirty_mb | head -n 1`
5560         for i in `seq 10` ; do
5561                 dd if=/dev/zero of=$DIR/f63 bs=8k &
5562                 sleep 5
5563                 kill $!
5564                 sleep 1
5565         done
5566
5567         rm -f $DIR/f63 || true
5568 }
5569 run_test 63a "Verify oig_wait interruption does not crash ======="
5570
5571 # bug 2248 - async write errors didn't return to application on sync
5572 # bug 3677 - async write errors left page locked
5573 test_63b() {
5574         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5575         debugsave
5576         lctl set_param debug=-1
5577
5578         # ensure we have a grant to do async writes
5579         dd if=/dev/zero of=$DIR/$tfile bs=4k count=1
5580         rm $DIR/$tfile
5581
5582         sync    # sync lest earlier test intercept the fail_loc
5583
5584         #define OBD_FAIL_OSC_BRW_PREP_REQ        0x406
5585         lctl set_param fail_loc=0x80000406
5586         $MULTIOP $DIR/$tfile Owy && \
5587                 error "sync didn't return ENOMEM"
5588         sync; sleep 2; sync     # do a real sync this time to flush page
5589         lctl get_param -n llite.*.dump_page_cache | grep locked && \
5590                 error "locked page left in cache after async error" || true
5591         debugrestore
5592 }
5593 run_test 63b "async write errors should be returned to fsync ==="
5594
5595 test_64a () {
5596         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5597         df $DIR
5598         lctl get_param -n osc.*[oO][sS][cC][_-]*.cur* | grep "[0-9]"
5599 }
5600 run_test 64a "verify filter grant calculations (in kernel) ====="
5601
5602 test_64b () {
5603         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5604         sh oos.sh $MOUNT || error "oos.sh failed: $?"
5605 }
5606 run_test 64b "check out-of-space detection on client"
5607
5608 test_64c() {
5609         $LCTL set_param osc.*OST0000-osc-[^mM]*.cur_grant_bytes=0
5610 }
5611 run_test 64c "verify grant shrink"
5612
5613 # bug 1414 - set/get directories' stripe info
5614 test_65a() {
5615         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5616         test_mkdir $DIR/$tdir
5617         touch $DIR/$tdir/f1
5618         $LVERIFY $DIR/$tdir $DIR/$tdir/f1 || error "lverify failed"
5619 }
5620 run_test 65a "directory with no stripe info"
5621
5622 test_65b() {
5623         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5624         test_mkdir $DIR/$tdir
5625         local STRIPESIZE=$($GETSTRIPE -S $DIR/$tdir)
5626
5627         $SETSTRIPE -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
5628                                                 error "setstripe"
5629         touch $DIR/$tdir/f2
5630         $LVERIFY $DIR/$tdir $DIR/$tdir/f2 || error "lverify failed"
5631 }
5632 run_test 65b "directory setstripe -S stripe_size*2 -i 0 -c 1"
5633
5634 test_65c() {
5635         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5636         [ $OSTCOUNT -lt 2 ] && skip "need at least 2 OSTs" && return
5637         test_mkdir $DIR/$tdir
5638         local stripesize=$($GETSTRIPE -S $DIR/$tdir)
5639
5640         $LFS setstripe -S $((stripesize * 4)) -i 1 \
5641                 -c $((OSTCOUNT - 1)) $DIR/$tdir || error "setstripe"
5642         touch $DIR/$tdir/f3
5643         $LVERIFY $DIR/$tdir $DIR/$tdir/f3 || error "lverify failed"
5644 }
5645 run_test 65c "directory setstripe -S stripe_size*4 -i 1 -c $((OSTCOUNT-1))"
5646
5647 test_65d() {
5648         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5649         test_mkdir $DIR/$tdir
5650         local STRIPECOUNT=$($GETSTRIPE -c $DIR/$tdir)
5651         local STRIPESIZE=$($GETSTRIPE -S $DIR/$tdir)
5652
5653         if [[ $STRIPECOUNT -le 0 ]]; then
5654                 sc=1
5655         elif [[ $STRIPECOUNT -gt 2000 ]]; then
5656 #LOV_MAX_STRIPE_COUNT is 2000
5657                 [[ $OSTCOUNT -gt 2000 ]] && sc=2000 || sc=$(($OSTCOUNT - 1))
5658         else
5659                 sc=$(($STRIPECOUNT - 1))
5660         fi
5661         $SETSTRIPE -S $STRIPESIZE -c $sc $DIR/$tdir || error "setstripe"
5662         touch $DIR/$tdir/f4 $DIR/$tdir/f5
5663         $LVERIFY $DIR/$tdir $DIR/$tdir/f4 $DIR/$tdir/f5 ||
5664                 error "lverify failed"
5665 }
5666 run_test 65d "directory setstripe -S stripe_size -c stripe_count"
5667
5668 test_65e() {
5669         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5670         test_mkdir $DIR/$tdir
5671
5672         $SETSTRIPE $DIR/$tdir || error "setstripe"
5673         $GETSTRIPE -v $DIR/$tdir | grep "Default" ||
5674                                         error "no stripe info failed"
5675         touch $DIR/$tdir/f6
5676         $LVERIFY $DIR/$tdir $DIR/$tdir/f6 || error "lverify failed"
5677 }
5678 run_test 65e "directory setstripe defaults"
5679
5680 test_65f() {
5681         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5682         test_mkdir $DIR/${tdir}f
5683         $RUNAS $SETSTRIPE $DIR/${tdir}f && error "setstripe succeeded" || true
5684 }
5685 run_test 65f "dir setstripe permission (should return error) ==="
5686
5687 test_65g() {
5688         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5689         test_mkdir $DIR/$tdir
5690         local STRIPESIZE=$($GETSTRIPE -S $DIR/$tdir)
5691
5692         $LFS setstripe -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
5693                 error "setstripe -S failed"
5694         $LFS setstripe -d $DIR/$tdir || error "setstripe -d failed"
5695         $LFS getstripe -v $DIR/$tdir | grep "Default" ||
5696                 error "delete default stripe failed"
5697 }
5698 run_test 65g "directory setstripe -d"
5699
5700 test_65h() {
5701         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5702         test_mkdir $DIR/$tdir
5703         local STRIPESIZE=$($GETSTRIPE -S $DIR/$tdir)
5704
5705         $LFS setstripe -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
5706                 error "setstripe -S failed"
5707         test_mkdir $DIR/$tdir/dd1
5708         [ $($LFS getstripe -c $DIR/$tdir) = $($GETSTRIPE -c $DIR/$tdir/dd1) ] ||
5709                 error "stripe info inherit failed"
5710 }
5711 run_test 65h "directory stripe info inherit ===================="
5712
5713 test_65i() { # bug6367
5714         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5715         $SETSTRIPE -S 65536 -c -1 $MOUNT
5716 }
5717 run_test 65i "set non-default striping on root directory (bug 6367)="
5718
5719 test_65ia() { # bug12836
5720         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5721         $GETSTRIPE $MOUNT || error "getstripe $MOUNT failed"
5722 }
5723 run_test 65ia "getstripe on -1 default directory striping"
5724
5725 test_65ib() { # bug12836
5726         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5727         $GETSTRIPE -v $MOUNT || error "getstripe -v $MOUNT failed"
5728 }
5729 run_test 65ib "getstripe -v on -1 default directory striping"
5730
5731 test_65ic() { # bug12836
5732         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5733         $LFS find -mtime -1 $MOUNT > /dev/null || error "find $MOUNT failed"
5734 }
5735 run_test 65ic "new find on -1 default directory striping"
5736
5737 test_65j() { # bug6367
5738         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5739         sync; sleep 1
5740         # if we aren't already remounting for each test, do so for this test
5741         if [ "$CLEANUP" = ":" -a "$I_MOUNTED" = "yes" ]; then
5742                 cleanup || error "failed to unmount"
5743                 setup
5744         fi
5745         $SETSTRIPE -d $MOUNT || error "setstripe failed"
5746 }
5747 run_test 65j "set default striping on root directory (bug 6367)="
5748
5749 test_65k() { # bug11679
5750         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5751         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
5752         remote_mds_nodsh && skip "remote MDS with nodsh" && return
5753
5754         local disable_precreate=true
5755         [ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.8.54) ] &&
5756                 disable_precreate=false
5757
5758         echo "Check OST status: "
5759         local MDS_OSCS=$(do_facet $SINGLEMDS lctl dl |
5760                 awk '/[oO][sS][cC].*md[ts]/ { print $4 }')
5761
5762         for OSC in $MDS_OSCS; do
5763                 echo $OSC "is active"
5764                 do_facet $SINGLEMDS lctl --device %$OSC activate
5765         done
5766
5767         for INACTIVE_OSC in $MDS_OSCS; do
5768                 local ost=$(osc_to_ost $INACTIVE_OSC)
5769                 local ostnum=$(do_facet $SINGLEMDS lctl get_param -n \
5770                                lov.*md*.target_obd |
5771                                awk -F: /$ost/'{ print $1 }' | head -n 1)
5772
5773                 mkdir -p $DIR/$tdir
5774                 $SETSTRIPE -i $ostnum -c 1 $DIR/$tdir
5775                 createmany -o $DIR/$tdir/$tfile.$ostnum. 1000
5776
5777                 echo "Deactivate: " $INACTIVE_OSC
5778                 do_facet $SINGLEMDS lctl --device %$INACTIVE_OSC deactivate
5779
5780                 local count=$(do_facet $SINGLEMDS "lctl get_param -n \
5781                               osp.$ost*MDT0000.create_count")
5782                 local max_count=$(do_facet $SINGLEMDS "lctl get_param -n \
5783                                   osp.$ost*MDT0000.max_create_count")
5784                 $disable_precreate &&
5785                         do_facet $SINGLEMDS "lctl set_param -n \
5786                                 osp.$ost*MDT0000.max_create_count=0"
5787
5788                 for idx in $(seq 0 $((OSTCOUNT - 1))); do
5789                         [ -f $DIR/$tdir/$idx ] && continue
5790                         echo "$SETSTRIPE -i $idx -c 1 $DIR/$tdir/$idx"
5791                         $SETSTRIPE -i $idx -c 1 $DIR/$tdir/$idx ||
5792                                 error "setstripe $idx should succeed"
5793                         rm -f $DIR/$tdir/$idx || error "rm $idx failed"
5794                 done
5795                 unlinkmany $DIR/$tdir/$tfile.$ostnum. 1000
5796                 rmdir $DIR/$tdir
5797
5798                 do_facet $SINGLEMDS "lctl set_param -n \
5799                         osp.$ost*MDT0000.max_create_count=$max_count"
5800                 do_facet $SINGLEMDS "lctl set_param -n \
5801                         osp.$ost*MDT0000.create_count=$count"
5802                 do_facet $SINGLEMDS lctl --device  %$INACTIVE_OSC activate
5803                 echo $INACTIVE_OSC "is Activate"
5804
5805                 wait_osc_import_state mds ost$ostnum FULL
5806         done
5807 }
5808 run_test 65k "validate manual striping works properly with deactivated OSCs"
5809
5810 test_65l() { # bug 12836
5811         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5812         test_mkdir -p $DIR/$tdir/test_dir
5813         $SETSTRIPE -c -1 $DIR/$tdir/test_dir
5814         $LFS find -mtime -1 $DIR/$tdir >/dev/null
5815 }
5816 run_test 65l "lfs find on -1 stripe dir ========================"
5817
5818 test_65m() {
5819         $RUNAS $SETSTRIPE -c 2 $MOUNT && error "setstripe should fail"
5820         true
5821 }
5822 run_test 65m "normal user can't set filesystem default stripe"
5823
5824 # bug 2543 - update blocks count on client
5825 test_66() {
5826         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5827         COUNT=${COUNT:-8}
5828         dd if=/dev/zero of=$DIR/f66 bs=1k count=$COUNT
5829         sync; sync_all_data; sync; sync_all_data
5830         cancel_lru_locks osc
5831         BLOCKS=`ls -s $DIR/f66 | awk '{ print $1 }'`
5832         [ $BLOCKS -ge $COUNT ] || error "$DIR/f66 blocks $BLOCKS < $COUNT"
5833 }
5834 run_test 66 "update inode blocks count on client ==============="
5835
5836 meminfo() {
5837         awk '($1 == "'$1':") { print $2 }' /proc/meminfo
5838 }
5839
5840 swap_used() {
5841         swapon -s | awk '($1 == "'$1'") { print $4 }'
5842 }
5843
5844 # bug5265, obdfilter oa2dentry return -ENOENT
5845 # #define OBD_FAIL_SRV_ENOENT 0x217
5846 test_69() {
5847         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5848         remote_ost_nodsh && skip "remote OST with nodsh" && return
5849
5850         f="$DIR/$tfile"
5851         $SETSTRIPE -c 1 -i 0 $f
5852
5853         $DIRECTIO write ${f}.2 0 1 || error "directio write error"
5854
5855         do_facet ost1 lctl set_param fail_loc=0x217
5856         $TRUNCATE $f 1 # vmtruncate() will ignore truncate() error.
5857         $DIRECTIO write $f 0 2 && error "write succeeded, expect -ENOENT"
5858
5859         do_facet ost1 lctl set_param fail_loc=0
5860         $DIRECTIO write $f 0 2 || error "write error"
5861
5862         cancel_lru_locks osc
5863         $DIRECTIO read $f 0 1 || error "read error"
5864
5865         do_facet ost1 lctl set_param fail_loc=0x217
5866         $DIRECTIO read $f 1 1 && error "read succeeded, expect -ENOENT"
5867
5868         do_facet ost1 lctl set_param fail_loc=0
5869         rm -f $f
5870 }
5871 run_test 69 "verify oa2dentry return -ENOENT doesn't LBUG ======"
5872
5873 test_71() {
5874         test_mkdir $DIR/$tdir
5875         $LFS setdirstripe -D -c$MDSCOUNT $DIR/$tdir
5876         sh rundbench -C -D $DIR/$tdir 2 || error "dbench failed!"
5877 }
5878 run_test 71 "Running dbench on lustre (don't segment fault) ===="
5879
5880 test_72a() { # bug 5695 - Test that on 2.6 remove_suid works properly
5881         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5882         [ "$RUNAS_ID" = "$UID" ] &&
5883                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
5884
5885         # Check that testing environment is properly set up. Skip if not
5886         FAIL_ON_ERROR=false check_runas_id_ret $RUNAS_ID $RUNAS_GID $RUNAS || {
5887                 skip_env "User $RUNAS_ID does not exist - skipping"
5888                 return 0
5889         }
5890         touch $DIR/$tfile
5891         chmod 777 $DIR/$tfile
5892         chmod ug+s $DIR/$tfile
5893         $RUNAS dd if=/dev/zero of=$DIR/$tfile bs=512 count=1 ||
5894                 error "$RUNAS dd $DIR/$tfile failed"
5895         # See if we are still setuid/sgid
5896         test -u $DIR/$tfile -o -g $DIR/$tfile &&
5897                 error "S/gid is not dropped on write"
5898         # Now test that MDS is updated too
5899         cancel_lru_locks mdc
5900         test -u $DIR/$tfile -o -g $DIR/$tfile &&
5901                 error "S/gid is not dropped on MDS"
5902         rm -f $DIR/$tfile
5903 }
5904 run_test 72a "Test that remove suid works properly (bug5695) ===="
5905
5906 test_72b() { # bug 24226 -- keep mode setting when size is not changing
5907         local perm
5908
5909         [ "$RUNAS_ID" = "$UID" ] && \
5910                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
5911         [ "$RUNAS_ID" -eq 0 ] && \
5912                 skip_env "RUNAS_ID = 0 -- skipping" && return
5913
5914         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5915         # Check that testing environment is properly set up. Skip if not
5916         FAIL_ON_ERROR=false check_runas_id_ret $RUNAS_ID $RUNAS_ID $RUNAS || {
5917                 skip_env "User $RUNAS_ID does not exist - skipping"
5918                 return 0
5919         }
5920         touch $DIR/${tfile}-f{g,u}
5921         test_mkdir $DIR/${tfile}-dg
5922         test_mkdir $DIR/${tfile}-du
5923         chmod 770 $DIR/${tfile}-{f,d}{g,u}
5924         chmod g+s $DIR/${tfile}-{f,d}g
5925         chmod u+s $DIR/${tfile}-{f,d}u
5926         for perm in 777 2777 4777; do
5927                 $RUNAS chmod $perm $DIR/${tfile}-fg && error "S/gid file allowed improper chmod to $perm"
5928                 $RUNAS chmod $perm $DIR/${tfile}-fu && error "S/uid file allowed improper chmod to $perm"
5929                 $RUNAS chmod $perm $DIR/${tfile}-dg && error "S/gid dir allowed improper chmod to $perm"
5930                 $RUNAS chmod $perm $DIR/${tfile}-du && error "S/uid dir allowed improper chmod to $perm"
5931         done
5932         true
5933 }
5934 run_test 72b "Test that we keep mode setting if without file data changed (bug 24226)"
5935
5936 # bug 3462 - multiple simultaneous MDC requests
5937 test_73() {
5938         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5939         test_mkdir $DIR/d73-1
5940         test_mkdir $DIR/d73-2
5941         multiop_bg_pause $DIR/d73-1/f73-1 O_c || return 1
5942         pid1=$!
5943
5944         lctl set_param fail_loc=0x80000129
5945         $MULTIOP $DIR/d73-1/f73-2 Oc &
5946         sleep 1
5947         lctl set_param fail_loc=0
5948
5949         $MULTIOP $DIR/d73-2/f73-3 Oc &
5950         pid3=$!
5951
5952         kill -USR1 $pid1
5953         wait $pid1 || return 1
5954
5955         sleep 25
5956
5957         $CHECKSTAT -t file $DIR/d73-1/f73-1 || return 4
5958         $CHECKSTAT -t file $DIR/d73-1/f73-2 || return 5
5959         $CHECKSTAT -t file $DIR/d73-2/f73-3 || return 6
5960
5961         rm -rf $DIR/d73-*
5962 }
5963 run_test 73 "multiple MDC requests (should not deadlock)"
5964
5965 test_74a() { # bug 6149, 6184
5966         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5967         #define OBD_FAIL_LDLM_ENQUEUE_OLD_EXPORT 0x30e
5968         #
5969         # very important to OR with OBD_FAIL_ONCE (0x80000000) -- otherwise it
5970         # will spin in a tight reconnection loop
5971         touch $DIR/f74a
5972         $LCTL set_param fail_loc=0x8000030e
5973         # get any lock that won't be difficult - lookup works.
5974         ls $DIR/f74a
5975         $LCTL set_param fail_loc=0
5976         rm -f $DIR/f74a
5977         true
5978 }
5979 run_test 74a "ldlm_enqueue freed-export error path, ls (shouldn't LBUG)"
5980
5981 test_74b() { # bug 13310
5982         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5983         #define OBD_FAIL_LDLM_ENQUEUE_OLD_EXPORT 0x30e
5984         #
5985         # very important to OR with OBD_FAIL_ONCE (0x80000000) -- otherwise it
5986         # will spin in a tight reconnection loop
5987         $LCTL set_param fail_loc=0x8000030e
5988         # get a "difficult" lock
5989         touch $DIR/f74b
5990         $LCTL set_param fail_loc=0
5991         rm -f $DIR/f74b
5992         true
5993 }
5994 run_test 74b "ldlm_enqueue freed-export error path, touch (shouldn't LBUG)"
5995
5996 test_74c() {
5997         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5998         #define OBD_FAIL_LDLM_NEW_LOCK
5999         $LCTL set_param fail_loc=0x319
6000         touch $DIR/$tfile && error "touch successful"
6001         $LCTL set_param fail_loc=0
6002         true
6003 }
6004 run_test 74c "ldlm_lock_create error path, (shouldn't LBUG)"
6005
6006 num_inodes() {
6007         awk '/lustre_inode_cache/ {print $2; exit}' /proc/slabinfo
6008 }
6009
6010 get_inode_slab_tunables() {
6011         awk '/lustre_inode_cache/ {print $9," ",$10," ",$11; exit}' /proc/slabinfo
6012 }
6013
6014 set_inode_slab_tunables() {
6015         echo "lustre_inode_cache $1" > /proc/slabinfo
6016 }
6017
6018 test_76() { # Now for bug 20433, added originally in bug 1443
6019         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6020         local SLAB_SETTINGS=$(get_inode_slab_tunables)
6021         local CPUS=$(getconf _NPROCESSORS_ONLN 2>/dev/null)
6022         # we cannot set limit below 1 which means 1 inode in each
6023         # per-cpu cache is still allowed
6024         set_inode_slab_tunables "1 1 0"
6025         cancel_lru_locks osc
6026         BEFORE_INODES=$(num_inodes)
6027         echo "before inodes: $BEFORE_INODES"
6028         local COUNT=1000
6029         [ "$SLOW" = "no" ] && COUNT=100
6030         for i in $(seq $COUNT); do
6031                 touch $DIR/$tfile
6032                 rm -f $DIR/$tfile
6033         done
6034         cancel_lru_locks osc
6035         AFTER_INODES=$(num_inodes)
6036         echo "after inodes: $AFTER_INODES"
6037         local wait=0
6038         while [[ $((AFTER_INODES-1*${CPUS:-1})) -gt $BEFORE_INODES ]]; do
6039                 sleep 2
6040                 AFTER_INODES=$(num_inodes)
6041                 wait=$((wait+2))
6042                 echo "wait $wait seconds inodes: $AFTER_INODES"
6043                 if [ $wait -gt 30 ]; then
6044                         error "inode slab grew from $BEFORE_INODES to $AFTER_INODES"
6045                 fi
6046         done
6047         set_inode_slab_tunables "$SLAB_SETTINGS"
6048 }
6049 run_test 76 "confirm clients recycle inodes properly ===="
6050
6051
6052 export ORIG_CSUM=""
6053 set_checksums()
6054 {
6055         # Note: in sptlrpc modes which enable its own bulk checksum, the
6056         # original crc32_le bulk checksum will be automatically disabled,
6057         # and the OBD_FAIL_OSC_CHECKSUM_SEND/OBD_FAIL_OSC_CHECKSUM_RECEIVE
6058         # will be checked by sptlrpc code against sptlrpc bulk checksum.
6059         # In this case set_checksums() will not be no-op, because sptlrpc
6060         # bulk checksum will be enabled all through the test.
6061
6062         [ "$ORIG_CSUM" ] || ORIG_CSUM=`lctl get_param -n osc.*.checksums | head -n1`
6063         lctl set_param -n osc.*.checksums $1
6064         return 0
6065 }
6066
6067 export ORIG_CSUM_TYPE="`lctl get_param -n osc.*osc-[^mM]*.checksum_type |
6068                         sed 's/.*\[\(.*\)\].*/\1/g' | head -n1`"
6069 CKSUM_TYPES=${CKSUM_TYPES:-"crc32 adler"}
6070 [ "$ORIG_CSUM_TYPE" = "crc32c" ] && CKSUM_TYPES="$CKSUM_TYPES crc32c"
6071 set_checksum_type()
6072 {
6073         lctl set_param -n osc.*osc-[^mM]*.checksum_type $1
6074         log "set checksum type to $1"
6075         return 0
6076 }
6077 F77_TMP=$TMP/f77-temp
6078 F77SZ=8
6079 setup_f77() {
6080         dd if=/dev/urandom of=$F77_TMP bs=1M count=$F77SZ || \
6081                 error "error writing to $F77_TMP"
6082 }
6083
6084 test_77a() { # bug 10889
6085         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6086         $GSS && skip "could not run with gss" && return
6087         [ ! -f $F77_TMP ] && setup_f77
6088         set_checksums 1
6089         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ || error "dd error"
6090         set_checksums 0
6091         rm -f $DIR/$tfile
6092 }
6093 run_test 77a "normal checksum read/write operation"
6094
6095 test_77b() { # bug 10889
6096         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6097         $GSS && skip "could not run with gss" && return
6098         [ ! -f $F77_TMP ] && setup_f77
6099         #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
6100         $LCTL set_param fail_loc=0x80000409
6101         set_checksums 1
6102
6103         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ conv=sync ||
6104                 error "dd error: $?"
6105         $LCTL set_param fail_loc=0
6106
6107         for algo in $CKSUM_TYPES; do
6108                 cancel_lru_locks osc
6109                 set_checksum_type $algo
6110                 #define OBD_FAIL_OSC_CHECKSUM_RECEIVE    0x408
6111                 $LCTL set_param fail_loc=0x80000408
6112                 cmp $F77_TMP $DIR/$tfile || error "file compare failed"
6113                 $LCTL set_param fail_loc=0
6114         done
6115         set_checksums 0
6116         set_checksum_type $ORIG_CSUM_TYPE
6117         rm -f $DIR/$tfile
6118 }
6119 run_test 77b "checksum error on client write, read"
6120
6121 cleanup_77c() {
6122         trap 0
6123         set_checksums 0
6124         $LCTL set_param osc.*osc-[^mM]*.checksum_dump=0
6125         $check_ost &&
6126                 do_facet ost1 $LCTL set_param obdfilter.*-OST*.checksum_dump=0
6127         [ -n $osc_file_prefix ] && rm -f ${osc_file_prefix}*
6128         $check_ost && [ -n $ost_file_prefix ] &&
6129                 do_facet ost1 rm -f ${ost_file_prefix}\*
6130 }
6131
6132 test_77c() {
6133         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6134         $GSS && skip "could not run with gss" && return
6135
6136         local bad1
6137         local osc_file_prefix
6138         local osc_file
6139         local check_ost=false
6140         local ost_file_prefix
6141         local ost_file
6142         local orig_cksum
6143         local dump_cksum
6144         local fid
6145
6146         # ensure corruption will occur on first OSS/OST
6147         $LFS setstripe -i 0 $DIR/$tfile
6148
6149         [ ! -f $F77_TMP ] && setup_f77
6150         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ conv=sync ||
6151                 error "dd write error: $?"
6152         fid=$($LFS path2fid $DIR/$tfile)
6153
6154         if [ $(lustre_version_code ost1) -ge $(version_code 2.9.57) ]
6155         then
6156                 check_ost=true
6157                 ost_file_prefix=$(do_facet ost1 $LCTL get_param -n debug_path)
6158                 ost_file_prefix=${ost_file_prefix}-checksum_dump-ost-\\${fid}
6159         else
6160                 echo "OSS do not support bulk pages dump upon error"
6161         fi
6162
6163         osc_file_prefix=$($LCTL get_param -n debug_path)
6164         osc_file_prefix=${osc_file_prefix}-checksum_dump-osc-\\${fid}
6165
6166         trap cleanup_77c EXIT
6167
6168         set_checksums 1
6169         # enable bulk pages dump upon error on Client
6170         $LCTL set_param osc.*osc-[^mM]*.checksum_dump=1
6171         # enable bulk pages dump upon error on OSS
6172         $check_ost &&
6173                 do_facet ost1 $LCTL set_param obdfilter.*-OST*.checksum_dump=1
6174
6175         # flush Client cache to allow next read to reach OSS
6176         cancel_lru_locks osc
6177
6178         #define OBD_FAIL_OSC_CHECKSUM_RECEIVE       0x408
6179         $LCTL set_param fail_loc=0x80000408
6180         dd if=$DIR/$tfile of=/dev/null bs=1M || error "dd read error: $?"
6181         $LCTL set_param fail_loc=0
6182
6183         rm -f $DIR/$tfile
6184
6185         # check cksum dump on Client
6186         osc_file=$(ls ${osc_file_prefix}*)
6187         [ -n "$osc_file" ] || error "no checksum dump file on Client"
6188         # OBD_FAIL_OSC_CHECKSUM_RECEIVE corrupts with "bad1" at start of file
6189         bad1=$(dd if=$osc_file bs=1 count=4 2>/dev/null) || error "dd error: $?"
6190         [ $bad1 == "bad1" ] || error "unexpected corrupt pattern"
6191         orig_cksum=$(dd if=$F77_TMP bs=1 skip=4 count=1048572 2>/dev/null |
6192                      cksum)
6193         dump_cksum=$(dd if=$osc_file bs=1 skip=4 2>/dev/null | cksum)
6194         [[ "$orig_cksum" == "$dump_cksum" ]] ||
6195                 error "dump content does not match on Client"
6196
6197         $check_ost || skip "No need to check cksum dump on OSS"
6198
6199         # check cksum dump on OSS
6200         ost_file=$(do_facet ost1 ls ${ost_file_prefix}\*)
6201         [ -n "$ost_file" ] || error "no checksum dump file on OSS"
6202         orig_cksum=$(dd if=$F77_TMP bs=1048576 count=1 2>/dev/null | cksum)
6203         dump_cksum=$(do_facet ost1 dd if=$ost_file 2>/dev/null \| cksum)
6204         [[ "$orig_cksum" == "$dump_cksum" ]] ||
6205                 error "dump content does not match on OSS"
6206
6207         cleanup_77c
6208 }
6209 run_test 77c "checksum error on client read with debug"
6210
6211 test_77d() { # bug 10889
6212         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6213         $GSS && skip "could not run with gss" && return
6214         #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
6215         $LCTL set_param fail_loc=0x80000409
6216         set_checksums 1
6217         $DIRECTIO write $DIR/$tfile 0 $F77SZ $((1024 * 1024)) ||
6218                 error "direct write: rc=$?"
6219         $LCTL set_param fail_loc=0
6220         set_checksums 0
6221
6222         #define OBD_FAIL_OSC_CHECKSUM_RECEIVE    0x408
6223         $LCTL set_param fail_loc=0x80000408
6224         set_checksums 1
6225         cancel_lru_locks osc
6226         $DIRECTIO read $DIR/$tfile 0 $F77SZ $((1024 * 1024)) ||
6227                 error "direct read: rc=$?"
6228         $LCTL set_param fail_loc=0
6229         set_checksums 0
6230 }
6231 run_test 77d "checksum error on OST direct write, read"
6232
6233 test_77f() { # bug 10889
6234         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6235         $GSS && skip "could not run with gss" && return
6236         set_checksums 1
6237         for algo in $CKSUM_TYPES; do
6238                 cancel_lru_locks osc
6239                 set_checksum_type $algo
6240                 #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
6241                 $LCTL set_param fail_loc=0x409
6242                 $DIRECTIO write $DIR/$tfile 0 $F77SZ $((1024 * 1024)) &&
6243                         error "direct write succeeded"
6244                 $LCTL set_param fail_loc=0
6245         done
6246         set_checksum_type $ORIG_CSUM_TYPE
6247         set_checksums 0
6248 }
6249 run_test 77f "repeat checksum error on write (expect error)"
6250
6251 test_77g() { # bug 10889
6252         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6253         $GSS && skip "could not run with gss" && return
6254         remote_ost_nodsh && skip "remote OST with nodsh" && return
6255
6256         [ ! -f $F77_TMP ] && setup_f77
6257
6258         $SETSTRIPE -c 1 -i 0 $DIR/$tfile
6259         #define OBD_FAIL_OST_CHECKSUM_RECEIVE       0x21a
6260         do_facet ost1 lctl set_param fail_loc=0x8000021a
6261         set_checksums 1
6262         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ ||
6263                 error "write error: rc=$?"
6264         do_facet ost1 lctl set_param fail_loc=0
6265         set_checksums 0
6266
6267         cancel_lru_locks osc
6268         #define OBD_FAIL_OST_CHECKSUM_SEND          0x21b
6269         do_facet ost1 lctl set_param fail_loc=0x8000021b
6270         set_checksums 1
6271         cmp $F77_TMP $DIR/$tfile || error "file compare failed"
6272         do_facet ost1 lctl set_param fail_loc=0
6273         set_checksums 0
6274 }
6275 run_test 77g "checksum error on OST write, read"
6276
6277 test_77j() { # bug 13805
6278         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6279         $GSS && skip "could not run with gss" && return
6280         #define OBD_FAIL_OSC_CKSUM_ADLER_ONLY    0x40c
6281         lctl set_param fail_loc=0x40c
6282         remount_client $MOUNT
6283         lctl set_param fail_loc=0
6284         # wait async osc connect to finish and reflect updated state value
6285         local i
6286         for (( i=0; i < OSTCOUNT; i++ )) ; do
6287                 wait_osc_import_state client ost$((i+1)) FULL
6288         done
6289
6290         for VALUE in $(lctl get_param osc.*osc-[^mM]*.checksum_type); do
6291                 PARAM=$(echo ${VALUE[0]} | cut -d "=" -f1)
6292                 algo=$(lctl get_param -n $PARAM | sed 's/.*\[\(.*\)\].*/\1/g')
6293                 [ "$algo" = "adler" ] || error "algo set to $algo instead of adler"
6294         done
6295         remount_client $MOUNT
6296 }
6297 run_test 77j "client only supporting ADLER32"
6298
6299 [ "$ORIG_CSUM" ] && set_checksums $ORIG_CSUM || true
6300 rm -f $F77_TMP
6301 unset F77_TMP
6302
6303 cleanup_test_78() {
6304         trap 0
6305         rm -f $DIR/$tfile
6306 }
6307
6308 test_78() { # bug 10901
6309         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6310         remote_ost || { skip_env "local OST" && return; }
6311
6312         NSEQ=5
6313         F78SIZE=$(($(awk '/MemFree:/ { print $2 }' /proc/meminfo) / 1024))
6314         echo "MemFree: $F78SIZE, Max file size: $MAXFREE"
6315         MEMTOTAL=$(($(awk '/MemTotal:/ { print $2 }' /proc/meminfo) / 1024))
6316         echo "MemTotal: $MEMTOTAL"
6317
6318         # reserve 256MB of memory for the kernel and other running processes,
6319         # and then take 1/2 of the remaining memory for the read/write buffers.
6320         if [ $MEMTOTAL -gt 512 ] ;then
6321                 MEMTOTAL=$(((MEMTOTAL - 256 ) / 2))
6322         else
6323                 # for those poor memory-starved high-end clusters...
6324                 MEMTOTAL=$((MEMTOTAL / 2))
6325         fi
6326         echo "Mem to use for directio: $MEMTOTAL"
6327
6328         [[ $F78SIZE -gt $MEMTOTAL ]] && F78SIZE=$MEMTOTAL
6329         [[ $F78SIZE -gt 512 ]] && F78SIZE=512
6330         [[ $F78SIZE -gt $((MAXFREE / 1024)) ]] && F78SIZE=$((MAXFREE / 1024))
6331         SMALLESTOST=$($LFS df $DIR | grep OST | awk '{ print $4 }' | sort -n |
6332                 head -n1)
6333         echo "Smallest OST: $SMALLESTOST"
6334         [[ $SMALLESTOST -lt 10240 ]] &&
6335                 skip "too small OSTSIZE, useless to run large O_DIRECT test" && return 0
6336
6337         trap cleanup_test_78 EXIT
6338
6339         [[ $F78SIZE -gt $((SMALLESTOST * $OSTCOUNT / 1024 - 80)) ]] &&
6340                 F78SIZE=$((SMALLESTOST * $OSTCOUNT / 1024 - 80))
6341
6342         [ "$SLOW" = "no" ] && NSEQ=1 && [ $F78SIZE -gt 32 ] && F78SIZE=32
6343         echo "File size: $F78SIZE"
6344         $SETSTRIPE -c $OSTCOUNT $DIR/$tfile || error "setstripe failed"
6345         for i in $(seq 1 $NSEQ); do
6346                 FSIZE=$(($F78SIZE / ($NSEQ - $i + 1)))
6347                 echo directIO rdwr round $i of $NSEQ
6348                 $DIRECTIO rdwr $DIR/$tfile 0 $FSIZE 1048576||error "rdwr failed"
6349         done
6350
6351         cleanup_test_78
6352 }
6353 run_test 78 "handle large O_DIRECT writes correctly ============"
6354
6355 test_79() { # bug 12743
6356         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6357         wait_delete_completed
6358
6359         BKTOTAL=$(calc_osc_kbytes kbytestotal)
6360         BKFREE=$(calc_osc_kbytes kbytesfree)
6361         BKAVAIL=$(calc_osc_kbytes kbytesavail)
6362
6363         STRING=`df -P $MOUNT | tail -n 1 | awk '{print $2","$3","$4}'`
6364         DFTOTAL=`echo $STRING | cut -d, -f1`
6365         DFUSED=`echo $STRING  | cut -d, -f2`
6366         DFAVAIL=`echo $STRING | cut -d, -f3`
6367         DFFREE=$(($DFTOTAL - $DFUSED))
6368
6369         ALLOWANCE=$((64 * $OSTCOUNT))
6370
6371         if [ $DFTOTAL -lt $(($BKTOTAL - $ALLOWANCE)) ] ||
6372            [ $DFTOTAL -gt $(($BKTOTAL + $ALLOWANCE)) ] ; then
6373                 error "df total($DFTOTAL) mismatch OST total($BKTOTAL)"
6374         fi
6375         if [ $DFFREE -lt $(($BKFREE - $ALLOWANCE)) ] ||
6376            [ $DFFREE -gt $(($BKFREE + $ALLOWANCE)) ] ; then
6377                 error "df free($DFFREE) mismatch OST free($BKFREE)"
6378         fi
6379         if [ $DFAVAIL -lt $(($BKAVAIL - $ALLOWANCE)) ] ||
6380            [ $DFAVAIL -gt $(($BKAVAIL + $ALLOWANCE)) ] ; then
6381                 error "df avail($DFAVAIL) mismatch OST avail($BKAVAIL)"
6382         fi
6383 }
6384 run_test 79 "df report consistency check ======================="
6385
6386 test_80() { # bug 10718
6387         remote_ost_nodsh && skip "remote OST with nodsh" && return
6388         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6389         # relax strong synchronous semantics for slow backends like ZFS
6390         local soc="obdfilter.*.sync_on_lock_cancel"
6391         local soc_old=$(do_facet ost1 lctl get_param -n $soc | head -n1)
6392         local hosts=
6393         if [ "$soc_old" != "never" -a "$(facet_fstype ost1)" != "ldiskfs" ]; then
6394                 hosts=$(for host in $(seq -f "ost%g" 1 $OSTCOUNT); do
6395                           facet_active_host $host; done | sort -u)
6396                 do_nodes $hosts lctl set_param $soc=never
6397         fi
6398
6399         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=1M
6400         sync; sleep 1; sync
6401         local BEFORE=`date +%s`
6402         cancel_lru_locks osc
6403         local AFTER=`date +%s`
6404         local DIFF=$((AFTER-BEFORE))
6405         if [ $DIFF -gt 1 ] ; then
6406                 error "elapsed for 1M@1T = $DIFF"
6407         fi
6408
6409         [ -n "$hosts" ] && do_nodes $hosts lctl set_param $soc=$soc_old
6410
6411         rm -f $DIR/$tfile
6412 }
6413 run_test 80 "Page eviction is equally fast at high offsets too  ===="
6414
6415 test_81a() { # LU-456
6416         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6417         remote_ost_nodsh && skip "remote OST with nodsh" && return
6418         # define OBD_FAIL_OST_MAPBLK_ENOSPC    0x228
6419         # MUST OR with the OBD_FAIL_ONCE (0x80000000)
6420         do_facet ost1 lctl set_param fail_loc=0x80000228
6421
6422         # write should trigger a retry and success
6423         $SETSTRIPE -i 0 -c 1 $DIR/$tfile
6424         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
6425         RC=$?
6426         if [ $RC -ne 0 ] ; then
6427                 error "write should success, but failed for $RC"
6428         fi
6429 }
6430 run_test 81a "OST should retry write when get -ENOSPC ==============="
6431
6432 test_81b() { # LU-456
6433         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6434         remote_ost_nodsh && skip "remote OST with nodsh" && return
6435         # define OBD_FAIL_OST_MAPBLK_ENOSPC    0x228
6436         # Don't OR with the OBD_FAIL_ONCE (0x80000000)
6437         do_facet ost1 lctl set_param fail_loc=0x228
6438
6439         # write should retry several times and return -ENOSPC finally
6440         $SETSTRIPE -i 0 -c 1 $DIR/$tfile
6441         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
6442         RC=$?
6443         ENOSPC=28
6444         if [ $RC -ne $ENOSPC ] ; then
6445                 error "dd should fail for -ENOSPC, but succeed."
6446         fi
6447 }
6448 run_test 81b "OST should return -ENOSPC when retry still fails ======="
6449
6450 test_82() { # LU-1031
6451         dd if=/dev/zero of=$DIR/$tfile bs=1M count=10
6452         local gid1=14091995
6453         local gid2=16022000
6454
6455         multiop_bg_pause $DIR/$tfile OG${gid1}_g${gid1}c || return 1
6456         local MULTIPID1=$!
6457         multiop_bg_pause $DIR/$tfile O_G${gid2}r10g${gid2}c || return 2
6458         local MULTIPID2=$!
6459         kill -USR1 $MULTIPID2
6460         sleep 2
6461         if [[ `ps h -o comm -p $MULTIPID2` == "" ]]; then
6462                 error "First grouplock does not block second one"
6463         else
6464                 echo "Second grouplock blocks first one"
6465         fi
6466         kill -USR1 $MULTIPID1
6467         wait $MULTIPID1
6468         wait $MULTIPID2
6469 }
6470 run_test 82 "Basic grouplock test"
6471
6472 test_83() {
6473         local sfile="/boot/System.map-$(uname -r)"
6474         # define OBD_FAIL_LLITE_PTASK_IO_FAIL 0x140d
6475         $LCTL set_param fail_loc=0x140d
6476         cp $sfile $DIR/$tfile || error "write failed"
6477         diff -c $sfile $DIR/$tfile || error "files are different"
6478         $LCTL set_param fail_loc=0
6479         rm -f $DIR/$tfile
6480 }
6481 run_test 83 "Short write in ptask ==============================="
6482
6483 test_99() {
6484         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" &&
6485                 return
6486         test_mkdir $DIR/$tdir.cvsroot
6487         chown $RUNAS_ID $DIR/$tdir.cvsroot
6488
6489         cd $TMP
6490         $RUNAS cvs -d $DIR/$tdir.cvsroot init || error "cvs init failed"
6491
6492         cd /etc/init.d
6493         # some versions of cvs import exit(1) when asked to import links or
6494         # files they can't read.  ignore those files.
6495         local toignore=$(find . -type l -printf '-I %f\n' -o \
6496                          ! -perm /4 -printf '-I %f\n')
6497         $RUNAS cvs -d $DIR/$tdir.cvsroot import -m "nomesg" $toignore \
6498                 $tdir.reposname vtag rtag
6499
6500         cd $DIR
6501         test_mkdir $DIR/$tdir.reposname
6502         chown $RUNAS_ID $DIR/$tdir.reposname
6503         $RUNAS cvs -d $DIR/$tdir.cvsroot co $tdir.reposname
6504
6505         cd $DIR/$tdir.reposname
6506         $RUNAS touch foo99
6507         $RUNAS cvs add -m 'addmsg' foo99
6508         $RUNAS cvs update
6509         $RUNAS cvs commit -m 'nomsg' foo99
6510         rm -fr $DIR/$tdir.cvsroot
6511 }
6512 run_test 99 "cvs strange file/directory operations"
6513
6514 test_100() {
6515         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6516         [[ "$NETTYPE" =~ tcp ]] ||
6517                 { skip "TCP secure port test, not useful for NETTYPE=$NETTYPE" &&
6518                         return ; }
6519
6520         remote_ost_nodsh && skip "remote OST with nodsh" && return
6521         remote_mds_nodsh && skip "remote MDS with nodsh" && return
6522         remote_servers ||
6523                 { skip "useless for local single node setup" && return; }
6524
6525         netstat -tna | ( rc=1; while read PROT SND RCV LOCAL REMOTE STAT; do
6526                 [ "$PROT" != "tcp" ] && continue
6527                 RPORT=$(echo $REMOTE | cut -d: -f2)
6528                 [ "$RPORT" != "$ACCEPTOR_PORT" ] && continue
6529
6530                 rc=0
6531                 LPORT=`echo $LOCAL | cut -d: -f2`
6532                 if [ $LPORT -ge 1024 ]; then
6533                         echo "bad: $PROT $SND $RCV $LOCAL $REMOTE $STAT"
6534                         netstat -tna
6535                         error_exit "local: $LPORT > 1024, remote: $RPORT"
6536                 fi
6537         done
6538         [ "$rc" = 0 ] || error_exit "privileged port not found" )
6539 }
6540 run_test 100 "check local port using privileged port ==========="
6541
6542 function get_named_value()
6543 {
6544     local tag
6545
6546     tag=$1
6547     while read ;do
6548         line=$REPLY
6549         case $line in
6550         $tag*)
6551             echo $line | sed "s/^$tag[ ]*//"
6552             break
6553             ;;
6554         esac
6555     done
6556 }
6557
6558 export CACHE_MAX=$($LCTL get_param -n llite.*.max_cached_mb |
6559                    awk '/^max_cached_mb/ { print $2 }')
6560
6561 cleanup_101a() {
6562         $LCTL set_param -n llite.*.max_cached_mb $CACHE_MAX
6563         trap 0
6564 }
6565
6566 test_101a() {
6567         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6568         [ $MDSCOUNT -ge 2 ] && skip "needs < 2 MDTs" && return #LU-4322
6569         local s
6570         local discard
6571         local nreads=10000
6572         local cache_limit=32
6573
6574         $LCTL set_param -n osc.*-osc*.rpc_stats 0
6575         trap cleanup_101a EXIT
6576         $LCTL set_param -n llite.*.read_ahead_stats 0
6577         $LCTL set_param -n llite.*.max_cached_mb $cache_limit
6578
6579         #
6580         # randomly read 10000 of 64K chunks from file 3x 32MB in size
6581         #
6582         echo "nreads: $nreads file size: $((cache_limit * 3))MB"
6583         $READS -f $DIR/$tfile -s$((cache_limit * 3192 * 1024)) -b65536 -C -n$nreads -t 180
6584
6585         discard=0
6586         for s in $($LCTL get_param -n llite.*.read_ahead_stats |
6587                 get_named_value 'read but discarded' | cut -d" " -f1); do
6588                         discard=$(($discard + $s))
6589         done
6590         cleanup_101a
6591
6592         if [[ $(($discard * 10)) -gt $nreads ]]; then
6593                 $LCTL get_param osc.*-osc*.rpc_stats
6594                 $LCTL get_param llite.*.read_ahead_stats
6595                 error "too many ($discard) discarded pages"
6596         fi
6597         rm -f $DIR/$tfile || true
6598 }
6599 run_test 101a "check read-ahead for random reads"
6600
6601 setup_test101bc() {
6602         test_mkdir $DIR/$tdir
6603         local STRIPE_SIZE=$1
6604         local FILE_LENGTH=$2
6605         STRIPE_OFFSET=0
6606
6607         local FILE_SIZE_MB=$((FILE_LENGTH / STRIPE_SIZE))
6608
6609         local list=$(comma_list $(osts_nodes))
6610         set_osd_param $list '' read_cache_enable 0
6611         set_osd_param $list '' writethrough_cache_enable 0
6612
6613         trap cleanup_test101bc EXIT
6614         # prepare the read-ahead file
6615         $SETSTRIPE -S $STRIPE_SIZE -i $STRIPE_OFFSET -c $OSTCOUNT $DIR/$tfile
6616
6617         dd if=/dev/zero of=$DIR/$tfile bs=$STRIPE_SIZE \
6618                                 count=$FILE_SIZE_MB 2> /dev/null
6619
6620 }
6621
6622 cleanup_test101bc() {
6623         trap 0
6624         rm -rf $DIR/$tdir
6625         rm -f $DIR/$tfile
6626
6627         local list=$(comma_list $(osts_nodes))
6628         set_osd_param $list '' read_cache_enable 1
6629         set_osd_param $list '' writethrough_cache_enable 1
6630 }
6631
6632 calc_total() {
6633         awk 'BEGIN{total=0}; {total+=$1}; END{print total}'
6634 }
6635
6636 ra_check_101() {
6637         local READ_SIZE=$1
6638         local STRIPE_SIZE=$2
6639         local FILE_LENGTH=$3
6640         local RA_INC=1048576
6641         local STRIDE_LENGTH=$((STRIPE_SIZE/READ_SIZE))
6642         local discard_limit=$((((STRIDE_LENGTH - 1)*3/(STRIDE_LENGTH*OSTCOUNT))* \
6643                              (STRIDE_LENGTH*OSTCOUNT - STRIDE_LENGTH)))
6644         DISCARD=$($LCTL get_param -n llite.*.read_ahead_stats |
6645                         get_named_value 'read but discarded' |
6646                         cut -d" " -f1 | calc_total)
6647         if [[ $DISCARD -gt $discard_limit ]]; then
6648                 $LCTL get_param llite.*.read_ahead_stats
6649                 error "Too many ($DISCARD) discarded pages with size (${READ_SIZE})"
6650         else
6651                 echo "Read-ahead success for size ${READ_SIZE}"
6652         fi
6653 }
6654
6655 test_101b() {
6656         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6657         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
6658         local STRIPE_SIZE=1048576
6659         local STRIDE_SIZE=$((STRIPE_SIZE*OSTCOUNT))
6660         if [ $SLOW == "yes" ]; then
6661                 local FILE_LENGTH=$((STRIDE_SIZE * 64))
6662         else
6663                 local FILE_LENGTH=$((STRIDE_SIZE * 8))
6664         fi
6665
6666         local ITERATION=$((FILE_LENGTH / STRIDE_SIZE))
6667
6668         # prepare the read-ahead file
6669         setup_test101bc $STRIPE_SIZE $FILE_LENGTH
6670         cancel_lru_locks osc
6671         for BIDX in 2 4 8 16 32 64 128 256
6672         do
6673                 local BSIZE=$((BIDX*4096))
6674                 local READ_COUNT=$((STRIPE_SIZE/BSIZE))
6675                 local STRIDE_LENGTH=$((STRIDE_SIZE/BSIZE))
6676                 local OFFSET=$((STRIPE_SIZE/BSIZE*(OSTCOUNT - 1)))
6677                 $LCTL set_param -n llite.*.read_ahead_stats 0
6678                 $READS -f $DIR/$tfile  -l $STRIDE_LENGTH -o $OFFSET \
6679                               -s $FILE_LENGTH -b $STRIPE_SIZE -a $READ_COUNT -n $ITERATION
6680                 cancel_lru_locks osc
6681                 ra_check_101 $BSIZE $STRIPE_SIZE $FILE_LENGTH
6682         done
6683         cleanup_test101bc
6684         true
6685 }
6686 run_test 101b "check stride-io mode read-ahead ================="
6687
6688 test_101c() {
6689         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6690         local STRIPE_SIZE=1048576
6691         local FILE_LENGTH=$((STRIPE_SIZE*100))
6692         local nreads=10000
6693         local osc_rpc_stats
6694
6695         setup_test101bc $STRIPE_SIZE $FILE_LENGTH
6696
6697         cancel_lru_locks osc
6698         $LCTL set_param osc.*.rpc_stats 0
6699         $READS -f $DIR/$tfile -s$FILE_LENGTH -b65536 -n$nreads -t 180
6700         for osc_rpc_stats in $($LCTL get_param -N osc.*.rpc_stats); do
6701                 local stats=$($LCTL get_param -n $osc_rpc_stats)
6702                 local lines=$(echo "$stats" | awk 'END {print NR;}')
6703                 local size
6704
6705                 if [ $lines -le 20 ]; then
6706                         continue
6707                 fi
6708                 for size in 1 2 4 8; do
6709                         local rpc=$(echo "$stats" |
6710                                     awk '($1 == "'$size':") {print $2; exit; }')
6711                         [ $rpc != 0 ] &&
6712                                 error "Small $((size*4))k read IO $rpc !"
6713                 done
6714                 echo "$osc_rpc_stats check passed!"
6715         done
6716         cleanup_test101bc
6717         true
6718 }
6719 run_test 101c "check stripe_size aligned read-ahead ================="
6720
6721 set_read_ahead() {
6722         $LCTL get_param -n llite.*.max_read_ahead_mb | head -n 1
6723         $LCTL set_param -n llite.*.max_read_ahead_mb $1 > /dev/null 2>&1
6724 }
6725
6726 test_101d() {
6727         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6728         local file=$DIR/$tfile
6729         local sz_MB=${FILESIZE_101d:-500}
6730         local ra_MB=${READAHEAD_MB:-40}
6731
6732         local free_MB=$(($(df -P $DIR | tail -n 1 | awk '{ print $4 }') / 1024))
6733         [ $free_MB -lt $sz_MB ] &&
6734                 skip "Need free space ${sz_MB}M, have ${free_MB}M" && return
6735
6736         echo "Create test file $file size ${sz_MB}M, ${free_MB}M free"
6737         $SETSTRIPE -c -1 $file || error "setstripe failed"
6738
6739         dd if=/dev/zero of=$file bs=1M count=$sz_MB || error "dd failed"
6740         echo Cancel LRU locks on lustre client to flush the client cache
6741         cancel_lru_locks osc
6742
6743         echo Disable read-ahead
6744         local old_READAHEAD=$(set_read_ahead 0)
6745
6746         echo Reading the test file $file with read-ahead disabled
6747         local raOFF=$(do_and_time "dd if=$file of=/dev/null bs=1M count=$sz_MB")
6748
6749         echo Cancel LRU locks on lustre client to flush the client cache
6750         cancel_lru_locks osc
6751         echo Enable read-ahead with ${ra_MB}MB
6752         set_read_ahead $ra_MB
6753
6754         echo Reading the test file $file with read-ahead enabled
6755         local raON=$(do_and_time "dd if=$file of=/dev/null bs=1M count=$sz_MB")
6756
6757         echo "read-ahead disabled time read $raOFF"
6758         echo "read-ahead enabled  time read $raON"
6759
6760         set_read_ahead $old_READAHEAD
6761         rm -f $file
6762         wait_delete_completed
6763
6764         [ $raOFF -le 1 -o $raON -lt $raOFF ] ||
6765                 error "readahead ${raON}s > no-readahead ${raOFF}s ${sz_MB}M"
6766 }
6767 run_test 101d "file read with and without read-ahead enabled"
6768
6769 test_101e() {
6770         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6771         local file=$DIR/$tfile
6772         local size_KB=500  #KB
6773         local count=100
6774         local bsize=1024
6775
6776         local free_KB=$(df -P $DIR | tail -n 1 | awk '{ print $4 }')
6777         local need_KB=$((count * size_KB))
6778         [[ $free_KB -le $need_KB ]] &&
6779                 skip_env "Need free space $need_KB, have $free_KB" && return
6780
6781         echo "Creating $count ${size_KB}K test files"
6782         for ((i = 0; i < $count; i++)); do
6783                 dd if=/dev/zero of=$file.$i bs=$bsize count=$size_KB 2>/dev/null
6784         done
6785
6786         echo "Cancel LRU locks on lustre client to flush the client cache"
6787         cancel_lru_locks osc
6788
6789         echo "Reset readahead stats"
6790         $LCTL set_param -n llite.*.read_ahead_stats 0
6791
6792         for ((i = 0; i < $count; i++)); do
6793                 dd if=$file.$i of=/dev/null bs=$bsize count=$size_KB 2>/dev/null
6794         done
6795
6796         local miss=$($LCTL get_param -n llite.*.read_ahead_stats |
6797                      get_named_value 'misses' | cut -d" " -f1 | calc_total)
6798
6799         for ((i = 0; i < $count; i++)); do
6800                 rm -rf $file.$i 2>/dev/null
6801         done
6802
6803         #10000 means 20% reads are missing in readahead
6804         [[ $miss -lt 10000 ]] ||  error "misses too much for small reads"
6805 }
6806 run_test 101e "check read-ahead for small read(1k) for small files(500k)"
6807
6808 test_101f() {
6809         which iozone || { skip "no iozone installed" && return; }
6810
6811         local old_debug=$($LCTL get_param debug)
6812         old_debug=${old_debug#*=}
6813         $LCTL set_param debug="reada mmap"
6814
6815         # create a test file
6816         iozone -i 0 -+n -r 1m -s 128m -w -f $DIR/$tfile > /dev/null 2>&1
6817
6818         echo Cancel LRU locks on lustre client to flush the client cache
6819         cancel_lru_locks osc
6820
6821         echo Reset readahead stats
6822         $LCTL set_param -n llite.*.read_ahead_stats 0
6823
6824         echo mmap read the file with small block size
6825         iozone -i 1 -u 1 -l 1 -+n -r 32k -s 128m -B -f $DIR/$tfile \
6826                 > /dev/null 2>&1
6827
6828         echo checking missing pages
6829         $LCTL get_param llite.*.read_ahead_stats
6830         local miss=$($LCTL get_param -n llite.*.read_ahead_stats |
6831                         get_named_value 'misses' | cut -d" " -f1 | calc_total)
6832
6833         $LCTL set_param debug="$old_debug"
6834         [ $miss -lt 3 ] || error "misses too much pages ('$miss')!"
6835         rm -f $DIR/$tfile
6836 }
6837 run_test 101f "check mmap read performance"
6838
6839 test_101g_brw_size_test() {
6840         local mb=$1
6841         local pages=$((mb * 1048576 / $(page_size)))
6842
6843         $LCTL set_param osc.*.max_pages_per_rpc=${mb}M ||
6844                 { error "unable to set max_pages_per_rpc=${mb}M"; return 1; }
6845         for mp in $($LCTL get_param -n osc.*.max_pages_per_rpc); do
6846                 [ $mp -ne $pages ] && error "max_pages_per_rpc $mp != $pages" &&
6847                         return 2
6848         done
6849
6850         $LCTL set_param -n osc.*.rpc_stats=0
6851
6852         # 10 RPCs should be enough for the test
6853         local count=10
6854         dd if=/dev/zero of=$DIR/$tfile bs=${mb}M count=$count ||
6855                 { error "dd write ${mb} MB blocks failed"; return 3; }
6856         cancel_lru_locks osc
6857         dd of=/dev/null if=$DIR/$tfile bs=${mb}M count=$count ||
6858                 { error "dd write ${mb} MB blocks failed"; return 4; }
6859
6860         # calculate number of full-sized read and write RPCs
6861         rpcs=($($LCTL get_param -n 'osc.*.rpc_stats' |
6862                 sed -n '/pages per rpc/,/^$/p' |
6863                 awk '/'$pages':/ { reads += $2; writes += $6 }; \
6864                 END { print reads,writes }'))
6865         [ ${rpcs[0]} -ne $count ] && error "${rpcs[0]} != $count read RPCs" &&
6866                 return 5
6867         [ ${rpcs[1]} -ne $count ] && error "${rpcs[1]} != $count write RPCs" &&
6868                 return 6
6869
6870         return 0
6871 }
6872
6873 test_101g() {
6874         local rpcs
6875         local osts=$(get_facets OST)
6876         local list=$(comma_list $(osts_nodes))
6877         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
6878         local brw_size="obdfilter.*.brw_size"
6879
6880         $LFS setstripe -i 0 -c 1 $DIR/$tfile
6881
6882         local orig_mb=$(do_facet ost1 $LCTL get_param -n $brw_size | head -n 1)
6883         if [ $(lustre_version_code ost1) -ge $(version_code 2.8.52) -a \
6884              $(lustre_version_code client) -ge $(version_code 2.8.52) ]; then
6885                 [ $(lustre_version_code ost1) -ge $(version_code 2.9.52) ] &&
6886                         suffix="M"
6887                 if [[ $orig_mb -lt 16 ]]; then
6888                         save_lustre_params $osts "$brw_size" > $p
6889                         do_nodes $list $LCTL set_param -n $brw_size=16$suffix ||
6890                                 error "set 16MB RPC size failed"
6891
6892                         echo "remount client to enable new RPC size"
6893                         remount_client $MOUNT || error "remount_client failed"
6894                 fi
6895
6896                 test_101g_brw_size_test 16 || error "16MB RPC test failed"
6897                 # should be able to set brw_size=12, but no rpc_stats for that
6898                 test_101g_brw_size_test 8 || error "8MB RPC test failed"
6899         fi
6900
6901         test_101g_brw_size_test 4 || error "4MB RPC test failed"
6902
6903         if [[ $orig_mb -lt 16 ]]; then
6904                 restore_lustre_params < $p
6905                 remount_client $MOUNT || error "remount_client restore failed"
6906         fi
6907
6908         rm -f $p $DIR/$tfile
6909 }
6910 run_test 101g "Big bulk(4/16 MiB) readahead"
6911
6912 setup_test102() {
6913         test_mkdir $DIR/$tdir
6914         chown $RUNAS_ID $DIR/$tdir
6915         STRIPE_SIZE=65536
6916         STRIPE_OFFSET=1
6917         STRIPE_COUNT=$OSTCOUNT
6918         [[ $OSTCOUNT -gt 4 ]] && STRIPE_COUNT=4
6919
6920         trap cleanup_test102 EXIT
6921         cd $DIR
6922         $1 $SETSTRIPE -S $STRIPE_SIZE -i $STRIPE_OFFSET -c $STRIPE_COUNT $tdir
6923         cd $DIR/$tdir
6924         for num in 1 2 3 4; do
6925                 for count in $(seq 1 $STRIPE_COUNT); do
6926                         for idx in $(seq 0 $[$STRIPE_COUNT - 1]); do
6927                                 local size=`expr $STRIPE_SIZE \* $num`
6928                                 local file=file"$num-$idx-$count"
6929                                 $1 $SETSTRIPE -S $size -i $idx -c $count $file
6930                         done
6931                 done
6932         done
6933
6934         cd $DIR
6935         $1 tar cf $TMP/f102.tar $tdir --xattrs
6936 }
6937
6938 cleanup_test102() {
6939         trap 0
6940         rm -f $TMP/f102.tar
6941         rm -rf $DIR/d0.sanity/d102
6942 }
6943
6944 test_102a() {
6945         local testfile=$DIR/$tfile
6946
6947         touch $testfile
6948
6949         [ "$UID" != 0 ] && skip_env "must run as root" && return
6950         [ -z "$(lctl get_param -n mdc.*-mdc-*.connect_flags | grep xattr)" ] &&
6951                 skip_env "must have user_xattr" && return
6952
6953         [ -z "$(which setfattr 2>/dev/null)" ] &&
6954                 skip_env "could not find setfattr" && return
6955
6956         echo "set/get xattr..."
6957         setfattr -n trusted.name1 -v value1 $testfile ||
6958                 error "setfattr -n trusted.name1=value1 $testfile failed"
6959         getfattr -n trusted.name1 $testfile 2> /dev/null |
6960           grep "trusted.name1=.value1" ||
6961                 error "$testfile missing trusted.name1=value1"
6962
6963         setfattr -n user.author1 -v author1 $testfile ||
6964                 error "setfattr -n user.author1=author1 $testfile failed"
6965         getfattr -n user.author1 $testfile 2> /dev/null |
6966           grep "user.author1=.author1" ||
6967                 error "$testfile missing trusted.author1=author1"
6968
6969         echo "listxattr..."
6970         setfattr -n trusted.name2 -v value2 $testfile ||
6971                 error "$testfile unable to set trusted.name2"
6972         setfattr -n trusted.name3 -v value3 $testfile ||
6973                 error "$testfile unable to set trusted.name3"
6974         [ $(getfattr -d -m "^trusted" $testfile 2> /dev/null |
6975             grep "trusted.name" | wc -l) -eq 3 ] ||
6976                 error "$testfile missing 3 trusted.name xattrs"
6977
6978         setfattr -n user.author2 -v author2 $testfile ||
6979                 error "$testfile unable to set user.author2"
6980         setfattr -n user.author3 -v author3 $testfile ||
6981                 error "$testfile unable to set user.author3"
6982         [ $(getfattr -d -m "^user" $testfile 2> /dev/null |
6983             grep "user.author" | wc -l) -eq 3 ] ||
6984                 error "$testfile missing 3 user.author xattrs"
6985
6986         echo "remove xattr..."
6987         setfattr -x trusted.name1 $testfile ||
6988                 error "$testfile error deleting trusted.name1"
6989         getfattr -d -m trusted $testfile 2> /dev/null | grep "trusted.name1" &&
6990                 error "$testfile did not delete trusted.name1 xattr"
6991
6992         setfattr -x user.author1 $testfile ||
6993                 error "$testfile error deleting user.author1"
6994         echo "set lustre special xattr ..."
6995         $LFS setstripe -c1 $testfile
6996         local lovea=$(getfattr -n "trusted.lov" -e hex $testfile |
6997                 awk -F "=" '/trusted.lov/ { print $2 }' )
6998         setfattr -n "trusted.lov" -v $lovea $testfile ||
6999                 error "$testfile doesn't ignore setting trusted.lov again"
7000         setfattr -n "trusted.lov" -v "invalid_value" $testfile &&
7001                 error "$testfile allow setting invalid trusted.lov"
7002         rm -f $testfile
7003 }
7004 run_test 102a "user xattr test =================================="
7005
7006 test_102b() {
7007         [ -z "$(which setfattr 2>/dev/null)" ] &&
7008                 skip_env "could not find setfattr" && return
7009
7010         # b10930: get/set/list trusted.lov xattr
7011         echo "get/set/list trusted.lov xattr ..."
7012         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
7013         local testfile=$DIR/$tfile
7014         $SETSTRIPE -S 65536 -i 1 -c $OSTCOUNT $testfile ||
7015                 error "setstripe failed"
7016         local STRIPECOUNT=$($GETSTRIPE -c $testfile) ||
7017                 error "getstripe failed"
7018         getfattr -d -m "^trusted" $testfile 2>/dev/null | grep "trusted.lov" ||
7019                 error "can't get trusted.lov from $testfile"
7020
7021         local testfile2=${testfile}2
7022         local value=$(getfattr -n trusted.lov $testfile 2>/dev/null |
7023                         grep "trusted.lov" | sed -e 's/[^=]\+=//')
7024
7025         $MCREATE $testfile2
7026         setfattr -n trusted.lov -v $value $testfile2
7027         local stripe_size=$($GETSTRIPE -S $testfile2)
7028         local stripe_count=$($GETSTRIPE -c $testfile2)
7029         [[ $stripe_size -eq 65536 ]] ||
7030                 error "stripe size $stripe_size != 65536"
7031         [[ $stripe_count -eq $STRIPECOUNT ]] ||
7032                 error "stripe count $stripe_count != $STRIPECOUNT"
7033         rm -f $DIR/$tfile
7034 }
7035 run_test 102b "getfattr/setfattr for trusted.lov EAs ============"
7036
7037 test_102c() {
7038         [ -z "$(which setfattr 2>/dev/null)" ] &&
7039                 skip_env "could not find setfattr" && return
7040
7041         # b10930: get/set/list lustre.lov xattr
7042         echo "get/set/list lustre.lov xattr ..."
7043         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
7044         test_mkdir $DIR/$tdir
7045         chown $RUNAS_ID $DIR/$tdir
7046         local testfile=$DIR/$tdir/$tfile
7047         $RUNAS $SETSTRIPE -S 65536 -i 1 -c $OSTCOUNT $testfile ||
7048                 error "setstripe failed"
7049         local STRIPECOUNT=$($RUNAS $GETSTRIPE -c $testfile) ||
7050                 error "getstripe failed"
7051         $RUNAS getfattr -d -m "^lustre" $testfile 2> /dev/null | \
7052         grep "lustre.lov" || error "can't get lustre.lov from $testfile"
7053
7054         local testfile2=${testfile}2
7055         local value=`getfattr -n lustre.lov $testfile 2> /dev/null | \
7056                      grep "lustre.lov" |sed -e 's/[^=]\+=//'  `
7057
7058         $RUNAS $MCREATE $testfile2
7059         $RUNAS setfattr -n lustre.lov -v $value $testfile2
7060         local stripe_size=$($RUNAS $GETSTRIPE -S $testfile2)
7061         local stripe_count=$($RUNAS $GETSTRIPE -c $testfile2)
7062         [ $stripe_size -eq 65536 ] || error "stripe size $stripe_size != 65536"
7063         [ $stripe_count -eq $STRIPECOUNT ] ||
7064                 error "stripe count $stripe_count != $STRIPECOUNT"
7065 }
7066 run_test 102c "non-root getfattr/setfattr for lustre.lov EAs ==========="
7067
7068 compare_stripe_info1() {
7069         local stripe_index_all_zero=true
7070
7071         for num in 1 2 3 4; do
7072                 for count in $(seq 1 $STRIPE_COUNT); do
7073                         for offset in $(seq 0 $[$STRIPE_COUNT - 1]); do
7074                                 local size=$((STRIPE_SIZE * num))
7075                                 local file=file"$num-$offset-$count"
7076                                 stripe_size=$($LFS getstripe -S $PWD/$file)
7077                                 [[ $stripe_size -ne $size ]] &&
7078                                     error "$file: size $stripe_size != $size"
7079                                 stripe_count=$($LFS getstripe -c $PWD/$file)
7080                                 # allow fewer stripes to be created, ORI-601
7081                                 [[ $stripe_count -lt $(((3 * count + 3) / 4)) ]] &&
7082                                     error "$file: count $stripe_count != $count"
7083                                 stripe_index=$($LFS getstripe -i $PWD/$file)
7084                                 [[ $stripe_index -ne 0 ]] &&
7085                                         stripe_index_all_zero=false
7086                         done
7087                 done
7088         done
7089         $stripe_index_all_zero &&
7090                 error "all files are being extracted starting from OST index 0"
7091         return 0
7092 }
7093
7094 have_xattrs_include() {
7095         tar --help | grep -q xattrs-include &&
7096                 echo --xattrs-include="lustre.*"
7097 }
7098
7099 test_102d() {
7100         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7101         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
7102         XINC=$(have_xattrs_include)
7103         setup_test102
7104         tar xf $TMP/f102.tar -C $DIR/$tdir --xattrs $XINC
7105         cd $DIR/$tdir/$tdir
7106         compare_stripe_info1
7107 }
7108 run_test 102d "tar restore stripe info from tarfile,not keep osts"
7109
7110 test_102f() {
7111         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7112         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
7113         XINC=$(have_xattrs_include)
7114         setup_test102
7115         test_mkdir $DIR/$tdir.restore
7116         cd $DIR
7117         tar cf - --xattrs $tdir | tar xf - \
7118                 -C $DIR/$tdir.restore --xattrs $XINC
7119         cd $DIR/$tdir.restore/$tdir
7120         compare_stripe_info1
7121 }
7122 run_test 102f "tar copy files, not keep osts"
7123
7124 grow_xattr() {
7125         local xsize=${1:-1024}  # in bytes
7126         local file=$DIR/$tfile
7127
7128         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep xattr)" ] &&
7129                 skip "must have user_xattr" && return 0
7130         [ -z "$(which setfattr 2>/dev/null)" ] &&
7131                 skip_env "could not find setfattr" && return 0
7132         [ -z "$(which getfattr 2>/dev/null)" ] &&
7133                 skip_env "could not find getfattr" && return 0
7134
7135         touch $file
7136
7137         local value="$(generate_string $xsize)"
7138
7139         local xbig=trusted.big
7140         log "save $xbig on $file"
7141         setfattr -n $xbig -v $value $file ||
7142                 error "saving $xbig on $file failed"
7143
7144         local orig=$(get_xattr_value $xbig $file)
7145         [[ "$orig" != "$value" ]] && error "$xbig different after saving $xbig"
7146
7147         local xsml=trusted.sml
7148         log "save $xsml on $file"
7149         setfattr -n $xsml -v val $file || error "saving $xsml on $file failed"
7150
7151         local new=$(get_xattr_value $xbig $file)
7152         [[ "$new" != "$orig" ]] && error "$xbig different after saving $xsml"
7153
7154         log "grow $xsml on $file"
7155         setfattr -n $xsml -v "$value" $file ||
7156                 error "growing $xsml on $file failed"
7157
7158         new=$(get_xattr_value $xbig $file)
7159         [[ "$new" != "$orig" ]] && error "$xbig different after growing $xsml"
7160         log "$xbig still valid after growing $xsml"
7161
7162         rm -f $file
7163 }
7164
7165 test_102h() { # bug 15777
7166         grow_xattr 1024
7167 }
7168 run_test 102h "grow xattr from inside inode to external block"
7169
7170 test_102ha() {
7171         large_xattr_enabled || { skip "large_xattr disabled" && return; }
7172         grow_xattr $(max_xattr_size)
7173 }
7174 run_test 102ha "grow xattr from inside inode to external inode"
7175
7176 test_102i() { # bug 17038
7177         [ -z "$(which getfattr 2>/dev/null)" ] &&
7178                 skip "could not find getfattr" && return
7179         touch $DIR/$tfile
7180         ln -s $DIR/$tfile $DIR/${tfile}link
7181         getfattr -n trusted.lov $DIR/$tfile ||
7182                 error "lgetxattr on $DIR/$tfile failed"
7183         getfattr -h -n trusted.lov $DIR/${tfile}link 2>&1 |
7184                 grep -i "no such attr" ||
7185                 error "error for lgetxattr on $DIR/${tfile}link is not ENODATA"
7186         rm -f $DIR/$tfile $DIR/${tfile}link
7187 }
7188 run_test 102i "lgetxattr test on symbolic link ============"
7189
7190 test_102j() {
7191         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7192         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
7193         XINC=$(have_xattrs_include)
7194         setup_test102 "$RUNAS"
7195         chown $RUNAS_ID $DIR/$tdir
7196         $RUNAS tar xf $TMP/f102.tar -C $DIR/$tdir --xattrs $XINC
7197         cd $DIR/$tdir/$tdir
7198         compare_stripe_info1 "$RUNAS"
7199 }
7200 run_test 102j "non-root tar restore stripe info from tarfile, not keep osts ==="
7201
7202 test_102k() {
7203         [ -z "$(which setfattr 2>/dev/null)" ] &&
7204                 skip "could not find setfattr" && return
7205         touch $DIR/$tfile
7206         # b22187 just check that does not crash for regular file.
7207         setfattr -n trusted.lov $DIR/$tfile
7208         # b22187 'setfattr -n trusted.lov' should remove LOV EA for directories
7209         local test_kdir=$DIR/$tdir
7210         test_mkdir $test_kdir
7211         local default_size=$($LFS getstripe -S $test_kdir)
7212         local default_count=$($LFS getstripe -c $test_kdir)
7213         local default_offset=$($LFS getstripe -i $test_kdir)
7214         $SETSTRIPE -S 65536 -i 0 -c $OSTCOUNT $test_kdir ||
7215                 error 'dir setstripe failed'
7216         setfattr -n trusted.lov $test_kdir
7217         local stripe_size=$($LFS getstripe -S $test_kdir)
7218         local stripe_count=$($LFS getstripe -c $test_kdir)
7219         local stripe_offset=$($LFS getstripe -i $test_kdir)
7220         [ $stripe_size -eq $default_size ] ||
7221                 error "stripe size $stripe_size != $default_size"
7222         [ $stripe_count -eq $default_count ] ||
7223                 error "stripe count $stripe_count != $default_count"
7224         [ $stripe_offset -eq $default_offset ] ||
7225                 error "stripe offset $stripe_offset != $default_offset"
7226         rm -rf $DIR/$tfile $test_kdir
7227 }
7228 run_test 102k "setfattr without parameter of value shouldn't cause a crash"
7229
7230 test_102l() {
7231         [ -z "$(which getfattr 2>/dev/null)" ] &&
7232                 skip "could not find getfattr" && return
7233
7234         # LU-532 trusted. xattr is invisible to non-root
7235         local testfile=$DIR/$tfile
7236
7237         touch $testfile
7238
7239         echo "listxattr as user..."
7240         chown $RUNAS_ID $testfile
7241         $RUNAS getfattr -d -m '.*' $testfile 2>&1 |
7242             grep -q "trusted" &&
7243                 error "$testfile trusted xattrs are user visible"
7244
7245         return 0;
7246 }
7247 run_test 102l "listxattr size test =================================="
7248
7249 test_102m() { # LU-3403 llite: error of listxattr when buffer is small
7250         local path=$DIR/$tfile
7251         touch $path
7252
7253         listxattr_size_check $path || error "listattr_size_check $path failed"
7254 }
7255 run_test 102m "Ensure listxattr fails on small bufffer ========"
7256
7257 cleanup_test102
7258
7259 getxattr() { # getxattr path name
7260         # Return the base64 encoding of the value of xattr name on path.
7261         local path=$1
7262         local name=$2
7263
7264         # # getfattr --absolute-names --encoding=base64 --name=trusted.lov $path
7265         # file: $path
7266         # trusted.lov=0s0AvRCwEAAAAGAAAAAAAAAAAEAAACAAAAAAAQAAEAA...AAAAAAAAA=
7267         #
7268         # We print just 0s0AvRCwEAAAAGAAAAAAAAAAAEAAACAAAAAAAQAAEAA...AAAAAAAAA=
7269
7270         getfattr --absolute-names --encoding=base64 --name=$name $path |
7271                 awk -F= -v name=$name '$1 == name {
7272                         print substr($0, index($0, "=") + 1);
7273         }'
7274 }
7275
7276 test_102n() { # LU-4101 mdt: protect internal xattrs
7277         [ -z "$(which setfattr 2>/dev/null)" ] &&
7278                 skip "could not find setfattr" && return
7279         if [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.5.50) ]
7280         then
7281                 skip "MDT < 2.5.50 allows setxattr on internal trusted xattrs"
7282                 return
7283         fi
7284
7285         local file0=$DIR/$tfile.0
7286         local file1=$DIR/$tfile.1
7287         local xattr0=$TMP/$tfile.0
7288         local xattr1=$TMP/$tfile.1
7289         local namelist="lov lma lmv link fid version som hsm"
7290         local name
7291         local value
7292
7293         rm -rf $file0 $file1 $xattr0 $xattr1
7294         touch $file0 $file1
7295
7296         # Get 'before' xattrs of $file1.
7297         getfattr --absolute-names --dump --match=- $file1 > $xattr0
7298
7299         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.53) ] &&
7300                 namelist+=" lfsck_namespace"
7301         for name in $namelist; do
7302                 # Try to copy xattr from $file0 to $file1.
7303                 value=$(getxattr $file0 trusted.$name 2> /dev/null)
7304
7305                 setfattr --name=trusted.$name --value="$value" $file1 ||
7306                         error "setxattr 'trusted.$name' failed"
7307
7308                 # Try to set a garbage xattr.
7309                 value=0sVGhlIHF1aWNrIGJyb3duIGZveCBqdW1wcyBvdmVyIGl0c2VsZi4=
7310
7311                 if [[ x$name == "xlov" ]]; then
7312                         setfattr --name=trusted.lov --value="$value" $file1 &&
7313                         error "setxattr invalid 'trusted.lov' success"
7314                 else
7315                         setfattr --name=trusted.$name --value="$value" $file1 ||
7316                                 error "setxattr invalid 'trusted.$name' failed"
7317                 fi
7318
7319                 # Try to remove the xattr from $file1. We don't care if this
7320                 # appears to succeed or fail, we just don't want there to be
7321                 # any changes or crashes.
7322                 setfattr --remove=$trusted.$name $file1 2> /dev/null
7323         done
7324
7325         if [ $(lustre_version_code $SINGLEMDS) -gt $(version_code 2.6.50) ]
7326         then
7327                 name="lfsck_ns"
7328                 # Try to copy xattr from $file0 to $file1.
7329                 value=$(getxattr $file0 trusted.$name 2> /dev/null)
7330
7331                 setfattr --name=trusted.$name --value="$value" $file1 ||
7332                         error "setxattr 'trusted.$name' failed"
7333
7334                 # Try to set a garbage xattr.
7335                 value=0sVGhlIHF1aWNrIGJyb3duIGZveCBqdW1wcyBvdmVyIGl0c2VsZi4=
7336
7337                 setfattr --name=trusted.$name --value="$value" $file1 ||
7338                         error "setxattr 'trusted.$name' failed"
7339
7340                 # Try to remove the xattr from $file1. We don't care if this
7341                 # appears to succeed or fail, we just don't want there to be
7342                 # any changes or crashes.
7343                 setfattr --remove=$trusted.$name $file1 2> /dev/null
7344         fi
7345
7346         # Get 'after' xattrs of file1.
7347         getfattr --absolute-names --dump --match=- $file1 > $xattr1
7348
7349         if ! diff $xattr0 $xattr1; then
7350                 error "before and after xattrs of '$file1' differ"
7351         fi
7352
7353         rm -rf $file0 $file1 $xattr0 $xattr1
7354
7355         return 0
7356 }
7357 run_test 102n "silently ignore setxattr on internal trusted xattrs"
7358
7359 test_102p() { # LU-4703 setxattr did not check ownership
7360         local testfile=$DIR/$tfile
7361
7362         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.5.56) ] &&
7363                 skip "MDS needs to be at least 2.5.56" && return
7364
7365         touch $testfile
7366
7367         echo "setfacl as user..."
7368         $RUNAS setfacl -m "u:$RUNAS_ID:rwx" $testfile
7369         [ $? -ne 0 ] || error "setfacl by $RUNAS_ID was allowed on $testfile"
7370
7371         echo "setfattr as user..."
7372         setfacl -m "u:$RUNAS_ID:---" $testfile
7373         $RUNAS setfattr -x system.posix_acl_access $testfile
7374         [ $? -ne 0 ] || error "setfattr by $RUNAS_ID was allowed on $testfile"
7375 }
7376 run_test 102p "check setxattr(2) correctly fails without permission"
7377
7378 test_102q() {
7379         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.6.92) ] &&
7380                 skip "MDS needs to be at least 2.6.92" && return
7381         orphan_linkea_check $DIR/$tfile || error "orphan_linkea_check"
7382 }
7383 run_test 102q "flistxattr should not return trusted.link EAs for orphans"
7384
7385 test_102r() {
7386         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.6.93) ] &&
7387                 skip "MDS needs to be at least 2.6.93" && return
7388         touch $DIR/$tfile || error "touch"
7389         setfattr -n user.$(basename $tfile) $DIR/$tfile || error "setfattr"
7390         getfattr -n user.$(basename $tfile) $DIR/$tfile || error "getfattr"
7391         rm $DIR/$tfile || error "rm"
7392
7393         #normal directory
7394         mkdir -p $DIR/$tdir || error "mkdir"
7395         setfattr -n user.$(basename $tdir) $DIR/$tdir || error "setfattr dir"
7396         getfattr -n user.$(basename $tdir) $DIR/$tdir || error "getfattr dir"
7397         setfattr -x user.$(basename $tdir) $DIR/$tdir ||
7398                 error "$testfile error deleting user.author1"
7399         getfattr -d -m user.$(basename $tdir) 2> /dev/null |
7400                 grep "user.$(basename $tdir)" &&
7401                 error "$tdir did not delete user.$(basename $tdir)"
7402         rmdir $DIR/$tdir || error "rmdir"
7403
7404         #striped directory
7405         test_mkdir $DIR/$tdir
7406         setfattr -n user.$(basename $tdir) $DIR/$tdir || error "setfattr dir"
7407         getfattr -n user.$(basename $tdir) $DIR/$tdir || error "getfattr dir"
7408         setfattr -x user.$(basename $tdir) $DIR/$tdir ||
7409                 error "$testfile error deleting user.author1"
7410         getfattr -d -m user.$(basename $tdir) 2> /dev/null |
7411                 grep "user.$(basename $tdir)" &&
7412                 error "$tdir did not delete user.$(basename $tdir)"
7413         rmdir $DIR/$tdir || error "rm striped dir"
7414 }
7415 run_test 102r "set EAs with empty values"
7416
7417 run_acl_subtest()
7418 {
7419     $LUSTRE/tests/acl/run $LUSTRE/tests/acl/$1.test
7420     return $?
7421 }
7422
7423 test_103a() {
7424         [ "$UID" != 0 ] && skip_env "must run as root" && return
7425         [ -z "$(lctl get_param -n mdc.*-mdc-*.connect_flags | grep acl)" ] &&
7426                 skip "must have acl enabled" && return
7427         [ -z "$(which setfacl 2>/dev/null)" ] &&
7428                 skip_env "could not find setfacl" && return
7429         $GSS && skip "could not run under gss" && return
7430         remote_mds_nodsh && skip "remote MDS with nodsh" && return
7431
7432         gpasswd -a daemon bin                           # LU-5641
7433         do_facet $SINGLEMDS gpasswd -a daemon bin       # LU-5641
7434
7435         declare -a identity_old
7436
7437         for num in $(seq $MDSCOUNT); do
7438                 switch_identity $num true || identity_old[$num]=$?
7439         done
7440
7441         SAVE_UMASK=$(umask)
7442         umask 0022
7443         mkdir -p $DIR/$tdir
7444         cd $DIR/$tdir
7445
7446         echo "performing cp ..."
7447         run_acl_subtest cp || error "run_acl_subtest cp failed"
7448         echo "performing getfacl-noacl..."
7449         run_acl_subtest getfacl-noacl || error "getfacl-noacl test failed"
7450         echo "performing misc..."
7451         run_acl_subtest misc || error  "misc test failed"
7452         echo "performing permissions..."
7453         run_acl_subtest permissions || error "permissions failed"
7454         # LU-1482 mdd: Setting xattr are properly checked with and without ACLs
7455         if [ $(lustre_version_code $SINGLEMDS) -gt $(version_code 2.8.55) -o \
7456              \( $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.6) -a \
7457              $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.5.29) \) ]
7458         then
7459                 echo "performing permissions xattr..."
7460                 run_acl_subtest permissions_xattr ||
7461                         error "permissions_xattr failed"
7462         fi
7463         echo "performing setfacl..."
7464         run_acl_subtest setfacl || error  "setfacl test failed"
7465
7466         # inheritance test got from HP
7467         echo "performing inheritance..."
7468         cp $LUSTRE/tests/acl/make-tree . || error "cannot copy make-tree"
7469         chmod +x make-tree || error "chmod +x failed"
7470         run_acl_subtest inheritance || error "inheritance test failed"
7471         rm -f make-tree
7472
7473         echo "LU-974 ignore umask when acl is enabled..."
7474         run_acl_subtest 974 || error "LU-974 umask test failed"
7475         if [ $MDSCOUNT -ge 2 ]; then
7476                 run_acl_subtest 974_remote ||
7477                         error "LU-974 umask test failed under remote dir"
7478         fi
7479
7480         echo "LU-2561 newly created file is same size as directory..."
7481         if [ $(facet_fstype $SINGLEMDS) != "zfs" ]; then
7482                 run_acl_subtest 2561 || error "LU-2561 test failed"
7483         else
7484                 run_acl_subtest 2561_zfs || error "LU-2561 zfs test failed"
7485         fi
7486
7487         run_acl_subtest 4924 || error "LU-4924 test failed"
7488
7489         cd $SAVE_PWD
7490         umask $SAVE_UMASK
7491
7492         for num in $(seq $MDSCOUNT); do
7493                 if [ "${identity_old[$num]}" = 1 ]; then
7494                         switch_identity $num false || identity_old[$num]=$?
7495                 fi
7496         done
7497 }
7498 run_test 103a "acl test ========================================="
7499
7500 test_103c() {
7501         mkdir -p $DIR/$tdir
7502         cp -rp $DIR/$tdir $DIR/$tdir.bak
7503
7504         [ -n "$(getfattr -d -m. $DIR/$tdir | grep posix_acl_default)" ] &&
7505                 error "$DIR/$tdir shouldn't contain default ACL"
7506         [ -n "$(getfattr -d -m. $DIR/$tdir.bak | grep posix_acl_default)" ] &&
7507                 error "$DIR/$tdir.bak shouldn't contain default ACL"
7508         true
7509 }
7510 run_test 103c "'cp -rp' won't set empty acl"
7511
7512 test_104a() {
7513         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7514         touch $DIR/$tfile
7515         lfs df || error "lfs df failed"
7516         lfs df -ih || error "lfs df -ih failed"
7517         lfs df -h $DIR || error "lfs df -h $DIR failed"
7518         lfs df -i $DIR || error "lfs df -i $DIR failed"
7519         lfs df $DIR/$tfile || error "lfs df $DIR/$tfile failed"
7520         lfs df -ih $DIR/$tfile || error "lfs df -ih $DIR/$tfile failed"
7521
7522         local OSC=$(lctl dl | grep OST0000-osc-[^M] | awk '{ print $4 }')
7523         lctl --device %$OSC deactivate
7524         lfs df || error "lfs df with deactivated OSC failed"
7525         lctl --device %$OSC activate
7526         # wait the osc back to normal
7527         wait_osc_import_state client ost FULL
7528
7529         lfs df || error "lfs df with reactivated OSC failed"
7530         rm -f $DIR/$tfile
7531 }
7532 run_test 104a "lfs df [-ih] [path] test ========================="
7533
7534 test_104b() {
7535         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7536         [ $RUNAS_ID -eq $UID ] &&
7537                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
7538         chmod 666 /dev/obd
7539         denied_cnt=$(($($RUNAS $LFS check servers 2>&1 |
7540                         grep "Permission denied" | wc -l)))
7541         if [ $denied_cnt -ne 0 ]; then
7542                 error "lfs check servers test failed"
7543         fi
7544 }
7545 run_test 104b "$RUNAS lfs check servers test ===================="
7546
7547 test_105a() {
7548         # doesn't work on 2.4 kernels
7549         touch $DIR/$tfile
7550         if $(flock_is_enabled); then
7551                 flocks_test 1 on -f $DIR/$tfile || error "fail flock on"
7552         else
7553                 flocks_test 1 off -f $DIR/$tfile || error "fail flock off"
7554         fi
7555         rm -f $DIR/$tfile
7556 }
7557 run_test 105a "flock when mounted without -o flock test ========"
7558
7559 test_105b() {
7560         touch $DIR/$tfile
7561         if $(flock_is_enabled); then
7562                 flocks_test 1 on -c $DIR/$tfile || error "fail flock on"
7563         else
7564                 flocks_test 1 off -c $DIR/$tfile || error "fail flock off"
7565         fi
7566         rm -f $DIR/$tfile
7567 }
7568 run_test 105b "fcntl when mounted without -o flock test ========"
7569
7570 test_105c() {
7571         touch $DIR/$tfile
7572         if $(flock_is_enabled); then
7573                 flocks_test 1 on -l $DIR/$tfile || error "fail flock on"
7574         else
7575                 flocks_test 1 off -l $DIR/$tfile || error "fail flock off"
7576         fi
7577         rm -f $DIR/$tfile
7578 }
7579 run_test 105c "lockf when mounted without -o flock test"
7580
7581 test_105d() { # bug 15924
7582         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7583         test_mkdir $DIR/$tdir
7584         flock_is_enabled || { skip "mount w/o flock enabled" && return; }
7585         #define OBD_FAIL_LDLM_CP_CB_WAIT  0x315
7586         $LCTL set_param fail_loc=0x80000315
7587         flocks_test 2 $DIR/$tdir
7588 }
7589 run_test 105d "flock race (should not freeze) ========"
7590
7591 test_105e() { # bug 22660 && 22040
7592         flock_is_enabled || { skip "mount w/o flock enabled" && return; }
7593         touch $DIR/$tfile
7594         flocks_test 3 $DIR/$tfile
7595 }
7596 run_test 105e "Two conflicting flocks from same process"
7597
7598 test_106() { #bug 10921
7599         test_mkdir $DIR/$tdir
7600         $DIR/$tdir && error "exec $DIR/$tdir succeeded"
7601         chmod 777 $DIR/$tdir || error "chmod $DIR/$tdir failed"
7602 }
7603 run_test 106 "attempt exec of dir followed by chown of that dir"
7604
7605 test_107() {
7606         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7607         CDIR=`pwd`
7608         cd $DIR
7609
7610         local file=core
7611         rm -f $file
7612
7613         local save_pattern=$(sysctl -n kernel.core_pattern)
7614         local save_uses_pid=$(sysctl -n kernel.core_uses_pid)
7615         sysctl -w kernel.core_pattern=$file
7616         sysctl -w kernel.core_uses_pid=0
7617
7618         ulimit -c unlimited
7619         sleep 60 &
7620         SLEEPPID=$!
7621
7622         sleep 1
7623
7624         kill -s 11 $SLEEPPID
7625         wait $SLEEPPID
7626         if [ -e $file ]; then
7627                 size=`stat -c%s $file`
7628                 [ $size -eq 0 ] && error "Fail to create core file $file"
7629         else
7630                 error "Fail to create core file $file"
7631         fi
7632         rm -f $file
7633         sysctl -w kernel.core_pattern=$save_pattern
7634         sysctl -w kernel.core_uses_pid=$save_uses_pid
7635         cd $CDIR
7636 }
7637 run_test 107 "Coredump on SIG"
7638
7639 test_110() {
7640         test_mkdir $DIR/$tdir
7641         test_mkdir $DIR/$tdir/$(str_repeat 'a' 255)
7642         $LFS mkdir -c $MDSCOUNT $DIR/$tdir/$(str_repeat 'b' 256) &&
7643                 error "mkdir with 256 char should fail, but did not"
7644         touch $DIR/$tdir/$(str_repeat 'x' 255) ||
7645                 error "create with 255 char failed"
7646         touch $DIR/$tdir/$(str_repeat 'y' 256) &&
7647                 error "create with 256 char should fail, but did not"
7648
7649         ls -l $DIR/$tdir
7650         rm -rf $DIR/$tdir
7651 }
7652 run_test 110 "filename length checking"
7653
7654 #
7655 # Purpose: To verify dynamic thread (OSS) creation.
7656 #
7657 test_115() {
7658         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7659         remote_ost_nodsh && skip "remote OST with nodsh" && return
7660
7661         # Lustre does not stop service threads once they are started.
7662         # Reset number of running threads to default.
7663         stopall
7664         setupall
7665
7666         local OSTIO_pre
7667         local save_params="$TMP/sanity-$TESTNAME.parameters"
7668
7669         # Get ll_ost_io count before I/O
7670         OSTIO_pre=$(do_facet ost1 \
7671                 "$LCTL get_param ost.OSS.ost_io.threads_started | cut -d= -f2")
7672         # Exit if lustre is not running (ll_ost_io not running).
7673         [ -z "$OSTIO_pre" ] && error "no OSS threads"
7674
7675         echo "Starting with $OSTIO_pre threads"
7676         local thread_max=$((OSTIO_pre * 2))
7677         local rpc_in_flight=$((thread_max * 2))
7678         # Number of I/O Process proposed to be started.
7679         local nfiles
7680         local facets=$(get_facets OST)
7681
7682         save_lustre_params client "osc.*OST*.max_rpcs_in_flight" > $save_params
7683         save_lustre_params $facets "ost.OSS.ost_io.threads_max" >> $save_params
7684
7685         # Set in_flight to $rpc_in_flight
7686         $LCTL set_param osc.*OST*.max_rpcs_in_flight=$rpc_in_flight ||
7687                 error "Failed to set max_rpcs_in_flight to $rpc_in_flight"
7688         nfiles=${rpc_in_flight}
7689         # Set ost thread_max to $thread_max
7690         do_facet ost1 "$LCTL set_param ost.OSS.ost_io.threads_max=$thread_max"
7691
7692         # 5 Minutes should be sufficient for max number of OSS
7693         # threads(thread_max) to be created.
7694         local timeout=300
7695
7696         # Start I/O.
7697         local WTL=${WTL:-"$LUSTRE/tests/write_time_limit"}
7698         test_mkdir $DIR/$tdir
7699         for i in $(seq $nfiles); do
7700                 local file=$DIR/$tdir/${tfile}-$i
7701                 $LFS setstripe -c -1 -i 0 $file
7702                 ($WTL $file $timeout)&
7703         done
7704
7705         # I/O Started - Wait for thread_started to reach thread_max or report
7706         # error if thread_started is more than thread_max.
7707         echo "Waiting for thread_started to reach thread_max"
7708         local thread_started=0
7709         local end_time=$((SECONDS + timeout))
7710
7711         while [ $SECONDS -le $end_time ] ; do
7712                 echo -n "."
7713                 # Get ost i/o thread_started count.
7714                 thread_started=$(do_facet ost1 \
7715                         "$LCTL get_param \
7716                         ost.OSS.ost_io.threads_started | cut -d= -f2")
7717                 # Break out if thread_started is equal/greater than thread_max
7718                 if [[ $thread_started -ge $thread_max ]]; then
7719                         echo ll_ost_io thread_started $thread_started, \
7720                                 equal/greater than thread_max $thread_max
7721                         break
7722                 fi
7723                 sleep 1
7724         done
7725
7726         # Cleanup - We have the numbers, Kill i/o jobs if running.
7727         jobcount=($(jobs -p))
7728         for i in $(seq 0 $((${#jobcount[@]}-1)))
7729         do
7730                 kill -9 ${jobcount[$i]}
7731                 if [ $? -ne 0 ] ; then
7732                         echo Warning: \
7733                         Failed to Kill \'WTL\(I/O\)\' with pid ${jobcount[$i]}
7734                 fi
7735         done
7736
7737         # Cleanup files left by WTL binary.
7738         for i in $(seq $nfiles); do
7739                 local file=$DIR/$tdir/${tfile}-$i
7740                 rm -rf $file
7741                 if [ $? -ne 0 ] ; then
7742                         echo "Warning: Failed to delete file $file"
7743                 fi
7744         done
7745
7746         restore_lustre_params <$save_params
7747         rm -f $save_params || echo "Warning: delete file '$save_params' failed"
7748
7749         # Error out if no new thread has started or Thread started is greater
7750         # than thread max.
7751         if [[ $thread_started -le $OSTIO_pre ||
7752                         $thread_started -gt $thread_max ]]; then
7753                 error "ll_ost_io: thread_started $thread_started" \
7754                       "OSTIO_pre $OSTIO_pre, thread_max $thread_max." \
7755                       "No new thread started or thread started greater " \
7756                       "than thread_max."
7757         fi
7758 }
7759 run_test 115 "verify dynamic thread creation===================="
7760
7761 free_min_max () {
7762         wait_delete_completed
7763         AVAIL=($(lctl get_param -n osc.*[oO][sS][cC]-[^M]*.kbytesavail))
7764         echo "OST kbytes available: ${AVAIL[@]}"
7765         MAXV=${AVAIL[0]}
7766         MAXI=0
7767         MINV=${AVAIL[0]}
7768         MINI=0
7769         for ((i = 0; i < ${#AVAIL[@]}; i++)); do
7770                 #echo OST $i: ${AVAIL[i]}kb
7771                 if [[ ${AVAIL[i]} -gt $MAXV ]]; then
7772                         MAXV=${AVAIL[i]}
7773                         MAXI=$i
7774                 fi
7775                 if [[ ${AVAIL[i]} -lt $MINV ]]; then
7776                         MINV=${AVAIL[i]}
7777                         MINI=$i
7778                 fi
7779         done
7780         echo "Min free space: OST $MINI: $MINV"
7781         echo "Max free space: OST $MAXI: $MAXV"
7782 }
7783
7784 test_116a() { # was previously test_116()
7785         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7786         remote_mds_nodsh && skip "remote MDS with nodsh" && return
7787
7788         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
7789
7790         echo -n "Free space priority "
7791         do_facet $SINGLEMDS lctl get_param -n lo*.*-mdtlov.qos_prio_free |
7792                 head -n1
7793         declare -a AVAIL
7794         free_min_max
7795
7796         [ $MINV -eq 0 ] && skip "no free space in OST$MINI, skip" && return
7797         [ $MINV -gt 10000000 ] && skip "too much free space in OST$MINI, skip" \
7798                 && return
7799         trap simple_cleanup_common EXIT
7800
7801
7802         # Check if we need to generate uneven OSTs
7803         test_mkdir -p $DIR/$tdir/OST${MINI}
7804         local FILL=$((MINV / 4))
7805         local DIFF=$((MAXV - MINV))
7806         local DIFF2=$((DIFF * 100 / MINV))
7807
7808         local threshold=$(do_facet $SINGLEMDS \
7809                 lctl get_param -n *.*MDT0000-mdtlov.qos_threshold_rr | head -n1)
7810         threshold=${threshold%%%}
7811         echo -n "Check for uneven OSTs: "
7812         echo -n "diff=${DIFF}KB (${DIFF2}%) must be > ${threshold}% ..."
7813
7814         if [[ $DIFF2 -gt $threshold ]]; then
7815                 echo "ok"
7816                 echo "Don't need to fill OST$MINI"
7817         else
7818                 # generate uneven OSTs. Write 2% over the QOS threshold value
7819                 echo "no"
7820                 DIFF=$((threshold - DIFF2 + 2))
7821                 DIFF2=$((MINV * DIFF / 100))
7822                 echo "Fill $DIFF% remaining space in OST$MINI with ${DIFF2}KB"
7823                 $SETSTRIPE -i $MINI -c 1 $DIR/$tdir/OST${MINI} ||
7824                         error "setstripe failed"
7825                 DIFF=$((DIFF2 / 2048))
7826                 i=0
7827                 while [ $i -lt $DIFF ]; do
7828                         i=$((i + 1))
7829                         dd if=/dev/zero of=$DIR/$tdir/OST${MINI}/$tfile-$i \
7830                                 bs=2M count=1 2>/dev/null
7831                         echo -n .
7832                 done
7833                 echo .
7834                 sync
7835                 sleep_maxage
7836                 free_min_max
7837         fi
7838
7839         DIFF=$((MAXV - MINV))
7840         DIFF2=$((DIFF * 100 / MINV))
7841         echo -n "diff=$DIFF=$DIFF2% must be > $threshold% for QOS mode..."
7842         if [ $DIFF2 -gt $threshold ]; then
7843                 echo "ok"
7844         else
7845                 echo "failed - QOS mode won't be used"
7846                 skip "QOS imbalance criteria not met"
7847                 simple_cleanup_common
7848                 return
7849         fi
7850
7851         MINI1=$MINI
7852         MINV1=$MINV
7853         MAXI1=$MAXI
7854         MAXV1=$MAXV
7855
7856         # now fill using QOS
7857         $SETSTRIPE -c 1 $DIR/$tdir
7858         FILL=$((FILL / 200))
7859         if [ $FILL -gt 600 ]; then
7860                 FILL=600
7861         fi
7862         echo "writing $FILL files to QOS-assigned OSTs"
7863         i=0
7864         while [ $i -lt $FILL ]; do
7865                 i=$((i + 1))
7866                 dd if=/dev/zero of=$DIR/$tdir/$tfile-$i bs=200k \
7867                         count=1 2>/dev/null
7868                 echo -n .
7869         done
7870         echo "wrote $i 200k files"
7871         sync
7872         sleep_maxage
7873
7874         echo "Note: free space may not be updated, so measurements might be off"
7875         free_min_max
7876         DIFF2=$((MAXV - MINV))
7877         echo "free space delta: orig $DIFF final $DIFF2"
7878         [ $DIFF2 -gt $DIFF ] && echo "delta got worse!"
7879         DIFF=$((MINV1 - ${AVAIL[$MINI1]}))
7880         echo "Wrote ${DIFF}KB to smaller OST $MINI1"
7881         DIFF2=$((MAXV1 - ${AVAIL[$MAXI1]}))
7882         echo "Wrote ${DIFF2}KB to larger OST $MAXI1"
7883         if [[ $DIFF -gt 0 ]]; then
7884                 FILL=$((DIFF2 * 100 / DIFF - 100))
7885                 echo "Wrote ${FILL}% more data to larger OST $MAXI1"
7886         fi
7887
7888         # Figure out which files were written where
7889         UUID=$(lctl get_param -n lov.${FSNAME}-clilov-*.target_obd |
7890                awk '/'$MINI1': / {print $2; exit}')
7891         echo $UUID
7892         MINC=$($GETSTRIPE --ost $UUID $DIR/$tdir | grep $DIR | wc -l)
7893         echo "$MINC files created on smaller OST $MINI1"
7894         UUID=$(lctl get_param -n lov.${FSNAME}-clilov-*.target_obd |
7895                awk '/'$MAXI1': / {print $2; exit}')
7896         echo $UUID
7897         MAXC=$($GETSTRIPE --ost $UUID $DIR/$tdir | grep $DIR | wc -l)
7898         echo "$MAXC files created on larger OST $MAXI1"
7899         if [[ $MINC -gt 0 ]]; then
7900                 FILL=$((MAXC * 100 / MINC - 100))
7901                 echo "Wrote ${FILL}% more files to larger OST $MAXI1"
7902         fi
7903         [[ $MAXC -gt $MINC ]] ||
7904                 error_ignore LU-9 "stripe QOS didn't balance free space"
7905         simple_cleanup_common
7906 }
7907 run_test 116a "stripe QOS: free space balance ==================="
7908
7909 test_116b() { # LU-2093
7910         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7911         remote_mds_nodsh && skip "remote MDS with nodsh" && return
7912
7913 #define OBD_FAIL_MDS_OSC_CREATE_FAIL     0x147
7914         local old_rr=$(do_facet $SINGLEMDS lctl get_param -n \
7915                        lo*.$FSNAME-MDT0000-mdtlov.qos_threshold_rr | head -1)
7916         [ -z "$old_rr" ] && skip "no QOS" && return 0
7917         do_facet $SINGLEMDS lctl set_param \
7918                 lo*.$FSNAME-MDT0000-mdtlov.qos_threshold_rr=0
7919         mkdir -p $DIR/$tdir
7920         do_facet $SINGLEMDS lctl set_param fail_loc=0x147
7921         createmany -o $DIR/$tdir/f- 20 || error "can't create"
7922         do_facet $SINGLEMDS lctl set_param fail_loc=0
7923         rm -rf $DIR/$tdir
7924         do_facet $SINGLEMDS lctl set_param \
7925                 lo*.$FSNAME-MDT0000-mdtlov.qos_threshold_rr=$old_rr
7926 }
7927 run_test 116b "QoS shouldn't LBUG if not enough OSTs found on the 2nd pass"
7928
7929 test_117() # bug 10891
7930 {
7931         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7932         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1
7933         #define OBD_FAIL_OST_SETATTR_CREDITS 0x21e
7934         lctl set_param fail_loc=0x21e
7935         > $DIR/$tfile || error "truncate failed"
7936         lctl set_param fail_loc=0
7937         echo "Truncate succeeded."
7938         rm -f $DIR/$tfile
7939 }
7940 run_test 117 "verify osd extend =========="
7941
7942 NO_SLOW_RESENDCOUNT=4
7943 export OLD_RESENDCOUNT=""
7944 set_resend_count () {
7945         local PROC_RESENDCOUNT="osc.${FSNAME}-OST*-osc-*.resend_count"
7946         OLD_RESENDCOUNT=$(lctl get_param -n $PROC_RESENDCOUNT | head -n1)
7947         lctl set_param -n $PROC_RESENDCOUNT $1
7948         echo resend_count is set to $(lctl get_param -n $PROC_RESENDCOUNT)
7949 }
7950
7951 # for reduce test_118* time (b=14842)
7952 [ "$SLOW" = "no" ] && set_resend_count $NO_SLOW_RESENDCOUNT
7953
7954 # Reset async IO behavior after error case
7955 reset_async() {
7956         FILE=$DIR/reset_async
7957
7958         # Ensure all OSCs are cleared
7959         $SETSTRIPE -c -1 $FILE
7960         dd if=/dev/zero of=$FILE bs=64k count=$OSTCOUNT
7961         sync
7962         rm $FILE
7963 }
7964
7965 test_118a() #bug 11710
7966 {
7967         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7968         reset_async
7969
7970         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
7971         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
7972         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
7973
7974         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
7975                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
7976                 return 1;
7977         fi
7978         rm -f $DIR/$tfile
7979 }
7980 run_test 118a "verify O_SYNC works =========="
7981
7982 test_118b()
7983 {
7984         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7985         remote_ost_nodsh && skip "remote OST with nodsh" && return
7986
7987         reset_async
7988
7989         #define OBD_FAIL_SRV_ENOENT 0x217
7990         set_nodes_failloc "$(osts_nodes)" 0x217
7991         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
7992         RC=$?
7993         set_nodes_failloc "$(osts_nodes)" 0
7994         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
7995         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
7996                     grep -c writeback)
7997
7998         if [[ $RC -eq 0 ]]; then
7999                 error "Must return error due to dropped pages, rc=$RC"
8000                 return 1;
8001         fi
8002
8003         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
8004                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
8005                 return 1;
8006         fi
8007
8008         echo "Dirty pages not leaked on ENOENT"
8009
8010         # Due to the above error the OSC will issue all RPCs syncronously
8011         # until a subsequent RPC completes successfully without error.
8012         $MULTIOP $DIR/$tfile Ow4096yc
8013         rm -f $DIR/$tfile
8014
8015         return 0
8016 }
8017 run_test 118b "Reclaim dirty pages on fatal error =========="
8018
8019 test_118c()
8020 {
8021         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8022
8023         # for 118c, restore the original resend count, LU-1940
8024         [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] &&
8025                                 set_resend_count $OLD_RESENDCOUNT
8026         remote_ost_nodsh && skip "remote OST with nodsh" && return
8027
8028         reset_async
8029
8030         #define OBD_FAIL_OST_EROFS               0x216
8031         set_nodes_failloc "$(osts_nodes)" 0x216
8032
8033         # multiop should block due to fsync until pages are written
8034         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
8035         MULTIPID=$!
8036         sleep 1
8037
8038         if [[ `ps h -o comm -p $MULTIPID` != "multiop" ]]; then
8039                 error "Multiop failed to block on fsync, pid=$MULTIPID"
8040         fi
8041
8042         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
8043                     grep -c writeback)
8044         if [[ $WRITEBACK -eq 0 ]]; then
8045                 error "No page in writeback, writeback=$WRITEBACK"
8046         fi
8047
8048         set_nodes_failloc "$(osts_nodes)" 0
8049         wait $MULTIPID
8050         RC=$?
8051         if [[ $RC -ne 0 ]]; then
8052                 error "Multiop fsync failed, rc=$RC"
8053         fi
8054
8055         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
8056         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
8057                     grep -c writeback)
8058         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
8059                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
8060         fi
8061
8062         rm -f $DIR/$tfile
8063         echo "Dirty pages flushed via fsync on EROFS"
8064         return 0
8065 }
8066 run_test 118c "Fsync blocks on EROFS until dirty pages are flushed =========="
8067
8068 # continue to use small resend count to reduce test_118* time (b=14842)
8069 [ "$SLOW" = "no" ] && set_resend_count $NO_SLOW_RESENDCOUNT
8070
8071 test_118d()
8072 {
8073         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8074         remote_ost_nodsh && skip "remote OST with nodsh" && return
8075
8076         reset_async
8077
8078         #define OBD_FAIL_OST_BRW_PAUSE_BULK
8079         set_nodes_failloc "$(osts_nodes)" 0x214
8080         # multiop should block due to fsync until pages are written
8081         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
8082         MULTIPID=$!
8083         sleep 1
8084
8085         if [[ `ps h -o comm -p $MULTIPID` != "multiop" ]]; then
8086                 error "Multiop failed to block on fsync, pid=$MULTIPID"
8087         fi
8088
8089         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
8090                     grep -c writeback)
8091         if [[ $WRITEBACK -eq 0 ]]; then
8092                 error "No page in writeback, writeback=$WRITEBACK"
8093         fi
8094
8095         wait $MULTIPID || error "Multiop fsync failed, rc=$?"
8096         set_nodes_failloc "$(osts_nodes)" 0
8097
8098         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
8099         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
8100                     grep -c writeback)
8101         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
8102                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
8103         fi
8104
8105         rm -f $DIR/$tfile
8106         echo "Dirty pages gaurenteed flushed via fsync"
8107         return 0
8108 }
8109 run_test 118d "Fsync validation inject a delay of the bulk =========="
8110
8111 test_118f() {
8112         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8113         reset_async
8114
8115         #define OBD_FAIL_OSC_BRW_PREP_REQ2        0x40a
8116         lctl set_param fail_loc=0x8000040a
8117
8118         # Should simulate EINVAL error which is fatal
8119         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
8120         RC=$?
8121         if [[ $RC -eq 0 ]]; then
8122                 error "Must return error due to dropped pages, rc=$RC"
8123         fi
8124
8125         lctl set_param fail_loc=0x0
8126
8127         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
8128         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
8129         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
8130                     grep -c writeback)
8131         if [[ $LOCKED -ne 0 ]]; then
8132                 error "Locked pages remain in cache, locked=$LOCKED"
8133         fi
8134
8135         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
8136                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
8137         fi
8138
8139         rm -f $DIR/$tfile
8140         echo "No pages locked after fsync"
8141
8142         reset_async
8143         return 0
8144 }
8145 run_test 118f "Simulate unrecoverable OSC side error =========="
8146
8147 test_118g() {
8148         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8149         reset_async
8150
8151         #define OBD_FAIL_OSC_BRW_PREP_REQ        0x406
8152         lctl set_param fail_loc=0x406
8153
8154         # simulate local -ENOMEM
8155         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
8156         RC=$?
8157
8158         lctl set_param fail_loc=0
8159         if [[ $RC -eq 0 ]]; then
8160                 error "Must return error due to dropped pages, rc=$RC"
8161         fi
8162
8163         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
8164         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
8165         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
8166                         grep -c writeback)
8167         if [[ $LOCKED -ne 0 ]]; then
8168                 error "Locked pages remain in cache, locked=$LOCKED"
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         fi
8174
8175         rm -f $DIR/$tfile
8176         echo "No pages locked after fsync"
8177
8178         reset_async
8179         return 0
8180 }
8181 run_test 118g "Don't stay in wait if we got local -ENOMEM  =========="
8182
8183 test_118h() {
8184         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8185         remote_ost_nodsh && skip "remote OST with nodsh" && return
8186
8187         reset_async
8188
8189         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
8190         set_nodes_failloc "$(osts_nodes)" 0x20e
8191         # Should simulate ENOMEM error which is recoverable and should be handled by timeout
8192         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
8193         RC=$?
8194
8195         set_nodes_failloc "$(osts_nodes)" 0
8196         if [[ $RC -eq 0 ]]; then
8197                 error "Must return error due to dropped pages, rc=$RC"
8198         fi
8199
8200         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
8201         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
8202         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
8203                     grep -c writeback)
8204         if [[ $LOCKED -ne 0 ]]; then
8205                 error "Locked pages remain in cache, locked=$LOCKED"
8206         fi
8207
8208         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
8209                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
8210         fi
8211
8212         rm -f $DIR/$tfile
8213         echo "No pages locked after fsync"
8214
8215         return 0
8216 }
8217 run_test 118h "Verify timeout in handling recoverables errors  =========="
8218
8219 [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] && set_resend_count $OLD_RESENDCOUNT
8220
8221 test_118i() {
8222         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8223         remote_ost_nodsh && skip "remote OST with nodsh" && return
8224
8225         reset_async
8226
8227         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
8228         set_nodes_failloc "$(osts_nodes)" 0x20e
8229
8230         # Should simulate ENOMEM error which is recoverable and should be handled by timeout
8231         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
8232         PID=$!
8233         sleep 5
8234         set_nodes_failloc "$(osts_nodes)" 0
8235
8236         wait $PID
8237         RC=$?
8238         if [[ $RC -ne 0 ]]; then
8239                 error "got error, but should be not, rc=$RC"
8240         fi
8241
8242         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
8243         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
8244         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
8245         if [[ $LOCKED -ne 0 ]]; then
8246                 error "Locked pages remain in cache, locked=$LOCKED"
8247         fi
8248
8249         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
8250                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
8251         fi
8252
8253         rm -f $DIR/$tfile
8254         echo "No pages locked after fsync"
8255
8256         return 0
8257 }
8258 run_test 118i "Fix error before timeout in recoverable error  =========="
8259
8260 [ "$SLOW" = "no" ] && set_resend_count 4
8261
8262 test_118j() {
8263         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8264         remote_ost_nodsh && skip "remote OST with nodsh" && return
8265
8266         reset_async
8267
8268         #define OBD_FAIL_OST_BRW_WRITE_BULK2     0x220
8269         set_nodes_failloc "$(osts_nodes)" 0x220
8270
8271         # return -EIO from OST
8272         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
8273         RC=$?
8274         set_nodes_failloc "$(osts_nodes)" 0x0
8275         if [[ $RC -eq 0 ]]; then
8276                 error "Must return error due to dropped pages, rc=$RC"
8277         fi
8278
8279         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
8280         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
8281         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
8282         if [[ $LOCKED -ne 0 ]]; then
8283                 error "Locked pages remain in cache, locked=$LOCKED"
8284         fi
8285
8286         # in recoverable error on OST we want resend and stay until it finished
8287         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
8288                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
8289         fi
8290
8291         rm -f $DIR/$tfile
8292         echo "No pages locked after fsync"
8293
8294         return 0
8295 }
8296 run_test 118j "Simulate unrecoverable OST side error =========="
8297
8298 test_118k()
8299 {
8300         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8301         remote_ost_nodsh && skip "remote OSTs with nodsh" && return
8302
8303         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
8304         set_nodes_failloc "$(osts_nodes)" 0x20e
8305         test_mkdir $DIR/$tdir
8306
8307         for ((i=0;i<10;i++)); do
8308                 (dd if=/dev/zero of=$DIR/$tdir/$tfile-$i bs=1M count=10 || \
8309                         error "dd to $DIR/$tdir/$tfile-$i failed" )&
8310                 SLEEPPID=$!
8311                 sleep 0.500s
8312                 kill $SLEEPPID
8313                 wait $SLEEPPID
8314         done
8315
8316         set_nodes_failloc "$(osts_nodes)" 0
8317         rm -rf $DIR/$tdir
8318 }
8319 run_test 118k "bio alloc -ENOMEM and IO TERM handling ========="
8320
8321 test_118l()
8322 {
8323         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8324         # LU-646
8325         test_mkdir $DIR/$tdir
8326         $MULTIOP $DIR/$tdir Dy || error "fsync dir failed"
8327         rm -rf $DIR/$tdir
8328 }
8329 run_test 118l "fsync dir"
8330
8331 test_118m() # LU-3066
8332 {
8333         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8334         test_mkdir $DIR/$tdir
8335         $MULTIOP $DIR/$tdir DY || error "fdatasync dir failed"
8336         rm -rf $DIR/$tdir
8337 }
8338 run_test 118m "fdatasync dir ========="
8339
8340 [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] && set_resend_count $OLD_RESENDCOUNT
8341
8342 test_119a() # bug 11737
8343 {
8344         BSIZE=$((512 * 1024))
8345         directio write $DIR/$tfile 0 1 $BSIZE
8346         # We ask to read two blocks, which is more than a file size.
8347         # directio will indicate an error when requested and actual
8348         # sizes aren't equeal (a normal situation in this case) and
8349         # print actual read amount.
8350         NOB=`directio read $DIR/$tfile 0 2 $BSIZE | awk '/error/ {print $6}'`
8351         if [ "$NOB" != "$BSIZE" ]; then
8352                 error "read $NOB bytes instead of $BSIZE"
8353         fi
8354         rm -f $DIR/$tfile
8355 }
8356 run_test 119a "Short directIO read must return actual read amount"
8357
8358 test_119b() # bug 11737
8359 {
8360         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
8361
8362         $SETSTRIPE -c 2 $DIR/$tfile || error "setstripe failed"
8363         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=1 || error "dd failed"
8364         sync
8365         $MULTIOP $DIR/$tfile oO_RDONLY:O_DIRECT:r$((2048 * 1024)) || \
8366                 error "direct read failed"
8367         rm -f $DIR/$tfile
8368 }
8369 run_test 119b "Sparse directIO read must return actual read amount"
8370
8371 test_119c() # bug 13099
8372 {
8373         BSIZE=1048576
8374         directio write $DIR/$tfile 3 1 $BSIZE || error "direct write failed"
8375         directio readhole $DIR/$tfile 0 2 $BSIZE || error "reading hole failed"
8376         rm -f $DIR/$tfile
8377 }
8378 run_test 119c "Testing for direct read hitting hole"
8379
8380 test_119d() # bug 15950
8381 {
8382         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8383         MAX_RPCS_IN_FLIGHT=`$LCTL get_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight`
8384         $LCTL set_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight 1
8385         BSIZE=1048576
8386         $SETSTRIPE $DIR/$tfile -i 0 -c 1 || error "setstripe failed"
8387         $DIRECTIO write $DIR/$tfile 0 1 $BSIZE || error "first directio failed"
8388         #define OBD_FAIL_OSC_DIO_PAUSE           0x40d
8389         lctl set_param fail_loc=0x40d
8390         $DIRECTIO write $DIR/$tfile 1 4 $BSIZE &
8391         pid_dio=$!
8392         sleep 1
8393         cat $DIR/$tfile > /dev/null &
8394         lctl set_param fail_loc=0
8395         pid_reads=$!
8396         wait $pid_dio
8397         log "the DIO writes have completed, now wait for the reads (should not block very long)"
8398         sleep 2
8399         [ -n "`ps h -p $pid_reads -o comm`" ] && \
8400         error "the read rpcs have not completed in 2s"
8401         rm -f $DIR/$tfile
8402         $LCTL set_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight $MAX_RPCS_IN_FLIGHT
8403 }
8404 run_test 119d "The DIO path should try to send a new rpc once one is completed"
8405
8406 test_120a() {
8407         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8408         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8409         test_mkdir $DIR/$tdir
8410         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
8411                 { skip "no early lock cancel on server"; return 0; }
8412
8413         lru_resize_disable mdc
8414         lru_resize_disable osc
8415         cancel_lru_locks mdc
8416         # asynchronous object destroy at MDT could cause bl ast to client
8417         cancel_lru_locks osc
8418
8419         stat $DIR/$tdir > /dev/null
8420         can1=$(do_facet $SINGLEMDS \
8421                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8422                awk '/ldlm_cancel/ {print $2}')
8423         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8424                awk '/ldlm_bl_callback/ {print $2}')
8425         test_mkdir -c1 $DIR/$tdir/d1
8426         can2=$(do_facet $SINGLEMDS \
8427                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8428                awk '/ldlm_cancel/ {print $2}')
8429         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8430                awk '/ldlm_bl_callback/ {print $2}')
8431         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
8432         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
8433         lru_resize_enable mdc
8434         lru_resize_enable osc
8435 }
8436 run_test 120a "Early Lock Cancel: mkdir test"
8437
8438 test_120b() {
8439         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8440         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8441         test_mkdir $DIR/$tdir
8442         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
8443                 { skip "no early lock cancel on server"; return 0; }
8444         lru_resize_disable mdc
8445         lru_resize_disable osc
8446         cancel_lru_locks mdc
8447         stat $DIR/$tdir > /dev/null
8448         can1=$(do_facet $SINGLEMDS \
8449                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8450                awk '/ldlm_cancel/ {print $2}')
8451         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8452                awk '/ldlm_bl_callback/ {print $2}')
8453         touch $DIR/$tdir/f1
8454         can2=$(do_facet $SINGLEMDS \
8455                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8456                awk '/ldlm_cancel/ {print $2}')
8457         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8458                awk '/ldlm_bl_callback/ {print $2}')
8459         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
8460         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
8461         lru_resize_enable mdc
8462         lru_resize_enable osc
8463 }
8464 run_test 120b "Early Lock Cancel: create test"
8465
8466 test_120c() {
8467         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8468         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8469         test_mkdir -c1 $DIR/$tdir
8470         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
8471                 { skip "no early lock cancel on server"; return 0; }
8472         lru_resize_disable mdc
8473         lru_resize_disable osc
8474         test_mkdir -c1 $DIR/$tdir/d1
8475         test_mkdir -c1 $DIR/$tdir/d2
8476         touch $DIR/$tdir/d1/f1
8477         cancel_lru_locks mdc
8478         stat $DIR/$tdir/d1 $DIR/$tdir/d2 $DIR/$tdir/d1/f1 > /dev/null
8479         can1=$(do_facet $SINGLEMDS \
8480                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8481                awk '/ldlm_cancel/ {print $2}')
8482         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8483                awk '/ldlm_bl_callback/ {print $2}')
8484         ln $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2
8485         can2=$(do_facet $SINGLEMDS \
8486                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8487                awk '/ldlm_cancel/ {print $2}')
8488         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8489                awk '/ldlm_bl_callback/ {print $2}')
8490         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
8491         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
8492         lru_resize_enable mdc
8493         lru_resize_enable osc
8494 }
8495 run_test 120c "Early Lock Cancel: link test"
8496
8497 test_120d() {
8498         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8499         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8500         test_mkdir -c1 $DIR/$tdir
8501         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
8502                 { skip "no early lock cancel on server"; return 0; }
8503         lru_resize_disable mdc
8504         lru_resize_disable osc
8505         touch $DIR/$tdir
8506         cancel_lru_locks mdc
8507         stat $DIR/$tdir > /dev/null
8508         can1=$(do_facet $SINGLEMDS \
8509                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8510                awk '/ldlm_cancel/ {print $2}')
8511         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8512                awk '/ldlm_bl_callback/ {print $2}')
8513         chmod a+x $DIR/$tdir
8514         can2=$(do_facet $SINGLEMDS \
8515                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8516                awk '/ldlm_cancel/ {print $2}')
8517         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8518                awk '/ldlm_bl_callback/ {print $2}')
8519         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
8520         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
8521         lru_resize_enable mdc
8522         lru_resize_enable osc
8523 }
8524 run_test 120d "Early Lock Cancel: setattr test"
8525
8526 test_120e() {
8527         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8528         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
8529                 { skip "no early lock cancel on server"; return 0; }
8530         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8531         local dlmtrace_set=false
8532
8533         test_mkdir -c1 $DIR/$tdir
8534         lru_resize_disable mdc
8535         lru_resize_disable osc
8536         ! $LCTL get_param debug | grep -q dlmtrace &&
8537                 $LCTL set_param debug=+dlmtrace && dlmtrace_set=true
8538         dd if=/dev/zero of=$DIR/$tdir/f1 count=1
8539         cancel_lru_locks mdc
8540         cancel_lru_locks osc
8541         dd if=$DIR/$tdir/f1 of=/dev/null
8542         stat $DIR/$tdir $DIR/$tdir/f1 > /dev/null
8543         # XXX client can not do early lock cancel of OST lock
8544         # during unlink (LU-4206), so cancel osc lock now.
8545         sleep 2
8546         cancel_lru_locks osc
8547         can1=$(do_facet $SINGLEMDS \
8548                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8549                awk '/ldlm_cancel/ {print $2}')
8550         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8551                awk '/ldlm_bl_callback/ {print $2}')
8552         unlink $DIR/$tdir/f1
8553         sleep 5
8554         can2=$(do_facet $SINGLEMDS \
8555                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8556                awk '/ldlm_cancel/ {print $2}')
8557         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8558                awk '/ldlm_bl_callback/ {print $2}')
8559         [ $can1 -ne $can2 ] && error "$((can2 - can1)) cancel RPC occured" &&
8560                 $LCTL dk $TMP/cancel.debug.txt
8561         [ $blk1 -ne $blk2 ] && error "$((blk2 - blk1)) blocking RPC occured" &&
8562                 $LCTL dk $TMP/blocking.debug.txt
8563         $dlmtrace_set && $LCTL set_param debug=-dlmtrace
8564         lru_resize_enable mdc
8565         lru_resize_enable osc
8566 }
8567 run_test 120e "Early Lock Cancel: unlink test"
8568
8569 test_120f() {
8570         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8571         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
8572                 { skip "no early lock cancel on server"; return 0; }
8573         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8574         test_mkdir -c1 $DIR/$tdir
8575         lru_resize_disable mdc
8576         lru_resize_disable osc
8577         test_mkdir -c1 $DIR/$tdir/d1
8578         test_mkdir -c1 $DIR/$tdir/d2
8579         dd if=/dev/zero of=$DIR/$tdir/d1/f1 count=1
8580         dd if=/dev/zero of=$DIR/$tdir/d2/f2 count=1
8581         cancel_lru_locks mdc
8582         cancel_lru_locks osc
8583         dd if=$DIR/$tdir/d1/f1 of=/dev/null
8584         dd if=$DIR/$tdir/d2/f2 of=/dev/null
8585         stat $DIR/$tdir/d1 $DIR/$tdir/d2 $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2 > /dev/null
8586         # XXX client can not do early lock cancel of OST lock
8587         # during rename (LU-4206), so cancel osc lock now.
8588         sleep 2
8589         cancel_lru_locks osc
8590         can1=$(do_facet $SINGLEMDS \
8591                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8592                awk '/ldlm_cancel/ {print $2}')
8593         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8594                awk '/ldlm_bl_callback/ {print $2}')
8595         mrename $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2
8596         sleep 5
8597         can2=$(do_facet $SINGLEMDS \
8598                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8599                awk '/ldlm_cancel/ {print $2}')
8600         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8601                awk '/ldlm_bl_callback/ {print $2}')
8602         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
8603         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
8604         lru_resize_enable mdc
8605         lru_resize_enable osc
8606 }
8607 run_test 120f "Early Lock Cancel: rename test"
8608
8609 test_120g() {
8610         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8611         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
8612                 { skip "no early lock cancel on server"; return 0; }
8613         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8614         lru_resize_disable mdc
8615         lru_resize_disable osc
8616         count=10000
8617         echo create $count files
8618         test_mkdir $DIR/$tdir
8619         cancel_lru_locks mdc
8620         cancel_lru_locks osc
8621         t0=$(date +%s)
8622
8623         can0=$(do_facet $SINGLEMDS \
8624                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8625                awk '/ldlm_cancel/ {print $2}')
8626         blk0=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8627                awk '/ldlm_bl_callback/ {print $2}')
8628         createmany -o $DIR/$tdir/f $count
8629         sync
8630         can1=$(do_facet $SINGLEMDS \
8631                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8632                awk '/ldlm_cancel/ {print $2}')
8633         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8634                awk '/ldlm_bl_callback/ {print $2}')
8635         t1=$(date +%s)
8636         echo total: $((can1-can0)) cancels, $((blk1-blk0)) blockings
8637         echo rm $count files
8638         rm -r $DIR/$tdir
8639         sync
8640         can2=$(do_facet $SINGLEMDS \
8641                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8642                awk '/ldlm_cancel/ {print $2}')
8643         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8644                awk '/ldlm_bl_callback/ {print $2}')
8645         t2=$(date +%s)
8646         echo total: $count removes in $((t2-t1))
8647         echo total: $((can2-can1)) cancels, $((blk2-blk1)) blockings
8648         sleep 2
8649         # wait for commitment of removal
8650         lru_resize_enable mdc
8651         lru_resize_enable osc
8652 }
8653 run_test 120g "Early Lock Cancel: performance test"
8654
8655 test_121() { #bug #10589
8656         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8657         rm -rf $DIR/$tfile
8658         writes=$(LANG=C dd if=/dev/zero of=$DIR/$tfile count=1 2>&1 | awk -F '+' '/out$/ {print $1}')
8659 #define OBD_FAIL_LDLM_CANCEL_RACE        0x310
8660         lctl set_param fail_loc=0x310
8661         cancel_lru_locks osc > /dev/null
8662         reads=$(LANG=C dd if=$DIR/$tfile of=/dev/null 2>&1 | awk -F '+' '/in$/ {print $1}')
8663         lctl set_param fail_loc=0
8664         [[ $reads -eq $writes ]] ||
8665                 error "read $reads blocks, must be $writes blocks"
8666 }
8667 run_test 121 "read cancel race ========="
8668
8669 test_123a() { # was test 123, statahead(bug 11401)
8670         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8671         SLOWOK=0
8672         if ! grep -q "processor.*: 1" /proc/cpuinfo; then
8673                 log "testing UP system. Performance may be lower than expected."
8674                 SLOWOK=1
8675         fi
8676
8677         rm -rf $DIR/$tdir
8678         test_mkdir $DIR/$tdir
8679         NUMFREE=$(df -i -P $DIR | tail -n 1 | awk '{ print $4 }')
8680         [[ $NUMFREE -gt 100000 ]] && NUMFREE=100000 || NUMFREE=$((NUMFREE-1000))
8681         MULT=10
8682         for ((i=100, j=0; i<=$NUMFREE; j=$i, i=$((i * MULT)) )); do
8683                 createmany -o $DIR/$tdir/$tfile $j $((i - j))
8684
8685                 max=`lctl get_param -n llite.*.statahead_max | head -n 1`
8686                 lctl set_param -n llite.*.statahead_max 0
8687                 lctl get_param llite.*.statahead_max
8688                 cancel_lru_locks mdc
8689                 cancel_lru_locks osc
8690                 stime=`date +%s`
8691                 time ls -l $DIR/$tdir | wc -l
8692                 etime=`date +%s`
8693                 delta=$((etime - stime))
8694                 log "ls $i files without statahead: $delta sec"
8695                 lctl set_param llite.*.statahead_max=$max
8696
8697                 swrong=`lctl get_param -n llite.*.statahead_stats | grep "statahead wrong:" | awk '{print $3}'`
8698                 lctl get_param -n llite.*.statahead_max | grep '[0-9]'
8699                 cancel_lru_locks mdc
8700                 cancel_lru_locks osc
8701                 stime=`date +%s`
8702                 time ls -l $DIR/$tdir | wc -l
8703                 etime=`date +%s`
8704                 delta_sa=$((etime - stime))
8705                 log "ls $i files with statahead: $delta_sa sec"
8706                 lctl get_param -n llite.*.statahead_stats
8707                 ewrong=`lctl get_param -n llite.*.statahead_stats | grep "statahead wrong:" | awk '{print $3}'`
8708
8709                 [[ $swrong -lt $ewrong ]] &&
8710                         log "statahead was stopped, maybe too many locks held!"
8711                 [[ $delta -eq 0 || $delta_sa -eq 0 ]] && continue
8712
8713                 if [ $((delta_sa * 100)) -gt $((delta * 105)) -a $delta_sa -gt $((delta + 2)) ]; then
8714                     max=`lctl get_param -n llite.*.statahead_max | head -n 1`
8715                     lctl set_param -n llite.*.statahead_max 0
8716                     lctl get_param llite.*.statahead_max
8717                     cancel_lru_locks mdc
8718                     cancel_lru_locks osc
8719                     stime=`date +%s`
8720                     time ls -l $DIR/$tdir | wc -l
8721                     etime=`date +%s`
8722                     delta=$((etime - stime))
8723                     log "ls $i files again without statahead: $delta sec"
8724                     lctl set_param llite.*.statahead_max=$max
8725                     if [ $((delta_sa * 100)) -gt $((delta * 105)) -a $delta_sa -gt $((delta + 2)) ]; then
8726                         if [  $SLOWOK -eq 0 ]; then
8727                                 error "ls $i files is slower with statahead!"
8728                         else
8729                                 log "ls $i files is slower with statahead!"
8730                         fi
8731                         break
8732                     fi
8733                 fi
8734
8735                 [ $delta -gt 20 ] && break
8736                 [ $delta -gt 8 ] && MULT=$((50 / delta))
8737                 [ "$SLOW" = "no" -a $delta -gt 5 ] && break
8738         done
8739         log "ls done"
8740
8741         stime=`date +%s`
8742         rm -r $DIR/$tdir
8743         sync
8744         etime=`date +%s`
8745         delta=$((etime - stime))
8746         log "rm -r $DIR/$tdir/: $delta seconds"
8747         log "rm done"
8748         lctl get_param -n llite.*.statahead_stats
8749 }
8750 run_test 123a "verify statahead work"
8751
8752 test_123b () { # statahead(bug 15027)
8753         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8754         test_mkdir $DIR/$tdir
8755         createmany -o $DIR/$tdir/$tfile-%d 1000
8756
8757         cancel_lru_locks mdc
8758         cancel_lru_locks osc
8759
8760 #define OBD_FAIL_MDC_GETATTR_ENQUEUE     0x803
8761         lctl set_param fail_loc=0x80000803
8762         ls -lR $DIR/$tdir > /dev/null
8763         log "ls done"
8764         lctl set_param fail_loc=0x0
8765         lctl get_param -n llite.*.statahead_stats
8766         rm -r $DIR/$tdir
8767         sync
8768
8769 }
8770 run_test 123b "not panic with network error in statahead enqueue (bug 15027)"
8771
8772 test_124a() {
8773         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8774         $LCTL get_param -n mdc.*.connect_flags | grep -q lru_resize ||
8775                 { skip "no lru resize on server"; return 0; }
8776         local NR=2000
8777         test_mkdir $DIR/$tdir
8778
8779         log "create $NR files at $DIR/$tdir"
8780         createmany -o $DIR/$tdir/f $NR ||
8781                 error "failed to create $NR files in $DIR/$tdir"
8782
8783         cancel_lru_locks mdc
8784         ls -l $DIR/$tdir > /dev/null
8785
8786         local NSDIR=""
8787         local LRU_SIZE=0
8788         for VALUE in $($LCTL get_param ldlm.namespaces.*mdc-*.lru_size); do
8789                 local PARAM=$(echo ${VALUE[0]} | cut -d "=" -f1)
8790                 LRU_SIZE=$($LCTL get_param -n $PARAM)
8791                 if [[ $LRU_SIZE -gt $(default_lru_size) ]]; then
8792                         NSDIR=$(echo $PARAM | cut -d "." -f1-3)
8793                         log "NSDIR=$NSDIR"
8794                         log "NS=$(basename $NSDIR)"
8795                         break
8796                 fi
8797         done
8798
8799         if [[ -z "$NSDIR" || $LRU_SIZE -lt $(default_lru_size) ]]; then
8800                 skip "Not enough cached locks created!"
8801                 return 0
8802         fi
8803         log "LRU=$LRU_SIZE"
8804
8805         local SLEEP=30
8806
8807         # We know that lru resize allows one client to hold $LIMIT locks
8808         # for 10h. After that locks begin to be killed by client.
8809         local MAX_HRS=10
8810         local LIMIT=$($LCTL get_param -n $NSDIR.pool.limit)
8811         log "LIMIT=$LIMIT"
8812         if [ $LIMIT -lt $LRU_SIZE ]; then
8813             skip "Limit is too small $LIMIT"
8814             return 0
8815         fi
8816
8817         # Make LVF so higher that sleeping for $SLEEP is enough to _start_
8818         # killing locks. Some time was spent for creating locks. This means
8819         # that up to the moment of sleep finish we must have killed some of
8820         # them (10-100 locks). This depends on how fast ther were created.
8821         # Many of them were touched in almost the same moment and thus will
8822         # be killed in groups.
8823         local LVF=$(($MAX_HRS * 60 * 60 / $SLEEP * $LIMIT / $LRU_SIZE))
8824
8825         # Use $LRU_SIZE_B here to take into account real number of locks
8826         # created in the case of CMD, LRU_SIZE_B != $NR in most of cases
8827         local LRU_SIZE_B=$LRU_SIZE
8828         log "LVF=$LVF"
8829         local OLD_LVF=$($LCTL get_param -n $NSDIR.pool.lock_volume_factor)
8830         log "OLD_LVF=$OLD_LVF"
8831         $LCTL set_param -n $NSDIR.pool.lock_volume_factor $LVF
8832
8833         # Let's make sure that we really have some margin. Client checks
8834         # cached locks every 10 sec.
8835         SLEEP=$((SLEEP+20))
8836         log "Sleep ${SLEEP} sec"
8837         local SEC=0
8838         while ((SEC<$SLEEP)); do
8839                 echo -n "..."
8840                 sleep 5
8841                 SEC=$((SEC+5))
8842                 LRU_SIZE=$($LCTL get_param -n $NSDIR/lru_size)
8843                 echo -n "$LRU_SIZE"
8844         done
8845         echo ""
8846         $LCTL set_param -n $NSDIR.pool.lock_volume_factor $OLD_LVF
8847         local LRU_SIZE_A=$($LCTL get_param -n $NSDIR.lru_size)
8848
8849         [[ $LRU_SIZE_B -gt $LRU_SIZE_A ]] || {
8850                 error "No locks dropped in ${SLEEP}s. LRU size: $LRU_SIZE_A"
8851                 unlinkmany $DIR/$tdir/f $NR
8852                 return
8853         }
8854
8855         log "Dropped "$((LRU_SIZE_B-LRU_SIZE_A))" locks in ${SLEEP}s"
8856         log "unlink $NR files at $DIR/$tdir"
8857         unlinkmany $DIR/$tdir/f $NR
8858 }
8859 run_test 124a "lru resize ======================================="
8860
8861 get_max_pool_limit()
8862 {
8863         local limit=$($LCTL get_param \
8864                       -n ldlm.namespaces.*-MDT0000-mdc-*.pool.limit)
8865         local max=0
8866         for l in $limit; do
8867                 if [[ $l -gt $max ]]; then
8868                         max=$l
8869                 fi
8870         done
8871         echo $max
8872 }
8873
8874 test_124b() {
8875         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8876         $LCTL get_param -n mdc.*.connect_flags | grep -q lru_resize ||
8877                 { skip "no lru resize on server"; return 0; }
8878
8879         LIMIT=$(get_max_pool_limit)
8880
8881         NR=$(($(default_lru_size)*20))
8882         if [[ $NR -gt $LIMIT ]]; then
8883                 log "Limit lock number by $LIMIT locks"
8884                 NR=$LIMIT
8885         fi
8886
8887         IFree=$(mdsrate_inodes_available)
8888         if [ $IFree -lt $NR ]; then
8889                 log "Limit lock number by $IFree inodes"
8890                 NR=$IFree
8891         fi
8892
8893         lru_resize_disable mdc
8894         test_mkdir -p $DIR/$tdir/disable_lru_resize
8895
8896         createmany -o $DIR/$tdir/disable_lru_resize/f $NR
8897         log "doing ls -la $DIR/$tdir/disable_lru_resize 3 times"
8898         cancel_lru_locks mdc
8899         stime=`date +%s`
8900         PID=""
8901         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
8902         PID="$PID $!"
8903         sleep 2
8904         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
8905         PID="$PID $!"
8906         sleep 2
8907         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
8908         PID="$PID $!"
8909         wait $PID
8910         etime=`date +%s`
8911         nolruresize_delta=$((etime-stime))
8912         log "ls -la time: $nolruresize_delta seconds"
8913         log "lru_size = $(lctl get_param -n ldlm.namespaces.*mdc*.lru_size)"
8914         unlinkmany $DIR/$tdir/disable_lru_resize/f $NR
8915
8916         lru_resize_enable mdc
8917         test_mkdir -p $DIR/$tdir/enable_lru_resize
8918
8919         createmany -o $DIR/$tdir/enable_lru_resize/f $NR
8920         log "doing ls -la $DIR/$tdir/enable_lru_resize 3 times"
8921         cancel_lru_locks mdc
8922         stime=`date +%s`
8923         PID=""
8924         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
8925         PID="$PID $!"
8926         sleep 2
8927         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
8928         PID="$PID $!"
8929         sleep 2
8930         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
8931         PID="$PID $!"
8932         wait $PID
8933         etime=`date +%s`
8934         lruresize_delta=$((etime-stime))
8935         log "ls -la time: $lruresize_delta seconds"
8936         log "lru_size = $(lctl get_param -n ldlm.namespaces.*mdc*.lru_size)"
8937
8938         if [ $lruresize_delta -gt $nolruresize_delta ]; then
8939                 log "ls -la is $(((lruresize_delta - $nolruresize_delta) * 100 / $nolruresize_delta))% slower with lru resize enabled"
8940         elif [ $nolruresize_delta -gt $lruresize_delta ]; then
8941                 log "ls -la is $(((nolruresize_delta - $lruresize_delta) * 100 / $nolruresize_delta))% faster with lru resize enabled"
8942         else
8943                 log "lru resize performs the same with no lru resize"
8944         fi
8945         unlinkmany $DIR/$tdir/enable_lru_resize/f $NR
8946 }
8947 run_test 124b "lru resize (performance test) ======================="
8948
8949 test_124c() {
8950         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8951         $LCTL get_param -n mdc.*.connect_flags | grep -q lru_resize ||
8952                 { skip "no lru resize on server"; return 0; }
8953
8954         # cache ununsed locks on client
8955         local nr=100
8956         cancel_lru_locks mdc
8957         test_mkdir $DIR/$tdir
8958         createmany -o $DIR/$tdir/f $nr ||
8959                 error "failed to create $nr files in $DIR/$tdir"
8960         ls -l $DIR/$tdir > /dev/null
8961
8962         local nsdir="ldlm.namespaces.*-MDT0000-mdc-*"
8963         local unused=$($LCTL get_param -n $nsdir.lock_unused_count)
8964         local max_age=$($LCTL get_param -n $nsdir.lru_max_age)
8965         local recalc_p=$($LCTL get_param -n $nsdir.pool.recalc_period)
8966         echo "unused=$unused, max_age=$max_age, recalc_p=$recalc_p"
8967
8968         # set lru_max_age to 1 sec
8969         $LCTL set_param $nsdir.lru_max_age=1000 # milliseconds
8970         echo "sleep $((recalc_p * 2)) seconds..."
8971         sleep $((recalc_p * 2))
8972
8973         local remaining=$($LCTL get_param -n $nsdir.lock_unused_count)
8974         # restore lru_max_age
8975         $LCTL set_param -n $nsdir.lru_max_age $max_age
8976         [ $remaining -eq 0 ] || error "$remaining locks are not canceled"
8977         unlinkmany $DIR/$tdir/f $nr
8978 }
8979 run_test 124c "LRUR cancel very aged locks"
8980
8981 test_125() { # 13358
8982         $LCTL get_param -n llite.*.client_type | grep -q local ||
8983                 { skip "must run as local client"; return; }
8984         $LCTL get_param -n mdc.*-mdc-*.connect_flags | grep -q acl ||
8985                 { skip "must have acl enabled"; return; }
8986         [ -z "$(which setfacl)" ] && skip "must have setfacl tool" && return
8987         test_mkdir $DIR/$tdir
8988         $LFS setstripe -S 65536 -c -1 $DIR/$tdir || error "setstripe failed"
8989         setfacl -R -m u:bin:rwx $DIR/$tdir || error "setfacl $DIR/$tdir failed"
8990         ls -ld $DIR/$tdir || error "cannot access $DIR/$tdir"
8991 }
8992 run_test 125 "don't return EPROTO when a dir has a non-default striping and ACLs"
8993
8994 test_126() { # bug 12829/13455
8995         $LCTL get_param -n llite.*.client_type | grep -q local ||
8996                 { skip "must run as local client"; return; }
8997         [ "$UID" != 0 ] && skip_env "$TESTNAME (must run as root)" && return
8998         $GSS && skip "must run as gss disabled" && return
8999
9000         $RUNAS -u 0 -g 1 touch $DIR/$tfile || error "touch failed"
9001         gid=`ls -n $DIR/$tfile | awk '{print $4}'`
9002         rm -f $DIR/$tfile
9003         [ $gid -eq "1" ] || error "gid is set to" $gid "instead of 1"
9004 }
9005 run_test 126 "check that the fsgid provided by the client is taken into account"
9006
9007 test_127a() { # bug 15521
9008         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9009         $SETSTRIPE -i 0 -c 1 $DIR/$tfile || error "setstripe failed"
9010         $LCTL set_param osc.*.stats=0
9011         FSIZE=$((2048 * 1024))
9012         dd if=/dev/zero of=$DIR/$tfile bs=$FSIZE count=1
9013         cancel_lru_locks osc
9014         dd if=$DIR/$tfile of=/dev/null bs=$FSIZE
9015
9016         $LCTL get_param osc.*0000-osc-*.stats | grep samples > $DIR/${tfile}.tmp
9017         while read NAME COUNT SAMP UNIT MIN MAX SUM SUMSQ; do
9018                 echo "got $COUNT $NAME"
9019                 [ ! $MIN ] && error "Missing min value for $NAME proc entry"
9020                 eval $NAME=$COUNT || error "Wrong proc format"
9021
9022                 case $NAME in
9023                         read_bytes|write_bytes)
9024                         [ $MIN -lt 4096 ] && error "min is too small: $MIN"
9025                         [ $MIN -gt $FSIZE ] && error "min is too big: $MIN"
9026                         [ $MAX -lt 4096 ] && error "max is too small: $MAX"
9027                         [ $MAX -gt $FSIZE ] && error "max is too big: $MAX"
9028                         [ $SUM -ne $FSIZE ] && error "sum is wrong: $SUM"
9029                         [ $SUMSQ -lt $(((FSIZE /4096) * (4096 * 4096))) ] &&
9030                                 error "sumsquare is too small: $SUMSQ"
9031                         [ $SUMSQ -gt $((FSIZE * FSIZE)) ] &&
9032                                 error "sumsquare is too big: $SUMSQ"
9033                         ;;
9034                         *) ;;
9035                 esac
9036         done < $DIR/${tfile}.tmp
9037
9038         #check that we actually got some stats
9039         [ "$read_bytes" ] || error "Missing read_bytes stats"
9040         [ "$write_bytes" ] || error "Missing write_bytes stats"
9041         [ "$read_bytes" != 0 ] || error "no read done"
9042         [ "$write_bytes" != 0 ] || error "no write done"
9043 }
9044 run_test 127a "verify the client stats are sane"
9045
9046 test_127b() { # bug LU-333
9047         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9048         $LCTL set_param llite.*.stats=0
9049         FSIZE=65536 # sized fixed to match PAGE_SIZE for most clients
9050         # perform 2 reads and writes so MAX is different from SUM.
9051         dd if=/dev/zero of=$DIR/$tfile bs=$FSIZE count=1
9052         dd if=/dev/zero of=$DIR/$tfile bs=$FSIZE count=1
9053         cancel_lru_locks osc
9054         dd if=$DIR/$tfile of=/dev/null bs=$FSIZE count=1
9055         dd if=$DIR/$tfile of=/dev/null bs=$FSIZE count=1
9056
9057         $LCTL get_param llite.*.stats | grep samples > $TMP/${tfile}.tmp
9058         while read NAME COUNT SAMP UNIT MIN MAX SUM SUMSQ; do
9059                 echo "got $COUNT $NAME"
9060                 eval $NAME=$COUNT || error "Wrong proc format"
9061
9062         case $NAME in
9063                 read_bytes)
9064                         [ $COUNT -ne 2 ] && error "count is not 2: $COUNT"
9065                         [ $MIN -ne $FSIZE ] && error "min is not $FSIZE: $MIN"
9066                         [ $MAX -ne $FSIZE ] && error "max is incorrect: $MAX"
9067                         [ $SUM -ne $((FSIZE * 2)) ] && error "sum is wrong: $SUM"
9068                         ;;
9069                 write_bytes)
9070                         [ $COUNT -ne 2 ] && error "count is not 2: $COUNT"
9071                         [ $MIN -ne $FSIZE ] && error "min is not $FSIZE: $MIN"
9072                         [ $MAX -ne $FSIZE ] && error "max is incorrect: $MAX"
9073                         [ $SUM -ne $((FSIZE * 2)) ] && error "sum is wrong: $SUM"
9074                         ;;
9075                         *) ;;
9076                 esac
9077         done < $TMP/${tfile}.tmp
9078
9079         #check that we actually got some stats
9080         [ "$read_bytes" ] || error "Missing read_bytes stats"
9081         [ "$write_bytes" ] || error "Missing write_bytes stats"
9082         [ "$read_bytes" != 0 ] || error "no read done"
9083         [ "$write_bytes" != 0 ] || error "no write done"
9084
9085         rm -f $TMP/${tfile}.tmp
9086 }
9087 run_test 127b "verify the llite client stats are sane"
9088
9089 test_128() { # bug 15212
9090         touch $DIR/$tfile
9091         $LFS 2>&1 <<-EOF | tee $TMP/$tfile.log
9092                 find $DIR/$tfile
9093                 find $DIR/$tfile
9094         EOF
9095
9096         result=$(grep error $TMP/$tfile.log)
9097         rm -f $DIR/$tfile $TMP/$tfile.log
9098         [ -z "$result" ] ||
9099                 error "consecutive find's under interactive lfs failed"
9100 }
9101 run_test 128 "interactive lfs for 2 consecutive find's"
9102
9103 set_dir_limits () {
9104         local mntdev
9105         local canondev
9106         local node
9107
9108         local ldproc=/proc/fs/ldiskfs
9109         local facets=$(get_facets MDS)
9110
9111         for facet in ${facets//,/ }; do
9112                 canondev=$(ldiskfs_canon \
9113                            *.$(convert_facet2label $facet).mntdev $facet)
9114                 do_facet $facet "test -e $ldproc/$canondev/max_dir_size" ||
9115                         ldproc=/sys/fs/ldiskfs
9116                 do_facet $facet "echo $1 >$ldproc/$canondev/max_dir_size"
9117                 do_facet $facet "echo $2 >$ldproc/$canondev/warning_dir_size"
9118         done
9119 }
9120
9121 check_mds_dmesg() {
9122         local facets=$(get_facets MDS)
9123         for facet in ${facets//,/ }; do
9124                 do_facet $facet "dmesg | tail -3 | grep -q $1" && return 0
9125         done
9126         return 1
9127 }
9128
9129 test_129() {
9130         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.5.56) ]] ||
9131                 { skip "Need MDS version with at least 2.5.56"; return 0; }
9132
9133         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9134         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
9135                 skip "ldiskfs only test"
9136                 return
9137         fi
9138         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9139         local ENOSPC=28
9140         local EFBIG=27
9141         local has_warning=false
9142
9143         rm -rf $DIR/$tdir
9144         mkdir -p $DIR/$tdir
9145
9146         # block size of mds1
9147         local maxsize=$(($($LCTL get_param -n mdc.*MDT0000*.blocksize) * 5))
9148         set_dir_limits $maxsize $maxsize
9149         local dirsize=$(stat -c%s "$DIR/$tdir")
9150         local nfiles=0
9151         while [[ $dirsize -le $maxsize ]]; do
9152                 $MULTIOP $DIR/$tdir/file_base_$nfiles Oc
9153                 rc=$?
9154                 if ! $has_warning; then
9155                         check_mds_dmesg '"is approaching"' && has_warning=true
9156                 fi
9157                 # check two errors:
9158                 # ENOSPC for new ext4 max_dir_size (kernel commit df981d03ee)
9159                 # EFBIG for previous versions included in ldiskfs series
9160                 if [ $rc -eq $EFBIG -o $rc -eq $ENOSPC ]; then
9161                         set_dir_limits 0 0
9162                         echo "return code $rc received as expected"
9163
9164                         createmany -o $DIR/$tdir/file_extra_$nfiles. 5 ||
9165                                 error_exit "create failed w/o dir size limit"
9166
9167                         check_mds_dmesg '"has reached"' ||
9168                                 error_exit "reached message should be output"
9169
9170                         [ $has_warning -eq 0 ] &&
9171                                 error_exit "warning message should be output"
9172
9173                         dirsize=$(stat -c%s "$DIR/$tdir")
9174
9175                         [[ $dirsize -ge $maxsize ]] && return 0
9176                         error_exit "current dir size $dirsize, " \
9177                                    "previous limit $maxsize"
9178                 elif [ $rc -ne 0 ]; then
9179                         set_dir_limits 0 0
9180                         error_exit "return $rc received instead of expected " \
9181                                    "$EFBIG or $ENOSPC, files in dir $dirsize"
9182                 fi
9183                 nfiles=$((nfiles + 1))
9184                 dirsize=$(stat -c%s "$DIR/$tdir")
9185         done
9186
9187         set_dir_limits 0 0
9188         error "exceeded dir size limit $maxsize($MDSCOUNT) : $dirsize bytes"
9189 }
9190 run_test 129 "test directory size limit ========================"
9191
9192 OLDIFS="$IFS"
9193 cleanup_130() {
9194         trap 0
9195         IFS="$OLDIFS"
9196 }
9197
9198 test_130a() {
9199         local filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
9200         [ -n "$filefrag_op" ] && skip_env "filefrag does not support FIEMAP" &&
9201                 return
9202
9203         trap cleanup_130 EXIT RETURN
9204
9205         local fm_file=$DIR/$tfile
9206         $SETSTRIPE -S 65536 -c 1 $fm_file || error "setstripe on $fm_file"
9207         dd if=/dev/zero of=$fm_file bs=65536 count=1 ||
9208                 error "dd failed for $fm_file"
9209
9210         # LU-1795: test filefrag/FIEMAP once, even if unsupported
9211         filefrag -ves $fm_file
9212         RC=$?
9213         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
9214                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
9215         [ $RC != 0 ] && error "filefrag $fm_file failed"
9216
9217         filefrag_op=$(filefrag -ve $fm_file |
9218                         sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
9219         lun=$($GETSTRIPE -i $fm_file)
9220
9221         start_blk=`echo $filefrag_op | cut -d: -f2 | cut -d. -f1`
9222         IFS=$'\n'
9223         tot_len=0
9224         for line in $filefrag_op
9225         do
9226                 frag_lun=`echo $line | cut -d: -f5`
9227                 ext_len=`echo $line | cut -d: -f4`
9228                 if (( $frag_lun != $lun )); then
9229                         cleanup_130
9230                         error "FIEMAP on 1-stripe file($fm_file) failed"
9231                         return
9232                 fi
9233                 (( tot_len += ext_len ))
9234         done
9235
9236         if (( lun != frag_lun || start_blk != 0 || tot_len != 64 )); then
9237                 cleanup_130
9238                 error "FIEMAP on 1-stripe file($fm_file) failed;"
9239                 return
9240         fi
9241
9242         cleanup_130
9243
9244         echo "FIEMAP on single striped file succeeded"
9245 }
9246 run_test 130a "FIEMAP (1-stripe file)"
9247
9248 test_130b() {
9249         [ "$OSTCOUNT" -lt "2" ] && skip_env "needs >= 2 OSTs" && return
9250
9251         local filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
9252         [ -n "$filefrag_op" ] && skip_env "filefrag does not support FIEMAP" &&
9253                 return
9254
9255         trap cleanup_130 EXIT RETURN
9256
9257         local fm_file=$DIR/$tfile
9258         $SETSTRIPE -S 65536 -c $OSTCOUNT $fm_file ||
9259                         error "setstripe on $fm_file"
9260         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
9261                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
9262
9263         dd if=/dev/zero of=$fm_file bs=1M count=$OSTCOUNT ||
9264                 error "dd failed on $fm_file"
9265
9266         filefrag -ves $fm_file || error "filefrag $fm_file failed"
9267         filefrag_op=$(filefrag -ve $fm_file |
9268                         sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
9269
9270         last_lun=$(echo $filefrag_op | cut -d: -f5 |
9271                 sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
9272
9273         IFS=$'\n'
9274         tot_len=0
9275         num_luns=1
9276         for line in $filefrag_op
9277         do
9278                 frag_lun=$(echo $line | cut -d: -f5 |
9279                         sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
9280                 ext_len=$(echo $line | cut -d: -f4)
9281                 if (( $frag_lun != $last_lun )); then
9282                         if (( tot_len != 1024 )); then
9283                                 cleanup_130
9284                                 error "FIEMAP on $fm_file failed; returned " \
9285                                 "len $tot_len for OST $last_lun instead of 1024"
9286                                 return
9287                         else
9288                                 (( num_luns += 1 ))
9289                                 tot_len=0
9290                         fi
9291                 fi
9292                 (( tot_len += ext_len ))
9293                 last_lun=$frag_lun
9294         done
9295         if (( num_luns != $OSTCOUNT || tot_len != 1024 )); then
9296                 cleanup_130
9297                 error "FIEMAP on $fm_file failed; returned wrong number of " \
9298                         "luns or wrong len for OST $last_lun"
9299                 return
9300         fi
9301
9302         cleanup_130
9303
9304         echo "FIEMAP on $OSTCOUNT-stripe file succeeded"
9305 }
9306 run_test 130b "FIEMAP ($OSTCOUNT-stripe file)"
9307
9308 test_130c() {
9309         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
9310
9311         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
9312         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP" &&
9313                 return
9314
9315         trap cleanup_130 EXIT RETURN
9316
9317         local fm_file=$DIR/$tfile
9318         $SETSTRIPE -S 65536 -c 2 $fm_file || error "setstripe on $fm_file"
9319         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
9320                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
9321
9322         dd if=/dev/zero of=$fm_file seek=1 bs=1M count=1 ||
9323                         error "dd failed on $fm_file"
9324
9325         filefrag -ves $fm_file || error "filefrag $fm_file failed"
9326         filefrag_op=$(filefrag -ve $fm_file |
9327                 sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
9328
9329         last_lun=$(echo $filefrag_op | cut -d: -f5 |
9330                 sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
9331
9332         IFS=$'\n'
9333         tot_len=0
9334         num_luns=1
9335         for line in $filefrag_op
9336         do
9337                 frag_lun=$(echo $line | cut -d: -f5 |
9338                         sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
9339                 ext_len=$(echo $line | cut -d: -f4)
9340                 if (( $frag_lun != $last_lun )); then
9341                         logical=`echo $line | cut -d: -f2 | cut -d. -f1`
9342                         if (( logical != 512 )); then
9343                                 cleanup_130
9344                                 error "FIEMAP on $fm_file failed; returned " \
9345                                 "logical start for lun $logical instead of 512"
9346                                 return
9347                         fi
9348                         if (( tot_len != 512 )); then
9349                                 cleanup_130
9350                                 error "FIEMAP on $fm_file failed; returned " \
9351                                 "len $tot_len for OST $last_lun instead of 1024"
9352                                 return
9353                         else
9354                                 (( num_luns += 1 ))
9355                                 tot_len=0
9356                         fi
9357                 fi
9358                 (( tot_len += ext_len ))
9359                 last_lun=$frag_lun
9360         done
9361         if (( num_luns != 2 || tot_len != 512 )); then
9362                 cleanup_130
9363                 error "FIEMAP on $fm_file failed; returned wrong number of " \
9364                         "luns or wrong len for OST $last_lun"
9365                 return
9366         fi
9367
9368         cleanup_130
9369
9370         echo "FIEMAP on 2-stripe file with hole succeeded"
9371 }
9372 run_test 130c "FIEMAP (2-stripe file with hole)"
9373
9374 test_130d() {
9375         [[ $OSTCOUNT -lt 3 ]] && skip_env "needs >= 3 OSTs" && return
9376
9377         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
9378         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP" &&
9379                 return
9380
9381         trap cleanup_130 EXIT RETURN
9382
9383         local fm_file=$DIR/$tfile
9384         $SETSTRIPE -S 65536 -c $OSTCOUNT $fm_file ||
9385                         error "setstripe on $fm_file"
9386         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
9387                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
9388
9389         local actual_stripe_count=$($GETSTRIPE -c $fm_file)
9390         dd if=/dev/zero of=$fm_file bs=1M count=$actual_stripe_count ||
9391                 error "dd failed on $fm_file"
9392
9393         filefrag -ves $fm_file || error "filefrag $fm_file failed"
9394         filefrag_op=$(filefrag -ve $fm_file |
9395                         sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
9396
9397         last_lun=$(echo $filefrag_op | cut -d: -f5 |
9398                 sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
9399
9400         IFS=$'\n'
9401         tot_len=0
9402         num_luns=1
9403         for line in $filefrag_op
9404         do
9405                 frag_lun=$(echo $line | cut -d: -f5 |
9406                         sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
9407                 ext_len=$(echo $line | cut -d: -f4)
9408                 if (( $frag_lun != $last_lun )); then
9409                         if (( tot_len != 1024 )); then
9410                                 cleanup_130
9411                                 error "FIEMAP on $fm_file failed; returned " \
9412                                 "len $tot_len for OST $last_lun instead of 1024"
9413                                 return
9414                         else
9415                                 (( num_luns += 1 ))
9416                                 tot_len=0
9417                         fi
9418                 fi
9419                 (( tot_len += ext_len ))
9420                 last_lun=$frag_lun
9421         done
9422         if (( num_luns != actual_stripe_count || tot_len != 1024 )); then
9423                 cleanup_130
9424                 error "FIEMAP on $fm_file failed; returned wrong number of " \
9425                         "luns or wrong len for OST $last_lun"
9426                 return
9427         fi
9428
9429         cleanup_130
9430
9431         echo "FIEMAP on N-stripe file succeeded"
9432 }
9433 run_test 130d "FIEMAP (N-stripe file)"
9434
9435 test_130e() {
9436         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
9437
9438         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
9439         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP" && return
9440
9441         trap cleanup_130 EXIT RETURN
9442
9443         local fm_file=$DIR/$tfile
9444         $SETSTRIPE -S 131072 -c 2 $fm_file || error "setstripe on $fm_file"
9445         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
9446                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
9447
9448         NUM_BLKS=512
9449         EXPECTED_LEN=$(( (NUM_BLKS / 2) * 64 ))
9450         for ((i = 0; i < $NUM_BLKS; i++))
9451         do
9452                 dd if=/dev/zero of=$fm_file count=1 bs=64k seek=$((2*$i)) conv=notrunc > /dev/null 2>&1
9453         done
9454
9455         filefrag -ves $fm_file || error "filefrag $fm_file failed"
9456         filefrag_op=$(filefrag -ve $fm_file |
9457                         sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
9458
9459         last_lun=$(echo $filefrag_op | cut -d: -f5 |
9460                 sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
9461
9462         IFS=$'\n'
9463         tot_len=0
9464         num_luns=1
9465         for line in $filefrag_op
9466         do
9467                 frag_lun=$(echo $line | cut -d: -f5 |
9468                         sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
9469                 ext_len=$(echo $line | cut -d: -f4)
9470                 if (( $frag_lun != $last_lun )); then
9471                         if (( tot_len != $EXPECTED_LEN )); then
9472                                 cleanup_130
9473                                 error "FIEMAP on $fm_file failed; returned " \
9474                                 "len $tot_len for OST $last_lun instead " \
9475                                 "of $EXPECTED_LEN"
9476                                 return
9477                         else
9478                                 (( num_luns += 1 ))
9479                                 tot_len=0
9480                         fi
9481                 fi
9482                 (( tot_len += ext_len ))
9483                 last_lun=$frag_lun
9484         done
9485         if (( num_luns != 2 || tot_len != $EXPECTED_LEN )); then
9486                 cleanup_130
9487                 error "FIEMAP on $fm_file failed; returned wrong number " \
9488                         "of luns or wrong len for OST $last_lun"
9489                 return
9490         fi
9491
9492         cleanup_130
9493
9494         echo "FIEMAP with continuation calls succeeded"
9495 }
9496 run_test 130e "FIEMAP (test continuation FIEMAP calls)"
9497
9498 # Test for writev/readv
9499 test_131a() {
9500         rwv -f $DIR/$tfile -w -n 3 524288 1048576 1572864 ||
9501                 error "writev test failed"
9502         rwv -f $DIR/$tfile -r -v -n 2 1572864 1048576 ||
9503                 error "readv failed"
9504         rm -f $DIR/$tfile
9505 }
9506 run_test 131a "test iov's crossing stripe boundary for writev/readv"
9507
9508 test_131b() {
9509         local fsize=$((524288 + 1048576 + 1572864))
9510         rwv -f $DIR/$tfile -w -a -n 3 524288 1048576 1572864 &&
9511                 $CHECKSTAT -t file $DIR/$tfile -s $fsize ||
9512                         error "append writev test failed"
9513
9514         ((fsize += 1572864 + 1048576))
9515         rwv -f $DIR/$tfile -w -a -n 2 1572864 1048576 &&
9516                 $CHECKSTAT -t file $DIR/$tfile -s $fsize ||
9517                         error "append writev test failed"
9518         rm -f $DIR/$tfile
9519 }
9520 run_test 131b "test append writev"
9521
9522 test_131c() {
9523         rwv -f $DIR/$tfile -w -d -n 1 1048576 || return 0
9524         error "NOT PASS"
9525 }
9526 run_test 131c "test read/write on file w/o objects"
9527
9528 test_131d() {
9529         rwv -f $DIR/$tfile -w -n 1 1572864
9530         NOB=`rwv -f $DIR/$tfile -r -n 3 524288 524288 1048576 | awk '/error/ {print $6}'`
9531         if [ "$NOB" != 1572864 ]; then
9532                 error "Short read filed: read $NOB bytes instead of 1572864"
9533         fi
9534         rm -f $DIR/$tfile
9535 }
9536 run_test 131d "test short read"
9537
9538 test_131e() {
9539         rwv -f $DIR/$tfile -w -s 1048576 -n 1 1048576
9540         rwv -f $DIR/$tfile -r -z -s 0 -n 1 524288 || \
9541         error "read hitting hole failed"
9542         rm -f $DIR/$tfile
9543 }
9544 run_test 131e "test read hitting hole"
9545
9546 check_stats() {
9547         local facet=$1
9548         local op=$2
9549         local want=${3:-0}
9550         local res
9551
9552         case $facet in
9553         mds*) res=$(do_facet $facet \
9554                    $LCTL get_param mdt.$FSNAME-MDT0000.md_stats | grep "$op")
9555                  ;;
9556         ost*) res=$(do_facet $facet \
9557                    $LCTL get_param obdfilter.$FSNAME-OST0000.stats | grep "$op")
9558                  ;;
9559         *) error "Wrong facet '$facet'" ;;
9560         esac
9561         echo $res
9562         [ "$res" ] || error "The counter for $op on $facet was not incremented"
9563         # if the argument $3 is zero, it means any stat increment is ok.
9564         if [[ $want -gt 0 ]]; then
9565                 local count=$(echo $res | awk '{ print $2 }')
9566                 [[ $count -ne $want ]] &&
9567                         error "The $op counter on $facet is $count, not $want"
9568         fi
9569 }
9570
9571 test_133a() {
9572         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9573         remote_ost_nodsh && skip "remote OST with nodsh" && return
9574         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9575
9576         do_facet $SINGLEMDS $LCTL list_param mdt.*.rename_stats ||
9577                 { skip "MDS doesn't support rename stats"; return; }
9578         local testdir=$DIR/${tdir}/stats_testdir
9579         mkdir -p $DIR/${tdir}
9580
9581         # clear stats.
9582         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
9583         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
9584
9585         # verify mdt stats first.
9586         mkdir ${testdir} || error "mkdir failed"
9587         check_stats $SINGLEMDS "mkdir" 1
9588         touch ${testdir}/${tfile} || error "touch failed"
9589         check_stats $SINGLEMDS "open" 1
9590         check_stats $SINGLEMDS "close" 1
9591         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.8.54) ] && {
9592                 mknod ${testdir}/${tfile}-pipe p || error "mknod failed"
9593                 check_stats $SINGLEMDS "mknod" 2
9594         }
9595         rm -f ${testdir}/${tfile}-pipe || error "pipe remove failed"
9596         check_stats $SINGLEMDS "unlink" 1
9597         rm -f ${testdir}/${tfile} || error "file remove failed"
9598         check_stats $SINGLEMDS "unlink" 2
9599
9600         # remove working dir and check mdt stats again.
9601         rmdir ${testdir} || error "rmdir failed"
9602         check_stats $SINGLEMDS "rmdir" 1
9603
9604         local testdir1=$DIR/${tdir}/stats_testdir1
9605         mkdir -p ${testdir}
9606         mkdir -p ${testdir1}
9607         touch ${testdir1}/test1
9608         mv ${testdir1}/test1 ${testdir} || error "file crossdir rename"
9609         check_stats $SINGLEMDS "crossdir_rename" 1
9610
9611         mv ${testdir}/test1 ${testdir}/test0 || error "file samedir rename"
9612         check_stats $SINGLEMDS "samedir_rename" 1
9613
9614         rm -rf $DIR/${tdir}
9615 }
9616 run_test 133a "Verifying MDT stats ========================================"
9617
9618 test_133b() {
9619         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9620         remote_ost_nodsh && skip "remote OST with nodsh" && return
9621         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9622         local testdir=$DIR/${tdir}/stats_testdir
9623         mkdir -p ${testdir} || error "mkdir failed"
9624         touch ${testdir}/${tfile} || error "touch failed"
9625         cancel_lru_locks mdc
9626
9627         # clear stats.
9628         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
9629         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
9630
9631         # extra mdt stats verification.
9632         chmod 444 ${testdir}/${tfile} || error "chmod failed"
9633         check_stats $SINGLEMDS "setattr" 1
9634         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
9635         if [ $(lustre_version_code $SINGLEMDS) -ne $(version_code 2.2.0) ]
9636         then            # LU-1740
9637                 ls -l ${testdir}/${tfile} > /dev/null|| error "ls failed"
9638                 check_stats $SINGLEMDS "getattr" 1
9639         fi
9640         $LFS df || error "lfs failed"
9641         check_stats $SINGLEMDS "statfs" 1
9642
9643         rm -rf $DIR/${tdir}
9644 }
9645 run_test 133b "Verifying extra MDT stats =================================="
9646
9647 test_133c() {
9648         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9649         remote_ost_nodsh && skip "remote OST with nodsh" && return
9650         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9651         local testdir=$DIR/$tdir/stats_testdir
9652         test_mkdir -p $testdir
9653
9654         # verify obdfilter stats.
9655         $SETSTRIPE -c 1 -i 0 $testdir/$tfile
9656         sync
9657         cancel_lru_locks osc
9658         wait_delete_completed
9659
9660         # clear stats.
9661         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
9662         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
9663
9664         dd if=/dev/zero of=$testdir/$tfile conv=notrunc bs=512k count=1 ||
9665                 error "dd failed"
9666         sync
9667         cancel_lru_locks osc
9668         check_stats ost1 "write" 1
9669
9670         dd if=$testdir/$tfile of=/dev/null bs=1k count=1 || error "dd failed"
9671         check_stats ost1 "read" 1
9672
9673         > $testdir/$tfile || error "truncate failed"
9674         check_stats ost1 "punch" 1
9675
9676         rm -f $testdir/$tfile || error "file remove failed"
9677         wait_delete_completed
9678         check_stats ost1 "destroy" 1
9679
9680         rm -rf $DIR/$tdir
9681 }
9682 run_test 133c "Verifying OST stats ========================================"
9683
9684 order_2() {
9685         local value=$1
9686         local orig=$value
9687         local order=1
9688
9689         while [ $value -ge 2 ]; do
9690                 order=$((order*2))
9691                 value=$((value/2))
9692         done
9693
9694         if [ $orig -gt $order ]; then
9695                 order=$((order*2))
9696         fi
9697         echo $order
9698 }
9699
9700 size_in_KMGT() {
9701     local value=$1
9702     local size=('K' 'M' 'G' 'T');
9703     local i=0
9704     local size_string=$value
9705
9706     while [ $value -ge 1024 ]; do
9707         if [ $i -gt 3 ]; then
9708             #T is the biggest unit we get here, if that is bigger,
9709             #just return XXXT
9710             size_string=${value}T
9711             break
9712         fi
9713         value=$((value >> 10))
9714         if [ $value -lt 1024 ]; then
9715             size_string=${value}${size[$i]}
9716             break
9717         fi
9718         i=$((i + 1))
9719     done
9720
9721     echo $size_string
9722 }
9723
9724 get_rename_size() {
9725     local size=$1
9726     local context=${2:-.}
9727     local sample=$(do_facet $SINGLEMDS $LCTL get_param mdt.*.rename_stats |
9728                 grep -A1 $context |
9729                 awk '/ '${size}'/ {print $4}' | sed -e "s/,//g")
9730     echo $sample
9731 }
9732
9733 test_133d() {
9734         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9735         remote_ost_nodsh && skip "remote OST with nodsh" && return
9736         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9737         do_facet $SINGLEMDS $LCTL list_param mdt.*.rename_stats ||
9738         { skip "MDS doesn't support rename stats"; return; }
9739
9740         local testdir1=$DIR/${tdir}/stats_testdir1
9741         local testdir2=$DIR/${tdir}/stats_testdir2
9742
9743         do_facet $SINGLEMDS $LCTL set_param mdt.*.rename_stats=clear
9744
9745         mkdir -p ${testdir1} || error "mkdir failed"
9746         mkdir -p ${testdir2} || error "mkdir failed"
9747
9748         createmany -o $testdir1/test 512 || error "createmany failed"
9749
9750         # check samedir rename size
9751         mv ${testdir1}/test0 ${testdir1}/test_0
9752
9753         local testdir1_size=$(ls -l $DIR/${tdir} |
9754                 awk '/stats_testdir1/ {print $5}')
9755         local testdir2_size=$(ls -l $DIR/${tdir} |
9756                 awk '/stats_testdir2/ {print $5}')
9757
9758         testdir1_size=$(order_2 $testdir1_size)
9759         testdir2_size=$(order_2 $testdir2_size)
9760
9761         testdir1_size=$(size_in_KMGT $testdir1_size)
9762         testdir2_size=$(size_in_KMGT $testdir2_size)
9763
9764         echo "source rename dir size: ${testdir1_size}"
9765         echo "target rename dir size: ${testdir2_size}"
9766
9767         local cmd="do_facet $SINGLEMDS $LCTL get_param mdt.*.rename_stats"
9768         eval $cmd || error "$cmd failed"
9769         local samedir=$($cmd | grep 'same_dir')
9770         local same_sample=$(get_rename_size $testdir1_size)
9771         [ -z "$samedir" ] && error "samedir_rename_size count error"
9772         [[ $same_sample -eq 1 ]] ||
9773                 error "samedir_rename_size error $same_sample"
9774         echo "Check same dir rename stats success"
9775
9776         do_facet $SINGLEMDS $LCTL set_param mdt.*.rename_stats=clear
9777
9778         # check crossdir rename size
9779         mv ${testdir1}/test_0 ${testdir2}/test_0
9780
9781         testdir1_size=$(ls -l $DIR/${tdir} |
9782                 awk '/stats_testdir1/ {print $5}')
9783         testdir2_size=$(ls -l $DIR/${tdir} |
9784                 awk '/stats_testdir2/ {print $5}')
9785
9786         testdir1_size=$(order_2 $testdir1_size)
9787         testdir2_size=$(order_2 $testdir2_size)
9788
9789         testdir1_size=$(size_in_KMGT $testdir1_size)
9790         testdir2_size=$(size_in_KMGT $testdir2_size)
9791
9792         echo "source rename dir size: ${testdir1_size}"
9793         echo "target rename dir size: ${testdir2_size}"
9794
9795         eval $cmd || error "$cmd failed"
9796         local crossdir=$($cmd | grep 'crossdir')
9797         local src_sample=$(get_rename_size $testdir1_size crossdir_src)
9798         local tgt_sample=$(get_rename_size $testdir2_size crossdir_tgt)
9799         [ -z "$crossdir" ] && error "crossdir_rename_size count error"
9800         [[ $src_sample -eq 1 ]] ||
9801                 error "crossdir_rename_size error $src_sample"
9802         [[ $tgt_sample -eq 1 ]] ||
9803                 error "crossdir_rename_size error $tgt_sample"
9804         echo "Check cross dir rename stats success"
9805         rm -rf $DIR/${tdir}
9806 }
9807 run_test 133d "Verifying rename_stats ========================================"
9808
9809 test_133e() {
9810         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9811         remote_ost_nodsh && skip "remote OST with nodsh" && return
9812         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9813         local testdir=$DIR/${tdir}/stats_testdir
9814         local ctr f0 f1 bs=32768 count=42 sum
9815
9816         mkdir -p ${testdir} || error "mkdir failed"
9817
9818         $SETSTRIPE -c 1 -i 0 ${testdir}/${tfile}
9819
9820         for ctr in {write,read}_bytes; do
9821                 sync
9822                 cancel_lru_locks osc
9823
9824                 do_facet ost1 $LCTL set_param -n \
9825                         "obdfilter.*.exports.clear=clear"
9826
9827                 if [ $ctr = write_bytes ]; then
9828                         f0=/dev/zero
9829                         f1=${testdir}/${tfile}
9830                 else
9831                         f0=${testdir}/${tfile}
9832                         f1=/dev/null
9833                 fi
9834
9835                 dd if=$f0 of=$f1 conv=notrunc bs=$bs count=$count || \
9836                         error "dd failed"
9837                 sync
9838                 cancel_lru_locks osc
9839
9840                 sum=$(do_facet ost1 $LCTL get_param \
9841                         "obdfilter.*.exports.*.stats" |
9842                         awk -v ctr=$ctr 'BEGIN { sum = 0 }
9843                                 $1 == ctr { sum += $7 }
9844                                 END { printf("%0.0f", sum) }')
9845
9846                 if ((sum != bs * count)); then
9847                         error "Bad $ctr sum, expected $((bs * count)), got $sum"
9848                 fi
9849         done
9850
9851         rm -rf $DIR/${tdir}
9852 }
9853 run_test 133e "Verifying OST {read,write}_bytes nid stats ================="
9854
9855 proc_regexp="/{proc,sys}/{fs,sys,kernel/debug}/{lustre,lnet}/"
9856
9857 test_133f() {
9858         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9859         remote_ost_nodsh && skip "remote OST with nodsh" && return
9860         # First without trusting modes.
9861         local proc_dirs=$(eval \ls -d $proc_regexp 2>/dev/null)
9862         echo "proc_dirs='$proc_dirs'"
9863         [ -n "$proc_dirs" ] || error "no proc_dirs on $HOSTNAME"
9864         find $proc_dirs -exec cat '{}' \; &> /dev/null
9865
9866         # Second verifying readability.
9867         $LCTL get_param -R '*' &> /dev/null || error "proc file read failed"
9868
9869         # eventually, this can also be replaced with "lctl get_param -R",
9870         # but not until that option is always available on the server
9871         local facet
9872         for facet in mds1 ost1; do
9873                 local facet_proc_dirs=$(do_facet $facet \
9874                                         \\\ls -d $proc_regexp 2>/dev/null)
9875                 echo "${facet}_proc_dirs='$facet_proc_dirs'"
9876                 [ -z "$facet_proc_dirs" ] && error "no proc_dirs on $facet"
9877                 do_facet $facet find $facet_proc_dirs \
9878                         ! -name req_history \
9879                         -exec cat '{}' \\\; &> /dev/null
9880
9881                 do_facet $facet find $facet_proc_dirs \
9882                         ! -name req_history \
9883                         -type f \
9884                         -exec cat '{}' \\\; &> /dev/null ||
9885                                 error "proc file read failed"
9886         done
9887 }
9888 run_test 133f "Check for LBUGs/Oopses/unreadable files in /proc"
9889
9890 test_133g() {
9891         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9892         remote_ost_nodsh && skip "remote OST with nodsh" && return
9893         # Second verifying writability.
9894         local proc_dirs=$(eval \ls -d $proc_regexp 2>/dev/null)
9895         echo "proc_dirs='$proc_dirs'"
9896         [ -n "$proc_dirs" ] || error "no proc_dirs on $HOSTNAME"
9897         find $proc_dirs \
9898                 -type f \
9899                 -not -name force_lbug \
9900                 -not -name changelog_mask \
9901                 -exec badarea_io '{}' \; &> /dev/null ||
9902                 error "find $proc_dirs failed"
9903
9904         local facet
9905         for facet in mds1 ost1; do
9906                 [ $(lustre_version_code $facet) -le $(version_code 2.5.54) ] &&
9907                         skip "Too old lustre on $facet" && continue
9908                 local facet_proc_dirs=$(do_facet $facet \
9909                                         \\\ls -d $proc_regexp 2> /dev/null)
9910                 echo "${facet}_proc_dirs='$facet_proc_dirs'"
9911                 [ -z "$facet_proc_dirs" ] && error "no proc_dirs on $facet"
9912                 do_facet $facet find $facet_proc_dirs \
9913                         -type f \
9914                         -not -name force_lbug \
9915                         -not -name changelog_mask \
9916                         -exec badarea_io '{}' \\\; &> /dev/null ||
9917                                 error "$facet find $facet_proc_dirs failed"
9918         done
9919
9920         # remount the FS in case writes/reads /proc break the FS
9921         cleanup || error "failed to unmount"
9922         setup || error "failed to setup"
9923         true
9924 }
9925 run_test 133g "Check for Oopses on bad io area writes/reads in /proc"
9926
9927 test_133h() {
9928         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9929         remote_ost_nodsh && skip "remote OST with nodsh" && return
9930         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.9.54) ]] &&
9931                 skip "Need MDS version at least 2.9.54" && return
9932
9933         local facet
9934         for facet in client mds1 ost1; do
9935                 local facet_proc_dirs=$(do_facet $facet \
9936                                         \\\ls -d $proc_regexp 2> /dev/null)
9937                 [ -z "$facet_proc_dirs" ] && error "no proc_dirs on $facet"
9938                 echo "${facet}_proc_dirs='$facet_proc_dirs'"
9939                 # Get the list of files that are missing the terminating newline
9940                 local missing=($(do_facet $facet \
9941                         find ${facet_proc_dirs} -type f \|              \
9942                                 while read F\; do                       \
9943                                         awk -v FS='\v' -v RS='\v\v'     \
9944                                         "'END { if(NR>0 &&              \
9945                                         \\\$NF !~ /.*\\\n\$/)           \
9946                                                 print FILENAME}'"       \
9947                                         '\$F'\;                         \
9948                                 done 2>/dev/null))
9949                 [ ${#missing[*]} -eq 0 ] ||
9950                         error "files do not end with newline: ${missing[*]}"
9951         done
9952 }
9953 run_test 133h "Proc files should end with newlines"
9954
9955 test_134a() {
9956         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9957         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.54) ]] &&
9958                 skip "Need MDS version at least 2.7.54" && return
9959
9960         mkdir -p $DIR/$tdir || error "failed to create $DIR/$tdir"
9961         cancel_lru_locks mdc
9962
9963         local nsdir="ldlm.namespaces.*-MDT0000-mdc-*"
9964         local unused=$($LCTL get_param -n $nsdir.lock_unused_count)
9965         [ $unused -eq 0 ] || error "$unused locks are not cleared"
9966
9967         local nr=1000
9968         createmany -o $DIR/$tdir/f $nr ||
9969                 error "failed to create $nr files in $DIR/$tdir"
9970         unused=$($LCTL get_param -n $nsdir.lock_unused_count)
9971
9972         #define OBD_FAIL_LDLM_WATERMARK_LOW     0x327
9973         do_facet mds1 $LCTL set_param fail_loc=0x327
9974         do_facet mds1 $LCTL set_param fail_val=500
9975         touch $DIR/$tdir/m
9976
9977         echo "sleep 10 seconds ..."
9978         sleep 10
9979         local lck_cnt=$($LCTL get_param -n $nsdir.lock_unused_count)
9980
9981         do_facet mds1 $LCTL set_param fail_loc=0
9982         do_facet mds1 $LCTL set_param fail_val=0
9983         [ $lck_cnt -lt $unused ] ||
9984                 error "No locks reclaimed, before:$unused, after:$lck_cnt"
9985
9986         rm $DIR/$tdir/m
9987         unlinkmany $DIR/$tdir/f $nr
9988 }
9989 run_test 134a "Server reclaims locks when reaching lock_reclaim_threshold"
9990
9991 test_134b() {
9992         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9993         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.54) ]] &&
9994                 skip "Need MDS version at least 2.7.54" && return
9995
9996         mkdir -p $DIR/$tdir || error "failed to create $DIR/$tdir"
9997         cancel_lru_locks mdc
9998
9999         local low_wm=$(do_facet mds1 $LCTL get_param -n \
10000                         ldlm.lock_reclaim_threshold_mb)
10001         # disable reclaim temporarily
10002         do_facet mds1 $LCTL set_param ldlm.lock_reclaim_threshold_mb=0
10003
10004         #define OBD_FAIL_LDLM_WATERMARK_HIGH     0x328
10005         do_facet mds1 $LCTL set_param fail_loc=0x328
10006         do_facet mds1 $LCTL set_param fail_val=500
10007
10008         $LCTL set_param debug=+trace
10009
10010         local nr=600
10011         createmany -o $DIR/$tdir/f $nr &
10012         local create_pid=$!
10013
10014         echo "Sleep $TIMEOUT seconds ..."
10015         sleep $TIMEOUT
10016         if ! ps -p $create_pid  > /dev/null 2>&1; then
10017                 do_facet mds1 $LCTL set_param fail_loc=0
10018                 do_facet mds1 $LCTL set_param fail_val=0
10019                 do_facet mds1 $LCTL set_param \
10020                         ldlm.lock_reclaim_threshold_mb=${low_wm}m
10021                 error "createmany finished incorrectly!"
10022         fi
10023         do_facet mds1 $LCTL set_param fail_loc=0
10024         do_facet mds1 $LCTL set_param fail_val=0
10025         do_facet mds1 $LCTL set_param ldlm.lock_reclaim_threshold_mb=${low_wm}m
10026         wait $create_pid || return 1
10027
10028         unlinkmany $DIR/$tdir/f $nr
10029 }
10030 run_test 134b "Server rejects lock request when reaching lock_limit_mb"
10031
10032 test_140() { #bug-17379
10033         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10034         test_mkdir $DIR/$tdir
10035         cd $DIR/$tdir || error "Changing to $DIR/$tdir"
10036         cp $(which stat) . || error "Copying stat to $DIR/$tdir"
10037
10038         # VFS limits max symlink depth to 5(4KSTACK) or 7(8KSTACK) or 8
10039         # For kernel > 3.5, bellow only tests consecutive symlink (MAX 40)
10040         local i=0
10041         while i=$((i + 1)); do
10042                 test_mkdir $i
10043                 cd $i || error "Changing to $i"
10044                 ln -s ../stat stat || error "Creating stat symlink"
10045                 # Read the symlink until ELOOP present,
10046                 # not LBUGing the system is considered success,
10047                 # we didn't overrun the stack.
10048                 $OPENFILE -f O_RDONLY stat >/dev/null 2>&1; ret=$?
10049                 if [ $ret -ne 0 ]; then
10050                         if [ $ret -eq 40 ]; then
10051                                 break  # -ELOOP
10052                         else
10053                                 error "Open stat symlink"
10054                                         return
10055                         fi
10056                 fi
10057         done
10058         i=$((i - 1))
10059         echo "The symlink depth = $i"
10060         [ $i -eq 5 -o $i -eq 7 -o $i -eq 8 -o $i -eq 40 ] ||
10061                                         error "Invalid symlink depth"
10062
10063         # Test recursive symlink
10064         ln -s symlink_self symlink_self
10065         $OPENFILE -f O_RDONLY symlink_self >/dev/null 2>&1; ret=$?
10066         echo "open symlink_self returns $ret"
10067         [ $ret -eq 40 ] || error "recursive symlink doesn't return -ELOOP"
10068 }
10069 run_test 140 "Check reasonable stack depth (shouldn't LBUG) ===="
10070
10071 test_150() {
10072         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10073         local TF="$TMP/$tfile"
10074
10075         dd if=/dev/urandom of=$TF bs=6096 count=1 || error "dd failed"
10076         cp $TF $DIR/$tfile
10077         cancel_lru_locks osc
10078         cmp $TF $DIR/$tfile || error "$TMP/$tfile $DIR/$tfile differ"
10079         remount_client $MOUNT
10080         df -P $MOUNT
10081         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (remount)"
10082
10083         $TRUNCATE $TF 6000
10084         $TRUNCATE $DIR/$tfile 6000
10085         cancel_lru_locks osc
10086         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (truncate1)"
10087
10088         echo "12345" >>$TF
10089         echo "12345" >>$DIR/$tfile
10090         cancel_lru_locks osc
10091         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (append1)"
10092
10093         echo "12345" >>$TF
10094         echo "12345" >>$DIR/$tfile
10095         cancel_lru_locks osc
10096         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (append2)"
10097
10098         rm -f $TF
10099         true
10100 }
10101 run_test 150 "truncate/append tests"
10102
10103 #LU-2902 roc_hit was not able to read all values from lproc
10104 function roc_hit_init() {
10105         local list=$(comma_list $(osts_nodes))
10106         local dir=$DIR/$tdir-check
10107         local file=$dir/$tfile
10108         local BEFORE
10109         local AFTER
10110         local idx
10111
10112         test_mkdir $dir
10113         #use setstripe to do a write to every ost
10114         for i in $(seq 0 $((OSTCOUNT-1))); do
10115                 $SETSTRIPE -c 1 -i $i $dir || error "$SETSTRIPE $file failed"
10116                 dd if=/dev/urandom of=$file bs=4k count=4 2>&1 > /dev/null
10117                 idx=$(printf %04x $i)
10118                 BEFORE=$(get_osd_param $list *OST*$idx stats |
10119                         awk '$1 == "cache_access" {sum += $7}
10120                                 END { printf("%0.0f", sum) }')
10121
10122                 cancel_lru_locks osc
10123                 cat $file >/dev/null
10124
10125                 AFTER=$(get_osd_param $list *OST*$idx stats |
10126                         awk '$1 == "cache_access" {sum += $7}
10127                                 END { printf("%0.0f", sum) }')
10128
10129                 echo BEFORE:$BEFORE AFTER:$AFTER
10130                 if ! let "AFTER - BEFORE == 4"; then
10131                         rm -rf $dir
10132                         error "roc_hit is not safe to use"
10133                 fi
10134                 rm $file
10135         done
10136
10137         rm -rf $dir
10138 }
10139
10140 function roc_hit() {
10141         local list=$(comma_list $(osts_nodes))
10142         echo $(get_osd_param $list '' stats |
10143                 awk '$1 == "cache_hit" {sum += $7}
10144                         END { printf("%0.0f", sum) }')
10145 }
10146
10147 function set_cache() {
10148         local on=1
10149
10150         if [ "$2" == "off" ]; then
10151                 on=0;
10152         fi
10153         local list=$(comma_list $(osts_nodes))
10154         set_osd_param $list '' $1_cache_enable $on
10155
10156         cancel_lru_locks osc
10157 }
10158
10159 test_151() {
10160         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10161         remote_ost_nodsh && skip "remote OST with nodsh" && return
10162
10163         local CPAGES=3
10164         local list=$(comma_list $(osts_nodes))
10165
10166         # check whether obdfilter is cache capable at all
10167         if ! get_osd_param $list '' read_cache_enable >/dev/null; then
10168                 echo "not cache-capable obdfilter"
10169                 return 0
10170         fi
10171
10172         # check cache is enabled on all obdfilters
10173         if get_osd_param $list '' read_cache_enable | grep 0; then
10174                 echo "oss cache is disabled"
10175                 return 0
10176         fi
10177
10178         set_osd_param $list '' writethrough_cache_enable 1
10179
10180         # check write cache is enabled on all obdfilters
10181         if get_osd_param $list '' writethrough_cache_enable | grep 0; then
10182                 echo "oss write cache is NOT enabled"
10183                 return 0
10184         fi
10185
10186         roc_hit_init
10187
10188         #define OBD_FAIL_OBD_NO_LRU  0x609
10189         do_nodes $list $LCTL set_param fail_loc=0x609
10190
10191         # pages should be in the case right after write
10192         dd if=/dev/urandom of=$DIR/$tfile bs=4k count=$CPAGES ||
10193                 error "dd failed"
10194
10195         local BEFORE=$(roc_hit)
10196         cancel_lru_locks osc
10197         cat $DIR/$tfile >/dev/null
10198         local AFTER=$(roc_hit)
10199
10200         do_nodes $list $LCTL set_param fail_loc=0
10201
10202         if ! let "AFTER - BEFORE == CPAGES"; then
10203                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
10204         fi
10205
10206         # the following read invalidates the cache
10207         cancel_lru_locks osc
10208         set_osd_param $list '' read_cache_enable 0
10209         cat $DIR/$tfile >/dev/null
10210
10211         # now data shouldn't be found in the cache
10212         BEFORE=$(roc_hit)
10213         cancel_lru_locks osc
10214         cat $DIR/$tfile >/dev/null
10215         AFTER=$(roc_hit)
10216         if let "AFTER - BEFORE != 0"; then
10217                 error "IN CACHE: before: $BEFORE, after: $AFTER"
10218         fi
10219
10220         set_osd_param $list '' read_cache_enable 1
10221         rm -f $DIR/$tfile
10222 }
10223 run_test 151 "test cache on oss and controls ==============================="
10224
10225 test_152() {
10226         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10227         local TF="$TMP/$tfile"
10228
10229         # simulate ENOMEM during write
10230 #define OBD_FAIL_OST_NOMEM      0x226
10231         lctl set_param fail_loc=0x80000226
10232         dd if=/dev/urandom of=$TF bs=6096 count=1 || error "dd failed"
10233         cp $TF $DIR/$tfile
10234         sync || error "sync failed"
10235         lctl set_param fail_loc=0
10236
10237         # discard client's cache
10238         cancel_lru_locks osc
10239
10240         # simulate ENOMEM during read
10241         lctl set_param fail_loc=0x80000226
10242         cmp $TF $DIR/$tfile || error "cmp failed"
10243         lctl set_param fail_loc=0
10244
10245         rm -f $TF
10246 }
10247 run_test 152 "test read/write with enomem ============================"
10248
10249 test_153() {
10250         $MULTIOP $DIR/$tfile Ow4096Ycu || error "multiop failed"
10251 }
10252 run_test 153 "test if fdatasync does not crash ======================="
10253
10254 dot_lustre_fid_permission_check() {
10255         local fid=$1
10256         local ffid=$MOUNT/.lustre/fid/$fid
10257         local test_dir=$2
10258
10259         echo "stat fid $fid"
10260         stat $ffid > /dev/null || error "stat $ffid failed."
10261         echo "touch fid $fid"
10262         touch $ffid || error "touch $ffid failed."
10263         echo "write to fid $fid"
10264         cat /etc/hosts > $ffid || error "write $ffid failed."
10265         echo "read fid $fid"
10266         diff /etc/hosts $ffid || error "read $ffid failed."
10267         echo "append write to fid $fid"
10268         cat /etc/hosts >> $ffid || error "append write $ffid failed."
10269         echo "rename fid $fid"
10270         mv $ffid $test_dir/$tfile.1 &&
10271                 error "rename $ffid to $tfile.1 should fail."
10272         touch $test_dir/$tfile.1
10273         mv $test_dir/$tfile.1 $ffid &&
10274                 error "rename $tfile.1 to $ffid should fail."
10275         rm -f $test_dir/$tfile.1
10276         echo "truncate fid $fid"
10277         $TRUNCATE $ffid 777 || error "truncate $ffid failed."
10278         if [ $MDSCOUNT -lt 2 ]; then #FIXME when cross-MDT hard link is working
10279                 echo "link fid $fid"
10280                 ln -f $ffid $test_dir/tfile.lnk || error "link $ffid failed."
10281         fi
10282         if [ -n $(lctl get_param -n mdc.*-mdc-*.connect_flags | grep acl) ]; then
10283                 echo "setfacl fid $fid"
10284                 setfacl -R -m u:bin:rwx $ffid || error "setfacl $ffid failed."
10285                 echo "getfacl fid $fid"
10286                 getfacl $ffid >/dev/null || error "getfacl $ffid failed."
10287         fi
10288         echo "unlink fid $fid"
10289         unlink $MOUNT/.lustre/fid/$fid && error "unlink $ffid should fail."
10290         echo "mknod fid $fid"
10291         mknod $ffid c 1 3 && error "mknod $ffid should fail."
10292
10293         fid=[0xf00000400:0x1:0x0]
10294         ffid=$MOUNT/.lustre/fid/$fid
10295
10296         echo "stat non-exist fid $fid"
10297         stat $ffid > /dev/null && error "stat non-exist $ffid should fail."
10298         echo "write to non-exist fid $fid"
10299         cat /etc/hosts > $ffid && error "write non-exist $ffid should fail."
10300         echo "link new fid $fid"
10301         ln $test_dir/$tfile $ffid && error "link $ffid should fail."
10302
10303         mkdir -p $test_dir/$tdir
10304         touch $test_dir/$tdir/$tfile
10305         fid=$($LFS path2fid $test_dir/$tdir)
10306         rc=$?
10307         [ $rc -ne 0 ] &&
10308                 error "error: could not get fid for $test_dir/$dir/$tfile."
10309
10310         ffid=$MOUNT/.lustre/fid/$fid
10311
10312         echo "ls $fid"
10313         ls $ffid > /dev/null || error "ls $ffid failed."
10314         echo "touch $fid/$tfile.1"
10315         touch $ffid/$tfile.1 || error "touch $ffid/$tfile.1 failed."
10316
10317         echo "touch $MOUNT/.lustre/fid/$tfile"
10318         touch $MOUNT/.lustre/fid/$tfile && \
10319                 error "touch $MOUNT/.lustre/fid/$tfile should fail."
10320
10321         echo "setxattr to $MOUNT/.lustre/fid"
10322         setfattr -n trusted.name1 -v value1 $MOUNT/.lustre/fid
10323
10324         echo "listxattr for $MOUNT/.lustre/fid"
10325         getfattr -d -m "^trusted" $MOUNT/.lustre/fid
10326
10327         echo "delxattr from $MOUNT/.lustre/fid"
10328         setfattr -x trusted.name1 $MOUNT/.lustre/fid
10329
10330         echo "touch invalid fid: $MOUNT/.lustre/fid/[0x200000400:0x2:0x3]"
10331         touch $MOUNT/.lustre/fid/[0x200000400:0x2:0x3] &&
10332                 error "touch invalid fid should fail."
10333
10334         echo "touch non-normal fid: $MOUNT/.lustre/fid/[0x1:0x2:0x0]"
10335         touch $MOUNT/.lustre/fid/[0x1:0x2:0x0] &&
10336                 error "touch non-normal fid should fail."
10337
10338         echo "rename $tdir to $MOUNT/.lustre/fid"
10339         mrename $test_dir/$tdir $MOUNT/.lustre/fid &&
10340                 error "rename to $MOUNT/.lustre/fid should fail."
10341
10342         if [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.51) ]
10343         then            # LU-3547
10344                 local old_obf_mode=$(stat --format="%a" $DIR/.lustre/fid)
10345                 local new_obf_mode=777
10346
10347                 echo "change mode of $DIR/.lustre/fid to $new_obf_mode"
10348                 chmod $new_obf_mode $DIR/.lustre/fid ||
10349                         error "chmod $new_obf_mode $DIR/.lustre/fid failed"
10350
10351                 local obf_mode=$(stat --format=%a $DIR/.lustre/fid)
10352                 [ $obf_mode -eq $new_obf_mode ] ||
10353                         error "stat $DIR/.lustre/fid returned wrong mode $obf_mode"
10354
10355                 echo "restore mode of $DIR/.lustre/fid to $old_obf_mode"
10356                 chmod $old_obf_mode $DIR/.lustre/fid ||
10357                         error "chmod $old_obf_mode $DIR/.lustre/fid failed"
10358         fi
10359
10360         $OPENFILE -f O_LOV_DELAY_CREATE:O_CREAT $test_dir/$tfile-2
10361         fid=$($LFS path2fid $test_dir/$tfile-2)
10362
10363         if [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.50) ]
10364         then # LU-5424
10365                 echo "cp /etc/passwd $MOUNT/.lustre/fid/$fid"
10366                 cp /etc/passwd $MOUNT/.lustre/fid/$fid ||
10367                         error "create lov data thru .lustre failed"
10368         fi
10369         echo "cp /etc/passwd $test_dir/$tfile-2"
10370         cp /etc/passwd $test_dir/$tfile-2 ||
10371                 error "copy to $test_dir/$tfile-2 failed."
10372         echo "diff /etc/passwd $MOUNT/.lustre/fid/$fid"
10373         diff /etc/passwd $MOUNT/.lustre/fid/$fid ||
10374                 error "diff /etc/passwd $MOUNT/.lustre/fid/$fid failed."
10375
10376         rm -rf $test_dir/tfile.lnk
10377         rm -rf $test_dir/$tfile-2
10378 }
10379
10380 test_154A() {
10381         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.1) ]] &&
10382                 skip "Need MDS version at least 2.4.1" && return
10383
10384         local tf=$DIR/$tfile
10385         touch $tf
10386
10387         local fid=$($LFS path2fid $tf)
10388         [ -z "$fid" ] && error "path2fid unable to get $tf FID"
10389
10390         # check that we get the same pathname back
10391         local found=$($LFS fid2path $MOUNT "$fid")
10392         [ -z "$found" ] && error "fid2path unable to get '$fid' path"
10393         [ "$found" == "$tf" ] ||
10394                 error "fid2path($fid=path2fid($tf)) = $found != $tf"
10395 }
10396 run_test 154A "lfs path2fid and fid2path basic checks"
10397
10398 test_154B() {
10399         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.1) ]] &&
10400                 skip "Need MDS version at least 2.4.1" && return
10401
10402         mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
10403         touch $DIR/$tdir/$tfile || error "touch $DIR/$tdir/$tfile failed"
10404         local linkea=$($LL_DECODE_LINKEA $DIR/$tdir/$tfile | grep 'pfid')
10405         [ -z "$linkea" ] && error "decode linkea $DIR/$tdir/$tfile failed"
10406
10407         local name=$(echo $linkea | awk '/pfid/ {print $5}' | sed -e "s/'//g")
10408         local PFID=$(echo $linkea | awk '/pfid/ {print $3}' | sed -e "s/,//g")
10409
10410         # check that we get the same pathname
10411         echo "PFID: $PFID, name: $name"
10412         local FOUND=$($LFS fid2path $MOUNT "$PFID")
10413         [ -z "$FOUND" ] && error "fid2path unable to get $PFID path"
10414         [ "$FOUND/$name" != "$DIR/$tdir/$tfile" ] &&
10415                 error "ll_decode_linkea has $FOUND/$name != $DIR/$tdir/$tfile"
10416
10417         rm -rf $DIR/$tdir || error "Can not delete directory $DIR/$tdir"
10418 }
10419 run_test 154B "verify the ll_decode_linkea tool"
10420
10421 test_154a() {
10422         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10423         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ]] ||
10424                 { skip "Need MDS version at least 2.2.51"; return 0; }
10425         [ -z "$(which setfacl)" ] && skip "must have setfacl tool" && return
10426         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
10427
10428         cp /etc/hosts $DIR/$tfile
10429
10430         fid=$($LFS path2fid $DIR/$tfile)
10431         rc=$?
10432         [ $rc -ne 0 ] && error "error: could not get fid for $DIR/$tfile."
10433
10434         dot_lustre_fid_permission_check "$fid" $DIR ||
10435                 error "dot lustre permission check $fid failed"
10436
10437         rm -rf $MOUNT/.lustre && error ".lustre is not allowed to be unlinked"
10438
10439         touch $MOUNT/.lustre/file &&
10440                 error "creation is not allowed under .lustre"
10441
10442         mkdir $MOUNT/.lustre/dir &&
10443                 error "mkdir is not allowed under .lustre"
10444
10445         rm -rf $DIR/$tfile
10446 }
10447 run_test 154a "Open-by-FID"
10448
10449 test_154b() {
10450         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10451         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ]] ||
10452                 { skip "Need MDS version at least 2.2.51"; return 0; }
10453         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
10454
10455         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
10456
10457         local remote_dir=$DIR/$tdir/remote_dir
10458         local MDTIDX=1
10459         local rc=0
10460
10461         mkdir -p $DIR/$tdir
10462         $LFS mkdir -i $MDTIDX $remote_dir ||
10463                 error "create remote directory failed"
10464
10465         cp /etc/hosts $remote_dir/$tfile
10466
10467         fid=$($LFS path2fid $remote_dir/$tfile)
10468         rc=$?
10469         [ $rc -ne 0 ] && error "error: could not get fid for $remote_dir/$tfile"
10470
10471         dot_lustre_fid_permission_check "$fid" $remote_dir ||
10472                 error "dot lustre permission check $fid failed"
10473         rm -rf $DIR/$tdir
10474 }
10475 run_test 154b "Open-by-FID for remote directory"
10476
10477 test_154c() {
10478         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.1) ]] &&
10479                 skip "Need MDS version at least 2.4.1" && return
10480
10481         touch $DIR/$tfile.1 $DIR/$tfile.2 $DIR/$tfile.3
10482         local FID1=$($LFS path2fid $DIR/$tfile.1)
10483         local FID2=$($LFS path2fid $DIR/$tfile.2)
10484         local FID3=$($LFS path2fid $DIR/$tfile.3)
10485
10486         local N=1
10487         $LFS path2fid $DIR/$tfile.[123] | while read PATHNAME FID; do
10488                 [ "$PATHNAME" = "$DIR/$tfile.$N:" ] ||
10489                         error "path2fid pathname $PATHNAME != $DIR/$tfile.$N:"
10490                 local want=FID$N
10491                 [ "$FID" = "${!want}" ] ||
10492                         error "path2fid $PATHNAME FID $FID != FID$N ${!want}"
10493                 N=$((N + 1))
10494         done
10495
10496         $LFS fid2path $MOUNT "$FID1" "$FID2" "$FID3" | while read PATHNAME;
10497         do
10498                 [ "$PATHNAME" = "$DIR/$tfile.$N" ] ||
10499                         error "fid2path pathname $PATHNAME != $DIR/$tfile.$N:"
10500                 N=$((N + 1))
10501         done
10502 }
10503 run_test 154c "lfs path2fid and fid2path multiple arguments"
10504
10505 test_154d() {
10506         remote_mds_nodsh && skip "remote MDS with nodsh" && return
10507         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.5.53) ]] &&
10508                 skip "Need MDS version at least 2.5.53" && return
10509
10510         if remote_mds; then
10511                 nid=$($LCTL list_nids | sed  "s/\./\\\./g")
10512         else
10513                 nid="0@lo"
10514         fi
10515         local proc_ofile="mdt.*.exports.'$nid'.open_files"
10516         local fd
10517         local cmd
10518
10519         rm -f $DIR/$tfile
10520         touch $DIR/$tfile
10521
10522         local fid=$($LFS path2fid $DIR/$tfile)
10523         # Open the file
10524         fd=$(free_fd)
10525         cmd="exec $fd<$DIR/$tfile"
10526         eval $cmd
10527         local fid_list=$(do_facet $SINGLEMDS $LCTL get_param $proc_ofile)
10528         echo "$fid_list" | grep "$fid"
10529         rc=$?
10530
10531         cmd="exec $fd>/dev/null"
10532         eval $cmd
10533         if [ $rc -ne 0 ]; then
10534                 error "FID $fid not found in open files list $fid_list"
10535         fi
10536 }
10537 run_test 154d "Verify open file fid"
10538
10539 test_154e()
10540 {
10541         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.6.50) ]] &&
10542                 skip "Need MDS version at least 2.6.50" && return
10543
10544         if ls -a $MOUNT | grep -q '^\.lustre$'; then
10545                 error ".lustre returned by readdir"
10546         fi
10547 }
10548 run_test 154e ".lustre is not returned by readdir"
10549
10550 test_154f() {
10551         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
10552         # create parent directory on a single MDT to avoid cross-MDT hardlinks
10553         test_mkdir -p -c1 $DIR/$tdir/d
10554         # test dirs inherit from its stripe
10555         mkdir -p $DIR/$tdir/d/foo1 || error "mkdir error"
10556         mkdir -p $DIR/$tdir/d/foo2 || error "mkdir error"
10557         cp /etc/hosts $DIR/$tdir/d/foo1/$tfile
10558         ln $DIR/$tdir/d/foo1/$tfile $DIR/$tdir/d/foo2/link
10559         touch $DIR/f
10560
10561         # get fid of parents
10562         local FID0=$($LFS path2fid $DIR/$tdir/d)
10563         local FID1=$($LFS path2fid $DIR/$tdir/d/foo1)
10564         local FID2=$($LFS path2fid $DIR/$tdir/d/foo2)
10565         local FID3=$($LFS path2fid $DIR)
10566
10567         # check that path2fid --parents returns expected <parent_fid>/name
10568         # 1) test for a directory (single parent)
10569         local parent=$($LFS path2fid --parents $DIR/$tdir/d/foo1)
10570         [ "$parent" == "$FID0/foo1" ] ||
10571                 error "expected parent: $FID0/foo1, got: $parent"
10572
10573         # 2) test for a file with nlink > 1 (multiple parents)
10574         parent=$($LFS path2fid --parents $DIR/$tdir/d/foo1/$tfile)
10575         echo "$parent" | grep -F "$FID1/$tfile" ||
10576                 error "$FID1/$tfile not returned in parent list"
10577         echo "$parent" | grep -F "$FID2/link" ||
10578                 error "$FID2/link not returned in parent list"
10579
10580         # 3) get parent by fid
10581         local file_fid=$($LFS path2fid $DIR/$tdir/d/foo1/$tfile)
10582         parent=$($LFS path2fid --parents $MOUNT/.lustre/fid/$file_fid)
10583         echo "$parent" | grep -F "$FID1/$tfile" ||
10584                 error "$FID1/$tfile not returned in parent list (by fid)"
10585         echo "$parent" | grep -F "$FID2/link" ||
10586                 error "$FID2/link not returned in parent list (by fid)"
10587
10588         # 4) test for entry in root directory
10589         parent=$($LFS path2fid --parents $DIR/f)
10590         echo "$parent" | grep -F "$FID3/f" ||
10591                 error "$FID3/f not returned in parent list"
10592
10593         # 5) test it on root directory
10594         [ -z "$($LFS path2fid --parents $MOUNT 2>/dev/null)" ] ||
10595                 error "$MOUNT should not have parents"
10596
10597         # enable xattr caching and check that linkea is correctly updated
10598         local save="$TMP/$TESTSUITE-$TESTNAME.parameters"
10599         save_lustre_params client "llite.*.xattr_cache" > $save
10600         lctl set_param llite.*.xattr_cache 1
10601
10602         # 6.1) linkea update on rename
10603         mv $DIR/$tdir/d/foo1/$tfile $DIR/$tdir/d/foo2/$tfile.moved
10604
10605         # get parents by fid
10606         parent=$($LFS path2fid --parents $MOUNT/.lustre/fid/$file_fid)
10607         # foo1 should no longer be returned in parent list
10608         echo "$parent" | grep -F "$FID1" &&
10609                 error "$FID1 should no longer be in parent list"
10610         # the new path should appear
10611         echo "$parent" | grep -F "$FID2/$tfile.moved" ||
10612                 error "$FID2/$tfile.moved is not in parent list"
10613
10614         # 6.2) linkea update on unlink
10615         rm -f $DIR/$tdir/d/foo2/link
10616         parent=$($LFS path2fid --parents $MOUNT/.lustre/fid/$file_fid)
10617         # foo2/link should no longer be returned in parent list
10618         echo "$parent" | grep -F "$FID2/link" &&
10619                 error "$FID2/link should no longer be in parent list"
10620         true
10621
10622         rm -f $DIR/f
10623         restore_lustre_params < $save
10624         rm -f $save
10625 }
10626 run_test 154f "get parent fids by reading link ea"
10627
10628 test_154g()
10629 {
10630         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.92) && \
10631            $(lustre_version_code client) -gt $(version_code 2.6.99) ]] ||
10632                 { skip "Need MDS version at least 2.6.92"; return 0; }
10633         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
10634
10635         mkdir -p $DIR/$tdir
10636         llapi_fid_test -d $DIR/$tdir
10637 }
10638 run_test 154g "various llapi FID tests"
10639
10640 test_155_small_load() {
10641     local temp=$TMP/$tfile
10642     local file=$DIR/$tfile
10643
10644     dd if=/dev/urandom of=$temp bs=6096 count=1 || \
10645         error "dd of=$temp bs=6096 count=1 failed"
10646     cp $temp $file
10647     cancel_lru_locks osc
10648     cmp $temp $file || error "$temp $file differ"
10649
10650     $TRUNCATE $temp 6000
10651     $TRUNCATE $file 6000
10652     cmp $temp $file || error "$temp $file differ (truncate1)"
10653
10654     echo "12345" >>$temp
10655     echo "12345" >>$file
10656     cmp $temp $file || error "$temp $file differ (append1)"
10657
10658     echo "12345" >>$temp
10659     echo "12345" >>$file
10660     cmp $temp $file || error "$temp $file differ (append2)"
10661
10662     rm -f $temp $file
10663     true
10664 }
10665
10666 test_155_big_load() {
10667     remote_ost_nodsh && skip "remote OST with nodsh" && return
10668     local temp=$TMP/$tfile
10669     local file=$DIR/$tfile
10670
10671     free_min_max
10672     local cache_size=$(do_facet ost$((MAXI+1)) \
10673         "awk '/cache/ {sum+=\\\$4} END {print sum}' /proc/cpuinfo")
10674     local large_file_size=$((cache_size * 2))
10675
10676     echo "OSS cache size: $cache_size KB"
10677     echo "Large file size: $large_file_size KB"
10678
10679     [ $MAXV -le $large_file_size ] && \
10680         skip_env "max available OST size needs > $large_file_size KB" && \
10681         return 0
10682
10683     $SETSTRIPE $file -c 1 -i $MAXI || error "$SETSTRIPE $file failed"
10684
10685     dd if=/dev/urandom of=$temp bs=$large_file_size count=1k || \
10686         error "dd of=$temp bs=$large_file_size count=1k failed"
10687     cp $temp $file
10688     ls -lh $temp $file
10689     cancel_lru_locks osc
10690     cmp $temp $file || error "$temp $file differ"
10691
10692     rm -f $temp $file
10693     true
10694 }
10695
10696 save_writethrough() {
10697         local facets=$(get_facets OST)
10698
10699         save_lustre_params $facets "obdfilter.*.writethrough_cache_enable" > $1
10700         save_lustre_params $facets "osd-*.*.writethrough_cache_enable" >> $1
10701 }
10702
10703 test_155a() {
10704         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10705         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
10706         save_writethrough $p
10707
10708         set_cache read on
10709         set_cache writethrough on
10710         test_155_small_load
10711         restore_lustre_params < $p
10712         rm -f $p
10713 }
10714 run_test 155a "Verify small file correctness: read cache:on write_cache:on"
10715
10716 test_155b() {
10717         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10718         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
10719         save_writethrough $p
10720
10721         set_cache read on
10722         set_cache writethrough off
10723         test_155_small_load
10724         restore_lustre_params < $p
10725         rm -f $p
10726 }
10727 run_test 155b "Verify small file correctness: read cache:on write_cache:off"
10728
10729 test_155c() {
10730         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10731         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
10732         save_writethrough $p
10733
10734         set_cache read off
10735         set_cache writethrough on
10736         test_155_small_load
10737         restore_lustre_params < $p
10738         rm -f $p
10739 }
10740 run_test 155c "Verify small file correctness: read cache:off write_cache:on"
10741
10742 test_155d() {
10743         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10744         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
10745         save_writethrough $p
10746
10747         set_cache read off
10748         set_cache writethrough off
10749         test_155_small_load
10750         restore_lustre_params < $p
10751         rm -f $p
10752 }
10753 run_test 155d "Verify small file correctness: read cache:off write_cache:off"
10754
10755 test_155e() {
10756         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10757         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
10758         save_writethrough $p
10759
10760         set_cache read on
10761         set_cache writethrough on
10762         test_155_big_load
10763         restore_lustre_params < $p
10764         rm -f $p
10765 }
10766 run_test 155e "Verify big file correctness: read cache:on write_cache:on"
10767
10768 test_155f() {
10769         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10770         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
10771         save_writethrough $p
10772
10773         set_cache read on
10774         set_cache writethrough off
10775         test_155_big_load
10776         restore_lustre_params < $p
10777         rm -f $p
10778 }
10779 run_test 155f "Verify big file correctness: read cache:on write_cache:off"
10780
10781 test_155g() {
10782         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10783         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
10784         save_writethrough $p
10785
10786         set_cache read off
10787         set_cache writethrough on
10788         test_155_big_load
10789         restore_lustre_params < $p
10790         rm -f $p
10791 }
10792 run_test 155g "Verify big file correctness: read cache:off write_cache:on"
10793
10794 test_155h() {
10795         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10796         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
10797         save_writethrough $p
10798
10799         set_cache read off
10800         set_cache writethrough off
10801         test_155_big_load
10802         restore_lustre_params < $p
10803         rm -f $p
10804 }
10805 run_test 155h "Verify big file correctness: read cache:off write_cache:off"
10806
10807 test_156() {
10808         remote_ost_nodsh && skip "remote OST with nodsh" && return
10809         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10810         local CPAGES=3
10811         local BEFORE
10812         local AFTER
10813         local file="$DIR/$tfile"
10814         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
10815
10816         [ "$(facet_fstype ost1)" = "zfs" -a \
10817            $(lustre_version_code ost1 -lt $(version_code 2.6.93)) ] &&
10818                 skip "LU-1956/LU-2261: stats not implemented on OSD ZFS" &&
10819                 return
10820
10821         save_writethrough $p
10822         roc_hit_init
10823
10824         log "Turn on read and write cache"
10825         set_cache read on
10826         set_cache writethrough on
10827
10828         log "Write data and read it back."
10829         log "Read should be satisfied from the cache."
10830         dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
10831         BEFORE=$(roc_hit)
10832         cancel_lru_locks osc
10833         cat $file >/dev/null
10834         AFTER=$(roc_hit)
10835         if ! let "AFTER - BEFORE == CPAGES"; then
10836                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
10837         else
10838                 log "cache hits:: before: $BEFORE, after: $AFTER"
10839         fi
10840
10841         log "Read again; it should be satisfied from the cache."
10842         BEFORE=$AFTER
10843         cancel_lru_locks osc
10844         cat $file >/dev/null
10845         AFTER=$(roc_hit)
10846         if ! let "AFTER - BEFORE == CPAGES"; then
10847                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
10848         else
10849                 log "cache hits:: before: $BEFORE, after: $AFTER"
10850         fi
10851
10852         log "Turn off the read cache and turn on the write cache"
10853         set_cache read off
10854         set_cache writethrough on
10855
10856         log "Read again; it should be satisfied from the cache."
10857         BEFORE=$(roc_hit)
10858         cancel_lru_locks osc
10859         cat $file >/dev/null
10860         AFTER=$(roc_hit)
10861         if ! let "AFTER - BEFORE == CPAGES"; then
10862                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
10863         else
10864                 log "cache hits:: before: $BEFORE, after: $AFTER"
10865         fi
10866
10867         log "Read again; it should not be satisfied from the cache."
10868         BEFORE=$AFTER
10869         cancel_lru_locks osc
10870         cat $file >/dev/null
10871         AFTER=$(roc_hit)
10872         if ! let "AFTER - BEFORE == 0"; then
10873                 error "IN CACHE: before: $BEFORE, after: $AFTER"
10874         else
10875                 log "cache hits:: before: $BEFORE, after: $AFTER"
10876         fi
10877
10878         log "Write data and read it back."
10879         log "Read should be satisfied from the cache."
10880         dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
10881         BEFORE=$(roc_hit)
10882         cancel_lru_locks osc
10883         cat $file >/dev/null
10884         AFTER=$(roc_hit)
10885         if ! let "AFTER - BEFORE == CPAGES"; then
10886                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
10887         else
10888                 log "cache hits:: before: $BEFORE, after: $AFTER"
10889         fi
10890
10891         log "Read again; it should not be satisfied from the cache."
10892         BEFORE=$AFTER
10893         cancel_lru_locks osc
10894         cat $file >/dev/null
10895         AFTER=$(roc_hit)
10896         if ! let "AFTER - BEFORE == 0"; then
10897                 error "IN CACHE: before: $BEFORE, after: $AFTER"
10898         else
10899                 log "cache hits:: before: $BEFORE, after: $AFTER"
10900         fi
10901
10902         log "Turn off read and write cache"
10903         set_cache read off
10904         set_cache writethrough off
10905
10906         log "Write data and read it back"
10907         log "It should not be satisfied from the cache."
10908         rm -f $file
10909         dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
10910         cancel_lru_locks osc
10911         BEFORE=$(roc_hit)
10912         cat $file >/dev/null
10913         AFTER=$(roc_hit)
10914         if ! let "AFTER - BEFORE == 0"; then
10915                 error_ignore bz20762 "IN CACHE: before: $BEFORE, after: $AFTER"
10916         else
10917                 log "cache hits:: before: $BEFORE, after: $AFTER"
10918         fi
10919
10920         log "Turn on the read cache and turn off the write cache"
10921         set_cache read on
10922         set_cache writethrough off
10923
10924         log "Write data and read it back"
10925         log "It should not be satisfied from the cache."
10926         rm -f $file
10927         dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
10928         BEFORE=$(roc_hit)
10929         cancel_lru_locks osc
10930         cat $file >/dev/null
10931         AFTER=$(roc_hit)
10932         if ! let "AFTER - BEFORE == 0"; then
10933                 error_ignore bz20762 "IN CACHE: before: $BEFORE, after: $AFTER"
10934         else
10935                 log "cache hits:: before: $BEFORE, after: $AFTER"
10936         fi
10937
10938         log "Read again; it should be satisfied from the cache."
10939         BEFORE=$(roc_hit)
10940         cancel_lru_locks osc
10941         cat $file >/dev/null
10942         AFTER=$(roc_hit)
10943         if ! let "AFTER - BEFORE == CPAGES"; then
10944                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
10945         else
10946                 log "cache hits:: before: $BEFORE, after: $AFTER"
10947         fi
10948
10949         rm -f $file
10950         restore_lustre_params < $p
10951         rm -f $p
10952 }
10953 run_test 156 "Verification of tunables"
10954
10955 #Changelogs
10956 cleanup_changelog () {
10957         trap 0
10958         echo "Deregistering changelog client $CL_USER"
10959         do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister $CL_USER
10960 }
10961
10962 err17935 () {
10963         if [[ $MDSCOUNT -gt 1 ]]; then
10964                 error_ignore bz17935 $*
10965         else
10966                 error $*
10967         fi
10968 }
10969
10970 changelog_chmask()
10971 {
10972         local CL_MASK_PARAM="mdd.$MDT0.changelog_mask"
10973
10974         MASK=$(do_facet $SINGLEMDS $LCTL get_param $CL_MASK_PARAM| grep -c "$1")
10975
10976         if [ $MASK -eq 1 ]; then
10977                 do_facet $SINGLEMDS $LCTL set_param $CL_MASK_PARAM="-$1"
10978         else
10979                 do_facet $SINGLEMDS $LCTL set_param $CL_MASK_PARAM="+$1"
10980         fi
10981 }
10982
10983 changelog_extract_field() {
10984         local mdt=$1
10985         local cltype=$2
10986         local file=$3
10987         local identifier=$4
10988
10989         $LFS changelog $mdt | gawk "/$cltype.*$file$/ {
10990                 print gensub(/^.* "$identifier'(\[[^\]]*\]).*$/,"\\1",1)}' |
10991                 tail -1
10992 }
10993
10994 test_160a() {
10995         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10996         remote_mds_nodsh && skip "remote MDS with nodsh" && return
10997         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] ||
10998                 { skip "Need MDS version at least 2.2.0"; return; }
10999
11000         local CL_USERS="mdd.$MDT0.changelog_users"
11001         local GET_CL_USERS="do_facet $SINGLEMDS $LCTL get_param -n $CL_USERS"
11002         CL_USER=$(do_facet $SINGLEMDS $LCTL --device $MDT0 \
11003                 changelog_register -n)
11004         echo "Registered as changelog user $CL_USER"
11005         trap cleanup_changelog EXIT
11006         $GET_CL_USERS | grep -q $CL_USER ||
11007                 error "User $CL_USER not found in changelog_users"
11008
11009         # change something
11010         test_mkdir -p $DIR/$tdir/pics/2008/zachy
11011         touch $DIR/$tdir/pics/2008/zachy/timestamp
11012         cp /etc/hosts $DIR/$tdir/pics/2008/zachy/pic1.jpg
11013         mv $DIR/$tdir/pics/2008/zachy $DIR/$tdir/pics/zach
11014         ln $DIR/$tdir/pics/zach/pic1.jpg $DIR/$tdir/pics/2008/portland.jpg
11015         ln -s $DIR/$tdir/pics/2008/portland.jpg $DIR/$tdir/pics/desktop.jpg
11016         rm $DIR/$tdir/pics/desktop.jpg
11017
11018         $LFS changelog $MDT0 | tail -5
11019
11020         echo "verifying changelog mask"
11021         changelog_chmask "MKDIR"
11022         changelog_chmask "CLOSE"
11023
11024         test_mkdir -p $DIR/$tdir/pics/zach/sofia
11025         echo "zzzzzz" > $DIR/$tdir/pics/zach/file
11026
11027         changelog_chmask "MKDIR"
11028         changelog_chmask "CLOSE"
11029
11030         test_mkdir -p $DIR/$tdir/pics/2008/sofia
11031         echo "zzzzzz" > $DIR/$tdir/pics/zach/file
11032
11033         $LFS changelog $MDT0
11034         MKDIRS=$($LFS changelog $MDT0 | tail -5 | grep -c "MKDIR")
11035         CLOSES=$($LFS changelog $MDT0 | tail -5 | grep -c "CLOSE")
11036         [ $MKDIRS -eq 1 ] || err17935 "MKDIR changelog mask count $DIRS != 1"
11037         [ $CLOSES -eq 1 ] || err17935 "CLOSE changelog mask count $DIRS != 1"
11038
11039         # verify contents
11040         echo "verifying target fid"
11041         fidc=$(changelog_extract_field $MDT0 "CREAT" "timestamp" "t=")
11042         fidf=$($LFS path2fid $DIR/$tdir/pics/zach/timestamp)
11043         [ "$fidc" == "$fidf" ] ||
11044                 err17935 "fid in changelog $fidc != file fid $fidf"
11045         echo "verifying parent fid"
11046         fidc=$(changelog_extract_field $MDT0 "CREAT" "timestamp" "p=")
11047         fidf=$($LFS path2fid $DIR/$tdir/pics/zach)
11048         [ "$fidc" == "$fidf" ] ||
11049                 err17935 "pfid in changelog $fidc != dir fid $fidf"
11050
11051         USER_REC1=$($GET_CL_USERS | awk "\$1 == \"$CL_USER\" {print \$2}")
11052         $LFS changelog_clear $MDT0 $CL_USER $(($USER_REC1 + 5))
11053         USER_REC2=$($GET_CL_USERS | awk "\$1 == \"$CL_USER\" {print \$2}")
11054         echo "verifying user clear: $(( $USER_REC1 + 5 )) == $USER_REC2"
11055         [ $USER_REC2 == $(($USER_REC1 + 5)) ] ||
11056                 err17935 "user index expected $(($USER_REC1 + 5)) is $USER_REC2"
11057
11058         MIN_REC=$($GET_CL_USERS |
11059                 awk 'min == "" || $2 < min {min = $2}; END {print min}')
11060         FIRST_REC=$($LFS changelog $MDT0 | head -n1 | awk '{print $1}')
11061         echo "verifying min purge: $(( $MIN_REC + 1 )) == $FIRST_REC"
11062         [ $FIRST_REC == $(($MIN_REC + 1)) ] ||
11063                 err17935 "first index should be $(($MIN_REC + 1)) is $FIRST_REC"
11064
11065         # LU-3446 changelog index reset on MDT restart
11066         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
11067         CUR_REC1=$($GET_CL_USERS | head -n1 | cut -f3 -d' ')
11068         $LFS changelog_clear $MDT0 $CL_USER 0
11069         stop $SINGLEMDS || error "Fail to stop MDT."
11070         start $SINGLEMDS $MDT_DEV $MDS_MOUNT_OPTS || error "Fail to start MDT."
11071         CUR_REC2=$($GET_CL_USERS | head -n1 | cut -f3 -d' ')
11072         echo "verifying index survives MDT restart: $CUR_REC1 == $CUR_REC2"
11073         [ $CUR_REC1 == $CUR_REC2 ] ||
11074                 err17935 "current index should be $CUR_REC1 is $CUR_REC2"
11075
11076         echo "verifying user deregister"
11077         cleanup_changelog
11078         $GET_CL_USERS | grep -q $CL_USER &&
11079                 error "User $CL_USER still in changelog_users"
11080
11081         USERS=$(( $($GET_CL_USERS | wc -l) - 2 ))
11082         if [ $CL_USER -eq 0 ]; then
11083                 LAST_REC1=$($GET_CL_USERS | head -n1 | cut -f3 -d' ')
11084                 touch $DIR/$tdir/chloe
11085                 LAST_REC2=$($GET_CL_USERS | head -n1 | cut -f3 -d' ')
11086                 echo "verify changelogs are off: $LAST_REC1 == $LAST_REC2"
11087                 [ $LAST_REC1 == $LAST_REC2 ] || error "changelogs not off"
11088         else
11089                 echo "$CL_USER other changelog users; can't verify off"
11090         fi
11091 }
11092 run_test 160a "changelog sanity"
11093
11094 test_160b() { # LU-3587
11095         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11096         remote_mds_nodsh && skip "remote MDS with nodsh" && return
11097         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] ||
11098                 { skip "Need MDS version at least 2.2.0"; return; }
11099
11100         local CL_USERS="mdd.$MDT0.changelog_users"
11101         local GET_CL_USERS="do_facet $SINGLEMDS $LCTL get_param -n $CL_USERS"
11102         CL_USER=$(do_facet $SINGLEMDS $LCTL --device $MDT0 \
11103                 changelog_register -n)
11104         echo "Registered as changelog user $CL_USER"
11105         trap cleanup_changelog EXIT
11106         $GET_CL_USERS | grep -q $CL_USER ||
11107                 error "User $CL_USER not found in changelog_users"
11108
11109         local LONGNAME1=$(str_repeat a 255)
11110         local LONGNAME2=$(str_repeat b 255)
11111
11112         cd $DIR
11113         echo "creating very long named file"
11114         touch $LONGNAME1 || error "create of $LONGNAME1 failed"
11115         echo "moving very long named file"
11116         mv $LONGNAME1 $LONGNAME2
11117
11118         $LFS changelog $MDT0 | grep RENME
11119         rm -f $LONGNAME2
11120         cleanup_changelog
11121 }
11122 run_test 160b "Verify that very long rename doesn't crash in changelog"
11123
11124 test_160c() {
11125         remote_mds_nodsh && skip "remote MDS with nodsh" && return
11126
11127         local rc=0
11128         local server_version=$(lustre_version_code $SINGLEMDS)
11129
11130         [[ $server_version -gt $(version_code 2.5.57) ]] ||
11131                 [[ $server_version -gt $(version_code 2.5.1) &&
11132                    $server_version -lt $(version_code 2.5.50) ]] ||
11133                 { skip "Need MDS version at least 2.5.58 or 2.5.2+"; return; }
11134         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11135
11136         # Registration step
11137         CL_USER=$(do_facet $SINGLEMDS $LCTL --device $MDT0 \
11138                 changelog_register -n)
11139         trap cleanup_changelog EXIT
11140
11141         rm -rf $DIR/$tdir
11142         mkdir -p $DIR/$tdir
11143         $MCREATE $DIR/$tdir/foo_160c
11144         changelog_chmask "TRUNC"
11145         $TRUNCATE $DIR/$tdir/foo_160c 200
11146         changelog_chmask "TRUNC"
11147         $TRUNCATE $DIR/$tdir/foo_160c 199
11148         $LFS changelog $MDT0
11149         TRUNCS=$($LFS changelog $MDT0 | tail -5 | grep -c "TRUNC")
11150         [ $TRUNCS -eq 1 ] || err17935 "TRUNC changelog mask count $TRUNCS != 1"
11151         $LFS changelog_clear $MDT0 $CL_USER 0
11152
11153         # Deregistration step
11154         cleanup_changelog
11155 }
11156 run_test 160c "verify that changelog log catch the truncate event"
11157
11158 test_160d() {
11159         remote_mds_nodsh && skip "remote MDS with nodsh" && return
11160         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
11161
11162         local server_version=$(lustre_version_code mds1)
11163         local CL_MASK_PARAM="mdd.$MDT0.changelog_mask"
11164
11165         [[ $server_version -ge $(version_code 2.7.60) ]] ||
11166                 { skip "Need MDS version at least 2.7.60+"; return; }
11167         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11168
11169         # Registration step
11170         CL_USER=$(do_facet mds1 $LCTL --device $MDT0 \
11171                 changelog_register -n)
11172
11173         trap cleanup_changelog EXIT
11174         mkdir -p $DIR/$tdir/migrate_dir
11175         $LFS changelog_clear $MDT0 $CL_USER 0
11176
11177         $LFS migrate -m 1 $DIR/$tdir/migrate_dir || error "migrate fails"
11178         $LFS changelog $MDT0
11179         MIGRATES=$($LFS changelog $MDT0 | tail -5 | grep -c "MIGRT")
11180         $LFS changelog_clear $MDT0 $CL_USER 0
11181         [ $MIGRATES -eq 1 ] ||
11182                 error "MIGRATE changelog mask count $MIGRATES != 1"
11183
11184         # Deregistration step
11185         cleanup_changelog
11186 }
11187 run_test 160d "verify that changelog log catch the migrate event"
11188
11189 test_160e() {
11190         remote_mds_nodsh && skip "remote MDS with nodsh" && return
11191
11192         # Create a user
11193         CL_USER=$(do_facet $SINGLEMDS $LCTL --device $MDT0 \
11194                 changelog_register -n)
11195         echo "Registered as changelog user $CL_USER"
11196         trap cleanup_changelog EXIT
11197
11198         # Delete a future user (expect fail)
11199         do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister cl77
11200         local rc=$?
11201
11202         if [ $rc -eq 0 ]; then
11203                 error "Deleted non-existant user cl77"
11204         elif [ $rc -ne 2 ]; then
11205                 error "changelog_deregister failed with $rc, " \
11206                         "expected 2 (ENOENT)"
11207         fi
11208
11209         # Clear to a bad index (1 billion should be safe)
11210         $LFS changelog_clear $MDT0 $CL_USER 1000000000
11211         rc=$?
11212
11213         if [ $rc -eq 0 ]; then
11214                 error "Successfully cleared to invalid CL index"
11215         elif [ $rc -ne 22 ]; then
11216                 error "changelog_clear failed with $rc, expected 22 (EINVAL)"
11217         fi
11218 }
11219 run_test 160e "changelog negative testing"
11220
11221 test_161a() {
11222         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11223         test_mkdir -c1 $DIR/$tdir
11224         cp /etc/hosts $DIR/$tdir/$tfile
11225         test_mkdir -c1 $DIR/$tdir/foo1
11226         test_mkdir -c1 $DIR/$tdir/foo2
11227         ln $DIR/$tdir/$tfile $DIR/$tdir/foo1/sofia
11228         ln $DIR/$tdir/$tfile $DIR/$tdir/foo2/zachary
11229         ln $DIR/$tdir/$tfile $DIR/$tdir/foo1/luna
11230         ln $DIR/$tdir/$tfile $DIR/$tdir/foo2/thor
11231         local FID=$($LFS path2fid $DIR/$tdir/$tfile | tr -d '[]')
11232         if [ "$($LFS fid2path $DIR $FID | wc -l)" != "5" ]; then
11233                 $LFS fid2path $DIR $FID
11234                 err17935 "bad link ea"
11235         fi
11236     # middle
11237     rm $DIR/$tdir/foo2/zachary
11238     # last
11239     rm $DIR/$tdir/foo2/thor
11240     # first
11241     rm $DIR/$tdir/$tfile
11242     # rename
11243     mv $DIR/$tdir/foo1/sofia $DIR/$tdir/foo2/maggie
11244     if [ "$($LFS fid2path $FSNAME --link 1 $FID)" != "$tdir/foo2/maggie" ]
11245         then
11246         $LFS fid2path $DIR $FID
11247         err17935 "bad link rename"
11248     fi
11249     rm $DIR/$tdir/foo2/maggie
11250
11251         # overflow the EA
11252         local longname=filename_avg_len_is_thirty_two_
11253         createmany -l$DIR/$tdir/foo1/luna $DIR/$tdir/foo2/$longname 1000 ||
11254                 error "failed to hardlink many files"
11255         links=$($LFS fid2path $DIR $FID | wc -l)
11256         echo -n "${links}/1000 links in link EA"
11257         [[ $links -gt 60 ]] ||
11258                 err17935 "expected at least 60 links in link EA"
11259         unlinkmany $DIR/$tdir/foo2/$longname 1000 ||
11260                 error "failed to unlink many hardlinks"
11261 }
11262 run_test 161a "link ea sanity"
11263
11264 test_161b() {
11265         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11266         [ $MDSCOUNT -lt 2 ] && skip "skipping remote directory test" && return
11267         local MDTIDX=1
11268         local remote_dir=$DIR/$tdir/remote_dir
11269
11270         mkdir -p $DIR/$tdir
11271         $LFS mkdir -i $MDTIDX $remote_dir ||
11272                 error "create remote directory failed"
11273
11274         cp /etc/hosts $remote_dir/$tfile
11275         mkdir -p $remote_dir/foo1
11276         mkdir -p $remote_dir/foo2
11277         ln $remote_dir/$tfile $remote_dir/foo1/sofia
11278         ln $remote_dir/$tfile $remote_dir/foo2/zachary
11279         ln $remote_dir/$tfile $remote_dir/foo1/luna
11280         ln $remote_dir/$tfile $remote_dir/foo2/thor
11281
11282         local FID=$($LFS path2fid $remote_dir/$tfile | tr -d '[' |
11283                      tr -d ']')
11284         if [ "$($LFS fid2path $DIR $FID | wc -l)" != "5" ]; then
11285                 $LFS fid2path $DIR $FID
11286                 err17935 "bad link ea"
11287         fi
11288         # middle
11289         rm $remote_dir/foo2/zachary
11290         # last
11291         rm $remote_dir/foo2/thor
11292         # first
11293         rm $remote_dir/$tfile
11294         # rename
11295         mv $remote_dir/foo1/sofia $remote_dir/foo2/maggie
11296         local link_path=$($LFS fid2path $FSNAME --link 1 $FID)
11297         if [ "$DIR/$link_path" != "$remote_dir/foo2/maggie" ]; then
11298                 $LFS fid2path $DIR $FID
11299                 err17935 "bad link rename"
11300         fi
11301         rm $remote_dir/foo2/maggie
11302
11303         # overflow the EA
11304         local longname=filename_avg_len_is_thirty_two_
11305         createmany -l$remote_dir/foo1/luna $remote_dir/foo2/$longname 1000 ||
11306                 error "failed to hardlink many files"
11307         links=$($LFS fid2path $DIR $FID | wc -l)
11308         echo -n "${links}/1000 links in link EA"
11309         [[ ${links} -gt 60 ]] ||
11310                 err17935 "expected at least 60 links in link EA"
11311         unlinkmany $remote_dir/foo2/$longname 1000 ||
11312         error "failed to unlink many hardlinks"
11313 }
11314 run_test 161b "link ea sanity under remote directory"
11315
11316 test_161c() {
11317         remote_mds_nodsh && skip "remote MDS with nodsh" && return
11318         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11319         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.1.5) ]] &&
11320                 skip "Need MDS version at least 2.1.5" && return
11321
11322         # define CLF_RENAME_LAST 0x0001
11323         # rename overwrite a target having nlink = 1 (changelog flag 0x1)
11324         CL_USER=$(do_facet $SINGLEMDS $LCTL --device $MDT0 \
11325                 changelog_register -n)
11326
11327         trap cleanup_changelog EXIT
11328         rm -rf $DIR/$tdir
11329         mkdir -p $DIR/$tdir
11330         touch $DIR/$tdir/foo_161c
11331         touch $DIR/$tdir/bar_161c
11332         mv -f $DIR/$tdir/foo_161c $DIR/$tdir/bar_161c
11333         $LFS changelog $MDT0 | grep RENME
11334         local flags=$($LFS changelog $MDT0 | grep RENME | tail -1 | \
11335                 cut -f5 -d' ')
11336         $LFS changelog_clear $MDT0 $CL_USER 0
11337         if [ x$flags != "x0x1" ]; then
11338                 error "flag $flags is not 0x1"
11339         fi
11340         echo "rename overwrite a target having nlink = 1," \
11341                 "changelog record has flags of $flags"
11342
11343         # rename overwrite a target having nlink > 1 (changelog flag 0x0)
11344         touch $DIR/$tdir/foo_161c
11345         touch $DIR/$tdir/bar_161c
11346         ln $DIR/$tdir/bar_161c $DIR/$tdir/foobar_161c
11347         mv -f $DIR/$tdir/foo_161c $DIR/$tdir/bar_161c
11348         $LFS changelog $MDT0 | grep RENME
11349         flags=$($LFS changelog $MDT0 | grep RENME | tail -1 | cut -f5 -d' ')
11350         $LFS changelog_clear $MDT0 $CL_USER 0
11351         if [ x$flags != "x0x0" ]; then
11352                 error "flag $flags is not 0x0"
11353         fi
11354         echo "rename overwrite a target having nlink > 1," \
11355                 "changelog record has flags of $flags"
11356
11357         # rename doesn't overwrite a target (changelog flag 0x0)
11358         touch $DIR/$tdir/foo_161c
11359         mv -f $DIR/$tdir/foo_161c $DIR/$tdir/foo2_161c
11360         $LFS changelog $MDT0 | grep RENME
11361         flags=$($LFS changelog $MDT0 | grep RENME | tail -1 | cut -f5 -d' ')
11362         $LFS changelog_clear $MDT0 $CL_USER 0
11363         if [ x$flags != "x0x0" ]; then
11364                 error "flag $flags is not 0x0"
11365         fi
11366         echo "rename doesn't overwrite a target," \
11367                 "changelog record has flags of $flags"
11368
11369         # define CLF_UNLINK_LAST 0x0001
11370         # unlink a file having nlink = 1 (changelog flag 0x1)
11371         rm -f $DIR/$tdir/foo2_161c
11372         $LFS changelog $MDT0 | grep UNLNK
11373         flags=$($LFS changelog $MDT0 | grep UNLNK | tail -1 | cut -f5 -d' ')
11374         $LFS changelog_clear $MDT0 $CL_USER 0
11375         if [ x$flags != "x0x1" ]; then
11376                 error "flag $flags is not 0x1"
11377         fi
11378         echo "unlink a file having nlink = 1," \
11379                 "changelog record has flags of $flags"
11380
11381         # unlink a file having nlink > 1 (changelog flag 0x0)
11382         ln -f $DIR/$tdir/bar_161c $DIR/$tdir/foobar_161c
11383         rm -f $DIR/$tdir/foobar_161c
11384         $LFS changelog $MDT0 | grep UNLNK
11385         flags=$($LFS changelog $MDT0 | grep UNLNK | tail -1 | cut -f5 -d' ')
11386         $LFS changelog_clear $MDT0 $CL_USER 0
11387         if [ x$flags != "x0x0" ]; then
11388                 error "flag $flags is not 0x0"
11389         fi
11390         echo "unlink a file having nlink > 1," \
11391                 "changelog record has flags of $flags"
11392         cleanup_changelog
11393 }
11394 run_test 161c "check CL_RENME[UNLINK] changelog record flags"
11395
11396 test_161d() {
11397         local user
11398         local pid
11399         local fid
11400
11401         # cleanup previous run
11402         rm -rf $DIR/$tdir/$tfile
11403
11404         user=$(do_facet $SINGLEMDS $LCTL --device $MDT0 \
11405                 changelog_register -n)
11406         [[ $? -eq 0 ]] || error "changelog_register failed"
11407
11408         # work in a standalone dir to avoid locking on $DIR/$MOUNT to
11409         # interfer with $MOUNT/.lustre/fid/ access
11410         mkdir $DIR/$tdir
11411         [[ $? -eq 0 ]] || error "mkdir failed"
11412
11413         #define OBD_FAIL_LLITE_CREATE_NODE_PAUSE 0x140c | OBD_FAIL_ONCE
11414         $LCTL set_param fail_loc=0x8000140c
11415         # 5s pause
11416         $LCTL set_param fail_val=5
11417
11418         # create file
11419         echo foofoo > $DIR/$tdir/$tfile &
11420         pid=$!
11421
11422         # wait for create to be delayed
11423         sleep 2
11424
11425         ps -p $pid
11426         [[ $? -eq 0 ]] || error "create should be blocked"
11427
11428         local tempfile=$(mktemp)
11429         fid=$(changelog_extract_field $MDT0 "CREAT" "$tfile" "t=")
11430         cat $MOUNT/.lustre/fid/$fid 2>/dev/null >$tempfile || error "cat failed"
11431         # some delay may occur during ChangeLog publishing and file read just
11432         # above, that could allow file write to happen finally
11433         [[ -s $tempfile ]] && echo "file should be empty"
11434
11435         $LCTL set_param fail_loc=0
11436
11437         wait $pid
11438         [[ $? -eq 0 ]] || error "create failed"
11439
11440         $LFS changelog_clear $MDT0 $user 0
11441         do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister $user
11442 }
11443 run_test 161d "create with concurrent .lustre/fid access"
11444
11445 check_path() {
11446     local expected=$1
11447     shift
11448     local fid=$2
11449
11450     local path=$(${LFS} fid2path $*)
11451     # Remove the '//' indicating a remote directory
11452     path=$(echo $path | sed 's#//#/#g')
11453     RC=$?
11454
11455     if [ $RC -ne 0 ]; then
11456         err17935 "path looked up of $expected failed. Error $RC"
11457         return $RC
11458     elif [ "${path}" != "${expected}" ]; then
11459         err17935 "path looked up \"${path}\" instead of \"${expected}\""
11460         return 2
11461     fi
11462     echo "fid $fid resolves to path $path (expected $expected)"
11463 }
11464
11465 test_162a() { # was test_162
11466         # Make changes to filesystem
11467         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11468         test_mkdir -p -c1 $DIR/$tdir/d2
11469         touch $DIR/$tdir/d2/$tfile
11470         touch $DIR/$tdir/d2/x1
11471         touch $DIR/$tdir/d2/x2
11472         test_mkdir -p -c1 $DIR/$tdir/d2/a/b/c
11473         test_mkdir -p -c1 $DIR/$tdir/d2/p/q/r
11474         # regular file
11475         FID=$($LFS path2fid $DIR/$tdir/d2/$tfile | tr -d '[]')
11476         check_path "$tdir/d2/$tfile" $FSNAME $FID --link 0 ||
11477                 error "check path $tdir/d2/$tfile failed"
11478
11479         # softlink
11480         ln -s $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/p/q/r/slink
11481         FID=$($LFS path2fid $DIR/$tdir/d2/p/q/r/slink | tr -d '[]')
11482         check_path "$tdir/d2/p/q/r/slink" $FSNAME $FID --link 0 ||
11483                 error "check path $tdir/d2/p/q/r/slink failed"
11484
11485         # softlink to wrong file
11486         ln -s /this/is/garbage $DIR/$tdir/d2/p/q/r/slink.wrong
11487         FID=$($LFS path2fid $DIR/$tdir/d2/p/q/r/slink.wrong | tr -d '[]')
11488         check_path "$tdir/d2/p/q/r/slink.wrong" $FSNAME $FID --link 0 ||
11489                 error "check path $tdir/d2/p/q/r/slink.wrong failed"
11490
11491         # hardlink
11492         ln $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/p/q/r/hlink
11493         mv $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/a/b/c/new_file
11494         FID=$($LFS path2fid $DIR/$tdir/d2/a/b/c/new_file | tr -d '[]')
11495         # fid2path dir/fsname should both work
11496         check_path "$tdir/d2/a/b/c/new_file" $FSNAME $FID --link 1 ||
11497                 error "check path $tdir/d2/a/b/c/new_file failed"
11498         check_path "$DIR/$tdir/d2/p/q/r/hlink" $DIR $FID --link 0 ||
11499                 error "check path $DIR/$tdir/d2/p/q/r/hlink failed"
11500
11501         # hardlink count: check that there are 2 links
11502         # Doesnt work with CMD yet: 17935
11503         ${LFS} fid2path $DIR $FID | wc -l | grep -q 2 || \
11504                 err17935 "expected 2 links"
11505
11506         # hardlink indexing: remove the first link
11507         rm $DIR/$tdir/d2/p/q/r/hlink
11508         check_path "$tdir/d2/a/b/c/new_file" $FSNAME $FID --link 0 ||
11509                 error "check path $DIR/$tdir/d2/a/b/c/new_file failed"
11510
11511         return 0
11512 }
11513 run_test 162a "path lookup sanity"
11514
11515 test_162b() {
11516         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11517         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
11518
11519         mkdir $DIR/$tdir
11520         $LFS setdirstripe -i0 -c$MDSCOUNT -t all_char $DIR/$tdir/striped_dir ||
11521                                 error "create striped dir failed"
11522
11523         local FID=$($LFS getdirstripe $DIR/$tdir/striped_dir |
11524                                         tail -n 1 | awk '{print $2}')
11525         stat $MOUNT/.lustre/fid/$FID && error "sub_stripe can be accessed"
11526
11527         touch $DIR/$tdir/striped_dir/f{0..4} || error "touch f0..4 failed"
11528         mkdir $DIR/$tdir/striped_dir/d{0..4} || error "mkdir d0..4 failed"
11529
11530         # regular file
11531         for ((i=0;i<5;i++)); do
11532                 FID=$($LFS path2fid $DIR/$tdir/striped_dir/f$i | tr -d '[]') ||
11533                         error "get fid for f$i failed"
11534                 check_path "$tdir/striped_dir/f$i" $FSNAME $FID --link 0 ||
11535                         error "check path $tdir/striped_dir/f$i failed"
11536
11537                 FID=$($LFS path2fid $DIR/$tdir/striped_dir/d$i | tr -d '[]') ||
11538                         error "get fid for d$i failed"
11539                 check_path "$tdir/striped_dir/d$i" $FSNAME $FID --link 0 ||
11540                         error "check path $tdir/striped_dir/d$i failed"
11541         done
11542
11543         return 0
11544 }
11545 run_test 162b "striped directory path lookup sanity"
11546
11547 # LU-4239: Verify fid2path works with paths 100 or more directories deep
11548 test_162c() {
11549         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.51) ]] &&
11550                 skip "Need MDS version at least 2.7.51" && return
11551         test_mkdir $DIR/$tdir.local
11552         test_mkdir $DIR/$tdir.remote
11553         local lpath=$tdir.local
11554         local rpath=$tdir.remote
11555
11556         for ((i = 0; i <= 101; i++)); do
11557                 lpath="$lpath/$i"
11558                 mkdir $DIR/$lpath
11559                 FID=$($LFS path2fid $DIR/$lpath | tr -d '[]') ||
11560                         error "get fid for local directory $DIR/$lpath failed"
11561                 check_path "$DIR/$lpath" $MOUNT $FID --link 0 ||
11562                         error "check path for local directory $DIR/$lpath failed"
11563
11564                 rpath="$rpath/$i"
11565                 test_mkdir $DIR/$rpath
11566                 FID=$($LFS path2fid $DIR/$rpath | tr -d '[]') ||
11567                         error "get fid for remote directory $DIR/$rpath failed"
11568                 check_path "$DIR/$rpath" $MOUNT $FID --link 0 ||
11569                         error "check path for remote directory $DIR/$rpath failed"
11570         done
11571
11572         return 0
11573 }
11574 run_test 162c "fid2path works with paths 100 or more directories deep"
11575
11576 test_169() {
11577         # do directio so as not to populate the page cache
11578         log "creating a 10 Mb file"
11579         $MULTIOP $DIR/$tfile oO_CREAT:O_DIRECT:O_RDWR:w$((10*1048576))c || error "multiop failed while creating a file"
11580         log "starting reads"
11581         dd if=$DIR/$tfile of=/dev/null bs=4096 &
11582         log "truncating the file"
11583         $MULTIOP $DIR/$tfile oO_TRUNC:c || error "multiop failed while truncating the file"
11584         log "killing dd"
11585         kill %+ || true # reads might have finished
11586         echo "wait until dd is finished"
11587         wait
11588         log "removing the temporary file"
11589         rm -rf $DIR/$tfile || error "tmp file removal failed"
11590 }
11591 run_test 169 "parallel read and truncate should not deadlock"
11592
11593 test_170() {
11594         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11595         $LCTL clear     # bug 18514
11596         $LCTL debug_daemon start $TMP/${tfile}_log_good
11597         touch $DIR/$tfile
11598         $LCTL debug_daemon stop
11599         sed -e "s/^...../a/g" $TMP/${tfile}_log_good > $TMP/${tfile}_log_bad ||
11600                error "sed failed to read log_good"
11601
11602         $LCTL debug_daemon start $TMP/${tfile}_log_good
11603         rm -rf $DIR/$tfile
11604         $LCTL debug_daemon stop
11605
11606         $LCTL df $TMP/${tfile}_log_bad > $TMP/${tfile}_log_bad.out 2>&1 ||
11607                error "lctl df log_bad failed"
11608
11609         local bad_line=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $9}')
11610         local good_line1=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $5}')
11611
11612         $LCTL df $TMP/${tfile}_log_good > $TMP/${tfile}_log_good.out 2>&1
11613         local good_line2=$(tail -n 1 $TMP/${tfile}_log_good.out | awk '{print $5}')
11614
11615         [ "$bad_line" ] && [ "$good_line1" ] && [ "$good_line2" ] ||
11616                 error "bad_line good_line1 good_line2 are empty"
11617
11618         cat $TMP/${tfile}_log_good >> $TMP/${tfile}_logs_corrupt
11619         cat $TMP/${tfile}_log_bad >> $TMP/${tfile}_logs_corrupt
11620         cat $TMP/${tfile}_log_good >> $TMP/${tfile}_logs_corrupt
11621
11622         $LCTL df $TMP/${tfile}_logs_corrupt > $TMP/${tfile}_log_bad.out 2>&1
11623         local bad_line_new=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $9}')
11624         local good_line_new=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $5}')
11625
11626         [ "$bad_line_new" ] && [ "$good_line_new" ] ||
11627                 error "bad_line_new good_line_new are empty"
11628
11629         local expected_good=$((good_line1 + good_line2*2))
11630
11631         rm -f $TMP/${tfile}*
11632         # LU-231, short malformed line may not be counted into bad lines
11633         if [ $bad_line -ne $bad_line_new ] &&
11634                    [ $bad_line -ne $((bad_line_new - 1)) ]; then
11635                 error "expected $bad_line bad lines, but got $bad_line_new"
11636                 return 1
11637         fi
11638
11639         if [ $expected_good -ne $good_line_new ]; then
11640                 error "expected $expected_good good lines, but got $good_line_new"
11641                 return 2
11642         fi
11643         true
11644 }
11645 run_test 170 "test lctl df to handle corrupted log ====================="
11646
11647 test_171() { # bug20592
11648         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11649 #define OBD_FAIL_PTLRPC_DUMP_LOG         0x50e
11650         $LCTL set_param fail_loc=0x50e
11651         $LCTL set_param fail_val=3000
11652         multiop_bg_pause $DIR/$tfile O_s || true
11653         local MULTIPID=$!
11654         kill -USR1 $MULTIPID
11655         # cause log dump
11656         sleep 3
11657         wait $MULTIPID
11658         if dmesg | grep "recursive fault"; then
11659                 error "caught a recursive fault"
11660         fi
11661         $LCTL set_param fail_loc=0
11662         true
11663 }
11664 run_test 171 "test libcfs_debug_dumplog_thread stuck in do_exit() ======"
11665
11666 # it would be good to share it with obdfilter-survey/iokit-libecho code
11667 setup_obdecho_osc () {
11668         local rc=0
11669         local ost_nid=$1
11670         local obdfilter_name=$2
11671         echo "Creating new osc for $obdfilter_name on $ost_nid"
11672         # make sure we can find loopback nid
11673         $LCTL add_uuid $ost_nid $ost_nid >/dev/null 2>&1
11674
11675         [ $rc -eq 0 ] && { $LCTL attach osc ${obdfilter_name}_osc     \
11676                            ${obdfilter_name}_osc_UUID || rc=2; }
11677         [ $rc -eq 0 ] && { $LCTL --device ${obdfilter_name}_osc setup \
11678                            ${obdfilter_name}_UUID  $ost_nid || rc=3; }
11679         return $rc
11680 }
11681
11682 cleanup_obdecho_osc () {
11683         local obdfilter_name=$1
11684         $LCTL --device ${obdfilter_name}_osc cleanup >/dev/null
11685         $LCTL --device ${obdfilter_name}_osc detach  >/dev/null
11686         return 0
11687 }
11688
11689 obdecho_test() {
11690         local OBD=$1
11691         local node=$2
11692         local pages=${3:-64}
11693         local rc=0
11694         local id
11695
11696         local count=10
11697         local obd_size=$(get_obd_size $node $OBD)
11698         local page_size=$(get_page_size $node)
11699         if [[ -n "$obd_size" ]]; then
11700                 local new_count=$((obd_size / (pages * page_size / 1024)))
11701                 [[ $new_count -ge $count ]] || count=$new_count
11702         fi
11703
11704         do_facet $node "$LCTL attach echo_client ec ec_uuid" || rc=1
11705         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec setup $OBD" ||
11706                            rc=2; }
11707         if [ $rc -eq 0 ]; then
11708             id=$(do_facet $node "$LCTL --device ec create 1"  | awk '/object id/ {print $6}')
11709             [ ${PIPESTATUS[0]} -eq 0 -a -n "$id" ] || rc=3
11710         fi
11711         echo "New object id is $id"
11712         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec getattr $id" ||
11713                            rc=4; }
11714         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec "                 \
11715                            "test_brw $count w v $pages $id" || rc=4; }
11716         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec destroy $id 1" ||
11717                            rc=4; }
11718         [ $rc -eq 0 -o $rc -gt 2 ] && { do_facet $node "$LCTL --device ec "    \
11719                                         "cleanup" || rc=5; }
11720         [ $rc -eq 0 -o $rc -gt 1 ] && { do_facet $node "$LCTL --device ec "    \
11721                                         "detach" || rc=6; }
11722         [ $rc -ne 0 ] && echo "obecho_create_test failed: $rc"
11723         return $rc
11724 }
11725
11726 test_180a() {
11727         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11728         remote_ost_nodsh && skip "remote OST with nodsh" && return
11729         local rc=0
11730         local rmmod_local=0
11731
11732         if ! module_loaded obdecho; then
11733             load_module obdecho/obdecho
11734             rmmod_local=1
11735         fi
11736
11737         local osc=$($LCTL dl | grep -v mdt | awk '$3 == "osc" {print $4; exit}')
11738         local host=$(lctl get_param -n osc.$osc.import |
11739                              awk '/current_connection:/ {print $2}' )
11740         local target=$(lctl get_param -n osc.$osc.import |
11741                              awk '/target:/ {print $2}' )
11742         target=${target%_UUID}
11743
11744         [[ -n $target ]]  && { setup_obdecho_osc $host $target || rc=1; } || rc=1
11745         [ $rc -eq 0 ] && { obdecho_test ${target}_osc client || rc=2; }
11746         [[ -n $target ]] && cleanup_obdecho_osc $target
11747         [ $rmmod_local -eq 1 ] && rmmod obdecho
11748         return $rc
11749 }
11750 run_test 180a "test obdecho on osc"
11751
11752 test_180b() {
11753         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11754         remote_ost_nodsh && skip "remote OST with nodsh" && return
11755         local rc=0
11756         local rmmod_remote=0
11757
11758         do_rpc_nodes $(facet_active_host ost1) load_module obdecho/obdecho &&
11759                 rmmod_remote=true || error "failed to load module obdecho"
11760         target=$(do_facet ost1 $LCTL dl | awk '/obdfilter/ {print $4;exit}')
11761         [[ -n $target ]] && { obdecho_test $target ost1 || rc=1; }
11762         $rmmod_remote && do_facet ost1 "rmmod obdecho"
11763         return $rc
11764 }
11765 run_test 180b "test obdecho directly on obdfilter"
11766
11767 test_180c() { # LU-2598
11768         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11769         remote_ost_nodsh && skip "remote OST with nodsh" && return
11770         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.0) ]] &&
11771                 skip "Need MDS version at least 2.4.0" && return
11772
11773         local rc=0
11774         local rmmod_remote=false
11775         local pages=16384 # 64MB bulk I/O RPC size
11776         local target
11777
11778         do_rpc_nodes $(facet_active_host ost1) load_module obdecho/obdecho &&
11779                 rmmod_remote=true || error "failed to load module obdecho"
11780
11781         target=$(do_facet ost1 $LCTL dl | awk '/obdfilter/ { print $4 }' |
11782                 head -n1)
11783         if [ -n "$target" ]; then
11784                 obdecho_test "$target" ost1 "$pages" || rc=${PIPESTATUS[0]}
11785         else
11786                 echo "there is no obdfilter target on ost1"
11787                 rc=2
11788         fi
11789         $rmmod_remote && do_facet ost1 "rmmod obdecho" || true
11790         return $rc
11791 }
11792 run_test 180c "test huge bulk I/O size on obdfilter, don't LASSERT"
11793
11794 test_181() { # bug 22177
11795         test_mkdir $DIR/$tdir
11796         # create enough files to index the directory
11797         createmany -o $DIR/$tdir/foobar 4000
11798         # print attributes for debug purpose
11799         lsattr -d .
11800         # open dir
11801         multiop_bg_pause $DIR/$tdir D_Sc || return 1
11802         MULTIPID=$!
11803         # remove the files & current working dir
11804         unlinkmany $DIR/$tdir/foobar 4000
11805         rmdir $DIR/$tdir
11806         kill -USR1 $MULTIPID
11807         wait $MULTIPID
11808         stat $DIR/$tdir && error "open-unlinked dir was not removed!"
11809         return 0
11810 }
11811 run_test 181 "Test open-unlinked dir ========================"
11812
11813 test_182() {
11814         local fcount=1000
11815         local tcount=10
11816
11817         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
11818
11819         $LCTL set_param mdc.*.rpc_stats=clear
11820
11821         for (( i = 0; i < $tcount; i++ )) ; do
11822                 mkdir $DIR/$tdir/$i
11823         done
11824
11825         for (( i = 0; i < $tcount; i++ )) ; do
11826                 createmany -o $DIR/$tdir/$i/f- $fcount &
11827         done
11828         wait
11829
11830         for (( i = 0; i < $tcount; i++ )) ; do
11831                 unlinkmany $DIR/$tdir/$i/f- $fcount &
11832         done
11833         wait
11834
11835         $LCTL get_param mdc.*.rpc_stats
11836
11837         rm -rf $DIR/$tdir
11838 }
11839 run_test 182 "Test parallel modify metadata operations ================"
11840
11841 test_183() { # LU-2275
11842         remote_mds_nodsh && skip "remote MDS with nodsh" && return
11843         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.56) ]] &&
11844                 skip "Need MDS version at least 2.3.56" && return
11845
11846         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11847         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
11848         echo aaa > $DIR/$tdir/$tfile
11849
11850 #define OBD_FAIL_MDS_NEGATIVE_POSITIVE  0x148
11851         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x148
11852
11853         ls -l $DIR/$tdir && error "ls succeeded, should have failed"
11854         cat $DIR/$tdir/$tfile && error "cat succeeded, should have failed"
11855
11856         do_facet $SINGLEMDS $LCTL set_param fail_loc=0
11857
11858         # Flush negative dentry cache
11859         touch $DIR/$tdir/$tfile
11860
11861         # We are not checking for any leaked references here, they'll
11862         # become evident next time we do cleanup with module unload.
11863         rm -rf $DIR/$tdir
11864 }
11865 run_test 183 "No crash or request leak in case of strange dispositions ========"
11866
11867 # test suite 184 is for LU-2016, LU-2017
11868 test_184a() {
11869         check_swap_layouts_support && return 0
11870
11871         dir0=$DIR/$tdir/$testnum
11872         test_mkdir -p -c1 $dir0
11873         ref1=/etc/passwd
11874         ref2=/etc/group
11875         file1=$dir0/f1
11876         file2=$dir0/f2
11877         $SETSTRIPE -c1 $file1
11878         cp $ref1 $file1
11879         $SETSTRIPE -c2 $file2
11880         cp $ref2 $file2
11881         gen1=$($GETSTRIPE -g $file1)
11882         gen2=$($GETSTRIPE -g $file2)
11883
11884         $LFS swap_layouts $file1 $file2 || error "swap of file layout failed"
11885         gen=$($GETSTRIPE -g $file1)
11886         [[ $gen1 != $gen ]] ||
11887                 "Layout generation on $file1 does not change"
11888         gen=$($GETSTRIPE -g $file2)
11889         [[ $gen2 != $gen ]] ||
11890                 "Layout generation on $file2 does not change"
11891
11892         cmp $ref1 $file2 || error "content compare failed ($ref1 != $file2)"
11893         cmp $ref2 $file1 || error "content compare failed ($ref2 != $file1)"
11894 }
11895 run_test 184a "Basic layout swap"
11896
11897 test_184b() {
11898         check_swap_layouts_support && return 0
11899
11900         dir0=$DIR/$tdir/$testnum
11901         mkdir -p $dir0 || error "creating dir $dir0"
11902         file1=$dir0/f1
11903         file2=$dir0/f2
11904         file3=$dir0/f3
11905         dir1=$dir0/d1
11906         dir2=$dir0/d2
11907         mkdir $dir1 $dir2
11908         $SETSTRIPE -c1 $file1
11909         $SETSTRIPE -c2 $file2
11910         $SETSTRIPE -c1 $file3
11911         chown $RUNAS_ID $file3
11912         gen1=$($GETSTRIPE -g $file1)
11913         gen2=$($GETSTRIPE -g $file2)
11914
11915         $LFS swap_layouts $dir1 $dir2 &&
11916                 error "swap of directories layouts should fail"
11917         $LFS swap_layouts $dir1 $file1 &&
11918                 error "swap of directory and file layouts should fail"
11919         $RUNAS $LFS swap_layouts $file1 $file2 &&
11920                 error "swap of file we cannot write should fail"
11921         $LFS swap_layouts $file1 $file3 &&
11922                 error "swap of file with different owner should fail"
11923         /bin/true # to clear error code
11924 }
11925 run_test 184b "Forbidden layout swap (will generate errors)"
11926
11927 test_184c() {
11928         local cmpn_arg=$(cmp -n 2>&1 | grep "invalid option")
11929         [ -n "$cmpn_arg" ] && skip_env "cmp does not support -n" && return
11930         check_swap_layouts_support && return 0
11931
11932         local dir0=$DIR/$tdir/$testnum
11933         mkdir -p $dir0 || error "creating dir $dir0"
11934
11935         local ref1=$dir0/ref1
11936         local ref2=$dir0/ref2
11937         local file1=$dir0/file1
11938         local file2=$dir0/file2
11939         # create a file large enough for the concurrent test
11940         dd if=/dev/urandom of=$ref1 bs=1M count=$((RANDOM % 50 + 20))
11941         dd if=/dev/urandom of=$ref2 bs=1M count=$((RANDOM % 50 + 20))
11942         echo "ref file size: ref1($(stat -c %s $ref1))," \
11943              "ref2($(stat -c %s $ref2))"
11944
11945         cp $ref2 $file2
11946         dd if=$ref1 of=$file1 bs=16k &
11947         local DD_PID=$!
11948
11949         # Make sure dd starts to copy file
11950         while [ ! -f $file1 ]; do sleep 0.1; done
11951
11952         $LFS swap_layouts $file1 $file2
11953         local rc=$?
11954         wait $DD_PID
11955         [[ $? == 0 ]] || error "concurrent write on $file1 failed"
11956         [[ $rc == 0 ]] || error "swap of $file1 and $file2 failed"
11957
11958         # how many bytes copied before swapping layout
11959         local copied=$(stat -c %s $file2)
11960         local remaining=$(stat -c %s $ref1)
11961         remaining=$((remaining - copied))
11962         echo "Copied $copied bytes before swapping layout..."
11963
11964         cmp -n $copied $file1 $ref2 | grep differ &&
11965                 error "Content mismatch [0, $copied) of ref2 and file1"
11966         cmp -n $copied $file2 $ref1 ||
11967                 error "Content mismatch [0, $copied) of ref1 and file2"
11968         cmp -i $copied:$copied -n $remaining $file1 $ref1 ||
11969                 error "Content mismatch [$copied, EOF) of ref1 and file1"
11970
11971         # clean up
11972         rm -f $ref1 $ref2 $file1 $file2
11973 }
11974 run_test 184c "Concurrent write and layout swap"
11975
11976 test_184d() {
11977         check_swap_layouts_support && return 0
11978         [ -z "$(which getfattr 2>/dev/null)" ] &&
11979                 skip "no getfattr command" && return 0
11980
11981         local file1=$DIR/$tdir/$tfile-1
11982         local file2=$DIR/$tdir/$tfile-2
11983         local file3=$DIR/$tdir/$tfile-3
11984         local lovea1
11985         local lovea2
11986
11987         mkdir -p $DIR/$tdir
11988         touch $file1 || error "create $file1 failed"
11989         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file2 ||
11990                 error "create $file2 failed"
11991         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file3 ||
11992                 error "create $file3 failed"
11993         lovea1=$(get_layout_param $file1)
11994
11995         $LFS swap_layouts $file2 $file3 ||
11996                 error "swap $file2 $file3 layouts failed"
11997         $LFS swap_layouts $file1 $file2 ||
11998                 error "swap $file1 $file2 layouts failed"
11999
12000         lovea2=$(get_layout_param $file2)
12001         echo "$lovea1"
12002         echo "$lovea2"
12003         [ "$lovea1" == "$lovea2" ] || error "lovea $lovea1 != $lovea2"
12004
12005         lovea1=$(getfattr -n trusted.lov $file1 | grep ^trusted)
12006         [[ -z "$lovea1" ]] || error "$file1 shouldn't have lovea"
12007 }
12008 run_test 184d "allow stripeless layouts swap"
12009
12010 test_184e() {
12011         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.94) ]] ||
12012                 { skip "Need MDS version at least 2.6.94"; return 0; }
12013         check_swap_layouts_support && return 0
12014         [ -z "$(which getfattr 2>/dev/null)" ] &&
12015                 skip "no getfattr command" && return 0
12016
12017         local file1=$DIR/$tdir/$tfile-1
12018         local file2=$DIR/$tdir/$tfile-2
12019         local file3=$DIR/$tdir/$tfile-3
12020         local lovea
12021
12022         mkdir -p $DIR/$tdir
12023         touch $file1 || error "create $file1 failed"
12024         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file2 ||
12025                 error "create $file2 failed"
12026         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file3 ||
12027                 error "create $file3 failed"
12028
12029         $LFS swap_layouts $file1 $file2 ||
12030                 error "swap $file1 $file2 layouts failed"
12031
12032         lovea=$(getfattr -n trusted.lov $file1 | grep ^trusted)
12033         [[ -z "$lovea" ]] || error "$file1 shouldn't have lovea"
12034
12035         echo 123 > $file1 || error "Should be able to write into $file1"
12036
12037         $LFS swap_layouts $file1 $file3 ||
12038                 error "swap $file1 $file3 layouts failed"
12039
12040         echo 123 > $file1 || error "Should be able to write into $file1"
12041
12042         rm -rf $file1 $file2 $file3
12043 }
12044 run_test 184e "Recreate layout after stripeless layout swaps"
12045
12046 test_185() { # LU-2441
12047         # LU-3553 - no volatile file support in old servers
12048         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.60) ]] ||
12049                 { skip "Need MDS version at least 2.3.60"; return 0; }
12050
12051         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
12052         touch $DIR/$tdir/spoo
12053         local mtime1=$(stat -c "%Y" $DIR/$tdir)
12054         local fid=$($MULTIOP $DIR/$tdir VFw4096c) ||
12055                 error "cannot create/write a volatile file"
12056         [ "$FILESET" == "" ] &&
12057         $CHECKSTAT -t file $MOUNT/.lustre/fid/$fid 2>/dev/null &&
12058                 error "FID is still valid after close"
12059
12060         multiop_bg_pause $DIR/$tdir vVw4096_c
12061         local multi_pid=$!
12062
12063         local OLD_IFS=$IFS
12064         IFS=":"
12065         local fidv=($fid)
12066         IFS=$OLD_IFS
12067         # assume that the next FID for this client is sequential, since stdout
12068         # is unfortunately eaten by multiop_bg_pause
12069         local n=$((${fidv[1]} + 1))
12070         local next_fid="${fidv[0]}:$(printf "0x%x" $n):${fidv[2]}"
12071         if [ "$FILESET" == "" ]; then
12072                 $CHECKSTAT -t file $MOUNT/.lustre/fid/$next_fid ||
12073                         error "FID is missing before close"
12074         fi
12075         kill -USR1 $multi_pid
12076         # 1 second delay, so if mtime change we will see it
12077         sleep 1
12078         local mtime2=$(stat -c "%Y" $DIR/$tdir)
12079         [[ $mtime1 == $mtime2 ]] || error "mtime has changed"
12080 }
12081 run_test 185 "Volatile file support"
12082
12083 test_187a() {
12084         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12085         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.0) ] &&
12086                 skip "Need MDS version at least 2.3.0" && return
12087
12088         local dir0=$DIR/$tdir/$testnum
12089         mkdir -p $dir0 || error "creating dir $dir0"
12090
12091         local file=$dir0/file1
12092         dd if=/dev/urandom of=$file count=10 bs=1M conv=fsync
12093         local dv1=$($LFS data_version $file)
12094         dd if=/dev/urandom of=$file seek=10 count=1 bs=1M conv=fsync
12095         local dv2=$($LFS data_version $file)
12096         [[ $dv1 != $dv2 ]] ||
12097                 error "data version did not change on write $dv1 == $dv2"
12098
12099         # clean up
12100         rm -f $file1
12101 }
12102 run_test 187a "Test data version change"
12103
12104 test_187b() {
12105         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12106         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.0) ] &&
12107                 skip "Need MDS version at least 2.3.0" && return
12108
12109         local dir0=$DIR/$tdir/$testnum
12110         mkdir -p $dir0 || error "creating dir $dir0"
12111
12112         declare -a DV=$($MULTIOP $dir0 Vw1000xYw1000xY | cut -f3 -d" ")
12113         [[ ${DV[0]} != ${DV[1]} ]] ||
12114                 error "data version did not change on write"\
12115                       " ${DV[0]} == ${DV[1]}"
12116
12117         # clean up
12118         rm -f $file1
12119 }
12120 run_test 187b "Test data version change on volatile file"
12121
12122 test_200() {
12123         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12124         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
12125         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
12126
12127         local POOL=${POOL:-cea1}
12128         local POOL_ROOT=${POOL_ROOT:-$DIR/d200.pools}
12129         local POOL_DIR_NAME=${POOL_DIR_NAME:-dir_tst}
12130         # Pool OST targets
12131         local first_ost=0
12132         local last_ost=$(($OSTCOUNT - 1))
12133         local ost_step=2
12134         local ost_list=$(seq $first_ost $ost_step $last_ost)
12135         local ost_range="$first_ost $last_ost $ost_step"
12136         local test_path=$POOL_ROOT/$POOL_DIR_NAME
12137         local file_dir=$POOL_ROOT/file_tst
12138         local subdir=$test_path/subdir
12139
12140         local rc=0
12141         while : ; do
12142                 # former test_200a test_200b
12143                 pool_add $POOL                          || { rc=$? ; break; }
12144                 pool_add_targets  $POOL $ost_range      || { rc=$? ; break; }
12145                 # former test_200c test_200d
12146                 mkdir -p $test_path
12147                 pool_set_dir      $POOL $test_path      || { rc=$? ; break; }
12148                 pool_check_dir    $POOL $test_path      || { rc=$? ; break; }
12149                 mkdir -p $subdir
12150                 pool_check_dir    $POOL $subdir         || { rc=$? ; break; }
12151                 pool_dir_rel_path $POOL $POOL_DIR_NAME $POOL_ROOT \
12152                                                         || { rc=$? ; break; }
12153                 # former test_200e test_200f
12154                 local files=$((OSTCOUNT*3))
12155                 pool_alloc_files  $POOL $test_path $files "$ost_list" \
12156                                                         || { rc=$? ; break; }
12157                 pool_create_files $POOL $file_dir $files "$ost_list" \
12158                                                         || { rc=$? ; break; }
12159                 # former test_200g test_200h
12160                 pool_lfs_df $POOL                       || { rc=$? ; break; }
12161                 pool_file_rel_path $POOL $test_path     || { rc=$? ; break; }
12162
12163                 # former test_201a test_201b test_201c
12164                 pool_remove_first_target $POOL          || { rc=$? ; break; }
12165
12166                 local f=$test_path/$tfile
12167                 pool_remove_all_targets $POOL $f        || { rc=$? ; break; }
12168                 pool_remove $POOL $f                    || { rc=$? ; break; }
12169                 break
12170         done
12171
12172         destroy_test_pools
12173         return $rc
12174 }
12175 run_test 200 "OST pools"
12176
12177 # usage: default_attr <count | size | offset>
12178 default_attr() {
12179         $LCTL get_param -n lov.$FSNAME-clilov-\*.stripe${1}
12180 }
12181
12182 # usage: check_default_stripe_attr
12183 check_default_stripe_attr() {
12184         ACTUAL=$($GETSTRIPE $* $DIR/$tdir)
12185         case $1 in
12186         --stripe-count|-c)
12187                 [ -n "$2" ] && EXPECTED=0 || EXPECTED=$(default_attr count);;
12188         --stripe-size|-S)
12189                 [ -n "$2" ] && EXPECTED=0 || EXPECTED=$(default_attr size);;
12190         --stripe-index|-i)
12191                 EXPECTED=-1;;
12192         *)
12193                 error "unknown getstripe attr '$1'"
12194         esac
12195
12196         [ $ACTUAL == $EXPECTED ] ||
12197                 error "$DIR/$tdir has $1 '$ACTUAL', not '$EXPECTED'"
12198 }
12199
12200 test_204a() {
12201         test_mkdir $DIR/$tdir
12202         $SETSTRIPE --stripe-count 0 --stripe-size 0 --stripe-index -1 $DIR/$tdir
12203
12204         check_default_stripe_attr --stripe-count
12205         check_default_stripe_attr --stripe-size
12206         check_default_stripe_attr --stripe-index
12207 }
12208 run_test 204a "Print default stripe attributes"
12209
12210 test_204b() {
12211         test_mkdir $DIR/$tdir
12212         $SETSTRIPE --stripe-count 1 $DIR/$tdir
12213
12214         check_default_stripe_attr --stripe-size
12215         check_default_stripe_attr --stripe-index
12216 }
12217 run_test 204b "Print default stripe size and offset"
12218
12219 test_204c() {
12220         test_mkdir $DIR/$tdir
12221         $SETSTRIPE --stripe-size 65536 $DIR/$tdir
12222
12223         check_default_stripe_attr --stripe-count
12224         check_default_stripe_attr --stripe-index
12225 }
12226 run_test 204c "Print default stripe count and offset"
12227
12228 test_204d() {
12229         test_mkdir $DIR/$tdir
12230         $SETSTRIPE --stripe-index 0 $DIR/$tdir
12231
12232         check_default_stripe_attr --stripe-count
12233         check_default_stripe_attr --stripe-size
12234 }
12235 run_test 204d "Print default stripe count and size"
12236
12237 test_204e() {
12238         test_mkdir $DIR/$tdir
12239         $SETSTRIPE -d $DIR/$tdir
12240
12241         check_default_stripe_attr --stripe-count --raw
12242         check_default_stripe_attr --stripe-size --raw
12243         check_default_stripe_attr --stripe-index --raw
12244 }
12245 run_test 204e "Print raw stripe attributes"
12246
12247 test_204f() {
12248         test_mkdir $DIR/$tdir
12249         $SETSTRIPE --stripe-count 1 $DIR/$tdir
12250
12251         check_default_stripe_attr --stripe-size --raw
12252         check_default_stripe_attr --stripe-index --raw
12253 }
12254 run_test 204f "Print raw stripe size and offset"
12255
12256 test_204g() {
12257         test_mkdir $DIR/$tdir
12258         $SETSTRIPE --stripe-size 65536 $DIR/$tdir
12259
12260         check_default_stripe_attr --stripe-count --raw
12261         check_default_stripe_attr --stripe-index --raw
12262 }
12263 run_test 204g "Print raw stripe count and offset"
12264
12265 test_204h() {
12266         test_mkdir $DIR/$tdir
12267         $SETSTRIPE --stripe-index 0 $DIR/$tdir
12268
12269         check_default_stripe_attr --stripe-count --raw
12270         check_default_stripe_attr --stripe-size --raw
12271 }
12272 run_test 204h "Print raw stripe count and size"
12273
12274 # Figure out which job scheduler is being used, if any,
12275 # or use a fake one
12276 if [ -n "$SLURM_JOB_ID" ]; then # SLURM
12277         JOBENV=SLURM_JOB_ID
12278 elif [ -n "$LSB_JOBID" ]; then # Load Sharing Facility
12279         JOBENV=LSB_JOBID
12280 elif [ -n "$PBS_JOBID" ]; then # PBS/Maui/Moab
12281         JOBENV=PBS_JOBID
12282 elif [ -n "$LOADL_STEPID" ]; then # LoadLeveller
12283         JOBENV=LOADL_STEP_ID
12284 elif [ -n "$JOB_ID" ]; then # Sun Grid Engine
12285         JOBENV=JOB_ID
12286 else
12287         $LCTL list_param jobid_name > /dev/null 2>&1
12288         if [ $? -eq 0 ]; then
12289                 JOBENV=nodelocal
12290         else
12291                 JOBENV=FAKE_JOBID
12292         fi
12293 fi
12294
12295 verify_jobstats() {
12296         local cmd=($1)
12297         shift
12298         local facets="$@"
12299
12300 # we don't really need to clear the stats for this test to work, since each
12301 # command has a unique jobid, but it makes debugging easier if needed.
12302 #       for facet in $facets; do
12303 #               local dev=$(convert_facet2label $facet)
12304 #               # clear old jobstats
12305 #               do_facet $facet lctl set_param *.$dev.job_stats="clear"
12306 #       done
12307
12308         # use a new JobID for each test, or we might see an old one
12309         [ "$JOBENV" = "FAKE_JOBID" ] &&
12310                 FAKE_JOBID=id.$testnum.$(basename ${cmd[0]}).$RANDOM
12311
12312         JOBVAL=${!JOBENV}
12313
12314         [ "$JOBENV" = "nodelocal" ] && {
12315                 FAKE_JOBID=id.$testnum.$(basename ${cmd[0]}).$RANDOM
12316                 $LCTL set_param jobid_name=$FAKE_JOBID
12317                 JOBVAL=$FAKE_JOBID
12318         }
12319
12320         log "Test: ${cmd[*]}"
12321         log "Using JobID environment variable $JOBENV=$JOBVAL"
12322
12323         if [ $JOBENV = "FAKE_JOBID" ]; then
12324                 FAKE_JOBID=$JOBVAL ${cmd[*]}
12325         else
12326                 ${cmd[*]}
12327         fi
12328
12329         # all files are created on OST0000
12330         for facet in $facets; do
12331                 local stats="*.$(convert_facet2label $facet).job_stats"
12332                 if [ $(do_facet $facet lctl get_param $stats |
12333                        grep -c $JOBVAL) -ne 1 ]; then
12334                         do_facet $facet lctl get_param $stats
12335                         error "No jobstats for $JOBVAL found on $facet::$stats"
12336                 fi
12337         done
12338 }
12339
12340 jobstats_set() {
12341         trap 0
12342         NEW_JOBENV=${1:-$OLD_JOBENV}
12343         do_facet mgs $LCTL conf_param $FSNAME.sys.jobid_var=$NEW_JOBENV
12344         wait_update $HOSTNAME "$LCTL get_param -n jobid_var" $NEW_JOBENV
12345 }
12346
12347 cleanup_205() {
12348         trap 0
12349         do_facet $SINGLEMDS \
12350                 $LCTL set_param mdt.*.job_cleanup_interval=$OLD_INTERVAL
12351         [ $OLD_JOBENV != $JOBENV ] && jobstats_set $OLD_JOBENV
12352         cleanup_changelog
12353 }
12354
12355 test_205() { # Job stats
12356         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.7.1) ]] ||
12357                 { skip "Need MDS version with at least 2.7.1"; return 0; }
12358
12359         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12360         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
12361         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12362         remote_ost_nodsh && skip "remote OST with nodsh" && return
12363
12364         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep jobstats)" ] &&
12365                 skip "Server doesn't support jobstats" && return 0
12366         [[ $JOBID_VAR = disable ]] && skip "jobstats is disabled" && return
12367
12368         OLD_JOBENV=$($LCTL get_param -n jobid_var)
12369         if [ $OLD_JOBENV != $JOBENV ]; then
12370                 jobstats_set $JOBENV
12371                 trap cleanup_205 EXIT
12372         fi
12373
12374         CL_USER=$(do_facet $SINGLEMDS lctl --device $MDT0 changelog_register -n)
12375         echo "Registered as changelog user $CL_USER"
12376
12377         OLD_INTERVAL=$(do_facet $SINGLEMDS \
12378                        lctl get_param -n mdt.*.job_cleanup_interval)
12379         local interval_new=5
12380         do_facet $SINGLEMDS \
12381                 $LCTL set_param mdt.*.job_cleanup_interval=$interval_new
12382         local start=$SECONDS
12383
12384         local cmd
12385         # mkdir
12386         cmd="mkdir $DIR/$tdir"
12387         verify_jobstats "$cmd" "$SINGLEMDS"
12388         # rmdir
12389         cmd="rmdir $DIR/$tdir"
12390         verify_jobstats "$cmd" "$SINGLEMDS"
12391         # mkdir on secondary MDT
12392         if [ $MDSCOUNT -gt 1 ]; then
12393                 cmd="lfs mkdir -i 1 $DIR/$tdir.remote"
12394                 verify_jobstats "$cmd" "mds2"
12395         fi
12396         # mknod
12397         cmd="mknod $DIR/$tfile c 1 3"
12398         verify_jobstats "$cmd" "$SINGLEMDS"
12399         # unlink
12400         cmd="rm -f $DIR/$tfile"
12401         verify_jobstats "$cmd" "$SINGLEMDS"
12402         # create all files on OST0000 so verify_jobstats can find OST stats
12403         # open & close
12404         cmd="$SETSTRIPE -i 0 -c 1 $DIR/$tfile"
12405         verify_jobstats "$cmd" "$SINGLEMDS"
12406         # setattr
12407         cmd="touch $DIR/$tfile"
12408         verify_jobstats "$cmd" "$SINGLEMDS ost1"
12409         # write
12410         cmd="dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 oflag=sync"
12411         verify_jobstats "$cmd" "ost1"
12412         # read
12413         cancel_lru_locks osc
12414         cmd="dd if=$DIR/$tfile of=/dev/null bs=1M count=1 iflag=direct"
12415         verify_jobstats "$cmd" "ost1"
12416         # truncate
12417         cmd="$TRUNCATE $DIR/$tfile 0"
12418         verify_jobstats "$cmd" "$SINGLEMDS ost1"
12419         # rename
12420         cmd="mv -f $DIR/$tfile $DIR/$tdir.rename"
12421         verify_jobstats "$cmd" "$SINGLEMDS"
12422         # jobstats expiry - sleep until old stats should be expired
12423         local left=$((interval_new + 5 - (SECONDS - start)))
12424         [ $left -ge 0 ] && wait_update_facet $SINGLEMDS \
12425                 "lctl get_param *.*.job_stats | grep -c 'job_id.*mkdir'" \
12426                         "0" $left
12427         cmd="mkdir $DIR/$tdir.expire"
12428         verify_jobstats "$cmd" "$SINGLEMDS"
12429         [ $(do_facet $SINGLEMDS lctl get_param *.*.job_stats |
12430             grep -c "job_id.*mkdir") -gt 1 ] && error "old jobstats not expired"
12431
12432         # Ensure that jobid are present in changelog (if supported by MDS)
12433         if [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.52) ]
12434         then
12435                 $LFS changelog $MDT0 | tail -9
12436                 jobids=$($LFS changelog $MDT0 | tail -9 | grep -c "j=")
12437                 [ $jobids -eq 9 ] ||
12438                         error "Wrong changelog jobid count $jobids != 9"
12439
12440                 # LU-5862
12441                 JOBENV="disable"
12442                 jobstats_set $JOBENV
12443                 touch $DIR/$tfile
12444                 $LFS changelog $MDT0 | tail -1
12445                 jobids=$($LFS changelog $MDT0 | tail -1 | grep -c "j=")
12446                 [ $jobids -eq 0 ] ||
12447                         error "Unexpected jobids when jobid_var=$JOBENV"
12448         fi
12449
12450         cleanup_205
12451 }
12452 run_test 205 "Verify job stats"
12453
12454 # LU-1480, LU-1773 and LU-1657
12455 test_206() {
12456         mkdir -p $DIR/$tdir
12457         $SETSTRIPE -c -1 $DIR/$tdir
12458 #define OBD_FAIL_LOV_INIT 0x1403
12459         $LCTL set_param fail_loc=0xa0001403
12460         $LCTL set_param fail_val=1
12461         touch $DIR/$tdir/$tfile || true
12462 }
12463 run_test 206 "fail lov_init_raid0() doesn't lbug"
12464
12465 test_207a() {
12466         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((RANDOM%10+1))
12467         local fsz=`stat -c %s $DIR/$tfile`
12468         cancel_lru_locks mdc
12469
12470         # do not return layout in getattr intent
12471 #define OBD_FAIL_MDS_NO_LL_GETATTR 0x170
12472         $LCTL set_param fail_loc=0x170
12473         local sz=`stat -c %s $DIR/$tfile`
12474
12475         [ $fsz -eq $sz ] || error "file size expected $fsz, actual $sz"
12476
12477         rm -rf $DIR/$tfile
12478 }
12479 run_test 207a "can refresh layout at glimpse"
12480
12481 test_207b() {
12482         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((RANDOM%10+1))
12483         local cksum=`md5sum $DIR/$tfile`
12484         local fsz=`stat -c %s $DIR/$tfile`
12485         cancel_lru_locks mdc
12486         cancel_lru_locks osc
12487
12488         # do not return layout in getattr intent
12489 #define OBD_FAIL_MDS_NO_LL_OPEN 0x171
12490         $LCTL set_param fail_loc=0x171
12491
12492         # it will refresh layout after the file is opened but before read issues
12493         echo checksum is "$cksum"
12494         echo "$cksum" |md5sum -c --quiet || error "file differs"
12495
12496         rm -rf $DIR/$tfile
12497 }
12498 run_test 207b "can refresh layout at open"
12499
12500 test_208() {
12501         # FIXME: in this test suite, only RD lease is used. This is okay
12502         # for now as only exclusive open is supported. After generic lease
12503         # is done, this test suite should be revised. - Jinshan
12504
12505         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12506         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.4.52) ]] ||
12507                 { skip "Need MDS version at least 2.4.52"; return 0; }
12508
12509         echo "==== test 1: verify get lease work"
12510         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:eRE+eU || error "get lease error"
12511
12512         echo "==== test 2: verify lease can be broken by upcoming open"
12513         $MULTIOP $DIR/$tfile oO_RDONLY:eR_E-eUc &
12514         local PID=$!
12515         sleep 1
12516
12517         $MULTIOP $DIR/$tfile oO_RDONLY:c
12518         kill -USR1 $PID && wait $PID || error "break lease error"
12519
12520         echo "==== test 3: verify lease can't be granted if an open already exists"
12521         $MULTIOP $DIR/$tfile oO_RDONLY:_c &
12522         local PID=$!
12523         sleep 1
12524
12525         $MULTIOP $DIR/$tfile oO_RDONLY:eReUc && error "apply lease should fail"
12526         kill -USR1 $PID && wait $PID || error "open file error"
12527
12528         echo "==== test 4: lease can sustain over recovery"
12529         $MULTIOP $DIR/$tfile oO_RDONLY:eR_E+eUc &
12530         PID=$!
12531         sleep 1
12532
12533         fail mds1
12534
12535         kill -USR1 $PID && wait $PID || error "lease broken over recovery"
12536
12537         echo "==== test 5: lease broken can't be regained by replay"
12538         $MULTIOP $DIR/$tfile oO_RDONLY:eR_E-eUc &
12539         PID=$!
12540         sleep 1
12541
12542         # open file to break lease and then recovery
12543         $MULTIOP $DIR/$tfile oO_RDWR:c || error "open file error"
12544         fail mds1
12545
12546         kill -USR1 $PID && wait $PID || error "lease not broken over recovery"
12547
12548         rm -f $DIR/$tfile
12549 }
12550 run_test 208 "Exclusive open"
12551
12552 test_209() {
12553         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep disp_stripe)" ] &&
12554                 skip_env "must have disp_stripe" && return
12555
12556         touch $DIR/$tfile
12557         sync; sleep 5; sync;
12558
12559         echo 3 > /proc/sys/vm/drop_caches
12560         req_before=$(awk '/ptlrpc_cache / { print $2 }' /proc/slabinfo)
12561
12562         # open/close 500 times
12563         for i in $(seq 500); do
12564                 cat $DIR/$tfile
12565         done
12566
12567         echo 3 > /proc/sys/vm/drop_caches
12568         req_after=$(awk '/ptlrpc_cache / { print $2 }' /proc/slabinfo)
12569
12570         echo "before: $req_before, after: $req_after"
12571         [ $((req_after - req_before)) -ge 300 ] &&
12572                 error "open/close requests are not freed"
12573         return 0
12574 }
12575 run_test 209 "read-only open/close requests should be freed promptly"
12576
12577 test_212() {
12578         size=`date +%s`
12579         size=$((size % 8192 + 1))
12580         dd if=/dev/urandom of=$DIR/f212 bs=1k count=$size
12581         sendfile $DIR/f212 $DIR/f212.xyz || error "sendfile wrong"
12582         rm -f $DIR/f212 $DIR/f212.xyz
12583 }
12584 run_test 212 "Sendfile test ============================================"
12585
12586 test_213() {
12587         dd if=/dev/zero of=$DIR/$tfile bs=4k count=4
12588         cancel_lru_locks osc
12589         lctl set_param fail_loc=0x8000040f
12590         # generate a read lock
12591         cat $DIR/$tfile > /dev/null
12592         # write to the file, it will try to cancel the above read lock.
12593         cat /etc/hosts >> $DIR/$tfile
12594 }
12595 run_test 213 "OSC lock completion and cancel race don't crash - bug 18829"
12596
12597 test_214() { # for bug 20133
12598         mkdir -p $DIR/$tdir/d214c || error "mkdir $DIR/$tdir/d214c failed"
12599         for (( i=0; i < 340; i++ )) ; do
12600                 touch $DIR/$tdir/d214c/a$i
12601         done
12602
12603         ls -l $DIR/$tdir || error "ls -l $DIR/d214p failed"
12604         mv $DIR/$tdir/d214c $DIR/ || error "mv $DIR/d214p/d214c $DIR/ failed"
12605         ls $DIR/d214c || error "ls $DIR/d214c failed"
12606         rm -rf $DIR/$tdir || error "rm -rf $DIR/d214* failed"
12607         rm -rf $DIR/d214* || error "rm -rf $DIR/d214* failed"
12608 }
12609 run_test 214 "hash-indexed directory test - bug 20133"
12610
12611 # having "abc" as 1st arg, creates $TMP/lnet_abc.out and $TMP/lnet_abc.sys
12612 create_lnet_proc_files() {
12613         lctl get_param -n $1 >$TMP/lnet_$1.sys || error "cannot read lnet.$1"
12614 }
12615
12616 # counterpart of create_lnet_proc_files
12617 remove_lnet_proc_files() {
12618         rm -f $TMP/lnet_$1.sys
12619 }
12620
12621 # uses 1st arg as trailing part of filename, 2nd arg as description for reports,
12622 # 3rd arg as regexp for body
12623 check_lnet_proc_stats() {
12624         local l=$(cat "$TMP/lnet_$1" |wc -l)
12625         [ $l = 1 ] || (cat "$TMP/lnet_$1" && error "$2 is not of 1 line: $l")
12626
12627         grep -E "$3" "$TMP/lnet_$1" || (cat "$TMP/lnet_$1" && error "$2 misformatted")
12628 }
12629
12630 # uses 1st arg as trailing part of filename, 2nd arg as description for reports,
12631 # 3rd arg as regexp for body, 4th arg as regexp for 1st line, 5th arg is
12632 # optional and can be regexp for 2nd line (lnet.routes case)
12633 check_lnet_proc_entry() {
12634         local blp=2          # blp stands for 'position of 1st line of body'
12635         [ -z "$5" ] || blp=3 # lnet.routes case
12636
12637         local l=$(cat "$TMP/lnet_$1" |wc -l)
12638         # subtracting one from $blp because the body can be empty
12639         [ "$l" -ge "$(($blp - 1))" ] || (cat "$TMP/lnet_$1" && error "$2 is too short: $l")
12640
12641         sed -n '1 p' "$TMP/lnet_$1" |grep -E "$4" >/dev/null ||
12642                 (cat "$TMP/lnet_$1" && error "1st line of $2 misformatted")
12643
12644         [ "$5" = "" ] || sed -n '2 p' "$TMP/lnet_$1" |grep -E "$5" >/dev/null ||
12645                 (cat "$TMP/lnet_$1" && error "2nd line of $2 misformatted")
12646
12647         # bail out if any unexpected line happened
12648         sed -n "$blp p" "$TMP/lnet_$1" | grep -Ev "$3"
12649         [ "$?" != 0 ] || error "$2 misformatted"
12650 }
12651
12652 test_215() { # for bugs 18102, 21079, 21517
12653         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12654         local N='(0|[1-9][0-9]*)'       # non-negative numeric
12655         local P='[1-9][0-9]*'           # positive numeric
12656         local I='(0|-?[1-9][0-9]*|NA)'  # any numeric (0 | >0 | <0) or NA if no value
12657         local NET='[a-z][a-z0-9]*'      # LNET net like o2ib2
12658         local ADDR='[0-9.]+'            # LNET addr like 10.0.0.1
12659         local NID="$ADDR@$NET"          # LNET nid like 10.0.0.1@o2ib2
12660
12661         local L1 # regexp for 1st line
12662         local L2 # regexp for 2nd line (optional)
12663         local BR # regexp for the rest (body)
12664
12665         # lnet.stats should look as 11 space-separated non-negative numerics
12666         BR="^$N $N $N $N $N $N $N $N $N $N $N$"
12667         create_lnet_proc_files "stats"
12668         check_lnet_proc_stats "stats.sys" "lnet.stats" "$BR"
12669         remove_lnet_proc_files "stats"
12670
12671         # lnet.routes should look like this:
12672         # Routing disabled/enabled
12673         # net hops priority state router
12674         # where net is a string like tcp0, hops > 0, priority >= 0,
12675         # state is up/down,
12676         # router is a string like 192.168.1.1@tcp2
12677         L1="^Routing (disabled|enabled)$"
12678         L2="^net +hops +priority +state +router$"
12679         BR="^$NET +$N +(0|1) +(up|down) +$NID$"
12680         create_lnet_proc_files "routes"
12681         check_lnet_proc_entry "routes.sys" "lnet.routes" "$BR" "$L1" "$L2"
12682         remove_lnet_proc_files "routes"
12683
12684         # lnet.routers should look like this:
12685         # ref rtr_ref alive_cnt state last_ping ping_sent deadline down_ni router
12686         # where ref > 0, rtr_ref > 0, alive_cnt >= 0, state is up/down,
12687         # last_ping >= 0, ping_sent is boolean (0/1), deadline and down_ni are
12688         # numeric (0 or >0 or <0), router is a string like 192.168.1.1@tcp2
12689         L1="^ref +rtr_ref +alive_cnt +state +last_ping +ping_sent +deadline +down_ni +router$"
12690         BR="^$P +$P +$N +(up|down) +$N +(0|1) +$I +$I +$NID$"
12691         create_lnet_proc_files "routers"
12692         check_lnet_proc_entry "routers.sys" "lnet.routers" "$BR" "$L1"
12693         remove_lnet_proc_files "routers"
12694
12695         # lnet.peers should look like this:
12696         # nid refs state last max rtr min tx min queue
12697         # where nid is a string like 192.168.1.1@tcp2, refs > 0,
12698         # state is up/down/NA, max >= 0. last, rtr, min, tx, min are
12699         # numeric (0 or >0 or <0), queue >= 0.
12700         L1="^nid +refs +state +last +max +rtr +min +tx +min +queue$"
12701         BR="^$NID +$P +(up|down|NA) +$I +$N +$I +$I +$I +$I +$N$"
12702         create_lnet_proc_files "peers"
12703         check_lnet_proc_entry "peers.sys" "lnet.peers" "$BR" "$L1"
12704         remove_lnet_proc_files "peers"
12705
12706         # lnet.buffers  should look like this:
12707         # pages count credits min
12708         # where pages >=0, count >=0, credits and min are numeric (0 or >0 or <0)
12709         L1="^pages +count +credits +min$"
12710         BR="^ +$N +$N +$I +$I$"
12711         create_lnet_proc_files "buffers"
12712         check_lnet_proc_entry "buffers.sys" "lnet.buffers" "$BR" "$L1"
12713         remove_lnet_proc_files "buffers"
12714
12715         # lnet.nis should look like this:
12716         # nid status alive refs peer rtr max tx min
12717         # where nid is a string like 192.168.1.1@tcp2, status is up/down,
12718         # alive is numeric (0 or >0 or <0), refs >= 0, peer >= 0,
12719         # rtr >= 0, max >=0, tx and min are numeric (0 or >0 or <0).
12720         L1="^nid +status +alive +refs +peer +rtr +max +tx +min$"
12721         BR="^$NID +(up|down) +$I +$N +$N +$N +$N +$I +$I$"
12722         create_lnet_proc_files "nis"
12723         check_lnet_proc_entry "nis.sys" "lnet.nis" "$BR" "$L1"
12724         remove_lnet_proc_files "nis"
12725
12726         # can we successfully write to lnet.stats?
12727         lctl set_param -n stats=0 || error "cannot write to lnet.stats"
12728 }
12729 run_test 215 "lnet exists and has proper content - bugs 18102, 21079, 21517"
12730
12731 test_216() { # bug 20317
12732         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12733         remote_ost_nodsh && skip "remote OST with nodsh" && return
12734
12735         local node
12736         local facets=$(get_facets OST)
12737         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
12738
12739         save_lustre_params client "osc.*.contention_seconds" > $p
12740         save_lustre_params $facets \
12741                 "ldlm.namespaces.filter-*.max_nolock_bytes" >> $p
12742         save_lustre_params $facets \
12743                 "ldlm.namespaces.filter-*.contended_locks" >> $p
12744         save_lustre_params $facets \
12745                 "ldlm.namespaces.filter-*.contention_seconds" >> $p
12746         clear_stats osc.*.osc_stats
12747
12748         # agressive lockless i/o settings
12749         do_nodes $(comma_list $(osts_nodes)) \
12750                 "lctl set_param -n ldlm.namespaces.*.max_nolock_bytes=2000000 \
12751                         ldlm.namespaces.filter-*.contended_locks=0 \
12752                         ldlm.namespaces.filter-*.contention_seconds=60"
12753         lctl set_param -n osc.*.contention_seconds=60
12754
12755         $DIRECTIO write $DIR/$tfile 0 10 4096
12756         $CHECKSTAT -s 40960 $DIR/$tfile
12757
12758         # disable lockless i/o
12759         do_nodes $(comma_list $(osts_nodes)) \
12760                 "lctl set_param -n ldlm.namespaces.filter-*.max_nolock_bytes=0 \
12761                         ldlm.namespaces.filter-*.contended_locks=32 \
12762                         ldlm.namespaces.filter-*.contention_seconds=0"
12763         lctl set_param -n osc.*.contention_seconds=0
12764         clear_stats osc.*.osc_stats
12765
12766         dd if=/dev/zero of=$DIR/$tfile count=0
12767         $CHECKSTAT -s 0 $DIR/$tfile
12768
12769         restore_lustre_params <$p
12770         rm -f $p
12771         rm $DIR/$tfile
12772 }
12773 run_test 216 "check lockless direct write updates file size and kms correctly"
12774
12775 test_217() { # bug 22430
12776         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12777         local node
12778         local nid
12779
12780         for node in $(nodes_list); do
12781                 nid=$(host_nids_address $node $NETTYPE)
12782                 if [[ $nid = *-* ]] ; then
12783                         echo "lctl ping $(h2nettype $nid)"
12784                         lctl ping $(h2nettype $nid)
12785                 else
12786                         echo "skipping $node (no hyphen detected)"
12787                 fi
12788         done
12789 }
12790 run_test 217 "check lctl ping for hostnames with hiphen ('-')"
12791
12792 test_218() {
12793        # do directio so as not to populate the page cache
12794        log "creating a 10 Mb file"
12795        $MULTIOP $DIR/$tfile oO_CREAT:O_DIRECT:O_RDWR:w$((10*1048576))c || error "multiop failed while creating a file"
12796        log "starting reads"
12797        dd if=$DIR/$tfile of=/dev/null bs=4096 &
12798        log "truncating the file"
12799        $MULTIOP $DIR/$tfile oO_TRUNC:c || error "multiop failed while truncating the file"
12800        log "killing dd"
12801        kill %+ || true # reads might have finished
12802        echo "wait until dd is finished"
12803        wait
12804        log "removing the temporary file"
12805        rm -rf $DIR/$tfile || error "tmp file removal failed"
12806 }
12807 run_test 218 "parallel read and truncate should not deadlock ======================="
12808
12809 test_219() {
12810         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12811         # write one partial page
12812         dd if=/dev/zero of=$DIR/$tfile bs=1024 count=1
12813         # set no grant so vvp_io_commit_write will do sync write
12814         $LCTL set_param fail_loc=0x411
12815         # write a full page at the end of file
12816         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 seek=1 conv=notrunc
12817
12818         $LCTL set_param fail_loc=0
12819         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 seek=3
12820         $LCTL set_param fail_loc=0x411
12821         dd if=/dev/zero of=$DIR/$tfile bs=1024 count=1 seek=2 conv=notrunc
12822
12823         # LU-4201
12824         dd if=/dev/zero of=$DIR/$tfile-2 bs=1024 count=1
12825         $CHECKSTAT -s 1024 $DIR/$tfile-2 || error "checkstat wrong size"
12826 }
12827 run_test 219 "LU-394: Write partial won't cause uncontiguous pages vec at LND"
12828
12829 test_220() { #LU-325
12830         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12831         remote_ost_nodsh && skip "remote OST with nodsh" && return
12832         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12833         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
12834         local OSTIDX=0
12835
12836         # create on MDT0000 so the last_id and next_id are correct
12837         mkdir $DIR/$tdir
12838         local OST=$($LFS df $DIR | awk '/OST:'$OSTIDX'/ { print $1 }')
12839         OST=${OST%_UUID}
12840
12841         # on the mdt's osc
12842         local mdtosc_proc1=$(get_mdtosc_proc_path $SINGLEMDS $OST)
12843         local last_id=$(do_facet $SINGLEMDS lctl get_param -n \
12844                         osc.$mdtosc_proc1.prealloc_last_id)
12845         local next_id=$(do_facet $SINGLEMDS lctl get_param -n \
12846                         osc.$mdtosc_proc1.prealloc_next_id)
12847
12848         $LFS df -i
12849
12850         do_facet ost$((OSTIDX + 1)) lctl set_param fail_val=-1
12851         #define OBD_FAIL_OST_ENOINO              0x229
12852         do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=0x229
12853         create_pool $FSNAME.$TESTNAME || return 1
12854         do_facet mgs $LCTL pool_add $FSNAME.$TESTNAME $OST || return 2
12855
12856         $SETSTRIPE $DIR/$tdir -i $OSTIDX -c 1 -p $FSNAME.$TESTNAME
12857
12858         MDSOBJS=$((last_id - next_id))
12859         echo "preallocated objects on MDS is $MDSOBJS" "($last_id - $next_id)"
12860
12861         blocks=$($LFS df $MOUNT | awk '($1 == '$OSTIDX') { print $4 }')
12862         echo "OST still has $count kbytes free"
12863
12864         echo "create $MDSOBJS files @next_id..."
12865         createmany -o $DIR/$tdir/f $MDSOBJS || return 3
12866
12867         local last_id2=$(do_facet mds${MDSIDX} lctl get_param -n \
12868                         osc.$mdtosc_proc1.prealloc_last_id)
12869         local next_id2=$(do_facet mds${MDSIDX} lctl get_param -n \
12870                         osc.$mdtosc_proc1.prealloc_next_id)
12871
12872         echo "after creation, last_id=$last_id2, next_id=$next_id2"
12873         $LFS df -i
12874
12875         echo "cleanup..."
12876
12877         do_facet ost$((OSTIDX + 1)) lctl set_param fail_val=0
12878         do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=0
12879
12880         do_facet mgs $LCTL pool_remove $FSNAME.$TESTNAME $OST || return 4
12881         do_facet mgs $LCTL pool_destroy $FSNAME.$TESTNAME || return 5
12882         echo "unlink $MDSOBJS files @$next_id..."
12883         unlinkmany $DIR/$tdir/f $MDSOBJS || return 6
12884 }
12885 run_test 220 "preallocated MDS objects still used if ENOSPC from OST"
12886
12887 test_221() {
12888         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12889         dd if=`which date` of=$MOUNT/date oflag=sync
12890         chmod +x $MOUNT/date
12891
12892         #define OBD_FAIL_LLITE_FAULT_TRUNC_RACE  0x1401
12893         $LCTL set_param fail_loc=0x80001401
12894
12895         $MOUNT/date > /dev/null
12896         rm -f $MOUNT/date
12897 }
12898 run_test 221 "make sure fault and truncate race to not cause OOM"
12899
12900 test_222a () {
12901         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12902         rm -rf $DIR/$tdir
12903         test_mkdir $DIR/$tdir
12904         $LFS setstripe -c 1 -i 0 $DIR/$tdir
12905         createmany -o $DIR/$tdir/$tfile 10
12906         cancel_lru_locks mdc
12907         cancel_lru_locks osc
12908         #define OBD_FAIL_LDLM_AGL_DELAY           0x31a
12909         $LCTL set_param fail_loc=0x31a
12910         ls -l $DIR/$tdir > /dev/null || error "AGL for ls failed"
12911         $LCTL set_param fail_loc=0
12912         rm -r $DIR/$tdir
12913 }
12914 run_test 222a "AGL for ls should not trigger CLIO lock failure"
12915
12916 test_222b () {
12917         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12918         rm -rf $DIR/$tdir
12919         test_mkdir $DIR/$tdir
12920         $LFS setstripe -c 1 -i 0 $DIR/$tdir
12921         createmany -o $DIR/$tdir/$tfile 10
12922         cancel_lru_locks mdc
12923         cancel_lru_locks osc
12924         #define OBD_FAIL_LDLM_AGL_DELAY           0x31a
12925         $LCTL set_param fail_loc=0x31a
12926         rm -r $DIR/$tdir || error "AGL for rmdir failed"
12927         $LCTL set_param fail_loc=0
12928 }
12929 run_test 222b "AGL for rmdir should not trigger CLIO lock failure"
12930
12931 test_223 () {
12932         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12933         rm -rf $DIR/$tdir
12934         test_mkdir $DIR/$tdir
12935         $LFS setstripe -c 1 -i 0 $DIR/$tdir
12936         createmany -o $DIR/$tdir/$tfile 10
12937         cancel_lru_locks mdc
12938         cancel_lru_locks osc
12939         #define OBD_FAIL_LDLM_AGL_NOLOCK          0x31b
12940         $LCTL set_param fail_loc=0x31b
12941         ls -l $DIR/$tdir > /dev/null || error "reenqueue failed"
12942         $LCTL set_param fail_loc=0
12943         rm -r $DIR/$tdir
12944 }
12945 run_test 223 "osc reenqueue if without AGL lock granted ======================="
12946
12947 test_224a() { # LU-1039, MRP-303
12948         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12949         #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB   0x508
12950         $LCTL set_param fail_loc=0x508
12951         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 conv=fsync
12952         $LCTL set_param fail_loc=0
12953         df $DIR
12954 }
12955 run_test 224a "Don't panic on bulk IO failure"
12956
12957 test_224b() { # LU-1039, MRP-303
12958         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12959         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1
12960         cancel_lru_locks osc
12961         #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB2   0x515
12962         $LCTL set_param fail_loc=0x515
12963         dd of=/dev/null if=$DIR/$tfile bs=4096 count=1
12964         $LCTL set_param fail_loc=0
12965         df $DIR
12966 }
12967 run_test 224b "Don't panic on bulk IO failure"
12968
12969 test_224c() { # LU-6441
12970         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12971         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12972
12973         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
12974         save_writethrough $p
12975         set_cache writethrough on
12976
12977         local pages_per_rpc=$($LCTL get_param \
12978                                 osc.*.max_pages_per_rpc)
12979         local at_max=$($LCTL get_param -n at_max)
12980         local timeout=$($LCTL get_param -n timeout)
12981         local test_at="$LCTL get_param -n at_max"
12982         local param_at="$FSNAME.sys.at_max"
12983         local test_timeout="$LCTL get_param -n timeout"
12984         local param_timeout="$FSNAME.sys.timeout"
12985
12986         $LCTL set_param -n osc.*.max_pages_per_rpc=1024
12987
12988         set_conf_param_and_check client "$test_at" "$param_at" 0 ||
12989                 error "conf_param at_max=0 failed"
12990         set_conf_param_and_check client "$test_timeout" "$param_timeout" 5 ||
12991                 error "conf_param timeout=5 failed"
12992
12993         #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB3   0x520
12994         do_facet ost1 $LCTL set_param fail_loc=0x520
12995         $LFS setstripe -c 1 -i 0 $DIR/$tfile
12996         dd if=/dev/zero of=$DIR/$tfile bs=8MB count=1
12997         sync
12998         do_facet ost1 $LCTL set_param fail_loc=0
12999
13000         set_conf_param_and_check client "$test_at" "$param_at" $at_max ||
13001                 error "conf_param at_max=$at_max failed"
13002         set_conf_param_and_check client "$test_timeout" "$param_timeout" \
13003                 $timeout || error "conf_param timeout=$timeout failed"
13004
13005         $LCTL set_param -n $pages_per_rpc
13006         restore_lustre_params < $p
13007         rm -f $p
13008 }
13009 run_test 224c "Don't hang if one of md lost during large bulk RPC"
13010
13011 MDSSURVEY=${MDSSURVEY:-$(which mds-survey 2>/dev/null || true)}
13012 test_225a () {
13013         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13014         remote_mds_nodsh && skip "remote MDS with nodsh" && return
13015         if [ -z ${MDSSURVEY} ]; then
13016               skip_env "mds-survey not found" && return
13017         fi
13018
13019         [ $MDSCOUNT -ge 2 ] &&
13020                 skip "skipping now for more than one MDT" && return
13021
13022        [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ] ||
13023             { skip "Need MDS version at least 2.2.51"; return; }
13024
13025        local mds=$(facet_host $SINGLEMDS)
13026        local target=$(do_nodes $mds 'lctl dl' | \
13027                       awk "{if (\$2 == \"UP\" && \$3 == \"mdt\") {print \$4}}")
13028
13029        local cmd1="file_count=1000 thrhi=4"
13030        local cmd2="dir_count=2 layer=mdd stripe_count=0"
13031        local cmd3="rslt_loc=${TMP} targets=\"$mds:$target\" $MDSSURVEY"
13032        local cmd="$cmd1 $cmd2 $cmd3"
13033
13034        rm -f ${TMP}/mds_survey*
13035        echo + $cmd
13036        eval $cmd || error "mds-survey with zero-stripe failed"
13037        cat ${TMP}/mds_survey*
13038        rm -f ${TMP}/mds_survey*
13039 }
13040 run_test 225a "Metadata survey sanity with zero-stripe"
13041
13042 test_225b () {
13043         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13044         remote_mds_nodsh && skip "remote MDS with nodsh" && return
13045         if [ -z ${MDSSURVEY} ]; then
13046               skip_env "mds-survey not found" && return
13047         fi
13048         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ] ||
13049             { skip "Need MDS version at least 2.2.51"; return; }
13050
13051         if [ $($LCTL dl | grep -c osc) -eq 0 ]; then
13052               skip_env "Need to mount OST to test" && return
13053         fi
13054
13055         [ $MDSCOUNT -ge 2 ] &&
13056                 skip "skipping now for more than one MDT" && return
13057        local mds=$(facet_host $SINGLEMDS)
13058        local target=$(do_nodes $mds 'lctl dl' | \
13059                       awk "{if (\$2 == \"UP\" && \$3 == \"mdt\") {print \$4}}")
13060
13061        local cmd1="file_count=1000 thrhi=4"
13062        local cmd2="dir_count=2 layer=mdd stripe_count=1"
13063        local cmd3="rslt_loc=${TMP} targets=\"$mds:$target\" $MDSSURVEY"
13064        local cmd="$cmd1 $cmd2 $cmd3"
13065
13066        rm -f ${TMP}/mds_survey*
13067        echo + $cmd
13068        eval $cmd || error "mds-survey with stripe_count failed"
13069        cat ${TMP}/mds_survey*
13070        rm -f ${TMP}/mds_survey*
13071 }
13072 run_test 225b "Metadata survey sanity with stripe_count = 1"
13073
13074 mcreate_path2fid () {
13075         local mode=$1
13076         local major=$2
13077         local minor=$3
13078         local name=$4
13079         local desc=$5
13080         local path=$DIR/$tdir/$name
13081         local fid
13082         local rc
13083         local fid_path
13084
13085         $MCREATE --mode=$1 --major=$2 --minor=$3 $path ||
13086                 error "cannot create $desc"
13087
13088         fid=$($LFS path2fid $path | tr -d '[' | tr -d ']')
13089         rc=$?
13090         [ $rc -ne 0 ] && error "cannot get fid of a $desc"
13091
13092         fid_path=$($LFS fid2path $MOUNT $fid)
13093         rc=$?
13094         [ $rc -ne 0 ] && error "cannot get path of $desc by $DIR $path $fid"
13095
13096         [ "$path" == "$fid_path" ] ||
13097                 error "fid2path returned $fid_path, expected $path"
13098
13099         echo "pass with $path and $fid"
13100 }
13101
13102 test_226a () {
13103         rm -rf $DIR/$tdir
13104         mkdir -p $DIR/$tdir
13105
13106         mcreate_path2fid 0010666 0 0 fifo "FIFO"
13107         mcreate_path2fid 0020666 1 3 null "character special file (null)"
13108         mcreate_path2fid 0020666 1 255 none "character special file (no device)"
13109         mcreate_path2fid 0040666 0 0 dir "directory"
13110         mcreate_path2fid 0060666 7 0 loop0 "block special file (loop)"
13111         mcreate_path2fid 0100666 0 0 file "regular file"
13112         mcreate_path2fid 0120666 0 0 link "symbolic link"
13113         mcreate_path2fid 0140666 0 0 sock "socket"
13114 }
13115 run_test 226a "call path2fid and fid2path on files of all type"
13116
13117 test_226b () {
13118         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13119         rm -rf $DIR/$tdir
13120         local MDTIDX=1
13121
13122         mkdir -p $DIR/$tdir
13123         $LFS setdirstripe -i $MDTIDX $DIR/$tdir/remote_dir ||
13124                 error "create remote directory failed"
13125         mcreate_path2fid 0010666 0 0 "remote_dir/fifo" "FIFO"
13126         mcreate_path2fid 0020666 1 3 "remote_dir/null" \
13127                                 "character special file (null)"
13128         mcreate_path2fid 0020666 1 255 "remote_dir/none" \
13129                                 "character special file (no device)"
13130         mcreate_path2fid 0040666 0 0 "remote_dir/dir" "directory"
13131         mcreate_path2fid 0060666 7 0 "remote_dir/loop0" \
13132                                 "block special file (loop)"
13133         mcreate_path2fid 0100666 0 0 "remote_dir/file" "regular file"
13134         mcreate_path2fid 0120666 0 0 "remote_dir/link" "symbolic link"
13135         mcreate_path2fid 0140666 0 0 "remote_dir/sock" "socket"
13136 }
13137 run_test 226b "call path2fid and fid2path on files of all type under remote dir"
13138
13139 # LU-1299 Executing or running ldd on a truncated executable does not
13140 # cause an out-of-memory condition.
13141 test_227() {
13142         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13143         [ -z "$(which ldd)" ] && skip "should have ldd tool" && return
13144         dd if=$(which date) of=$MOUNT/date bs=1k count=1
13145         chmod +x $MOUNT/date
13146
13147         $MOUNT/date > /dev/null
13148         ldd $MOUNT/date > /dev/null
13149         rm -f $MOUNT/date
13150 }
13151 run_test 227 "running truncated executable does not cause OOM"
13152
13153 # LU-1512 try to reuse idle OI blocks
13154 test_228a() {
13155         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13156         remote_mds_nodsh && skip "remote MDS with nodsh" && return
13157         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
13158                 skip "ldiskfs only test" && return
13159
13160         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
13161         local myDIR=$DIR/$tdir
13162
13163         mkdir -p $myDIR
13164         #define OBD_FAIL_SEQ_EXHAUST             0x1002
13165         $LCTL set_param fail_loc=0x80001002
13166         createmany -o $myDIR/t- 10000
13167         $LCTL set_param fail_loc=0
13168         # The guard is current the largest FID holder
13169         touch $myDIR/guard
13170         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
13171                     tr -d '[')
13172         local IDX=$(($SEQ % 64))
13173
13174         do_facet $SINGLEMDS sync
13175         # Make sure journal flushed.
13176         sleep 6
13177         local blk1=$(do_facet $SINGLEMDS \
13178                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
13179                      grep Blockcount | awk '{print $4}')
13180
13181         # Remove old files, some OI blocks will become idle.
13182         unlinkmany $myDIR/t- 10000
13183         # Create new files, idle OI blocks should be reused.
13184         createmany -o $myDIR/t- 2000
13185         do_facet $SINGLEMDS sync
13186         # Make sure journal flushed.
13187         sleep 6
13188         local blk2=$(do_facet $SINGLEMDS \
13189                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
13190                      grep Blockcount | awk '{print $4}')
13191
13192         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
13193 }
13194 run_test 228a "try to reuse idle OI blocks"
13195
13196 test_228b() {
13197         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13198         remote_mds_nodsh && skip "remote MDS with nodsh" && return
13199         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
13200                 skip "ldiskfs only test" && return
13201
13202         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
13203         local myDIR=$DIR/$tdir
13204
13205         mkdir -p $myDIR
13206         #define OBD_FAIL_SEQ_EXHAUST             0x1002
13207         $LCTL set_param fail_loc=0x80001002
13208         createmany -o $myDIR/t- 10000
13209         $LCTL set_param fail_loc=0
13210         # The guard is current the largest FID holder
13211         touch $myDIR/guard
13212         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
13213                     tr -d '[')
13214         local IDX=$(($SEQ % 64))
13215
13216         do_facet $SINGLEMDS sync
13217         # Make sure journal flushed.
13218         sleep 6
13219         local blk1=$(do_facet $SINGLEMDS \
13220                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
13221                      grep Blockcount | awk '{print $4}')
13222
13223         # Remove old files, some OI blocks will become idle.
13224         unlinkmany $myDIR/t- 10000
13225
13226         # stop the MDT
13227         stop $SINGLEMDS || error "Fail to stop MDT."
13228         # remount the MDT
13229         start $SINGLEMDS $MDT_DEV $MDS_MOUNT_OPTS || error "Fail to start MDT."
13230
13231         df $MOUNT || error "Fail to df."
13232         # Create new files, idle OI blocks should be reused.
13233         createmany -o $myDIR/t- 2000
13234         do_facet $SINGLEMDS sync
13235         # Make sure journal flushed.
13236         sleep 6
13237         local blk2=$(do_facet $SINGLEMDS \
13238                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
13239                      grep Blockcount | awk '{print $4}')
13240
13241         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
13242 }
13243 run_test 228b "idle OI blocks can be reused after MDT restart"
13244
13245 #LU-1881
13246 test_228c() {
13247         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13248         remote_mds_nodsh && skip "remote MDS with nodsh" && return
13249         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
13250                 skip "ldiskfs only test" && return
13251
13252         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
13253         local myDIR=$DIR/$tdir
13254
13255         mkdir -p $myDIR
13256         #define OBD_FAIL_SEQ_EXHAUST             0x1002
13257         $LCTL set_param fail_loc=0x80001002
13258         # 20000 files can guarantee there are index nodes in the OI file
13259         createmany -o $myDIR/t- 20000
13260         $LCTL set_param fail_loc=0
13261         # The guard is current the largest FID holder
13262         touch $myDIR/guard
13263         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
13264                     tr -d '[')
13265         local IDX=$(($SEQ % 64))
13266
13267         do_facet $SINGLEMDS sync
13268         # Make sure journal flushed.
13269         sleep 6
13270         local blk1=$(do_facet $SINGLEMDS \
13271                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
13272                      grep Blockcount | awk '{print $4}')
13273
13274         # Remove old files, some OI blocks will become idle.
13275         unlinkmany $myDIR/t- 20000
13276         rm -f $myDIR/guard
13277         # The OI file should become empty now
13278
13279         # Create new files, idle OI blocks should be reused.
13280         createmany -o $myDIR/t- 2000
13281         do_facet $SINGLEMDS sync
13282         # Make sure journal flushed.
13283         sleep 6
13284         local blk2=$(do_facet $SINGLEMDS \
13285                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
13286                      grep Blockcount | awk '{print $4}')
13287
13288         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
13289 }
13290 run_test 228c "NOT shrink the last entry in OI index node to recycle idle leaf"
13291
13292 test_229() { # LU-2482, LU-3448
13293         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.53) ] &&
13294                 skip "No HSM $(lustre_build_version $SINGLEMDS) MDS < 2.4.53" &&
13295                 return
13296         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13297         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
13298
13299         rm -f $DIR/$tfile
13300
13301         # Create a file with a released layout and stripe count 2.
13302         $MULTIOP $DIR/$tfile H2c ||
13303                 error "failed to create file with released layout"
13304
13305         $GETSTRIPE -v $DIR/$tfile
13306
13307         local pattern=$($GETSTRIPE -L $DIR/$tfile)
13308         [ X"$pattern" = X"80000001" ] || error "pattern error ($pattern)"
13309
13310         local stripe_count=$($GETSTRIPE -c $DIR/$tfile) || error "getstripe"
13311         [ $stripe_count -eq 2 ] || error "stripe count not 2 ($stripe_count)"
13312         stat $DIR/$tfile || error "failed to stat released file"
13313
13314         chown $RUNAS_ID $DIR/$tfile ||
13315                 error "chown $RUNAS_ID $DIR/$tfile failed"
13316
13317         chgrp $RUNAS_ID $DIR/$tfile ||
13318                 error "chgrp $RUNAS_ID $DIR/$tfile failed"
13319
13320         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
13321         rm $DIR/$tfile || error "failed to remove released file"
13322 }
13323 run_test 229 "getstripe/stat/rm/attr changes work on released files"
13324
13325 test_230a() {
13326         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13327         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13328         local MDTIDX=1
13329
13330         test_mkdir $DIR/$tdir
13331         test_mkdir -i0 -c1 $DIR/$tdir/test_230_local
13332         local mdt_idx=$($GETSTRIPE -M $DIR/$tdir/test_230_local)
13333         [ $mdt_idx -ne 0 ] &&
13334                 error "create local directory on wrong MDT $mdt_idx"
13335
13336         $LFS mkdir -i $MDTIDX $DIR/$tdir/test_230 ||
13337                         error "create remote directory failed"
13338         local mdt_idx=$($GETSTRIPE -M $DIR/$tdir/test_230)
13339         [ $mdt_idx -ne $MDTIDX ] &&
13340                 error "create remote directory on wrong MDT $mdt_idx"
13341
13342         createmany -o $DIR/$tdir/test_230/t- 10 ||
13343                 error "create files on remote directory failed"
13344         mdt_idx=$($GETSTRIPE -M $DIR/$tdir/test_230/t-0)
13345         [ $mdt_idx -ne $MDTIDX ] && error "create files on wrong MDT $mdt_idx"
13346         rm -r $DIR/$tdir || error "unlink remote directory failed"
13347 }
13348 run_test 230a "Create remote directory and files under the remote directory"
13349
13350 test_230b() {
13351         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13352         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13353         local MDTIDX=1
13354         local mdt_index
13355         local i
13356         local file
13357         local pid
13358         local stripe_count
13359         local migrate_dir=$DIR/$tdir/migrate_dir
13360         local other_dir=$DIR/$tdir/other_dir
13361
13362         test_mkdir $DIR/$tdir
13363         test_mkdir -i0 -c1 $migrate_dir
13364         test_mkdir -i0 -c1 $other_dir
13365         for ((i=0; i<10; i++)); do
13366                 mkdir -p $migrate_dir/dir_${i}
13367                 createmany -o $migrate_dir/dir_${i}/f 10 ||
13368                         error "create files under remote dir failed $i"
13369         done
13370
13371         cp /etc/passwd $migrate_dir/$tfile
13372         cp /etc/passwd $other_dir/$tfile
13373         chattr +SAD $migrate_dir
13374         chattr +SAD $migrate_dir/$tfile
13375
13376         local old_dir_flag=$(lsattr -a $migrate_dir | awk '/\/\.$/ {print $1}')
13377         local old_file_flag=$(lsattr $migrate_dir/$tfile | awk '{print $1}')
13378         local old_dir_mode=$(stat -c%f $migrate_dir)
13379         local old_file_mode=$(stat -c%f $migrate_dir/$tfile)
13380
13381         mkdir -p $migrate_dir/dir_default_stripe2
13382         $SETSTRIPE -c 2 $migrate_dir/dir_default_stripe2
13383         $SETSTRIPE -c 2 $migrate_dir/${tfile}_stripe2
13384
13385         mkdir -p $other_dir
13386         ln $migrate_dir/$tfile $other_dir/luna
13387         ln $migrate_dir/$tfile $migrate_dir/sofia
13388         ln $other_dir/$tfile $migrate_dir/david
13389         ln -s $migrate_dir/$tfile $other_dir/zachary
13390         ln -s $migrate_dir/$tfile $migrate_dir/${tfile}_ln
13391         ln -s $other_dir/$tfile $migrate_dir/${tfile}_ln_other
13392
13393         $LFS migrate -m $MDTIDX $migrate_dir ||
13394                 error "fails on migrating remote dir to MDT1"
13395
13396         echo "migratate to MDT1, then checking.."
13397         for ((i = 0; i < 10; i++)); do
13398                 for file in $(find $migrate_dir/dir_${i}); do
13399                         mdt_index=$($LFS getstripe -M $file)
13400                         [ $mdt_index == $MDTIDX ] ||
13401                                 error "$file is not on MDT${MDTIDX}"
13402                 done
13403         done
13404
13405         # the multiple link file should still in MDT0
13406         mdt_index=$($LFS getstripe -M $migrate_dir/$tfile)
13407         [ $mdt_index == 0 ] ||
13408                 error "$file is not on MDT${MDTIDX}"
13409
13410         local new_dir_flag=$(lsattr -a $migrate_dir | awk '/\/\.$/ {print $1}')
13411         [ "$old_dir_flag" = "$new_dir_flag" ] ||
13412                 error " expect $old_dir_flag get $new_dir_flag"
13413
13414         local new_file_flag=$(lsattr $migrate_dir/$tfile | awk '{print $1}')
13415         [ "$old_file_flag" = "$new_file_flag" ] ||
13416                 error " expect $old_file_flag get $new_file_flag"
13417
13418         local new_dir_mode=$(stat -c%f $migrate_dir)
13419         [ "$old_dir_mode" = "$new_dir_mode" ] ||
13420                 error "expect mode $old_dir_mode get $new_dir_mode"
13421
13422         local new_file_mode=$(stat -c%f $migrate_dir/$tfile)
13423         [ "$old_file_mode" = "$new_file_mode" ] ||
13424                 error "expect mode $old_file_mode get $new_file_mode"
13425
13426         diff /etc/passwd $migrate_dir/$tfile ||
13427                 error "$tfile different after migration"
13428
13429         diff /etc/passwd $other_dir/luna ||
13430                 error "luna different after migration"
13431
13432         diff /etc/passwd $migrate_dir/sofia ||
13433                 error "sofia different after migration"
13434
13435         diff /etc/passwd $migrate_dir/david ||
13436                 error "david different after migration"
13437
13438         diff /etc/passwd $other_dir/zachary ||
13439                 error "zachary different after migration"
13440
13441         diff /etc/passwd $migrate_dir/${tfile}_ln ||
13442                 error "${tfile}_ln different after migration"
13443
13444         diff /etc/passwd $migrate_dir/${tfile}_ln_other ||
13445                 error "${tfile}_ln_other different after migration"
13446
13447         stripe_count=$($LFS getstripe -c $migrate_dir/dir_default_stripe2)
13448         [ $stripe_count = 2 ] ||
13449                 error "dir strpe_count $d != 2 after migration."
13450
13451         stripe_count=$($LFS getstripe -c $migrate_dir/${tfile}_stripe2)
13452         [ $stripe_count = 2 ] ||
13453                 error "file strpe_count $d != 2 after migration."
13454
13455         #migrate back to MDT0
13456         MDTIDX=0
13457
13458         $LFS migrate -m $MDTIDX $migrate_dir ||
13459                 error "fails on migrating remote dir to MDT0"
13460
13461         echo "migrate back to MDT0, checking.."
13462         for file in $(find $migrate_dir); do
13463                 mdt_index=$($LFS getstripe -M $file)
13464                 [ $mdt_index == $MDTIDX ] ||
13465                         error "$file is not on MDT${MDTIDX}"
13466         done
13467
13468         local new_dir_flag=$(lsattr -a $migrate_dir | awk '/\/\.$/ {print $1}')
13469         [ "$old_dir_flag" = "$new_dir_flag" ] ||
13470                 error " expect $old_dir_flag get $new_dir_flag"
13471
13472         local new_file_flag=$(lsattr $migrate_dir/$tfile | awk '{print $1}')
13473         [ "$old_file_flag" = "$new_file_flag" ] ||
13474                 error " expect $old_file_flag get $new_file_flag"
13475
13476         local new_dir_mode=$(stat -c%f $migrate_dir)
13477         [ "$old_dir_mode" = "$new_dir_mode" ] ||
13478                 error "expect mode $old_dir_mode get $new_dir_mode"
13479
13480         local new_file_mode=$(stat -c%f $migrate_dir/$tfile)
13481         [ "$old_file_mode" = "$new_file_mode" ] ||
13482                 error "expect mode $old_file_mode get $new_file_mode"
13483
13484         diff /etc/passwd ${migrate_dir}/$tfile ||
13485                 error "$tfile different after migration"
13486
13487         diff /etc/passwd ${other_dir}/luna ||
13488                 error "luna different after migration"
13489
13490         diff /etc/passwd ${migrate_dir}/sofia ||
13491                 error "sofia different after migration"
13492
13493         diff /etc/passwd ${other_dir}/zachary ||
13494                 error "zachary different after migration"
13495
13496         diff /etc/passwd $migrate_dir/${tfile}_ln ||
13497                 error "${tfile}_ln different after migration"
13498
13499         diff /etc/passwd $migrate_dir/${tfile}_ln_other ||
13500                 error "${tfile}_ln_other different after migration"
13501
13502         stripe_count=$($LFS getstripe -c ${migrate_dir}/dir_default_stripe2)
13503         [ $stripe_count = 2 ] ||
13504                 error "dir strpe_count $d != 2 after migration."
13505
13506         stripe_count=$($LFS getstripe -c ${migrate_dir}/${tfile}_stripe2)
13507         [ $stripe_count = 2 ] ||
13508                 error "file strpe_count $d != 2 after migration."
13509
13510         rm -rf $DIR/$tdir || error "rm dir failed after migration"
13511 }
13512 run_test 230b "migrate directory"
13513
13514 test_230c() {
13515         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13516         remote_mds_nodsh && skip "remote MDS with nodsh" && return
13517         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13518         local MDTIDX=1
13519         local mdt_index
13520         local file
13521         local migrate_dir=$DIR/$tdir/migrate_dir
13522
13523         #If migrating directory fails in the middle, all entries of
13524         #the directory is still accessiable.
13525         test_mkdir $DIR/$tdir
13526         test_mkdir -i0 -c1 $migrate_dir
13527         stat $migrate_dir
13528         createmany -o $migrate_dir/f 10 ||
13529                 error "create files under ${migrate_dir} failed"
13530
13531         #failed after migrating 5 entries
13532         #OBD_FAIL_MIGRATE_ENTRIES       0x1801
13533         do_facet mds1 lctl set_param fail_loc=0x20001801
13534         do_facet mds1 lctl  set_param fail_val=5
13535         local t=$(ls $migrate_dir | wc -l)
13536         $LFS migrate --mdt-index $MDTIDX $migrate_dir &&
13537                 error "migrate should fail after 5 entries"
13538
13539         mkdir $migrate_dir/dir &&
13540                 error "mkdir succeeds under migrating directory"
13541         touch $migrate_dir/file &&
13542                 error "touch file succeeds under migrating directory"
13543
13544         local u=$(ls $migrate_dir | wc -l)
13545         [ "$u" == "$t" ] || error "$u != $t during migration"
13546
13547         for file in $(find $migrate_dir); do
13548                 stat $file || error "stat $file failed"
13549         done
13550
13551         do_facet mds1 lctl set_param fail_loc=0
13552         do_facet mds1 lctl set_param fail_val=0
13553
13554         $LFS migrate -m $MDTIDX $migrate_dir ||
13555                 error "migrate open files should failed with open files"
13556
13557         echo "Finish migration, then checking.."
13558         for file in $(find $migrate_dir); do
13559                 mdt_index=$($LFS getstripe -M $file)
13560                 [ $mdt_index == $MDTIDX ] ||
13561                         error "$file is not on MDT${MDTIDX}"
13562         done
13563
13564         rm -rf $DIR/$tdir || error "rm dir failed after migration"
13565 }
13566 run_test 230c "check directory accessiblity if migration is failed"
13567
13568 test_230d() {
13569         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13570         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13571         local MDTIDX=1
13572         local mdt_index
13573         local migrate_dir=$DIR/$tdir/migrate_dir
13574         local i
13575         local j
13576
13577         test_mkdir $DIR/$tdir
13578         test_mkdir -i0 -c1 $migrate_dir
13579
13580         for ((i=0; i<100; i++)); do
13581                 test_mkdir -i0 -c1 $migrate_dir/dir_${i}
13582                 createmany -o $migrate_dir/dir_${i}/f 100 ||
13583                         error "create files under remote dir failed $i"
13584         done
13585
13586         $LFS migrate -m $MDTIDX $migrate_dir ||
13587                 error "migrate remote dir error"
13588
13589         echo "Finish migration, then checking.."
13590         for file in $(find $migrate_dir); do
13591                 mdt_index=$($LFS getstripe -M $file)
13592                 [ $mdt_index == $MDTIDX ] ||
13593                         error "$file is not on MDT${MDTIDX}"
13594         done
13595
13596         rm -rf $DIR/$tdir || error "rm dir failed after migration"
13597 }
13598 run_test 230d "check migrate big directory"
13599
13600 test_230e() {
13601         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13602         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13603         local i
13604         local j
13605         local a_fid
13606         local b_fid
13607
13608         mkdir -p $DIR/$tdir
13609         mkdir $DIR/$tdir/migrate_dir
13610         mkdir $DIR/$tdir/other_dir
13611         touch $DIR/$tdir/migrate_dir/a
13612         ln $DIR/$tdir/migrate_dir/a $DIR/$tdir/other_dir/b
13613         ls $DIR/$tdir/other_dir
13614
13615         $LFS migrate -m 1 $DIR/$tdir/migrate_dir ||
13616                 error "migrate dir fails"
13617
13618         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir)
13619         [ $mdt_index == 1 ] || error "migrate_dir is not on MDT1"
13620
13621         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir/a)
13622         [ $mdt_index == 0 ] || error "a is not on MDT0"
13623
13624         $LFS migrate -m 1 $DIR/$tdir/other_dir ||
13625                 error "migrate dir fails"
13626
13627         mdt_index=$($LFS getstripe -M $DIR/$tdir/other_dir)
13628         [ $mdt_index == 1 ] || error "other_dir is not on MDT1"
13629
13630         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir/a)
13631         [ $mdt_index == 1 ] || error "a is not on MDT1"
13632
13633         mdt_index=$($LFS getstripe -M $DIR/$tdir/other_dir/b)
13634         [ $mdt_index == 1 ] || error "b is not on MDT1"
13635
13636         a_fid=$($LFS path2fid $DIR/$tdir/migrate_dir/a)
13637         b_fid=$($LFS path2fid $DIR/$tdir/other_dir/b)
13638
13639         [ "$a_fid" = "$b_fid" ] || error "different fid after migration"
13640
13641         rm -rf $DIR/$tdir || error "rm dir failed after migration"
13642 }
13643 run_test 230e "migrate mulitple local link files"
13644
13645 test_230f() {
13646         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13647         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13648         local a_fid
13649         local ln_fid
13650
13651         mkdir -p $DIR/$tdir
13652         mkdir $DIR/$tdir/migrate_dir
13653         $LFS mkdir -i1 $DIR/$tdir/other_dir
13654         touch $DIR/$tdir/migrate_dir/a
13655         ln $DIR/$tdir/migrate_dir/a $DIR/$tdir/other_dir/ln1
13656         ln $DIR/$tdir/migrate_dir/a $DIR/$tdir/other_dir/ln2
13657         ls $DIR/$tdir/other_dir
13658
13659         # a should be migrated to MDT1, since no other links on MDT0
13660         $LFS migrate -m 1 $DIR/$tdir/migrate_dir ||
13661                 error "#1 migrate dir fails"
13662         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir)
13663         [ $mdt_index == 1 ] || error "migrate_dir is not on MDT1"
13664         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir/a)
13665         [ $mdt_index == 1 ] || error "a is not on MDT1"
13666
13667         # a should stay on MDT1, because it is a mulitple link file
13668         $LFS migrate -m 0 $DIR/$tdir/migrate_dir ||
13669                 error "#2 migrate dir fails"
13670         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir/a)
13671         [ $mdt_index == 1 ] || error "a is not on MDT1"
13672
13673         $LFS migrate -m 1 $DIR/$tdir/migrate_dir ||
13674                 error "#3 migrate dir fails"
13675
13676         a_fid=$($LFS path2fid $DIR/$tdir/migrate_dir/a)
13677         ln_fid=$($LFS path2fid $DIR/$tdir/other_dir/ln1)
13678         [ "$a_fid" = "$ln_fid" ] || error "different fid after migrate to MDT1"
13679
13680         rm -rf $DIR/$tdir/other_dir/ln1 || error "unlink ln1 fails"
13681         rm -rf $DIR/$tdir/other_dir/ln2 || error "unlink ln2 fails"
13682
13683         # a should be migrated to MDT0, since no other links on MDT1
13684         $LFS migrate -m 0 $DIR/$tdir/migrate_dir ||
13685                 error "#4 migrate dir fails"
13686         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir/a)
13687         [ $mdt_index == 0 ] || error "a is not on MDT0"
13688
13689         rm -rf $DIR/$tdir || error "rm dir failed after migration"
13690 }
13691 run_test 230f "migrate mulitple remote link files"
13692
13693 test_230g() {
13694         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13695         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13696
13697         mkdir -p $DIR/$tdir/migrate_dir
13698
13699         $LFS migrate -m 1000 $DIR/$tdir/migrate_dir &&
13700                 error "migrating dir to non-exist MDT succeeds"
13701         true
13702 }
13703 run_test 230g "migrate dir to non-exist MDT"
13704
13705 test_230h() {
13706         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13707         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13708         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.64) ] &&
13709                 skip "Need MDS version at least 2.7.64" && return
13710         local mdt_index
13711
13712         mkdir -p $DIR/$tdir/migrate_dir
13713
13714         $LFS migrate -m1 $DIR &&
13715                 error "migrating mountpoint1 should fail"
13716
13717         $LFS migrate -m1 $DIR/$tdir/.. &&
13718                 error "migrating mountpoint2 should fail"
13719
13720         $LFS migrate -m1 $DIR/$tdir/migrate_dir/.. ||
13721                 error "migrating $tdir fail"
13722
13723         mdt_index=$($LFS getstripe -M $DIR/$tdir)
13724         [ $mdt_index == 1 ] || error "$mdt_index != 1 after migration"
13725
13726         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir)
13727         [ $mdt_index == 1 ] || error "$mdt_index != 1 after migration"
13728
13729 }
13730 run_test 230h "migrate .. and root"
13731
13732 test_230i() {
13733         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13734         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13735
13736         mkdir -p $DIR/$tdir/migrate_dir
13737
13738         $LFS migrate -m 1 $DIR/$tdir/migrate_dir/ ||
13739                 error "migration fails with a tailing slash"
13740
13741         $LFS migrate -m 0 $DIR/$tdir/migrate_dir// ||
13742                 error "migration fails with two tailing slashes"
13743 }
13744 run_test 230i "lfs migrate -m tolerates trailing slashes"
13745
13746 test_231a()
13747 {
13748         # For simplicity this test assumes that max_pages_per_rpc
13749         # is the same across all OSCs
13750         local max_pages=$($LCTL get_param -n osc.*.max_pages_per_rpc | head -n1)
13751         local bulk_size=$((max_pages * 4096))
13752         local brw_size=$(do_facet ost1 $LCTL get_param -n obdfilter.*.brw_size |
13753                                        head -n 1)
13754
13755         mkdir -p $DIR/$tdir
13756         $LFS setstripe -S ${brw_size}M $DIR/$tdir ||
13757                 error "failed to set stripe with -S ${brw_size}M option"
13758
13759         # clear the OSC stats
13760         $LCTL set_param osc.*.stats=0 &>/dev/null
13761         stop_writeback
13762
13763         # Client writes $bulk_size - there must be 1 rpc for $max_pages.
13764         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=$bulk_size count=1 \
13765                 oflag=direct &>/dev/null || error "dd failed"
13766
13767         sync; sleep 1; sync # just to be safe
13768         local nrpcs=$($LCTL get_param osc.*.stats |awk '/ost_write/ {print $2}')
13769         if [ x$nrpcs != "x1" ]; then
13770                 $LCTL get_param osc.*.stats
13771                 error "found $nrpcs ost_write RPCs, not 1 as expected"
13772         fi
13773
13774         start_writeback
13775         # Drop the OSC cache, otherwise we will read from it
13776         cancel_lru_locks osc
13777
13778         # clear the OSC stats
13779         $LCTL set_param osc.*.stats=0 &>/dev/null
13780
13781         # Client reads $bulk_size.
13782         dd if=$DIR/$tdir/$tfile of=/dev/null bs=$bulk_size count=1 \
13783                 iflag=direct &>/dev/null || error "dd failed"
13784
13785         nrpcs=$($LCTL get_param osc.*.stats | awk '/ost_read/ { print $2 }')
13786         if [ x$nrpcs != "x1" ]; then
13787                 $LCTL get_param osc.*.stats
13788                 error "found $nrpcs ost_read RPCs, not 1 as expected"
13789         fi
13790 }
13791 run_test 231a "checking that reading/writing of BRW RPC size results in one RPC"
13792
13793 test_231b() {
13794         mkdir -p $DIR/$tdir
13795         local i
13796         for i in {0..1023}; do
13797                 dd if=/dev/zero of=$DIR/$tdir/$tfile conv=notrunc \
13798                         seek=$((2 * i)) bs=4096 count=1 &>/dev/null ||
13799                         error "dd of=$DIR/$tdir/$tfile seek=$((2 * i)) failed"
13800         done
13801         sync
13802 }
13803 run_test 231b "must not assert on fully utilized OST request buffer"
13804
13805 test_232() {
13806         mkdir -p $DIR/$tdir
13807         #define OBD_FAIL_LDLM_OST_LVB            0x31c
13808         $LCTL set_param fail_loc=0x31c
13809
13810         # ignore dd failure
13811         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=1 || true
13812
13813         $LCTL set_param fail_loc=0
13814         umount_client $MOUNT || error "umount failed"
13815         mount_client $MOUNT || error "mount failed"
13816 }
13817 run_test 232 "failed lock should not block umount"
13818
13819 test_233a() {
13820         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.64) ] ||
13821         { skip "Need MDS version at least 2.3.64"; return; }
13822         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
13823
13824         local fid=$($LFS path2fid $MOUNT)
13825         stat $MOUNT/.lustre/fid/$fid > /dev/null ||
13826                 error "cannot access $MOUNT using its FID '$fid'"
13827 }
13828 run_test 233a "checking that OBF of the FS root succeeds"
13829
13830 test_233b() {
13831         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.5.90) ] ||
13832         { skip "Need MDS version at least 2.5.90"; return; }
13833         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
13834
13835         local fid=$($LFS path2fid $MOUNT/.lustre)
13836         stat $MOUNT/.lustre/fid/$fid > /dev/null ||
13837                 error "cannot access $MOUNT/.lustre using its FID '$fid'"
13838
13839         fid=$($LFS path2fid $MOUNT/.lustre/fid)
13840         stat $MOUNT/.lustre/fid/$fid > /dev/null ||
13841                 error "cannot access $MOUNT/.lustre/fid using its FID '$fid'"
13842 }
13843 run_test 233b "checking that OBF of the FS .lustre succeeds"
13844
13845 test_234() {
13846         local p="$TMP/sanityN-$TESTNAME.parameters"
13847         save_lustre_params client "llite.*.xattr_cache" > $p
13848         lctl set_param llite.*.xattr_cache 1 ||
13849                 { skip "xattr cache is not supported"; return 0; }
13850
13851         mkdir -p $DIR/$tdir || error "mkdir failed"
13852         touch $DIR/$tdir/$tfile || error "touch failed"
13853         # OBD_FAIL_LLITE_XATTR_ENOMEM
13854         $LCTL set_param fail_loc=0x1405
13855         # output of the form: attr 2 4 44 3 fc13 x86_64
13856         V=($(IFS=".-" rpm -q attr))
13857         if [[ ${V[1]} > 2 || ${V[2]} > 4 || ${V[3]} > 44 ||
13858               ${V[1]} = 2 && ${V[2]} = 4 && ${V[3]} = 44 && ${V[4]} > 6 ]]; then
13859                 # attr pre-2.4.44-7 had a bug with rc
13860                 # LU-3703 - SLES 11 and FC13 clients have older attr
13861                 getfattr -n user.attr $DIR/$tdir/$tfile &&
13862                         error "getfattr should have failed with ENOMEM"
13863         else
13864                 skip "LU-3703: attr version $(getfattr --version) too old"
13865         fi
13866         $LCTL set_param fail_loc=0x0
13867         rm -rf $DIR/$tdir
13868
13869         restore_lustre_params < $p
13870         rm -f $p
13871 }
13872 run_test 234 "xattr cache should not crash on ENOMEM"
13873
13874 test_235() {
13875         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.52) ] &&
13876                 skip "Need MDS version at least 2.4.52" && return
13877         flock_deadlock $DIR/$tfile
13878         local RC=$?
13879         case $RC in
13880                 0)
13881                 ;;
13882                 124) error "process hangs on a deadlock"
13883                 ;;
13884                 *) error "error executing flock_deadlock $DIR/$tfile"
13885                 ;;
13886         esac
13887 }
13888 run_test 235 "LU-1715: flock deadlock detection does not work properly"
13889
13890 #LU-2935
13891 test_236() {
13892         check_swap_layouts_support && return 0
13893         test_mkdir -c1 $DIR/$tdir
13894
13895         local ref1=/etc/passwd
13896         local ref2=/etc/group
13897         local file1=$DIR/$tdir/f1
13898         local file2=$DIR/$tdir/f2
13899
13900         $SETSTRIPE -c 1 $file1 || error "cannot setstripe on '$file1': rc = $?"
13901         cp $ref1 $file1 || error "cp $ref1 $file1 failed: rc = $?"
13902         $SETSTRIPE -c 2 $file2 || error "cannot setstripe on '$file2': rc = $?"
13903         cp $ref2 $file2 || error "cp $ref2 $file2 failed: rc = $?"
13904         local fd=$(free_fd)
13905         local cmd="exec $fd<>$file2"
13906         eval $cmd
13907         rm $file2
13908         $LFS swap_layouts $file1 /proc/self/fd/${fd} ||
13909                 error "cannot swap layouts of '$file1' and /proc/self/fd/${fd}"
13910         cmd="exec $fd>&-"
13911         eval $cmd
13912         cmp $ref2 $file1 || error "content compare failed ($ref2 != $file1)"
13913
13914         #cleanup
13915         rm -rf $DIR/$tdir
13916 }
13917 run_test 236 "Layout swap on open unlinked file"
13918
13919 # test to verify file handle related system calls
13920 # (name_to_handle_at/open_by_handle_at)
13921 # The new system calls are supported in glibc >= 2.14.
13922
13923 test_237() {
13924         echo "Test file_handle syscalls" > $DIR/$tfile ||
13925                 error "write failed"
13926         check_fhandle_syscalls $DIR/$tfile ||
13927                 error "check_fhandle_syscalls failed"
13928 }
13929 run_test 237 "Verify name_to_handle_at/open_by_handle_at syscalls"
13930
13931 # LU-4659 linkea consistency
13932 test_238() {
13933         local server_version=$(lustre_version_code $SINGLEMDS)
13934
13935         [[ $server_version -gt $(version_code 2.5.57) ]] ||
13936                 [[ $server_version -gt $(version_code 2.5.1) &&
13937                    $server_version -lt $(version_code 2.5.50) ]] ||
13938                 { skip "Need MDS version at least 2.5.58 or 2.5.2+"; return; }
13939
13940         touch $DIR/$tfile
13941         ln $DIR/$tfile $DIR/$tfile.lnk
13942         touch $DIR/$tfile.new
13943         mv $DIR/$tfile.new $DIR/$tfile
13944         local fid1=$($LFS path2fid $DIR/$tfile)
13945         local fid2=$($LFS path2fid $DIR/$tfile.lnk)
13946         local path1=$($LFS fid2path $FSNAME "$fid1")
13947         [ $tfile == $path1 ] || error "linkea inconsistent: $tfile $fid1 $path1"
13948         local path2=$($LFS fid2path $FSNAME "$fid2")
13949         [ $tfile.lnk == $path2 ] ||
13950                 error "linkea inconsistent: $tfile.lnk $fid2 $path2!"
13951         rm -f $DIR/$tfile*
13952 }
13953 run_test 238 "Verify linkea consistency"
13954
13955 test_239() {
13956         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.5.60) ] &&
13957                 skip "Need MDS version at least 2.5.60" && return
13958         local list=$(comma_list $(mdts_nodes))
13959
13960         mkdir -p $DIR/$tdir
13961         createmany -o $DIR/$tdir/f- 5000
13962         unlinkmany $DIR/$tdir/f- 5000
13963         do_nodes $list "lctl set_param -n osp*.*.sync_changes 1"
13964         changes=$(do_nodes $list "lctl get_param -n osc.*MDT*.sync_changes \
13965                         osc.*MDT*.sync_in_flight" | calc_sum)
13966         [ "$changes" -eq 0 ] || error "$changes not synced"
13967 }
13968 run_test 239 "osp_sync test"
13969
13970 test_239a() { #LU-5297
13971         remote_mds_nodsh && skip "remote MDS with nodsh" && return
13972         touch $DIR/$tfile
13973         #define OBD_FAIL_OSP_CHECK_INVALID_REC     0x2100
13974         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x2100
13975         chgrp $RUNAS_GID $DIR/$tfile
13976         wait_delete_completed
13977 }
13978 run_test 239a "process invalid osp sync record correctly"
13979
13980 test_239b() { #LU-5297
13981         remote_mds_nodsh && skip "remote MDS with nodsh" && return
13982         touch $DIR/$tfile1
13983         #define OBD_FAIL_OSP_CHECK_ENOMEM     0x2101
13984         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x2101
13985         chgrp $RUNAS_GID $DIR/$tfile1
13986         wait_delete_completed
13987         do_facet $SINGLEMDS $LCTL set_param fail_loc=0
13988         touch $DIR/$tfile2
13989         chgrp $RUNAS_GID $DIR/$tfile2
13990         wait_delete_completed
13991 }
13992 run_test 239b "process osp sync record with ENOMEM error correctly"
13993
13994 test_240() {
13995         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13996         remote_mds_nodsh && skip "remote MDS with nodsh" && return
13997
13998         mkdir -p $DIR/$tdir
13999
14000         $LFS mkdir -i 0 $DIR/$tdir/d0 ||
14001                 error "failed to mkdir $DIR/$tdir/d0 on MDT0"
14002         $LFS mkdir -i 1 $DIR/$tdir/d0/d1 ||
14003                 error "failed to mkdir $DIR/$tdir/d0/d1 on MDT1"
14004
14005         umount_client $MOUNT || error "umount failed"
14006         #define OBD_FAIL_TGT_DELAY_CONDITIONAL   0x713
14007         do_facet mds2 lctl set_param fail_loc=0x713 fail_val=1
14008         mount_client $MOUNT || error "failed to mount client"
14009
14010         echo "stat $DIR/$tdir/d0/d1, should not fail/ASSERT"
14011         stat $DIR/$tdir/d0/d1 || error "fail to stat $DIR/$tdir/d0/d1"
14012 }
14013 run_test 240 "race between ldlm enqueue and the connection RPC (no ASSERT)"
14014
14015 test_241_bio() {
14016         for LOOP in $(seq $1); do
14017                 dd if=$DIR/$tfile of=/dev/null bs=40960 count=1 2>/dev/null
14018                 cancel_lru_locks osc || true
14019         done
14020 }
14021
14022 test_241_dio() {
14023         for LOOP in $(seq $1); do
14024                 dd if=$DIR/$tfile of=/dev/null bs=40960 count=1 \
14025                                                 iflag=direct 2>/dev/null
14026         done
14027 }
14028
14029 test_241a() { # was test_241
14030         dd if=/dev/zero of=$DIR/$tfile count=1 bs=40960
14031         ls -la $DIR/$tfile
14032         cancel_lru_locks osc
14033         test_241_bio 1000 &
14034         PID=$!
14035         test_241_dio 1000
14036         wait $PID
14037 }
14038 run_test 241a "bio vs dio"
14039
14040 test_241b() {
14041         dd if=/dev/zero of=$DIR/$tfile count=1 bs=40960
14042         ls -la $DIR/$tfile
14043         test_241_dio 1000 &
14044         PID=$!
14045         test_241_dio 1000
14046         wait $PID
14047 }
14048 run_test 241b "dio vs dio"
14049
14050 test_242() {
14051         remote_mds_nodsh && skip "remote MDS with nodsh" && return
14052         mkdir -p $DIR/$tdir
14053         touch $DIR/$tdir/$tfile
14054
14055         #define OBD_FAIL_MDS_READPAGE_PACK      0x105
14056         do_facet mds1 lctl set_param fail_loc=0x105
14057         /bin/ls $DIR/$tdir && error "ls $DIR/$tdir should fail"
14058
14059         do_facet mds1 lctl set_param fail_loc=0
14060         /bin/ls $DIR/$tdir || error "ls $DIR/$tdir failed"
14061 }
14062 run_test 242 "mdt_readpage failure should not cause directory unreadable"
14063
14064 test_243()
14065 {
14066         test_mkdir $DIR/$tdir
14067         group_lock_test -d $DIR/$tdir || error "A group lock test failed"
14068 }
14069 run_test 243 "various group lock tests"
14070
14071 test_244()
14072 {
14073         test_mkdir $DIR/$tdir
14074         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=35
14075         sendfile_grouplock $DIR/$tdir/$tfile || \
14076                 error "sendfile+grouplock failed"
14077         rm -rf $DIR/$tdir
14078 }
14079 run_test 244 "sendfile with group lock tests"
14080
14081 test_245() {
14082         local flagname="multi_mod_rpcs"
14083         local connect_data_name="max_mod_rpcs"
14084         local out
14085
14086         # check if multiple modify RPCs flag is set
14087         out=$($LCTL get_param mdc.$FSNAME-MDT0000-*.import |
14088                 grep "connect_flags:")
14089         echo "$out"
14090
14091         echo "$out" | grep -qw $flagname
14092         if [ $? -ne 0 ]; then
14093                 echo "connect flag $flagname is not set"
14094                 return
14095         fi
14096
14097         # check if multiple modify RPCs data is set
14098         out=$($LCTL get_param mdc.$FSNAME-MDT0000-*.import)
14099         echo "$out"
14100
14101         echo "$out" | grep -qw $connect_data_name ||
14102                 error "import should have connect data $connect_data_name"
14103 }
14104 run_test 245 "check mdc connection flag/data: multiple modify RPCs"
14105
14106 test_246() { # LU-7371
14107         remote_ost_nodsh && skip "remote OST with nodsh" && return
14108         [ $(lustre_version_code ost1) -lt $(version_code 2.7.62) ] &&
14109                 skip "Need OST version >= 2.7.62" && return 0
14110         do_facet ost1 $LCTL set_param fail_val=4095
14111 #define OBD_FAIL_OST_READ_SIZE          0x234
14112         do_facet ost1 $LCTL set_param fail_loc=0x234
14113         $LFS setstripe $DIR/$tfile -i 0 -c 1
14114         dd if=/dev/zero of=$DIR/$tfile bs=4095 count=1 > /dev/null 2>&1
14115         cancel_lru_locks $FSNAME-OST0000
14116         dd if=$DIR/$tfile of=/dev/null bs=1048576 || error "Read failed"
14117 }
14118 run_test 246 "Read file of size 4095 should return right length"
14119
14120 test_247a() {
14121         lctl get_param -n mdc.$FSNAME-MDT0000*.import |
14122                 grep -q subtree ||
14123                 { skip "Fileset feature is not supported"; return; }
14124
14125         local submount=${MOUNT}_$tdir
14126
14127         mkdir $MOUNT/$tdir
14128         mkdir -p $submount || error "mkdir $submount failed"
14129         FILESET="$FILESET/$tdir" mount_client $submount ||
14130                 error "mount $submount failed"
14131         echo foo > $submount/$tfile || error "write $submount/$tfile failed"
14132         [ $(cat $MOUNT/$tdir/$tfile) = "foo" ] ||
14133                 error "read $MOUNT/$tdir/$tfile failed"
14134         umount_client $submount || error "umount $submount failed"
14135         rmdir $submount
14136 }
14137 run_test 247a "mount subdir as fileset"
14138
14139 test_247b() {
14140         lctl get_param -n mdc.$FSNAME-MDT0000*.import | grep -q subtree ||
14141                 { skip "Fileset feature is not supported"; return; }
14142
14143         local submount=${MOUNT}_$tdir
14144
14145         rm -rf $MOUNT/$tdir
14146         mkdir -p $submount || error "mkdir $submount failed"
14147         SKIP_FILESET=1
14148         FILESET="$FILESET/$tdir" mount_client $submount &&
14149                 error "mount $submount should fail"
14150         rmdir $submount
14151 }
14152 run_test 247b "mount subdir that dose not exist"
14153
14154 test_247c() {
14155         lctl get_param -n mdc.$FSNAME-MDT0000*.import | grep -q subtree ||
14156                 { skip "Fileset feature is not supported"; return; }
14157
14158         local submount=${MOUNT}_$tdir
14159
14160         mkdir -p $MOUNT/$tdir/dir1
14161         mkdir -p $submount || error "mkdir $submount failed"
14162         FILESET="$FILESET/$tdir" mount_client $submount ||
14163                 error "mount $submount failed"
14164         local fid=$($LFS path2fid $MOUNT/)
14165         $LFS fid2path $submount $fid && error "fid2path should fail"
14166         umount_client $submount || error "umount $submount failed"
14167         rmdir $submount
14168 }
14169 run_test 247c "running fid2path outside root"
14170
14171 test_247d() {
14172         lctl get_param -n mdc.$FSNAME-MDT0000*.import | grep -q subtree ||
14173                 { skip "Fileset feature is not supported"; return; }
14174
14175         local submount=${MOUNT}_$tdir
14176
14177         mkdir -p $MOUNT/$tdir/dir1
14178         mkdir -p $submount || error "mkdir $submount failed"
14179         FILESET="$FILESET/$tdir" mount_client $submount ||
14180                 error "mount $submount failed"
14181         local fid=$($LFS path2fid $submount/dir1)
14182         $LFS fid2path $submount $fid || error "fid2path should succeed"
14183         umount_client $submount || error "umount $submount failed"
14184         rmdir $submount
14185 }
14186 run_test 247d "running fid2path inside root"
14187
14188 # LU-8037
14189 test_247e() {
14190         lctl get_param -n mdc.$FSNAME-MDT0000*.import |
14191                 grep -q subtree ||
14192                 { skip "Fileset feature is not supported"; return; }
14193
14194         local submount=${MOUNT}_$tdir
14195
14196         mkdir $MOUNT/$tdir
14197         mkdir -p $submount || error "mkdir $submount failed"
14198         FILESET="$FILESET/.." mount_client $submount &&
14199                 error "mount $submount should fail"
14200         rmdir $submount
14201 }
14202 run_test 247e "mount .. as fileset"
14203
14204 test_248() {
14205         local fast_read_sav=$($LCTL get_param -n llite.*.fast_read 2>/dev/null)
14206         [ -z "$fast_read_sav" ] && skip "no fast read support" && return
14207
14208         # create a large file for fast read verification
14209         dd if=/dev/zero of=$DIR/$tfile bs=1M count=128 > /dev/null 2>&1
14210
14211         # make sure the file is created correctly
14212         $CHECKSTAT -s $((128*1024*1024)) $DIR/$tfile ||
14213                 { rm -f $DIR/$tfile; skip "file creation error" && return; }
14214
14215         echo "Test 1: verify that fast read is 4 times faster on cache read"
14216
14217         # small read with fast read enabled
14218         $LCTL set_param -n llite.*.fast_read=1
14219         local t_fast=$(dd if=$DIR/$tfile of=/dev/null bs=4k 2>&1 |
14220                 awk '/copied/ { print $6 }')
14221
14222         # small read with fast read disabled
14223         $LCTL set_param -n llite.*.fast_read=0
14224         local t_slow=$(dd if=$DIR/$tfile of=/dev/null bs=4k 2>&1 |
14225                 awk '/copied/ { print $6 }')
14226
14227         # verify that fast read is 4 times faster for cache read
14228         [ $(bc <<< "4 * $t_fast < $t_slow") -eq 1 ] ||
14229                 error_not_in_vm "fast read was not 4 times faster: " \
14230                            "$t_fast vs $t_slow"
14231
14232         echo "Test 2: verify the performance between big and small read"
14233         $LCTL set_param -n llite.*.fast_read=1
14234
14235         # 1k non-cache read
14236         cancel_lru_locks osc
14237         local t_1k=$(dd if=$DIR/$tfile of=/dev/null bs=1k 2>&1 |
14238                 awk '/copied/ { print $6 }')
14239
14240         # 1M non-cache read
14241         cancel_lru_locks osc
14242         local t_1m=$(dd if=$DIR/$tfile of=/dev/null bs=1k 2>&1 |
14243                 awk '/copied/ { print $6 }')
14244
14245         # verify that big IO is not 4 times faster than small IO
14246         [ $(bc <<< "4 * $t_1k >= $t_1m") -eq 1 ] ||
14247                 error_not_in_vm "bigger IO is way too fast: $t_1k vs $t_1m"
14248
14249         $LCTL set_param -n llite.*.fast_read=$fast_read_sav
14250         rm -f $DIR/$tfile
14251 }
14252 run_test 248 "fast read verification"
14253
14254 test_249() { # LU-7890
14255         rm -f $DIR/$tfile
14256         $SETSTRIPE -c 1 $DIR/$tfile
14257
14258         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.53) ] &&
14259         skip "Need at least version 2.8.54"
14260
14261         # Offset 2T == 4k * 512M
14262         dd if=/dev/zero of=$DIR/$tfile bs=4k count=1 seek=512M ||
14263                 error "dd to 2T offset failed"
14264 }
14265 run_test 249 "Write above 2T file size"
14266
14267 test_250() {
14268         [ "$(facet_fstype ost$(($($GETSTRIPE -i $DIR/$tfile) + 1)))" = "zfs" ] \
14269          && skip "no 16TB file size limit on ZFS" && return
14270
14271         $SETSTRIPE -c 1 $DIR/$tfile
14272         # ldiskfs extent file size limit is (16TB - 4KB - 1) bytes
14273         local size=$((16 * 1024 * 1024 * 1024 * 1024 - 4096 - 1))
14274         $TRUNCATE $DIR/$tfile $size || error "truncate $tfile to $size failed"
14275         dd if=/dev/zero of=$DIR/$tfile bs=10 count=1 oflag=append \
14276                 conv=notrunc,fsync && error "append succeeded"
14277         return 0
14278 }
14279 run_test 250 "Write above 16T limit"
14280
14281 test_251() {
14282         $SETSTRIPE -c -1 -S 1048576 $DIR/$tfile
14283
14284         #define OBD_FAIL_LLITE_LOST_LAYOUT 0x1407
14285         #Skip once - writing the first stripe will succeed
14286         $LCTL set_param fail_loc=0xa0001407 fail_val=1
14287         $MULTIOP $DIR/$tfile o:O_RDWR:w2097152c 2>&1 | grep -q "short write" &&
14288                 error "short write happened"
14289
14290         $LCTL set_param fail_loc=0xa0001407 fail_val=1
14291         $MULTIOP $DIR/$tfile or2097152c 2>&1 | grep -q "short read" &&
14292                 error "short read happened"
14293
14294         rm -f $DIR/$tfile
14295 }
14296 run_test 251 "Handling short read and write correctly"
14297
14298 test_252() {
14299         local tgt
14300         local dev
14301         local out
14302         local uuid
14303         local num
14304         local gen
14305
14306         remote_mds_nodsh && skip "remote MDS with nodsh" && return
14307         remote_ost_nodsh && skip "remote OST with nodsh" && return
14308         if [ "$(facet_fstype ost1)" != "ldiskfs" -o \
14309              "$(facet_fstype mds1)" != "ldiskfs" ]; then
14310                 skip "ldiskfs only test"
14311                 return
14312         fi
14313
14314         # check lr_reader on OST0000
14315         tgt=ost1
14316         dev=$(facet_device $tgt)
14317         out=$(do_facet $tgt $LR_READER $dev)
14318         [ $? -eq 0 ] || error "$LR_READER failed on target $tgt device $dev"
14319         echo "$out"
14320         uuid=$(echo "$out" | grep -i uuid | awk '{ print $2 }')
14321         [ "$uuid" == "$(ostuuid_from_index 0)" ] ||
14322                 error "Invalid uuid returned by $LR_READER on target $tgt"
14323         echo -e "uuid returned by $LR_READER is '$uuid'\n"
14324
14325         # check lr_reader -c on MDT0000
14326         tgt=mds1
14327         dev=$(facet_device $tgt)
14328         if ! do_facet $tgt $LR_READER -h | grep -q OPTIONS; then
14329                 echo "$LR_READER does not support additional options"
14330                 return 0
14331         fi
14332         out=$(do_facet $tgt $LR_READER -c $dev)
14333         [ $? -eq 0 ] || error "$LR_READER failed on target $tgt device $dev"
14334         echo "$out"
14335         num=$(echo "$out" | grep -c "mdtlov")
14336         [ "$num" -eq $((MDSCOUNT - 1)) ] ||
14337                 error "Invalid number of mdtlov clients returned by $LR_READER"
14338         echo -e "Number of mdtlov clients returned by $LR_READER is '$num'\n"
14339
14340         # check lr_reader -cr on MDT0000
14341         out=$(do_facet $tgt $LR_READER -cr $dev)
14342         [ $? -eq 0 ] || error "$LR_READER failed on target $tgt device $dev"
14343         echo "$out"
14344         echo "$out" | grep -q "^reply_data:$" ||
14345                 error "$LR_READER should have returned 'reply_data' section"
14346         num=$(echo "$out" | grep -c "client_generation")
14347         echo -e "Number of reply data returned by $LR_READER is '$num'\n"
14348 }
14349 run_test 252 "check lr_reader tool"
14350
14351 test_253_fill_ost() {
14352         local size_mb #how many MB should we write to pass watermark
14353         local lwm=$3  #low watermark
14354         local free_10mb #10% of free space
14355
14356         free_kb=$($LFS df $MOUNT | grep $1 | awk '{ print $4 }')
14357         size_mb=$((free_kb / 1024 - lwm))
14358         free_10mb=$((free_kb / 10240))
14359         #If 10% of free space cross low watermark use it
14360         if (( free_10mb > size_mb )); then
14361                 size_mb=$free_10mb
14362         else
14363                 #At least we need to store 1.1 of difference between
14364                 #free space and low watermark
14365                 size_mb=$((size_mb + size_mb / 10))
14366         fi
14367         if (( lwm <= $((free_kb / 1024)) )) || [ ! -f $DIR/$tdir/1 ]; then
14368                 dd if=/dev/zero of=$DIR/$tdir/1 bs=1M count=$size_mb \
14369                          oflag=append conv=notrunc
14370         fi
14371
14372         sleep_maxage
14373
14374         free_kb=$($LFS df $MOUNT | grep $1 | awk '{ print $4 }')
14375         echo "OST still has $((free_kb / 1024)) mbytes free"
14376 }
14377
14378 test_253() {
14379         local ostidx=0
14380         local rc=0
14381
14382         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14383         remote_mds_nodsh && skip "remote MDS with nodsh" && return
14384         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
14385
14386         local ost_name=$($LFS osts |
14387                 sed -n 's/^'$ostidx': \(.*\)_UUID .*/\1/p')
14388         # on the mdt's osc
14389         local mdtosc_proc1=$(get_mdtosc_proc_path $SINGLEMDS $ost_name)
14390         do_facet $SINGLEMDS $LCTL get_param -n \
14391                 osp.$mdtosc_proc1.reserved_mb_high ||
14392                 { skip  "remote MDS does not support reserved_mb_high" &&
14393                   return; }
14394
14395         rm -rf $DIR/$tdir
14396         wait_mds_ost_sync
14397         wait_delete_completed
14398         mkdir $DIR/$tdir
14399
14400         local last_wm_h=$(do_facet $SINGLEMDS $LCTL get_param -n \
14401                         osp.$mdtosc_proc1.reserved_mb_high)
14402         local last_wm_l=$(do_facet $SINGLEMDS $LCTL get_param -n \
14403                         osp.$mdtosc_proc1.reserved_mb_low)
14404         echo "prev high watermark $last_wm_h, prev low watermark $last_wm_l"
14405
14406         create_pool $FSNAME.$TESTNAME || error "Pool creation failed"
14407         do_facet mgs $LCTL pool_add $FSNAME.$TESTNAME $ost_name ||
14408                 error "Adding $ost_name to pool failed"
14409
14410         # Wait for client to see a OST at pool
14411         wait_update $HOSTNAME "$LCTL get_param -n
14412                 lov.$FSNAME-*.pools.$TESTNAME | sort -u |
14413                 grep $ost_name" "$ost_name""_UUID" $((TIMEOUT/2)) ||
14414                 error "Client can not see the pool"
14415         $SETSTRIPE $DIR/$tdir -i $ostidx -c 1 -p $FSNAME.$TESTNAME ||
14416                 error "Setstripe failed"
14417
14418         dd if=/dev/zero of=$DIR/$tdir/0 bs=1M count=10
14419         local blocks=$($LFS df $MOUNT | grep $ost_name | awk '{ print $4 }')
14420         echo "OST still has $((blocks/1024)) mbytes free"
14421
14422         local new_lwm=$((blocks/1024-10))
14423         do_facet $SINGLEMDS $LCTL set_param \
14424                         osp.$mdtosc_proc1.reserved_mb_high=$((new_lwm+5))
14425         do_facet $SINGLEMDS $LCTL set_param \
14426                         osp.$mdtosc_proc1.reserved_mb_low=$new_lwm
14427
14428         test_253_fill_ost $ost_name $mdtosc_proc1 $new_lwm
14429
14430         #First enospc could execute orphan deletion so repeat.
14431         test_253_fill_ost $ost_name $mdtosc_proc1 $new_lwm
14432
14433         local oa_status=$(do_facet $SINGLEMDS $LCTL get_param -n \
14434                         osp.$mdtosc_proc1.prealloc_status)
14435         echo "prealloc_status $oa_status"
14436
14437         dd if=/dev/zero of=$DIR/$tdir/2 bs=1M count=1 &&
14438                 error "File creation should fail"
14439         #object allocation was stopped, but we still able to append files
14440         dd if=/dev/zero of=$DIR/$tdir/1 bs=1M seek=6 count=5 oflag=append ||
14441                 error "Append failed"
14442         rm -f $DIR/$tdir/1 $DIR/$tdir/0 $DIR/$tdir/r*
14443
14444         wait_delete_completed
14445
14446         sleep_maxage
14447
14448         for i in $(seq 10 12); do
14449                 dd if=/dev/zero of=$DIR/$tdir/$i bs=1M count=1 2>/dev/null ||
14450                         error "File creation failed after rm";
14451         done
14452
14453         oa_status=$(do_facet $SINGLEMDS $LCTL get_param -n \
14454                         osp.$mdtosc_proc1.prealloc_status)
14455         echo "prealloc_status $oa_status"
14456
14457         if (( oa_status != 0 )); then
14458                 error "Object allocation still disable after rm"
14459         fi
14460         do_facet $SINGLEMDS $LCTL set_param \
14461                         osp.$mdtosc_proc1.reserved_mb_high=$last_wm_h
14462         do_facet $SINGLEMDS $LCTL set_param \
14463                         osp.$mdtosc_proc1.reserved_mb_low=$last_wm_l
14464
14465
14466         do_facet mgs $LCTL pool_remove $FSNAME.$TESTNAME $ost_name ||
14467                 error "Remove $ost_name from pool failed"
14468         do_facet mgs $LCTL pool_destroy $FSNAME.$TESTNAME ||
14469                 error "Pool destroy fialed"
14470 }
14471 run_test 253 "Check object allocation limit"
14472
14473 test_254() {
14474         local cl_user
14475
14476         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14477         remote_mds_nodsh && skip "remote MDS with nodsh" && return
14478         do_facet mds1 $LCTL get_param -n mdd.$MDT0.changelog_size ||
14479                 { skip "MDS does not support changelog_size" && return; }
14480
14481         cl_user=$(do_facet mds1 $LCTL --device $MDT0 changelog_register -n)
14482         echo "Registered as changelog user $cl_user"
14483
14484         $LFS changelog_clear $MDT0 $cl_user 0
14485
14486         local size1=$(do_facet mds1 \
14487                       $LCTL get_param -n mdd.$MDT0.changelog_size)
14488         echo "Changelog size $size1"
14489
14490         rm -rf $DIR/$tdir
14491         $LFS mkdir -i 0 $DIR/$tdir
14492         # change something
14493         mkdir -p $DIR/$tdir/pics/2008/zachy
14494         touch $DIR/$tdir/pics/2008/zachy/timestamp
14495         cp /etc/hosts $DIR/$tdir/pics/2008/zachy/pic1.jpg
14496         mv $DIR/$tdir/pics/2008/zachy $DIR/$tdir/pics/zach
14497         ln $DIR/$tdir/pics/zach/pic1.jpg $DIR/$tdir/pics/2008/portland.jpg
14498         ln -s $DIR/$tdir/pics/2008/portland.jpg $DIR/$tdir/pics/desktop.jpg
14499         rm $DIR/$tdir/pics/desktop.jpg
14500
14501         local size2=$(do_facet mds1 \
14502                       $LCTL get_param -n mdd.$MDT0.changelog_size)
14503         echo "Changelog size after work $size2"
14504
14505         do_facet mds1 $LCTL --device $MDT0 changelog_deregister $cl_user
14506
14507         if (( size2 <= size1 )); then
14508                 error "Changelog size after work should be greater than original"
14509         fi
14510         return 0
14511 }
14512 run_test 254 "Check changelog size"
14513
14514 ladvise_no_type()
14515 {
14516         local type=$1
14517         local file=$2
14518
14519         lfs ladvise -a invalid $file 2>&1 | grep "Valid types" |
14520                 awk -F: '{print $2}' | grep $type > /dev/null
14521         if [ $? -ne 0 ]; then
14522                 return 0
14523         fi
14524         return 1
14525 }
14526
14527 ladvise_no_ioctl()
14528 {
14529         local file=$1
14530
14531         lfs ladvise -a willread $file > /dev/null 2>&1
14532         if [ $? -eq 0 ]; then
14533                 return 1
14534         fi
14535
14536         lfs ladvise -a willread $file 2>&1 |
14537                 grep "Inappropriate ioctl for device" > /dev/null
14538         if [ $? -eq 0 ]; then
14539                 return 0
14540         fi
14541         return 1
14542 }
14543
14544 percent() {
14545         bc <<<"scale=2; ($1 - $2) * 100 / $2"
14546 }
14547
14548 # run a random read IO workload
14549 # usage: random_read_iops <filename> <filesize> <iosize>
14550 random_read_iops() {
14551         local file=$1
14552         local fsize=$2
14553         local iosize=${3:-4096}
14554
14555         $READS -f $file -s $fsize -b $iosize -n $((fsize / iosize)) -t 60 |
14556                 sed -e '/^$/d' -e 's#.*s, ##' -e 's#MB/s##'
14557 }
14558
14559 drop_file_oss_cache() {
14560         local file="$1"
14561         local nodes="$2"
14562
14563         $LFS ladvise -a dontneed $file 2>/dev/null ||
14564                 do_nodes $nodes "echo 3 > /proc/sys/vm/drop_caches"
14565 }
14566
14567 ladvise_willread_performance()
14568 {
14569         local repeat=10
14570         local average_origin=0
14571         local average_cache=0
14572         local average_ladvise=0
14573
14574         for ((i = 1; i <= $repeat; i++)); do
14575                 echo "Iter $i/$repeat: reading without willread hint"
14576                 cancel_lru_locks osc
14577                 drop_file_oss_cache $DIR/$tfile $(comma_list $(osts_nodes))
14578                 local speed_origin=$(random_read_iops $DIR/$tfile $size)
14579                 echo "Iter $i/$repeat: uncached speed: $speed_origin"
14580                 average_origin=$(bc <<<"$average_origin + $speed_origin")
14581
14582                 cancel_lru_locks osc
14583                 local speed_cache=$(random_read_iops $DIR/$tfile $size)
14584                 echo "Iter $i/$repeat: OSS cache speed: $speed_cache"
14585                 average_cache=$(bc <<<"$average_cache + $speed_cache")
14586
14587                 cancel_lru_locks osc
14588                 drop_file_oss_cache $DIR/$tfile $(comma_list $(osts_nodes))
14589                 $LFS ladvise -a willread $DIR/$tfile || error "ladvise failed"
14590                 local speed_ladvise=$(random_read_iops $DIR/$tfile $size)
14591                 echo "Iter $i/$repeat: ladvise speed: $speed_ladvise"
14592                 average_ladvise=$(bc <<<"$average_ladvise + $speed_ladvise")
14593         done
14594         average_origin=$(bc <<<"scale=2; $average_origin / $repeat")
14595         average_cache=$(bc <<<"scale=2; $average_cache / $repeat")
14596         average_ladvise=$(bc <<<"scale=2; $average_ladvise / $repeat")
14597
14598         speedup_cache=$(percent $average_cache $average_origin)
14599         speedup_ladvise=$(percent $average_ladvise $average_origin)
14600
14601         echo "Average uncached read: $average_origin"
14602         echo "Average speedup with OSS cached read: " \
14603                 "$average_cache = +$speedup_cache%"
14604         echo "Average speedup with ladvise willread: " \
14605                 "$average_ladvise = +$speedup_ladvise%"
14606
14607         local lowest_speedup=20
14608         if [ ${average_cache%.*} -lt $lowest_speedup ]; then
14609                 echo "Speedup with OSS cached read less than $lowest_speedup%, "
14610                         "got $average_cache%. Skipping ladvise willread check."
14611                 return 0
14612         fi
14613
14614         # the test won't work on ZFS until it supports 'ladvise dontneed', but
14615         # it is still good to run until then to exercise 'ladvise willread'
14616         ! $LFS ladvise -a dontneed $DIR/$tfile &&
14617                 [ "$(facet_fstype ost1)" = "zfs" ] &&
14618                 echo "osd-zfs does not support dontneed or drop_caches" &&
14619                 return 0
14620
14621         lowest_speedup=$(bc <<<"scale=2; $average_cache / 2")
14622         [ ${average_ladvise%.*} -gt $lowest_speedup ] ||
14623                 error_not_in_vm "Speedup with willread is less than " \
14624                         "$lowest_speedup%, got $average_ladvise%"
14625 }
14626
14627 test_255a() {
14628         [ $(lustre_version_code ost1) -lt $(version_code 2.8.54) ] &&
14629                 skip "lustre < 2.8.54 does not support ladvise " && return
14630         remote_ost_nodsh && skip "remote OST with nodsh" && return
14631
14632         lfs setstripe -c -1 -i 0 $DIR/$tfile || error "$tfile failed"
14633
14634         ladvise_no_type willread $DIR/$tfile &&
14635                 skip "willread ladvise is not supported" && return
14636
14637         ladvise_no_ioctl $DIR/$tfile &&
14638                 skip "ladvise ioctl is not supported" && return
14639
14640         local size_mb=100
14641         local size=$((size_mb * 1048576))
14642         dd if=/dev/zero of=$DIR/$tfile bs=1048576 count=$size_mb ||
14643                 error "dd to $DIR/$tfile failed"
14644
14645         lfs ladvise -a willread $DIR/$tfile ||
14646                 error "Ladvise failed with no range argument"
14647
14648         lfs ladvise -a willread -s 0 $DIR/$tfile ||
14649                 error "Ladvise failed with no -l or -e argument"
14650
14651         lfs ladvise -a willread -e 1 $DIR/$tfile ||
14652                 error "Ladvise failed with only -e argument"
14653
14654         lfs ladvise -a willread -l 1 $DIR/$tfile ||
14655                 error "Ladvise failed with only -l argument"
14656
14657         lfs ladvise -a willread -s 2 -e 1 $DIR/$tfile &&
14658                 error "End offset should not be smaller than start offset"
14659
14660         lfs ladvise -a willread -s 2 -e 2 $DIR/$tfile &&
14661                 error "End offset should not be equal to start offset"
14662
14663         lfs ladvise -a willread -s $size -l 1 $DIR/$tfile ||
14664                 error "Ladvise failed with overflowing -s argument"
14665
14666         lfs ladvise -a willread -s 1 -e $((size + 1)) $DIR/$tfile ||
14667                 error "Ladvise failed with overflowing -e argument"
14668
14669         lfs ladvise -a willread -s 1 -l $size $DIR/$tfile ||
14670                 error "Ladvise failed with overflowing -l argument"
14671
14672         lfs ladvise -a willread -l 1 -e 2 $DIR/$tfile &&
14673                 error "Ladvise succeeded with conflicting -l and -e arguments"
14674
14675         echo "Synchronous ladvise should wait"
14676         local delay=4
14677 #define OBD_FAIL_OST_LADVISE_PAUSE       0x237
14678         do_nodes $(comma_list $(osts_nodes)) \
14679                 $LCTL set_param fail_val=$delay fail_loc=0x237
14680
14681         local start_ts=$SECONDS
14682         lfs ladvise -a willread $DIR/$tfile ||
14683                 error "Ladvise failed with no range argument"
14684         local end_ts=$SECONDS
14685         local inteval_ts=$((end_ts - start_ts))
14686
14687         if [ $inteval_ts -lt $(($delay - 1)) ]; then
14688                 error "Synchronous advice didn't wait reply"
14689         fi
14690
14691         echo "Asynchronous ladvise shouldn't wait"
14692         local start_ts=$SECONDS
14693         lfs ladvise -a willread -b $DIR/$tfile ||
14694                 error "Ladvise failed with no range argument"
14695         local end_ts=$SECONDS
14696         local inteval_ts=$((end_ts - start_ts))
14697
14698         if [ $inteval_ts -gt $(($delay / 2)) ]; then
14699                 error "Asynchronous advice blocked"
14700         fi
14701
14702         do_nodes $(comma_list $(osts_nodes)) $LCTL set_param fail_loc=0
14703         ladvise_willread_performance
14704 }
14705 run_test 255a "check 'lfs ladvise -a willread'"
14706
14707 facet_meminfo() {
14708         local facet=$1
14709         local info=$2
14710
14711         do_facet $facet "cat /proc/meminfo | grep ^${info}:" | awk '{print $2}'
14712 }
14713
14714 test_255b() {
14715         remote_ost_nodsh && skip "remote OST with nodsh" && return
14716
14717         lfs setstripe -c 1 -i 0 $DIR/$tfile
14718
14719         ladvise_no_type dontneed $DIR/$tfile &&
14720                 skip "dontneed ladvise is not supported" && return
14721
14722         ladvise_no_ioctl $DIR/$tfile &&
14723                 skip "ladvise ioctl is not supported" && return
14724
14725         [ $(lustre_version_code ost1) -lt $(version_code 2.8.54) ] &&
14726                 skip "lustre < 2.8.54 does not support ladvise" && return
14727
14728         ! $LFS ladvise -a dontneed $DIR/$tfile &&
14729                 [ "$(facet_fstype ost1)" = "zfs" ] &&
14730                 skip "zfs-osd does not support 'ladvise dontneed'" && return
14731
14732         local size_mb=100
14733         local size=$((size_mb * 1048576))
14734         # In order to prevent disturbance of other processes, only check 3/4
14735         # of the memory usage
14736         local kibibytes=$((size_mb * 1024 * 3 / 4))
14737
14738         dd if=/dev/zero of=$DIR/$tfile bs=1048576 count=$size_mb ||
14739                 error "dd to $DIR/$tfile failed"
14740
14741         local total=$(facet_meminfo ost1 MemTotal)
14742         echo "Total memory: $total KiB"
14743
14744         do_facet ost1 "sync && echo 3 > /proc/sys/vm/drop_caches"
14745         local before_read=$(facet_meminfo ost1 Cached)
14746         echo "Cache used before read: $before_read KiB"
14747
14748         lfs ladvise -a willread $DIR/$tfile ||
14749                 error "Ladvise willread failed"
14750         local after_read=$(facet_meminfo ost1 Cached)
14751         echo "Cache used after read: $after_read KiB"
14752
14753         lfs ladvise -a dontneed $DIR/$tfile ||
14754                 error "Ladvise dontneed again failed"
14755         local no_read=$(facet_meminfo ost1 Cached)
14756         echo "Cache used after dontneed ladvise: $no_read KiB"
14757
14758         if [ $total -lt $((before_read + kibibytes)) ]; then
14759                 echo "Memory is too small, abort checking"
14760                 return 0
14761         fi
14762
14763         if [ $((before_read + kibibytes)) -gt $after_read ]; then
14764                 error "Ladvise willread should use more memory" \
14765                         "than $kibibytes KiB"
14766         fi
14767
14768         if [ $((no_read + kibibytes)) -gt $after_read ]; then
14769                 error "Ladvise dontneed should release more memory" \
14770                         "than $kibibytes KiB"
14771         fi
14772 }
14773 run_test 255b "check 'lfs ladvise -a dontneed'"
14774
14775 test_255c() {
14776         local count
14777         local new_count
14778         local difference
14779         local i
14780         local rc
14781         test_mkdir -p $DIR/$tdir
14782         $SETSTRIPE -i 0 $DIR/$tdir
14783
14784         #test 10 returns only success/failure
14785         i=10
14786         lockahead_test -d $DIR/$tdir -t $i
14787         rc=$?
14788         if [ $rc -eq 255 ]; then
14789                 error "Ladvise test${i} failed, ${rc}"
14790         fi
14791
14792         #test 11 counts lock enqueue requests, all others count new locks
14793         i=11
14794         count=$(do_facet ost1 \
14795                 $LCTL get_param -n ost.OSS.ost.stats)
14796         count=$(echo "$count" | grep ldlm_extent_enqueue | awk '{ print $2 }')
14797
14798         lockahead_test -d $DIR/$tdir -t $i
14799         rc=$?
14800         if [ $rc -eq 255 ]; then
14801                 error "Ladvise test${i} failed, ${rc}"
14802         fi
14803
14804         new_count=$(do_facet ost1 \
14805                 $LCTL get_param -n ost.OSS.ost.stats)
14806         new_count=$(echo "$new_count" | grep ldlm_extent_enqueue | \
14807                    awk '{ print $2 }')
14808
14809         difference="$((new_count - count))"
14810         if [ $difference -ne $rc ]; then
14811                 error "Ladvise test${i}, bad enqueue count, returned " \
14812                       "${rc}, actual ${difference}"
14813         fi
14814
14815         for i in $(seq 12 21); do
14816                 # If we do not do this, we run the risk of having too many
14817                 # locks and starting lock cancellation while we are checking
14818                 # lock counts.
14819                 cancel_lru_locks osc
14820
14821                 count=$($LCTL get_param -n \
14822                        ldlm.namespaces.$FSNAME-OST0000*osc-f*.lock_unused_count)
14823
14824                 lockahead_test -d $DIR/$tdir -t $i
14825                 rc=$?
14826                 if [ $rc -eq 255 ]; then
14827                         error "Ladvise test ${i} failed, ${rc}"
14828                 fi
14829
14830                 new_count=$($LCTL get_param -n \
14831                        ldlm.namespaces.$FSNAME-OST0000*osc-f*.lock_unused_count)
14832                 difference="$((new_count - count))"
14833
14834                 # Test 15 output is divided by 1000 to map down to valid return
14835                 if [ $i -eq 15 ]; then
14836                         rc="$((rc * 1000))"
14837                 fi
14838
14839                 if [ $difference -ne $rc ]; then
14840                         error "Ladvise test ${i}, bad lock count, returned " \
14841                               "${rc}, actual ${difference}"
14842                 fi
14843         done
14844
14845         #test 22 returns only success/failure
14846         i=22
14847         lockahead_test -d $DIR/$tdir -t $i
14848         rc=$?
14849         if [ $rc -eq 255 ]; then
14850                 error "Ladvise test${i} failed, ${rc}"
14851         fi
14852
14853 }
14854 run_test 255c "suite of ladvise lockahead tests"
14855
14856 test_256() {
14857         local cl_user
14858         local cat_sl
14859         local mdt_dev
14860
14861         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14862         remote_mds_nodsh && skip "remote MDS with nodsh" && return
14863         [ "$(facet_fstype mds1)" != "ldiskfs" ] &&
14864                 skip "ldiskfs only test" && return
14865
14866         mdt_dev=$(mdsdevname 1)
14867         echo $mdt_dev
14868         cl_user=$(do_facet mds1 \
14869         "$LCTL get_param -n mdd.$MDT0.changelog_users | grep cl")
14870         if [[ -n $cl_user ]]; then
14871                 skip "active changelog user"
14872                 return
14873         fi
14874
14875         cl_user=$(do_facet mds1 $LCTL --device $MDT0 changelog_register -n)
14876         echo "Registered as changelog user $cl_user"
14877
14878         rm -rf $DIR/$tdir
14879         mkdir -p $DIR/$tdir
14880
14881         $LFS changelog_clear $MDT0 $cl_user 0
14882
14883         # change something
14884         touch $DIR/$tdir/{1..10}
14885
14886         # stop the MDT
14887         stop mds1 || error "Fail to stop MDT."
14888
14889         # remount the MDT
14890         start mds1 $mdt_dev $MDS_MOUNT_OPTS || error "Fail to start MDT."
14891
14892         #after mount new plainllog is used
14893         touch $DIR/$tdir/{11..19}
14894         do_facet mds1 sync
14895         local TEMP256FILE=$(mktemp -u TEMP256XXXXXX)
14896         cat_sl=$(do_facet mds1 \
14897         "$DEBUGFS -R \\\"dump changelog_catalog $TEMP256FILE\\\" $mdt_dev; \
14898          llog_reader $TEMP256FILE | grep \\\"type=1064553b\\\" | wc -l")
14899         do_facet mds1 rm $TEMP256FILE
14900
14901         if (( cat_sl != 2 )); then
14902                 do_facet mds1 $LCTL --device $MDT0 changelog_deregister $cl_user
14903                 error "Changelog catalog has wrong number of slots $cat_sl"
14904         fi
14905
14906         $LFS changelog_clear $MDT0 $cl_user 0
14907
14908         do_facet mds1 sync
14909         TEMP256FILE=$(mktemp -u TEMP256XXXXXX)
14910         cat_sl=$(do_facet mds1 \
14911         "$DEBUGFS -R \\\"dump changelog_catalog $TEMP256FILE\\\" $mdt_dev; \
14912          llog_reader $TEMP256FILE | grep \\\"type=1064553b\\\" | wc -l")
14913         do_facet mds1 rm $TEMP256FILE
14914
14915         do_facet mds1 $LCTL --device $MDT0 changelog_deregister $cl_user
14916
14917         if (( cat_sl == 2 )); then
14918                 error "Empty plain llog was not deleted from changelog catalog"
14919         fi
14920         if (( cat_sl != 1 )); then
14921                 error "Active plain llog shouldn\`t be deleted from catalog"
14922         fi
14923 }
14924 run_test 256 "Check llog delete for empty and not full state"
14925
14926 test_257() {
14927         remote_mds_nodsh && skip "remote MDS with nodsh" && return
14928         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.55) ]] &&
14929                 skip "Need MDS version at least 2.8.55" && return
14930
14931         test_mkdir $DIR/$tdir
14932
14933         setfattr -n trusted.name1 -v value1 $DIR/$tdir ||
14934                 error "setfattr -n trusted.name1=value1 $DIR/$tdir failed"
14935         stat $DIR/$tdir
14936
14937 #define OBD_FAIL_MDS_XATTR_REP                  0x161
14938         local mdtidx=$($LFS getstripe -M $DIR/$tdir)
14939         local facet=mds$((mdtidx + 1))
14940         set_nodes_failloc $(facet_active_host $facet) 0x80000161
14941         getfattr -n trusted.name1 $DIR/$tdir 2> /dev/null
14942
14943         stop $facet || error "stop MDS failed"
14944         start $facet $(mdsdevname $((mdtidx + 1))) $MDS_MOUNT_OPTS ||
14945                 error "start MDS fail"
14946 }
14947 run_test 257 "xattr locks are not lost"
14948
14949 # Verify we take the i_mutex when security requires it
14950 test_258a() {
14951 #define OBD_FAIL_IMUTEX_SEC 0x141c
14952         $LCTL set_param fail_loc=0x141c
14953         touch $DIR/$tfile
14954         chmod u+s $DIR/$tfile
14955         chmod a+rwx $DIR/$tfile
14956         $RUNAS dd if=/dev/zero of=$DIR/$tfile bs=4k count=1 oflag=append
14957         RC=$?
14958         if [ $RC -ne 0 ]; then
14959                 error "error, failed to take i_mutex, rc=$?"
14960         fi
14961         rm -f $DIR/$tfile
14962 }
14963 run_test 258a
14964
14965 # Verify we do NOT take the i_mutex in the normal case
14966 test_258b() {
14967 #define OBD_FAIL_IMUTEX_NOSEC 0x141d
14968         $LCTL set_param fail_loc=0x141d
14969         touch $DIR/$tfile
14970         chmod a+rwx $DIR
14971         chmod a+rw $DIR/$tfile
14972         $RUNAS dd if=/dev/zero of=$DIR/$tfile bs=4k count=1 oflag=append
14973         RC=$?
14974         if [ $RC -ne 0 ]; then
14975                 error "error, took i_mutex unnecessarily, rc=$?"
14976         fi
14977         rm -f $DIR/$tfile
14978
14979 }
14980 run_test 258b "verify i_mutex security behavior"
14981
14982 test_260() {
14983 #define OBD_FAIL_MDC_CLOSE               0x806
14984         $LCTL set_param fail_loc=0x80000806
14985         touch $DIR/$tfile
14986
14987 }
14988 run_test 260 "Check mdc_close fail"
14989
14990 cleanup_test_300() {
14991         trap 0
14992         umask $SAVE_UMASK
14993 }
14994 test_striped_dir() {
14995         local mdt_index=$1
14996         local stripe_count
14997         local stripe_index
14998
14999         mkdir -p $DIR/$tdir
15000
15001         SAVE_UMASK=$(umask)
15002         trap cleanup_test_300 RETURN EXIT
15003
15004         $LFS setdirstripe -i $mdt_index -c 2 -t all_char -m 755 \
15005                                                 $DIR/$tdir/striped_dir ||
15006                 error "set striped dir error"
15007
15008         local mode=$(stat -c%a $DIR/$tdir/striped_dir)
15009         [ "$mode" = "755" ] || error "expect 755 got $mode"
15010
15011         $LFS getdirstripe $DIR/$tdir/striped_dir > /dev/null 2>&1 ||
15012                 error "getdirstripe failed"
15013         stripe_count=$($LFS getdirstripe -c $DIR/$tdir/striped_dir)
15014         if [ "$stripe_count" != "2" ]; then
15015                 error "1:stripe_count is $stripe_count, expect 2"
15016         fi
15017         stripe_count=$($LFS getdirstripe -T $DIR/$tdir/striped_dir)
15018         if [ "$stripe_count" != "2" ]; then
15019                 error "2:stripe_count is $stripe_count, expect 2"
15020         fi
15021
15022         stripe_index=$($LFS getdirstripe -i $DIR/$tdir/striped_dir)
15023         if [ "$stripe_index" != "$mdt_index" ]; then
15024                 error "stripe_index is $stripe_index, expect $mdt_index"
15025         fi
15026
15027         [ $(stat -c%h $DIR/$tdir/striped_dir) == '2' ] ||
15028                 error "nlink error after create striped dir"
15029
15030         mkdir $DIR/$tdir/striped_dir/a
15031         mkdir $DIR/$tdir/striped_dir/b
15032
15033         stat $DIR/$tdir/striped_dir/a ||
15034                 error "create dir under striped dir failed"
15035         stat $DIR/$tdir/striped_dir/b ||
15036                 error "create dir under striped dir failed"
15037
15038         [ $(stat -c%h $DIR/$tdir/striped_dir) == '4' ] ||
15039                 error "nlink error after mkdir"
15040
15041         rmdir $DIR/$tdir/striped_dir/a
15042         [ $(stat -c%h $DIR/$tdir/striped_dir) == '3' ] ||
15043                 error "nlink error after rmdir"
15044
15045         rmdir $DIR/$tdir/striped_dir/b
15046         [ $(stat -c%h $DIR/$tdir/striped_dir) == '2' ] ||
15047                 error "nlink error after rmdir"
15048
15049         chattr +i $DIR/$tdir/striped_dir
15050         createmany -o $DIR/$tdir/striped_dir/f 10 &&
15051                 error "immutable flags not working under striped dir!"
15052         chattr -i $DIR/$tdir/striped_dir
15053
15054         rmdir $DIR/$tdir/striped_dir ||
15055                 error "rmdir striped dir error"
15056
15057         cleanup_test_300
15058
15059         true
15060 }
15061
15062 test_300a() {
15063         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.0) ] &&
15064                 skip "skipped for lustre < 2.7.0" && return
15065         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15066         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15067
15068         test_striped_dir 0 || error "failed on striped dir on MDT0"
15069         test_striped_dir 1 || error "failed on striped dir on MDT0"
15070 }
15071 run_test 300a "basic striped dir sanity test"
15072
15073 test_300b() {
15074         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.0) ] &&
15075                 skip "skipped for lustre < 2.7.0" && return
15076         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15077         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15078         local i
15079         local mtime1
15080         local mtime2
15081         local mtime3
15082
15083         test_mkdir $DIR/$tdir
15084         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir ||
15085                 error "set striped dir error"
15086         for ((i=0; i<10; i++)); do
15087                 mtime1=$(stat -c %Y $DIR/$tdir/striped_dir)
15088                 sleep 1
15089                 touch $DIR/$tdir/striped_dir/file_$i ||
15090                                         error "touch error $i"
15091                 mtime2=$(stat -c %Y $DIR/$tdir/striped_dir)
15092                 [ $mtime1 -eq $mtime2 ] &&
15093                         error "mtime not change after create"
15094                 sleep 1
15095                 rm -f $DIR/$tdir/striped_dir/file_$i ||
15096                                         error "unlink error $i"
15097                 mtime3=$(stat -c %Y $DIR/$tdir/striped_dir)
15098                 [ $mtime2 -eq $mtime3 ] &&
15099                         error "mtime did not change after unlink"
15100         done
15101         true
15102 }
15103 run_test 300b "check ctime/mtime for striped dir"
15104
15105 test_300c() {
15106         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.0) ] &&
15107                 skip "skipped for lustre < 2.7.0" && return
15108         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15109         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15110         local file_count
15111
15112         mkdir -p $DIR/$tdir
15113         $LFS setdirstripe -i 0 -c 2 $DIR/$tdir/striped_dir ||
15114                 error "set striped dir error"
15115
15116         chown $RUNAS_ID:$RUNAS_GID $DIR/$tdir/striped_dir ||
15117                 error "chown striped dir failed"
15118
15119         $RUNAS createmany -o $DIR/$tdir/striped_dir/f 5000 ||
15120                 error "create 5k files failed"
15121
15122         file_count=$(ls $DIR/$tdir/striped_dir | wc -l)
15123
15124         [ "$file_count" = 5000 ] || error "file count $file_count != 5000"
15125
15126         rm -rf $DIR/$tdir
15127 }
15128 run_test 300c "chown && check ls under striped directory"
15129
15130 test_300d() {
15131         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.0) ] &&
15132                 skip "skipped for lustre < 2.7.0" && return
15133         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15134         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15135         local stripe_count
15136         local file
15137
15138         mkdir -p $DIR/$tdir
15139         $SETSTRIPE -c 2 $DIR/$tdir
15140
15141         #local striped directory
15142         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir ||
15143                 error "set striped dir error"
15144         createmany -o $DIR/$tdir/striped_dir/f 10 ||
15145                 error "create 10 files failed"
15146
15147         #remote striped directory
15148         $LFS setdirstripe -i 1 -c 2 $DIR/$tdir/remote_striped_dir ||
15149                 error "set striped dir error"
15150         createmany -o $DIR/$tdir/remote_striped_dir/f 10 ||
15151                 error "create 10 files failed"
15152
15153         for file in $(find $DIR/$tdir); do
15154                 stripe_count=$($GETSTRIPE -c $file)
15155                 [ $stripe_count -eq 2 ] ||
15156                         error "wrong stripe $stripe_count for $file"
15157         done
15158
15159         rm -rf $DIR/$tdir
15160 }
15161 run_test 300d "check default stripe under striped directory"
15162
15163 test_300e() {
15164         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
15165                 skip "Need MDS version at least 2.7.55" && return
15166         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15167         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15168         local stripe_count
15169         local file
15170
15171         mkdir -p $DIR/$tdir
15172
15173         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir ||
15174                 error "set striped dir error"
15175
15176         touch $DIR/$tdir/striped_dir/a
15177         touch $DIR/$tdir/striped_dir/b
15178         touch $DIR/$tdir/striped_dir/c
15179
15180         mkdir $DIR/$tdir/striped_dir/dir_a
15181         mkdir $DIR/$tdir/striped_dir/dir_b
15182         mkdir $DIR/$tdir/striped_dir/dir_c
15183
15184         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir/stp_a ||
15185                 error "set striped adir under striped dir error"
15186
15187         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir/stp_b ||
15188                 error "set striped bdir under striped dir error"
15189
15190         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir/stp_c ||
15191                 error "set striped cdir under striped dir error"
15192
15193         mrename $DIR/$tdir/striped_dir/dir_a $DIR/$tdir/striped_dir/dir_b ||
15194                 error "rename dir under striped dir fails"
15195
15196         mrename $DIR/$tdir/striped_dir/stp_a $DIR/$tdir/striped_dir/stp_b ||
15197                 error "rename dir under different stripes fails"
15198
15199         mrename $DIR/$tdir/striped_dir/a $DIR/$tdir/striped_dir/c ||
15200                 error "rename file under striped dir should succeed"
15201
15202         mrename $DIR/$tdir/striped_dir/dir_b $DIR/$tdir/striped_dir/dir_c ||
15203                 error "rename dir under striped dir should succeed"
15204
15205         rm -rf $DIR/$tdir
15206 }
15207 run_test 300e "check rename under striped directory"
15208
15209 test_300f() {
15210         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
15211                 skip "Need MDS version at least 2.7.55" && return
15212         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15213         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15214         local stripe_count
15215         local file
15216
15217         rm -rf $DIR/$tdir
15218         mkdir -p $DIR/$tdir
15219
15220         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir ||
15221                 error "set striped dir error"
15222
15223         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir1 ||
15224                 error "set striped dir error"
15225
15226         touch $DIR/$tdir/striped_dir/a
15227         mkdir $DIR/$tdir/striped_dir/dir_a
15228         $LFS setdirstripe -i 0 -c 2 $DIR/$tdir/striped_dir/stp_a ||
15229                 error "create striped dir under striped dir fails"
15230
15231         touch $DIR/$tdir/striped_dir1/b
15232         mkdir $DIR/$tdir/striped_dir1/dir_b
15233         $LFS setdirstripe -i 0 -c 2 $DIR/$tdir/striped_dir/stp_b ||
15234                 error "create striped dir under striped dir fails"
15235
15236         mrename $DIR/$tdir/striped_dir/dir_a $DIR/$tdir/striped_dir1/dir_b ||
15237                 error "rename dir under different striped dir should fail"
15238
15239         mrename $DIR/$tdir/striped_dir/stp_a $DIR/$tdir/striped_dir1/stp_b ||
15240                 error "rename striped dir under diff striped dir should fail"
15241
15242         mrename $DIR/$tdir/striped_dir/a $DIR/$tdir/striped_dir1/a ||
15243                 error "rename file under diff striped dirs fails"
15244
15245         rm -rf $DIR/$tdir
15246 }
15247 run_test 300f "check rename cross striped directory"
15248
15249 test_300_check_default_striped_dir()
15250 {
15251         local dirname=$1
15252         local default_count=$2
15253         local default_index=$3
15254         local stripe_count
15255         local stripe_index
15256         local dir_stripe_index
15257         local dir
15258
15259         echo "checking $dirname $default_count $default_index"
15260         $LFS setdirstripe -D -c $default_count -i $default_index \
15261                                 -t all_char $DIR/$tdir/$dirname ||
15262                 error "set default stripe on striped dir error"
15263         stripe_count=$($LFS getdirstripe -D -c $DIR/$tdir/$dirname)
15264         [ $stripe_count -eq $default_count ] ||
15265                 error "expect $default_count get $stripe_count for $dirname"
15266
15267         stripe_index=$($LFS getdirstripe -D -i $DIR/$tdir/$dirname)
15268         [ $stripe_index -eq $default_index ] ||
15269                 error "expect $default_index get $stripe_index for $dirname"
15270
15271         mkdir $DIR/$tdir/$dirname/{test1,test2,test3,test4} ||
15272                                                 error "create dirs failed"
15273
15274         createmany -o $DIR/$tdir/$dirname/f- 10 || error "create files failed"
15275         unlinkmany $DIR/$tdir/$dirname/f- 10    || error "unlink files failed"
15276         for dir in $(find $DIR/$tdir/$dirname/*); do
15277                 stripe_count=$($LFS getdirstripe -c $dir)
15278                 [ $stripe_count -eq $default_count ] ||
15279                 [ $stripe_count -eq 0 -o $default_count -eq 1 ] ||
15280                 error "stripe count $default_count != $stripe_count for $dir"
15281
15282                 stripe_index=$($LFS getdirstripe -i $dir)
15283                 [ $default_index -eq -1 -o $stripe_index -eq $default_index ] ||
15284                         error "$stripe_index != $default_index for $dir"
15285
15286                 #check default stripe
15287                 stripe_count=$($LFS getdirstripe -D -c $dir)
15288                 [ $stripe_count -eq $default_count ] ||
15289                 error "default count $default_count != $stripe_count for $dir"
15290
15291                 stripe_index=$($LFS getdirstripe -D -i $dir)
15292                 [ $stripe_index -eq $default_index ] ||
15293                 error "default index $default_index != $stripe_index for $dir"
15294         done
15295         rmdir $DIR/$tdir/$dirname/* || error "rmdir failed"
15296 }
15297
15298 test_300g() {
15299         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
15300                 skip "Need MDS version at least 2.7.55" && return
15301         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15302         local dir
15303         local stripe_count
15304         local stripe_index
15305
15306         mkdir $DIR/$tdir
15307         mkdir $DIR/$tdir/normal_dir
15308
15309         #Checking when client cache stripe index
15310         $LFS setdirstripe -c$MDSCOUNT $DIR/$tdir/striped_dir
15311         $LFS setdirstripe -D -i1 $DIR/$tdir/striped_dir ||
15312                 error "create striped_dir failed"
15313
15314         mkdir $DIR/$tdir/striped_dir/dir1 ||
15315                 error "create dir1 fails"
15316         stripe_index=$($LFS getdirstripe -i $DIR/$tdir/striped_dir/dir1)
15317         [ $stripe_index -eq 1 ] ||
15318                 error "dir1 expect 1 got $stripe_index"
15319
15320         $LFS setdirstripe -i2 $DIR/$tdir/striped_dir/dir2 ||
15321                 error "create dir2 fails"
15322         stripe_index=$($LFS getdirstripe -i $DIR/$tdir/striped_dir/dir2)
15323         [ $stripe_index -eq 2 ] ||
15324                 error "dir2 expect 2 got $stripe_index"
15325
15326         #check default stripe count/stripe index
15327         test_300_check_default_striped_dir normal_dir $MDSCOUNT 1
15328         test_300_check_default_striped_dir normal_dir 1 0
15329         test_300_check_default_striped_dir normal_dir 2 1
15330         test_300_check_default_striped_dir normal_dir 2 -1
15331
15332         #delete default stripe information
15333         echo "delete default stripeEA"
15334         $LFS setdirstripe -d $DIR/$tdir/normal_dir ||
15335                 error "set default stripe on striped dir error"
15336
15337         mkdir -p $DIR/$tdir/normal_dir/{test1,test2,test3,test4}
15338         for dir in $(find $DIR/$tdir/normal_dir/*); do
15339                 stripe_count=$($LFS getdirstripe -c $dir)
15340                 [ $stripe_count -eq 0 ] ||
15341                         error "expect 1 get $stripe_count for $dir"
15342                 stripe_index=$($LFS getdirstripe -i $dir)
15343                 [ $stripe_index -eq 0 ] ||
15344                         error "expect 0 get $stripe_index for $dir"
15345         done
15346 }
15347 run_test 300g "check default striped directory for normal directory"
15348
15349 test_300h() {
15350         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
15351                 skip "Need MDS version at least 2.7.55" && return
15352         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15353         local dir
15354         local stripe_count
15355
15356         mkdir $DIR/$tdir
15357         $LFS setdirstripe -i 0 -c $MDSCOUNT -t all_char \
15358                                         $DIR/$tdir/striped_dir ||
15359                 error "set striped dir error"
15360
15361         test_300_check_default_striped_dir striped_dir $MDSCOUNT 1
15362         test_300_check_default_striped_dir striped_dir 1 0
15363         test_300_check_default_striped_dir striped_dir 2 1
15364         test_300_check_default_striped_dir striped_dir 2 -1
15365
15366         #delete default stripe information
15367         $LFS setdirstripe -d $DIR/$tdir/striped_dir ||
15368                 error "set default stripe on striped dir error"
15369
15370         mkdir -p $DIR/$tdir/striped_dir/{test1,test2,test3,test4}
15371         for dir in $(find $DIR/$tdir/striped_dir/*); do
15372                 stripe_count=$($LFS getdirstripe -c $dir)
15373                 [ $stripe_count -eq 0 ] ||
15374                         error "expect 1 get $stripe_count for $dir"
15375         done
15376 }
15377 run_test 300h "check default striped directory for striped directory"
15378
15379 test_300i() {
15380         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
15381                 skip "Need MDS version at least 2.7.55" && return
15382         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15383         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15384         local stripe_count
15385         local file
15386
15387         mkdir $DIR/$tdir
15388
15389         $LFS setdirstripe -i 0 -c$MDSCOUNT -t all_char $DIR/$tdir/striped_dir ||
15390                 error "set striped dir error"
15391
15392         createmany -o $DIR/$tdir/striped_dir/f- 10 ||
15393                 error "create files under striped dir failed"
15394
15395         $LFS setdirstripe -i0 -c$MDSCOUNT -H all_char $DIR/$tdir/hashdir ||
15396                 error "set striped hashdir error"
15397
15398         $LFS setdirstripe -i0 -c$MDSCOUNT -H all_char $DIR/$tdir/hashdir/d0 ||
15399                 error "create dir0 under hash dir failed"
15400         $LFS setdirstripe -i0 -c$MDSCOUNT -H fnv_1a_64 $DIR/$tdir/hashdir/d1 ||
15401                 error "create dir1 under hash dir failed"
15402
15403         # unfortunately, we need to umount to clear dir layout cache for now
15404         # once we fully implement dir layout, we can drop this
15405         umount_client $MOUNT || error "umount failed"
15406         mount_client $MOUNT || error "mount failed"
15407
15408         $LFS find -H fnv_1a_64 $DIR/$tdir/hashdir
15409         local dircnt=$($LFS find -H fnv_1a_64 $DIR/$tdir/hashdir | wc -l)
15410         [ $dircnt -eq 1 ] || error "lfs find striped dir got:$dircnt,except:1"
15411
15412         #set the stripe to be unknown hash type
15413         #define OBD_FAIL_UNKNOWN_LMV_STRIPE     0x1901
15414         $LCTL set_param fail_loc=0x1901
15415         for ((i = 0; i < 10; i++)); do
15416                 $CHECKSTAT -t file $DIR/$tdir/striped_dir/f-$i ||
15417                         error "stat f-$i failed"
15418                 rm $DIR/$tdir/striped_dir/f-$i || error "unlink f-$i failed"
15419         done
15420
15421         touch $DIR/$tdir/striped_dir/f0 &&
15422                 error "create under striped dir with unknown hash should fail"
15423
15424         $LCTL set_param fail_loc=0
15425
15426         umount_client $MOUNT || error "umount failed"
15427         mount_client $MOUNT || error "mount failed"
15428
15429         return 0
15430 }
15431 run_test 300i "client handle unknown hash type striped directory"
15432
15433 test_300j() {
15434         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15435         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
15436                 skip "Need MDS version at least 2.7.55" && return
15437         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15438         local stripe_count
15439         local file
15440
15441         mkdir $DIR/$tdir
15442
15443         #define OBD_FAIL_SPLIT_UPDATE_REC       0x1702
15444         $LCTL set_param fail_loc=0x1702
15445         $LFS setdirstripe -i 0 -c$MDSCOUNT -t all_char $DIR/$tdir/striped_dir ||
15446                 error "set striped dir error"
15447
15448         createmany -o $DIR/$tdir/striped_dir/f- 10 ||
15449                 error "create files under striped dir failed"
15450
15451         $LCTL set_param fail_loc=0
15452
15453         rm -rf $DIR/$tdir || error "unlink striped dir fails"
15454
15455         return 0
15456 }
15457 run_test 300j "test large update record"
15458
15459 test_300k() {
15460         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
15461                 skip "Need MDS version at least 2.7.55" && return
15462         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15463         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15464         local stripe_count
15465         local file
15466
15467         mkdir $DIR/$tdir
15468
15469         #define OBD_FAIL_LARGE_STRIPE   0x1703
15470         $LCTL set_param fail_loc=0x1703
15471         $LFS setdirstripe -i 0 -c512 $DIR/$tdir/striped_dir ||
15472                 error "set striped dir error"
15473         $LCTL set_param fail_loc=0
15474
15475         $LFS getdirstripe $DIR/$tdir/striped_dir ||
15476                 error "getstripeddir fails"
15477         rm -rf $DIR/$tdir/striped_dir ||
15478                 error "unlink striped dir fails"
15479
15480         return 0
15481 }
15482 run_test 300k "test large striped directory"
15483
15484 test_300l() {
15485         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
15486                 skip "Need MDS version at least 2.7.55" && return
15487         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15488         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15489         local stripe_index
15490
15491         test_mkdir -p $DIR/$tdir/striped_dir
15492         chown $RUNAS_ID $DIR/$tdir/striped_dir ||
15493                         error "chown $RUNAS_ID failed"
15494         $LFS setdirstripe -i 1 -D $DIR/$tdir/striped_dir ||
15495                 error "set default striped dir failed"
15496
15497         #define OBD_FAIL_MDS_STALE_DIR_LAYOUT    0x158
15498         $LCTL set_param fail_loc=0x80000158
15499         $RUNAS mkdir $DIR/$tdir/striped_dir/test_dir || error "create dir fails"
15500
15501         stripe_index=$($LFS getdirstripe -i $DIR/$tdir/striped_dir/test_dir)
15502         [ $stripe_index -eq 1 ] ||
15503                 error "expect 1 get $stripe_index for $dir"
15504 }
15505 run_test 300l "non-root user to create dir under striped dir with stale layout"
15506
15507 test_300m() {
15508         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
15509                 skip "Need MDS version at least 2.7.55" && return
15510         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15511         [ $MDSCOUNT -ge 2 ] && skip "Only for single MDT" && return
15512
15513         mkdir -p $DIR/$tdir/striped_dir
15514         $LFS setdirstripe -D -c 1 $DIR/$tdir/striped_dir ||
15515                 error "set default stripes dir error"
15516
15517         mkdir $DIR/$tdir/striped_dir/a || error "mkdir a fails"
15518
15519         stripe_count=$($LFS getdirstripe -c $DIR/$tdir/striped_dir/a)
15520         [ $stripe_count -eq 0 ] ||
15521                         error "expect 0 get $stripe_count for a"
15522
15523         $LFS setdirstripe -D -c 2 $DIR/$tdir/striped_dir ||
15524                 error "set default stripes dir error"
15525
15526         mkdir $DIR/$tdir/striped_dir/b || error "mkdir b fails"
15527
15528         stripe_count=$($LFS getdirstripe -c $DIR/$tdir/striped_dir/b)
15529         [ $stripe_count -eq 0 ] ||
15530                         error "expect 0 get $stripe_count for b"
15531
15532         $LFS setdirstripe -D -c1 -i2 $DIR/$tdir/striped_dir ||
15533                 error "set default stripes dir error"
15534
15535         mkdir $DIR/$tdir/striped_dir/c &&
15536                 error "default stripe_index is invalid, mkdir c should fails"
15537
15538         rm -rf $DIR/$tdir || error "rmdir fails"
15539 }
15540 run_test 300m "setstriped directory on single MDT FS"
15541
15542 cleanup_300n() {
15543         local list=$(comma_list $(mdts_nodes))
15544
15545         trap 0
15546         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=0
15547 }
15548
15549 test_300n() {
15550         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
15551                 skip "Need MDS version at least 2.7.55" && return
15552         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15553         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15554         remote_mds_nodsh && skip "remote MDS with nodsh" && return
15555
15556         local stripe_index
15557         local list=$(comma_list $(mdts_nodes))
15558
15559         trap cleanup_300n RETURN EXIT
15560         mkdir -p $DIR/$tdir
15561         chmod 777 $DIR/$tdir
15562         $RUNAS $LFS setdirstripe -i0 -c$MDSCOUNT \
15563                                 $DIR/$tdir/striped_dir > /dev/null 2>&1 &&
15564                 error "create striped dir succeeds with gid=0"
15565
15566         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=-1
15567         $RUNAS $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/striped_dir ||
15568                 error "create striped dir fails with gid=-1"
15569
15570         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=0
15571         $RUNAS $LFS setdirstripe -i 1 -c$MDSCOUNT -D \
15572                                 $DIR/$tdir/striped_dir > /dev/null 2>&1 &&
15573                 error "set default striped dir succeeds with gid=0"
15574
15575
15576         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=-1
15577         $RUNAS $LFS setdirstripe -i 1 -c$MDSCOUNT -D $DIR/$tdir/striped_dir ||
15578                 error "set default striped dir fails with gid=-1"
15579
15580
15581         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=0
15582         $RUNAS mkdir $DIR/$tdir/striped_dir/test_dir ||
15583                                         error "create test_dir fails"
15584         $RUNAS mkdir $DIR/$tdir/striped_dir/test_dir1 ||
15585                                         error "create test_dir1 fails"
15586         $RUNAS mkdir $DIR/$tdir/striped_dir/test_dir2 ||
15587                                         error "create test_dir2 fails"
15588         cleanup_300n
15589 }
15590 run_test 300n "non-root user to create dir under striped dir with default EA"
15591
15592 test_300o() {
15593         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
15594                 skip "Need MDS version at least 2.7.55" && return
15595         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15596         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15597         local numfree1
15598         local numfree2
15599
15600         mkdir -p $DIR/$tdir
15601
15602         numfree1=$(lctl get_param -n mdc.*MDT0000*.filesfree)
15603         numfree2=$(lctl get_param -n mdc.*MDT0001*.filesfree)
15604         if [ $numfree1 -lt 66000 -o $numfree2 -lt 66000 ]; then
15605                 skip "not enough free inodes $numfree1 $numfree2"
15606                 return
15607         fi
15608
15609         numfree1=$(lctl get_param -n mdc.*MDT0000-mdc-*.kbytesfree)
15610         numfree2=$(lctl get_param -n mdc.*MDT0001-mdc-*.kbytesfree)
15611         if [ $numfree1 -lt 300000 -o $numfree2 -lt 300000 ]; then
15612                 skip "not enough free space $numfree1 $numfree2"
15613                 return
15614         fi
15615
15616         $LFS setdirstripe -c2 $DIR/$tdir/striped_dir ||
15617                 error "setdirstripe fails"
15618
15619         createmany -d $DIR/$tdir/striped_dir/d 131000 ||
15620                 error "create dirs fails"
15621
15622         $LCTL set_param ldlm.namespaces.*mdc-*.lru_size=0
15623         ls $DIR/$tdir/striped_dir > /dev/null ||
15624                 error "ls striped dir fails"
15625         unlinkmany -d $DIR/$tdir/striped_dir/d 131000 ||
15626                 error "unlink big striped dir fails"
15627 }
15628 run_test 300o "unlink big sub stripe(> 65000 subdirs)"
15629
15630 test_300p() {
15631         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15632         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15633         remote_mds_nodsh && skip "remote MDS with nodsh" && return
15634
15635         mkdir -p $DIR/$tdir
15636
15637         #define OBD_FAIL_OUT_ENOSPC     0x1704
15638         do_facet mds2 lctl set_param fail_loc=0x80001704
15639         $LFS setdirstripe -c2 $DIR/$tdir/bad_striped_dir > /dev/null 2>&1 &&
15640                         error "create striped directory should fail"
15641
15642         [ -e $DIR/$tdir/bad_striped_dir ] && error "striped dir exists"
15643
15644         $LFS setdirstripe -c2 $DIR/$tdir/bad_striped_dir
15645         true
15646 }
15647 run_test 300p "create striped directory without space"
15648
15649 test_300q() {
15650         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15651         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15652
15653         local fd=$(free_fd)
15654         local cmd="exec $fd<$tdir"
15655         cd $DIR
15656         $LFS mkdir -c $MDSCOUNT $tdir || error "create $tdir fails"
15657         eval $cmd
15658         cmd="exec $fd<&-"
15659         trap "eval $cmd" EXIT
15660         cd $tdir || error "cd $tdir fails"
15661         rmdir  ../$tdir || error "rmdir $tdir fails"
15662         mkdir local_dir && error "create dir succeeds"
15663         $LFS setdirstripe -i1 remote_dir && error "create remote dir succeeds"
15664         eval $cmd
15665         return 0
15666 }
15667 run_test 300q "create remote directory under orphan directory"
15668
15669 prepare_remote_file() {
15670         mkdir $DIR/$tdir/src_dir ||
15671                 error "create remote source failed"
15672
15673         cp /etc/hosts $DIR/$tdir/src_dir/a || error
15674         touch $DIR/$tdir/src_dir/a
15675
15676         $LFS mkdir -i 1 $DIR/$tdir/tgt_dir ||
15677                 error "create remote target dir failed"
15678
15679         touch $DIR/$tdir/tgt_dir/b
15680
15681         mrename $DIR/$tdir/src_dir/a $DIR/$tdir/tgt_dir/b ||
15682                 error "rename dir cross MDT failed!"
15683
15684         $CHECKSTAT -t file $DIR/$tdir/src_dir/a &&
15685                 error "src_child still exists after rename"
15686
15687         $CHECKSTAT -t file $DIR/$tdir/tgt_dir/b ||
15688                 error "missing file(a) after rename"
15689
15690         diff /etc/hosts $DIR/$tdir/tgt_dir/b ||
15691                 error "diff after rename"
15692 }
15693
15694 test_310a() {
15695         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 4 MDTs" && return
15696         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15697         local remote_file=$DIR/$tdir/tgt_dir/b
15698
15699         mkdir -p $DIR/$tdir
15700
15701         prepare_remote_file || error "prepare remote file failed"
15702
15703         #open-unlink file
15704         $OPENUNLINK $remote_file $remote_file || error
15705         $CHECKSTAT -a $remote_file || error
15706 }
15707 run_test 310a "open unlink remote file"
15708
15709 test_310b() {
15710         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 4 MDTs" && return
15711         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15712         local remote_file=$DIR/$tdir/tgt_dir/b
15713
15714         mkdir -p $DIR/$tdir
15715
15716         prepare_remote_file || error "prepare remote file failed"
15717
15718         ln $remote_file $DIR/$tfile || error "link failed for remote file"
15719         $MULTIOP $DIR/$tfile Ouc || error "mulitop failed"
15720         $CHECKSTAT -t file $remote_file || error "check file failed"
15721 }
15722 run_test 310b "unlink remote file with multiple links while open"
15723
15724 test_310c() {
15725         [[ $MDSCOUNT -lt 4 ]] && skip "needs >= 4 MDTs" && return
15726         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15727         local remote_file=$DIR/$tdir/tgt_dir/b
15728
15729         mkdir -p $DIR/$tdir
15730
15731         prepare_remote_file || error "prepare remote file failed"
15732
15733         ln $remote_file $DIR/$tfile || error "link failed for remote file"
15734         multiop_bg_pause $remote_file O_uc ||
15735                         error "mulitop failed for remote file"
15736         MULTIPID=$!
15737         $MULTIOP $DIR/$tfile Ouc
15738         kill -USR1 $MULTIPID
15739         wait $MULTIPID
15740 }
15741 run_test 310c "open-unlink remote file with multiple links"
15742
15743 #LU-4825
15744 test_311() {
15745         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.54) ] &&
15746                 skip "lustre < 2.8.54 does not contain LU-4825 fix" && return
15747         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15748         remote_mds_nodsh && skip "remote MDS with nodsh" && return
15749
15750         local old_iused=$($LFS df -i | grep OST0000 | awk '{ print $3 }')
15751
15752         mkdir -p $DIR/$tdir
15753         $SETSTRIPE -i 0 -c 1 $DIR/$tdir
15754         createmany -o $DIR/$tdir/$tfile. 1000
15755
15756         # statfs data is not real time, let's just calculate it
15757         old_iused=$((old_iused + 1000))
15758
15759         local count=$(do_facet $SINGLEMDS "lctl get_param -n \
15760                         osp.*OST0000*MDT0000.create_count")
15761         local max_count=$(do_facet $SINGLEMDS "lctl get_param -n \
15762                                 osp.*OST0000*MDT0000.max_create_count")
15763         for idx in $(seq $MDSCOUNT); do
15764                 do_facet mds$idx "lctl set_param -n \
15765                         osp.*OST0000*MDT000?.max_create_count=0"
15766         done
15767
15768         $SETSTRIPE -i 0 $DIR/$tdir/$tfile || error "setstripe failed"
15769         local index=$($GETSTRIPE -i $DIR/$tdir/$tfile)
15770         [ $index -ne 0 ] || error "$tfile stripe index is 0"
15771
15772         unlinkmany $DIR/$tdir/$tfile. 1000
15773
15774         for idx in $(seq $MDSCOUNT); do
15775                 do_facet mds$idx "lctl set_param -n \
15776                         osp.*OST0000*MDT000?.max_create_count=$max_count"
15777                 do_facet mds$idx "lctl set_param -n \
15778                         osp.*OST0000*MDT000?.create_count=$count"
15779         done
15780
15781         local new_iused
15782         for i in $(seq 120); do
15783                 new_iused=$($LFS df -i | grep OST0000 | awk '{ print $3 }')
15784                 # system may be too busy to destroy all objs in time, use
15785                 # a somewhat small value to not fail autotest
15786                 [ $((old_iused - new_iused)) -gt 400 ] && break
15787                 sleep 1
15788         done
15789
15790         echo "waited $i sec, old Iused $old_iused, new Iused $new_iused"
15791         [ $((old_iused - new_iused)) -gt 400 ] ||
15792                 error "objs not destroyed after unlink"
15793 }
15794 run_test 311 "disable OSP precreate, and unlink should destroy objs"
15795
15796 zfs_oid_to_objid()
15797 {
15798         local ost=$1
15799         local objid=$2
15800
15801         local vdevdir=$(dirname $(facet_vdevice $ost))
15802         local cmd="$ZDB -e -p $vdevdir -ddddd $(facet_device $ost)"
15803         local zfs_zapid=$(do_facet $ost $cmd |
15804                           grep -w "/O/0/d$((objid%32))" -C 5 |
15805                           awk '/Object/{getline; print $1}')
15806         local zfs_objid=$(do_facet $ost $cmd $zfs_zapid |
15807                           awk "/$objid = /"'{printf $3}')
15808
15809         echo $zfs_objid
15810 }
15811
15812 zfs_object_blksz() {
15813         local ost=$1
15814         local objid=$2
15815
15816         local vdevdir=$(dirname $(facet_vdevice $ost))
15817         local cmd="$ZDB -e -p $vdevdir -dddd $(facet_device $ost)"
15818         local blksz=$(do_facet $ost $cmd $objid |
15819                       awk '/dblk/{getline; printf $4}')
15820
15821         case "${blksz: -1}" in
15822                 k|K) blksz=$((${blksz:0:$((${#blksz} - 1))}*1024)) ;;
15823                 m|M) blksz=$((${blksz:0:$((${#blksz} - 1))}*1024*1024)) ;;
15824                 *) ;;
15825         esac
15826
15827         echo $blksz
15828 }
15829
15830 test_312() { # LU-4856
15831         remote_ost_nodsh && skip "remote OST with nodsh" && return
15832
15833         [ $(facet_fstype ost1) = "zfs" ] ||
15834                 { skip "the test only applies to zfs" && return; }
15835
15836         local max_blksz=$(do_facet ost1 \
15837                           $ZFS get -p recordsize $(facet_device ost1) |
15838                           awk '!/VALUE/{print $3}')
15839         local min_blksz=$(getconf PAGE_SIZE)
15840
15841         # to make life a little bit easier
15842         $LFS mkdir -c 1 -i 0 $DIR/$tdir
15843         $LFS setstripe -c 1 -i 0 $DIR/$tdir
15844
15845         local tf=$DIR/$tdir/$tfile
15846         touch $tf
15847         local oid=$($LFS getstripe $tf | awk '/obdidx/{getline; print $2}')
15848
15849         # Get ZFS object id
15850         local zfs_objid=$(zfs_oid_to_objid ost1 $oid)
15851
15852         # block size change by sequential over write
15853         local blksz
15854         for ((bs=$min_blksz; bs <= max_blksz; bs <<= 2)); do
15855                 dd if=/dev/zero of=$tf bs=$bs count=1 oflag=sync conv=notrunc
15856
15857                 blksz=$(zfs_object_blksz ost1 $zfs_objid)
15858                 [ $blksz -eq $bs ] || error "blksz error: $blksz, expected: $bs"
15859         done
15860         rm -f $tf
15861
15862         # block size change by sequential append write
15863         dd if=/dev/zero of=$tf bs=$min_blksz count=1 oflag=sync conv=notrunc
15864         oid=$($LFS getstripe $tf | awk '/obdidx/{getline; print $2}')
15865         zfs_objid=$(zfs_oid_to_objid ost1 $oid)
15866
15867         for ((count = 1; count < $((max_blksz / min_blksz)); count *= 2)); do
15868                 dd if=/dev/zero of=$tf bs=$min_blksz count=$count seek=$count \
15869                         oflag=sync conv=notrunc
15870
15871                 blksz=$(zfs_object_blksz ost1 $zfs_objid)
15872                 [ $blksz -eq $((2 * count * min_blksz)) ] ||
15873                         error "blksz error, actual $blksz, "    \
15874                                 "expected: 2 * $count * $min_blksz"
15875         done
15876         rm -f $tf
15877
15878         # random write
15879         touch $tf
15880         oid=$($LFS getstripe $tf | awk '/obdidx/{getline; print $2}')
15881         zfs_objid=$(zfs_oid_to_objid ost1 $oid)
15882
15883         dd if=/dev/zero of=$tf bs=1K count=1 oflag=sync conv=notrunc
15884         blksz=$(zfs_object_blksz ost1 $zfs_objid)
15885         [ $blksz -eq $min_blksz ] ||
15886                 error "blksz error: $blksz, expected: $min_blksz"
15887
15888         dd if=/dev/zero of=$tf bs=64K count=1 oflag=sync conv=notrunc seek=128
15889         blksz=$(zfs_object_blksz ost1 $zfs_objid)
15890         [ $blksz -eq 65536 ] || error "blksz error: $blksz, expected: 64k"
15891
15892         dd if=/dev/zero of=$tf bs=1M count=1 oflag=sync conv=notrunc
15893         blksz=$(zfs_object_blksz ost1 $zfs_objid)
15894         [ $blksz -eq 65536 ] || error "rewrite error: $blksz, expected: 64k"
15895 }
15896 run_test 312 "make sure ZFS adjusts its block size by write pattern"
15897
15898 test_313() {
15899         remote_ost_nodsh && skip "remote OST with nodsh" && return
15900
15901         local file=$DIR/$tfile
15902         rm -f $file
15903         $SETSTRIPE -c 1 -i 0 $file || error "setstripe failed"
15904
15905         # define OBD_FAIL_TGT_RCVD_EIO           0x720
15906         do_facet ost1 "$LCTL set_param fail_loc=0x720"
15907         dd if=/dev/zero of=$file bs=4096 oflag=direct count=1 &&
15908                 error "write should failed"
15909         do_facet ost1 "$LCTL set_param fail_loc=0"
15910         rm -f $file
15911 }
15912 run_test 313 "io should fail after last_rcvd update fail"
15913
15914 test_fake_rw() {
15915         local read_write=$1
15916         if [ "$read_write" = "write" ]; then
15917                 local dd_cmd="dd if=/dev/zero of=$DIR/$tfile"
15918         elif [ "$read_write" = "read" ]; then
15919                 local dd_cmd="dd of=/dev/null if=$DIR/$tfile"
15920         else
15921                 error "argument error"
15922         fi
15923
15924         # turn off debug for performance testing
15925         local saved_debug=$($LCTL get_param -n debug)
15926         $LCTL set_param debug=0
15927
15928         $SETSTRIPE -c 1 -i 0 $DIR/$tfile
15929
15930         # get ost1 size - lustre-OST0000
15931         local ost1_avail_size=$($LFS df | awk /${ost1_svc}/'{ print $4 }')
15932         local blocks=$((ost1_avail_size/2/1024)) # half avail space by megabytes
15933         [ $blocks -gt 1000 ] && blocks=1000 # 1G in maximum
15934
15935         if [ "$read_write" = "read" ]; then
15936                 truncate -s $(expr 1048576 \* $blocks) $DIR/$tfile
15937         fi
15938
15939         local start_time=$(date +%s.%N)
15940         $dd_cmd bs=1M count=$blocks oflag=sync ||
15941                 error "real dd $read_write error"
15942         local duration=$(bc <<< "$(date +%s.%N) - $start_time")
15943
15944         if [ "$read_write" = "write" ]; then
15945                 rm -f $DIR/$tfile
15946         fi
15947
15948         # define OBD_FAIL_OST_FAKE_RW           0x238
15949         do_facet ost1 $LCTL set_param fail_loc=0x238
15950
15951         local start_time=$(date +%s.%N)
15952         $dd_cmd bs=1M count=$blocks oflag=sync ||
15953                 error "fake dd $read_write error"
15954         local duration_fake=$(bc <<< "$(date +%s.%N) - $start_time")
15955
15956         if [ "$read_write" = "write" ]; then
15957                 # verify file size
15958                 cancel_lru_locks osc
15959                 $CHECKSTAT -t file -s $((blocks * 1024 * 1024)) $DIR/$tfile ||
15960                         error "$tfile size not $blocks MB"
15961         fi
15962         do_facet ost1 $LCTL set_param fail_loc=0
15963
15964         echo "fake $read_write $duration_fake vs. normal $read_write" \
15965                 "$duration in seconds"
15966         [ $(bc <<< "$duration_fake < $duration") -eq 1 ] ||
15967                 error_not_in_vm "fake write is slower"
15968
15969         $LCTL set_param -n debug="$saved_debug"
15970         rm -f $DIR/$tfile
15971 }
15972 test_399a() { # LU-7655 for OST fake write
15973         remote_ost_nodsh && skip "remote OST with nodsh" && return
15974
15975         test_fake_rw write
15976 }
15977 run_test 399a "fake write should not be slower than normal write"
15978
15979 test_399b() { # LU-8726 for OST fake read
15980         remote_ost_nodsh && skip "remote OST with nodsh" && return
15981
15982         if [ "$(facet_fstype ost1)" != "ldiskfs" ]; then
15983                 skip "ldiskfs only test" && return 0
15984         fi
15985         test_fake_rw read
15986 }
15987 run_test 399b "fake read should not be slower than normal read"
15988
15989 test_400a() { # LU-1606, was conf-sanity test_74
15990         local extra_flags=''
15991         local out=$TMP/$tfile
15992         local prefix=/usr/include/lustre
15993         local prog
15994
15995         if ! which $CC > /dev/null 2>&1; then
15996                 skip_env "$CC is not installed"
15997                 return 0
15998         fi
15999
16000         if ! [[ -d $prefix ]]; then
16001                 # Assume we're running in tree and fixup the include path.
16002                 extra_flags+=" -I$LUSTRE/include"
16003                 extra_flags+=" -L$LUSTRE/utils"
16004         fi
16005
16006         for prog in $LUSTRE_TESTS_API_DIR/*.c; do
16007                 $CC -Wall -Werror $extra_flags -llustreapi -o $out $prog ||
16008                         error "client api broken"
16009         done
16010         rm -f $out
16011 }
16012 run_test 400a "Lustre client api program can compile and link"
16013
16014 test_400b() { # LU-1606, LU-5011
16015         local header
16016         local out=$TMP/$tfile
16017         local prefix=/usr/include/linux/lustre
16018
16019         # We use a hard coded prefix so that this test will not fail
16020         # when run in tree. There are headers in lustre/include/lustre/
16021         # that are not packaged (like lustre_idl.h) and have more
16022         # complicated include dependencies (like config.h and lnet/types.h).
16023         # Since this test about correct packaging we just skip them when
16024         # they don't exist (see below) rather than try to fixup cppflags.
16025
16026         if ! which $CC > /dev/null 2>&1; then
16027                 skip_env "$CC is not installed"
16028                 return 0
16029         fi
16030
16031         for header in $prefix/*.h; do
16032                 if ! [[ -f "$header" ]]; then
16033                         continue
16034                 fi
16035
16036                 if [[ "$(basename $header)" == lustre_ioctl.h ]]; then
16037                         continue # lustre_ioctl.h is internal header
16038                 fi
16039
16040                 $CC -Wall -Werror -include $header -c -x c /dev/null -o $out ||
16041                         error "cannot compile '$header'"
16042         done
16043         rm -f $out
16044 }
16045 run_test 400b "packaged headers can be compiled"
16046
16047 test_401a() { #LU-7437
16048         local printf_arg=$(find -printf 2>&1 | grep "unrecognized:")
16049         [ -n "$printf_arg" ] && skip_env "find does not support -printf" &&
16050                 return
16051         #count the number of parameters by "list_param -R"
16052         local params=$($LCTL list_param -R '*' 2>/dev/null | wc -l)
16053         #count the number of parameters by listing proc files
16054         local proc_dirs=$(eval \ls -d $proc_regexp 2>/dev/null)
16055         echo "proc_dirs='$proc_dirs'"
16056         [ -n "$proc_dirs" ] || error "no proc_dirs on $HOSTNAME"
16057         local procs=$(find -L $proc_dirs -mindepth 1 -printf '%P\n' 2>/dev/null|
16058                       sort -u | wc -l)
16059
16060         [ $params -eq $procs ] ||
16061                 error "found $params parameters vs. $procs proc files"
16062
16063         # test the list_param -D option only returns directories
16064         params=$($LCTL list_param -R -D '*' 2>/dev/null | wc -l)
16065         #count the number of parameters by listing proc directories
16066         procs=$(find -L $proc_dirs -mindepth 1 -type d -printf '%P\n' 2>/dev/null |
16067                 sort -u | wc -l)
16068
16069         [ $params -eq $procs ] ||
16070                 error "found $params parameters vs. $procs proc files"
16071 }
16072 run_test 401a "Verify if 'lctl list_param -R' can list parameters recursively"
16073
16074 test_401b() {
16075         local save=$($LCTL get_param -n jobid_var)
16076         local tmp=testing
16077
16078         $LCTL set_param foo=bar jobid_var=$tmp bar=baz &&
16079                 error "no error returned when setting bad parameters"
16080
16081         local jobid_new=$($LCTL get_param -n foe jobid_var baz)
16082         [[ "$jobid_new" == "$tmp" ]] || error "jobid tmp $jobid_new != $tmp"
16083
16084         $LCTL set_param -n fog=bam jobid_var=$save bat=fog
16085         local jobid_old=$($LCTL get_param -n foe jobid_var bag)
16086         [[ "$jobid_old" == "$save" ]] || error "jobid new $jobid_old != $save"
16087 }
16088 run_test 401b "Verify 'lctl {get,set}_param' continue after error"
16089
16090 test_401c() {
16091         local jobid_var_old=$($LCTL get_param -n jobid_var)
16092         local jobid_var_new
16093
16094         $LCTL set_param jobid_var= &&
16095                 error "no error returned for 'set_param a='"
16096
16097         jobid_var_new=$($LCTL get_param -n jobid_var)
16098         [[ "$jobid_var_old" == "$jobid_var_new" ]] ||
16099                 error "jobid_var was changed by setting without value"
16100
16101         $LCTL set_param jobid_var &&
16102                 error "no error returned for 'set_param a'"
16103
16104         jobid_var_new=$($LCTL get_param -n jobid_var)
16105         [[ "$jobid_var_old" == "$jobid_var_new" ]] ||
16106                 error "jobid_var was changed by setting without value"
16107 }
16108 run_test 401c "Verify 'lctl set_param' without value fails in either format."
16109
16110 test_401d() {
16111         local jobid_var_old=$($LCTL get_param -n jobid_var)
16112         local jobid_var_new
16113         local new_value="foo=bar"
16114
16115         $LCTL set_param jobid_var=$new_value ||
16116                 error "'set_param a=b' did not accept a value containing '='"
16117
16118         jobid_var_new=$($LCTL get_param -n jobid_var)
16119         [[ "$jobid_var_new" == "$new_value" ]] ||
16120                 error "'set_param a=b' failed on a value containing '='"
16121
16122         # Reset the jobid_var to test the other format
16123         $LCTL set_param jobid_var=$jobid_var_old
16124         jobid_var_new=$($LCTL get_param -n jobid_var)
16125         [[ "$jobid_var_new" == "$jobid_var_old" ]] ||
16126                 error "failed to reset jobid_var"
16127
16128         $LCTL set_param jobid_var $new_value ||
16129                 error "'set_param a b' did not accept a value containing '='"
16130
16131         jobid_var_new=$($LCTL get_param -n jobid_var)
16132         [[ "$jobid_var_new" == "$new_value" ]] ||
16133                 error "'set_param a b' failed on a value containing '='"
16134
16135         $LCTL set_param jobid_var $jobid_var_old
16136         jobid_var_new=$($LCTL get_param -n jobid_var)
16137         [[ "$jobid_var_new" == "$jobid_var_old" ]] ||
16138                 error "failed to reset jobid_var"
16139 }
16140 run_test 401d "Verify 'lctl set_param' accepts values containing '='"
16141
16142 test_402() {
16143         local server_version=$(lustre_version_code $SINGLEMDS)
16144         [[ $server_version -ge $(version_code 2.7.66) ]] ||
16145         [[ $server_version -ge $(version_code 2.7.18.4) &&
16146                 $server_version -lt $(version_code 2.7.50) ]] ||
16147         [[ $server_version -ge $(version_code 2.7.2) &&
16148                 $server_version -lt $(version_code 2.7.11) ]] ||
16149                 { skip "Need MDS version 2.7.2+ or 2.7.18.4+ or 2.7.66+";
16150                         return; }
16151         remote_mds_nodsh && skip "remote MDS with nodsh" && return
16152         $LFS setdirstripe -i 0 $DIR/$tdir || error "setdirstripe -i 0 failed"
16153 #define OBD_FAIL_MDS_FLD_LOOKUP 0x15c
16154         do_facet mds1 "lctl set_param fail_loc=0x8000015c"
16155         touch $DIR/$tdir/$tfile && error "touch should fail with ENOENT" ||
16156                 echo "Touch failed - OK"
16157 }
16158 run_test 402 "Return ENOENT to lod_generate_and_set_lovea"
16159
16160 test_403() {
16161         local file1=$DIR/$tfile.1
16162         local file2=$DIR/$tfile.2
16163         local tfile=$TMP/$tfile
16164
16165         rm -f $file1 $file2 $tfile
16166
16167         touch $file1
16168         ln $file1 $file2
16169
16170         # 30 sec OBD_TIMEOUT in ll_getattr()
16171         # right before populating st_nlink
16172         $LCTL set_param fail_loc=0x80001409
16173         stat -c %h $file1 > $tfile &
16174
16175         # create an alias, drop all locks and reclaim the dentry
16176         < $file2
16177         cancel_lru_locks mdc
16178         cancel_lru_locks osc
16179         sysctl -w vm.drop_caches=2
16180
16181         wait
16182
16183         [ `cat $tfile` -gt 0 ] || error "wrong nlink count: `cat $tfile`"
16184
16185         rm -f $tfile $file1 $file2
16186 }
16187 run_test 403 "i_nlink should not drop to zero due to aliasing"
16188
16189 test_404() { # LU-6601
16190         local server_version=$(lustre_version_code $SINGLEMDS)
16191         [[ $server_version -ge $(version_code 2.8.53) ]] ||
16192                 { skip "Need server version newer than 2.8.52"; return 0; }
16193
16194         remote_mds_nodsh && skip "remote MDS with nodsh" && return
16195         local mosps=$(do_facet $SINGLEMDS $LCTL dl |
16196                 awk '/osp .*-osc-MDT/ { print $4}')
16197
16198         local osp
16199         for osp in $mosps; do
16200                 echo "Deactivate: " $osp
16201                 do_facet $SINGLEMDS $LCTL --device %$osp deactivate
16202                 local stat=$(do_facet $SINGLEMDS $LCTL dl |
16203                         awk -vp=$osp '$4 == p { print $2 }')
16204                 [ $stat = IN ] || {
16205                         do_facet $SINGLEMDS $LCTL dl | grep -w $osp
16206                         error "deactivate error"
16207                 }
16208                 echo "Activate: " $osp
16209                 do_facet $SINGLEMDS $LCTL --device %$osp activate
16210                 local stat=$(do_facet $SINGLEMDS $LCTL dl |
16211                         awk -vp=$osp '$4 == p { print $2 }')
16212                 [ $stat = UP ] || {
16213                         do_facet $SINGLEMDS $LCTL dl | grep -w $osp
16214                         error "activate error"
16215                 }
16216         done
16217 }
16218 run_test 404 "validate manual {de}activated works properly for OSPs"
16219
16220 test_405() {
16221         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.6.92) -o \
16222         [ $(lustre_version_code client) -lt $(version_code 2.6.99) ] &&
16223                 skip "Layout swap lock is not supported" && return
16224
16225         check_swap_layouts_support && return 0
16226
16227         test_mkdir $DIR/$tdir
16228         swap_lock_test -d $DIR/$tdir ||
16229                 error "One layout swap locked test failed"
16230 }
16231 run_test 405 "Various layout swap lock tests"
16232
16233 test_406() {
16234         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
16235         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
16236         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
16237         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
16238         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.50) ] &&
16239                 skip "Need MDS version at least 2.8.50" && return
16240
16241         local def_stripe_count=$($GETSTRIPE -c $MOUNT)
16242         local def_stripe_size=$($GETSTRIPE -S $MOUNT)
16243         local def_stripe_offset=$($GETSTRIPE -i $MOUNT)
16244         local def_pool=$($GETSTRIPE -p $MOUNT)
16245
16246         local test_pool=$TESTNAME
16247         pool_add $test_pool || error "pool_add failed"
16248         pool_add_targets $test_pool 0 $(($OSTCOUNT - 1)) 1 ||
16249                 error "pool_add_targets failed"
16250
16251         # parent set default stripe count only, child will stripe from both
16252         # parent and fs default
16253         $SETSTRIPE -c 1 -i 1 -S $((def_stripe_size * 2)) -p $test_pool $MOUNT ||
16254                 error "setstripe $MOUNT failed"
16255         $LFS mkdir -c $MDSCOUNT $DIR/$tdir || error "mkdir $tdir failed"
16256         $SETSTRIPE -c $OSTCOUNT $DIR/$tdir || error "setstripe $tdir failed"
16257         for i in $(seq 10); do
16258                 local f=$DIR/$tdir/$tfile.$i
16259                 touch $f || error "touch failed"
16260                 local count=$($GETSTRIPE -c $f)
16261                 [ $count -eq $OSTCOUNT ] ||
16262                         error "$f stripe count $count != $OSTCOUNT"
16263                 local offset=$($GETSTRIPE -i $f)
16264                 [ $offset -eq 1 ] || error "$f stripe offset $offset != 1"
16265                 local size=$($GETSTRIPE -S $f)
16266                 [ $size -eq $((def_stripe_size * 2)) ] ||
16267                         error "$f stripe size $size != $((def_stripe_size * 2))"
16268                 local pool=$($GETSTRIPE -p $f)
16269                 [ $pool == $test_pool ] || error "$f pool $pool != $test_pool"
16270         done
16271
16272         # change fs default striping, delete parent default striping, now child
16273         # will stripe from new fs default striping only
16274         $SETSTRIPE -c 1 -S $def_stripe_size -i 0 $MOUNT ||
16275                 error "change $MOUNT default stripe failed"
16276         $SETSTRIPE -c 0 $DIR/$tdir || error "delete $tdir default stripe failed"
16277         for i in $(seq 11 20); do
16278                 local f=$DIR/$tdir/$tfile.$i
16279                 touch $f || error "touch $f failed"
16280                 local count=$($GETSTRIPE -c $f)
16281                 [ $count -eq 1 ] || error "$f stripe count $count != 1"
16282                 local offset=$($GETSTRIPE -i $f)
16283                 [ $offset -eq 0 ] || error "$f stripe offset $offset != 0"
16284                 local size=$($GETSTRIPE -S $f)
16285                 [ $size -eq $def_stripe_size ] ||
16286                         error "$f stripe size $size != $def_stripe_size"
16287                 local pool=$($GETSTRIPE -p $f)
16288                 [ "#$pool" == "#" ] || error "$f pool $pool is set"
16289
16290         done
16291
16292         unlinkmany $DIR/$tdir/$tfile. 1 20
16293
16294         # restore FS default striping
16295         if [ -z $def_pool ]; then
16296                 $SETSTRIPE -c $def_stripe_count -S $def_stripe_size \
16297                         -i $def_stripe_offset $MOUNT ||
16298                         error "restore default striping failed"
16299         else
16300                 $SETSTRIPE -c $def_stripe_count -S $def_stripe_size \
16301                         -i $def_stripe_offset -p $def_pool $MOUNT ||
16302                         error "restore default striping with $def_pool failed"
16303         fi
16304
16305         local f=$DIR/$tdir/$tfile
16306         pool_remove_all_targets $test_pool $f
16307         pool_remove $test_pool $f
16308 }
16309 run_test 406 "DNE support fs default striping"
16310
16311 test_407() {
16312         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
16313         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.55) ]] &&
16314                 skip "Need MDS version at least 2.8.55" && return
16315         remote_mds_nodsh && skip "remote MDS with nodsh" && return
16316
16317         $LFS mkdir -i 0 -c 1 $DIR/$tdir.0 ||
16318                 error "$LFS mkdir -i 0 -c 1 $tdir.0 failed"
16319         $LFS mkdir -i 1 -c 1 $DIR/$tdir.1 ||
16320                 error "$LFS mkdir -i 1 -c 1 $tdir.1 failed"
16321         touch $DIR/$tdir.0/$tfile.0 || error "touch $tdir.0/$tfile.0 failed"
16322
16323         #define OBD_FAIL_DT_TXN_STOP    0x2019
16324         for idx in $(seq $MDSCOUNT); do
16325                 do_facet mds$idx "lctl set_param fail_loc=0x2019"
16326         done
16327         $LFS mkdir -c 2 $DIR/$tdir && error "$LFS mkdir -c 2 $tdir should fail"
16328         mv $DIR/$tdir.0/$tfile.0 $DIR/$tdir.1/$tfile.1 &&
16329                 error "mv $tdir.0/$tfile.0 $tdir.1/$tfile.1 should fail"
16330         true
16331 }
16332 run_test 407 "transaction fail should cause operation fail"
16333
16334 test_408() {
16335         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 oflag=direct
16336
16337         #define OBD_FAIL_OSC_BRW_PREP_REQ2        0x40a
16338         lctl set_param fail_loc=0x8000040a
16339         # let ll_prepare_partial_page() fail
16340         dd if=/dev/zero of=$DIR/$tfile bs=2048 count=1 conv=notrunc || true
16341
16342         rm -f $DIR/$tfile
16343
16344         # create at least 100 unused inodes so that
16345         # shrink_icache_memory(0) should not return 0
16346         touch $DIR/$tfile-{0..100}
16347         rm -f $DIR/$tfile-{0..100}
16348         sync
16349
16350         echo 2 > /proc/sys/vm/drop_caches
16351 }
16352 run_test 408 "drop_caches should not hang due to page leaks"
16353
16354 test_409()
16355 {
16356         [ $MDSCOUNT -lt 2 ] &&
16357                 skip "We need at least 2 MDTs for this test" && return
16358
16359         check_mount_and_prep
16360
16361         mkdir -p $DIR/$tdir || error "(0) Fail to mkdir"
16362         $LFS mkdir -i 1 -c 2 $DIR/$tdir/foo || error "(1) Fail to mkdir"
16363         touch $DIR/$tdir/guard || error "(2) Fail to create"
16364
16365         local PREFIX=$(str_repeat 'A' 128)
16366         echo "Create 1K hard links start at $(date)"
16367         createmany -l $DIR/$tdir/guard $DIR/$tdir/foo/${PREFIX}_ 1000 ||
16368                 error "(3) Fail to hard link"
16369
16370         echo "Links count should be right although linkEA overflow"
16371         stat $DIR/$tdir/guard || error "(4) Fail to stat"
16372         local linkcount=$(stat --format=%h $DIR/$tdir/guard)
16373         [ $linkcount -eq 1001 ] ||
16374                 error "(5) Unexpected hard links count: $linkcount"
16375
16376         echo "List all links start at $(date)"
16377         ls -l $DIR/$tdir/foo > /dev/null ||
16378                 error "(6) Fail to list $DIR/$tdir/foo"
16379
16380         echo "Unlink hard links start at $(date)"
16381         unlinkmany $DIR/$tdir/foo/${PREFIX}_ 1000 ||
16382                 error "(7) Fail to unlink"
16383 }
16384 run_test 409 "Large amount of cross-MDTs hard links on the same file"
16385
16386 test_410()
16387 {
16388         [[ $(lustre_version_code client) -lt $(version_code 2.9.59) ]] &&
16389                 skip "Need client version at least 2.9.59" && return
16390
16391         # Create a file, and stat it from the kernel
16392         local testfile=$DIR/$tfile
16393         touch $testfile
16394
16395         local run_id=$RANDOM
16396         local my_ino=$(stat --format "%i" $testfile)
16397
16398         # Try to insert the module. This will always fail as the
16399         # module is designed to not be inserted.
16400         insmod $LUSTRE/tests/kernel/kinode.ko run_id=$run_id fname=$testfile \
16401             &> /dev/null
16402
16403         # Anything but success is a test failure
16404         dmesg | grep -q \
16405             "lustre_kinode_$run_id: inode numbers are identical: $my_ino" ||
16406             error "no inode match"
16407 }
16408 run_test 410 "Test inode number returned from kernel thread"
16409
16410 cleanup_test411_cgroup() {
16411         trap 0
16412         rmdir "$1"
16413 }
16414
16415 test_411() {
16416         local cg_basedir=/sys/fs/cgroup/memory
16417         # LU-9966
16418         test -f "$cg_basedir/memory.kmem.limit_in_bytes" ||
16419                 { skip "no setup for cgroup"; return; }
16420
16421         dd if=/dev/zero of=$DIR/$tfile bs=1M count=100 conv=fsync ||
16422                 error "test file creation failed"
16423         cancel_lru_locks osc
16424
16425         # Create a very small memory cgroup to force a slab allocation error
16426         local cgdir=$cg_basedir/osc_slab_alloc
16427         mkdir $cgdir || error "cgroup mkdir '$cgdir' failed"
16428         trap "cleanup_test411_cgroup $cgdir" EXIT
16429         echo 2M > $cgdir/memory.kmem.limit_in_bytes
16430         echo 1M > $cgdir/memory.limit_in_bytes
16431
16432         # Should not LBUG, just be killed by oom-killer
16433         sh -c "echo \$$ > $cgdir/tasks && dd if=$DIR/$tfile of=/dev/null" &&
16434                 error "fail to trigger a memory allocation error"
16435
16436         cleanup_test411_cgroup $cgdir
16437
16438         return 0
16439 }
16440 run_test 411 "Slab allocation error with cgroup does not LBUG"
16441
16442 prep_801() {
16443         [[ $(lustre_version_code mds1) -lt $(version_code 2.9.55) ]] ||
16444         [[ $(lustre_version_code ost1) -lt $(version_code 2.9.55) ]] &&
16445                 skip "Need server version at least 2.9.55" & exit 0
16446         start_full_debug_logging
16447 }
16448
16449 post_801() {
16450         stop_full_debug_logging
16451 }
16452
16453 barrier_stat() {
16454         if [ $(lustre_version_code mgs) -le $(version_code 2.10.0) ]; then
16455                 local st=$(do_facet mgs $LCTL barrier_stat $FSNAME |
16456                            awk '/The barrier for/ { print $7 }')
16457                 echo $st
16458         else
16459                 local st=$(do_facet mgs $LCTL barrier_stat -s $FSNAME)
16460                 echo \'$st\'
16461         fi
16462 }
16463
16464 barrier_expired() {
16465         local expired
16466
16467         if [ $(lustre_version_code mgs) -le $(version_code 2.10.0) ]; then
16468                 expired=$(do_facet mgs $LCTL barrier_stat $FSNAME |
16469                           awk '/will be expired/ { print $7 }')
16470         else
16471                 expired=$(do_facet mgs $LCTL barrier_stat -t $FSNAME)
16472         fi
16473
16474         echo $expired
16475 }
16476
16477 test_801a() {
16478         prep_801
16479
16480         echo "Start barrier_freeze at: $(date)"
16481         #define OBD_FAIL_BARRIER_DELAY          0x2202
16482         do_facet mgs $LCTL set_param fail_val=5 fail_loc=0x2202
16483         do_facet mgs $LCTL barrier_freeze $FSNAME 10 &
16484
16485         sleep 2
16486         local b_status=$(barrier_stat)
16487         echo "Got barrier status at: $(date)"
16488         [ "$b_status" = "'freezing_p1'" ] ||
16489                 error "(1) unexpected barrier status $b_status"
16490
16491         do_facet mgs $LCTL set_param fail_val=0 fail_loc=0
16492         wait
16493         b_status=$(barrier_stat)
16494         [ "$b_status" = "'frozen'" ] ||
16495                 error "(2) unexpected barrier status $b_status"
16496
16497         local expired=$(barrier_expired)
16498         echo "sleep $((expired + 3)) seconds, then the barrier will be expired"
16499         sleep $((expired + 3))
16500
16501         b_status=$(barrier_stat)
16502         [ "$b_status" = "'expired'" ] ||
16503                 error "(3) unexpected barrier status $b_status"
16504
16505         do_facet mgs $LCTL barrier_freeze $FSNAME 10 ||
16506                 error "(4) fail to freeze barrier"
16507
16508         b_status=$(barrier_stat)
16509         [ "$b_status" = "'frozen'" ] ||
16510                 error "(5) unexpected barrier status $b_status"
16511
16512         echo "Start barrier_thaw at: $(date)"
16513         #define OBD_FAIL_BARRIER_DELAY          0x2202
16514         do_facet mgs $LCTL set_param fail_val=5 fail_loc=0x2202
16515         do_facet mgs $LCTL barrier_thaw $FSNAME &
16516
16517         sleep 2
16518         b_status=$(barrier_stat)
16519         echo "Got barrier status at: $(date)"
16520         [ "$b_status" = "'thawing'" ] ||
16521                 error "(6) unexpected barrier status $b_status"
16522
16523         do_facet mgs $LCTL set_param fail_val=0 fail_loc=0
16524         wait
16525         b_status=$(barrier_stat)
16526         [ "$b_status" = "'thawed'" ] ||
16527                 error "(7) unexpected barrier status $b_status"
16528
16529         #define OBD_FAIL_BARRIER_FAILURE        0x2203
16530         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x2203
16531         do_facet mgs $LCTL barrier_freeze $FSNAME
16532
16533         b_status=$(barrier_stat)
16534         [ "$b_status" = "'failed'" ] ||
16535                 error "(8) unexpected barrier status $b_status"
16536
16537         do_facet $SINGLEMDS $LCTL set_param fail_loc=0
16538         do_facet mgs $LCTL barrier_thaw $FSNAME
16539
16540         post_801
16541 }
16542 run_test 801a "write barrier user interfaces and stat machine"
16543
16544 test_801b() {
16545         prep_801
16546
16547         mkdir $DIR/$tdir || error "(1) fail to mkdir"
16548         createmany -d $DIR/$tdir/d 6 || "(2) fail to mkdir"
16549         touch $DIR/$tdir/d2/f10 || error "(3) fail to touch"
16550         touch $DIR/$tdir/d3/f11 || error "(4) fail to touch"
16551         touch $DIR/$tdir/d4/f12 || error "(5) fail to touch"
16552
16553         cancel_lru_locks mdc
16554
16555         # 180 seconds should be long enough
16556         do_facet mgs $LCTL barrier_freeze $FSNAME 180
16557
16558         local b_status=$(barrier_stat)
16559         [ "$b_status" = "'frozen'" ] ||
16560                 error "(6) unexpected barrier status $b_status"
16561
16562         mkdir $DIR/$tdir/d0/d10 &
16563         mkdir_pid=$!
16564
16565         touch $DIR/$tdir/d1/f13 &
16566         touch_pid=$!
16567
16568         ln $DIR/$tdir/d2/f10 $DIR/$tdir/d2/f14 &
16569         ln_pid=$!
16570
16571         mv $DIR/$tdir/d3/f11 $DIR/$tdir/d3/f15 &
16572         mv_pid=$!
16573
16574         rm -f $DIR/$tdir/d4/f12 &
16575         rm_pid=$!
16576
16577         stat $DIR/$tdir/d5 || error "(7) stat should succeed"
16578
16579         # To guarantee taht the 'stat' is not blocked
16580         b_status=$(barrier_stat)
16581         [ "$b_status" = "'frozen'" ] ||
16582                 error "(8) unexpected barrier status $b_status"
16583
16584         # let above commands to run at background
16585         sleep 5
16586
16587         ps -p $mkdir_pid || error "(9) mkdir should be blocked"
16588         ps -p $touch_pid || error "(10) touch should be blocked"
16589         ps -p $ln_pid || error "(11) link should be blocked"
16590         ps -p $mv_pid || error "(12) rename should be blocked"
16591         ps -p $rm_pid || error "(13) unlink should be blocked"
16592
16593         b_status=$(barrier_stat)
16594         [ "$b_status" = "'frozen'" ] ||
16595                 error "(14) unexpected barrier status $b_status"
16596
16597         do_facet mgs $LCTL barrier_thaw $FSNAME
16598         b_status=$(barrier_stat)
16599         [ "$b_status" = "'thawed'" ] ||
16600                 error "(15) unexpected barrier status $b_status"
16601
16602         wait $mkdir_pid || error "(16) mkdir should succeed"
16603         wait $touch_pid || error "(17) touch should succeed"
16604         wait $ln_pid || error "(18) link should succeed"
16605         wait $mv_pid || error "(19) rename should succeed"
16606         wait $rm_pid || error "(20) unlink should succeed"
16607
16608         post_801
16609 }
16610 run_test 801b "modification will be blocked by write barrier"
16611
16612 test_801c() {
16613         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 2 MDTs" && return
16614
16615         prep_801
16616
16617         stop mds2 || error "(1) Fail to stop mds2"
16618
16619         do_facet mgs $LCTL barrier_freeze $FSNAME 30
16620
16621         local b_status=$(barrier_stat)
16622         [ "$b_status" = "'expired'" -o "$b_status" = "'failed'" ] || {
16623                 do_facet mgs $LCTL barrier_thaw $FSNAME
16624                 error "(2) unexpected barrier status $b_status"
16625         }
16626
16627         do_facet mgs $LCTL barrier_rescan $FSNAME ||
16628                 error "(3) Fail to rescan barrier bitmap"
16629
16630         do_facet mgs $LCTL barrier_freeze $FSNAME 10
16631
16632         b_status=$(barrier_stat)
16633         [ "$b_status" = "'frozen'" ] ||
16634                 error "(4) unexpected barrier status $b_status"
16635
16636         do_facet mgs $LCTL barrier_thaw $FSNAME
16637         b_status=$(barrier_stat)
16638         [ "$b_status" = "'thawed'" ] ||
16639                 error "(5) unexpected barrier status $b_status"
16640
16641         local devname=$(mdsdevname 2)
16642
16643         start mds2 $devname $MDS_MOUNT_OPTS || error "(6) Fail to start mds2"
16644
16645         do_facet mgs $LCTL barrier_rescan $FSNAME ||
16646                 error "(7) Fail to rescan barrier bitmap"
16647
16648         post_801
16649 }
16650 run_test 801c "rescan barrier bitmap"
16651
16652 saved_MGS_MOUNT_OPTS=$MGS_MOUNT_OPTS
16653 saved_MDS_MOUNT_OPTS=$MDS_MOUNT_OPTS
16654 saved_OST_MOUNT_OPTS=$OST_MOUNT_OPTS
16655
16656 cleanup_802() {
16657         trap 0
16658
16659         stopall
16660         MGS_MOUNT_OPTS=$saved_MGS_MOUNT_OPTS
16661         MDS_MOUNT_OPTS=$saved_MDS_MOUNT_OPTS
16662         OST_MOUNT_OPTS=$saved_OST_MOUNT_OPTS
16663         setupall
16664 }
16665
16666 test_802() {
16667
16668         [[ $(lustre_version_code mds1) -lt $(version_code 2.9.55) ]] ||
16669         [[ $(lustre_version_code ost1) -lt $(version_code 2.9.55) ]] &&
16670                 skip "Need server version at least 2.9.55" & exit 0
16671
16672         mkdir $DIR/$tdir || error "(1) fail to mkdir"
16673
16674         cp $LUSTRE/tests/test-framework.sh $DIR/$tdir/ ||
16675                 error "(2) Fail to copy"
16676
16677         trap cleanup_802 EXIT
16678
16679         # sync by force before remount as readonly
16680         sync; sync_all_data; sleep 3; sync_all_data
16681
16682         stopall
16683
16684         MGS_MOUNT_OPTS=$(csa_add "$MGS_MOUNT_OPTS" -o rdonly_dev)
16685         MDS_MOUNT_OPTS=$(csa_add "$MDS_MOUNT_OPTS" -o rdonly_dev)
16686         OST_MOUNT_OPTS=$(csa_add "$OST_MOUNT_OPTS" -o rdonly_dev)
16687
16688         echo "Mount the server as read only"
16689         setupall server_only || error "(3) Fail to start servers"
16690
16691         echo "Mount client without ro should fail"
16692         mount_client $MOUNT &&
16693                 error "(4) Mount client without 'ro' should fail"
16694
16695         echo "Mount client with ro should succeed"
16696         mount_client $MOUNT ro ||
16697                 error "(5) Mount client with 'ro' should succeed"
16698
16699         echo "Modify should be refused"
16700         touch $DIR/$tdir/guard && error "(6) Touch should fail under ro mode"
16701
16702         echo "Read should be allowed"
16703         diff $LUSTRE/tests/test-framework.sh $DIR/$tdir/test-framework.sh ||
16704                 error "(7) Read should succeed under ro mode"
16705
16706         cleanup_802
16707 }
16708 run_test 802 "simulate readonly device"
16709
16710 #
16711 # tests that do cleanup/setup should be run at the end
16712 #
16713
16714 test_900() {
16715         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
16716         local ls
16717         #define OBD_FAIL_MGC_PAUSE_PROCESS_LOG   0x903
16718         $LCTL set_param fail_loc=0x903
16719
16720         cancel_lru_locks MGC
16721
16722         FAIL_ON_ERROR=true cleanup
16723         FAIL_ON_ERROR=true setup
16724 }
16725 run_test 900 "umount should not race with any mgc requeue thread"
16726
16727 complete $SECONDS
16728 [ -f $EXT2_DEV ] && rm $EXT2_DEV || true
16729 check_and_cleanup_lustre
16730 if [ "$I_MOUNTED" != "yes" ]; then
16731         lctl set_param debug="$OLDDEBUG" 2> /dev/null || true
16732 fi
16733 exit_status