Whamcloud - gitweb
c3d875280c2d69dc7d7c9fc8893bb581a2cdfbae
[fs/lustre-release.git] / lustre / tests / sanity.sh
1 #!/bin/bash
2 # -*- tab-width: 8; indent-tabs-mode: t; -*-
3 #
4 # Run select tests by setting ONLY, or as arguments to the script.
5 # Skip specific tests by setting EXCEPT.
6 #
7 # e.g. ONLY="22 23" or ONLY="`seq 32 39`" or EXCEPT="31"
8 set -e
9
10 ONLY=${ONLY:-"$*"}
11 # bug number for skipped test: LU-9693 LU-6493 LU-9693 3561 5188
12 ALWAYS_EXCEPT="                42a    42b      42c     45   68b $SANITY_EXCEPT"
13 # UPDATE THE COMMENT ABOVE WITH BUG NUMBERS WHEN CHANGING ALWAYS_EXCEPT!
14
15 # skipped tests: LU-8411 LU-9096 LU-9054
16 ALWAYS_EXCEPT="  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-4536 LU-1957
85         ALWAYS_EXCEPT="$ALWAYS_EXCEPT  65ic    180"
86         #                                               13    (min)"
87         [ "$SLOW" = "no" ] && EXCEPT_SLOW="$EXCEPT_SLOW 51b"
88 fi
89
90 FAIL_ON_ERROR=false
91
92 cleanup() {
93         echo -n "cln.."
94         pgrep ll_sa > /dev/null && { echo "There are ll_sa thread not exit!"; exit 20; }
95         cleanupall ${FORCE} $* || { echo "FAILed to clean up"; exit 20; }
96 }
97 setup() {
98         echo -n "mnt.."
99         load_modules
100         setupall || exit 10
101         echo "done"
102 }
103
104 check_swap_layouts_support()
105 {
106         $LCTL get_param -n llite.*.sbi_flags | grep -q layout ||
107                 { skip "Does not support layout lock."; return 0; }
108         return 1
109 }
110
111 check_and_setup_lustre
112 DIR=${DIR:-$MOUNT}
113 assert_DIR
114
115 MDT0=$($LCTL get_param -n mdc.*.mds_server_uuid |
116         awk '{ gsub(/_UUID/,""); print $1 }' | head -n1)
117 MAXFREE=${MAXFREE:-$((200000 * $OSTCOUNT))}
118
119 [ -f $DIR/d52a/foo ] && chattr -a $DIR/d52a/foo
120 [ -f $DIR/d52b/foo ] && chattr -i $DIR/d52b/foo
121 rm -rf $DIR/[Rdfs][0-9]*
122
123 # $RUNAS_ID may get set incorrectly somewhere else
124 [ $UID -eq 0 -a $RUNAS_ID -eq 0 ] && error "\$RUNAS_ID set to 0, but \$UID is also 0!"
125
126 check_runas_id $RUNAS_ID $RUNAS_GID $RUNAS
127
128 build_test_filter
129
130 if [ "${ONLY}" = "MOUNT" ] ; then
131         echo "Lustre is up, please go on"
132         exit
133 fi
134
135 echo "preparing for tests involving mounts"
136 EXT2_DEV=${EXT2_DEV:-$TMP/SANITY.LOOP}
137 touch $EXT2_DEV
138 mke2fs -j -F $EXT2_DEV 8000 > /dev/null
139 echo # add a newline after mke2fs.
140
141 umask 077
142
143 OLDDEBUG=$(lctl get_param -n debug 2> /dev/null)
144 lctl set_param debug=-1 2> /dev/null || true
145 test_0a() {
146         touch $DIR/$tfile
147         $CHECKSTAT -t file $DIR/$tfile || error "$tfile is not a file"
148         rm $DIR/$tfile
149         $CHECKSTAT -a $DIR/$tfile || error "$tfile was not removed"
150 }
151 run_test 0a "touch; rm ====================="
152
153 test_0b() {
154         chmod 0755 $DIR || error "chmod 0755 $DIR failed"
155         $CHECKSTAT -p 0755 $DIR || error "$DIR permission is not 0755"
156 }
157 run_test 0b "chmod 0755 $DIR ============================="
158
159 test_0c() {
160         $LCTL get_param mdc.*.import | grep "state: FULL" ||
161                 error "import not FULL"
162         $LCTL get_param mdc.*.import | grep "target: $FSNAME-MDT" ||
163                 error "bad target"
164 }
165 run_test 0c "check import proc ============================="
166
167 test_1() {
168         test_mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
169         test_mkdir -p $DIR/$tdir/d2 || error "mkdir $tdir/d2 failed"
170         test_mkdir $DIR/$tdir/d2 && error "we expect EEXIST, but not returned"
171         $CHECKSTAT -t dir $DIR/$tdir/d2 || error "$tdir/d2 is not a dir"
172         rmdir $DIR/$tdir/d2
173         rmdir $DIR/$tdir
174         $CHECKSTAT -a $DIR/$tdir || error "$tdir was not removed"
175 }
176 run_test 1 "mkdir; remkdir; rmdir =============================="
177
178 test_2() {
179         test_mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
180         touch $DIR/$tdir/$tfile || error "touch $tdir/$tfile failed"
181         $CHECKSTAT -t file $DIR/$tdir/$tfile || error "$tdir/$tfile not a file"
182         rm -r $DIR/$tdir
183         $CHECKSTAT -a $DIR/$tdir/$tfile || error "$tdir/$file is not removed"
184 }
185 run_test 2 "mkdir; touch; rmdir; check file ===================="
186
187 test_3() {
188         test_mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
189         $CHECKSTAT -t dir $DIR/$tdir || error "$tdir is not a directory"
190         touch $DIR/$tdir/$tfile
191         $CHECKSTAT -t file $DIR/$tdir/$tfile || error "$tdir/$tfile not a file"
192         rm -r $DIR/$tdir
193         $CHECKSTAT -a $DIR/$tdir || error "$tdir is not removed"
194 }
195 run_test 3 "mkdir; touch; rmdir; check dir ====================="
196
197 # LU-4471 - failed rmdir on remote directories still removes directory on MDT0
198 test_4() {
199         local MDTIDX=1
200
201         test_mkdir $DIR/$tdir ||
202                 error "Create remote directory failed"
203
204         touch $DIR/$tdir/$tfile ||
205                 error "Create file under remote directory failed"
206
207         rmdir $DIR/$tdir &&
208                 error "Expect error removing in-use dir $DIR/$tdir"
209
210         test -d $DIR/$tdir || error "Remote directory disappeared"
211
212         rm -rf $DIR/$tdir || error "remove remote dir error"
213 }
214 run_test 4 "mkdir; touch dir/file; rmdir; checkdir (expect error)"
215
216 test_5() {
217         test_mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
218         test_mkdir $DIR/$tdir/d2 || error "mkdir $tdir/d2 failed"
219         chmod 0707 $DIR/$tdir/d2 || error "chmod 0707 $tdir/d2 failed"
220         $CHECKSTAT -t dir -p 0707 $DIR/$tdir/d2 || error "$tdir/d2 not mode 707"
221         $CHECKSTAT -t dir $DIR/$tdir/d2 || error "$tdir/d2 is not a directory"
222 }
223 run_test 5 "mkdir .../d5 .../d5/d2; chmod .../d5/d2 ============"
224
225 test_6a() {
226         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
227         chmod 0666 $DIR/$tfile || error "chmod 0666 $tfile failed"
228         $CHECKSTAT -t file -p 0666 -u \#$UID $DIR/$tfile ||
229                 error "$tfile does not have perm 0666 or UID $UID"
230         $RUNAS chmod 0444 $DIR/$tfile && error "chmod $tfile worked on UID $UID"
231         $CHECKSTAT -t file -p 0666 -u \#$UID $DIR/$tfile ||
232                 error "$tfile should be 0666 and owned by UID $UID"
233 }
234 run_test 6a "touch f6a; chmod f6a; $RUNAS chmod f6a (should return error) =="
235
236 test_6c() {
237         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID" && return
238         touch $DIR/$tfile
239         chown $RUNAS_ID $DIR/$tfile || error "chown $RUNAS_ID $file failed"
240         $CHECKSTAT -t file -u \#$RUNAS_ID $DIR/$tfile ||
241                 error "$tfile should be owned by UID $RUNAS_ID"
242         $RUNAS chown $UID $DIR/$tfile && error "chown $UID $file succeeded"
243         $CHECKSTAT -t file -u \#$RUNAS_ID $DIR/$tfile ||
244                 error "$tfile should be owned by UID $RUNAS_ID"
245 }
246 run_test 6c "touch f6c; chown f6c; $RUNAS chown f6c (should return error) =="
247
248 test_6e() {
249         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID" && return
250         touch $DIR/$tfile
251         chgrp $RUNAS_ID $DIR/$tfile || error "chgrp $RUNAS_ID $file failed"
252         $CHECKSTAT -t file -u \#$UID -g \#$RUNAS_ID $DIR/$tfile ||
253                 error "$tfile should be owned by GID $UID"
254         $RUNAS chgrp $UID $DIR/$tfile && error "chgrp $UID $file succeeded"
255         $CHECKSTAT -t file -u \#$UID -g \#$RUNAS_ID $DIR/$tfile ||
256                 error "$tfile should be owned by UID $UID and GID $RUNAS_ID"
257 }
258 run_test 6e "touch f6e; chgrp f6e; $RUNAS chgrp f6e (should return error) =="
259
260 test_6g() {
261         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID" && return
262         test_mkdir $DIR/$tdir || error "mkdir $tfile failed"
263         chmod 777 $DIR/$tdir || error "chmod 0777 $tdir failed"
264         $RUNAS mkdir $DIR/$tdir/d || error "mkdir $tdir/d failed"
265         chmod g+s $DIR/$tdir/d || error "chmod g+s $tdir/d failed"
266         test_mkdir $DIR/$tdir/d/subdir || error "mkdir $tdir/d/subdir failed"
267         $CHECKSTAT -g \#$RUNAS_GID $DIR/$tdir/d/subdir ||
268                 error "$tdir/d/subdir should be GID $RUNAS_GID"
269         if [[ $MDSCOUNT -gt 1 ]]; then
270                 # check remote dir sgid inherite
271                 $LFS mkdir -i 0 $DIR/$tdir.local ||
272                         error "mkdir $tdir.local failed"
273                 chmod g+s $DIR/$tdir.local ||
274                         error "chmod $tdir.local failed"
275                 chgrp $RUNAS_GID $DIR/$tdir.local ||
276                         error "chgrp $tdir.local failed"
277                 $LFS mkdir -i 1 $DIR/$tdir.local/$tdir.remote ||
278                         error "mkdir $tdir.remote failed"
279                 $CHECKSTAT -g \#$RUNAS_GID $DIR/$tdir.local/$tdir.remote ||
280                         error "$tdir.remote should be owned by $UID.$RUNAS_ID"
281                 $CHECKSTAT -p 02755 $DIR/$tdir.local/$tdir.remote ||
282                         error "$tdir.remote should be mode 02755"
283         fi
284 }
285 run_test 6g "Is new dir in sgid dir inheriting group?"
286
287 test_6h() { # bug 7331
288         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID" && return
289         touch $DIR/$tfile || error "touch failed"
290         chown $RUNAS_ID:$RUNAS_GID $DIR/$tfile || error "initial chown failed"
291         $RUNAS -G$RUNAS_GID chown $RUNAS_ID:0 $DIR/$tfile &&
292                 error "chown $RUNAS_ID:0 $tfile worked as GID $RUNAS_GID"
293         $CHECKSTAT -t file -u \#$RUNAS_ID -g \#$RUNAS_GID $DIR/$tfile ||
294                 error "$tdir/$tfile should be UID $RUNAS_UID GID $RUNAS_GID"
295 }
296 run_test 6h "$RUNAS chown RUNAS_ID.0 .../f6h (should return error)"
297
298 test_7a() {
299         test_mkdir $DIR/$tdir
300         $MCREATE $DIR/$tdir/$tfile
301         chmod 0666 $DIR/$tdir/$tfile
302         $CHECKSTAT -t file -p 0666 $DIR/$tdir/$tfile ||
303                 error "$tdir/$tfile should be mode 0666"
304 }
305 run_test 7a "mkdir .../d7; mcreate .../d7/f; chmod .../d7/f ===="
306
307 test_7b() {
308         if [ ! -d $DIR/$tdir ]; then
309                 test_mkdir $DIR/$tdir
310         fi
311         $MCREATE $DIR/$tdir/$tfile
312         echo -n foo > $DIR/$tdir/$tfile
313         [ "$(cat $DIR/$tdir/$tfile)" = "foo" ] || error "$tdir/$tfile not 'foo'"
314         $CHECKSTAT -t file -s 3 $DIR/$tdir/$tfile || error "$tfile size not 3"
315 }
316 run_test 7b "mkdir .../d7; mcreate d7/f2; echo foo > d7/f2 ====="
317
318 test_8() {
319         test_mkdir $DIR/$tdir
320         touch $DIR/$tdir/$tfile
321         chmod 0666 $DIR/$tdir/$tfile
322         $CHECKSTAT -t file -p 0666 $DIR/$tdir/$tfile ||
323                 error "$tfile mode not 0666"
324 }
325 run_test 8 "mkdir .../d8; touch .../d8/f; chmod .../d8/f ======="
326
327 test_9() {
328         test_mkdir $DIR/$tdir
329         test_mkdir $DIR/$tdir/d2
330         test_mkdir $DIR/$tdir/d2/d3
331         $CHECKSTAT -t dir $DIR/$tdir/d2/d3 || error "$tdir/d2/d3 not a dir"
332 }
333 run_test 9 "mkdir .../d9 .../d9/d2 .../d9/d2/d3 ================"
334
335 test_10() {
336         test_mkdir $DIR/$tdir
337         test_mkdir $DIR/$tdir/d2
338         touch $DIR/$tdir/d2/$tfile
339         $CHECKSTAT -t file $DIR/$tdir/d2/$tfile ||
340                 error "$tdir/d2/$tfile not a file"
341 }
342 run_test 10 "mkdir .../d10 .../d10/d2; touch .../d10/d2/f ======"
343
344 test_11() {
345         test_mkdir $DIR/$tdir
346         test_mkdir $DIR/$tdir/d2
347         chmod 0666 $DIR/$tdir/d2
348         chmod 0705 $DIR/$tdir/d2
349         $CHECKSTAT -t dir -p 0705 $DIR/$tdir/d2 ||
350                 error "$tdir/d2 mode not 0705"
351 }
352 run_test 11 "mkdir .../d11 d11/d2; chmod .../d11/d2 ============"
353
354 test_12() {
355         test_mkdir $DIR/$tdir
356         touch $DIR/$tdir/$tfile
357         chmod 0666 $DIR/$tdir/$tfile
358         chmod 0654 $DIR/$tdir/$tfile
359         $CHECKSTAT -t file -p 0654 $DIR/$tdir/$tfile ||
360                 error "$tdir/d2 mode not 0654"
361 }
362 run_test 12 "touch .../d12/f; chmod .../d12/f .../d12/f ========"
363
364 test_13() {
365         test_mkdir $DIR/$tdir
366         dd if=/dev/zero of=$DIR/$tdir/$tfile count=10
367         >  $DIR/$tdir/$tfile
368         $CHECKSTAT -t file -s 0 $DIR/$tdir/$tfile ||
369                 error "$tdir/$tfile size not 0 after truncate"
370 }
371 run_test 13 "creat .../d13/f; dd .../d13/f; > .../d13/f ========"
372
373 test_14() {
374         test_mkdir $DIR/$tdir
375         touch $DIR/$tdir/$tfile
376         rm $DIR/$tdir/$tfile
377         $CHECKSTAT -a $DIR/$tdir/$tfile || error "$tdir/$tfile not removed"
378 }
379 run_test 14 "touch .../d14/f; rm .../d14/f; rm .../d14/f ======="
380
381 test_15() {
382         test_mkdir $DIR/$tdir
383         touch $DIR/$tdir/$tfile
384         mv $DIR/$tdir/$tfile $DIR/$tdir/${tfile}_2
385         $CHECKSTAT -t file $DIR/$tdir/${tfile}_2 ||
386                 error "$tdir/${tfile_2} not a file after rename"
387         rm $DIR/$tdir/${tfile}_2 || error "unlink failed after rename"
388 }
389 run_test 15 "touch .../d15/f; mv .../d15/f .../d15/f2 =========="
390
391 test_16() {
392         test_mkdir $DIR/$tdir
393         touch $DIR/$tdir/$tfile
394         rm -rf $DIR/$tdir/$tfile
395         $CHECKSTAT -a $DIR/$tdir/$tfile || error "$tdir/$tfile not removed"
396 }
397 run_test 16 "touch .../d16/f; rm -rf .../d16/f ================="
398
399 test_17a() {
400         test_mkdir -p $DIR/$tdir
401         touch $DIR/$tdir/$tfile
402         ln -s $DIR/$tdir/$tfile $DIR/$tdir/l-exist
403         ls -l $DIR/$tdir
404         $CHECKSTAT -l $DIR/$tdir/$tfile $DIR/$tdir/l-exist ||
405                 error "$tdir/l-exist not a symlink"
406         $CHECKSTAT -f -t f $DIR/$tdir/l-exist ||
407                 error "$tdir/l-exist not referencing a file"
408         rm -f $DIR/$tdir/l-exist
409         $CHECKSTAT -a $DIR/$tdir/l-exist || error "$tdir/l-exist not removed"
410 }
411 run_test 17a "symlinks: create, remove (real) =================="
412
413 test_17b() {
414         test_mkdir -p $DIR/$tdir
415         ln -s no-such-file $DIR/$tdir/l-dangle
416         ls -l $DIR/$tdir
417         $CHECKSTAT -l no-such-file $DIR/$tdir/l-dangle ||
418                 error "$tdir/l-dangle not referencing no-such-file"
419         $CHECKSTAT -fa $DIR/$tdir/l-dangle ||
420                 error "$tdir/l-dangle not referencing non-existent file"
421         rm -f $DIR/$tdir/l-dangle
422         $CHECKSTAT -a $DIR/$tdir/l-dangle || error "$tdir/l-dangle not removed"
423 }
424 run_test 17b "symlinks: create, remove (dangling) =============="
425
426 test_17c() { # bug 3440 - don't save failed open RPC for replay
427         test_mkdir -p $DIR/$tdir
428         ln -s foo $DIR/$tdir/$tfile
429         cat $DIR/$tdir/$tfile && error "opened non-existent symlink" || true
430 }
431 run_test 17c "symlinks: open dangling (should return error) ===="
432
433 test_17d() {
434         test_mkdir -p $DIR/$tdir
435         ln -s foo $DIR/$tdir/$tfile
436         touch $DIR/$tdir/$tfile || error "creating to new symlink"
437 }
438 run_test 17d "symlinks: create dangling ========================"
439
440 test_17e() {
441         test_mkdir -p $DIR/$tdir
442         local foo=$DIR/$tdir/$tfile
443         ln -s $foo $foo || error "create symlink failed"
444         ls -l $foo || error "ls -l failed"
445         ls $foo && error "ls not failed" || true
446 }
447 run_test 17e "symlinks: create recursive symlink (should return error) ===="
448
449 test_17f() {
450         test_mkdir -p $DIR/$tdir
451         ln -s 1234567890/2234567890/3234567890/4234567890 $DIR/$tdir/111
452         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890 $DIR/$tdir/222
453         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890 $DIR/$tdir/333
454         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890/9234567890/a234567890/b234567890 $DIR/$tdir/444
455         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890/9234567890/a234567890/b234567890/c234567890/d234567890/f234567890 $DIR/$tdir/555
456         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890/9234567890/a234567890/b234567890/c234567890/d234567890/f234567890/aaaaaaaaaa/bbbbbbbbbb/cccccccccc/dddddddddd/eeeeeeeeee/ffffffffff/ $DIR/$tdir/666
457         ls -l  $DIR/$tdir
458 }
459 run_test 17f "symlinks: long and very long symlink name ========================"
460
461 # str_repeat(S, N) generate a string that is string S repeated N times
462 str_repeat() {
463         local s=$1
464         local n=$2
465         local ret=''
466         while [ $((n -= 1)) -ge 0 ]; do
467                 ret=$ret$s
468         done
469         echo $ret
470 }
471
472 # Long symlinks and LU-2241
473 test_17g() {
474         test_mkdir -p $DIR/$tdir
475         local TESTS="59 60 61 4094 4095"
476
477         # Fix for inode size boundary in 2.1.4
478         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.1.4) ] &&
479                 TESTS="4094 4095"
480
481         # Patch not applied to 2.2 or 2.3 branches
482         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] &&
483         [ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.3.55) ] &&
484                 TESTS="4094 4095"
485
486         # skip long symlink name for rhel6.5.
487         # rhel6.5 has a limit (PATH_MAX - sizeof(struct filename))
488         grep -q '6.5' /etc/redhat-release &>/dev/null &&
489                 TESTS="59 60 61 4062 4063"
490
491         for i in $TESTS; do
492                 local SYMNAME=$(str_repeat 'x' $i)
493                 ln -s $SYMNAME $DIR/$tdir/f$i || error "failed $i-char symlink"
494                 readlink $DIR/$tdir/f$i || error "failed $i-char readlink"
495         done
496 }
497 run_test 17g "symlinks: really long symlink name and inode boundaries"
498
499 test_17h() { #bug 17378
500         remote_mds_nodsh && skip "remote MDS with nodsh" && return
501         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
502         local mdt_idx
503         test_mkdir -p $DIR/$tdir
504         if [[ $MDSCOUNT -gt 1 ]]; then
505                 mdt_idx=$($LFS getdirstripe -i $DIR/$tdir)
506         else
507                 mdt_idx=0
508         fi
509         $SETSTRIPE -c -1 $DIR/$tdir
510 #define OBD_FAIL_MDS_LOV_PREP_CREATE 0x141
511         do_facet mds$((mdt_idx + 1)) lctl set_param fail_loc=0x80000141
512         touch $DIR/$tdir/$tfile || true
513 }
514 run_test 17h "create objects: lov_free_memmd() doesn't lbug"
515
516 test_17i() { #bug 20018
517         remote_mds_nodsh && skip "remote MDS with nodsh" && return
518         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
519         test_mkdir -c1 $DIR/$tdir
520         local foo=$DIR/$tdir/$tfile
521         local mdt_idx
522         if [[ $MDSCOUNT -gt 1 ]]; then
523                 mdt_idx=$($LFS getdirstripe -i $DIR/$tdir)
524         else
525                 mdt_idx=0
526         fi
527         ln -s $foo $foo || error "create symlink failed"
528 #define OBD_FAIL_MDS_READLINK_EPROTO     0x143
529         do_facet mds$((mdt_idx + 1)) lctl set_param fail_loc=0x80000143
530         ls -l $foo && error "error not detected"
531         return 0
532 }
533 run_test 17i "don't panic on short symlink"
534
535 test_17k() { #bug 22301
536         [[ -z "$(which rsync 2>/dev/null)" ]] &&
537                 skip "no rsync command" && return 0
538         rsync --help | grep -q xattr ||
539                 skip_env "$(rsync --version | head -n1) does not support xattrs"
540         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return 0
541         test_mkdir -p $DIR/$tdir
542         test_mkdir -p $DIR/$tdir.new
543         touch $DIR/$tdir/$tfile
544         ln -s $DIR/$tdir/$tfile $DIR/$tdir/$tfile.lnk
545         rsync -av -X $DIR/$tdir/ $DIR/$tdir.new ||
546                 error "rsync failed with xattrs enabled"
547 }
548 run_test 17k "symlinks: rsync with xattrs enabled ========================="
549
550 test_17l() { # LU-279
551         [[ -z "$(which getfattr 2>/dev/null)" ]] &&
552                 skip "no getfattr command" && return 0
553         test_mkdir -p $DIR/$tdir
554         touch $DIR/$tdir/$tfile
555         ln -s $DIR/$tdir/$tfile $DIR/$tdir/$tfile.lnk
556         for path in "$DIR/$tdir" "$DIR/$tdir/$tfile" "$DIR/$tdir/$tfile.lnk"; do
557                 # -h to not follow symlinks. -m '' to list all the xattrs.
558                 # grep to remove first line: '# file: $path'.
559                 for xattr in `getfattr -hm '' $path 2>/dev/null | grep -v '^#'`;
560                 do
561                         lgetxattr_size_check $path $xattr ||
562                                 error "lgetxattr_size_check $path $xattr failed"
563                 done
564         done
565 }
566 run_test 17l "Ensure lgetxattr's returned xattr size is consistent ========"
567
568 # LU-1540
569 test_17m() {
570         local short_sym="0123456789"
571         local WDIR=$DIR/${tdir}m
572         local i
573
574         remote_mds_nodsh && skip "remote MDS with nodsh" && return
575         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] &&
576         [ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.2.93) ] &&
577                 skip "MDS 2.2.0-2.2.93 do not NUL-terminate symlinks" && return
578
579         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
580                 skip "ldiskfs only test" && return 0
581
582         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
583
584         test_mkdir -p $WDIR
585         long_sym=$short_sym
586         # create a long symlink file
587         for ((i = 0; i < 4; ++i)); do
588                 long_sym=${long_sym}${long_sym}
589         done
590
591         echo "create 512 short and long symlink files under $WDIR"
592         for ((i = 0; i < 256; ++i)); do
593                 ln -sf ${long_sym}"a5a5" $WDIR/long-$i
594                 ln -sf ${short_sym}"a5a5" $WDIR/short-$i
595         done
596
597         echo "erase them"
598         rm -f $WDIR/*
599         sync
600         wait_delete_completed
601
602         echo "recreate the 512 symlink files with a shorter string"
603         for ((i = 0; i < 512; ++i)); do
604                 # rewrite the symlink file with a shorter string
605                 ln -sf ${long_sym} $WDIR/long-$i || error "long_sym failed"
606                 ln -sf ${short_sym} $WDIR/short-$i || error "short_sym failed"
607         done
608
609         local mds_index=$(($($LFS getstripe -M $WDIR) + 1))
610         local devname=$(mdsdevname $mds_index)
611
612         echo "stop and checking mds${mds_index}:"
613         # e2fsck should not return error
614         stop mds${mds_index}
615         run_e2fsck $(facet_active_host mds${mds_index}) $devname -n
616         rc=$?
617
618         start mds${mds_index} $devname $MDS_MOUNT_OPTS || error "start failed"
619         df $MOUNT > /dev/null 2>&1
620         [ $rc -eq 0 ] ||
621                 error "e2fsck detected error for short/long symlink: rc=$rc"
622 }
623 run_test 17m "run e2fsck against MDT which contains short/long symlink"
624
625 check_fs_consistency_17n() {
626         local mdt_index
627         local rc=0
628
629         # create/unlink in 17n only change 2 MDTs(MDT1/MDT2),
630         # so it only check MDT1/MDT2 instead of all of MDTs.
631         for mdt_index in 1 2; do
632                 local devname=$(mdsdevname $mdt_index)
633                 # e2fsck should not return error
634                 stop mds${mdt_index}
635                 run_e2fsck $(facet_active_host mds$mdt_index) $devname -n ||
636                         rc=$((rc + $?))
637
638                 start mds${mdt_index} $devname $MDS_MOUNT_OPTS ||
639                         error "mount mds$mdt_index failed"
640                 df $MOUNT > /dev/null 2>&1
641         done
642         return $rc
643 }
644
645 test_17n() {
646         local i
647
648         remote_mds_nodsh && skip "remote MDS with nodsh" && return
649         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] &&
650         [ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.2.93) ] &&
651                 skip "MDS 2.2.0-2.2.93 do not NUL-terminate symlinks" && return
652
653         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
654                 skip "ldiskfs only test" && return 0
655
656         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 2 MDTs" && return
657
658         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
659
660         test_mkdir $DIR/$tdir
661         for ((i=0; i<10; i++)); do
662                 $LFS mkdir -i1 -c2 $DIR/$tdir/remote_dir_${i} ||
663                         error "create remote dir error $i"
664                 createmany -o $DIR/$tdir/remote_dir_${i}/f 10 ||
665                         error "create files under remote dir failed $i"
666         done
667
668         check_fs_consistency_17n ||
669                 error "e2fsck report error after create files under remote dir"
670
671         for ((i = 0; i < 10; i++)); do
672                 rm -rf $DIR/$tdir/remote_dir_${i} ||
673                         error "destroy remote dir error $i"
674         done
675
676         check_fs_consistency_17n ||
677                 error "e2fsck report error after unlink files under remote dir"
678
679         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.50) ] &&
680                 skip "lustre < 2.4.50 does not support migrate mv " && return
681
682         for ((i = 0; i < 10; i++)); do
683                 mkdir -p $DIR/$tdir/remote_dir_${i}
684                 createmany -o $DIR/$tdir/remote_dir_${i}/f 10 ||
685                         error "create files under remote dir failed $i"
686                 $LFS migrate --mdt-index 1 $DIR/$tdir/remote_dir_${i} ||
687                         error "migrate remote dir error $i"
688         done
689         check_fs_consistency_17n || error "e2fsck report error after migration"
690
691         for ((i = 0; i < 10; i++)); do
692                 rm -rf $DIR/$tdir/remote_dir_${i} ||
693                         error "destroy remote dir error $i"
694         done
695
696         check_fs_consistency_17n || error "e2fsck report error after unlink"
697 }
698 run_test 17n "run e2fsck against master/slave MDT which contains remote dir"
699
700 test_17o() {
701         remote_mds_nodsh && skip "remote MDS with nodsh" && return
702         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.64) ] &&
703                 skip "Need MDS version at least 2.3.64" && return
704
705         local WDIR=$DIR/${tdir}o
706         local mdt_index
707         local rc=0
708
709         test_mkdir -p $WDIR
710         touch $WDIR/$tfile
711         mdt_index=$($LFS getstripe -M $WDIR/$tfile)
712         mdt_index=$((mdt_index+1))
713
714         cancel_lru_locks mdc
715         #fail mds will wait the failover finish then set
716         #following fail_loc to avoid interfer the recovery process.
717         fail mds${mdt_index}
718
719         #define OBD_FAIL_OSD_LMA_INCOMPAT 0x194
720         do_facet mds${mdt_index} lctl set_param fail_loc=0x194
721         ls -l $WDIR/$tfile && rc=1
722         do_facet mds${mdt_index} lctl set_param fail_loc=0
723         [[ $rc -ne 0 ]] && error "stat file should fail"
724         true
725 }
726 run_test 17o "stat file with incompat LMA feature"
727
728 test_18() {
729         touch $DIR/$tfile || error "Failed to touch $DIR/$tfile: $?"
730         ls $DIR || error "Failed to ls $DIR: $?"
731 }
732 run_test 18 "touch .../f ; ls ... =============================="
733
734 test_19a() {
735         touch $DIR/$tfile
736         ls -l $DIR
737         rm $DIR/$tfile
738         $CHECKSTAT -a $DIR/$tfile || error "$tfile was not removed"
739 }
740 run_test 19a "touch .../f19 ; ls -l ... ; rm .../f19 ==========="
741
742 test_19b() {
743         ls -l $DIR/$tfile && error "ls -l $tfile failed"|| true
744 }
745 run_test 19b "ls -l .../f19 (should return error) =============="
746
747 test_19c() {
748         [ $RUNAS_ID -eq $UID ] &&
749                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
750         $RUNAS touch $DIR/$tfile && error "create non-root file failed" || true
751 }
752 run_test 19c "$RUNAS touch .../f19 (should return error) =="
753
754 test_19d() {
755         cat $DIR/f19 && error || true
756 }
757 run_test 19d "cat .../f19 (should return error) =============="
758
759 test_20() {
760         touch $DIR/$tfile
761         rm $DIR/$tfile
762         touch $DIR/$tfile
763         rm $DIR/$tfile
764         touch $DIR/$tfile
765         rm $DIR/$tfile
766         $CHECKSTAT -a $DIR/$tfile || error "$tfile was not removed"
767 }
768 run_test 20 "touch .../f ; ls -l ... ==========================="
769
770 test_21() {
771         test_mkdir -p $DIR/$tdir
772         [ -f $DIR/$tdir/dangle ] && rm -f $DIR/$tdir/dangle
773         ln -s dangle $DIR/$tdir/link
774         echo foo >> $DIR/$tdir/link
775         cat $DIR/$tdir/dangle
776         $CHECKSTAT -t link $DIR/$tdir/link || error "$tdir/link not a link"
777         $CHECKSTAT -f -t file $DIR/$tdir/link ||
778                 error "$tdir/link not linked to a file"
779 }
780 run_test 21 "write to dangling link ============================"
781
782 test_22() {
783         WDIR=$DIR/$tdir
784         test_mkdir -p $DIR/$tdir
785         chown $RUNAS_ID:$RUNAS_GID $WDIR
786         (cd $WDIR || error "cd $WDIR failed";
787         $RUNAS tar cf - /etc/hosts /etc/sysconfig/network | \
788         $RUNAS tar xf -)
789         ls -lR $WDIR/etc || error "ls -lR $WDIR/etc failed"
790         $CHECKSTAT -t dir $WDIR/etc || error "checkstat -t dir failed"
791         $CHECKSTAT -u \#$RUNAS_ID -g \#$RUNAS_GID $WDIR/etc || error "checkstat -u failed"
792 }
793 run_test 22 "unpack tar archive as non-root user ==============="
794
795 # was test_23
796 test_23a() {
797         test_mkdir -p $DIR/$tdir
798         local file=$DIR/$tdir/$tfile
799
800         openfile -f O_CREAT:O_EXCL $file || error "$file create failed"
801         openfile -f O_CREAT:O_EXCL $file &&
802                 error "$file recreate succeeded" || true
803 }
804 run_test 23a "O_CREAT|O_EXCL in subdir =========================="
805
806 test_23b() { # bug 18988
807         test_mkdir -p $DIR/$tdir
808         local file=$DIR/$tdir/$tfile
809
810         rm -f $file
811         echo foo > $file || error "write filed"
812         echo bar >> $file || error "append filed"
813         $CHECKSTAT -s 8 $file || error "wrong size"
814         rm $file
815 }
816 run_test 23b "O_APPEND check =========================="
817
818 # rename sanity
819 test_24a() {
820         echo '-- same directory rename'
821         test_mkdir $DIR/$tdir
822         touch $DIR/$tdir/$tfile.1
823         mv $DIR/$tdir/$tfile.1 $DIR/$tdir/$tfile.2
824         $CHECKSTAT -t file $DIR/$tdir/$tfile.2 || error "$tfile.2 not a file"
825 }
826 run_test 24a "rename file to non-existent target"
827
828 test_24b() {
829         test_mkdir $DIR/$tdir
830         touch $DIR/$tdir/$tfile.{1,2}
831         mv $DIR/$tdir/$tfile.1 $DIR/$tdir/$tfile.2
832         $CHECKSTAT -a $DIR/$tdir/$tfile.1 || error "$tfile.1 exists"
833         $CHECKSTAT -t file $DIR/$tdir/$tfile.2 || error "$tfile.2 not a file"
834 }
835 run_test 24b "rename file to existing target"
836
837 test_24c() {
838         test_mkdir $DIR/$tdir
839         test_mkdir $DIR/$tdir/d$testnum.1
840         mv $DIR/$tdir/d$testnum.1 $DIR/$tdir/d$testnum.2
841         $CHECKSTAT -a $DIR/$tdir/d$testnum.1 || error "d$testnum.1 exists"
842         $CHECKSTAT -t dir $DIR/$tdir/d$testnum.2 || error "d$testnum.2 not dir"
843 }
844 run_test 24c "rename directory to non-existent target"
845
846 test_24d() {
847         test_mkdir -c1 $DIR/$tdir
848         test_mkdir -c1 $DIR/$tdir/d$testnum.1
849         test_mkdir -c1 $DIR/$tdir/d$testnum.2
850         mrename $DIR/$tdir/d$testnum.1 $DIR/$tdir/d$testnum.2
851         $CHECKSTAT -a $DIR/$tdir/d$testnum.1 || error "d$testnum.1 exists"
852         $CHECKSTAT -t dir $DIR/$tdir/d$testnum.2 || error "d$testnum.2 not dir"
853 }
854 run_test 24d "rename directory to existing target"
855
856 test_24e() {
857         echo '-- cross directory renames --'
858         test_mkdir $DIR/R5a
859         test_mkdir $DIR/R5b
860         touch $DIR/R5a/f
861         mv $DIR/R5a/f $DIR/R5b/g
862         $CHECKSTAT -a $DIR/R5a/f || error
863         $CHECKSTAT -t file $DIR/R5b/g || error
864 }
865 run_test 24e "touch .../R5a/f; rename .../R5a/f .../R5b/g ======"
866
867 test_24f() {
868         test_mkdir $DIR/R6a
869         test_mkdir $DIR/R6b
870         touch $DIR/R6a/f $DIR/R6b/g
871         mv $DIR/R6a/f $DIR/R6b/g
872         $CHECKSTAT -a $DIR/R6a/f || error
873         $CHECKSTAT -t file $DIR/R6b/g || error
874 }
875 run_test 24f "touch .../R6a/f R6b/g; mv .../R6a/f .../R6b/g ===="
876
877 test_24g() {
878         test_mkdir $DIR/R7a
879         test_mkdir $DIR/R7b
880         test_mkdir $DIR/R7a/d
881         mv $DIR/R7a/d $DIR/R7b/e
882         $CHECKSTAT -a $DIR/R7a/d || error
883         $CHECKSTAT -t dir $DIR/R7b/e || error
884 }
885 run_test 24g "mkdir .../R7{a,b}/d; mv .../R7a/d .../R7b/e ======"
886
887 test_24h() {
888         test_mkdir -c1 $DIR/R8a
889         test_mkdir -c1 $DIR/R8b
890         test_mkdir -c1 $DIR/R8a/d
891         test_mkdir -c1 $DIR/R8b/e
892         mrename $DIR/R8a/d $DIR/R8b/e
893         $CHECKSTAT -a $DIR/R8a/d || error
894         $CHECKSTAT -t dir $DIR/R8b/e || error
895 }
896 run_test 24h "mkdir .../R8{a,b}/{d,e}; rename .../R8a/d .../R8b/e"
897
898 test_24i() {
899         echo "-- rename error cases"
900         test_mkdir $DIR/R9
901         test_mkdir $DIR/R9/a
902         touch $DIR/R9/f
903         mrename $DIR/R9/f $DIR/R9/a
904         $CHECKSTAT -t file $DIR/R9/f || error
905         $CHECKSTAT -t dir  $DIR/R9/a || error
906         $CHECKSTAT -a $DIR/R9/a/f || error
907 }
908 run_test 24i "rename file to dir error: touch f ; mkdir a ; rename f a"
909
910 test_24j() {
911         test_mkdir $DIR/R10
912         mrename $DIR/R10/f $DIR/R10/g
913         $CHECKSTAT -t dir $DIR/R10 || error
914         $CHECKSTAT -a $DIR/R10/f || error
915         $CHECKSTAT -a $DIR/R10/g || error
916 }
917 run_test 24j "source does not exist ============================"
918
919 test_24k() {
920         test_mkdir $DIR/R11a
921         test_mkdir $DIR/R11a/d
922         touch $DIR/R11a/f
923         mv $DIR/R11a/f $DIR/R11a/d
924         $CHECKSTAT -a $DIR/R11a/f || error
925         $CHECKSTAT -t file $DIR/R11a/d/f || error
926 }
927 run_test 24k "touch .../R11a/f; mv .../R11a/f .../R11a/d ======="
928
929 # bug 2429 - rename foo foo foo creates invalid file
930 test_24l() {
931         f="$DIR/f24l"
932         $MULTIOP $f OcNs || error
933 }
934 run_test 24l "Renaming a file to itself ========================"
935
936 test_24m() {
937         f="$DIR/f24m"
938         $MULTIOP $f OcLN ${f}2 ${f}2 || error "link ${f}2 ${f}2 failed"
939         # on ext3 this does not remove either the source or target files
940         # though the "expected" operation would be to remove the source
941         $CHECKSTAT -t file ${f} || error "${f} missing"
942         $CHECKSTAT -t file ${f}2 || error "${f}2 missing"
943 }
944 run_test 24m "Renaming a file to a hard link to itself ========="
945
946 test_24n() {
947     f="$DIR/f24n"
948     # this stats the old file after it was renamed, so it should fail
949     touch ${f}
950     $CHECKSTAT ${f}
951     mv ${f} ${f}.rename
952     $CHECKSTAT ${f}.rename
953     $CHECKSTAT -a ${f}
954 }
955 run_test 24n "Statting the old file after renaming (Posix rename 2)"
956
957 test_24o() {
958         test_mkdir -p $DIR/d24o
959         rename_many -s random -v -n 10 $DIR/d24o
960 }
961 run_test 24o "rename of files during htree split ==============="
962
963 test_24p() {
964         test_mkdir $DIR/R12a
965         test_mkdir $DIR/R12b
966         DIRINO=`ls -lid $DIR/R12a | awk '{ print $1 }'`
967         mrename $DIR/R12a $DIR/R12b
968         $CHECKSTAT -a $DIR/R12a || error
969         $CHECKSTAT -t dir $DIR/R12b || error
970         DIRINO2=`ls -lid $DIR/R12b | awk '{ print $1 }'`
971         [ "$DIRINO" = "$DIRINO2" ] || error "R12a $DIRINO != R12b $DIRINO2"
972 }
973 run_test 24p "mkdir .../R12{a,b}; rename .../R12a .../R12b"
974
975 cleanup_multiop_pause() {
976         trap 0
977         kill -USR1 $MULTIPID
978 }
979
980 test_24q() {
981         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
982         test_mkdir $DIR/R13a
983         test_mkdir $DIR/R13b
984         local DIRINO=$(ls -lid $DIR/R13a | awk '{ print $1 }')
985         multiop_bg_pause $DIR/R13b D_c || error "multiop failed to start"
986         MULTIPID=$!
987
988         trap cleanup_multiop_pause EXIT
989         mrename $DIR/R13a $DIR/R13b
990         $CHECKSTAT -a $DIR/R13a || error "R13a still exists"
991         $CHECKSTAT -t dir $DIR/R13b || error "R13b does not exist"
992         local DIRINO2=$(ls -lid $DIR/R13b | awk '{ print $1 }')
993         [ "$DIRINO" = "$DIRINO2" ] || error "R13a $DIRINO != R13b $DIRINO2"
994         cleanup_multiop_pause
995         wait $MULTIPID || error "multiop close failed"
996 }
997 run_test 24q "mkdir .../R13{a,b}; open R13b rename R13a R13b ==="
998
999 test_24r() { #bug 3789
1000         test_mkdir $DIR/R14a
1001         test_mkdir $DIR/R14a/b
1002         mrename $DIR/R14a $DIR/R14a/b && error "rename to subdir worked!"
1003         $CHECKSTAT -t dir $DIR/R14a || error "$DIR/R14a missing"
1004         $CHECKSTAT -t dir $DIR/R14a/b || error "$DIR/R14a/b missing"
1005 }
1006 run_test 24r "mkdir .../R14a/b; rename .../R14a .../R14a/b ====="
1007
1008 test_24s() {
1009         test_mkdir $DIR/R15a
1010         test_mkdir $DIR/R15a/b
1011         test_mkdir $DIR/R15a/b/c
1012         mrename $DIR/R15a $DIR/R15a/b/c && error "rename to sub-subdir worked!"
1013         $CHECKSTAT -t dir $DIR/R15a || error "$DIR/R15a missing"
1014         $CHECKSTAT -t dir $DIR/R15a/b/c || error "$DIR/R15a/b/c missing"
1015 }
1016 run_test 24s "mkdir .../R15a/b/c; rename .../R15a .../R15a/b/c ="
1017 test_24t() {
1018         test_mkdir $DIR/R16a
1019         test_mkdir $DIR/R16a/b
1020         test_mkdir $DIR/R16a/b/c
1021         mrename $DIR/R16a/b/c $DIR/R16a && error "rename to sub-subdir worked!"
1022         $CHECKSTAT -t dir $DIR/R16a || error "$DIR/R16a missing"
1023         $CHECKSTAT -t dir $DIR/R16a/b/c || error "$DIR/R16a/b/c missing"
1024 }
1025 run_test 24t "mkdir .../R16a/b/c; rename .../R16a/b/c .../R16a ="
1026
1027 test_24u() { # bug12192
1028         $MULTIOP $DIR/$tfile C2w$((2048 * 1024))c || error
1029         $CHECKSTAT -s $((2048 * 1024)) $DIR/$tfile || error "wrong file size"
1030 }
1031 run_test 24u "create stripe file"
1032
1033 page_size() {
1034         local size
1035         size=$(getconf PAGE_SIZE 2>/dev/null)
1036         echo -n ${size:-4096}
1037 }
1038
1039 simple_cleanup_common() {
1040         local rc=0
1041         trap 0
1042         [ -z "$DIR" -o -z "$tdir" ] && return 0
1043
1044         local start=$SECONDS
1045         rm -rf $DIR/$tdir
1046         rc=$?
1047         wait_delete_completed
1048         echo "cleanup time $((SECONDS - start))"
1049         return $rc
1050 }
1051
1052 max_pages_per_rpc() {
1053         local mdtname="$(printf "MDT%04x" ${1:-0})"
1054         $LCTL get_param -n mdc.*$mdtname*.max_pages_per_rpc
1055 }
1056
1057 test_24v() {
1058         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1059         local nrfiles=${COUNT:-100000}
1060         # Performance issue on ZFS see LU-4072 (c.f. LU-2887)
1061         [ $(facet_fstype $SINGLEMDS) = "zfs" ] && nrfiles=${COUNT:-10000}
1062
1063         local fname="$DIR/$tdir/$tfile"
1064         test_mkdir "$(dirname $fname)"
1065         # assume MDT0000 has the fewest inodes
1066         local stripes=$($LFS getdirstripe -c $(dirname $fname))
1067         local free_inodes=$(($(mdt_free_inodes 0) * stripes))
1068         [[ $free_inodes -lt $nrfiles ]] && nrfiles=$free_inodes
1069
1070         trap simple_cleanup_common EXIT
1071
1072         createmany -m "$fname" $nrfiles
1073
1074         cancel_lru_locks mdc
1075         lctl set_param mdc.*.stats clear
1076
1077         # was previously test_24D: LU-6101
1078         # readdir() returns correct number of entries after cursor reload
1079         local num_ls=$(ls $DIR/$tdir | wc -l)
1080         local num_uniq=$(ls $DIR/$tdir | sort -u | wc -l)
1081         local num_all=$(ls -a $DIR/$tdir | wc -l)
1082         if [ $num_ls -ne $nrfiles -o $num_uniq -ne $nrfiles -o \
1083              $num_all -ne $((nrfiles + 2)) ]; then
1084                 error "Expected $nrfiles files, got $num_ls " \
1085                         "($num_uniq unique $num_all .&..)"
1086         fi
1087         # LU-5 large readdir
1088         # dirent_size = 32 bytes for sizeof(struct lu_dirent) +
1089         #               N bytes for name (len($nrfiles) rounded to 8 bytes) +
1090         #               8 bytes for luda_type (4 bytes rounded to 8 bytes)
1091         # take into account of overhead in lu_dirpage header and end mark in
1092         # each page, plus one in rpc_num calculation.
1093         local dirent_size=$((32 + (${#tfile} | 7) + 1 + 8))
1094         local page_entries=$((($(page_size) - 24) / dirent_size))
1095         local mdt_idx=$($LFS getdirstripe -i $(dirname $fname))
1096         local rpc_pages=$(max_pages_per_rpc $mdt_idx)
1097         local rpc_max=$((nrfiles / (page_entries * rpc_pages) + stripes))
1098         local mds_readpage=$(calc_stats mdc.*.stats mds_readpage)
1099         echo "readpages: $mds_readpage rpc_max: $rpc_max"
1100         (( $mds_readpage < $rpc_max - 2 || $mds_readpage > $rpc_max + 1)) &&
1101                 error "large readdir doesn't take effect: " \
1102                       "$mds_readpage should be about $rpc_max"
1103
1104         simple_cleanup_common
1105 }
1106 run_test 24v "list large directory (test hash collision, b=17560)"
1107
1108 test_24w() { # bug21506
1109         SZ1=234852
1110         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=4096 || return 1
1111         dd if=/dev/zero bs=$SZ1 count=1 >> $DIR/$tfile || return 2
1112         dd if=$DIR/$tfile of=$DIR/${tfile}_left bs=1M skip=4097 || return 3
1113         SZ2=`ls -l $DIR/${tfile}_left | awk '{print $5}'`
1114         [[ "$SZ1" -eq "$SZ2" ]] ||
1115                 error "Error reading at the end of the file $tfile"
1116 }
1117 run_test 24w "Reading a file larger than 4Gb"
1118
1119 test_24x() {
1120         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 2 MDTs" && return
1121
1122         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.56) ]] &&
1123                 skip "Need MDS version at least 2.7.56" && return
1124
1125         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1126         local MDTIDX=1
1127         local remote_dir=$DIR/$tdir/remote_dir
1128
1129         test_mkdir -p $DIR/$tdir
1130         $LFS mkdir -i $MDTIDX $remote_dir ||
1131                 error "create remote directory failed"
1132
1133         test_mkdir -p $DIR/$tdir/src_dir
1134         touch $DIR/$tdir/src_file
1135         test_mkdir -p $remote_dir/tgt_dir
1136         touch $remote_dir/tgt_file
1137
1138         mrename $DIR/$tdir/src_dir $remote_dir/tgt_dir ||
1139                 error "rename dir cross MDT failed!"
1140
1141         mrename $DIR/$tdir/src_file $remote_dir/tgt_file ||
1142                 error "rename file cross MDT failed!"
1143
1144         touch $DIR/$tdir/ln_file
1145         ln $DIR/$tdir/ln_file $remote_dir/ln_name ||
1146                 error "ln file cross MDT failed"
1147
1148         rm -rf $DIR/$tdir || error "Can not delete directories"
1149 }
1150 run_test 24x "cross MDT rename/link"
1151
1152 test_24y() {
1153         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 2 MDTs" && return
1154         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1155         local MDTIDX=1
1156         local remote_dir=$DIR/$tdir/remote_dir
1157
1158         test_mkdir -p $DIR/$tdir
1159         $LFS mkdir -i $MDTIDX $remote_dir ||
1160                    error "create remote directory failed"
1161
1162         test_mkdir -p $remote_dir/src_dir
1163         touch $remote_dir/src_file
1164         test_mkdir -p $remote_dir/tgt_dir
1165         touch $remote_dir/tgt_file
1166
1167         mrename $remote_dir/src_dir $remote_dir/tgt_dir ||
1168                 error "rename subdir in the same remote dir failed!"
1169
1170         mrename $remote_dir/src_file $remote_dir/tgt_file ||
1171                 error "rename files in the same remote dir failed!"
1172
1173         ln $remote_dir/tgt_file $remote_dir/tgt_file1 ||
1174                 error "link files in the same remote dir failed!"
1175
1176         rm -rf $DIR/$tdir || error "Can not delete directories"
1177 }
1178 run_test 24y "rename/link on the same dir should succeed"
1179
1180 test_24A() { # LU-3182
1181         local NFILES=5000
1182
1183         rm -rf $DIR/$tdir
1184         test_mkdir -p $DIR/$tdir
1185         trap simple_cleanup_common EXIT
1186         createmany -m $DIR/$tdir/$tfile $NFILES
1187         local t=$(ls $DIR/$tdir | wc -l)
1188         local u=$(ls $DIR/$tdir | sort -u | wc -l)
1189         local v=$(ls -ai $DIR/$tdir | sort -u | wc -l)
1190         if [ $t -ne $NFILES -o $u -ne $NFILES -o $v -ne $((NFILES + 2)) ] ; then
1191                 error "Expected $NFILES files, got $t ($u unique $v .&..)"
1192         fi
1193
1194         simple_cleanup_common || error "Can not delete directories"
1195 }
1196 run_test 24A "readdir() returns correct number of entries."
1197
1198 test_24B() { # LU-4805
1199         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
1200         local count
1201
1202         test_mkdir $DIR/$tdir
1203         $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/striped_dir ||
1204                 error "create striped dir failed"
1205
1206         count=$(ls -ai $DIR/$tdir/striped_dir | wc -l)
1207         [ $count -eq 2 ] || error "Expected 2, got $count"
1208
1209         touch $DIR/$tdir/striped_dir/a
1210
1211         count=$(ls -ai $DIR/$tdir/striped_dir | wc -l)
1212         [ $count -eq 3 ] || error "Expected 3, got $count"
1213
1214         touch $DIR/$tdir/striped_dir/.f
1215
1216         count=$(ls -ai $DIR/$tdir/striped_dir | wc -l)
1217         [ $count -eq 4 ] || error "Expected 4, got $count"
1218
1219         rm -rf $DIR/$tdir || error "Can not delete directories"
1220 }
1221 run_test 24B "readdir for striped dir return correct number of entries"
1222
1223 test_24C() {
1224         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
1225
1226         mkdir $DIR/$tdir
1227         mkdir $DIR/$tdir/d0
1228         mkdir $DIR/$tdir/d1
1229
1230         $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/d0/striped_dir ||
1231                 error "create striped dir failed"
1232
1233         cd $DIR/$tdir/d0/striped_dir
1234
1235         local d0_ino=$(ls -i -l -a $DIR/$tdir | grep "d0" | awk '{print $1}')
1236         local d1_ino=$(ls -i -l -a $DIR/$tdir | grep "d1" | awk '{print $1}')
1237         local parent_ino=$(ls -i -l -a | grep "\.\." | awk '{print $1}')
1238
1239         [ "$d0_ino" = "$parent_ino" ] ||
1240                 error ".. wrong, expect $d0_ino, get $parent_ino"
1241
1242         mv $DIR/$tdir/d0/striped_dir $DIR/$tdir/d1/ ||
1243                 error "mv striped dir failed"
1244
1245         parent_ino=$(ls -i -l -a | grep "\.\." | awk '{print $1}')
1246
1247         [ "$d1_ino" = "$parent_ino" ] ||
1248                 error ".. wrong after mv, expect $d1_ino, get $parent_ino"
1249 }
1250 run_test 24C "check .. in striped dir"
1251
1252 test_24E() {
1253         [[ $MDSCOUNT -lt 4 ]] && skip "needs >= 4 MDTs" && return
1254         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1255
1256         mkdir -p $DIR/$tdir
1257         mkdir $DIR/$tdir/src_dir
1258         $LFS mkdir -i 1 $DIR/$tdir/src_dir/src_child ||
1259                 error "create remote source failed"
1260
1261         touch $DIR/$tdir/src_dir/src_child/a
1262
1263         $LFS mkdir -i 2 $DIR/$tdir/tgt_dir ||
1264                 error "create remote target dir failed"
1265
1266         $LFS mkdir -i 3 $DIR/$tdir/tgt_dir/tgt_child ||
1267                 error "create remote target child failed"
1268
1269         mrename $DIR/$tdir/src_dir/src_child $DIR/$tdir/tgt_dir/tgt_child ||
1270                 error "rename dir cross MDT failed!"
1271
1272         find $DIR/$tdir
1273
1274         $CHECKSTAT -t dir $DIR/$tdir/src_dir/src_child &&
1275                 error "src_child still exists after rename"
1276
1277         $CHECKSTAT -t file $DIR/$tdir/tgt_dir/tgt_child/a ||
1278                 error "missing file(a) after rename"
1279
1280         rm -rf $DIR/$tdir || error "Can not delete directories"
1281 }
1282 run_test 24E "cross MDT rename/link"
1283
1284 test_25a() {
1285         echo '== symlink sanity ============================================='
1286
1287         test_mkdir $DIR/d25
1288         ln -s d25 $DIR/s25
1289         touch $DIR/s25/foo || error
1290 }
1291 run_test 25a "create file in symlinked directory ==============="
1292
1293 test_25b() {
1294         [ ! -d $DIR/d25 ] && test_25a
1295         $CHECKSTAT -t file $DIR/s25/foo || error
1296 }
1297 run_test 25b "lookup file in symlinked directory ==============="
1298
1299 test_26a() {
1300         test_mkdir $DIR/d26
1301         test_mkdir $DIR/d26/d26-2
1302         ln -s d26/d26-2 $DIR/s26
1303         touch $DIR/s26/foo || error
1304 }
1305 run_test 26a "multiple component symlink ======================="
1306
1307 test_26b() {
1308         test_mkdir -p $DIR/d26b/d26-2
1309         ln -s d26b/d26-2/foo $DIR/s26-2
1310         touch $DIR/s26-2 || error
1311 }
1312 run_test 26b "multiple component symlink at end of lookup ======"
1313
1314 test_26c() {
1315         test_mkdir $DIR/d26.2
1316         touch $DIR/d26.2/foo
1317         ln -s d26.2 $DIR/s26.2-1
1318         ln -s s26.2-1 $DIR/s26.2-2
1319         ln -s s26.2-2 $DIR/s26.2-3
1320         chmod 0666 $DIR/s26.2-3/foo
1321 }
1322 run_test 26c "chain of symlinks ================================"
1323
1324 # recursive symlinks (bug 439)
1325 test_26d() {
1326         ln -s d26-3/foo $DIR/d26-3
1327 }
1328 run_test 26d "create multiple component recursive symlink ======"
1329
1330 test_26e() {
1331         [ ! -h $DIR/d26-3 ] && test_26d
1332         rm $DIR/d26-3
1333 }
1334 run_test 26e "unlink multiple component recursive symlink ======"
1335
1336 # recursive symlinks (bug 7022)
1337 test_26f() {
1338         test_mkdir -p $DIR/$tdir
1339         test_mkdir $DIR/$tdir/$tfile   || error "mkdir $DIR/$tdir/$tfile failed"
1340         cd $DIR/$tdir/$tfile           || error "cd $DIR/$tdir/$tfile failed"
1341         test_mkdir -p lndir/bar1      || error "mkdir lndir/bar1 failed"
1342         test_mkdir $DIR/$tdir/$tfile/$tfile   || error "mkdir $tfile failed"
1343         cd $tfile                || error "cd $tfile failed"
1344         ln -s .. dotdot          || error "ln dotdot failed"
1345         ln -s dotdot/lndir lndir || error "ln lndir failed"
1346         cd $DIR/$tdir                 || error "cd $DIR/$tdir failed"
1347         output=`ls $tfile/$tfile/lndir/bar1`
1348         [ "$output" = bar1 ] && error "unexpected output"
1349         rm -r $tfile             || error "rm $tfile failed"
1350         $CHECKSTAT -a $DIR/$tfile || error "$tfile not gone"
1351 }
1352 run_test 26f "rm -r of a directory which has recursive symlink"
1353
1354 test_27a() {
1355         test_mkdir -p $DIR/d27 || error "mkdir failed"
1356         $LFS getstripe $DIR/d27
1357         $LFS setstripe -c 1 $DIR/d27/f0 || error "setstripe failed"
1358         $CHECKSTAT -t file $DIR/d27/f0 || error "checkstat failed"
1359         cp /etc/hosts $DIR/d27/f0 || error
1360 }
1361 run_test 27a "one stripe file"
1362
1363 test_27b() {
1364         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
1365         test_mkdir -p $DIR/d27
1366         $LFS setstripe -c 2 $DIR/d27/f01 || error "setstripe failed"
1367         $LFS getstripe -c $DIR/d27/f01
1368         [ $($LFS getstripe -c $DIR/d27/f01) -eq 2 ] ||
1369                 error "two-stripe file doesn't have two stripes"
1370
1371         dd if=/dev/zero of=$DIR/d27/f01 bs=4k count=4 || error "dd failed"
1372 }
1373 run_test 27b "create and write to two stripe file"
1374
1375 test_27d() {
1376         test_mkdir -p $DIR/d27
1377         $LFS setstripe -c 0 -i -1 -S 0 $DIR/d27/fdef || error "setstripe failed"
1378         $CHECKSTAT -t file $DIR/d27/fdef || error "checkstat failed"
1379         dd if=/dev/zero of=$DIR/d27/fdef bs=4k count=4 || error
1380 }
1381 run_test 27d "create file with default settings"
1382
1383 test_27e() {
1384         # LU-5839 adds check for existed layout before setting it
1385         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.56) ]] &&
1386                 skip "Need MDS version at least 2.7.56" && return
1387         test_mkdir -p $DIR/d27
1388         $LFS setstripe -c 2 $DIR/d27/f12 || error "setstripe failed"
1389         $LFS setstripe -c 2 $DIR/d27/f12 && error "setstripe succeeded twice"
1390         $CHECKSTAT -t file $DIR/d27/f12 || error "checkstat failed"
1391 }
1392 run_test 27e "setstripe existing file (should return error)"
1393
1394 test_27f() {
1395         test_mkdir $DIR/$tdir
1396         $LFS setstripe -S 100 -i 0 -c 1 $DIR/$tdir/$tfile &&
1397                 error "$SETSTRIPE $DIR/$tdir/$tfile failed"
1398         $CHECKSTAT -t file $DIR/$tdir/$tfile &&
1399                 error "$CHECKSTAT -t file $DIR/$tdir/$tfile should fail"
1400         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=4k count=4 || error "dd failed"
1401         $LFS getstripe $DIR/$tdir/$tfile || error "$LFS getstripe failed"
1402 }
1403 run_test 27f "setstripe with bad stripe size (should return error)"
1404
1405 test_27g() {
1406         test_mkdir -p $DIR/d27
1407         $MCREATE $DIR/d27/fnone || error "mcreate failed"
1408         $LFS getstripe $DIR/d27/fnone 2>&1 | grep "no stripe info" ||
1409                 error "$DIR/d27/fnone has object"
1410 }
1411 run_test 27g "$LFS getstripe with no objects"
1412
1413 test_27i() {
1414         test_mkdir $DIR/$tdir
1415         touch $DIR/$tdir/$tfile || error "touch failed"
1416         [[ $($LFS getstripe -c $DIR/$tdir/$tfile) -gt 0 ]] ||
1417                 error "missing objects"
1418 }
1419 run_test 27i "$LFS getstripe with some objects"
1420
1421 test_27j() {
1422         test_mkdir -p $DIR/d27
1423         $LFS setstripe -i $OSTCOUNT $DIR/d27/f27j &&
1424                 error "setstripe failed" || true
1425 }
1426 run_test 27j "setstripe with bad stripe offset (should return error)"
1427
1428 test_27k() { # bug 2844
1429         test_mkdir -p $DIR/d27
1430         FILE=$DIR/d27/f27k
1431         LL_MAX_BLKSIZE=$((4 * 1024 * 1024))
1432         [ ! -d $DIR/d27 ] && test_mkdir -p $DIR d27
1433         $LFS setstripe -S 67108864 $FILE || error "setstripe failed"
1434         BLKSIZE=$(stat $FILE | awk '/IO Block:/ { print $7 }')
1435         [ $BLKSIZE -le $LL_MAX_BLKSIZE ] || error "1:$BLKSIZE > $LL_MAX_BLKSIZE"
1436         dd if=/dev/zero of=$FILE bs=4k count=1
1437         BLKSIZE=$(stat $FILE | awk '/IO Block:/ { print $7 }')
1438         [ $BLKSIZE -le $LL_MAX_BLKSIZE ] || error "2:$BLKSIZE > $LL_MAX_BLKSIZE"
1439 }
1440 run_test 27k "limit i_blksize for broken user apps"
1441
1442 test_27l() {
1443         test_mkdir -p $DIR/d27
1444         mcreate $DIR/f27l || error "creating file"
1445         $RUNAS $SETSTRIPE -c 1 $DIR/f27l &&
1446                 error "setstripe should have failed" || true
1447 }
1448 run_test 27l "check setstripe permissions (should return error)"
1449
1450 test_27m() {
1451         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
1452
1453         ORIGFREE=$($LCTL get_param -n lov.$FSNAME-clilov-*.kbytesavail |
1454                    head -n1)
1455         if [[ $ORIGFREE -gt $MAXFREE ]]; then
1456                 skip "$ORIGFREE > $MAXFREE skipping out-of-space test on OST0"
1457                 return
1458         fi
1459         trap simple_cleanup_common EXIT
1460         test_mkdir -p $DIR/$tdir
1461         $LFS setstripe -i 0 -c 1 $DIR/$tdir/f27m_1
1462         dd if=/dev/zero of=$DIR/$tdir/f27m_1 bs=1024 count=$MAXFREE &&
1463                 error "dd should fill OST0"
1464         i=2
1465         while $LFS setstripe -i 0 -c 1 $DIR/$tdir/f27m_$i; do
1466                 i=$((i + 1))
1467                 [ $i -gt 256 ] && break
1468         done
1469         i=$((i + 1))
1470         touch $DIR/$tdir/f27m_$i
1471         [ $($LFS getstripe $DIR/$tdir/f27m_$i | grep -A 10 obdidx |
1472             awk '{print $1}' | grep -w "0") ] &&
1473                 error "OST0 was full but new created file still use it"
1474         i=$((i + 1))
1475         touch $DIR/$tdir/f27m_$i
1476         [ $($LFS getstripe $DIR/$tdir/f27m_$i | grep -A 10 obdidx |
1477             awk '{print $1}'| grep -w "0") ] &&
1478                 error "OST0 was full but new created file still use it"
1479         simple_cleanup_common
1480 }
1481 run_test 27m "create file while OST0 was full"
1482
1483 sleep_maxage() {
1484         local DELAY=$(do_facet $SINGLEMDS lctl get_param -n lov.*.qos_maxage |
1485                       head -n 1 | awk '{print $1 * 2}')
1486         sleep $DELAY
1487 }
1488
1489 # OSCs keep a NOSPC flag that will be reset after ~5s (qos_maxage)
1490 # if the OST isn't full anymore.
1491 reset_enospc() {
1492         local OSTIDX=${1:-""}
1493
1494         local list=$(comma_list $(osts_nodes))
1495         [ "$OSTIDX" ] && list=$(facet_host ost$((OSTIDX + 1)))
1496
1497         do_nodes $list lctl set_param fail_loc=0
1498         sync    # initiate all OST_DESTROYs from MDS to OST
1499         sleep_maxage
1500 }
1501
1502 exhaust_precreations() {
1503         local OSTIDX=$1
1504         local FAILLOC=$2
1505         local FAILIDX=${3:-$OSTIDX}
1506         local ofacet=ost$((OSTIDX + 1))
1507
1508         test_mkdir -p -c1 $DIR/$tdir
1509         local mdtidx=$($LFS getstripe -M $DIR/$tdir)
1510         local mfacet=mds$((mdtidx + 1))
1511         echo OSTIDX=$OSTIDX MDTIDX=$mdtidx
1512
1513         local OST=$(ostname_from_index $OSTIDX)
1514
1515         # on the mdt's osc
1516         local mdtosc_proc1=$(get_mdtosc_proc_path $mfacet $OST)
1517         local last_id=$(do_facet $mfacet lctl get_param -n \
1518                         osc.$mdtosc_proc1.prealloc_last_id)
1519         local next_id=$(do_facet $mfacet lctl get_param -n \
1520                         osc.$mdtosc_proc1.prealloc_next_id)
1521
1522         local mdtosc_proc2=$(get_mdtosc_proc_path $mfacet)
1523         do_facet $mfacet lctl get_param osc.$mdtosc_proc2.prealloc*
1524
1525         test_mkdir -p $DIR/$tdir/${OST}
1526         $SETSTRIPE -i $OSTIDX -c 1 $DIR/$tdir/${OST}
1527 #define OBD_FAIL_OST_ENOSPC              0x215
1528         do_facet $ofacet lctl set_param fail_val=$FAILIDX fail_loc=0x215
1529         echo "Creating to objid $last_id on ost $OST..."
1530         createmany -o $DIR/$tdir/${OST}/f $next_id $((last_id - next_id + 2))
1531         do_facet $mfacet lctl get_param osc.$mdtosc_proc2.prealloc*
1532         do_facet $ofacet lctl set_param fail_loc=$FAILLOC
1533         sleep_maxage
1534 }
1535
1536 exhaust_all_precreations() {
1537         local i
1538         for (( i=0; i < OSTCOUNT; i++ )) ; do
1539                 exhaust_precreations $i $1 -1
1540         done
1541 }
1542
1543 test_27n() {
1544         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
1545         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1546         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1547         remote_ost_nodsh && skip "remote OST with nodsh" && return
1548
1549         reset_enospc
1550         rm -f $DIR/$tdir/$tfile
1551         exhaust_precreations 0 0x80000215
1552         $LFS setstripe -c -1 $DIR/$tdir
1553         touch $DIR/$tdir/$tfile || error
1554         $LFS getstripe $DIR/$tdir/$tfile
1555         reset_enospc
1556 }
1557 run_test 27n "create file with some full OSTs"
1558
1559 test_27o() {
1560         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
1561         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1562         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1563         remote_ost_nodsh && skip "remote OST with nodsh" && return
1564
1565         reset_enospc
1566         rm -f $DIR/$tdir/$tfile
1567         exhaust_all_precreations 0x215
1568
1569         touch $DIR/$tdir/$tfile && error "able to create $DIR/$tdir/$tfile"
1570
1571         reset_enospc
1572         rm -rf $DIR/$tdir/*
1573 }
1574 run_test 27o "create file with all full OSTs (should error)"
1575
1576 test_27p() {
1577         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
1578         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1579         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1580         remote_ost_nodsh && skip "remote OST with nodsh" && return
1581
1582         reset_enospc
1583         rm -f $DIR/$tdir/$tfile
1584         test_mkdir -p $DIR/$tdir
1585
1586         $MCREATE $DIR/$tdir/$tfile || error "mcreate failed"
1587         $TRUNCATE $DIR/$tdir/$tfile 80000000 || error "truncate failed"
1588         $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat failed"
1589
1590         exhaust_precreations 0 0x80000215
1591         echo foo >> $DIR/$tdir/$tfile || error "append failed"
1592         $CHECKSTAT -s 80000004 $DIR/$tdir/$tfile || error "checkstat failed"
1593         $LFS getstripe $DIR/$tdir/$tfile
1594
1595         reset_enospc
1596 }
1597 run_test 27p "append to a truncated file with some full OSTs"
1598
1599 test_27q() {
1600         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
1601         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1602         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1603         remote_ost_nodsh && skip "remote OST with nodsh" && return
1604
1605         reset_enospc
1606         rm -f $DIR/$tdir/$tfile
1607
1608         test_mkdir -p $DIR/$tdir
1609         $MCREATE $DIR/$tdir/$tfile || error "mcreate $DIR/$tdir/$tfile failed"
1610         $TRUNCATE $DIR/$tdir/$tfile 80000000 ||
1611                 error "truncate $DIR/$tdir/$tfile failed"
1612         $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat failed"
1613
1614         exhaust_all_precreations 0x215
1615
1616         echo foo >> $DIR/$tdir/$tfile && error "append succeeded"
1617         $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat 2 failed"
1618
1619         reset_enospc
1620 }
1621 run_test 27q "append to truncated file with all OSTs full (should error)"
1622
1623 test_27r() {
1624         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
1625         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1626         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1627         remote_ost_nodsh && skip "remote OST with nodsh" && return
1628
1629         reset_enospc
1630         rm -f $DIR/$tdir/$tfile
1631         exhaust_precreations 0 0x80000215
1632
1633         $LFS setstripe -i 0 -c 2 $DIR/$tdir/$tfile # && error
1634
1635         reset_enospc
1636 }
1637 run_test 27r "stripe file with some full OSTs (shouldn't LBUG) ="
1638
1639 test_27s() { # bug 10725
1640         test_mkdir -p $DIR/$tdir
1641         local stripe_size=$((4096 * 1024 * 1024))       # 2^32
1642         local stripe_count=0
1643         [ $OSTCOUNT -eq 1 ] || stripe_count=2
1644         $LFS setstripe -S $stripe_size -c $stripe_count $DIR/$tdir &&
1645                 error "stripe width >= 2^32 succeeded" || true
1646
1647 }
1648 run_test 27s "lsm_xfersize overflow (should error) (bug 10725)"
1649
1650 test_27t() { # bug 10864
1651         WDIR=$(pwd)
1652         WLFS=$(which lfs)
1653         cd $DIR
1654         touch $tfile
1655         $WLFS getstripe $tfile
1656         cd $WDIR
1657 }
1658 run_test 27t "check that utils parse path correctly"
1659
1660 test_27u() { # bug 4900
1661         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
1662         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1663         local index
1664         local list=$(comma_list $(mdts_nodes))
1665
1666 #define OBD_FAIL_MDS_OSC_PRECREATE      0x139
1667         do_nodes $list $LCTL set_param fail_loc=0x139
1668         test_mkdir -p $DIR/$tdir
1669         trap simple_cleanup_common EXIT
1670         createmany -o $DIR/$tdir/t- 1000
1671         do_nodes $list $LCTL set_param fail_loc=0
1672
1673         TLOG=$TMP/$tfile.getstripe
1674         $LFS getstripe $DIR/$tdir > $TLOG
1675         OBJS=$(awk -vobj=0 '($1 == 0) { obj += 1 } END { print obj; }' $TLOG)
1676         unlinkmany $DIR/$tdir/t- 1000
1677         trap 0
1678         [[ $OBJS -gt 0 ]] &&
1679                 error "$OBJS objects created on OST-0. See $TLOG" || pass
1680 }
1681 run_test 27u "skip object creation on OSC w/o objects"
1682
1683 test_27v() { # bug 4900
1684         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
1685         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1686         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1687         remote_ost_nodsh && skip "remote OST with nodsh" && return
1688
1689         exhaust_all_precreations 0x215
1690         reset_enospc
1691
1692         test_mkdir $DIR/$tdir
1693         $LFS setstripe -c 1 $DIR/$tdir         # 1 stripe / file
1694
1695         touch $DIR/$tdir/$tfile
1696         #define OBD_FAIL_TGT_DELAY_PRECREATE     0x705
1697         # all except ost1
1698         for (( i=1; i < OSTCOUNT; i++ )); do
1699                 do_facet ost$i lctl set_param fail_loc=0x705
1700         done
1701         local START=`date +%s`
1702         createmany -o $DIR/$tdir/$tfile 32
1703
1704         local FINISH=`date +%s`
1705         local TIMEOUT=`lctl get_param -n timeout`
1706         local PROCESS=$((FINISH - START))
1707         [ $PROCESS -ge $((TIMEOUT / 2)) ] && \
1708                error "$FINISH - $START >= $TIMEOUT / 2"
1709         sleep $((TIMEOUT / 2 - PROCESS))
1710         reset_enospc
1711 }
1712 run_test 27v "skip object creation on slow OST"
1713
1714 test_27w() { # bug 10997
1715         test_mkdir $DIR/$tdir || error "mkdir failed"
1716         $LFS setstripe -S 65536 $DIR/$tdir/f0 || error "setstripe failed"
1717         [ $($LFS getstripe -S $DIR/$tdir/f0) -ne 65536 ] &&
1718                 error "stripe size $size != 65536" || true
1719         [ $($LFS getstripe -d $DIR/$tdir | grep -c "stripe_count") -eq 0 ] &&
1720                 error "$LFS getstripe -d $DIR/$tdir no 'stripe_count'" || true
1721 }
1722 run_test 27w "check $LFS setstripe -S and getstrip -d options"
1723
1724 test_27wa() {
1725         [[ $OSTCOUNT -lt 2 ]] &&
1726                 skip_env "skipping multiple stripe count/offset test" && return
1727
1728         test_mkdir $DIR/$tdir || error "mkdir failed"
1729         for i in $(seq 1 $OSTCOUNT); do
1730                 offset=$((i - 1))
1731                 $LFS setstripe -c $i -i $offset $DIR/$tdir/f$i ||
1732                         error "setstripe -c $i -i $offset failed"
1733                 count=$($LFS getstripe -c $DIR/$tdir/f$i)
1734                 index=$($LFS getstripe -i $DIR/$tdir/f$i)
1735                 [ $count -ne $i ] && error "stripe count $count != $i" || true
1736                 [ $index -ne $offset ] &&
1737                         error "stripe offset $index != $offset" || true
1738         done
1739 }
1740 run_test 27wa "check $LFS setstripe -c -i options"
1741
1742 test_27x() {
1743         remote_ost_nodsh && skip "remote OST with nodsh" && return
1744         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
1745         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1746         OFFSET=$(($OSTCOUNT - 1))
1747         OSTIDX=0
1748         local OST=$(ostname_from_index $OSTIDX)
1749
1750         test_mkdir -p $DIR/$tdir
1751         $LFS setstripe -c 1 $DIR/$tdir  # 1 stripe per file
1752         do_facet ost$((OSTIDX + 1)) lctl set_param -n obdfilter.$OST.degraded 1
1753         sleep_maxage
1754         createmany -o $DIR/$tdir/$tfile $OSTCOUNT
1755         for i in $(seq 0 $OFFSET); do
1756                 [ $($LFS getstripe $DIR/$tdir/$tfile$i | grep -A 10 obdidx |
1757                         awk '{print $1}' | grep -w "$OSTIDX") ] &&
1758                 error "OST0 was degraded but new created file still use it"
1759         done
1760         do_facet ost$((OSTIDX + 1)) lctl set_param -n obdfilter.$OST.degraded 0
1761 }
1762 run_test 27x "create files while OST0 is degraded"
1763
1764 test_27y() {
1765         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
1766         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1767         remote_ost_nodsh && skip "remote OST with nodsh" && return
1768         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1769
1770         local mdtosc=$(get_mdtosc_proc_path $SINGLEMDS $FSNAME-OST0000)
1771         local last_id=$(do_facet $SINGLEMDS lctl get_param -n \
1772                 osc.$mdtosc.prealloc_last_id)
1773         local next_id=$(do_facet $SINGLEMDS lctl get_param -n \
1774                 osc.$mdtosc.prealloc_next_id)
1775         local fcount=$((last_id - next_id))
1776         [[ $fcount -eq 0 ]] && skip "not enough space on OST0" && return
1777         [[ $fcount -gt $OSTCOUNT ]] && fcount=$OSTCOUNT
1778
1779         local MDS_OSCS=$(do_facet $SINGLEMDS lctl dl |
1780                          awk '/[oO][sS][cC].*md[ts]/ { print $4 }')
1781         local OST_DEACTIVE_IDX=-1
1782         local OSC
1783         local OSTIDX
1784         local OST
1785
1786         for OSC in $MDS_OSCS; do
1787                 OST=$(osc_to_ost $OSC)
1788                 OSTIDX=$(index_from_ostuuid $OST)
1789                 if [ $OST_DEACTIVE_IDX == -1 ]; then
1790                         OST_DEACTIVE_IDX=$OSTIDX
1791                 fi
1792                 if [ $OSTIDX != $OST_DEACTIVE_IDX ]; then
1793                         echo $OSC "is Deactivated:"
1794                         do_facet $SINGLEMDS lctl --device  %$OSC deactivate
1795                 fi
1796         done
1797
1798         OSTIDX=$(index_from_ostuuid $OST)
1799         test_mkdir -p $DIR/$tdir
1800         $LFS setstripe -c 1 $DIR/$tdir      # 1 stripe / file
1801
1802         for OSC in $MDS_OSCS; do
1803                 OST=$(osc_to_ost $OSC)
1804                 OSTIDX=$(index_from_ostuuid $OST)
1805                 if [ $OSTIDX == $OST_DEACTIVE_IDX ]; then
1806                         echo $OST "is degraded:"
1807                         do_facet ost$((OSTIDX+1)) lctl set_param -n \
1808                                                 obdfilter.$OST.degraded=1
1809                 fi
1810         done
1811
1812         sleep_maxage
1813         createmany -o $DIR/$tdir/$tfile $fcount
1814
1815         for OSC in $MDS_OSCS; do
1816                 OST=$(osc_to_ost $OSC)
1817                 OSTIDX=$(index_from_ostuuid $OST)
1818                 if [ $OSTIDX == $OST_DEACTIVE_IDX ]; then
1819                         echo $OST "is recovered from degraded:"
1820                         do_facet ost$((OSTIDX+1)) lctl set_param -n \
1821                                                 obdfilter.$OST.degraded=0
1822                 else
1823                         do_facet $SINGLEMDS lctl --device %$OSC activate
1824                 fi
1825         done
1826
1827         # all osp devices get activated, hence -1 stripe count restored
1828         local stripecnt=0
1829
1830         # sleep 2*lod_qos_maxage seconds waiting for lod qos to notice osp
1831         # devices get activated.
1832         sleep_maxage
1833         $LFS setstripe -c -1 $DIR/$tfile
1834         stripecnt=$($LFS getstripe -c $DIR/$tfile)
1835         rm -f $DIR/$tfile
1836         [ $stripecnt -ne $OSTCOUNT ] &&
1837                 error "Of $OSTCOUNT OSTs, only $stripecnt is available"
1838         return 0
1839 }
1840 run_test 27y "create files while OST0 is degraded and the rest inactive"
1841
1842 check_seq_oid()
1843 {
1844         log "check file $1"
1845
1846         lmm_count=$($GETSTRIPE -c $1)
1847         lmm_seq=$($GETSTRIPE -v $1 | awk '/lmm_seq/ { print $2 }')
1848         lmm_oid=$($GETSTRIPE -v $1 | awk '/lmm_object_id/ { print $2 }')
1849
1850         local old_ifs="$IFS"
1851         IFS=$'[:]'
1852         fid=($($LFS path2fid $1))
1853         IFS="$old_ifs"
1854
1855         log "FID seq ${fid[1]}, oid ${fid[2]} ver ${fid[3]}"
1856         log "LOV seq $lmm_seq, oid $lmm_oid, count: $lmm_count"
1857
1858         # compare lmm_seq and lu_fid->f_seq
1859         [ $lmm_seq = ${fid[1]} ] || { error "SEQ mismatch"; return 1; }
1860         # compare lmm_object_id and lu_fid->oid
1861         [ $lmm_oid = ${fid[2]} ] || { error "OID mismatch"; return 2; }
1862
1863         # check the trusted.fid attribute of the OST objects of the file
1864         local have_obdidx=false
1865         local stripe_nr=0
1866         $GETSTRIPE $1 | while read obdidx oid hex seq; do
1867                 # skip lines up to and including "obdidx"
1868                 [ -z "$obdidx" ] && break
1869                 [ "$obdidx" = "obdidx" ] && have_obdidx=true && continue
1870                 $have_obdidx || continue
1871
1872                 local ost=$((obdidx + 1))
1873                 local dev=$(ostdevname $ost)
1874                 local oid_hex
1875
1876                 log "want: stripe:$stripe_nr ost:$obdidx oid:$oid/$hex seq:$seq"
1877
1878                 seq=$(echo $seq | sed -e "s/^0x//g")
1879                 if [ $seq == 0 ] || [ $(facet_fstype ost$ost) == zfs ]; then
1880                         oid_hex=$(echo $oid)
1881                 else
1882                         oid_hex=$(echo $hex | sed -e "s/^0x//g")
1883                 fi
1884                 local obj_file="O/$seq/d$((oid %32))/$oid_hex"
1885
1886                 local ff=""
1887                 #
1888                 # Don't unmount/remount the OSTs if we don't need to do that.
1889                 # LU-2577 changes filter_fid to be smaller, so debugfs needs
1890                 # update too, until that use mount/ll_decode_filter_fid/mount.
1891                 # Re-enable when debugfs will understand new filter_fid.
1892                 #
1893                 if [ $(facet_fstype ost$ost) == ldiskfs ]; then
1894                         ff=$(do_facet ost$ost "$DEBUGFS -c -R 'stat $obj_file' \
1895                                 $dev 2>/dev/null" | grep "parent=")
1896                 fi
1897                 if [ -z "$ff" ]; then
1898                         stop ost$ost
1899                         mount_fstype ost$ost
1900                         ff=$(do_facet ost$ost $LL_DECODE_FILTER_FID \
1901                                 $(facet_mntpt ost$ost)/$obj_file)
1902                         unmount_fstype ost$ost
1903                         start ost$ost $dev $OST_MOUNT_OPTS
1904                         clients_up
1905                 fi
1906
1907                 [ -z "$ff" ] && error "$obj_file: no filter_fid info"
1908
1909                 echo "$ff" | sed -e 's#.*objid=#got: objid=#'
1910
1911                 # /mnt/O/0/d23/23: objid=23 seq=0 parent=[0x200000400:0x1e:0x1]
1912                 # fid: objid=23 seq=0 parent=[0x200000400:0x1e:0x0] stripe=1
1913                 #
1914                 # fid: parent=[0x200000400:0x1e:0x0] stripe=1 stripe_count=2 \
1915                 #       stripe_size=1048576 component_id=1 component_start=0 \
1916                 #       component_end=33554432
1917                 local ff_parent=$(sed -e 's/.*parent=.//' <<<$ff)
1918                 local ff_pseq=$(cut -d: -f1 <<<$ff_parent)
1919                 local ff_poid=$(cut -d: -f2 <<<$ff_parent)
1920                 local ff_pstripe
1921                 if grep -q 'stripe=' <<<$ff; then
1922                         ff_pstripe=$(sed -e 's/.*stripe=//' -e 's/ .*//' <<<$ff)
1923                 else
1924                         # $LL_DECODE_FILTER_FID does not print "stripe="; look
1925                         # into f_ver in this case.  See comment on ff_parent.
1926                         ff_pstripe=$(cut -d: -f3 <<<$ff_parent | sed -e 's/]//')
1927                 fi
1928
1929                 if grep -q 'stripe_count=' <<<$ff; then
1930                         local ff_scnt=$(sed -e 's/.*stripe_count=//' \
1931                                             -e 's/ .*//' <<<$ff)
1932                         [ $lmm_count = $ff_scnt ] ||
1933                                 error "FF stripe count $lmm_count != $ff_scnt"
1934                 fi
1935                 # compare lmm_seq and filter_fid->ff_parent.f_seq
1936                 [ $ff_pseq = $lmm_seq ] ||
1937                         error "FF parent SEQ $ff_pseq != $lmm_seq"
1938                 # compare lmm_object_id and filter_fid->ff_parent.f_oid
1939                 [ $ff_poid = $lmm_oid ] ||
1940                         error "FF parent OID $ff_poid != $lmm_oid"
1941                 (($ff_pstripe == $stripe_nr)) ||
1942                         error "FF stripe $ff_pstripe != $stripe_nr"
1943
1944                 stripe_nr=$((stripe_nr + 1))
1945         done
1946 }
1947
1948 test_27z() {
1949         remote_ost_nodsh && skip "remote OST with nodsh" && return
1950         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1951         test_mkdir -p $DIR/$tdir
1952
1953         $SETSTRIPE -c 1 -i 0 -S 64k $DIR/$tdir/$tfile-1 ||
1954                 { error "setstripe -c -1 failed"; return 1; }
1955         # We need to send a write to every object to get parent FID info set.
1956         # This _should_ also work for setattr, but does not currently.
1957         # touch $DIR/$tdir/$tfile-1 ||
1958         dd if=/dev/zero of=$DIR/$tdir/$tfile-1 bs=1M count=1 ||
1959                 { error "dd $tfile-1 failed"; return 2; }
1960         $SETSTRIPE -c -1 -i $((OSTCOUNT - 1)) -S 1M $DIR/$tdir/$tfile-2 ||
1961                 { error "setstripe -c -1 failed"; return 3; }
1962         dd if=/dev/zero of=$DIR/$tdir/$tfile-2 bs=1M count=$OSTCOUNT ||
1963                 { error "dd $tfile-2 failed"; return 4; }
1964
1965         # make sure write RPCs have been sent to OSTs
1966         sync; sleep 5; sync
1967
1968         check_seq_oid $DIR/$tdir/$tfile-1 || return 5
1969         check_seq_oid $DIR/$tdir/$tfile-2 || return 6
1970 }
1971 run_test 27z "check SEQ/OID on the MDT and OST filesystems"
1972
1973 test_27A() { # b=19102
1974         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1975         local restore_size=$($GETSTRIPE -S $MOUNT)
1976         local restore_count=$($GETSTRIPE -c $MOUNT)
1977         local restore_offset=$($GETSTRIPE -i $MOUNT)
1978         $SETSTRIPE -c 0 -i -1 -S 0 $MOUNT
1979         wait_update $HOSTNAME "$GETSTRIPE -c $MOUNT | sed 's/  *//g'" "1" 20 ||
1980                 error "stripe count $($GETSTRIPE -c $MOUNT) != 1"
1981         local default_size=$($GETSTRIPE -S $MOUNT)
1982         local default_offset=$($GETSTRIPE -i $MOUNT)
1983         local dsize=$((1024 * 1024))
1984         [ $default_size -eq $dsize ] ||
1985                 error "stripe size $default_size != $dsize"
1986         [ $default_offset -eq -1 ] ||error "stripe offset $default_offset != -1"
1987         $SETSTRIPE -c $restore_count -i $restore_offset -S $restore_size $MOUNT
1988 }
1989 run_test 27A "check filesystem-wide default LOV EA values"
1990
1991 test_27B() { # LU-2523
1992         test_mkdir -p $DIR/$tdir
1993         rm -f $DIR/$tdir/f0 $DIR/$tdir/f1
1994         touch $DIR/$tdir/f0
1995         # open f1 with O_LOV_DELAY_CREATE
1996         # rename f0 onto f1
1997         # call setstripe ioctl on open file descriptor for f1
1998         # close
1999         multiop $DIR/$tdir/f1 oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:nB1c \
2000                 $DIR/$tdir/f0
2001
2002         rm -f $DIR/$tdir/f1
2003         # open f1 with O_LOV_DELAY_CREATE
2004         # unlink f1
2005         # call setstripe ioctl on open file descriptor for f1
2006         # close
2007         multiop $DIR/$tdir/f1 oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:uB1c
2008
2009         # Allow multiop to fail in imitation of NFS's busted semantics.
2010         true
2011 }
2012 run_test 27B "call setstripe on open unlinked file/rename victim"
2013
2014 test_27C() { #LU-2871
2015         [[ $OSTCOUNT -lt 2 ]] && skip "needs >= 2 OSTs" && return
2016
2017         declare -a ost_idx
2018         local index
2019         local found
2020         local i
2021         local j
2022
2023         test_mkdir -p $DIR/$tdir
2024         cd $DIR/$tdir
2025         for i in $(seq 0 $((OSTCOUNT - 1))); do
2026                 # set stripe across all OSTs starting from OST$i
2027                 $SETSTRIPE -i $i -c -1 $tfile$i
2028                 # get striping information
2029                 ost_idx=($($GETSTRIPE $tfile$i |
2030                          tail -n $((OSTCOUNT + 1)) | awk '{print $1}'))
2031                 echo ${ost_idx[@]}
2032
2033                 # check the layout
2034                 [ ${#ost_idx[@]} -eq $OSTCOUNT ] ||
2035                         error "${#ost_idx[@]} != $OSTCOUNT"
2036
2037                 for index in $(seq 0 $((OSTCOUNT - 1))); do
2038                         found=0
2039                         for j in $(echo ${ost_idx[@]}); do
2040                                 if [ $index -eq $j ]; then
2041                                         found=1
2042                                         break
2043                                 fi
2044                         done
2045                         [ $found = 1 ] ||
2046                                 error "Can not find $index in ${ost_idx[@]}"
2047                 done
2048         done
2049 }
2050 run_test 27C "check full striping across all OSTs"
2051
2052 test_27D() {
2053         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
2054         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
2055         remote_mds_nodsh && skip "remote MDS with nodsh" && return
2056         local POOL=${POOL:-testpool}
2057         local first_ost=0
2058         local last_ost=$(($OSTCOUNT - 1))
2059         local ost_step=1
2060         local ost_list=$(seq $first_ost $ost_step $last_ost)
2061         local ost_range="$first_ost $last_ost $ost_step"
2062
2063         test_mkdir -p $DIR/$tdir
2064         pool_add $POOL || error "pool_add failed"
2065         pool_add_targets $POOL $ost_range || error "pool_add_targets failed"
2066
2067         local skip27D
2068         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.55) ] &&
2069                 skip27D += "-s 29"
2070         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.9.55) ] &&
2071                 skip27D += "-s 30,31"
2072         llapi_layout_test -d$DIR/$tdir -p$POOL -o$OSTCOUNT $skip27D ||
2073                 error "llapi_layout_test failed"
2074
2075         destroy_test_pools || error "destroy test pools failed"
2076 }
2077 run_test 27D "validate llapi_layout API"
2078
2079 # Verify that default_easize is increased from its initial value after
2080 # accessing a widely striped file.
2081 test_27E() {
2082         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
2083         [ $(lustre_version_code client) -lt $(version_code 2.5.57) ] &&
2084                 skip "client does not have LU-3338 fix" && return
2085
2086         # 72 bytes is the minimum space required to store striping
2087         # information for a file striped across one OST:
2088         # (sizeof(struct lov_user_md_v3) +
2089         #  sizeof(struct lov_user_ost_data_v1))
2090         local min_easize=72
2091         $LCTL set_param -n llite.*.default_easize $min_easize ||
2092                 error "lctl set_param failed"
2093         local easize=$($LCTL get_param -n llite.*.default_easize)
2094
2095         [ $easize -eq $min_easize ] ||
2096                 error "failed to set default_easize"
2097
2098         $LFS setstripe -c $OSTCOUNT $DIR/$tfile ||
2099                 error "setstripe failed"
2100         cat $DIR/$tfile
2101         rm $DIR/$tfile
2102
2103         easize=$($LCTL get_param -n llite.*.default_easize)
2104
2105         [ $easize -gt $min_easize ] ||
2106                 error "default_easize not updated"
2107 }
2108 run_test 27E "check that default extended attribute size properly increases"
2109
2110 test_27F() { # LU-5346/LU-7975
2111         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2112         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.51) ]] &&
2113                 skip "Need MDS version at least 2.8.51" && return
2114         remote_ost_nodsh && skip "remote OST with nodsh" && return
2115
2116         test_mkdir -p $DIR/$tdir
2117         rm -f $DIR/$tdir/f0
2118         $SETSTRIPE -c 2 $DIR/$tdir
2119
2120         # stop all OSTs to reproduce situation for LU-7975 ticket
2121         for num in $(seq $OSTCOUNT); do
2122                 stop ost$num
2123         done
2124
2125         # open/create f0 with O_LOV_DELAY_CREATE
2126         # truncate f0 to a non-0 size
2127         # close
2128         multiop $DIR/$tdir/f0 oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:T1050000c
2129
2130         $CHECKSTAT -s 1050000 $DIR/$tdir/f0 || error "checkstat failed"
2131         # open/write it again to force delayed layout creation
2132         cat /etc/hosts > $DIR/$tdir/f0 &
2133         catpid=$!
2134
2135         # restart OSTs
2136         for num in $(seq $OSTCOUNT); do
2137                 start ost$num $(ostdevname $num) $OST_MOUNT_OPTS ||
2138                         error "ost$num failed to start"
2139         done
2140
2141         wait $catpid || error "cat failed"
2142
2143         cmp /etc/hosts $DIR/$tdir/f0 || error "cmp failed"
2144         [[ $($GETSTRIPE -c $DIR/$tdir/f0) == 2 ]] || error "wrong stripecount"
2145
2146 }
2147 run_test 27F "Client resend delayed layout creation with non-zero size"
2148
2149 # createtest also checks that device nodes are created and
2150 # then visible correctly (#2091)
2151 test_28() { # bug 2091
2152         test_mkdir $DIR/d28
2153         $CREATETEST $DIR/d28/ct || error
2154 }
2155 run_test 28 "create/mknod/mkdir with bad file types ============"
2156
2157 test_29() {
2158         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return 0
2159         sync; sleep 1; sync # flush out any dirty pages from previous tests
2160         cancel_lru_locks
2161         test_mkdir $DIR/d29
2162         touch $DIR/d29/foo
2163         log 'first d29'
2164         ls -l $DIR/d29
2165
2166         declare -i LOCKCOUNTORIG=0
2167         for lock_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_count); do
2168                 let LOCKCOUNTORIG=$LOCKCOUNTORIG+$lock_count
2169         done
2170         [ $LOCKCOUNTORIG -eq 0 ] && error "No mdc lock count" && return 1
2171
2172         declare -i LOCKUNUSEDCOUNTORIG=0
2173         for unused_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_unused_count); do
2174                 let LOCKUNUSEDCOUNTORIG=$LOCKUNUSEDCOUNTORIG+$unused_count
2175         done
2176
2177         log 'second d29'
2178         ls -l $DIR/d29
2179         log 'done'
2180
2181         declare -i LOCKCOUNTCURRENT=0
2182         for lock_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_count); do
2183                 let LOCKCOUNTCURRENT=$LOCKCOUNTCURRENT+$lock_count
2184         done
2185
2186         declare -i LOCKUNUSEDCOUNTCURRENT=0
2187         for unused_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_unused_count); do
2188                 let LOCKUNUSEDCOUNTCURRENT=$LOCKUNUSEDCOUNTCURRENT+$unused_count
2189         done
2190
2191         if [[ $LOCKCOUNTCURRENT -gt $LOCKCOUNTORIG ]]; then
2192                 $LCTL set_param -n ldlm.dump_namespaces ""
2193                 error "CURRENT: $LOCKCOUNTCURRENT > $LOCKCOUNTORIG"
2194                 $LCTL dk | sort -k4 -t: > $TMP/test_29.dk
2195                 log "dumped log to $TMP/test_29.dk (bug 5793)"
2196                 return 2
2197         fi
2198         if [[ $LOCKUNUSEDCOUNTCURRENT -gt $LOCKUNUSEDCOUNTORIG ]]; then
2199                 error "UNUSED: $LOCKUNUSEDCOUNTCURRENT > $LOCKUNUSEDCOUNTORIG"
2200                 $LCTL dk | sort -k4 -t: > $TMP/test_29.dk
2201                 log "dumped log to $TMP/test_29.dk (bug 5793)"
2202                 return 3
2203         fi
2204 }
2205 run_test 29 "IT_GETATTR regression  ============================"
2206
2207 test_30a() { # was test_30
2208         cp $(which ls) $DIR || cp /bin/ls $DIR
2209         $DIR/ls / || error
2210         rm $DIR/ls
2211 }
2212 run_test 30a "execute binary from Lustre (execve) =============="
2213
2214 test_30b() {
2215         cp `which ls` $DIR || cp /bin/ls $DIR
2216         chmod go+rx $DIR/ls
2217         $RUNAS $DIR/ls / || error
2218         rm $DIR/ls
2219 }
2220 run_test 30b "execute binary from Lustre as non-root ==========="
2221
2222 test_30c() { # b=22376
2223         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2224         cp `which ls` $DIR || cp /bin/ls $DIR
2225         chmod a-rw $DIR/ls
2226         cancel_lru_locks mdc
2227         cancel_lru_locks osc
2228         $RUNAS $DIR/ls / || error
2229         rm -f $DIR/ls
2230 }
2231 run_test 30c "execute binary from Lustre without read perms ===="
2232
2233 test_31a() {
2234         $OPENUNLINK $DIR/f31 $DIR/f31 || error
2235         $CHECKSTAT -a $DIR/f31 || error
2236 }
2237 run_test 31a "open-unlink file =================================="
2238
2239 test_31b() {
2240         touch $DIR/f31 || error
2241         ln $DIR/f31 $DIR/f31b || error
2242         $MULTIOP $DIR/f31b Ouc || error
2243         $CHECKSTAT -t file $DIR/f31 || error
2244 }
2245 run_test 31b "unlink file with multiple links while open ======="
2246
2247 test_31c() {
2248         touch $DIR/f31 || error
2249         ln $DIR/f31 $DIR/f31c || error
2250         multiop_bg_pause $DIR/f31 O_uc || return 1
2251         MULTIPID=$!
2252         $MULTIOP $DIR/f31c Ouc
2253         kill -USR1 $MULTIPID
2254         wait $MULTIPID
2255 }
2256 run_test 31c "open-unlink file with multiple links ============="
2257
2258 test_31d() {
2259         opendirunlink $DIR/d31d $DIR/d31d || error
2260         $CHECKSTAT -a $DIR/d31d || error
2261 }
2262 run_test 31d "remove of open directory ========================="
2263
2264 test_31e() { # bug 2904
2265         openfilleddirunlink $DIR/d31e || error
2266 }
2267 run_test 31e "remove of open non-empty directory ==============="
2268
2269 test_31f() { # bug 4554
2270         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2271         set -vx
2272         test_mkdir $DIR/d31f
2273         $SETSTRIPE -S 1048576 -c 1 $DIR/d31f
2274         cp /etc/hosts $DIR/d31f
2275         ls -l $DIR/d31f
2276         $GETSTRIPE $DIR/d31f/hosts
2277         multiop_bg_pause $DIR/d31f D_c || return 1
2278         MULTIPID=$!
2279
2280         rm -rv $DIR/d31f || error "first of $DIR/d31f"
2281         test_mkdir $DIR/d31f
2282         $SETSTRIPE -S 1048576 -c 1 $DIR/d31f
2283         cp /etc/hosts $DIR/d31f
2284         ls -l $DIR/d31f
2285         $GETSTRIPE $DIR/d31f/hosts
2286         multiop_bg_pause $DIR/d31f D_c || return 1
2287         MULTIPID2=$!
2288
2289         kill -USR1 $MULTIPID || error "first opendir $MULTIPID not running"
2290         wait $MULTIPID || error "first opendir $MULTIPID failed"
2291
2292         sleep 6
2293
2294         kill -USR1 $MULTIPID2 || error "second opendir $MULTIPID not running"
2295         wait $MULTIPID2 || error "second opendir $MULTIPID2 failed"
2296         set +vx
2297 }
2298 run_test 31f "remove of open directory with open-unlink file ==="
2299
2300 test_31g() {
2301         echo "-- cross directory link --"
2302         test_mkdir -c1 $DIR/${tdir}ga
2303         test_mkdir -c1 $DIR/${tdir}gb
2304         touch $DIR/${tdir}ga/f
2305         ln $DIR/${tdir}ga/f $DIR/${tdir}gb/g
2306         $CHECKSTAT -t file $DIR/${tdir}ga/f || error "source"
2307         [ `stat -c%h $DIR/${tdir}ga/f` == '2' ] || error "source nlink"
2308         $CHECKSTAT -t file $DIR/${tdir}gb/g || error "target"
2309         [ `stat -c%h $DIR/${tdir}gb/g` == '2' ] || error "target nlink"
2310 }
2311 run_test 31g "cross directory link==============="
2312
2313 test_31h() {
2314         echo "-- cross directory link --"
2315         test_mkdir -c1 $DIR/${tdir}
2316         test_mkdir -c1 $DIR/${tdir}/dir
2317         touch $DIR/${tdir}/f
2318         ln $DIR/${tdir}/f $DIR/${tdir}/dir/g
2319         $CHECKSTAT -t file $DIR/${tdir}/f || error "source"
2320         [ `stat -c%h $DIR/${tdir}/f` == '2' ] || error "source nlink"
2321         $CHECKSTAT -t file $DIR/${tdir}/dir/g || error "target"
2322         [ `stat -c%h $DIR/${tdir}/dir/g` == '2' ] || error "target nlink"
2323 }
2324 run_test 31h "cross directory link under child==============="
2325
2326 test_31i() {
2327         echo "-- cross directory link --"
2328         test_mkdir -c1 $DIR/$tdir
2329         test_mkdir -c1 $DIR/$tdir/dir
2330         touch $DIR/$tdir/dir/f
2331         ln $DIR/$tdir/dir/f $DIR/$tdir/g
2332         $CHECKSTAT -t file $DIR/$tdir/dir/f || error "source"
2333         [ `stat -c%h $DIR/$tdir/dir/f` == '2' ] || error "source nlink"
2334         $CHECKSTAT -t file $DIR/$tdir/g || error "target"
2335         [ `stat -c%h $DIR/$tdir/g` == '2' ] || error "target nlink"
2336 }
2337 run_test 31i "cross directory link under parent==============="
2338
2339 test_31j() {
2340         test_mkdir -c1 -p $DIR/$tdir
2341         test_mkdir -c1 -p $DIR/$tdir/dir1
2342         ln $DIR/$tdir/dir1 $DIR/$tdir/dir2 && error "ln for dir"
2343         link $DIR/$tdir/dir1 $DIR/$tdir/dir3 && error "link for dir"
2344         mlink $DIR/$tdir/dir1 $DIR/$tdir/dir4 && error "mlink for dir"
2345         mlink $DIR/$tdir/dir1 $DIR/$tdir/dir1 && error "mlink to the same dir"
2346         return 0
2347 }
2348 run_test 31j "link for directory==============="
2349
2350 test_31k() {
2351         test_mkdir -c1 -p $DIR/$tdir
2352         touch $DIR/$tdir/s
2353         touch $DIR/$tdir/exist
2354         mlink $DIR/$tdir/s $DIR/$tdir/t || error "mlink"
2355         mlink $DIR/$tdir/s $DIR/$tdir/exist && error "mlink to exist file"
2356         mlink $DIR/$tdir/s $DIR/$tdir/s && error "mlink to the same file"
2357         mlink $DIR/$tdir/s $DIR/$tdir && error "mlink to parent dir"
2358         mlink $DIR/$tdir $DIR/$tdir/s && error "mlink parent dir to target"
2359         mlink $DIR/$tdir/not-exist $DIR/$tdir/foo && error "mlink non-existing to new"
2360         mlink $DIR/$tdir/not-exist $DIR/$tdir/s && error "mlink non-existing to exist"
2361         return 0
2362 }
2363 run_test 31k "link to file: the same, non-existing, dir==============="
2364
2365 test_31m() {
2366         mkdir $DIR/d31m
2367         touch $DIR/d31m/s
2368         mkdir $DIR/d31m2
2369         touch $DIR/d31m2/exist
2370         mlink $DIR/d31m/s $DIR/d31m2/t || error "mlink"
2371         mlink $DIR/d31m/s $DIR/d31m2/exist && error "mlink to exist file"
2372         mlink $DIR/d31m/s $DIR/d31m2 && error "mlink to parent dir"
2373         mlink $DIR/d31m2 $DIR/d31m/s && error "mlink parent dir to target"
2374         mlink $DIR/d31m/not-exist $DIR/d31m2/foo && error "mlink non-existing to new"
2375         mlink $DIR/d31m/not-exist $DIR/d31m2/s && error "mlink non-existing to exist"
2376         return 0
2377 }
2378 run_test 31m "link to file: the same, non-existing, dir==============="
2379
2380 test_31n() {
2381         touch $DIR/$tfile || error "cannot create '$DIR/$tfile'"
2382         nlink=$(stat --format=%h $DIR/$tfile)
2383         [ ${nlink:--1} -eq 1 ] || error "nlink is $nlink, expected 1"
2384         local fd=$(free_fd)
2385         local cmd="exec $fd<$DIR/$tfile"
2386         eval $cmd
2387         cmd="exec $fd<&-"
2388         trap "eval $cmd" EXIT
2389         nlink=$(stat --dereference --format=%h /proc/self/fd/$fd)
2390         [ ${nlink:--1} -eq 1 ] || error "nlink is $nlink, expected 1"
2391         rm $DIR/$tfile || error "cannot remove '$DIR/$tfile'"
2392         nlink=$(stat --dereference --format=%h /proc/self/fd/$fd)
2393         [ ${nlink:--1} -eq 0 ] || error "nlink is $nlink, expected 0"
2394         eval $cmd
2395 }
2396 run_test 31n "check link count of unlinked file"
2397
2398 link_one() {
2399         local TEMPNAME=$(mktemp $1_XXXXXX)
2400         mlink $TEMPNAME $1 2> /dev/null &&
2401                 echo "$BASHPID: link $TEMPNAME to $1 succeeded"
2402         munlink $TEMPNAME
2403 }
2404
2405 test_31o() { # LU-2901
2406         test_mkdir -p $DIR/$tdir
2407         for LOOP in $(seq 100); do
2408                 rm -f $DIR/$tdir/$tfile*
2409                 for THREAD in $(seq 8); do
2410                         link_one $DIR/$tdir/$tfile.$LOOP &
2411                 done
2412                 wait
2413                 local LINKS=$(ls -1 $DIR/$tdir | grep -c $tfile.$LOOP)
2414                 [[ $LINKS -gt 1 ]] && ls $DIR/$tdir &&
2415                         error "$LINKS duplicate links to $tfile.$LOOP" &&
2416                         break || true
2417         done
2418 }
2419 run_test 31o "duplicate hard links with same filename"
2420
2421 test_31p() {
2422         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
2423
2424         test_mkdir $DIR/$tdir
2425         $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
2426         $LFS setdirstripe -D -c2 -t all_char $DIR/$tdir/striped_dir
2427
2428         opendirunlink $DIR/$tdir/striped_dir/test1 ||
2429                 error "open unlink test1 failed"
2430         opendirunlink $DIR/$tdir/striped_dir/test2 ||
2431                 error "open unlink test2 failed"
2432
2433         $CHECKSTAT -a $DIR/$tdir/striped_dir/test1 ||
2434                 error "test1 still exists"
2435         $CHECKSTAT -a $DIR/$tdir/striped_dir/test2 ||
2436                 error "test2 still exists"
2437 }
2438 run_test 31p "remove of open striped directory"
2439
2440 cleanup_test32_mount() {
2441         local rc=0
2442         trap 0
2443         local loopdev=$(losetup -a | grep $EXT2_DEV | sed -ne 's/:.*$//p')
2444         $UMOUNT $DIR/$tdir/ext2-mountpoint || rc=$?
2445         losetup -d $loopdev || true
2446         rm -rf $DIR/$tdir
2447         return $rc
2448 }
2449
2450 test_32a() {
2451         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2452         echo "== more mountpoints and symlinks ================="
2453         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2454         trap cleanup_test32_mount EXIT
2455         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2456         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2457         $CHECKSTAT -t dir $DIR/$tdir/ext2-mountpoint/.. || error
2458         cleanup_test32_mount
2459 }
2460 run_test 32a "stat d32a/ext2-mountpoint/.. ====================="
2461
2462 test_32b() {
2463         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2464         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2465         trap cleanup_test32_mount EXIT
2466         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2467         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2468         ls -al $DIR/$tdir/ext2-mountpoint/.. || error
2469         cleanup_test32_mount
2470 }
2471 run_test 32b "open d32b/ext2-mountpoint/.. ====================="
2472
2473 test_32c() {
2474         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2475         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2476         trap cleanup_test32_mount EXIT
2477         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2478         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2479         test_mkdir -p $DIR/$tdir/d2/test_dir
2480         $CHECKSTAT -t dir $DIR/$tdir/ext2-mountpoint/../d2/test_dir || error
2481         cleanup_test32_mount
2482 }
2483 run_test 32c "stat d32c/ext2-mountpoint/../d2/test_dir ========="
2484
2485 test_32d() {
2486         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2487         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2488         trap cleanup_test32_mount EXIT
2489         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2490         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2491         test_mkdir -p $DIR/$tdir/d2/test_dir
2492         ls -al $DIR/$tdir/ext2-mountpoint/../d2/test_dir || error
2493         cleanup_test32_mount
2494 }
2495 run_test 32d "open d32d/ext2-mountpoint/../d2/test_dir ========="
2496
2497 test_32e() {
2498         [ -e $DIR/d32e ] && rm -fr $DIR/d32e
2499         test_mkdir -p $DIR/d32e/tmp
2500         TMP_DIR=$DIR/d32e/tmp
2501         ln -s $DIR/d32e $TMP_DIR/symlink11
2502         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2503         $CHECKSTAT -t link $DIR/d32e/tmp/symlink11 || error
2504         $CHECKSTAT -t link $DIR/d32e/symlink01 || error
2505 }
2506 run_test 32e "stat d32e/symlink->tmp/symlink->lustre-subdir ===="
2507
2508 test_32f() {
2509         [ -e $DIR/d32f ] && rm -fr $DIR/d32f
2510         test_mkdir -p $DIR/d32f/tmp
2511         TMP_DIR=$DIR/d32f/tmp
2512         ln -s $DIR/d32f $TMP_DIR/symlink11
2513         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2514         ls $DIR/d32f/tmp/symlink11  || error
2515         ls $DIR/d32f/symlink01 || error
2516 }
2517 run_test 32f "open d32f/symlink->tmp/symlink->lustre-subdir ===="
2518
2519 test_32g() {
2520         TMP_DIR=$DIR/$tdir/tmp
2521         test_mkdir -p $DIR/$tdir/tmp
2522         test_mkdir $DIR/${tdir}2
2523         ln -s $DIR/${tdir}2 $TMP_DIR/symlink12
2524         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2525         $CHECKSTAT -t link $TMP_DIR/symlink12 || error
2526         $CHECKSTAT -t link $DIR/$tdir/symlink02 || error
2527         $CHECKSTAT -t dir -f $TMP_DIR/symlink12 || error
2528         $CHECKSTAT -t dir -f $DIR/$tdir/symlink02 || error
2529 }
2530 run_test 32g "stat d32g/symlink->tmp/symlink->lustre-subdir/${tdir}2"
2531
2532 test_32h() {
2533         rm -fr $DIR/$tdir $DIR/${tdir}2
2534         TMP_DIR=$DIR/$tdir/tmp
2535         test_mkdir -p $DIR/$tdir/tmp
2536         test_mkdir $DIR/${tdir}2
2537         ln -s $DIR/${tdir}2 $TMP_DIR/symlink12
2538         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2539         ls $TMP_DIR/symlink12 || error
2540         ls $DIR/$tdir/symlink02  || error
2541 }
2542 run_test 32h "open d32h/symlink->tmp/symlink->lustre-subdir/${tdir}2"
2543
2544 test_32i() {
2545         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2546         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2547         trap cleanup_test32_mount EXIT
2548         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2549         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2550         touch $DIR/$tdir/test_file
2551         $CHECKSTAT -t file $DIR/$tdir/ext2-mountpoint/../test_file || error
2552         cleanup_test32_mount
2553 }
2554 run_test 32i "stat d32i/ext2-mountpoint/../test_file ==========="
2555
2556 test_32j() {
2557         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2558         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2559         trap cleanup_test32_mount EXIT
2560         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2561         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2562         touch $DIR/$tdir/test_file
2563         cat $DIR/$tdir/ext2-mountpoint/../test_file || error
2564         cleanup_test32_mount
2565 }
2566 run_test 32j "open d32j/ext2-mountpoint/../test_file ==========="
2567
2568 test_32k() {
2569         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2570         rm -fr $DIR/$tdir
2571         trap cleanup_test32_mount EXIT
2572         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2573         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint
2574         test_mkdir -p $DIR/$tdir/d2
2575         touch $DIR/$tdir/d2/test_file || error
2576         $CHECKSTAT -t file $DIR/$tdir/ext2-mountpoint/../d2/test_file || error
2577         cleanup_test32_mount
2578 }
2579 run_test 32k "stat d32k/ext2-mountpoint/../d2/test_file ========"
2580
2581 test_32l() {
2582         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2583         rm -fr $DIR/$tdir
2584         trap cleanup_test32_mount EXIT
2585         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2586         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2587         test_mkdir -p $DIR/$tdir/d2
2588         touch $DIR/$tdir/d2/test_file
2589         cat  $DIR/$tdir/ext2-mountpoint/../d2/test_file || error
2590         cleanup_test32_mount
2591 }
2592 run_test 32l "open d32l/ext2-mountpoint/../d2/test_file ========"
2593
2594 test_32m() {
2595         rm -fr $DIR/d32m
2596         test_mkdir -p $DIR/d32m/tmp
2597         TMP_DIR=$DIR/d32m/tmp
2598         ln -s $DIR $TMP_DIR/symlink11
2599         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2600         $CHECKSTAT -t link $DIR/d32m/tmp/symlink11 || error
2601         $CHECKSTAT -t link $DIR/d32m/symlink01 || error
2602 }
2603 run_test 32m "stat d32m/symlink->tmp/symlink->lustre-root ======"
2604
2605 test_32n() {
2606         rm -fr $DIR/d32n
2607         test_mkdir -p $DIR/d32n/tmp
2608         TMP_DIR=$DIR/d32n/tmp
2609         ln -s $DIR $TMP_DIR/symlink11
2610         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2611         ls -l $DIR/d32n/tmp/symlink11  || error
2612         ls -l $DIR/d32n/symlink01 || error
2613 }
2614 run_test 32n "open d32n/symlink->tmp/symlink->lustre-root ======"
2615
2616 test_32o() {
2617         touch $DIR/$tfile
2618         test_mkdir -p $DIR/d32o/tmp
2619         TMP_DIR=$DIR/d32o/tmp
2620         ln -s $DIR/$tfile $TMP_DIR/symlink12
2621         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2622         $CHECKSTAT -t link $DIR/d32o/tmp/symlink12 || error
2623         $CHECKSTAT -t link $DIR/d32o/symlink02 || error
2624         $CHECKSTAT -t file -f $DIR/d32o/tmp/symlink12 || error
2625         $CHECKSTAT -t file -f $DIR/d32o/symlink02 || error
2626 }
2627 run_test 32o "stat d32o/symlink->tmp/symlink->lustre-root/$tfile"
2628
2629 test_32p() {
2630         log 32p_1
2631         rm -fr $DIR/d32p
2632         log 32p_2
2633         rm -f $DIR/$tfile
2634         log 32p_3
2635         touch $DIR/$tfile
2636         log 32p_4
2637         test_mkdir -p $DIR/d32p/tmp
2638         log 32p_5
2639         TMP_DIR=$DIR/d32p/tmp
2640         log 32p_6
2641         ln -s $DIR/$tfile $TMP_DIR/symlink12
2642         log 32p_7
2643         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2644         log 32p_8
2645         cat $DIR/d32p/tmp/symlink12 || error
2646         log 32p_9
2647         cat $DIR/d32p/symlink02 || error
2648         log 32p_10
2649 }
2650 run_test 32p "open d32p/symlink->tmp/symlink->lustre-root/$tfile"
2651
2652 test_32q() {
2653         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2654         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2655         trap cleanup_test32_mount EXIT
2656         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2657         touch $DIR/$tdir/ext2-mountpoint/under_the_mount
2658         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint
2659         ls $DIR/$tdir/ext2-mountpoint | grep "\<under_the_mount\>" && error
2660         cleanup_test32_mount
2661 }
2662 run_test 32q "stat follows mountpoints in Lustre (should return error)"
2663
2664 test_32r() {
2665         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2666         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2667         trap cleanup_test32_mount EXIT
2668         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2669         touch $DIR/$tdir/ext2-mountpoint/under_the_mount
2670         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint
2671         ls $DIR/$tdir/ext2-mountpoint | grep -q under_the_mount && error || true
2672         cleanup_test32_mount
2673 }
2674 run_test 32r "opendir follows mountpoints in Lustre (should return error)"
2675
2676 test_33aa() {
2677         rm -f $DIR/$tfile
2678         touch $DIR/$tfile
2679         chmod 444 $DIR/$tfile
2680         chown $RUNAS_ID $DIR/$tfile
2681         log 33_1
2682         $RUNAS $OPENFILE -f O_RDWR $DIR/$tfile && error || true
2683         log 33_2
2684 }
2685 run_test 33aa "write file with mode 444 (should return error) ===="
2686
2687 test_33a() {
2688         rm -fr $DIR/d33
2689         test_mkdir -p $DIR/d33
2690         chown $RUNAS_ID $DIR/d33
2691         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $DIR/d33/f33|| error "create"
2692         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $DIR/d33/f33 && \
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/d33
2699         test_mkdir -p $DIR/d33
2700         chown $RUNAS_ID $DIR/d33
2701         $RUNAS $OPENFILE -f 1286739555 $DIR/d33/f33 || 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/d33
2715         test_mkdir -p $DIR/d33
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/d33/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 -p $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 -p $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 -p $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 -p $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 -p -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/$tfile
3542         [ -e $TESTDIR ] && rm -rf $TESTDIR
3543         test_mkdir -p $TESTDIR
3544         cd $TESTDIR
3545         links1=2
3546         ls
3547         $LFS mkdir -i $MDTIDX $TESTDIR/remote_dir1
3548         $LFS 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 -p $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 -p $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 || error "recreate directory failed"
3980         touch foo || error "'touch foo' failed after recreating cwd"
3981         test_mkdir bar || error "'mkdir foo' failed after recreating cwd"
3982         touch .foo || error "'touch .foo' failed after recreating cwd"
3983         test_mkdir .bar || error "'mkdir .foo' failed after recreating cwd"
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         test_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         test_mkdir foo && error "'mkdir foo' worked after removing cwd"
4001         touch .foo && error "'touch .foo' worked after removing cwd"
4002         test_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         test_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 test_mkdir foo && error "'mkdir foo' worked after removing cwd"
4021         touch .foo && error "touch .foo worked after removing cwd"
4022         test_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 test_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 test_mkdir foo && error "mkdir foo worked after removing parent"
4042         touch .foo && error "'touch .foo' worked after removing parent"
4043         test_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 test_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 -p -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_lfs_df EXIT
4157
4158         # create files
4159         createmany -d $dir/d $nrdirs || {
4160                 unlinkmany $dir/d $nrdirs
4161                 error "failed to create $nrdirs subdirs in MDT$mdtidx:$dir"
4162         }
4163
4164         # really created :
4165         nrdirs=$(ls -U $dir | wc -l)
4166
4167         # unlink all but 100 subdirectories, then check it still works
4168         local left=100
4169         local delete=$((nrdirs - left))
4170
4171         $LFS df
4172         $LFS df -i
4173
4174         # for ldiskfs the nlink count should be 1, but this is OSD specific
4175         # and so this is listed for informational purposes only
4176         echo "nlink before: $(stat -c %h $dir), created before: $nrdirs"
4177         unlinkmany -d $dir/d $delete ||
4178                 error "unlink of first $delete subdirs failed"
4179
4180         echo "nlink between: $(stat -c %h $dir)"
4181         local found=$(ls -U $dir | wc -l)
4182         [ $found -ne $left ] &&
4183                 error "can't find subdirs: found only $found, expected $left"
4184
4185         unlinkmany -d $dir/d $delete $left ||
4186                 error "unlink of second $left subdirs failed"
4187         # regardless of whether the backing filesystem tracks nlink accurately
4188         # or not, the nlink count shouldn't be more than "." and ".." here
4189         local after=$(stat -c %h $dir)
4190         [[ $after -gt 2 ]] && error "nlink after: $after > 2" ||
4191                 echo "nlink after: $after"
4192
4193         cleanup_print_lfs_df
4194 }
4195 run_test 51b "exceed 64k subdirectory nlink limit on create, verify unlink"
4196
4197 test_51d() {
4198         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4199         [[ $OSTCOUNT -lt 3 ]] && skip_env "needs >= 3 OSTs" && return
4200         test_mkdir -p $DIR/$tdir
4201         createmany -o $DIR/$tdir/t- 1000
4202         $GETSTRIPE $DIR/$tdir > $TMP/$tfile
4203         for N in $(seq 0 $((OSTCOUNT - 1))); do
4204                 OBJS[$N]=$(awk -vobjs=0 '($1 == '$N') { objs += 1 } \
4205                         END { printf("%0.0f", objs) }' $TMP/$tfile)
4206                 OBJS0[$N]=$(grep -A 1 idx $TMP/$tfile | awk -vobjs=0 \
4207                         '($1 == '$N') { objs += 1 } \
4208                         END { printf("%0.0f", objs) }')
4209                 log "OST$N has ${OBJS[$N]} objects, ${OBJS0[$N]} are index 0"
4210         done
4211         unlinkmany $DIR/$tdir/t- 1000
4212
4213         NLAST=0
4214         for N in $(seq 1 $((OSTCOUNT - 1))); do
4215                 [[ ${OBJS[$N]} -lt $((${OBJS[$NLAST]} - 20)) ]] &&
4216                         error "OST $N has less objects vs OST $NLAST" \
4217                               " (${OBJS[$N]} < ${OBJS[$NLAST]}"
4218                 [[ ${OBJS[$N]} -gt $((${OBJS[$NLAST]} + 20)) ]] &&
4219                         error "OST $N has less objects vs OST $NLAST" \
4220                               " (${OBJS[$N]} < ${OBJS[$NLAST]}"
4221
4222                 [[ ${OBJS0[$N]} -lt $((${OBJS0[$NLAST]} - 20)) ]] &&
4223                         error "OST $N has less #0 objects vs OST $NLAST" \
4224                               " (${OBJS0[$N]} < ${OBJS0[$NLAST]}"
4225                 [[ ${OBJS0[$N]} -gt $((${OBJS0[$NLAST]} + 20)) ]] &&
4226                         error "OST $N has less #0 objects vs OST $NLAST" \
4227                               " (${OBJS0[$N]} < ${OBJS0[$NLAST]}"
4228                 NLAST=$N
4229         done
4230         rm -f $TMP/$tfile
4231 }
4232 run_test 51d "check object distribution"
4233
4234 test_51e() {
4235         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
4236                 skip "ldiskfs only test"
4237                 return
4238         fi
4239
4240         test_mkdir -c1 $DIR/$tdir       || error "create $tdir failed"
4241         test_mkdir -c1 $DIR/$tdir/d0    || error "create d0 failed"
4242
4243         touch $DIR/$tdir/d0/foo
4244         createmany -l $DIR/$tdir/d0/foo $DIR/$tdir/d0/f- 65001 &&
4245                 error "file exceed 65000 nlink limit!"
4246         unlinkmany $DIR/$tdir/d0/f- 65001
4247         return 0
4248 }
4249 run_test 51e "check file nlink limit"
4250
4251 test_51f() {
4252         test_mkdir $DIR/$tdir
4253
4254         local max=100000
4255         local ulimit_old=$(ulimit -n)
4256         local spare=20 # number of spare fd's for scripts/libraries, etc.
4257         local mdt=$(lfs getstripe -M $DIR/$tdir)
4258         local numfree=$(lfs df -i $DIR/$tdir | awk '/MDT:'$mdt'/ { print $4 }')
4259
4260         echo "MDT$mdt numfree=$numfree, max=$max"
4261         [[ $numfree -gt $max ]] && numfree=$max || numfree=$((numfree * 7 / 8))
4262         if [ $((numfree + spare)) -gt $ulimit_old ]; then
4263                 while ! ulimit -n $((numfree + spare)); do
4264                         numfree=$((numfree * 3 / 4))
4265                 done
4266                 echo "changed ulimit from $ulimit_old to $((numfree + spare))"
4267         else
4268                 echo "left ulimit at $ulimit_old"
4269         fi
4270
4271         createmany -o -k -t 120 $DIR/$tdir/f $numfree || {
4272                 unlinkmany $DIR/$tdir/f $numfree
4273                 error "create+open $numfree files in $DIR/$tdir failed"
4274         }
4275         ulimit -n $ulimit_old
4276
4277         # if createmany exits at 120s there will be fewer than $numfree files
4278         unlinkmany $DIR/$tdir/f $numfree || true
4279 }
4280 run_test 51f "check many open files limit"
4281
4282 test_52a() {
4283         [ -f $DIR/$tdir/foo ] && chattr -a $DIR/$tdir/foo
4284         test_mkdir -p $DIR/$tdir
4285         touch $DIR/$tdir/foo
4286         chattr +a $DIR/$tdir/foo || error "chattr +a failed"
4287         echo bar >> $DIR/$tdir/foo || error "append bar failed"
4288         cp /etc/hosts $DIR/$tdir/foo && error "cp worked"
4289         rm -f $DIR/$tdir/foo 2>/dev/null && error "rm worked"
4290         link $DIR/$tdir/foo $DIR/$tdir/foo_link 2>/dev/null &&
4291                                         error "link worked"
4292         echo foo >> $DIR/$tdir/foo || error "append foo failed"
4293         mrename $DIR/$tdir/foo $DIR/$tdir/foo_ren && error "rename worked"
4294         lsattr $DIR/$tdir/foo | egrep -q "^-+a[-e]+ $DIR/$tdir/foo" ||
4295                                                      error "lsattr"
4296         chattr -a $DIR/$tdir/foo || error "chattr -a failed"
4297         cp -r $DIR/$tdir $TMP/
4298         rm -fr $DIR/$tdir $TMP/$tdir || error "cleanup rm failed"
4299 }
4300 run_test 52a "append-only flag test (should return errors)"
4301
4302 test_52b() {
4303         [ -f $DIR/$tdir/foo ] && chattr -i $DIR/$tdir/foo
4304         test_mkdir -p $DIR/$tdir
4305         touch $DIR/$tdir/foo
4306         chattr +i $DIR/$tdir/foo || error "chattr +i failed"
4307         cat test > $DIR/$tdir/foo && error "cat test worked"
4308         cp /etc/hosts $DIR/$tdir/foo && error "cp worked"
4309         rm -f $DIR/$tdir/foo 2>/dev/null && error "rm worked"
4310         link $DIR/$tdir/foo $DIR/$tdir/foo_link 2>/dev/null &&
4311                                         error "link worked"
4312         echo foo >> $DIR/$tdir/foo && error "echo worked"
4313         mrename $DIR/$tdir/foo $DIR/$tdir/foo_ren && error "rename worked"
4314         [ -f $DIR/$tdir/foo ] || error "$tdir/foo is not a file"
4315         [ -f $DIR/$tdir/foo_ren ] && error "$tdir/foo_ren is not a file"
4316         lsattr $DIR/$tdir/foo | egrep -q "^-+i[-e]+ $DIR/$tdir/foo" ||
4317                                                         error "lsattr"
4318         chattr -i $DIR/$tdir/foo || error "chattr failed"
4319
4320         rm -fr $DIR/$tdir || error "unable to remove $DIR/$tdir"
4321 }
4322 run_test 52b "immutable flag test (should return errors) ======="
4323
4324 test_53() {
4325         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4326         remote_mds_nodsh && skip "remote MDS with nodsh" && return
4327         remote_ost_nodsh && skip "remote OST with nodsh" && return
4328
4329         local param
4330         local param_seq
4331         local ostname
4332         local mds_last
4333         local mds_last_seq
4334         local ost_last
4335         local ost_last_seq
4336         local ost_last_id
4337         local ostnum
4338         local node
4339         local found=false
4340         local support_last_seq=true
4341
4342         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.60) ]] ||
4343                 support_last_seq=false
4344
4345         # only test MDT0000
4346         local mdtosc=$(get_mdtosc_proc_path $SINGLEMDS)
4347         local value
4348         for value in $(do_facet $SINGLEMDS \
4349                        $LCTL get_param osc.$mdtosc.prealloc_last_id) ; do
4350                 param=$(echo ${value[0]} | cut -d "=" -f1)
4351                 ostname=$(echo $param | cut -d "." -f2 | cut -d - -f 1-2)
4352
4353                 if $support_last_seq; then
4354                         param_seq=$(echo $param |
4355                                 sed -e s/prealloc_last_id/prealloc_last_seq/g)
4356                         mds_last_seq=$(do_facet $SINGLEMDS \
4357                                        $LCTL get_param -n $param_seq)
4358                 fi
4359                 mds_last=$(do_facet $SINGLEMDS $LCTL get_param -n $param)
4360
4361                 ostnum=$(index_from_ostuuid ${ostname}_UUID)
4362                 node=$(facet_active_host ost$((ostnum+1)))
4363                 param="obdfilter.$ostname.last_id"
4364                 for ost_last in $(do_node $node $LCTL get_param -n $param) ; do
4365                         echo "$ostname.last_id=$ost_last; MDS.last_id=$mds_last"
4366                         ost_last_id=$ost_last
4367
4368                         if $support_last_seq; then
4369                                 ost_last_id=$(echo $ost_last |
4370                                               awk -F':' '{print $2}' |
4371                                               sed -e "s/^0x//g")
4372                                 ost_last_seq=$(echo $ost_last |
4373                                                awk -F':' '{print $1}')
4374                                 [[ $ost_last_seq = $mds_last_seq ]] || continue
4375                         fi
4376
4377                         if [[ $ost_last_id != $mds_last ]]; then
4378                                 error "$ost_last_id != $mds_last"
4379                         else
4380                                 found=true
4381                                 break
4382                         fi
4383                 done
4384         done
4385         $found || error "can not match last_seq/last_id for $mdtosc"
4386         return 0
4387 }
4388 run_test 53 "verify that MDS and OSTs agree on pre-creation ===="
4389
4390 test_54a() {
4391         perl -MSocket -e ';' || { skip "no Socket perl module installed" && return; }
4392
4393         $SOCKETSERVER $DIR/socket ||
4394                 error "$SOCKETSERVER $DIR/socket failed: $?"
4395         $SOCKETCLIENT $DIR/socket ||
4396                 error "$SOCKETCLIENT $DIR/socket failed: $?"
4397         $MUNLINK $DIR/socket || error "$MUNLINK $DIR/socket failed: $?"
4398 }
4399 run_test 54a "unix domain socket test =========================="
4400
4401 test_54b() {
4402         f="$DIR/f54b"
4403         mknod $f c 1 3
4404         chmod 0666 $f
4405         dd if=/dev/zero of=$f bs=$(page_size) count=1
4406 }
4407 run_test 54b "char device works in lustre ======================"
4408
4409 find_loop_dev() {
4410         [ -b /dev/loop/0 ] && LOOPBASE=/dev/loop/
4411         [ -b /dev/loop0 ] && LOOPBASE=/dev/loop
4412         [ -z "$LOOPBASE" ] && echo "/dev/loop/0 and /dev/loop0 gone?" && return
4413
4414         for i in $(seq 3 7); do
4415                 losetup $LOOPBASE$i > /dev/null 2>&1 && continue
4416                 LOOPDEV=$LOOPBASE$i
4417                 LOOPNUM=$i
4418                 break
4419         done
4420 }
4421
4422 cleanup_54c() {
4423         local rc=0
4424         loopdev="$DIR/loop54c"
4425
4426         trap 0
4427         $UMOUNT $DIR/$tdir || rc=$?
4428         losetup -d $loopdev || true
4429         losetup -d $LOOPDEV || true
4430         rm -rf $loopdev $DIR/$tfile $DIR/$tdir
4431         return $rc
4432 }
4433
4434 test_54c() {
4435         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4436         loopdev="$DIR/loop54c"
4437
4438         find_loop_dev
4439         [ -z "$LOOPNUM" ] && echo "couldn't find empty loop device" && return
4440         trap cleanup_54c EXIT
4441         mknod $loopdev b 7 $LOOPNUM
4442         echo "make a loop file system with $DIR/$tfile on $loopdev ($LOOPNUM)."
4443         dd if=/dev/zero of=$DIR/$tfile bs=$(get_page_size client) seek=1024 count=1 > /dev/null
4444         losetup $loopdev $DIR/$tfile ||
4445                 error "can't set up $loopdev for $DIR/$tfile"
4446         mkfs.ext2 $loopdev || error "mke2fs on $loopdev"
4447         test_mkdir -p $DIR/$tdir
4448         mount -t ext2 $loopdev $DIR/$tdir ||
4449                 error "error mounting $loopdev on $DIR/$tdir"
4450         dd if=/dev/zero of=$DIR/$tdir/tmp bs=$(get_page_size client) count=30 ||
4451                 error "dd write"
4452         df $DIR/$tdir
4453         dd if=$DIR/$tdir/tmp of=/dev/zero bs=$(get_page_size client) count=30 ||
4454                 error "dd read"
4455         cleanup_54c
4456 }
4457 run_test 54c "block device works in lustre ====================="
4458
4459 test_54d() {
4460         f="$DIR/f54d"
4461         string="aaaaaa"
4462         mknod $f p
4463         [ "$string" = $(echo $string > $f | cat $f) ] || error "$f != $string"
4464 }
4465 run_test 54d "fifo device works in lustre ======================"
4466
4467 test_54e() {
4468         f="$DIR/f54e"
4469         string="aaaaaa"
4470         cp -aL /dev/console $f
4471         echo $string > $f || error "echo $string to $f failed"
4472 }
4473 run_test 54e "console/tty device works in lustre ======================"
4474
4475 #The test_55 used to be iopen test and it was removed by bz#24037.
4476 #run_test 55 "check iopen_connect_dentry() ======================"
4477
4478 test_56a() {    # was test_56
4479         rm -rf $DIR/$tdir
4480         $SETSTRIPE -d $DIR
4481         test_mkdir -p $DIR/$tdir/dir
4482         NUMFILES=3
4483         NUMFILESx2=$(($NUMFILES * 2))
4484         for i in $(seq 1 $NUMFILES); do
4485                 touch $DIR/$tdir/file$i
4486                 touch $DIR/$tdir/dir/file$i
4487         done
4488
4489         # test lfs getstripe with --recursive
4490         FILENUM=$($GETSTRIPE --recursive $DIR/$tdir | grep -c obdidx)
4491         [[ $FILENUM -eq $NUMFILESx2 ]] ||
4492                 error "$GETSTRIPE --recursive: found $FILENUM, not $NUMFILESx2"
4493         FILENUM=$($GETSTRIPE $DIR/$tdir | grep -c obdidx)
4494         [[ $FILENUM -eq $NUMFILES ]] ||
4495                 error "$GETSTRIPE $DIR/$tdir: found $FILENUM, not $NUMFILES"
4496         echo "$GETSTRIPE --recursive passed."
4497
4498         # test lfs getstripe with file instead of dir
4499         FILENUM=$($GETSTRIPE $DIR/$tdir/file1 | grep -c obdidx)
4500         [[ $FILENUM -eq 1 ]] ||
4501                 error "$GETSTRIPE $DIR/$tdir/file1: found $FILENUM, not 1"
4502         echo "$GETSTRIPE file1 passed."
4503
4504         #test lfs getstripe with --verbose
4505         [[ $($GETSTRIPE --verbose $DIR/$tdir |
4506                 grep -c lmm_magic) -eq $NUMFILES ]] ||
4507                 error "$GETSTRIPE --verbose $DIR/$tdir: want $NUMFILES"
4508         [[ $($GETSTRIPE $DIR/$tdir | grep -c lmm_magic) -eq 0 ]] ||
4509                 error "$GETSTRIPE $DIR/$tdir: showed lmm_magic"
4510
4511         #test lfs getstripe with -v prints lmm_fid
4512         [[ $($GETSTRIPE -v $DIR/$tdir | grep -c lmm_fid) -eq $NUMFILES ]] ||
4513                 error "$GETSTRIPE -v $DIR/$tdir: want $NUMFILES lmm_fid: lines"
4514         [[ $($GETSTRIPE $DIR/$tdir | grep -c lmm_fid) -eq 0 ]] ||
4515                 error "$GETSTRIPE $DIR/$tdir: showed lmm_fid"
4516         echo "$GETSTRIPE --verbose passed."
4517
4518         #check for FID information
4519         local fid1=$($GETSTRIPE --fid $DIR/$tdir/file1)
4520         local fid2=$($GETSTRIPE --verbose $DIR/$tdir/file1 |
4521                        awk '/lmm_fid: / { print $2 }')
4522         local fid3=$($LFS path2fid $DIR/$tdir/file1)
4523         [ "$fid1" != "$fid2" ] &&
4524                 error "getstripe --fid $fid1 != getstripe --verbose $fid2"
4525         [ "$fid1" != "$fid3" ] &&
4526                 error "getstripe --fid $fid1 != lfs path2fid $fid3"
4527         echo "$GETSTRIPE --fid passed."
4528
4529         #test lfs getstripe with --obd
4530         $GETSTRIPE --obd wrong_uuid $DIR/$tdir 2>&1 |
4531                 grep -q "unknown obduuid" ||
4532                 error "$GETSTRIPE --obd wrong_uuid should return error message"
4533
4534         [[ $OSTCOUNT -lt 2 ]] &&
4535                 skip_env "skipping other $GETSTRIPE --obd test" && return
4536
4537         OSTIDX=1
4538         OBDUUID=$(ostuuid_from_index $OSTIDX)
4539         FILENUM=$($GETSTRIPE -ir $DIR/$tdir | grep "^$OSTIDX\$" | wc -l)
4540         FOUND=$($GETSTRIPE -r --obd $OBDUUID $DIR/$tdir | grep obdidx | wc -l)
4541         [[ $FOUND -eq $FILENUM ]] ||
4542                 error "$GETSTRIPE --obd wrong: found $FOUND, expected $FILENUM"
4543         [[ $($GETSTRIPE -r -v --obd $OBDUUID $DIR/$tdir |
4544                 sed '/^[         ]*'${OSTIDX}'[  ]/d' |
4545                 sed -n '/^[      ]*[0-9][0-9]*[  ]/p' | wc -l) -eq 0 ]] ||
4546                 error "$GETSTRIPE --obd: should not show file on other obd"
4547         echo "$GETSTRIPE --obd passed"
4548 }
4549 run_test 56a "check $GETSTRIPE"
4550
4551 test_56b() {
4552         test_mkdir $DIR/$tdir
4553         NUMDIRS=3
4554         for i in $(seq 1 $NUMDIRS); do
4555                 test_mkdir $DIR/$tdir/dir$i
4556         done
4557
4558         # test lfs getdirstripe default mode is non-recursion, which is
4559         # different from lfs getstripe
4560         dircnt=$($LFS getdirstripe $DIR/$tdir | grep -c lmv_stripe_count)
4561         [[ $dircnt -eq 1 ]] ||
4562                 error "$LFS getdirstripe: found $dircnt, not 1"
4563         dircnt=$($LFS getdirstripe --recursive $DIR/$tdir |
4564                 grep -c lmv_stripe_count)
4565         [[ $dircnt -eq $((NUMDIRS + 1)) ]] ||
4566                 error "$LFS getdirstripe --recursive: found $dircnt, \
4567                         not $((NUMDIRS + 1))"
4568 }
4569 run_test 56b "check $LFS getdirstripe"
4570
4571 test_56c() {
4572         local ost_idx=0
4573         local ost_name=$(ostname_from_index $ost_idx)
4574
4575         local old_status=$(ost_dev_status $ost_idx)
4576         [[ -z "$old_status" ]] ||
4577                 { skip_env "OST $ost_name is in $old_status status"; return 0; }
4578
4579         do_facet ost1 $LCTL set_param -n obdfilter.$ost_name.degraded=1
4580         sleep_maxage
4581
4582         local new_status=$(ost_dev_status $ost_idx)
4583         [[ "$new_status" = "D" ]] ||
4584                 error "OST $ost_name is in status of '$new_status', not 'D'"
4585
4586         do_facet ost1 $LCTL set_param -n obdfilter.$ost_name.degraded=0
4587         sleep_maxage
4588
4589         new_status=$(ost_dev_status $ost_idx)
4590         [[ -z "$new_status" ]] ||
4591                 error "OST $ost_name is in status of '$new_status', not ''"
4592 }
4593 run_test 56c "check 'lfs df' showing device status"
4594
4595 NUMFILES=3
4596 NUMDIRS=3
4597 setup_56() {
4598         local LOCAL_NUMFILES="$1"
4599         local LOCAL_NUMDIRS="$2"
4600         local MKDIR_PARAMS="$3"
4601         local DIR_STRIPE_PARAMS="$4"
4602
4603         if [ ! -d "$TDIR" ] ; then
4604                 test_mkdir -p $DIR_STRIPE_PARAMS $TDIR
4605                 [ "$MKDIR_PARAMS" ] && $SETSTRIPE $MKDIR_PARAMS $TDIR
4606                 for i in `seq 1 $LOCAL_NUMFILES` ; do
4607                         touch $TDIR/file$i
4608                 done
4609                 for i in `seq 1 $LOCAL_NUMDIRS` ; do
4610                         test_mkdir $DIR_STRIPE_PARAMS $TDIR/dir$i
4611                         for j in `seq 1 $LOCAL_NUMFILES` ; do
4612                                 touch $TDIR/dir$i/file$j
4613                         done
4614                 done
4615         fi
4616 }
4617
4618 setup_56_special() {
4619         LOCAL_NUMFILES=$1
4620         LOCAL_NUMDIRS=$2
4621         setup_56 $1 $2
4622         if [ ! -e "$TDIR/loop1b" ] ; then
4623                 for i in `seq 1 $LOCAL_NUMFILES` ; do
4624                         mknod $TDIR/loop${i}b b 7 $i
4625                         mknod $TDIR/null${i}c c 1 3
4626                         ln -s $TDIR/file1 $TDIR/link${i}l
4627                 done
4628                 for i in `seq 1 $LOCAL_NUMDIRS` ; do
4629                         mknod $TDIR/dir$i/loop${i}b b 7 $i
4630                         mknod $TDIR/dir$i/null${i}c c 1 3
4631                         ln -s $TDIR/dir$i/file1 $TDIR/dir$i/link${i}l
4632                 done
4633         fi
4634 }
4635
4636 test_56g() {
4637         $SETSTRIPE -d $DIR
4638
4639         TDIR=$DIR/${tdir}g
4640         setup_56 $NUMFILES $NUMDIRS
4641
4642         EXPECTED=$(($NUMDIRS + 2))
4643         # test lfs find with -name
4644         for i in $(seq 1 $NUMFILES) ; do
4645                 NUMS=$($LFIND -name "*$i" $TDIR | wc -l)
4646                 [ $NUMS -eq $EXPECTED ] ||
4647                         error "lfs find -name \"*$i\" $TDIR wrong: "\
4648                               "found $NUMS, expected $EXPECTED"
4649         done
4650 }
4651 run_test 56g "check lfs find -name ============================="
4652
4653 test_56h() {
4654         $SETSTRIPE -d $DIR
4655
4656         TDIR=$DIR/${tdir}g
4657         setup_56 $NUMFILES $NUMDIRS
4658
4659         EXPECTED=$(((NUMDIRS + 1) * (NUMFILES - 1) + NUMFILES))
4660         # test lfs find with ! -name
4661         for i in $(seq 1 $NUMFILES) ; do
4662                 NUMS=$($LFIND ! -name "*$i" $TDIR | wc -l)
4663                 [ $NUMS -eq $EXPECTED ] ||
4664                         error "lfs find ! -name \"*$i\" $TDIR wrong: "\
4665                               "found $NUMS, expected $EXPECTED"
4666         done
4667 }
4668 run_test 56h "check lfs find ! -name ============================="
4669
4670 test_56i() {
4671        tdir=${tdir}i
4672        test_mkdir -p $DIR/$tdir
4673        UUID=$(ostuuid_from_index 0 $DIR/$tdir)
4674        CMD="$LFIND -ost $UUID $DIR/$tdir"
4675        OUT=$($CMD)
4676        [ -z "$OUT" ] || error "\"$CMD\" returned directory '$OUT'"
4677 }
4678 run_test 56i "check 'lfs find -ost UUID' skips directories ======="
4679
4680 test_56j() {
4681         TDIR=$DIR/${tdir}g
4682         setup_56_special $NUMFILES $NUMDIRS
4683
4684         EXPECTED=$((NUMDIRS + 1))
4685         CMD="$LFIND -type d $TDIR"
4686         NUMS=$($CMD | wc -l)
4687         [ $NUMS -eq $EXPECTED ] ||
4688                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4689 }
4690 run_test 56j "check lfs find -type d ============================="
4691
4692 test_56k() {
4693         TDIR=$DIR/${tdir}g
4694         setup_56_special $NUMFILES $NUMDIRS
4695
4696         EXPECTED=$(((NUMDIRS + 1) * NUMFILES))
4697         CMD="$LFIND -type f $TDIR"
4698         NUMS=$($CMD | wc -l)
4699         [ $NUMS -eq $EXPECTED ] ||
4700                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4701 }
4702 run_test 56k "check lfs find -type f ============================="
4703
4704 test_56l() {
4705         TDIR=$DIR/${tdir}g
4706         setup_56_special $NUMFILES $NUMDIRS
4707
4708         EXPECTED=$((NUMDIRS + NUMFILES))
4709         CMD="$LFIND -type b $TDIR"
4710         NUMS=$($CMD | wc -l)
4711         [ $NUMS -eq $EXPECTED ] ||
4712                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4713 }
4714 run_test 56l "check lfs find -type b ============================="
4715
4716 test_56m() {
4717         TDIR=$DIR/${tdir}g
4718         setup_56_special $NUMFILES $NUMDIRS
4719
4720         EXPECTED=$((NUMDIRS + NUMFILES))
4721         CMD="$LFIND -type c $TDIR"
4722         NUMS=$($CMD | wc -l)
4723         [ $NUMS -eq $EXPECTED ] ||
4724                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4725 }
4726 run_test 56m "check lfs find -type c ============================="
4727
4728 test_56n() {
4729         TDIR=$DIR/${tdir}g
4730         setup_56_special $NUMFILES $NUMDIRS
4731
4732         EXPECTED=$((NUMDIRS + NUMFILES))
4733         CMD="$LFIND -type l $TDIR"
4734         NUMS=$($CMD | wc -l)
4735         [ $NUMS -eq $EXPECTED ] ||
4736                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4737 }
4738 run_test 56n "check lfs find -type l ============================="
4739
4740 test_56o() {
4741         TDIR=$DIR/${tdir}o
4742         setup_56 $NUMFILES $NUMDIRS
4743         utime $TDIR/file1 > /dev/null || error "utime (1)"
4744         utime $TDIR/file2 > /dev/null || error "utime (2)"
4745         utime $TDIR/dir1 > /dev/null || error "utime (3)"
4746         utime $TDIR/dir2 > /dev/null || error "utime (4)"
4747         utime $TDIR/dir1/file1 > /dev/null || error "utime (5)"
4748         dd if=/dev/zero count=1 >> $TDIR/dir1/file1 && sync
4749
4750         EXPECTED=4
4751         NUMS=`$LFIND -mtime +0 $TDIR | wc -l`
4752         [ $NUMS -eq $EXPECTED ] || \
4753                 error "lfs find -mtime +0 $TDIR wrong: found $NUMS, expected $EXPECTED"
4754
4755         EXPECTED=12
4756         CMD="$LFIND -mtime 0 $TDIR"
4757         NUMS=$($CMD | wc -l)
4758         [ $NUMS -eq $EXPECTED ] ||
4759                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4760 }
4761 run_test 56o "check lfs find -mtime for old files =========================="
4762
4763 test_56p() {
4764         [ $RUNAS_ID -eq $UID ] &&
4765                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
4766
4767         TDIR=$DIR/${tdir}p
4768         setup_56 $NUMFILES $NUMDIRS
4769
4770         chown $RUNAS_ID $TDIR/file* || error "chown $DIR/${tdir}g/file$i failed"
4771         EXPECTED=$NUMFILES
4772         CMD="$LFIND -uid $RUNAS_ID $TDIR"
4773         NUMS=$($CMD | wc -l)
4774         [ $NUMS -eq $EXPECTED ] || \
4775                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4776
4777         EXPECTED=$(((NUMFILES + 1) * NUMDIRS + 1))
4778         CMD="$LFIND ! -uid $RUNAS_ID $TDIR"
4779         NUMS=$($CMD | wc -l)
4780         [ $NUMS -eq $EXPECTED ] || \
4781                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4782 }
4783 run_test 56p "check lfs find -uid and ! -uid ==============================="
4784
4785 test_56q() {
4786         [ $RUNAS_ID -eq $UID ] &&
4787                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
4788
4789         TDIR=$DIR/${tdir}q
4790         setup_56 $NUMFILES $NUMDIRS
4791
4792         chgrp $RUNAS_GID $TDIR/file* || error "chown $TDIR/file$i failed"
4793
4794         EXPECTED=$NUMFILES
4795         CMD="$LFIND -gid $RUNAS_GID $TDIR"
4796         NUMS=$($CMD | wc -l)
4797         [ $NUMS -eq $EXPECTED ] ||
4798                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4799
4800         EXPECTED=$(( ($NUMFILES+1) * $NUMDIRS + 1))
4801         CMD="$LFIND ! -gid $RUNAS_GID $TDIR"
4802         NUMS=$($CMD | wc -l)
4803         [ $NUMS -eq $EXPECTED ] ||
4804                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4805 }
4806 run_test 56q "check lfs find -gid and ! -gid ==============================="
4807
4808 test_56r() {
4809         TDIR=$DIR/${tdir}r
4810         setup_56 $NUMFILES $NUMDIRS
4811
4812         EXPECTED=12
4813         CMD="$LFIND -size 0 -type f $TDIR"
4814         NUMS=$($CMD | wc -l)
4815         [ $NUMS -eq $EXPECTED ] ||
4816                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4817         EXPECTED=0
4818         CMD="$LFIND ! -size 0 -type f $TDIR"
4819         NUMS=$($CMD | wc -l)
4820         [ $NUMS -eq $EXPECTED ] ||
4821                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4822         echo "test" > $TDIR/$tfile
4823         echo "test2" > $TDIR/$tfile.2 && sync
4824         EXPECTED=1
4825         CMD="$LFIND -size 5 -type f $TDIR"
4826         NUMS=$($CMD | wc -l)
4827         [ $NUMS -eq $EXPECTED ] ||
4828                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4829         EXPECTED=1
4830         CMD="$LFIND -size +5 -type f $TDIR"
4831         NUMS=$($CMD | wc -l)
4832         [ $NUMS -eq $EXPECTED ] ||
4833                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4834         EXPECTED=2
4835         CMD="$LFIND -size +0 -type f $TDIR"
4836         NUMS=$($CMD | wc -l)
4837         [ $NUMS -eq $EXPECTED ] ||
4838                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4839         EXPECTED=2
4840         CMD="$LFIND ! -size -5 -type f $TDIR"
4841         NUMS=$($CMD | wc -l)
4842         [ $NUMS -eq $EXPECTED ] ||
4843                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4844         EXPECTED=12
4845         CMD="$LFIND -size -5 -type f $TDIR"
4846         NUMS=$($CMD | wc -l)
4847         [ $NUMS -eq $EXPECTED ] ||
4848                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4849 }
4850 run_test 56r "check lfs find -size works =========================="
4851
4852 test_56s() { # LU-611
4853         TDIR=$DIR/${tdir}s
4854
4855         #LU-9369
4856         setup_56 0 $NUMDIRS
4857         for i in $(seq 1 $NUMDIRS); do
4858                 $SETSTRIPE -c $((OSTCOUNT + 1)) $TDIR/dir$i/$tfile
4859         done
4860         EXPECTED=$NUMDIRS
4861         CMD="$LFIND -c $OSTCOUNT $TDIR"
4862         NUMS=$($CMD | wc -l)
4863         [ $NUMS -eq $EXPECTED ] || {
4864                 $GETSTRIPE -R $TDIR
4865                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4866         }
4867         rm -rf $TDIR
4868
4869         setup_56 $NUMFILES $NUMDIRS "-c $OSTCOUNT"
4870         if [[ $OSTCOUNT -gt 1 ]]; then
4871                 $SETSTRIPE -c 1 $TDIR/$tfile.{0,1,2,3}
4872                 ONESTRIPE=4
4873                 EXTRA=4
4874         else
4875                 ONESTRIPE=$(((NUMDIRS + 1) * NUMFILES))
4876                 EXTRA=0
4877         fi
4878
4879         EXPECTED=$(((NUMDIRS + 1) * NUMFILES))
4880         CMD="$LFIND -stripe-count $OSTCOUNT -type f $TDIR"
4881         NUMS=$($CMD | wc -l)
4882         [ $NUMS -eq $EXPECTED ] || {
4883                 $GETSTRIPE -R $TDIR
4884                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4885         }
4886
4887         EXPECTED=$(((NUMDIRS + 1) * NUMFILES + EXTRA))
4888         CMD="$LFIND -stripe-count +0 -type f $TDIR"
4889         NUMS=$($CMD | wc -l)
4890         [ $NUMS -eq $EXPECTED ] || {
4891                 $GETSTRIPE -R $TDIR
4892                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4893         }
4894
4895         EXPECTED=$ONESTRIPE
4896         CMD="$LFIND -stripe-count 1 -type f $TDIR"
4897         NUMS=$($CMD | wc -l)
4898         [ $NUMS -eq $EXPECTED ] || {
4899                 $GETSTRIPE -R $TDIR
4900                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4901         }
4902
4903         CMD="$LFIND -stripe-count -2 -type f $TDIR"
4904         NUMS=$($CMD | wc -l)
4905         [ $NUMS -eq $EXPECTED ] || {
4906                 $GETSTRIPE -R $TDIR
4907                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4908         }
4909
4910         EXPECTED=0
4911         CMD="$LFIND -stripe-count $((OSTCOUNT + 1)) -type f $TDIR"
4912         NUMS=$($CMD | wc -l)
4913         [ $NUMS -eq $EXPECTED ] || {
4914                 $GETSTRIPE -R $TDIR
4915                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4916         }
4917 }
4918 run_test 56s "check lfs find -stripe-count works"
4919
4920 test_56t() { # LU-611
4921         TDIR=$DIR/${tdir}t
4922
4923         #LU-9369
4924         setup_56 0 $NUMDIRS
4925         for i in $(seq 1 $NUMDIRS); do
4926                 $SETSTRIPE -S 4M $TDIR/dir$i/$tfile
4927         done
4928         EXPECTED=$NUMDIRS
4929         CMD="$LFIND -S 4M $TDIR"
4930         NUMS=$($CMD | wc -l)
4931         [ $NUMS -eq $EXPECTED ] || {
4932                 $GETSTRIPE -R $TDIR
4933                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4934         }
4935         rm -rf $TDIR
4936
4937         setup_56 $NUMFILES $NUMDIRS "--stripe-size 512k"
4938
4939         $SETSTRIPE -S 256k $TDIR/$tfile.{0,1,2,3}
4940
4941         EXPECTED=$(((NUMDIRS + 1) * NUMFILES))
4942         CMD="$LFIND -stripe-size 512k -type f $TDIR"
4943         NUMS=$($CMD | wc -l)
4944         [ $NUMS -eq $EXPECTED ] ||
4945                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4946
4947         CMD="$LFIND -stripe-size +320k -type f $TDIR"
4948         NUMS=$($CMD | wc -l)
4949         [ $NUMS -eq $EXPECTED ] ||
4950                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4951
4952         EXPECTED=$(((NUMDIRS + 1) * NUMFILES + 4))
4953         CMD="$LFIND -stripe-size +200k -type f $TDIR"
4954         NUMS=$($CMD | wc -l)
4955         [ $NUMS -eq $EXPECTED ] ||
4956                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4957
4958         CMD="$LFIND -stripe-size -640k -type f $TDIR"
4959         NUMS=$($CMD | wc -l)
4960         [ $NUMS -eq $EXPECTED ] ||
4961                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4962
4963         EXPECTED=4
4964         CMD="$LFIND -stripe-size 256k -type f $TDIR"
4965         NUMS=$($CMD | wc -l)
4966         [ $NUMS -eq $EXPECTED ] ||
4967                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4968
4969         CMD="$LFIND -stripe-size -320k -type f $TDIR"
4970         NUMS=$($CMD | wc -l)
4971         [ $NUMS -eq $EXPECTED ] ||
4972                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4973
4974         EXPECTED=0
4975         CMD="$LFIND -stripe-size 1024k -type f $TDIR"
4976         NUMS=$($CMD | wc -l)
4977         [ $NUMS -eq $EXPECTED ] ||
4978                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4979 }
4980 run_test 56t "check lfs find -stripe-size works"
4981
4982 test_56u() { # LU-611
4983         TDIR=$DIR/${tdir}u
4984         setup_56 $NUMFILES $NUMDIRS "-i 0"
4985
4986         if [[ $OSTCOUNT -gt 1 ]]; then
4987                 $SETSTRIPE -i 1 $TDIR/$tfile.{0,1,2,3}
4988                 ONESTRIPE=4
4989         else
4990                 ONESTRIPE=0
4991         fi
4992
4993         EXPECTED=$(((NUMDIRS + 1) * NUMFILES))
4994         CMD="$LFIND -stripe-index 0 -type f $TDIR"
4995         NUMS=$($CMD | wc -l)
4996         [ $NUMS -eq $EXPECTED ] ||
4997                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4998
4999         EXPECTED=$ONESTRIPE
5000         CMD="$LFIND -stripe-index 1 -type f $TDIR"
5001         NUMS=$($CMD | wc -l)
5002         [ $NUMS -eq $EXPECTED ] ||
5003                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
5004
5005         CMD="$LFIND ! -stripe-index 0 -type f $TDIR"
5006         NUMS=$($CMD | wc -l)
5007         [ $NUMS -eq $EXPECTED ] ||
5008                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
5009
5010         EXPECTED=0
5011         # This should produce an error and not return any files
5012         CMD="$LFIND -stripe-index $OSTCOUNT -type f $TDIR"
5013         NUMS=$($CMD 2>/dev/null | wc -l)
5014         [ $NUMS -eq $EXPECTED ] ||
5015                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
5016
5017         if [[ $OSTCOUNT -gt 1 ]]; then
5018                 EXPECTED=$(((NUMDIRS + 1) * NUMFILES + ONESTRIPE))
5019                 CMD="$LFIND -stripe-index 0,1 -type f $TDIR"
5020                 NUMS=$($CMD | wc -l)
5021                 [ $NUMS -eq $EXPECTED ] ||
5022                         error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
5023         fi
5024 }
5025 run_test 56u "check lfs find -stripe-index works"
5026
5027 test_56v() {
5028     local MDT_IDX=0
5029
5030     TDIR=$DIR/${tdir}v
5031     rm -rf $TDIR
5032     setup_56 $NUMFILES $NUMDIRS
5033
5034     UUID=$(mdtuuid_from_index $MDT_IDX $TDIR)
5035     [ -z "$UUID" ] && error "mdtuuid_from_index cannot find MDT index $MDT_IDX"
5036
5037     for file in $($LFIND -mdt $UUID $TDIR); do
5038         file_mdt_idx=$($GETSTRIPE -M $file)
5039         [ $file_mdt_idx -eq $MDT_IDX ] ||
5040             error "'lfind -mdt $UUID' != 'getstripe -M' ($file_mdt_idx)"
5041     done
5042 }
5043 run_test 56v "check 'lfs find -mdt match with lfs getstripe -M' ======="
5044
5045 test_56w() {
5046         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
5047         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5048         TDIR=$DIR/${tdir}w
5049
5050     rm -rf $TDIR || error "remove $TDIR failed"
5051     setup_56 $NUMFILES $NUMDIRS "-c $OSTCOUNT" "-c1"
5052
5053     local stripe_size
5054     stripe_size=$($GETSTRIPE -S -d $TDIR) ||
5055         error "$GETSTRIPE -S -d $TDIR failed"
5056     stripe_size=${stripe_size%% *}
5057
5058     local file_size=$((stripe_size * OSTCOUNT))
5059     local file_num=$((NUMDIRS * NUMFILES + NUMFILES))
5060     local required_space=$((file_num * file_size))
5061
5062     local free_space=$($LCTL get_param -n lov.$FSNAME-clilov-*.kbytesavail |
5063                         head -n1)
5064     [[ $free_space -le $((required_space / 1024)) ]] &&
5065         skip_env "need at least $required_space bytes free space," \
5066                  "have $free_space kbytes" && return
5067
5068     local dd_bs=65536
5069     local dd_count=$((file_size / dd_bs))
5070
5071     # write data into the files
5072     local i
5073     local j
5074     local file
5075     for i in $(seq 1 $NUMFILES); do
5076         file=$TDIR/file$i
5077         yes | dd bs=$dd_bs count=$dd_count of=$file >/dev/null 2>&1 ||
5078             error "write data into $file failed"
5079     done
5080     for i in $(seq 1 $NUMDIRS); do
5081         for j in $(seq 1 $NUMFILES); do
5082             file=$TDIR/dir$i/file$j
5083             yes | dd bs=$dd_bs count=$dd_count of=$file \
5084                 >/dev/null 2>&1 ||
5085                 error "write data into $file failed"
5086         done
5087     done
5088
5089     local expected=-1
5090     [[ $OSTCOUNT -gt 1 ]] && expected=$((OSTCOUNT - 1))
5091
5092     # lfs_migrate file
5093     local cmd="$LFS_MIGRATE -y -c $expected $TDIR/file1"
5094     echo "$cmd"
5095     eval $cmd || error "$cmd failed"
5096
5097     check_stripe_count $TDIR/file1 $expected
5098
5099         if [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.90) ];
5100         then
5101                 # lfs_migrate file onto OST 0 if it is on OST 1, or onto
5102                 # OST 1 if it is on OST 0. This file is small enough to
5103                 # be on only one stripe.
5104                 file=$TDIR/migr_1_ost
5105                 dd bs=$dd_bs count=1 if=/dev/urandom of=$file >/dev/null 2>&1 ||
5106                         error "write data into $file failed"
5107                 local obdidx=$($LFS getstripe -i $file)
5108                 local oldmd5=$(md5sum $file)
5109                 local newobdidx=0
5110                 [[ $obdidx -eq 0 ]] && newobdidx=1
5111                 cmd="$LFS migrate -i $newobdidx $file"
5112                 echo $cmd
5113                 eval $cmd || error "$cmd failed"
5114                 local realobdix=$($LFS getstripe -i $file)
5115                 local newmd5=$(md5sum $file)
5116                 [[ $newobdidx -ne $realobdix ]] &&
5117                         error "new OST is different (was=$obdidx, wanted=$newobdidx, got=$realobdix)"
5118                 [[ "$oldmd5" != "$newmd5" ]] &&
5119                         error "md5sum differ: $oldmd5, $newmd5"
5120         fi
5121
5122     # lfs_migrate dir
5123     cmd="$LFS_MIGRATE -y -c $expected $TDIR/dir1"
5124     echo "$cmd"
5125     eval $cmd || error "$cmd failed"
5126
5127     for j in $(seq 1 $NUMFILES); do
5128         check_stripe_count $TDIR/dir1/file$j $expected
5129     done
5130
5131     # lfs_migrate works with lfs find
5132     cmd="$LFIND -stripe_count $OSTCOUNT -type f $TDIR |
5133          $LFS_MIGRATE -y -c $expected"
5134     echo "$cmd"
5135     eval $cmd || error "$cmd failed"
5136
5137     for i in $(seq 2 $NUMFILES); do
5138         check_stripe_count $TDIR/file$i $expected
5139     done
5140     for i in $(seq 2 $NUMDIRS); do
5141         for j in $(seq 1 $NUMFILES); do
5142             check_stripe_count $TDIR/dir$i/file$j $expected
5143         done
5144     done
5145 }
5146 run_test 56w "check lfs_migrate -c stripe_count works"
5147
5148 test_56x() {
5149         check_swap_layouts_support && return 0
5150         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
5151
5152         local dir0=$DIR/$tdir/$testnum
5153         test_mkdir -p $dir0 || error "creating dir $dir0"
5154
5155         local ref1=/etc/passwd
5156         local file1=$dir0/file1
5157
5158         $SETSTRIPE -c 2 $file1
5159         cp $ref1 $file1
5160         $LFS migrate -c 1 $file1 || error "migrate failed rc = $?"
5161         stripe=$($GETSTRIPE -c $file1)
5162         [[ $stripe == 1 ]] || error "stripe of $file1 is $stripe != 1"
5163         cmp $file1 $ref1 || error "content mismatch $file1 differs from $ref1"
5164
5165         # clean up
5166         rm -f $file1
5167 }
5168 run_test 56x "lfs migration support"
5169
5170 test_56xa() {
5171         check_swap_layouts_support && return 0
5172         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
5173
5174         local dir0=$DIR/$tdir/$testnum
5175         test_mkdir -p $dir0 || error "creating dir $dir0"
5176
5177         local ref1=/etc/passwd
5178         local file1=$dir0/file1
5179
5180         $SETSTRIPE -c 2 $file1
5181         cp $ref1 $file1
5182         $LFS migrate --block -c 1 $file1 || error "migrate failed rc = $?"
5183         local stripe=$($GETSTRIPE -c $file1)
5184         [[ $stripe == 1 ]] || error "stripe of $file1 is $stripe != 1"
5185         cmp $file1 $ref1 || error "content mismatch $file1 differs from $ref1"
5186
5187         # clean up
5188         rm -f $file1
5189 }
5190 run_test 56xa "lfs migration --block support"
5191
5192 test_56y() {
5193         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.53) ] &&
5194                 skip "No HSM $(lustre_build_version $SINGLEMDS) MDS < 2.4.53" &&
5195                 return
5196
5197         local res=""
5198         local dir0=$DIR/$tdir/$testnum
5199         test_mkdir -p $dir0 || error "creating dir $dir0"
5200         local f1=$dir0/file1
5201         local f2=$dir0/file2
5202
5203         touch $f1 || error "creating std file $f1"
5204         $MULTIOP $f2 H2c || error "creating released file $f2"
5205
5206         # a directory can be raid0, so ask only for files
5207         res=$($LFIND $dir0 -L raid0 -type f | wc -l)
5208         [[ $res == 2 ]] || error "search raid0: found $res files != 2"
5209
5210         res=$($LFIND $dir0 \! -L raid0 -type f | wc -l)
5211         [[ $res == 0 ]] || error "search !raid0: found $res files != 0"
5212
5213         # only files can be released, so no need to force file search
5214         res=$($LFIND $dir0 -L released)
5215         [[ $res == $f2 ]] || error "search released: found $res != $f2"
5216
5217         res=$($LFIND $dir0 \! -L released)
5218         [[ $res == $f1 ]] || error "search !released: found $res != $f1"
5219
5220 }
5221 run_test 56y "lfs find -L raid0|released"
5222
5223 test_56z() { # LU-4824
5224         # This checks to make sure 'lfs find' continues after errors
5225         # There are two classes of errors that should be caught:
5226         # - If multiple paths are provided, all should be searched even if one
5227         #   errors out
5228         # - If errors are encountered during the search, it should not terminate
5229         #   early
5230         local i
5231         test_mkdir $DIR/$tdir
5232         for i in d{0..9}; do
5233                 test_mkdir $DIR/$tdir/$i
5234         done
5235         touch $DIR/$tdir/d{0..9}/$tfile
5236         $LFS find $DIR/non_existent_dir $DIR/$tdir &&
5237                 error "$LFS find did not return an error"
5238         # Make a directory unsearchable. This should NOT be the last entry in
5239         # directory order.  Arbitrarily pick the 6th entry
5240         chmod 700 $($LFS find $DIR/$tdir -type d | sed '6!d')
5241         local count=$($RUNAS $LFS find $DIR/non_existent $DIR/$tdir | wc -l)
5242         # The user should be able to see 10 directories and 9 files
5243         [ $count == 19 ] || error "$LFS find did not continue after error"
5244 }
5245 run_test 56z "lfs find should continue after an error"
5246
5247 test_56aa() { # LU-5937
5248         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
5249
5250         mkdir $DIR/$tdir
5251         $LFS setdirstripe -c$MDSCOUNT $DIR/$tdir/striped_dir
5252
5253         createmany -o $DIR/$tdir/striped_dir/${tfile}- 1024
5254         local dirs=$(lfs find --size +8k $DIR/$tdir/)
5255
5256         [ -n "$dirs" ] || error "lfs find --size wrong under striped dir"
5257 }
5258 run_test 56aa "lfs find --size under striped dir"
5259
5260 test_57a() {
5261         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5262         # note test will not do anything if MDS is not local
5263         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
5264                 skip "ldiskfs only test"
5265                 return
5266         fi
5267
5268         remote_mds_nodsh && skip "remote MDS with nodsh" && return
5269         local MNTDEV="osd*.*MDT*.mntdev"
5270         DEV=$(do_facet $SINGLEMDS lctl get_param -n $MNTDEV)
5271         [ -z "$DEV" ] && error "can't access $MNTDEV"
5272         for DEV in $(do_facet $SINGLEMDS lctl get_param -n $MNTDEV); do
5273                 do_facet $SINGLEMDS $DUMPE2FS -h $DEV > $TMP/t57a.dump ||
5274                         error "can't access $DEV"
5275                 DEVISIZE=$(awk '/Inode size:/ { print $3 }' $TMP/t57a.dump)
5276                 [[ $DEVISIZE -gt 128 ]] || error "inode size $DEVISIZE"
5277                 rm $TMP/t57a.dump
5278         done
5279 }
5280 run_test 57a "verify MDS filesystem created with large inodes =="
5281
5282 test_57b() {
5283         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5284         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
5285                 skip "ldiskfs only test"
5286                 return
5287         fi
5288
5289         remote_mds_nodsh && skip "remote MDS with nodsh" && return
5290         local dir=$DIR/$tdir
5291
5292         local FILECOUNT=100
5293         local FILE1=$dir/f1
5294         local FILEN=$dir/f$FILECOUNT
5295
5296         rm -rf $dir || error "removing $dir"
5297         test_mkdir -p -c1 $dir || error "creating $dir"
5298         local mdtidx=$($LFS getstripe -M $dir)
5299         local mdtname=MDT$(printf %04x $mdtidx)
5300         local facet=mds$((mdtidx + 1))
5301
5302         echo "mcreating $FILECOUNT files"
5303         createmany -m $dir/f 1 $FILECOUNT || \
5304                 error "creating files in $dir"
5305
5306         # verify that files do not have EAs yet
5307         $GETSTRIPE $FILE1 2>&1 | grep -q "no stripe" || error "$FILE1 has an EA"
5308         $GETSTRIPE $FILEN 2>&1 | grep -q "no stripe" || error "$FILEN has an EA"
5309
5310         sync
5311         sleep 1
5312         df $dir  #make sure we get new statfs data
5313         local MDSFREE=$(do_facet $facet \
5314                 lctl get_param -n osd*.*$mdtname.kbytesfree)
5315         local MDCFREE=$(lctl get_param -n mdc.*$mdtname-mdc-*.kbytesfree)
5316         echo "opening files to create objects/EAs"
5317         local FILE
5318         for FILE in `seq -f $dir/f%g 1 $FILECOUNT`; do
5319                 $OPENFILE -f O_RDWR $FILE > /dev/null 2>&1 || error "opening $FILE"
5320         done
5321
5322         # verify that files have EAs now
5323         $GETSTRIPE $FILE1 | grep -q "obdidx" || error "$FILE1 missing EA"
5324         $GETSTRIPE $FILEN | grep -q "obdidx" || error "$FILEN missing EA"
5325
5326         sleep 1  #make sure we get new statfs data
5327         df $dir
5328         local MDSFREE2=$(do_facet $facet \
5329                 lctl get_param -n osd*.*$mdtname.kbytesfree)
5330         local MDCFREE2=$(lctl get_param -n mdc.*$mdtname-mdc-*.kbytesfree)
5331         if [[ $MDCFREE2 -lt $((MDCFREE - 16)) ]]; then
5332                 if [ "$MDSFREE" != "$MDSFREE2" ]; then
5333                         error "MDC before $MDCFREE != after $MDCFREE2"
5334                 else
5335                         echo "MDC before $MDCFREE != after $MDCFREE2"
5336                         echo "unable to confirm if MDS has large inodes"
5337                 fi
5338         fi
5339         rm -rf $dir
5340 }
5341 run_test 57b "default LOV EAs are stored inside large inodes ==="
5342
5343 test_58() {
5344         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5345         [ -z "$(which wiretest 2>/dev/null)" ] &&
5346                         skip_env "could not find wiretest" && return
5347         wiretest
5348 }
5349 run_test 58 "verify cross-platform wire constants =============="
5350
5351 test_59() {
5352         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5353         echo "touch 130 files"
5354         createmany -o $DIR/f59- 130
5355         echo "rm 130 files"
5356         unlinkmany $DIR/f59- 130
5357         sync
5358         # wait for commitment of removal
5359         wait_delete_completed
5360 }
5361 run_test 59 "verify cancellation of llog records async ========="
5362
5363 TEST60_HEAD="test_60 run $RANDOM"
5364 test_60a() {
5365         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5366         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
5367         do_facet mgs "! which run-llog.sh &> /dev/null" &&
5368                 do_facet mgs "! ls run-llog.sh &> /dev/null" &&
5369                         skip_env "missing subtest run-llog.sh" && return
5370
5371         log "$TEST60_HEAD - from kernel mode"
5372         do_facet mgs "$LCTL set_param debug=warning; $LCTL dk > /dev/null"
5373         do_facet mgs sh run-llog.sh
5374         do_facet mgs $LCTL dk > $TMP/$tfile
5375
5376         # LU-6388: test llog_reader
5377         local llog_reader=$(do_facet mgs "which llog_reader 2> /dev/null")
5378         llog_reader=${llog_reader:-$LUSTRE/utils/llog_reader}
5379         [ -z $(do_facet mgs ls -d $llog_reader 2> /dev/null) ] &&
5380                         skip_env "missing llog_reader" && return
5381         local fstype=$(facet_fstype mgs)
5382         [ $fstype != ldiskfs -a $fstype != zfs ] &&
5383                 skip_env "Only for ldiskfs or zfs type mgs" && return
5384
5385         local mntpt=$(facet_mntpt mgs)
5386         local mgsdev=$(mgsdevname 1)
5387         local fid_list
5388         local fid
5389         local rec_list
5390         local rec
5391         local rec_type
5392         local obj_file
5393         local path
5394         local seq
5395         local oid
5396         local pass=true
5397
5398         #get fid and record list
5399         fid_list=($(awk '/9_sub.*record/ { print $NF }' /$TMP/$tfile |
5400                 tail -n 4))
5401         rec_list=($(awk '/9_sub.*record/ { print $((NF-3)) }' /$TMP/$tfile |
5402                 tail -n 4))
5403         #remount mgs as ldiskfs or zfs type
5404         stop mgs || error "stop mgs failed"
5405         mount_fstype mgs || error "remount mgs failed"
5406         for ((i = 0; i < ${#fid_list[@]}; i++)); do
5407                 fid=${fid_list[i]}
5408                 rec=${rec_list[i]}
5409                 seq=$(echo $fid | awk -F ':' '{ print $1 }' | sed -e "s/^0x//g")
5410                 oid=$(echo $fid | awk -F ':' '{ print $2 }' | sed -e "s/^0x//g")
5411                 oid=$((16#$oid))
5412
5413                 case $fstype in
5414                         ldiskfs )
5415                                 obj_file=$mntpt/O/$seq/d$((oid%32))/$oid ;;
5416                         zfs )
5417                                 obj_file=$mntpt/oi.$(($((16#$seq))&127))/$fid ;;
5418                 esac
5419                 echo "obj_file is $obj_file"
5420                 do_facet mgs $llog_reader $obj_file
5421
5422                 rec_type=$(do_facet mgs $llog_reader $obj_file | grep "type=" |
5423                         awk '{ print $3 }' | sed -e "s/^type=//g")
5424                 if [ $rec_type != $rec ]; then
5425                         echo "FAILED test_60a wrong record type $rec_type," \
5426                               "should be $rec"
5427                         pass=false
5428                         break
5429                 fi
5430
5431                 #check obj path if record type is LLOG_LOGID_MAGIC
5432                 if [ "$rec" == "1064553b" ]; then
5433                         path=$(do_facet mgs $llog_reader $obj_file |
5434                                 grep "path=" | awk '{ print $NF }' |
5435                                 sed -e "s/^path=//g")
5436                         if [ $obj_file != $mntpt/$path ]; then
5437                                 echo "FAILED test_60a wrong obj path" \
5438                                       "$montpt/$path, should be $obj_file"
5439                                 pass=false
5440                                 break
5441                         fi
5442                 fi
5443         done
5444         rm -f $TMP/$tfile
5445         #restart mgs before "error", otherwise it will block the next test
5446         stop mgs || error "stop mgs failed"
5447         start mgs $(mgsdevname) $MGS_MOUNT_OPTS || error "start mgs failed"
5448         $pass || error "test failed, see FAILED test_60a messages for specifics"
5449 }
5450 run_test 60a "llog_test run from kernel module and test llog_reader"
5451
5452 test_60aa() {
5453         # test old logid format
5454         if [ $(lustre_version_code mgs) -le $(version_code 3.1.53) ]; then
5455                 do_facet mgs $LCTL dl | grep MGS
5456                 do_facet mgs "$LCTL --device %MGS llog_print \\\\\\\$$FSNAME-client" ||
5457                         error "old llog_print failed"
5458         fi
5459
5460         # test new logid format
5461         if [ $(lustre_version_code mgs) -ge $(version_code 2.9.53) ]; then
5462                 do_facet mgs "$LCTL --device MGS llog_print $FSNAME-client" ||
5463                         error "new llog_print failed"
5464         fi
5465 }
5466 run_test 60aa "llog_print works with FIDs and simple names"
5467
5468 test_60b() { # bug 6411
5469         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5470         dmesg > $DIR/$tfile
5471         LLOG_COUNT=$(dmesg | awk "/$TEST60_HEAD/ { marker = 1; from_marker = 0; }
5472                                 /llog.test/ {
5473                                         if (marker)
5474                                                 from_marker++
5475                                         from_begin++
5476                                 }
5477                                 END {
5478                                         if (marker)
5479                                                 print from_marker
5480                                         else
5481                                                 print from_begin
5482                                 }")
5483         [[ $LLOG_COUNT -gt 100 ]] &&
5484                 error "CDEBUG_LIMIT not limiting messages ($LLOG_COUNT)" || true
5485 }
5486 run_test 60b "limit repeated messages from CERROR/CWARN ========"
5487
5488 test_60c() {
5489         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5490         echo "create 5000 files"
5491         createmany -o $DIR/f60c- 5000
5492 #define OBD_FAIL_MDS_LLOG_CREATE_FAILED  0x137
5493         lctl set_param fail_loc=0x80000137
5494         unlinkmany $DIR/f60c- 5000
5495         lctl set_param fail_loc=0
5496 }
5497 run_test 60c "unlink file when mds full"
5498
5499 test_60d() {
5500         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5501         SAVEPRINTK=$(lctl get_param -n printk)
5502
5503         # verify "lctl mark" is even working"
5504         MESSAGE="test message ID $RANDOM $$"
5505         $LCTL mark "$MESSAGE" || error "$LCTL mark failed"
5506         dmesg | grep -q "$MESSAGE" || error "didn't find debug marker in log"
5507
5508         lctl set_param printk=0 || error "set lnet.printk failed"
5509         lctl get_param -n printk | grep emerg || error "lnet.printk dropped emerg"
5510         MESSAGE="new test message ID $RANDOM $$"
5511         # Assume here that libcfs_debug_mark_buffer() uses D_WARNING
5512         $LCTL mark "$MESSAGE" || error "$LCTL mark failed"
5513         dmesg | grep -q "$MESSAGE" && error "D_WARNING wasn't masked" || true
5514
5515         lctl set_param -n printk="$SAVEPRINTK"
5516 }
5517 run_test 60d "test printk console message masking"
5518
5519 test_60e() {
5520         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5521         remote_mds_nodsh && skip "remote MDS with nodsh" && return
5522         touch $DIR/$tfile
5523 #define OBD_FAIL_MDS_LLOG_CREATE_FAILED2  0x15b
5524         do_facet mds1 lctl set_param fail_loc=0x15b
5525         rm $DIR/$tfile
5526 }
5527 run_test 60e "no space while new llog is being created"
5528
5529 test_61() {
5530         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5531         f="$DIR/f61"
5532         dd if=/dev/zero of=$f bs=$(page_size) count=1 || error "dd $f failed"
5533         cancel_lru_locks osc
5534         $MULTIOP $f OSMWUc || error "$MULTIOP $f failed"
5535         sync
5536 }
5537 run_test 61 "mmap() writes don't make sync hang ================"
5538
5539 # bug 2330 - insufficient obd_match error checking causes LBUG
5540 test_62() {
5541         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5542         f="$DIR/f62"
5543         echo foo > $f
5544         cancel_lru_locks osc
5545         lctl set_param fail_loc=0x405
5546         cat $f && error "cat succeeded, expect -EIO"
5547         lctl set_param fail_loc=0
5548 }
5549 # This test is now irrelevant (as of bug 10718 inclusion), we no longer
5550 # match every page all of the time.
5551 #run_test 62 "verify obd_match failure doesn't LBUG (should -EIO)"
5552
5553 # bug 2319 - oig_wait() interrupted causes crash because of invalid waitq.
5554 # Though this test is irrelevant anymore, it helped to reveal some
5555 # other grant bugs (LU-4482), let's keep it.
5556 test_63a() {   # was test_63
5557         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5558         MAX_DIRTY_MB=`lctl get_param -n osc.*.max_dirty_mb | head -n 1`
5559         for i in `seq 10` ; do
5560                 dd if=/dev/zero of=$DIR/f63 bs=8k &
5561                 sleep 5
5562                 kill $!
5563                 sleep 1
5564         done
5565
5566         rm -f $DIR/f63 || true
5567 }
5568 run_test 63a "Verify oig_wait interruption does not crash ======="
5569
5570 # bug 2248 - async write errors didn't return to application on sync
5571 # bug 3677 - async write errors left page locked
5572 test_63b() {
5573         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5574         debugsave
5575         lctl set_param debug=-1
5576
5577         # ensure we have a grant to do async writes
5578         dd if=/dev/zero of=$DIR/$tfile bs=4k count=1
5579         rm $DIR/$tfile
5580
5581         sync    # sync lest earlier test intercept the fail_loc
5582
5583         #define OBD_FAIL_OSC_BRW_PREP_REQ        0x406
5584         lctl set_param fail_loc=0x80000406
5585         $MULTIOP $DIR/$tfile Owy && \
5586                 error "sync didn't return ENOMEM"
5587         sync; sleep 2; sync     # do a real sync this time to flush page
5588         lctl get_param -n llite.*.dump_page_cache | grep locked && \
5589                 error "locked page left in cache after async error" || true
5590         debugrestore
5591 }
5592 run_test 63b "async write errors should be returned to fsync ==="
5593
5594 test_64a () {
5595         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5596         df $DIR
5597         lctl get_param -n osc.*[oO][sS][cC][_-]*.cur* | grep "[0-9]"
5598 }
5599 run_test 64a "verify filter grant calculations (in kernel) ====="
5600
5601 test_64b () {
5602         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5603         sh oos.sh $MOUNT || error "oos.sh failed: $?"
5604 }
5605 run_test 64b "check out-of-space detection on client ==========="
5606
5607 test_64c() {
5608         $LCTL set_param osc.*OST0000-osc-[^mM]*.cur_grant_bytes=0
5609 }
5610 run_test 64c "verify grant shrink ========================------"
5611
5612 # bug 1414 - set/get directories' stripe info
5613 test_65a() {
5614         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5615         test_mkdir -p $DIR/$tdir
5616         touch $DIR/$tdir/f1
5617         $LVERIFY $DIR/$tdir $DIR/$tdir/f1 || error "lverify failed"
5618 }
5619 run_test 65a "directory with no stripe info ===================="
5620
5621 test_65b() {
5622         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5623         test_mkdir -p $DIR/$tdir
5624         local STRIPESIZE=$($GETSTRIPE -S $DIR/$tdir)
5625
5626         $SETSTRIPE -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
5627                                                 error "setstripe"
5628         touch $DIR/$tdir/f2
5629         $LVERIFY $DIR/$tdir $DIR/$tdir/f2 || error "lverify failed"
5630 }
5631 run_test 65b "directory setstripe -S stripe_size*2 -i 0 -c 1"
5632
5633 test_65c() {
5634         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5635         if [[ $OSTCOUNT -gt 1 ]]; then
5636                 test_mkdir -p $DIR/$tdir
5637                 local STRIPESIZE=$($GETSTRIPE -S $DIR/$tdir)
5638
5639                 $SETSTRIPE -S $(($STRIPESIZE * 4)) -i 1 \
5640                         -c $(($OSTCOUNT - 1)) $DIR/$tdir || error "setstripe"
5641                 touch $DIR/$tdir/f3
5642                 $LVERIFY $DIR/$tdir $DIR/$tdir/f3 || error "lverify failed"
5643         fi
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 -p $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 -p $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 -p $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 -p $DIR/$tdir
5690         local STRIPESIZE=$($GETSTRIPE -S $DIR/$tdir)
5691
5692         $SETSTRIPE -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
5693                                                         error "setstripe"
5694         $SETSTRIPE -d $DIR/$tdir || error "setstripe"
5695         $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 -p $DIR/$tdir
5703         local STRIPESIZE=$($GETSTRIPE -S $DIR/$tdir)
5704
5705         $SETSTRIPE -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
5706                                                         error "setstripe"
5707         test_mkdir -p $DIR/$tdir/dd1
5708         [ $($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 -p $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 test_76() { # Now for bug 20433, added originally in bug 1443
6011         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6012         local CPUS=$(getconf _NPROCESSORS_ONLN 2>/dev/null)
6013         cancel_lru_locks osc
6014         BEFORE_INODES=$(num_inodes)
6015         echo "before inodes: $BEFORE_INODES"
6016         local COUNT=1000
6017         [ "$SLOW" = "no" ] && COUNT=100
6018         for i in $(seq $COUNT); do
6019                 touch $DIR/$tfile
6020                 rm -f $DIR/$tfile
6021         done
6022         cancel_lru_locks osc
6023         AFTER_INODES=$(num_inodes)
6024         echo "after inodes: $AFTER_INODES"
6025         local wait=0
6026         while [[ $((AFTER_INODES-1*${CPUS:-1})) -gt $BEFORE_INODES ]]; do
6027                 sleep 2
6028                 AFTER_INODES=$(num_inodes)
6029                 wait=$((wait+2))
6030                 echo "wait $wait seconds inodes: $AFTER_INODES"
6031                 if [ $wait -gt 30 ]; then
6032                         error "inode slab grew from $BEFORE_INODES to $AFTER_INODES"
6033                 fi
6034         done
6035 }
6036 run_test 76 "confirm clients recycle inodes properly ===="
6037
6038
6039 export ORIG_CSUM=""
6040 set_checksums()
6041 {
6042         # Note: in sptlrpc modes which enable its own bulk checksum, the
6043         # original crc32_le bulk checksum will be automatically disabled,
6044         # and the OBD_FAIL_OSC_CHECKSUM_SEND/OBD_FAIL_OSC_CHECKSUM_RECEIVE
6045         # will be checked by sptlrpc code against sptlrpc bulk checksum.
6046         # In this case set_checksums() will not be no-op, because sptlrpc
6047         # bulk checksum will be enabled all through the test.
6048
6049         [ "$ORIG_CSUM" ] || ORIG_CSUM=`lctl get_param -n osc.*.checksums | head -n1`
6050         lctl set_param -n osc.*.checksums $1
6051         return 0
6052 }
6053
6054 export ORIG_CSUM_TYPE="`lctl get_param -n osc.*osc-[^mM]*.checksum_type |
6055                         sed 's/.*\[\(.*\)\].*/\1/g' | head -n1`"
6056 CKSUM_TYPES=${CKSUM_TYPES:-"crc32 adler"}
6057 [ "$ORIG_CSUM_TYPE" = "crc32c" ] && CKSUM_TYPES="$CKSUM_TYPES crc32c"
6058 set_checksum_type()
6059 {
6060         lctl set_param -n osc.*osc-[^mM]*.checksum_type $1
6061         log "set checksum type to $1"
6062         return 0
6063 }
6064 F77_TMP=$TMP/f77-temp
6065 F77SZ=8
6066 setup_f77() {
6067         dd if=/dev/urandom of=$F77_TMP bs=1M count=$F77SZ || \
6068                 error "error writing to $F77_TMP"
6069 }
6070
6071 test_77a() { # bug 10889
6072         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6073         $GSS && skip "could not run with gss" && return
6074         [ ! -f $F77_TMP ] && setup_f77
6075         set_checksums 1
6076         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ || error "dd error"
6077         set_checksums 0
6078         rm -f $DIR/$tfile
6079 }
6080 run_test 77a "normal checksum read/write operation"
6081
6082 test_77b() { # bug 10889
6083         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6084         $GSS && skip "could not run with gss" && return
6085         [ ! -f $F77_TMP ] && setup_f77
6086         #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
6087         $LCTL set_param fail_loc=0x80000409
6088         set_checksums 1
6089
6090         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ conv=sync ||
6091                 error "dd error: $?"
6092         $LCTL set_param fail_loc=0
6093
6094         for algo in $CKSUM_TYPES; do
6095                 cancel_lru_locks osc
6096                 set_checksum_type $algo
6097                 #define OBD_FAIL_OSC_CHECKSUM_RECEIVE    0x408
6098                 $LCTL set_param fail_loc=0x80000408
6099                 cmp $F77_TMP $DIR/$tfile || error "file compare failed"
6100                 $LCTL set_param fail_loc=0
6101         done
6102         set_checksums 0
6103         set_checksum_type $ORIG_CSUM_TYPE
6104         rm -f $DIR/$tfile
6105 }
6106 run_test 77b "checksum error on client write, read"
6107
6108 cleanup_77c() {
6109         trap 0
6110         set_checksums 0
6111         $LCTL set_param osc.*osc-[^mM]*.checksum_dump=0
6112         $check_ost &&
6113                 do_facet ost1 $LCTL set_param obdfilter.*-OST*.checksum_dump=0
6114         [ -n $osc_file_prefix ] && rm -f ${osc_file_prefix}*
6115         $check_ost && [ -n $ost_file_prefix ] &&
6116                 do_facet ost1 rm -f ${ost_file_prefix}\*
6117 }
6118
6119 test_77c() {
6120         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6121         $GSS && skip "could not run with gss" && return
6122
6123         local bad1
6124         local osc_file_prefix
6125         local osc_file
6126         local check_ost=false
6127         local ost_file_prefix
6128         local ost_file
6129         local orig_cksum
6130         local dump_cksum
6131         local fid
6132
6133         # ensure corruption will occur on first OSS/OST
6134         $LFS setstripe -i 0 $DIR/$tfile
6135
6136         [ ! -f $F77_TMP ] && setup_f77
6137         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ conv=sync ||
6138                 error "dd write error: $?"
6139         fid=$($LFS path2fid $DIR/$tfile)
6140
6141         if [ $(lustre_version_code ost1) -ge $(version_code 2.9.57) ]
6142         then
6143                 check_ost=true
6144                 ost_file_prefix=$(do_facet ost1 $LCTL get_param -n debug_path)
6145                 ost_file_prefix=${ost_file_prefix}-checksum_dump-ost-\\${fid}
6146         else
6147                 echo "OSS do not support bulk pages dump upon error"
6148         fi
6149
6150         osc_file_prefix=$($LCTL get_param -n debug_path)
6151         osc_file_prefix=${osc_file_prefix}-checksum_dump-osc-\\${fid}
6152
6153         trap cleanup_77c EXIT
6154
6155         set_checksums 1
6156         # enable bulk pages dump upon error on Client
6157         $LCTL set_param osc.*osc-[^mM]*.checksum_dump=1
6158         # enable bulk pages dump upon error on OSS
6159         $check_ost &&
6160                 do_facet ost1 $LCTL set_param obdfilter.*-OST*.checksum_dump=1
6161
6162         # flush Client cache to allow next read to reach OSS
6163         cancel_lru_locks osc
6164
6165         #define OBD_FAIL_OSC_CHECKSUM_RECEIVE       0x408
6166         $LCTL set_param fail_loc=0x80000408
6167         dd if=$DIR/$tfile of=/dev/null bs=1M || error "dd read error: $?"
6168         $LCTL set_param fail_loc=0
6169
6170         rm -f $DIR/$tfile
6171
6172         # check cksum dump on Client
6173         osc_file=$(ls ${osc_file_prefix}*)
6174         [ -n "$osc_file" ] || error "no checksum dump file on Client"
6175         # OBD_FAIL_OSC_CHECKSUM_RECEIVE corrupts with "bad1" at start of file
6176         bad1=$(dd if=$osc_file bs=1 count=4 2>/dev/null) || error "dd error: $?"
6177         [ $bad1 == "bad1" ] || error "unexpected corrupt pattern"
6178         orig_cksum=$(dd if=$F77_TMP bs=1 skip=4 count=1048572 2>/dev/null |
6179                      cksum)
6180         dump_cksum=$(dd if=$osc_file bs=1 skip=4 2>/dev/null | cksum)
6181         [[ "$orig_cksum" == "$dump_cksum" ]] ||
6182                 error "dump content does not match on Client"
6183
6184         $check_ost || skip "No need to check cksum dump on OSS"
6185
6186         # check cksum dump on OSS
6187         ost_file=$(do_facet ost1 ls ${ost_file_prefix}\*)
6188         [ -n "$ost_file" ] || error "no checksum dump file on OSS"
6189         orig_cksum=$(dd if=$F77_TMP bs=1048576 count=1 2>/dev/null | cksum)
6190         dump_cksum=$(do_facet ost1 dd if=$ost_file 2>/dev/null \| cksum)
6191         [[ "$orig_cksum" == "$dump_cksum" ]] ||
6192                 error "dump content does not match on OSS"
6193
6194         cleanup_77c
6195 }
6196 run_test 77c "checksum error on client read with debug"
6197
6198 test_77d() { # bug 10889
6199         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6200         $GSS && skip "could not run with gss" && return
6201         #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
6202         $LCTL set_param fail_loc=0x80000409
6203         set_checksums 1
6204         $DIRECTIO write $DIR/$tfile 0 $F77SZ $((1024 * 1024)) ||
6205                 error "direct write: rc=$?"
6206         $LCTL set_param fail_loc=0
6207         set_checksums 0
6208
6209         #define OBD_FAIL_OSC_CHECKSUM_RECEIVE    0x408
6210         $LCTL set_param fail_loc=0x80000408
6211         set_checksums 1
6212         cancel_lru_locks osc
6213         $DIRECTIO read $DIR/$tfile 0 $F77SZ $((1024 * 1024)) ||
6214                 error "direct read: rc=$?"
6215         $LCTL set_param fail_loc=0
6216         set_checksums 0
6217 }
6218 run_test 77d "checksum error on OST direct write, read"
6219
6220 test_77f() { # bug 10889
6221         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6222         $GSS && skip "could not run with gss" && return
6223         set_checksums 1
6224         for algo in $CKSUM_TYPES; do
6225                 cancel_lru_locks osc
6226                 set_checksum_type $algo
6227                 #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
6228                 $LCTL set_param fail_loc=0x409
6229                 $DIRECTIO write $DIR/$tfile 0 $F77SZ $((1024 * 1024)) &&
6230                         error "direct write succeeded"
6231                 $LCTL set_param fail_loc=0
6232         done
6233         set_checksum_type $ORIG_CSUM_TYPE
6234         set_checksums 0
6235 }
6236 run_test 77f "repeat checksum error on write (expect error)"
6237
6238 test_77g() { # bug 10889
6239         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6240         $GSS && skip "could not run with gss" && return
6241         remote_ost_nodsh && skip "remote OST with nodsh" && return
6242
6243         [ ! -f $F77_TMP ] && setup_f77
6244
6245         $SETSTRIPE -c 1 -i 0 $DIR/$tfile
6246         #define OBD_FAIL_OST_CHECKSUM_RECEIVE       0x21a
6247         do_facet ost1 lctl set_param fail_loc=0x8000021a
6248         set_checksums 1
6249         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ ||
6250                 error "write error: rc=$?"
6251         do_facet ost1 lctl set_param fail_loc=0
6252         set_checksums 0
6253
6254         cancel_lru_locks osc
6255         #define OBD_FAIL_OST_CHECKSUM_SEND          0x21b
6256         do_facet ost1 lctl set_param fail_loc=0x8000021b
6257         set_checksums 1
6258         cmp $F77_TMP $DIR/$tfile || error "file compare failed"
6259         do_facet ost1 lctl set_param fail_loc=0
6260         set_checksums 0
6261 }
6262 run_test 77g "checksum error on OST write, read"
6263
6264 test_77j() { # bug 13805
6265         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6266         $GSS && skip "could not run with gss" && return
6267         #define OBD_FAIL_OSC_CKSUM_ADLER_ONLY    0x40c
6268         lctl set_param fail_loc=0x40c
6269         remount_client $MOUNT
6270         lctl set_param fail_loc=0
6271         # wait async osc connect to finish and reflect updated state value
6272         local i
6273         for (( i=0; i < OSTCOUNT; i++ )) ; do
6274                 wait_osc_import_state client ost$((i+1)) FULL
6275         done
6276
6277         for VALUE in $(lctl get_param osc.*osc-[^mM]*.checksum_type); do
6278                 PARAM=$(echo ${VALUE[0]} | cut -d "=" -f1)
6279                 algo=$(lctl get_param -n $PARAM | sed 's/.*\[\(.*\)\].*/\1/g')
6280                 [ "$algo" = "adler" ] || error "algo set to $algo instead of adler"
6281         done
6282         remount_client $MOUNT
6283 }
6284 run_test 77j "client only supporting ADLER32"
6285
6286 [ "$ORIG_CSUM" ] && set_checksums $ORIG_CSUM || true
6287 rm -f $F77_TMP
6288 unset F77_TMP
6289
6290 cleanup_test_78() {
6291         trap 0
6292         rm -f $DIR/$tfile
6293 }
6294
6295 test_78() { # bug 10901
6296         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6297         remote_ost || { skip_env "local OST" && return; }
6298
6299         NSEQ=5
6300         F78SIZE=$(($(awk '/MemFree:/ { print $2 }' /proc/meminfo) / 1024))
6301         echo "MemFree: $F78SIZE, Max file size: $MAXFREE"
6302         MEMTOTAL=$(($(awk '/MemTotal:/ { print $2 }' /proc/meminfo) / 1024))
6303         echo "MemTotal: $MEMTOTAL"
6304
6305         # reserve 256MB of memory for the kernel and other running processes,
6306         # and then take 1/2 of the remaining memory for the read/write buffers.
6307         if [ $MEMTOTAL -gt 512 ] ;then
6308                 MEMTOTAL=$(((MEMTOTAL - 256 ) / 2))
6309         else
6310                 # for those poor memory-starved high-end clusters...
6311                 MEMTOTAL=$((MEMTOTAL / 2))
6312         fi
6313         echo "Mem to use for directio: $MEMTOTAL"
6314
6315         [[ $F78SIZE -gt $MEMTOTAL ]] && F78SIZE=$MEMTOTAL
6316         [[ $F78SIZE -gt 512 ]] && F78SIZE=512
6317         [[ $F78SIZE -gt $((MAXFREE / 1024)) ]] && F78SIZE=$((MAXFREE / 1024))
6318         SMALLESTOST=$($LFS df $DIR | grep OST | awk '{ print $4 }' | sort -n |
6319                 head -n1)
6320         echo "Smallest OST: $SMALLESTOST"
6321         [[ $SMALLESTOST -lt 10240 ]] &&
6322                 skip "too small OSTSIZE, useless to run large O_DIRECT test" && return 0
6323
6324         trap cleanup_test_78 EXIT
6325
6326         [[ $F78SIZE -gt $((SMALLESTOST * $OSTCOUNT / 1024 - 80)) ]] &&
6327                 F78SIZE=$((SMALLESTOST * $OSTCOUNT / 1024 - 80))
6328
6329         [ "$SLOW" = "no" ] && NSEQ=1 && [ $F78SIZE -gt 32 ] && F78SIZE=32
6330         echo "File size: $F78SIZE"
6331         $SETSTRIPE -c $OSTCOUNT $DIR/$tfile || error "setstripe failed"
6332         for i in $(seq 1 $NSEQ); do
6333                 FSIZE=$(($F78SIZE / ($NSEQ - $i + 1)))
6334                 echo directIO rdwr round $i of $NSEQ
6335                 $DIRECTIO rdwr $DIR/$tfile 0 $FSIZE 1048576||error "rdwr failed"
6336         done
6337
6338         cleanup_test_78
6339 }
6340 run_test 78 "handle large O_DIRECT writes correctly ============"
6341
6342 test_79() { # bug 12743
6343         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6344         wait_delete_completed
6345
6346         BKTOTAL=$(calc_osc_kbytes kbytestotal)
6347         BKFREE=$(calc_osc_kbytes kbytesfree)
6348         BKAVAIL=$(calc_osc_kbytes kbytesavail)
6349
6350         STRING=`df -P $MOUNT | tail -n 1 | awk '{print $2","$3","$4}'`
6351         DFTOTAL=`echo $STRING | cut -d, -f1`
6352         DFUSED=`echo $STRING  | cut -d, -f2`
6353         DFAVAIL=`echo $STRING | cut -d, -f3`
6354         DFFREE=$(($DFTOTAL - $DFUSED))
6355
6356         ALLOWANCE=$((64 * $OSTCOUNT))
6357
6358         if [ $DFTOTAL -lt $(($BKTOTAL - $ALLOWANCE)) ] ||
6359            [ $DFTOTAL -gt $(($BKTOTAL + $ALLOWANCE)) ] ; then
6360                 error "df total($DFTOTAL) mismatch OST total($BKTOTAL)"
6361         fi
6362         if [ $DFFREE -lt $(($BKFREE - $ALLOWANCE)) ] ||
6363            [ $DFFREE -gt $(($BKFREE + $ALLOWANCE)) ] ; then
6364                 error "df free($DFFREE) mismatch OST free($BKFREE)"
6365         fi
6366         if [ $DFAVAIL -lt $(($BKAVAIL - $ALLOWANCE)) ] ||
6367            [ $DFAVAIL -gt $(($BKAVAIL + $ALLOWANCE)) ] ; then
6368                 error "df avail($DFAVAIL) mismatch OST avail($BKAVAIL)"
6369         fi
6370 }
6371 run_test 79 "df report consistency check ======================="
6372
6373 test_80() { # bug 10718
6374         remote_ost_nodsh && skip "remote OST with nodsh" && return
6375         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6376         # relax strong synchronous semantics for slow backends like ZFS
6377         local soc="obdfilter.*.sync_on_lock_cancel"
6378         local soc_old=$(do_facet ost1 lctl get_param -n $soc | head -n1)
6379         local hosts=
6380         if [ "$soc_old" != "never" -a "$(facet_fstype ost1)" != "ldiskfs" ]; then
6381                 hosts=$(for host in $(seq -f "ost%g" 1 $OSTCOUNT); do
6382                           facet_active_host $host; done | sort -u)
6383                 do_nodes $hosts lctl set_param $soc=never
6384         fi
6385
6386         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=1M
6387         sync; sleep 1; sync
6388         local BEFORE=`date +%s`
6389         cancel_lru_locks osc
6390         local AFTER=`date +%s`
6391         local DIFF=$((AFTER-BEFORE))
6392         if [ $DIFF -gt 1 ] ; then
6393                 error "elapsed for 1M@1T = $DIFF"
6394         fi
6395
6396         [ -n "$hosts" ] && do_nodes $hosts lctl set_param $soc=$soc_old
6397
6398         rm -f $DIR/$tfile
6399 }
6400 run_test 80 "Page eviction is equally fast at high offsets too  ===="
6401
6402 test_81a() { # LU-456
6403         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6404         remote_ost_nodsh && skip "remote OST with nodsh" && return
6405         # define OBD_FAIL_OST_MAPBLK_ENOSPC    0x228
6406         # MUST OR with the OBD_FAIL_ONCE (0x80000000)
6407         do_facet ost1 lctl set_param fail_loc=0x80000228
6408
6409         # write should trigger a retry and success
6410         $SETSTRIPE -i 0 -c 1 $DIR/$tfile
6411         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
6412         RC=$?
6413         if [ $RC -ne 0 ] ; then
6414                 error "write should success, but failed for $RC"
6415         fi
6416 }
6417 run_test 81a "OST should retry write when get -ENOSPC ==============="
6418
6419 test_81b() { # LU-456
6420         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6421         remote_ost_nodsh && skip "remote OST with nodsh" && return
6422         # define OBD_FAIL_OST_MAPBLK_ENOSPC    0x228
6423         # Don't OR with the OBD_FAIL_ONCE (0x80000000)
6424         do_facet ost1 lctl set_param fail_loc=0x228
6425
6426         # write should retry several times and return -ENOSPC finally
6427         $SETSTRIPE -i 0 -c 1 $DIR/$tfile
6428         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
6429         RC=$?
6430         ENOSPC=28
6431         if [ $RC -ne $ENOSPC ] ; then
6432                 error "dd should fail for -ENOSPC, but succeed."
6433         fi
6434 }
6435 run_test 81b "OST should return -ENOSPC when retry still fails ======="
6436
6437 test_82() { # LU-1031
6438         dd if=/dev/zero of=$DIR/$tfile bs=1M count=10
6439         local gid1=14091995
6440         local gid2=16022000
6441
6442         multiop_bg_pause $DIR/$tfile OG${gid1}_g${gid1}c || return 1
6443         local MULTIPID1=$!
6444         multiop_bg_pause $DIR/$tfile O_G${gid2}r10g${gid2}c || return 2
6445         local MULTIPID2=$!
6446         kill -USR1 $MULTIPID2
6447         sleep 2
6448         if [[ `ps h -o comm -p $MULTIPID2` == "" ]]; then
6449                 error "First grouplock does not block second one"
6450         else
6451                 echo "Second grouplock blocks first one"
6452         fi
6453         kill -USR1 $MULTIPID1
6454         wait $MULTIPID1
6455         wait $MULTIPID2
6456 }
6457 run_test 82 "Basic grouplock test ==============================="
6458
6459 test_83() {
6460         local sfile="/boot/System.map-$(uname -r)"
6461         # define OBD_FAIL_LLITE_PTASK_IO_FAIL 0x140d
6462         $LCTL set_param fail_loc=0x140d
6463         cp $sfile $DIR/$tfile || error "write failed"
6464         diff -c $sfile $DIR/$tfile || error "files are different"
6465         $LCTL set_param fail_loc=0
6466         rm -f $DIR/$tfile
6467 }
6468 run_test 83 "Short write in ptask ==============================="
6469
6470 test_99a() {
6471         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" &&
6472                 return
6473         test_mkdir -p $DIR/d99cvsroot
6474         chown $RUNAS_ID $DIR/d99cvsroot
6475         local oldPWD=$PWD       # bug 13584, use $TMP as working dir
6476         cd $TMP
6477
6478         $RUNAS cvs -d $DIR/d99cvsroot init || error "cvs init failed"
6479         cd $oldPWD
6480 }
6481 run_test 99a "cvs init ========================================="
6482
6483 test_99b() {
6484         [ -z "$(which cvs 2>/dev/null)" ] &&
6485                 skip_env "could not find cvs" && return
6486         [ ! -d $DIR/d99cvsroot ] && test_99a
6487         cd /etc/init.d
6488         # some versions of cvs import exit(1) when asked to import links or
6489         # files they can't read.  ignore those files.
6490         TOIGNORE=$(find . -type l -printf '-I %f\n' -o \
6491                         ! -perm /4 -printf '-I %f\n')
6492         $RUNAS cvs -d $DIR/d99cvsroot import -m "nomesg" $TOIGNORE \
6493                 d99reposname vtag rtag
6494 }
6495 run_test 99b "cvs import ======================================="
6496
6497 test_99c() {
6498         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && return
6499         [ ! -d $DIR/d99cvsroot ] && test_99b
6500         cd $DIR
6501         test_mkdir -p $DIR/d99reposname
6502         chown $RUNAS_ID $DIR/d99reposname
6503         $RUNAS cvs -d $DIR/d99cvsroot co d99reposname
6504 }
6505 run_test 99c "cvs checkout ====================================="
6506
6507 test_99d() {
6508         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && return
6509         [ ! -d $DIR/d99cvsroot ] && test_99c
6510         cd $DIR/d99reposname
6511         $RUNAS touch foo99
6512         $RUNAS cvs add -m 'addmsg' foo99
6513 }
6514 run_test 99d "cvs add =========================================="
6515
6516 test_99e() {
6517         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && return
6518         [ ! -d $DIR/d99cvsroot ] && test_99c
6519         cd $DIR/d99reposname
6520         $RUNAS cvs update
6521 }
6522 run_test 99e "cvs update ======================================="
6523
6524 test_99f() {
6525         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && return
6526         [ ! -d $DIR/d99cvsroot ] && test_99d
6527         cd $DIR/d99reposname
6528         $RUNAS cvs commit -m 'nomsg' foo99
6529     rm -fr $DIR/d99cvsroot
6530 }
6531 run_test 99f "cvs commit ======================================="
6532
6533 test_100() {
6534         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6535         [[ "$NETTYPE" =~ tcp ]] ||
6536                 { skip "TCP secure port test, not useful for NETTYPE=$NETTYPE" &&
6537                         return ; }
6538
6539         remote_ost_nodsh && skip "remote OST with nodsh" && return
6540         remote_mds_nodsh && skip "remote MDS with nodsh" && return
6541         remote_servers ||
6542                 { skip "useless for local single node setup" && return; }
6543
6544         netstat -tna | ( rc=1; while read PROT SND RCV LOCAL REMOTE STAT; do
6545                 [ "$PROT" != "tcp" ] && continue
6546                 RPORT=$(echo $REMOTE | cut -d: -f2)
6547                 [ "$RPORT" != "$ACCEPTOR_PORT" ] && continue
6548
6549                 rc=0
6550                 LPORT=`echo $LOCAL | cut -d: -f2`
6551                 if [ $LPORT -ge 1024 ]; then
6552                         echo "bad: $PROT $SND $RCV $LOCAL $REMOTE $STAT"
6553                         netstat -tna
6554                         error_exit "local: $LPORT > 1024, remote: $RPORT"
6555                 fi
6556         done
6557         [ "$rc" = 0 ] || error_exit "privileged port not found" )
6558 }
6559 run_test 100 "check local port using privileged port ==========="
6560
6561 function get_named_value()
6562 {
6563     local tag
6564
6565     tag=$1
6566     while read ;do
6567         line=$REPLY
6568         case $line in
6569         $tag*)
6570             echo $line | sed "s/^$tag[ ]*//"
6571             break
6572             ;;
6573         esac
6574     done
6575 }
6576
6577 export CACHE_MAX=$($LCTL get_param -n llite.*.max_cached_mb |
6578                    awk '/^max_cached_mb/ { print $2 }')
6579
6580 cleanup_101a() {
6581         $LCTL set_param -n llite.*.max_cached_mb $CACHE_MAX
6582         trap 0
6583 }
6584
6585 test_101a() {
6586         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6587         [ $MDSCOUNT -ge 2 ] && skip "needs < 2 MDTs" && return #LU-4322
6588         local s
6589         local discard
6590         local nreads=10000
6591         local cache_limit=32
6592
6593         $LCTL set_param -n osc.*-osc*.rpc_stats 0
6594         trap cleanup_101a EXIT
6595         $LCTL set_param -n llite.*.read_ahead_stats 0
6596         $LCTL set_param -n llite.*.max_cached_mb $cache_limit
6597
6598         #
6599         # randomly read 10000 of 64K chunks from file 3x 32MB in size
6600         #
6601         echo "nreads: $nreads file size: $((cache_limit * 3))MB"
6602         $READS -f $DIR/$tfile -s$((cache_limit * 3192 * 1024)) -b65536 -C -n$nreads -t 180
6603
6604         discard=0
6605         for s in $($LCTL get_param -n llite.*.read_ahead_stats |
6606                 get_named_value 'read but discarded' | cut -d" " -f1); do
6607                         discard=$(($discard + $s))
6608         done
6609         cleanup_101a
6610
6611         if [[ $(($discard * 10)) -gt $nreads ]]; then
6612                 $LCTL get_param osc.*-osc*.rpc_stats
6613                 $LCTL get_param llite.*.read_ahead_stats
6614                 error "too many ($discard) discarded pages"
6615         fi
6616         rm -f $DIR/$tfile || true
6617 }
6618 run_test 101a "check read-ahead for random reads ================"
6619
6620 setup_test101bc() {
6621         test_mkdir -p $DIR/$tdir
6622         local STRIPE_SIZE=$1
6623         local FILE_LENGTH=$2
6624         STRIPE_OFFSET=0
6625
6626         local FILE_SIZE_MB=$((FILE_LENGTH / STRIPE_SIZE))
6627
6628         local list=$(comma_list $(osts_nodes))
6629         set_osd_param $list '' read_cache_enable 0
6630         set_osd_param $list '' writethrough_cache_enable 0
6631
6632         trap cleanup_test101bc EXIT
6633         # prepare the read-ahead file
6634         $SETSTRIPE -S $STRIPE_SIZE -i $STRIPE_OFFSET -c $OSTCOUNT $DIR/$tfile
6635
6636         dd if=/dev/zero of=$DIR/$tfile bs=$STRIPE_SIZE \
6637                                 count=$FILE_SIZE_MB 2> /dev/null
6638
6639 }
6640
6641 cleanup_test101bc() {
6642         trap 0
6643         rm -rf $DIR/$tdir
6644         rm -f $DIR/$tfile
6645
6646         local list=$(comma_list $(osts_nodes))
6647         set_osd_param $list '' read_cache_enable 1
6648         set_osd_param $list '' writethrough_cache_enable 1
6649 }
6650
6651 calc_total() {
6652         awk 'BEGIN{total=0}; {total+=$1}; END{print total}'
6653 }
6654
6655 ra_check_101() {
6656         local READ_SIZE=$1
6657         local STRIPE_SIZE=$2
6658         local FILE_LENGTH=$3
6659         local RA_INC=1048576
6660         local STRIDE_LENGTH=$((STRIPE_SIZE/READ_SIZE))
6661         local discard_limit=$((((STRIDE_LENGTH - 1)*3/(STRIDE_LENGTH*OSTCOUNT))* \
6662                              (STRIDE_LENGTH*OSTCOUNT - STRIDE_LENGTH)))
6663         DISCARD=$($LCTL get_param -n llite.*.read_ahead_stats |
6664                         get_named_value 'read but discarded' |
6665                         cut -d" " -f1 | calc_total)
6666         if [[ $DISCARD -gt $discard_limit ]]; then
6667                 $LCTL get_param llite.*.read_ahead_stats
6668                 error "Too many ($DISCARD) discarded pages with size (${READ_SIZE})"
6669         else
6670                 echo "Read-ahead success for size ${READ_SIZE}"
6671         fi
6672 }
6673
6674 test_101b() {
6675         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6676         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
6677         local STRIPE_SIZE=1048576
6678         local STRIDE_SIZE=$((STRIPE_SIZE*OSTCOUNT))
6679         if [ $SLOW == "yes" ]; then
6680                 local FILE_LENGTH=$((STRIDE_SIZE * 64))
6681         else
6682                 local FILE_LENGTH=$((STRIDE_SIZE * 8))
6683         fi
6684
6685         local ITERATION=$((FILE_LENGTH / STRIDE_SIZE))
6686
6687         # prepare the read-ahead file
6688         setup_test101bc $STRIPE_SIZE $FILE_LENGTH
6689         cancel_lru_locks osc
6690         for BIDX in 2 4 8 16 32 64 128 256
6691         do
6692                 local BSIZE=$((BIDX*4096))
6693                 local READ_COUNT=$((STRIPE_SIZE/BSIZE))
6694                 local STRIDE_LENGTH=$((STRIDE_SIZE/BSIZE))
6695                 local OFFSET=$((STRIPE_SIZE/BSIZE*(OSTCOUNT - 1)))
6696                 $LCTL set_param -n llite.*.read_ahead_stats 0
6697                 $READS -f $DIR/$tfile  -l $STRIDE_LENGTH -o $OFFSET \
6698                               -s $FILE_LENGTH -b $STRIPE_SIZE -a $READ_COUNT -n $ITERATION
6699                 cancel_lru_locks osc
6700                 ra_check_101 $BSIZE $STRIPE_SIZE $FILE_LENGTH
6701         done
6702         cleanup_test101bc
6703         true
6704 }
6705 run_test 101b "check stride-io mode read-ahead ================="
6706
6707 test_101c() {
6708         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6709         local STRIPE_SIZE=1048576
6710         local FILE_LENGTH=$((STRIPE_SIZE*100))
6711         local nreads=10000
6712         local osc_rpc_stats
6713
6714         setup_test101bc $STRIPE_SIZE $FILE_LENGTH
6715
6716         cancel_lru_locks osc
6717         $LCTL set_param osc.*.rpc_stats 0
6718         $READS -f $DIR/$tfile -s$FILE_LENGTH -b65536 -n$nreads -t 180
6719         for osc_rpc_stats in $($LCTL get_param -N osc.*.rpc_stats); do
6720                 local stats=$($LCTL get_param -n $osc_rpc_stats)
6721                 local lines=$(echo "$stats" | awk 'END {print NR;}')
6722                 local size
6723
6724                 if [ $lines -le 20 ]; then
6725                         continue
6726                 fi
6727                 for size in 1 2 4 8; do
6728                         local rpc=$(echo "$stats" |
6729                                     awk '($1 == "'$size':") {print $2; exit; }')
6730                         [ $rpc != 0 ] &&
6731                                 error "Small $((size*4))k read IO $rpc !"
6732                 done
6733                 echo "$osc_rpc_stats check passed!"
6734         done
6735         cleanup_test101bc
6736         true
6737 }
6738 run_test 101c "check stripe_size aligned read-ahead ================="
6739
6740 set_read_ahead() {
6741         $LCTL get_param -n llite.*.max_read_ahead_mb | head -n 1
6742         $LCTL set_param -n llite.*.max_read_ahead_mb $1 > /dev/null 2>&1
6743 }
6744
6745 test_101d() {
6746         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6747         local file=$DIR/$tfile
6748         local sz_MB=${FILESIZE_101d:-500}
6749         local ra_MB=${READAHEAD_MB:-40}
6750
6751         local free_MB=$(($(df -P $DIR | tail -n 1 | awk '{ print $4 }') / 1024))
6752         [ $free_MB -lt $sz_MB ] &&
6753                 skip "Need free space ${sz_MB}M, have ${free_MB}M" && return
6754
6755         echo "Create test file $file size ${sz_MB}M, ${free_MB}M free"
6756         $SETSTRIPE -c -1 $file || error "setstripe failed"
6757
6758         dd if=/dev/zero of=$file bs=1M count=$sz_MB || error "dd failed"
6759         echo Cancel LRU locks on lustre client to flush the client cache
6760         cancel_lru_locks osc
6761
6762         echo Disable read-ahead
6763         local old_READAHEAD=$(set_read_ahead 0)
6764
6765         echo Reading the test file $file with read-ahead disabled
6766         local raOFF=$(do_and_time "dd if=$file of=/dev/null bs=1M count=$sz_MB")
6767
6768         echo Cancel LRU locks on lustre client to flush the client cache
6769         cancel_lru_locks osc
6770         echo Enable read-ahead with ${ra_MB}MB
6771         set_read_ahead $ra_MB
6772
6773         echo Reading the test file $file with read-ahead enabled
6774         local raON=$(do_and_time "dd if=$file of=/dev/null bs=1M count=$sz_MB")
6775
6776         echo "read-ahead disabled time read $raOFF"
6777         echo "read-ahead enabled  time read $raON"
6778
6779         set_read_ahead $old_READAHEAD
6780         rm -f $file
6781         wait_delete_completed
6782
6783         [ $raOFF -le 1 -o $raON -lt $raOFF ] ||
6784                 error "readahead ${raON}s > no-readahead ${raOFF}s ${sz_MB}M"
6785 }
6786 run_test 101d "file read with and without read-ahead enabled"
6787
6788 test_101e() {
6789         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6790         local file=$DIR/$tfile
6791         local size_KB=500  #KB
6792         local count=100
6793         local bsize=1024
6794
6795         local free_KB=$(df -P $DIR | tail -n 1 | awk '{ print $4 }')
6796         local need_KB=$((count * size_KB))
6797         [[ $free_KB -le $need_KB ]] &&
6798                 skip_env "Need free space $need_KB, have $free_KB" && return
6799
6800         echo "Creating $count ${size_KB}K test files"
6801         for ((i = 0; i < $count; i++)); do
6802                 dd if=/dev/zero of=$file.$i bs=$bsize count=$size_KB 2>/dev/null
6803         done
6804
6805         echo "Cancel LRU locks on lustre client to flush the client cache"
6806         cancel_lru_locks osc
6807
6808         echo "Reset readahead stats"
6809         $LCTL set_param -n llite.*.read_ahead_stats 0
6810
6811         for ((i = 0; i < $count; i++)); do
6812                 dd if=$file.$i of=/dev/null bs=$bsize count=$size_KB 2>/dev/null
6813         done
6814
6815         local miss=$($LCTL get_param -n llite.*.read_ahead_stats |
6816                      get_named_value 'misses' | cut -d" " -f1 | calc_total)
6817
6818         for ((i = 0; i < $count; i++)); do
6819                 rm -rf $file.$i 2>/dev/null
6820         done
6821
6822         #10000 means 20% reads are missing in readahead
6823         [[ $miss -lt 10000 ]] ||  error "misses too much for small reads"
6824 }
6825 run_test 101e "check read-ahead for small read(1k) for small files(500k)"
6826
6827 test_101f() {
6828         which iozone || { skip "no iozone installed" && return; }
6829
6830         local old_debug=$($LCTL get_param debug)
6831         old_debug=${old_debug#*=}
6832         $LCTL set_param debug="reada mmap"
6833
6834         # create a test file
6835         iozone -i 0 -+n -r 1m -s 128m -w -f $DIR/$tfile > /dev/null 2>&1
6836
6837         echo Cancel LRU locks on lustre client to flush the client cache
6838         cancel_lru_locks osc
6839
6840         echo Reset readahead stats
6841         $LCTL set_param -n llite.*.read_ahead_stats 0
6842
6843         echo mmap read the file with small block size
6844         iozone -i 1 -u 1 -l 1 -+n -r 32k -s 128m -B -f $DIR/$tfile \
6845                 > /dev/null 2>&1
6846
6847         echo checking missing pages
6848         $LCTL get_param llite.*.read_ahead_stats
6849         local miss=$($LCTL get_param -n llite.*.read_ahead_stats |
6850                         get_named_value 'misses' | cut -d" " -f1 | calc_total)
6851
6852         $LCTL set_param debug="$old_debug"
6853         [ $miss -lt 3 ] || error "misses too much pages ('$miss')!"
6854         rm -f $DIR/$tfile
6855 }
6856 run_test 101f "check mmap read performance"
6857
6858 test_101g_brw_size_test() {
6859         local mb=$1
6860         local pages=$((mb * 1048576 / $(page_size)))
6861
6862         $LCTL set_param osc.*.max_pages_per_rpc=${mb}M ||
6863                 { error "unable to set max_pages_per_rpc=${mb}M"; return 1; }
6864         for mp in $($LCTL get_param -n osc.*.max_pages_per_rpc); do
6865                 [ $mp -ne $pages ] && error "max_pages_per_rpc $mp != $pages" &&
6866                         return 2
6867         done
6868
6869         $LCTL set_param -n osc.*.rpc_stats=0
6870
6871         # 10 RPCs should be enough for the test
6872         local count=10
6873         dd if=/dev/zero of=$DIR/$tfile bs=${mb}M count=$count ||
6874                 { error "dd write ${mb} MB blocks failed"; return 3; }
6875         cancel_lru_locks osc
6876         dd of=/dev/null if=$DIR/$tfile bs=${mb}M count=$count ||
6877                 { error "dd write ${mb} MB blocks failed"; return 4; }
6878
6879         # calculate number of full-sized read and write RPCs
6880         rpcs=($($LCTL get_param -n 'osc.*.rpc_stats' |
6881                 sed -n '/pages per rpc/,/^$/p' |
6882                 awk '/'$pages':/ { reads += $2; writes += $6 }; \
6883                 END { print reads,writes }'))
6884         [ ${rpcs[0]} -ne $count ] && error "${rpcs[0]} != $count read RPCs" &&
6885                 return 5
6886         [ ${rpcs[1]} -ne $count ] && error "${rpcs[1]} != $count write RPCs" &&
6887                 return 6
6888
6889         return 0
6890 }
6891
6892 test_101g() {
6893         local rpcs
6894         local osts=$(get_facets OST)
6895         local list=$(comma_list $(osts_nodes))
6896         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
6897         local brw_size="obdfilter.*.brw_size"
6898         local ostver=$(lustre_version_code ost1)
6899
6900         $LFS setstripe -i 0 -c 1 $DIR/$tfile
6901
6902         local orig_mb=$(do_facet ost1 $LCTL get_param -n $brw_size | head -n 1)
6903         if [ $ostver -ge $(version_code 2.8.52) ] ||
6904            [ $ostver -ge $(version_code 2.7.17) -a \
6905              $ostver -lt $(version_code 2.7.50) ]; then
6906                 [ $ostver -ge $(version_code 2.9.52) ] && suffix="M"
6907                 if [[ $orig_mb -lt 16 ]]; then
6908                         save_lustre_params $osts "$brw_size" > $p
6909                         do_nodes $list $LCTL set_param -n $brw_size=16$suffix ||
6910                                 error "set 16MB RPC size failed"
6911
6912                         echo "remount client to enable new RPC size"
6913                         remount_client $MOUNT || error "remount_client failed"
6914                 fi
6915
6916                 test_101g_brw_size_test 16 || error "16MB RPC test failed"
6917                 # should be able to set brw_size=12, but no rpc_stats for that
6918                 test_101g_brw_size_test 8 || error "8MB RPC test failed"
6919         fi
6920
6921         test_101g_brw_size_test 4 || error "4MB RPC test failed"
6922
6923         if [[ $orig_mb -lt 16 ]]; then
6924                 restore_lustre_params < $p
6925                 remount_client $MOUNT || error "remount_client restore failed"
6926         fi
6927
6928         rm -f $p $DIR/$tfile
6929 }
6930 run_test 101g "Big bulk(4/16 MiB) readahead"
6931
6932 setup_test102() {
6933         test_mkdir $DIR/$tdir
6934         chown $RUNAS_ID $DIR/$tdir
6935         STRIPE_SIZE=65536
6936         STRIPE_OFFSET=1
6937         STRIPE_COUNT=$OSTCOUNT
6938         [[ $OSTCOUNT -gt 4 ]] && STRIPE_COUNT=4
6939
6940         trap cleanup_test102 EXIT
6941         cd $DIR
6942         $1 $SETSTRIPE -S $STRIPE_SIZE -i $STRIPE_OFFSET -c $STRIPE_COUNT $tdir
6943         cd $DIR/$tdir
6944         for num in 1 2 3 4; do
6945                 for count in $(seq 1 $STRIPE_COUNT); do
6946                         for idx in $(seq 0 $[$STRIPE_COUNT - 1]); do
6947                                 local size=`expr $STRIPE_SIZE \* $num`
6948                                 local file=file"$num-$idx-$count"
6949                                 $1 $SETSTRIPE -S $size -i $idx -c $count $file
6950                         done
6951                 done
6952         done
6953
6954         cd $DIR
6955         $1 tar cf $TMP/f102.tar $tdir --xattrs
6956 }
6957
6958 cleanup_test102() {
6959         trap 0
6960         rm -f $TMP/f102.tar
6961         rm -rf $DIR/d0.sanity/d102
6962 }
6963
6964 test_102a() {
6965         local testfile=$DIR/$tfile
6966
6967         touch $testfile
6968
6969         [ "$UID" != 0 ] && skip_env "must run as root" && return
6970         [ -z "$(lctl get_param -n mdc.*-mdc-*.connect_flags | grep xattr)" ] &&
6971                 skip_env "must have user_xattr" && return
6972
6973         [ -z "$(which setfattr 2>/dev/null)" ] &&
6974                 skip_env "could not find setfattr" && return
6975
6976         echo "set/get xattr..."
6977         setfattr -n trusted.name1 -v value1 $testfile ||
6978                 error "setfattr -n trusted.name1=value1 $testfile failed"
6979         getfattr -n trusted.name1 $testfile 2> /dev/null |
6980           grep "trusted.name1=.value1" ||
6981                 error "$testfile missing trusted.name1=value1"
6982
6983         setfattr -n user.author1 -v author1 $testfile ||
6984                 error "setfattr -n user.author1=author1 $testfile failed"
6985         getfattr -n user.author1 $testfile 2> /dev/null |
6986           grep "user.author1=.author1" ||
6987                 error "$testfile missing trusted.author1=author1"
6988
6989         echo "listxattr..."
6990         setfattr -n trusted.name2 -v value2 $testfile ||
6991                 error "$testfile unable to set trusted.name2"
6992         setfattr -n trusted.name3 -v value3 $testfile ||
6993                 error "$testfile unable to set trusted.name3"
6994         [ $(getfattr -d -m "^trusted" $testfile 2> /dev/null |
6995             grep "trusted.name" | wc -l) -eq 3 ] ||
6996                 error "$testfile missing 3 trusted.name xattrs"
6997
6998         setfattr -n user.author2 -v author2 $testfile ||
6999                 error "$testfile unable to set user.author2"
7000         setfattr -n user.author3 -v author3 $testfile ||
7001                 error "$testfile unable to set user.author3"
7002         [ $(getfattr -d -m "^user" $testfile 2> /dev/null |
7003             grep "user.author" | wc -l) -eq 3 ] ||
7004                 error "$testfile missing 3 user.author xattrs"
7005
7006         echo "remove xattr..."
7007         setfattr -x trusted.name1 $testfile ||
7008                 error "$testfile error deleting trusted.name1"
7009         getfattr -d -m trusted $testfile 2> /dev/null | grep "trusted.name1" &&
7010                 error "$testfile did not delete trusted.name1 xattr"
7011
7012         setfattr -x user.author1 $testfile ||
7013                 error "$testfile error deleting user.author1"
7014         echo "set lustre special xattr ..."
7015         $LFS setstripe -c1 $testfile
7016         local lovea=$(getfattr -n "trusted.lov" -e hex $testfile |
7017                 awk -F "=" '/trusted.lov/ { print $2 }' )
7018         setfattr -n "trusted.lov" -v $lovea $testfile ||
7019                 error "$testfile doesn't ignore setting trusted.lov again"
7020         setfattr -n "trusted.lov" -v "invalid_value" $testfile &&
7021                 error "$testfile allow setting invalid trusted.lov"
7022         rm -f $testfile
7023 }
7024 run_test 102a "user xattr test =================================="
7025
7026 test_102b() {
7027         [ -z "$(which setfattr 2>/dev/null)" ] &&
7028                 skip_env "could not find setfattr" && return
7029
7030         # b10930: get/set/list trusted.lov xattr
7031         echo "get/set/list trusted.lov xattr ..."
7032         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
7033         local testfile=$DIR/$tfile
7034         $SETSTRIPE -S 65536 -i 1 -c $OSTCOUNT $testfile ||
7035                 error "setstripe failed"
7036         local STRIPECOUNT=$($GETSTRIPE -c $testfile) ||
7037                 error "getstripe failed"
7038         getfattr -d -m "^trusted" $testfile 2>/dev/null | grep "trusted.lov" ||
7039                 error "can't get trusted.lov from $testfile"
7040
7041         local testfile2=${testfile}2
7042         local value=$(getfattr -n trusted.lov $testfile 2>/dev/null |
7043                         grep "trusted.lov" | sed -e 's/[^=]\+=//')
7044
7045         $MCREATE $testfile2
7046         setfattr -n trusted.lov -v $value $testfile2
7047         local stripe_size=$($GETSTRIPE -S $testfile2)
7048         local stripe_count=$($GETSTRIPE -c $testfile2)
7049         [[ $stripe_size -eq 65536 ]] ||
7050                 error "stripe size $stripe_size != 65536"
7051         [[ $stripe_count -eq $STRIPECOUNT ]] ||
7052                 error "stripe count $stripe_count != $STRIPECOUNT"
7053         rm -f $DIR/$tfile
7054 }
7055 run_test 102b "getfattr/setfattr for trusted.lov EAs ============"
7056
7057 test_102c() {
7058         [ -z "$(which setfattr 2>/dev/null)" ] &&
7059                 skip_env "could not find setfattr" && return
7060
7061         # b10930: get/set/list lustre.lov xattr
7062         echo "get/set/list lustre.lov xattr ..."
7063         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
7064         test_mkdir $DIR/$tdir
7065         chown $RUNAS_ID $DIR/$tdir
7066         local testfile=$DIR/$tdir/$tfile
7067         $RUNAS $SETSTRIPE -S 65536 -i 1 -c $OSTCOUNT $testfile ||
7068                 error "setstripe failed"
7069         local STRIPECOUNT=$($RUNAS $GETSTRIPE -c $testfile) ||
7070                 error "getstripe failed"
7071         $RUNAS getfattr -d -m "^lustre" $testfile 2> /dev/null | \
7072         grep "lustre.lov" || error "can't get lustre.lov from $testfile"
7073
7074         local testfile2=${testfile}2
7075         local value=`getfattr -n lustre.lov $testfile 2> /dev/null | \
7076                      grep "lustre.lov" |sed -e 's/[^=]\+=//'  `
7077
7078         $RUNAS $MCREATE $testfile2
7079         $RUNAS setfattr -n lustre.lov -v $value $testfile2
7080         local stripe_size=$($RUNAS $GETSTRIPE -S $testfile2)
7081         local stripe_count=$($RUNAS $GETSTRIPE -c $testfile2)
7082         [ $stripe_size -eq 65536 ] || error "stripe size $stripe_size != 65536"
7083         [ $stripe_count -eq $STRIPECOUNT ] ||
7084                 error "stripe count $stripe_count != $STRIPECOUNT"
7085 }
7086 run_test 102c "non-root getfattr/setfattr for lustre.lov EAs ==========="
7087
7088 compare_stripe_info1() {
7089         local stripe_index_all_zero=true
7090
7091         for num in 1 2 3 4; do
7092                 for count in $(seq 1 $STRIPE_COUNT); do
7093                         for offset in $(seq 0 $[$STRIPE_COUNT - 1]); do
7094                                 local size=$((STRIPE_SIZE * num))
7095                                 local file=file"$num-$offset-$count"
7096                                 stripe_size=$($LFS getstripe -S $PWD/$file)
7097                                 [[ $stripe_size -ne $size ]] &&
7098                                     error "$file: size $stripe_size != $size"
7099                                 stripe_count=$($LFS getstripe -c $PWD/$file)
7100                                 # allow fewer stripes to be created, ORI-601
7101                                 [[ $stripe_count -lt $(((3 * count + 3) / 4)) ]] &&
7102                                     error "$file: count $stripe_count != $count"
7103                                 stripe_index=$($LFS getstripe -i $PWD/$file)
7104                                 [[ $stripe_index -ne 0 ]] &&
7105                                         stripe_index_all_zero=false
7106                         done
7107                 done
7108         done
7109         $stripe_index_all_zero &&
7110                 error "all files are being extracted starting from OST index 0"
7111         return 0
7112 }
7113
7114 have_xattrs_include() {
7115         tar --help | grep -q xattrs-include &&
7116                 echo --xattrs-include="lustre.*"
7117 }
7118
7119 test_102d() {
7120         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7121         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
7122         local xinc=$(have_xattrs_include)
7123         setup_test102
7124         tar xf $TMP/f102.tar -C $DIR/$tdir --xattrs $xinc
7125         cd $DIR/$tdir/$tdir
7126         compare_stripe_info1
7127 }
7128 run_test 102d "tar restore stripe info from tarfile,not keep osts ==========="
7129
7130 test_102f() {
7131         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7132         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
7133         local xinc=$(have_xattrs_include)
7134         setup_test102
7135         test_mkdir $DIR/$tdir.restore
7136         cd $DIR
7137         tar cf - --xattrs $tdir | tar xf - \
7138                 -C $DIR/$tdir.restore --xattrs $xinc
7139         cd $DIR/$tdir.restore/$tdir
7140         compare_stripe_info1
7141 }
7142 run_test 102f "tar copy files, not keep osts ==========="
7143
7144 grow_xattr() {
7145         local xsize=${1:-1024}  # in bytes
7146         local file=$DIR/$tfile
7147
7148         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep xattr)" ] &&
7149                 skip "must have user_xattr" && return 0
7150         [ -z "$(which setfattr 2>/dev/null)" ] &&
7151                 skip_env "could not find setfattr" && return 0
7152         [ -z "$(which getfattr 2>/dev/null)" ] &&
7153                 skip_env "could not find getfattr" && return 0
7154
7155         touch $file
7156
7157         local value="$(generate_string $xsize)"
7158
7159         local xbig=trusted.big
7160         log "save $xbig on $file"
7161         setfattr -n $xbig -v $value $file ||
7162                 error "saving $xbig on $file failed"
7163
7164         local orig=$(get_xattr_value $xbig $file)
7165         [[ "$orig" != "$value" ]] && error "$xbig different after saving $xbig"
7166
7167         local xsml=trusted.sml
7168         log "save $xsml on $file"
7169         setfattr -n $xsml -v val $file || error "saving $xsml on $file failed"
7170
7171         local new=$(get_xattr_value $xbig $file)
7172         [[ "$new" != "$orig" ]] && error "$xbig different after saving $xsml"
7173
7174         log "grow $xsml on $file"
7175         setfattr -n $xsml -v "$value" $file ||
7176                 error "growing $xsml on $file failed"
7177
7178         new=$(get_xattr_value $xbig $file)
7179         [[ "$new" != "$orig" ]] && error "$xbig different after growing $xsml"
7180         log "$xbig still valid after growing $xsml"
7181
7182         rm -f $file
7183 }
7184
7185 test_102h() { # bug 15777
7186         grow_xattr 1024
7187 }
7188 run_test 102h "grow xattr from inside inode to external block"
7189
7190 test_102ha() {
7191         large_xattr_enabled || { skip "large_xattr disabled" && return; }
7192         grow_xattr $(max_xattr_size)
7193 }
7194 run_test 102ha "grow xattr from inside inode to external inode"
7195
7196 test_102i() { # bug 17038
7197         [ -z "$(which getfattr 2>/dev/null)" ] &&
7198                 skip "could not find getfattr" && return
7199         touch $DIR/$tfile
7200         ln -s $DIR/$tfile $DIR/${tfile}link
7201         getfattr -n trusted.lov $DIR/$tfile ||
7202                 error "lgetxattr on $DIR/$tfile failed"
7203         getfattr -h -n trusted.lov $DIR/${tfile}link 2>&1 |
7204                 grep -i "no such attr" ||
7205                 error "error for lgetxattr on $DIR/${tfile}link is not ENODATA"
7206         rm -f $DIR/$tfile $DIR/${tfile}link
7207 }
7208 run_test 102i "lgetxattr test on symbolic link ============"
7209
7210 test_102j() {
7211         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7212         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
7213         local xinc=$(have_xattrs_include)
7214         setup_test102 "$RUNAS"
7215         chown $RUNAS_ID $DIR/$tdir
7216         $RUNAS tar xf $TMP/f102.tar -C $DIR/$tdir --xattrs $xinc
7217         cd $DIR/$tdir/$tdir
7218         compare_stripe_info1 "$RUNAS"
7219 }
7220 run_test 102j "non-root tar restore stripe info from tarfile, not keep osts ==="
7221
7222 test_102k() {
7223         [ -z "$(which setfattr 2>/dev/null)" ] &&
7224                 skip "could not find setfattr" && return
7225         touch $DIR/$tfile
7226         # b22187 just check that does not crash for regular file.
7227         setfattr -n trusted.lov $DIR/$tfile
7228         # b22187 'setfattr -n trusted.lov' should work as remove LOV EA for directories
7229         local test_kdir=$DIR/$tdir
7230         test_mkdir $test_kdir
7231         local default_size=`$GETSTRIPE -S $test_kdir`
7232         local default_count=`$GETSTRIPE -c $test_kdir`
7233         local default_offset=`$GETSTRIPE -i $test_kdir`
7234         $SETSTRIPE -S 65536 -i 0 -c $OSTCOUNT $test_kdir ||
7235                 error 'dir setstripe failed'
7236         setfattr -n trusted.lov $test_kdir
7237         local stripe_size=`$GETSTRIPE -S $test_kdir`
7238         local stripe_count=`$GETSTRIPE -c $test_kdir`
7239         local stripe_offset=`$GETSTRIPE -i $test_kdir`
7240         [ $stripe_size -eq $default_size ] ||
7241                 error "stripe size $stripe_size != $default_size"
7242         [ $stripe_count -eq $default_count ] ||
7243                 error "stripe count $stripe_count != $default_count"
7244         [ $stripe_offset -eq $default_offset ] ||
7245                 error "stripe offset $stripe_offset != $default_offset"
7246         rm -rf $DIR/$tfile $test_kdir
7247 }
7248 run_test 102k "setfattr without parameter of value shouldn't cause a crash"
7249
7250 test_102l() {
7251         [ -z "$(which getfattr 2>/dev/null)" ] &&
7252                 skip "could not find getfattr" && return
7253
7254         # LU-532 trusted. xattr is invisible to non-root
7255         local testfile=$DIR/$tfile
7256
7257         touch $testfile
7258
7259         echo "listxattr as user..."
7260         chown $RUNAS_ID $testfile
7261         $RUNAS getfattr -d -m '.*' $testfile 2>&1 |
7262             grep -q "trusted" &&
7263                 error "$testfile trusted xattrs are user visible"
7264
7265         return 0;
7266 }
7267 run_test 102l "listxattr size test =================================="
7268
7269 test_102m() { # LU-3403 llite: error of listxattr when buffer is small
7270         local path=$DIR/$tfile
7271         touch $path
7272
7273         listxattr_size_check $path || error "listattr_size_check $path failed"
7274 }
7275 run_test 102m "Ensure listxattr fails on small bufffer ========"
7276
7277 cleanup_test102
7278
7279 getxattr() { # getxattr path name
7280         # Return the base64 encoding of the value of xattr name on path.
7281         local path=$1
7282         local name=$2
7283
7284         # # getfattr --absolute-names --encoding=base64 --name=trusted.lov $path
7285         # file: $path
7286         # trusted.lov=0s0AvRCwEAAAAGAAAAAAAAAAAEAAACAAAAAAAQAAEAA...AAAAAAAAA=
7287         #
7288         # We print just 0s0AvRCwEAAAAGAAAAAAAAAAAEAAACAAAAAAAQAAEAA...AAAAAAAAA=
7289
7290         getfattr --absolute-names --encoding=base64 --name=$name $path |
7291                 awk -F= -v name=$name '$1 == name {
7292                         print substr($0, index($0, "=") + 1);
7293         }'
7294 }
7295
7296 test_102n() { # LU-4101 mdt: protect internal xattrs
7297         [ -z "$(which setfattr 2>/dev/null)" ] &&
7298                 skip "could not find setfattr" && return
7299         if [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.5.50) ]
7300         then
7301                 skip "MDT < 2.5.50 allows setxattr on internal trusted xattrs"
7302                 return
7303         fi
7304
7305         local file0=$DIR/$tfile.0
7306         local file1=$DIR/$tfile.1
7307         local xattr0=$TMP/$tfile.0
7308         local xattr1=$TMP/$tfile.1
7309         local namelist="lov lma lmv link fid version som hsm"
7310         local name
7311         local value
7312
7313         rm -rf $file0 $file1 $xattr0 $xattr1
7314         touch $file0 $file1
7315
7316         # Get 'before' xattrs of $file1.
7317         getfattr --absolute-names --dump --match=- $file1 > $xattr0
7318
7319         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.53) ] &&
7320                 namelist+=" lfsck_namespace"
7321         for name in $namelist; do
7322                 # Try to copy xattr from $file0 to $file1.
7323                 value=$(getxattr $file0 trusted.$name 2> /dev/null)
7324
7325                 setfattr --name=trusted.$name --value="$value" $file1 ||
7326                         error "setxattr 'trusted.$name' failed"
7327
7328                 # Try to set a garbage xattr.
7329                 value=0sVGhlIHF1aWNrIGJyb3duIGZveCBqdW1wcyBvdmVyIGl0c2VsZi4=
7330
7331                 if [[ x$name == "xlov" ]]; then
7332                         setfattr --name=trusted.lov --value="$value" $file1 &&
7333                         error "setxattr invalid 'trusted.lov' success"
7334                 else
7335                         setfattr --name=trusted.$name --value="$value" $file1 ||
7336                                 error "setxattr invalid 'trusted.$name' failed"
7337                 fi
7338
7339                 # Try to remove the xattr from $file1. We don't care if this
7340                 # appears to succeed or fail, we just don't want there to be
7341                 # any changes or crashes.
7342                 setfattr --remove=$trusted.$name $file1 2> /dev/null
7343         done
7344
7345         if [ $(lustre_version_code $SINGLEMDS) -gt $(version_code 2.6.50) ]
7346         then
7347                 name="lfsck_ns"
7348                 # Try to copy xattr from $file0 to $file1.
7349                 value=$(getxattr $file0 trusted.$name 2> /dev/null)
7350
7351                 setfattr --name=trusted.$name --value="$value" $file1 ||
7352                         error "setxattr 'trusted.$name' failed"
7353
7354                 # Try to set a garbage xattr.
7355                 value=0sVGhlIHF1aWNrIGJyb3duIGZveCBqdW1wcyBvdmVyIGl0c2VsZi4=
7356
7357                 setfattr --name=trusted.$name --value="$value" $file1 ||
7358                         error "setxattr 'trusted.$name' failed"
7359
7360                 # Try to remove the xattr from $file1. We don't care if this
7361                 # appears to succeed or fail, we just don't want there to be
7362                 # any changes or crashes.
7363                 setfattr --remove=$trusted.$name $file1 2> /dev/null
7364         fi
7365
7366         # Get 'after' xattrs of file1.
7367         getfattr --absolute-names --dump --match=- $file1 > $xattr1
7368
7369         if ! diff $xattr0 $xattr1; then
7370                 error "before and after xattrs of '$file1' differ"
7371         fi
7372
7373         rm -rf $file0 $file1 $xattr0 $xattr1
7374
7375         return 0
7376 }
7377 run_test 102n "silently ignore setxattr on internal trusted xattrs"
7378
7379 test_102p() { # LU-4703 setxattr did not check ownership
7380         local testfile=$DIR/$tfile
7381
7382         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.5.56) ] &&
7383                 skip "MDS needs to be at least 2.5.56" && return
7384
7385         touch $testfile
7386
7387         echo "setfacl as user..."
7388         $RUNAS setfacl -m "u:$RUNAS_ID:rwx" $testfile
7389         [ $? -ne 0 ] || error "setfacl by $RUNAS_ID was allowed on $testfile"
7390
7391         echo "setfattr as user..."
7392         setfacl -m "u:$RUNAS_ID:---" $testfile
7393         $RUNAS setfattr -x system.posix_acl_access $testfile
7394         [ $? -ne 0 ] || error "setfattr by $RUNAS_ID was allowed on $testfile"
7395 }
7396 run_test 102p "check setxattr(2) correctly fails without permission"
7397
7398 test_102q() {
7399         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.6.92) ] &&
7400                 skip "MDS needs to be at least 2.6.92" && return
7401         orphan_linkea_check $DIR/$tfile || error "orphan_linkea_check"
7402 }
7403 run_test 102q "flistxattr should not return trusted.link EAs for orphans"
7404
7405 test_102r() {
7406         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.6.93) ] &&
7407                 skip "MDS needs to be at least 2.6.93" && return
7408         touch $DIR/$tfile || error "touch"
7409         setfattr -n user.$(basename $tfile) $DIR/$tfile || error "setfattr"
7410         getfattr -n user.$(basename $tfile) $DIR/$tfile || error "getfattr"
7411         rm $DIR/$tfile || error "rm"
7412
7413         #normal directory
7414         mkdir -p $DIR/$tdir || error "mkdir"
7415         setfattr -n user.$(basename $tdir) $DIR/$tdir || error "setfattr dir"
7416         getfattr -n user.$(basename $tdir) $DIR/$tdir || error "getfattr dir"
7417         setfattr -x user.$(basename $tdir) $DIR/$tdir ||
7418                 error "$testfile error deleting user.author1"
7419         getfattr -d -m user.$(basename $tdir) 2> /dev/null |
7420                 grep "user.$(basename $tdir)" &&
7421                 error "$tdir did not delete user.$(basename $tdir)"
7422         rmdir $DIR/$tdir || error "rmdir"
7423
7424         #striped directory
7425         test_mkdir $DIR/$tdir || error "make striped dir"
7426         setfattr -n user.$(basename $tdir) $DIR/$tdir || error "setfattr dir"
7427         getfattr -n user.$(basename $tdir) $DIR/$tdir || error "getfattr dir"
7428         setfattr -x user.$(basename $tdir) $DIR/$tdir ||
7429                 error "$testfile error deleting user.author1"
7430         getfattr -d -m user.$(basename $tdir) 2> /dev/null |
7431                 grep "user.$(basename $tdir)" &&
7432                 error "$tdir did not delete user.$(basename $tdir)"
7433         rmdir $DIR/$tdir || error "rm striped dir"
7434 }
7435 run_test 102r "set EAs with empty values"
7436
7437 run_acl_subtest()
7438 {
7439     $LUSTRE/tests/acl/run $LUSTRE/tests/acl/$1.test
7440     return $?
7441 }
7442
7443 test_103a() {
7444         [ "$UID" != 0 ] && skip_env "must run as root" && return
7445         [ -z "$(lctl get_param -n mdc.*-mdc-*.connect_flags | grep acl)" ] &&
7446                 skip "must have acl enabled" && return
7447         [ -z "$(which setfacl 2>/dev/null)" ] &&
7448                 skip_env "could not find setfacl" && return
7449         $GSS && skip "could not run under gss" && return
7450         remote_mds_nodsh && skip "remote MDS with nodsh" && return
7451
7452         gpasswd -a daemon bin                           # LU-5641
7453         do_facet $SINGLEMDS gpasswd -a daemon bin       # LU-5641
7454
7455         declare -a identity_old
7456
7457         for num in $(seq $MDSCOUNT); do
7458                 switch_identity $num true || identity_old[$num]=$?
7459         done
7460
7461         SAVE_UMASK=$(umask)
7462         umask 0022
7463         mkdir -p $DIR/$tdir
7464         cd $DIR/$tdir
7465
7466         echo "performing cp ..."
7467         run_acl_subtest cp || error "run_acl_subtest cp failed"
7468         echo "performing getfacl-noacl..."
7469         run_acl_subtest getfacl-noacl || error "getfacl-noacl test failed"
7470         echo "performing misc..."
7471         run_acl_subtest misc || error  "misc test failed"
7472         echo "performing permissions..."
7473         run_acl_subtest permissions || error "permissions failed"
7474         # LU-1482 mdd: Setting xattr are properly checked with and without ACLs
7475         if [ $(lustre_version_code $SINGLEMDS) -gt $(version_code 2.8.55) -o \
7476              \( $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.6) -a \
7477              $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.5.29) \) ]
7478         then
7479                 echo "performing permissions xattr..."
7480                 run_acl_subtest permissions_xattr ||
7481                         error "permissions_xattr failed"
7482         fi
7483         echo "performing setfacl..."
7484         run_acl_subtest setfacl || error  "setfacl test failed"
7485
7486         # inheritance test got from HP
7487         echo "performing inheritance..."
7488         cp $LUSTRE/tests/acl/make-tree . || error "cannot copy make-tree"
7489         chmod +x make-tree || error "chmod +x failed"
7490         run_acl_subtest inheritance || error "inheritance test failed"
7491         rm -f make-tree
7492
7493         echo "LU-974 ignore umask when acl is enabled..."
7494         run_acl_subtest 974 || error "LU-974 umask test failed"
7495         if [ $MDSCOUNT -ge 2 ]; then
7496                 run_acl_subtest 974_remote ||
7497                         error "LU-974 umask test failed under remote dir"
7498         fi
7499
7500         echo "LU-2561 newly created file is same size as directory..."
7501         if [ $(facet_fstype $SINGLEMDS) != "zfs" ]; then
7502                 run_acl_subtest 2561 || error "LU-2561 test failed"
7503         else
7504                 run_acl_subtest 2561_zfs || error "LU-2561 zfs test failed"
7505         fi
7506
7507         run_acl_subtest 4924 || error "LU-4924 test failed"
7508
7509         cd $SAVE_PWD
7510         umask $SAVE_UMASK
7511
7512         for num in $(seq $MDSCOUNT); do
7513                 if [ "${identity_old[$num]}" = 1 ]; then
7514                         switch_identity $num false || identity_old[$num]=$?
7515                 fi
7516         done
7517 }
7518 run_test 103a "acl test ========================================="
7519
7520 test_103b() {
7521         remote_mds_nodsh && skip "remote MDS with nodsh" && return
7522         local noacl=false
7523         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
7524         local mountopts=$MDS_MOUNT_OPTS
7525
7526         if [[ "$MDS_MOUNT_OPTS" =~ "noacl" ]]; then
7527                 noacl=true
7528         else
7529                 # stop the MDT
7530                 stop $SINGLEMDS || error "failed to stop MDT."
7531                 # remount the MDT
7532                 if [ -z "$MDS_MOUNT_OPTS" ]; then
7533                         MDS_MOUNT_OPTS="-o noacl"
7534                 else
7535                         MDS_MOUNT_OPTS="${MDS_MOUNT_OPTS},noacl"
7536                 fi
7537                 start $SINGLEMDS $MDT_DEV $MDS_MOUNT_OPTS ||
7538                         error "failed to start MDT."
7539                 MDS_MOUNT_OPTS=$mountopts
7540         fi
7541
7542         touch $DIR/$tfile
7543         setfacl -m u:bin:rw $DIR/$tfile && error "setfacl should fail"
7544
7545         if ! $noacl; then
7546                 # stop the MDT
7547                 stop $SINGLEMDS || error "failed to stop MDT."
7548                 # remount the MDT
7549                 start $SINGLEMDS $MDT_DEV $MDS_MOUNT_OPTS ||
7550                         error "failed to start MDT."
7551         fi
7552
7553         true
7554 }
7555 run_test 103b "MDS mount option 'noacl'"
7556
7557 test_103c() {
7558         mkdir -p $DIR/$tdir
7559         cp -rp $DIR/$tdir $DIR/$tdir.bak
7560
7561         [ -n "$(getfattr -d -m. $DIR/$tdir | grep posix_acl_default)" ] &&
7562                 error "$DIR/$tdir shouldn't contain default ACL"
7563         [ -n "$(getfattr -d -m. $DIR/$tdir.bak | grep posix_acl_default)" ] &&
7564                 error "$DIR/$tdir.bak shouldn't contain default ACL"
7565         true
7566 }
7567 run_test 103c "'cp -rp' won't set empty acl"
7568
7569 test_104a() {
7570         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7571         touch $DIR/$tfile
7572         lfs df || error "lfs df failed"
7573         lfs df -ih || error "lfs df -ih failed"
7574         lfs df -h $DIR || error "lfs df -h $DIR failed"
7575         lfs df -i $DIR || error "lfs df -i $DIR failed"
7576         lfs df $DIR/$tfile || error "lfs df $DIR/$tfile failed"
7577         lfs df -ih $DIR/$tfile || error "lfs df -ih $DIR/$tfile failed"
7578
7579         local OSC=$(lctl dl | grep OST0000-osc-[^M] | awk '{ print $4 }')
7580         lctl --device %$OSC deactivate
7581         lfs df || error "lfs df with deactivated OSC failed"
7582         lctl --device %$OSC activate
7583         # wait the osc back to normal
7584         wait_osc_import_state client ost FULL
7585
7586         lfs df || error "lfs df with reactivated OSC failed"
7587         rm -f $DIR/$tfile
7588 }
7589 run_test 104a "lfs df [-ih] [path] test ========================="
7590
7591 test_104b() {
7592         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7593         [ $RUNAS_ID -eq $UID ] &&
7594                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
7595         chmod 666 /dev/obd
7596         denied_cnt=$(($($RUNAS $LFS check servers 2>&1 |
7597                         grep "Permission denied" | wc -l)))
7598         if [ $denied_cnt -ne 0 ]; then
7599                 error "lfs check servers test failed"
7600         fi
7601 }
7602 run_test 104b "$RUNAS lfs check servers test ===================="
7603
7604 test_105a() {
7605         # doesn't work on 2.4 kernels
7606         touch $DIR/$tfile
7607         if $(flock_is_enabled); then
7608                 flocks_test 1 on -f $DIR/$tfile || error "fail flock on"
7609         else
7610                 flocks_test 1 off -f $DIR/$tfile || error "fail flock off"
7611         fi
7612         rm -f $DIR/$tfile
7613 }
7614 run_test 105a "flock when mounted without -o flock test ========"
7615
7616 test_105b() {
7617         touch $DIR/$tfile
7618         if $(flock_is_enabled); then
7619                 flocks_test 1 on -c $DIR/$tfile || error "fail flock on"
7620         else
7621                 flocks_test 1 off -c $DIR/$tfile || error "fail flock off"
7622         fi
7623         rm -f $DIR/$tfile
7624 }
7625 run_test 105b "fcntl when mounted without -o flock test ========"
7626
7627 test_105c() {
7628         touch $DIR/$tfile
7629         if $(flock_is_enabled); then
7630                 flocks_test 1 on -l $DIR/$tfile || error "fail flock on"
7631         else
7632                 flocks_test 1 off -l $DIR/$tfile || error "fail flock off"
7633         fi
7634         rm -f $DIR/$tfile
7635 }
7636 run_test 105c "lockf when mounted without -o flock test ========"
7637
7638 test_105d() { # bug 15924
7639         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7640         test_mkdir -p $DIR/$tdir
7641         flock_is_enabled || { skip "mount w/o flock enabled" && return; }
7642         #define OBD_FAIL_LDLM_CP_CB_WAIT  0x315
7643         $LCTL set_param fail_loc=0x80000315
7644         flocks_test 2 $DIR/$tdir
7645 }
7646 run_test 105d "flock race (should not freeze) ========"
7647
7648 test_105e() { # bug 22660 && 22040
7649         flock_is_enabled || { skip "mount w/o flock enabled" && return; }
7650         touch $DIR/$tfile
7651         flocks_test 3 $DIR/$tfile
7652 }
7653 run_test 105e "Two conflicting flocks from same process ======="
7654
7655 test_106() { #bug 10921
7656         test_mkdir -p $DIR/$tdir
7657         $DIR/$tdir && error "exec $DIR/$tdir succeeded"
7658         chmod 777 $DIR/$tdir || error "chmod $DIR/$tdir failed"
7659 }
7660 run_test 106 "attempt exec of dir followed by chown of that dir"
7661
7662 test_107() {
7663         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7664         CDIR=`pwd`
7665         cd $DIR
7666
7667         local file=core
7668         rm -f $file
7669
7670         local save_pattern=$(sysctl -n kernel.core_pattern)
7671         local save_uses_pid=$(sysctl -n kernel.core_uses_pid)
7672         sysctl -w kernel.core_pattern=$file
7673         sysctl -w kernel.core_uses_pid=0
7674
7675         ulimit -c unlimited
7676         sleep 60 &
7677         SLEEPPID=$!
7678
7679         sleep 1
7680
7681         kill -s 11 $SLEEPPID
7682         wait $SLEEPPID
7683         if [ -e $file ]; then
7684                 size=`stat -c%s $file`
7685                 [ $size -eq 0 ] && error "Fail to create core file $file"
7686         else
7687                 error "Fail to create core file $file"
7688         fi
7689         rm -f $file
7690         sysctl -w kernel.core_pattern=$save_pattern
7691         sysctl -w kernel.core_uses_pid=$save_uses_pid
7692         cd $CDIR
7693 }
7694 run_test 107 "Coredump on SIG"
7695
7696 test_110() {
7697         test_mkdir -p $DIR/$tdir
7698         test_mkdir $DIR/$tdir/$(str_repeat 'a' 255) ||
7699                 error "mkdir with 255 char failed"
7700         test_mkdir $DIR/$tdir/$(str_repeat 'b' 256) &&
7701                 error "mkdir with 256 char should fail, but did not"
7702         touch $DIR/$tdir/$(str_repeat 'x' 255) ||
7703                 error "create with 255 char failed"
7704         touch $DIR/$tdir/$(str_repeat 'y' 256) &&
7705                 error "create with 256 char should fail, but did not"
7706
7707         ls -l $DIR/$tdir
7708         rm -rf $DIR/$tdir
7709 }
7710 run_test 110 "filename length checking"
7711
7712 #
7713 # Purpose: To verify dynamic thread (OSS) creation.
7714 #
7715 test_115() {
7716         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7717         remote_ost_nodsh && skip "remote OST with nodsh" && return
7718
7719         # Lustre does not stop service threads once they are started.
7720         # Reset number of running threads to default.
7721         stopall
7722         setupall
7723
7724         local OSTIO_pre
7725         local save_params="$TMP/sanity-$TESTNAME.parameters"
7726
7727         # Get ll_ost_io count before I/O
7728         OSTIO_pre=$(do_facet ost1 \
7729                 "$LCTL get_param ost.OSS.ost_io.threads_started | cut -d= -f2")
7730         # Exit if lustre is not running (ll_ost_io not running).
7731         [ -z "$OSTIO_pre" ] && error "no OSS threads"
7732
7733         echo "Starting with $OSTIO_pre threads"
7734         local thread_max=$((OSTIO_pre * 2))
7735         local rpc_in_flight=$((thread_max * 2))
7736         # Number of I/O Process proposed to be started.
7737         local nfiles
7738         local facets=$(get_facets OST)
7739
7740         save_lustre_params client \
7741                 "osc.*OST*.max_rpcs_in_flight" > $save_params
7742         save_lustre_params $facets \
7743                 "ost.OSS.ost_io.threads_max" >> $save_params
7744
7745         # Set in_flight to $rpc_in_flight
7746         $LCTL set_param osc.*OST*.max_rpcs_in_flight=$rpc_in_flight ||
7747                 error "Failed to set max_rpcs_in_flight to $rpc_in_flight"
7748         nfiles=${rpc_in_flight}
7749         # Set ost thread_max to $thread_max
7750         do_facet ost1 \
7751                 "$LCTL set_param ost.OSS.ost_io.threads_max=$thread_max"
7752
7753         # 5 Minutes should be sufficient for max number of OSS
7754         # threads(thread_max) to be created.
7755         local timeout=300
7756
7757         # Start I/O.
7758         local WTL=${WTL:-"$LUSTRE/tests/write_time_limit"}
7759         mkdir -p $DIR/$tdir
7760         for i in $(seq $nfiles); do
7761                 local file=$DIR/$tdir/${tfile}-$i
7762                 $LFS setstripe -c -1 -i 0 $file
7763                 ($WTL $file $timeout)&
7764         done
7765
7766         # I/O Started - Wait for thread_started to reach thread_max or report
7767         # error if thread_started is more than thread_max.
7768         echo "Waiting for thread_started to reach thread_max"
7769         local thread_started=0
7770         local end_time=$((SECONDS + timeout))
7771
7772         while [ $SECONDS -le $end_time ] ; do
7773                 echo -n "."
7774                 # Get ost i/o thread_started count.
7775                 thread_started=$(do_facet ost1 \
7776                         "$LCTL get_param \
7777                         ost.OSS.ost_io.threads_started | cut -d= -f2")
7778                 # Break out if thread_started is equal/greater than thread_max
7779                 if [[ $thread_started -ge $thread_max ]]; then
7780                         echo ll_ost_io thread_started $thread_started, \
7781                                 equal/greater than thread_max $thread_max
7782                         break
7783                 fi
7784                 sleep 1
7785         done
7786
7787         # Cleanup - We have the numbers, Kill i/o jobs if running.
7788         jobcount=($(jobs -p))
7789         for i in $(seq 0 $((${#jobcount[@]}-1)))
7790         do
7791                 kill -9 ${jobcount[$i]}
7792                 if [ $? -ne 0 ] ; then
7793                         echo Warning: \
7794                         Failed to Kill \'WTL\(I/O\)\' with pid ${jobcount[$i]}
7795                 fi
7796         done
7797
7798         # Cleanup files left by WTL binary.
7799         for i in $(seq $nfiles); do
7800                 local file=$DIR/$tdir/${tfile}-$i
7801                 rm -rf $file
7802                 if [ $? -ne 0 ] ; then
7803                         echo "Warning: Failed to delete file $file"
7804                 fi
7805         done
7806
7807         restore_lustre_params <$save_params
7808         rm -f $save_params || echo "Warning: delete file '$save_params' failed"
7809
7810         # Error out if no new thread has started or Thread started is greater
7811         # than thread max.
7812         if [[ $thread_started -le $OSTIO_pre ||
7813                         $thread_started -gt $thread_max ]]; then
7814                 error "ll_ost_io: thread_started $thread_started" \
7815                       "OSTIO_pre $OSTIO_pre, thread_max $thread_max." \
7816                       "No new thread started or thread started greater " \
7817                       "than thread_max."
7818         fi
7819 }
7820 run_test 115 "verify dynamic thread creation===================="
7821
7822 free_min_max () {
7823         wait_delete_completed
7824         AVAIL=($(lctl get_param -n osc.*[oO][sS][cC]-[^M]*.kbytesavail))
7825         echo "OST kbytes available: ${AVAIL[@]}"
7826         MAXV=${AVAIL[0]}
7827         MAXI=0
7828         MINV=${AVAIL[0]}
7829         MINI=0
7830         for ((i = 0; i < ${#AVAIL[@]}; i++)); do
7831                 #echo OST $i: ${AVAIL[i]}kb
7832                 if [[ ${AVAIL[i]} -gt $MAXV ]]; then
7833                         MAXV=${AVAIL[i]}
7834                         MAXI=$i
7835                 fi
7836                 if [[ ${AVAIL[i]} -lt $MINV ]]; then
7837                         MINV=${AVAIL[i]}
7838                         MINI=$i
7839                 fi
7840         done
7841         echo "Min free space: OST $MINI: $MINV"
7842         echo "Max free space: OST $MAXI: $MAXV"
7843 }
7844
7845 test_116a() { # was previously test_116()
7846         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7847         remote_mds_nodsh && skip "remote MDS with nodsh" && return
7848
7849         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
7850
7851         echo -n "Free space priority "
7852         do_facet $SINGLEMDS lctl get_param -n lo*.*-mdtlov.qos_prio_free |
7853                 head -n1
7854         declare -a AVAIL
7855         free_min_max
7856
7857         [ $MINV -eq 0 ] && skip "no free space in OST$MINI, skip" && return
7858         [ $MINV -gt 10000000 ] && skip "too much free space in OST$MINI, skip" \
7859                 && return
7860         trap simple_cleanup_common EXIT
7861
7862
7863         # Check if we need to generate uneven OSTs
7864         test_mkdir -p $DIR/$tdir/OST${MINI}
7865         local FILL=$((MINV / 4))
7866         local DIFF=$((MAXV - MINV))
7867         local DIFF2=$((DIFF * 100 / MINV))
7868
7869         local threshold=$(do_facet $SINGLEMDS \
7870                 lctl get_param -n *.*MDT0000-mdtlov.qos_threshold_rr | head -n1)
7871         threshold=${threshold%%%}
7872         echo -n "Check for uneven OSTs: "
7873         echo -n "diff=${DIFF}KB (${DIFF2}%) must be > ${threshold}% ..."
7874
7875         if [[ $DIFF2 -gt $threshold ]]; then
7876                 echo "ok"
7877                 echo "Don't need to fill OST$MINI"
7878         else
7879                 # generate uneven OSTs. Write 2% over the QOS threshold value
7880                 echo "no"
7881                 DIFF=$((threshold - DIFF2 + 2))
7882                 DIFF2=$((MINV * DIFF / 100))
7883                 echo "Fill $DIFF% remaining space in OST$MINI with ${DIFF2}KB"
7884                 $SETSTRIPE -i $MINI -c 1 $DIR/$tdir/OST${MINI} ||
7885                         error "setstripe failed"
7886                 DIFF=$((DIFF2 / 2048))
7887                 i=0
7888                 while [ $i -lt $DIFF ]; do
7889                         i=$((i + 1))
7890                         dd if=/dev/zero of=$DIR/$tdir/OST${MINI}/$tfile-$i \
7891                                 bs=2M count=1 2>/dev/null
7892                         echo -n .
7893                 done
7894                 echo .
7895                 sync
7896                 sleep_maxage
7897                 free_min_max
7898         fi
7899
7900         DIFF=$((MAXV - MINV))
7901         DIFF2=$((DIFF * 100 / MINV))
7902         echo -n "diff=$DIFF=$DIFF2% must be > $threshold% for QOS mode..."
7903         if [ $DIFF2 -gt $threshold ]; then
7904                 echo "ok"
7905         else
7906                 echo "failed - QOS mode won't be used"
7907                 skip "QOS imbalance criteria not met"
7908                 simple_cleanup_common
7909                 return
7910         fi
7911
7912         MINI1=$MINI
7913         MINV1=$MINV
7914         MAXI1=$MAXI
7915         MAXV1=$MAXV
7916
7917         # now fill using QOS
7918         $SETSTRIPE -c 1 $DIR/$tdir
7919         FILL=$((FILL / 200))
7920         if [ $FILL -gt 600 ]; then
7921                 FILL=600
7922         fi
7923         echo "writing $FILL files to QOS-assigned OSTs"
7924         i=0
7925         while [ $i -lt $FILL ]; do
7926                 i=$((i + 1))
7927                 dd if=/dev/zero of=$DIR/$tdir/$tfile-$i bs=200k \
7928                         count=1 2>/dev/null
7929                 echo -n .
7930         done
7931         echo "wrote $i 200k files"
7932         sync
7933         sleep_maxage
7934
7935         echo "Note: free space may not be updated, so measurements might be off"
7936         free_min_max
7937         DIFF2=$((MAXV - MINV))
7938         echo "free space delta: orig $DIFF final $DIFF2"
7939         [ $DIFF2 -gt $DIFF ] && echo "delta got worse!"
7940         DIFF=$((MINV1 - ${AVAIL[$MINI1]}))
7941         echo "Wrote ${DIFF}KB to smaller OST $MINI1"
7942         DIFF2=$((MAXV1 - ${AVAIL[$MAXI1]}))
7943         echo "Wrote ${DIFF2}KB to larger OST $MAXI1"
7944         if [[ $DIFF -gt 0 ]]; then
7945                 FILL=$((DIFF2 * 100 / DIFF - 100))
7946                 echo "Wrote ${FILL}% more data to larger OST $MAXI1"
7947         fi
7948
7949         # Figure out which files were written where
7950         UUID=$(lctl get_param -n lov.${FSNAME}-clilov-*.target_obd |
7951                awk '/'$MINI1': / {print $2; exit}')
7952         echo $UUID
7953         MINC=$($GETSTRIPE --ost $UUID $DIR/$tdir | grep $DIR | wc -l)
7954         echo "$MINC files created on smaller OST $MINI1"
7955         UUID=$(lctl get_param -n lov.${FSNAME}-clilov-*.target_obd |
7956                awk '/'$MAXI1': / {print $2; exit}')
7957         echo $UUID
7958         MAXC=$($GETSTRIPE --ost $UUID $DIR/$tdir | grep $DIR | wc -l)
7959         echo "$MAXC files created on larger OST $MAXI1"
7960         if [[ $MINC -gt 0 ]]; then
7961                 FILL=$((MAXC * 100 / MINC - 100))
7962                 echo "Wrote ${FILL}% more files to larger OST $MAXI1"
7963         fi
7964         [[ $MAXC -gt $MINC ]] ||
7965                 error_ignore LU-9 "stripe QOS didn't balance free space"
7966         simple_cleanup_common
7967 }
7968 run_test 116a "stripe QOS: free space balance ==================="
7969
7970 test_116b() { # LU-2093
7971         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7972         remote_mds_nodsh && skip "remote MDS with nodsh" && return
7973
7974 #define OBD_FAIL_MDS_OSC_CREATE_FAIL     0x147
7975         local old_rr=$(do_facet $SINGLEMDS lctl get_param -n \
7976                        lo*.$FSNAME-MDT0000-mdtlov.qos_threshold_rr | head -1)
7977         [ -z "$old_rr" ] && skip "no QOS" && return 0
7978         do_facet $SINGLEMDS lctl set_param \
7979                 lo*.$FSNAME-MDT0000-mdtlov.qos_threshold_rr=0
7980         mkdir -p $DIR/$tdir
7981         do_facet $SINGLEMDS lctl set_param fail_loc=0x147
7982         createmany -o $DIR/$tdir/f- 20 || error "can't create"
7983         do_facet $SINGLEMDS lctl set_param fail_loc=0
7984         rm -rf $DIR/$tdir
7985         do_facet $SINGLEMDS lctl set_param \
7986                 lo*.$FSNAME-MDT0000-mdtlov.qos_threshold_rr=$old_rr
7987 }
7988 run_test 116b "QoS shouldn't LBUG if not enough OSTs found on the 2nd pass"
7989
7990 test_117() # bug 10891
7991 {
7992         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7993         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1
7994         #define OBD_FAIL_OST_SETATTR_CREDITS 0x21e
7995         lctl set_param fail_loc=0x21e
7996         > $DIR/$tfile || error "truncate failed"
7997         lctl set_param fail_loc=0
7998         echo "Truncate succeeded."
7999         rm -f $DIR/$tfile
8000 }
8001 run_test 117 "verify osd extend =========="
8002
8003 NO_SLOW_RESENDCOUNT=4
8004 export OLD_RESENDCOUNT=""
8005 set_resend_count () {
8006         local PROC_RESENDCOUNT="osc.${FSNAME}-OST*-osc-*.resend_count"
8007         OLD_RESENDCOUNT=$(lctl get_param -n $PROC_RESENDCOUNT | head -n1)
8008         lctl set_param -n $PROC_RESENDCOUNT $1
8009         echo resend_count is set to $(lctl get_param -n $PROC_RESENDCOUNT)
8010 }
8011
8012 # for reduce test_118* time (b=14842)
8013 [ "$SLOW" = "no" ] && set_resend_count $NO_SLOW_RESENDCOUNT
8014
8015 # Reset async IO behavior after error case
8016 reset_async() {
8017         FILE=$DIR/reset_async
8018
8019         # Ensure all OSCs are cleared
8020         $SETSTRIPE -c -1 $FILE
8021         dd if=/dev/zero of=$FILE bs=64k count=$OSTCOUNT
8022         sync
8023         rm $FILE
8024 }
8025
8026 test_118a() #bug 11710
8027 {
8028         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8029         reset_async
8030
8031         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
8032         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
8033         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
8034
8035         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
8036                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
8037                 return 1;
8038         fi
8039         rm -f $DIR/$tfile
8040 }
8041 run_test 118a "verify O_SYNC works =========="
8042
8043 test_118b()
8044 {
8045         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8046         remote_ost_nodsh && skip "remote OST with nodsh" && return
8047
8048         reset_async
8049
8050         #define OBD_FAIL_SRV_ENOENT 0x217
8051         set_nodes_failloc "$(osts_nodes)" 0x217
8052         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
8053         RC=$?
8054         set_nodes_failloc "$(osts_nodes)" 0
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
8059         if [[ $RC -eq 0 ]]; then
8060                 error "Must return error due to dropped pages, rc=$RC"
8061                 return 1;
8062         fi
8063
8064         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
8065                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
8066                 return 1;
8067         fi
8068
8069         echo "Dirty pages not leaked on ENOENT"
8070
8071         # Due to the above error the OSC will issue all RPCs syncronously
8072         # until a subsequent RPC completes successfully without error.
8073         $MULTIOP $DIR/$tfile Ow4096yc
8074         rm -f $DIR/$tfile
8075
8076         return 0
8077 }
8078 run_test 118b "Reclaim dirty pages on fatal error =========="
8079
8080 test_118c()
8081 {
8082         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8083
8084         # for 118c, restore the original resend count, LU-1940
8085         [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] &&
8086                                 set_resend_count $OLD_RESENDCOUNT
8087         remote_ost_nodsh && skip "remote OST with nodsh" && return
8088
8089         reset_async
8090
8091         #define OBD_FAIL_OST_EROFS               0x216
8092         set_nodes_failloc "$(osts_nodes)" 0x216
8093
8094         # multiop should block due to fsync until pages are written
8095         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
8096         MULTIPID=$!
8097         sleep 1
8098
8099         if [[ `ps h -o comm -p $MULTIPID` != "multiop" ]]; then
8100                 error "Multiop failed to block on fsync, pid=$MULTIPID"
8101         fi
8102
8103         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
8104                     grep -c writeback)
8105         if [[ $WRITEBACK -eq 0 ]]; then
8106                 error "No page in writeback, writeback=$WRITEBACK"
8107         fi
8108
8109         set_nodes_failloc "$(osts_nodes)" 0
8110         wait $MULTIPID
8111         RC=$?
8112         if [[ $RC -ne 0 ]]; then
8113                 error "Multiop fsync failed, rc=$RC"
8114         fi
8115
8116         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
8117         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
8118                     grep -c writeback)
8119         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
8120                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
8121         fi
8122
8123         rm -f $DIR/$tfile
8124         echo "Dirty pages flushed via fsync on EROFS"
8125         return 0
8126 }
8127 run_test 118c "Fsync blocks on EROFS until dirty pages are flushed =========="
8128
8129 # continue to use small resend count to reduce test_118* time (b=14842)
8130 [ "$SLOW" = "no" ] && set_resend_count $NO_SLOW_RESENDCOUNT
8131
8132 test_118d()
8133 {
8134         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8135         remote_ost_nodsh && skip "remote OST with nodsh" && return
8136
8137         reset_async
8138
8139         #define OBD_FAIL_OST_BRW_PAUSE_BULK
8140         set_nodes_failloc "$(osts_nodes)" 0x214
8141         # multiop should block due to fsync until pages are written
8142         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
8143         MULTIPID=$!
8144         sleep 1
8145
8146         if [[ `ps h -o comm -p $MULTIPID` != "multiop" ]]; then
8147                 error "Multiop failed to block on fsync, pid=$MULTIPID"
8148         fi
8149
8150         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
8151                     grep -c writeback)
8152         if [[ $WRITEBACK -eq 0 ]]; then
8153                 error "No page in writeback, writeback=$WRITEBACK"
8154         fi
8155
8156         wait $MULTIPID || error "Multiop fsync failed, rc=$?"
8157         set_nodes_failloc "$(osts_nodes)" 0
8158
8159         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
8160         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
8161                     grep -c writeback)
8162         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
8163                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
8164         fi
8165
8166         rm -f $DIR/$tfile
8167         echo "Dirty pages gaurenteed flushed via fsync"
8168         return 0
8169 }
8170 run_test 118d "Fsync validation inject a delay of the bulk =========="
8171
8172 test_118f() {
8173         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8174         reset_async
8175
8176         #define OBD_FAIL_OSC_BRW_PREP_REQ2        0x40a
8177         lctl set_param fail_loc=0x8000040a
8178
8179         # Should simulate EINVAL error which is fatal
8180         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
8181         RC=$?
8182         if [[ $RC -eq 0 ]]; then
8183                 error "Must return error due to dropped pages, rc=$RC"
8184         fi
8185
8186         lctl set_param fail_loc=0x0
8187
8188         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
8189         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
8190         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
8191                     grep -c writeback)
8192         if [[ $LOCKED -ne 0 ]]; then
8193                 error "Locked pages remain in cache, locked=$LOCKED"
8194         fi
8195
8196         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
8197                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
8198         fi
8199
8200         rm -f $DIR/$tfile
8201         echo "No pages locked after fsync"
8202
8203         reset_async
8204         return 0
8205 }
8206 run_test 118f "Simulate unrecoverable OSC side error =========="
8207
8208 test_118g() {
8209         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8210         reset_async
8211
8212         #define OBD_FAIL_OSC_BRW_PREP_REQ        0x406
8213         lctl set_param fail_loc=0x406
8214
8215         # simulate local -ENOMEM
8216         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
8217         RC=$?
8218
8219         lctl set_param fail_loc=0
8220         if [[ $RC -eq 0 ]]; then
8221                 error "Must return error due to dropped pages, rc=$RC"
8222         fi
8223
8224         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
8225         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
8226         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
8227                         grep -c writeback)
8228         if [[ $LOCKED -ne 0 ]]; then
8229                 error "Locked pages remain in cache, locked=$LOCKED"
8230         fi
8231
8232         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
8233                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
8234         fi
8235
8236         rm -f $DIR/$tfile
8237         echo "No pages locked after fsync"
8238
8239         reset_async
8240         return 0
8241 }
8242 run_test 118g "Don't stay in wait if we got local -ENOMEM  =========="
8243
8244 test_118h() {
8245         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8246         remote_ost_nodsh && skip "remote OST with nodsh" && return
8247
8248         reset_async
8249
8250         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
8251         set_nodes_failloc "$(osts_nodes)" 0x20e
8252         # Should simulate ENOMEM error which is recoverable and should be handled by timeout
8253         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
8254         RC=$?
8255
8256         set_nodes_failloc "$(osts_nodes)" 0
8257         if [[ $RC -eq 0 ]]; then
8258                 error "Must return error due to dropped pages, rc=$RC"
8259         fi
8260
8261         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
8262         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
8263         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
8264                     grep -c writeback)
8265         if [[ $LOCKED -ne 0 ]]; then
8266                 error "Locked pages remain in cache, locked=$LOCKED"
8267         fi
8268
8269         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
8270                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
8271         fi
8272
8273         rm -f $DIR/$tfile
8274         echo "No pages locked after fsync"
8275
8276         return 0
8277 }
8278 run_test 118h "Verify timeout in handling recoverables errors  =========="
8279
8280 [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] && set_resend_count $OLD_RESENDCOUNT
8281
8282 test_118i() {
8283         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8284         remote_ost_nodsh && skip "remote OST with nodsh" && return
8285
8286         reset_async
8287
8288         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
8289         set_nodes_failloc "$(osts_nodes)" 0x20e
8290
8291         # Should simulate ENOMEM error which is recoverable and should be handled by timeout
8292         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
8293         PID=$!
8294         sleep 5
8295         set_nodes_failloc "$(osts_nodes)" 0
8296
8297         wait $PID
8298         RC=$?
8299         if [[ $RC -ne 0 ]]; then
8300                 error "got error, but should be not, rc=$RC"
8301         fi
8302
8303         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
8304         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
8305         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
8306         if [[ $LOCKED -ne 0 ]]; then
8307                 error "Locked pages remain in cache, locked=$LOCKED"
8308         fi
8309
8310         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
8311                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
8312         fi
8313
8314         rm -f $DIR/$tfile
8315         echo "No pages locked after fsync"
8316
8317         return 0
8318 }
8319 run_test 118i "Fix error before timeout in recoverable error  =========="
8320
8321 [ "$SLOW" = "no" ] && set_resend_count 4
8322
8323 test_118j() {
8324         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8325         remote_ost_nodsh && skip "remote OST with nodsh" && return
8326
8327         reset_async
8328
8329         #define OBD_FAIL_OST_BRW_WRITE_BULK2     0x220
8330         set_nodes_failloc "$(osts_nodes)" 0x220
8331
8332         # return -EIO from OST
8333         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
8334         RC=$?
8335         set_nodes_failloc "$(osts_nodes)" 0x0
8336         if [[ $RC -eq 0 ]]; then
8337                 error "Must return error due to dropped pages, rc=$RC"
8338         fi
8339
8340         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
8341         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
8342         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
8343         if [[ $LOCKED -ne 0 ]]; then
8344                 error "Locked pages remain in cache, locked=$LOCKED"
8345         fi
8346
8347         # in recoverable error on OST we want resend and stay until it finished
8348         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
8349                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
8350         fi
8351
8352         rm -f $DIR/$tfile
8353         echo "No pages locked after fsync"
8354
8355         return 0
8356 }
8357 run_test 118j "Simulate unrecoverable OST side error =========="
8358
8359 test_118k()
8360 {
8361         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8362         remote_ost_nodsh && skip "remote OSTs with nodsh" && return
8363
8364         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
8365         set_nodes_failloc "$(osts_nodes)" 0x20e
8366         test_mkdir -p $DIR/$tdir
8367
8368         for ((i=0;i<10;i++)); do
8369                 (dd if=/dev/zero of=$DIR/$tdir/$tfile-$i bs=1M count=10 || \
8370                         error "dd to $DIR/$tdir/$tfile-$i failed" )&
8371                 SLEEPPID=$!
8372                 sleep 0.500s
8373                 kill $SLEEPPID
8374                 wait $SLEEPPID
8375         done
8376
8377         set_nodes_failloc "$(osts_nodes)" 0
8378         rm -rf $DIR/$tdir
8379 }
8380 run_test 118k "bio alloc -ENOMEM and IO TERM handling ========="
8381
8382 test_118l()
8383 {
8384         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8385         # LU-646
8386         test_mkdir -p $DIR/$tdir
8387         $MULTIOP $DIR/$tdir Dy || error "fsync dir failed"
8388         rm -rf $DIR/$tdir
8389 }
8390 run_test 118l "fsync dir ========="
8391
8392 test_118m() # LU-3066
8393 {
8394         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8395         test_mkdir -p $DIR/$tdir
8396         $MULTIOP $DIR/$tdir DY || error "fdatasync dir failed"
8397         rm -rf $DIR/$tdir
8398 }
8399 run_test 118m "fdatasync dir ========="
8400
8401 [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] && set_resend_count $OLD_RESENDCOUNT
8402
8403 test_119a() # bug 11737
8404 {
8405         BSIZE=$((512 * 1024))
8406         directio write $DIR/$tfile 0 1 $BSIZE
8407         # We ask to read two blocks, which is more than a file size.
8408         # directio will indicate an error when requested and actual
8409         # sizes aren't equeal (a normal situation in this case) and
8410         # print actual read amount.
8411         NOB=`directio read $DIR/$tfile 0 2 $BSIZE | awk '/error/ {print $6}'`
8412         if [ "$NOB" != "$BSIZE" ]; then
8413                 error "read $NOB bytes instead of $BSIZE"
8414         fi
8415         rm -f $DIR/$tfile
8416 }
8417 run_test 119a "Short directIO read must return actual read amount"
8418
8419 test_119b() # bug 11737
8420 {
8421         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
8422
8423         $SETSTRIPE -c 2 $DIR/$tfile || error "setstripe failed"
8424         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=1 || error "dd failed"
8425         sync
8426         $MULTIOP $DIR/$tfile oO_RDONLY:O_DIRECT:r$((2048 * 1024)) || \
8427                 error "direct read failed"
8428         rm -f $DIR/$tfile
8429 }
8430 run_test 119b "Sparse directIO read must return actual read amount"
8431
8432 test_119c() # bug 13099
8433 {
8434         BSIZE=1048576
8435         directio write $DIR/$tfile 3 1 $BSIZE || error "direct write failed"
8436         directio readhole $DIR/$tfile 0 2 $BSIZE || error "reading hole failed"
8437         rm -f $DIR/$tfile
8438 }
8439 run_test 119c "Testing for direct read hitting hole"
8440
8441 test_119d() # bug 15950
8442 {
8443         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8444         MAX_RPCS_IN_FLIGHT=`$LCTL get_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight`
8445         $LCTL set_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight 1
8446         BSIZE=1048576
8447         $SETSTRIPE $DIR/$tfile -i 0 -c 1 || error "setstripe failed"
8448         $DIRECTIO write $DIR/$tfile 0 1 $BSIZE || error "first directio failed"
8449         #define OBD_FAIL_OSC_DIO_PAUSE           0x40d
8450         lctl set_param fail_loc=0x40d
8451         $DIRECTIO write $DIR/$tfile 1 4 $BSIZE &
8452         pid_dio=$!
8453         sleep 1
8454         cat $DIR/$tfile > /dev/null &
8455         lctl set_param fail_loc=0
8456         pid_reads=$!
8457         wait $pid_dio
8458         log "the DIO writes have completed, now wait for the reads (should not block very long)"
8459         sleep 2
8460         [ -n "`ps h -p $pid_reads -o comm`" ] && \
8461         error "the read rpcs have not completed in 2s"
8462         rm -f $DIR/$tfile
8463         $LCTL set_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight $MAX_RPCS_IN_FLIGHT
8464 }
8465 run_test 119d "The DIO path should try to send a new rpc once one is completed"
8466
8467 test_120a() {
8468         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8469         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8470         test_mkdir -p $DIR/$tdir
8471         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
8472                skip "no early lock cancel on server" && return 0
8473
8474         lru_resize_disable mdc
8475         lru_resize_disable osc
8476         cancel_lru_locks mdc
8477         # asynchronous object destroy at MDT could cause bl ast to client
8478         cancel_lru_locks osc
8479
8480         stat $DIR/$tdir > /dev/null
8481         can1=$(do_facet $SINGLEMDS \
8482                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8483                awk '/ldlm_cancel/ {print $2}')
8484         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8485                awk '/ldlm_bl_callback/ {print $2}')
8486         test_mkdir -c1 $DIR/$tdir/d1
8487         can2=$(do_facet $SINGLEMDS \
8488                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8489                awk '/ldlm_cancel/ {print $2}')
8490         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8491                awk '/ldlm_bl_callback/ {print $2}')
8492         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
8493         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
8494         lru_resize_enable mdc
8495         lru_resize_enable osc
8496 }
8497 run_test 120a "Early Lock Cancel: mkdir test"
8498
8499 test_120b() {
8500         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8501         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8502         test_mkdir $DIR/$tdir
8503         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel)" ] && \
8504                skip "no early lock cancel on server" && return 0
8505         lru_resize_disable mdc
8506         lru_resize_disable osc
8507         cancel_lru_locks mdc
8508         stat $DIR/$tdir > /dev/null
8509         can1=$(do_facet $SINGLEMDS \
8510                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8511                awk '/ldlm_cancel/ {print $2}')
8512         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8513                awk '/ldlm_bl_callback/ {print $2}')
8514         touch $DIR/$tdir/f1
8515         can2=$(do_facet $SINGLEMDS \
8516                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8517                awk '/ldlm_cancel/ {print $2}')
8518         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8519                awk '/ldlm_bl_callback/ {print $2}')
8520         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
8521         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
8522         lru_resize_enable mdc
8523         lru_resize_enable osc
8524 }
8525 run_test 120b "Early Lock Cancel: create test"
8526
8527 test_120c() {
8528         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8529         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8530         test_mkdir -c1 $DIR/$tdir
8531         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel)" ] && \
8532                skip "no early lock cancel on server" && return 0
8533         lru_resize_disable mdc
8534         lru_resize_disable osc
8535         test_mkdir -p -c1 $DIR/$tdir/d1
8536         test_mkdir -p -c1 $DIR/$tdir/d2
8537         touch $DIR/$tdir/d1/f1
8538         cancel_lru_locks mdc
8539         stat $DIR/$tdir/d1 $DIR/$tdir/d2 $DIR/$tdir/d1/f1 > /dev/null
8540         can1=$(do_facet $SINGLEMDS \
8541                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8542                awk '/ldlm_cancel/ {print $2}')
8543         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8544                awk '/ldlm_bl_callback/ {print $2}')
8545         ln $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2
8546         can2=$(do_facet $SINGLEMDS \
8547                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8548                awk '/ldlm_cancel/ {print $2}')
8549         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8550                awk '/ldlm_bl_callback/ {print $2}')
8551         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
8552         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
8553         lru_resize_enable mdc
8554         lru_resize_enable osc
8555 }
8556 run_test 120c "Early Lock Cancel: link test"
8557
8558 test_120d() {
8559         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8560         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8561         test_mkdir -p -c1 $DIR/$tdir
8562         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel)" ] && \
8563                skip "no early lock cancel on server" && return 0
8564         lru_resize_disable mdc
8565         lru_resize_disable osc
8566         touch $DIR/$tdir
8567         cancel_lru_locks mdc
8568         stat $DIR/$tdir > /dev/null
8569         can1=$(do_facet $SINGLEMDS \
8570                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8571                awk '/ldlm_cancel/ {print $2}')
8572         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8573                awk '/ldlm_bl_callback/ {print $2}')
8574         chmod a+x $DIR/$tdir
8575         can2=$(do_facet $SINGLEMDS \
8576                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8577                awk '/ldlm_cancel/ {print $2}')
8578         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8579                awk '/ldlm_bl_callback/ {print $2}')
8580         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
8581         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
8582         lru_resize_enable mdc
8583         lru_resize_enable osc
8584 }
8585 run_test 120d "Early Lock Cancel: setattr test"
8586
8587 test_120e() {
8588         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8589         ! $($LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_can) &&
8590                 skip "no early lock cancel on server" && return 0
8591         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8592         local dlmtrace_set=false
8593
8594         test_mkdir -p -c1 $DIR/$tdir
8595         lru_resize_disable mdc
8596         lru_resize_disable osc
8597         ! $LCTL get_param debug | grep -q dlmtrace &&
8598                 $LCTL set_param debug=+dlmtrace && dlmtrace_set=true
8599         dd if=/dev/zero of=$DIR/$tdir/f1 count=1
8600         cancel_lru_locks mdc
8601         cancel_lru_locks osc
8602         dd if=$DIR/$tdir/f1 of=/dev/null
8603         stat $DIR/$tdir $DIR/$tdir/f1 > /dev/null
8604         # XXX client can not do early lock cancel of OST lock
8605         # during unlink (LU-4206), so cancel osc lock now.
8606         sleep 2
8607         cancel_lru_locks osc
8608         can1=$(do_facet $SINGLEMDS \
8609                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8610                awk '/ldlm_cancel/ {print $2}')
8611         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8612                awk '/ldlm_bl_callback/ {print $2}')
8613         unlink $DIR/$tdir/f1
8614         sleep 5
8615         can2=$(do_facet $SINGLEMDS \
8616                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8617                awk '/ldlm_cancel/ {print $2}')
8618         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8619                awk '/ldlm_bl_callback/ {print $2}')
8620         [ $can1 -ne $can2 ] && error "$((can2 - can1)) cancel RPC occured" &&
8621                 $LCTL dk $TMP/cancel.debug.txt
8622         [ $blk1 -ne $blk2 ] && error "$((blk2 - blk1)) blocking RPC occured" &&
8623                 $LCTL dk $TMP/blocking.debug.txt
8624         $dlmtrace_set && $LCTL set_param debug=-dlmtrace
8625         lru_resize_enable mdc
8626         lru_resize_enable osc
8627 }
8628 run_test 120e "Early Lock Cancel: unlink test"
8629
8630 test_120f() {
8631         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8632         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
8633                skip "no early lock cancel on server" && return 0
8634         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8635         test_mkdir -p -c1 $DIR/$tdir
8636         lru_resize_disable mdc
8637         lru_resize_disable osc
8638         test_mkdir -p -c1 $DIR/$tdir/d1
8639         test_mkdir -p -c1 $DIR/$tdir/d2
8640         dd if=/dev/zero of=$DIR/$tdir/d1/f1 count=1
8641         dd if=/dev/zero of=$DIR/$tdir/d2/f2 count=1
8642         cancel_lru_locks mdc
8643         cancel_lru_locks osc
8644         dd if=$DIR/$tdir/d1/f1 of=/dev/null
8645         dd if=$DIR/$tdir/d2/f2 of=/dev/null
8646         stat $DIR/$tdir/d1 $DIR/$tdir/d2 $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2 > /dev/null
8647         # XXX client can not do early lock cancel of OST lock
8648         # during rename (LU-4206), so cancel osc lock now.
8649         sleep 2
8650         cancel_lru_locks osc
8651         can1=$(do_facet $SINGLEMDS \
8652                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8653                awk '/ldlm_cancel/ {print $2}')
8654         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8655                awk '/ldlm_bl_callback/ {print $2}')
8656         mrename $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2
8657         sleep 5
8658         can2=$(do_facet $SINGLEMDS \
8659                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8660                awk '/ldlm_cancel/ {print $2}')
8661         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8662                awk '/ldlm_bl_callback/ {print $2}')
8663         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
8664         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
8665         lru_resize_enable mdc
8666         lru_resize_enable osc
8667 }
8668 run_test 120f "Early Lock Cancel: rename test"
8669
8670 test_120g() {
8671         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8672         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
8673                skip "no early lock cancel on server" && return 0
8674         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8675         lru_resize_disable mdc
8676         lru_resize_disable osc
8677         count=10000
8678         echo create $count files
8679         test_mkdir -p $DIR/$tdir
8680         cancel_lru_locks mdc
8681         cancel_lru_locks osc
8682         t0=`date +%s`
8683
8684         can0=$(do_facet $SINGLEMDS \
8685                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8686                awk '/ldlm_cancel/ {print $2}')
8687         blk0=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8688                awk '/ldlm_bl_callback/ {print $2}')
8689         createmany -o $DIR/$tdir/f $count
8690         sync
8691         can1=$(do_facet $SINGLEMDS \
8692                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8693                awk '/ldlm_cancel/ {print $2}')
8694         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8695                awk '/ldlm_bl_callback/ {print $2}')
8696         t1=$(date +%s)
8697         echo total: $((can1-can0)) cancels, $((blk1-blk0)) blockings
8698         echo rm $count files
8699         rm -r $DIR/$tdir
8700         sync
8701         can2=$(do_facet $SINGLEMDS \
8702                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8703                awk '/ldlm_cancel/ {print $2}')
8704         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8705                awk '/ldlm_bl_callback/ {print $2}')
8706         t2=$(date +%s)
8707         echo total: $count removes in $((t2-t1))
8708         echo total: $((can2-can1)) cancels, $((blk2-blk1)) blockings
8709         sleep 2
8710         # wait for commitment of removal
8711         lru_resize_enable mdc
8712         lru_resize_enable osc
8713 }
8714 run_test 120g "Early Lock Cancel: performance test"
8715
8716 test_121() { #bug #10589
8717         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8718         rm -rf $DIR/$tfile
8719         writes=$(LANG=C dd if=/dev/zero of=$DIR/$tfile count=1 2>&1 | awk -F '+' '/out$/ {print $1}')
8720 #define OBD_FAIL_LDLM_CANCEL_RACE        0x310
8721         lctl set_param fail_loc=0x310
8722         cancel_lru_locks osc > /dev/null
8723         reads=$(LANG=C dd if=$DIR/$tfile of=/dev/null 2>&1 | awk -F '+' '/in$/ {print $1}')
8724         lctl set_param fail_loc=0
8725         [[ $reads -eq $writes ]] ||
8726                 error "read $reads blocks, must be $writes blocks"
8727 }
8728 run_test 121 "read cancel race ========="
8729
8730 test_123a() { # was test 123, statahead(bug 11401)
8731         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8732         SLOWOK=0
8733         if [ -z "$(grep "processor.*: 1" /proc/cpuinfo)" ]; then
8734             log "testing on UP system. Performance may be not as good as expected."
8735                         SLOWOK=1
8736         fi
8737
8738         rm -rf $DIR/$tdir
8739         test_mkdir -p $DIR/$tdir
8740         NUMFREE=$(df -i -P $DIR | tail -n 1 | awk '{ print $4 }')
8741         [[ $NUMFREE -gt 100000 ]] && NUMFREE=100000 || NUMFREE=$((NUMFREE-1000))
8742         MULT=10
8743         for ((i=100, j=0; i<=$NUMFREE; j=$i, i=$((i * MULT)) )); do
8744                 createmany -o $DIR/$tdir/$tfile $j $((i - j))
8745
8746                 max=`lctl get_param -n llite.*.statahead_max | head -n 1`
8747                 lctl set_param -n llite.*.statahead_max 0
8748                 lctl get_param llite.*.statahead_max
8749                 cancel_lru_locks mdc
8750                 cancel_lru_locks osc
8751                 stime=`date +%s`
8752                 time ls -l $DIR/$tdir | wc -l
8753                 etime=`date +%s`
8754                 delta=$((etime - stime))
8755                 log "ls $i files without statahead: $delta sec"
8756                 lctl set_param llite.*.statahead_max=$max
8757
8758                 swrong=`lctl get_param -n llite.*.statahead_stats | grep "statahead wrong:" | awk '{print $3}'`
8759                 lctl get_param -n llite.*.statahead_max | grep '[0-9]'
8760                 cancel_lru_locks mdc
8761                 cancel_lru_locks osc
8762                 stime=`date +%s`
8763                 time ls -l $DIR/$tdir | wc -l
8764                 etime=`date +%s`
8765                 delta_sa=$((etime - stime))
8766                 log "ls $i files with statahead: $delta_sa sec"
8767                 lctl get_param -n llite.*.statahead_stats
8768                 ewrong=`lctl get_param -n llite.*.statahead_stats | grep "statahead wrong:" | awk '{print $3}'`
8769
8770                 [[ $swrong -lt $ewrong ]] &&
8771                         log "statahead was stopped, maybe too many locks held!"
8772                 [[ $delta -eq 0 || $delta_sa -eq 0 ]] && continue
8773
8774                 if [ $((delta_sa * 100)) -gt $((delta * 105)) -a $delta_sa -gt $((delta + 2)) ]; then
8775                     max=`lctl get_param -n llite.*.statahead_max | head -n 1`
8776                     lctl set_param -n llite.*.statahead_max 0
8777                     lctl get_param llite.*.statahead_max
8778                     cancel_lru_locks mdc
8779                     cancel_lru_locks osc
8780                     stime=`date +%s`
8781                     time ls -l $DIR/$tdir | wc -l
8782                     etime=`date +%s`
8783                     delta=$((etime - stime))
8784                     log "ls $i files again without statahead: $delta sec"
8785                     lctl set_param llite.*.statahead_max=$max
8786                     if [ $((delta_sa * 100)) -gt $((delta * 105)) -a $delta_sa -gt $((delta + 2)) ]; then
8787                         if [  $SLOWOK -eq 0 ]; then
8788                                 error "ls $i files is slower with statahead!"
8789                         else
8790                                 log "ls $i files is slower with statahead!"
8791                         fi
8792                         break
8793                     fi
8794                 fi
8795
8796                 [ $delta -gt 20 ] && break
8797                 [ $delta -gt 8 ] && MULT=$((50 / delta))
8798                 [ "$SLOW" = "no" -a $delta -gt 5 ] && break
8799         done
8800         log "ls done"
8801
8802         stime=`date +%s`
8803         rm -r $DIR/$tdir
8804         sync
8805         etime=`date +%s`
8806         delta=$((etime - stime))
8807         log "rm -r $DIR/$tdir/: $delta seconds"
8808         log "rm done"
8809         lctl get_param -n llite.*.statahead_stats
8810 }
8811 run_test 123a "verify statahead work"
8812
8813 test_123b () { # statahead(bug 15027)
8814         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8815         test_mkdir -p $DIR/$tdir
8816         createmany -o $DIR/$tdir/$tfile-%d 1000
8817
8818         cancel_lru_locks mdc
8819         cancel_lru_locks osc
8820
8821 #define OBD_FAIL_MDC_GETATTR_ENQUEUE     0x803
8822         lctl set_param fail_loc=0x80000803
8823         ls -lR $DIR/$tdir > /dev/null
8824         log "ls done"
8825         lctl set_param fail_loc=0x0
8826         lctl get_param -n llite.*.statahead_stats
8827         rm -r $DIR/$tdir
8828         sync
8829
8830 }
8831 run_test 123b "not panic with network error in statahead enqueue (bug 15027)"
8832
8833 test_124a() {
8834         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8835         [ -z "$($LCTL get_param -n mdc.*.connect_flags | grep lru_resize)" ] &&
8836                 skip "no lru resize on server" && return 0
8837         local NR=2000
8838         test_mkdir -p $DIR/$tdir || error "failed to create $DIR/$tdir"
8839
8840         log "create $NR files at $DIR/$tdir"
8841         createmany -o $DIR/$tdir/f $NR ||
8842                 error "failed to create $NR files in $DIR/$tdir"
8843
8844         cancel_lru_locks mdc
8845         ls -l $DIR/$tdir > /dev/null
8846
8847         local NSDIR=""
8848         local LRU_SIZE=0
8849         for VALUE in $($LCTL get_param ldlm.namespaces.*mdc-*.lru_size); do
8850                 local PARAM=$(echo ${VALUE[0]} | cut -d "=" -f1)
8851                 LRU_SIZE=$($LCTL get_param -n $PARAM)
8852                 if [[ $LRU_SIZE -gt $(default_lru_size) ]]; then
8853                         NSDIR=$(echo $PARAM | cut -d "." -f1-3)
8854                         log "NSDIR=$NSDIR"
8855                         log "NS=$(basename $NSDIR)"
8856                         break
8857                 fi
8858         done
8859
8860         if [[ -z "$NSDIR" || $LRU_SIZE -lt $(default_lru_size) ]]; then
8861                 skip "Not enough cached locks created!"
8862                 return 0
8863         fi
8864         log "LRU=$LRU_SIZE"
8865
8866         local SLEEP=30
8867
8868         # We know that lru resize allows one client to hold $LIMIT locks
8869         # for 10h. After that locks begin to be killed by client.
8870         local MAX_HRS=10
8871         local LIMIT=$($LCTL get_param -n $NSDIR.pool.limit)
8872         log "LIMIT=$LIMIT"
8873         if [ $LIMIT -lt $LRU_SIZE ]; then
8874             skip "Limit is too small $LIMIT"
8875             return 0
8876         fi
8877
8878         # Make LVF so higher that sleeping for $SLEEP is enough to _start_
8879         # killing locks. Some time was spent for creating locks. This means
8880         # that up to the moment of sleep finish we must have killed some of
8881         # them (10-100 locks). This depends on how fast ther were created.
8882         # Many of them were touched in almost the same moment and thus will
8883         # be killed in groups.
8884         local LVF=$(($MAX_HRS * 60 * 60 / $SLEEP * $LIMIT / $LRU_SIZE))
8885
8886         # Use $LRU_SIZE_B here to take into account real number of locks
8887         # created in the case of CMD, LRU_SIZE_B != $NR in most of cases
8888         local LRU_SIZE_B=$LRU_SIZE
8889         log "LVF=$LVF"
8890         local OLD_LVF=$($LCTL get_param -n $NSDIR.pool.lock_volume_factor)
8891         log "OLD_LVF=$OLD_LVF"
8892         $LCTL set_param -n $NSDIR.pool.lock_volume_factor $LVF
8893
8894         # Let's make sure that we really have some margin. Client checks
8895         # cached locks every 10 sec.
8896         SLEEP=$((SLEEP+20))
8897         log "Sleep ${SLEEP} sec"
8898         local SEC=0
8899         while ((SEC<$SLEEP)); do
8900                 echo -n "..."
8901                 sleep 5
8902                 SEC=$((SEC+5))
8903                 LRU_SIZE=$($LCTL get_param -n $NSDIR/lru_size)
8904                 echo -n "$LRU_SIZE"
8905         done
8906         echo ""
8907         $LCTL set_param -n $NSDIR.pool.lock_volume_factor $OLD_LVF
8908         local LRU_SIZE_A=$($LCTL get_param -n $NSDIR.lru_size)
8909
8910         [[ $LRU_SIZE_B -gt $LRU_SIZE_A ]] || {
8911                 error "No locks dropped in ${SLEEP}s. LRU size: $LRU_SIZE_A"
8912                 unlinkmany $DIR/$tdir/f $NR
8913                 return
8914         }
8915
8916         log "Dropped "$((LRU_SIZE_B-LRU_SIZE_A))" locks in ${SLEEP}s"
8917         log "unlink $NR files at $DIR/$tdir"
8918         unlinkmany $DIR/$tdir/f $NR
8919 }
8920 run_test 124a "lru resize ======================================="
8921
8922 get_max_pool_limit()
8923 {
8924         local limit=$($LCTL get_param \
8925                       -n ldlm.namespaces.*-MDT0000-mdc-*.pool.limit)
8926         local max=0
8927         for l in $limit; do
8928                 if [[ $l -gt $max ]]; then
8929                         max=$l
8930                 fi
8931         done
8932         echo $max
8933 }
8934
8935 test_124b() {
8936         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8937         [ -z "$($LCTL get_param -n mdc.*.connect_flags | grep lru_resize)" ] &&
8938                 skip "no lru resize on server" && return 0
8939
8940         LIMIT=$(get_max_pool_limit)
8941
8942         NR=$(($(default_lru_size)*20))
8943         if [[ $NR -gt $LIMIT ]]; then
8944                 log "Limit lock number by $LIMIT locks"
8945                 NR=$LIMIT
8946         fi
8947
8948         IFree=$(mdsrate_inodes_available)
8949         if [ $IFree -lt $NR ]; then
8950                 log "Limit lock number by $IFree inodes"
8951                 NR=$IFree
8952         fi
8953
8954         lru_resize_disable mdc
8955         test_mkdir -p $DIR/$tdir/disable_lru_resize ||
8956                 error "failed to create $DIR/$tdir/disable_lru_resize"
8957
8958         createmany -o $DIR/$tdir/disable_lru_resize/f $NR
8959         log "doing ls -la $DIR/$tdir/disable_lru_resize 3 times"
8960         cancel_lru_locks mdc
8961         stime=`date +%s`
8962         PID=""
8963         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
8964         PID="$PID $!"
8965         sleep 2
8966         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
8967         PID="$PID $!"
8968         sleep 2
8969         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
8970         PID="$PID $!"
8971         wait $PID
8972         etime=`date +%s`
8973         nolruresize_delta=$((etime-stime))
8974         log "ls -la time: $nolruresize_delta seconds"
8975         log "lru_size = $(lctl get_param -n ldlm.namespaces.*mdc*.lru_size)"
8976         unlinkmany $DIR/$tdir/disable_lru_resize/f $NR
8977
8978         lru_resize_enable mdc
8979         test_mkdir -p $DIR/$tdir/enable_lru_resize ||
8980                 error "failed to create $DIR/$tdir/enable_lru_resize"
8981
8982         createmany -o $DIR/$tdir/enable_lru_resize/f $NR
8983         log "doing ls -la $DIR/$tdir/enable_lru_resize 3 times"
8984         cancel_lru_locks mdc
8985         stime=`date +%s`
8986         PID=""
8987         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
8988         PID="$PID $!"
8989         sleep 2
8990         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
8991         PID="$PID $!"
8992         sleep 2
8993         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
8994         PID="$PID $!"
8995         wait $PID
8996         etime=`date +%s`
8997         lruresize_delta=$((etime-stime))
8998         log "ls -la time: $lruresize_delta seconds"
8999         log "lru_size = $(lctl get_param -n ldlm.namespaces.*mdc*.lru_size)"
9000
9001         if [ $lruresize_delta -gt $nolruresize_delta ]; then
9002                 log "ls -la is $(((lruresize_delta - $nolruresize_delta) * 100 / $nolruresize_delta))% slower with lru resize enabled"
9003         elif [ $nolruresize_delta -gt $lruresize_delta ]; then
9004                 log "ls -la is $(((nolruresize_delta - $lruresize_delta) * 100 / $nolruresize_delta))% faster with lru resize enabled"
9005         else
9006                 log "lru resize performs the same with no lru resize"
9007         fi
9008         unlinkmany $DIR/$tdir/enable_lru_resize/f $NR
9009 }
9010 run_test 124b "lru resize (performance test) ======================="
9011
9012 test_124c() {
9013         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9014         [ -z "$($LCTL get_param -n mdc.*.connect_flags | grep lru_resize)" ] &&
9015                 skip "no lru resize on server" && return 0
9016
9017         # cache ununsed locks on client
9018         local nr=100
9019         cancel_lru_locks mdc
9020         test_mkdir -p $DIR/$tdir || error "failed to create $DIR/$tdir"
9021         createmany -o $DIR/$tdir/f $nr ||
9022                 error "failed to create $nr files in $DIR/$tdir"
9023         ls -l $DIR/$tdir > /dev/null
9024
9025         local nsdir="ldlm.namespaces.*-MDT0000-mdc-*"
9026         local unused=$($LCTL get_param -n $nsdir.lock_unused_count)
9027         local max_age=$($LCTL get_param -n $nsdir.lru_max_age)
9028         local recalc_p=$($LCTL get_param -n $nsdir.pool.recalc_period)
9029         echo "unused=$unused, max_age=$max_age, recalc_p=$recalc_p"
9030
9031         # set lru_max_age to 1 sec
9032         $LCTL set_param $nsdir.lru_max_age=1000 # milliseconds
9033         echo "sleep $((recalc_p * 2)) seconds..."
9034         sleep $((recalc_p * 2))
9035
9036         local remaining=$($LCTL get_param -n $nsdir.lock_unused_count)
9037         # restore lru_max_age
9038         $LCTL set_param -n $nsdir.lru_max_age $max_age
9039         [ $remaining -eq 0 ] || error "$remaining locks are not canceled"
9040         unlinkmany $DIR/$tdir/f $nr
9041 }
9042 run_test 124c "LRUR cancel very aged locks"
9043
9044 test_125() { # 13358
9045         [ -z "$(lctl get_param -n llite.*.client_type | grep local)" ] && skip "must run as local client" && return
9046         [ -z "$(lctl get_param -n mdc.*-mdc-*.connect_flags | grep acl)" ] && skip "must have acl enabled" && return
9047         [ -z "$(which setfacl)" ] && skip "must have setfacl tool" && return
9048         test_mkdir -p $DIR/d125 || error "mkdir failed"
9049         $SETSTRIPE -S 65536 -c -1 $DIR/d125 || error "setstripe failed"
9050         setfacl -R -m u:bin:rwx $DIR/d125 || error "setfacl $DIR/d125 failed"
9051         ls -ld $DIR/d125 || error "cannot access $DIR/d125"
9052 }
9053 run_test 125 "don't return EPROTO when a dir has a non-default striping and ACLs"
9054
9055 test_126() { # bug 12829/13455
9056         [ -z "$(lctl get_param -n llite.*.client_type | grep local)" ] && skip "must run as local client" && return
9057         [ "$UID" != 0 ] && skip_env "skipping $TESTNAME (must run as root)" && return
9058         $GSS && skip "must run as gss disabled" && return
9059
9060         $RUNAS -u 0 -g 1 touch $DIR/$tfile || error "touch failed"
9061         gid=`ls -n $DIR/$tfile | awk '{print $4}'`
9062         rm -f $DIR/$tfile
9063         [ $gid -eq "1" ] || error "gid is set to" $gid "instead of 1"
9064 }
9065 run_test 126 "check that the fsgid provided by the client is taken into account"
9066
9067 test_127a() { # bug 15521
9068         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9069         $SETSTRIPE -i 0 -c 1 $DIR/$tfile || error "setstripe failed"
9070         $LCTL set_param osc.*.stats=0
9071         FSIZE=$((2048 * 1024))
9072         dd if=/dev/zero of=$DIR/$tfile bs=$FSIZE count=1
9073         cancel_lru_locks osc
9074         dd if=$DIR/$tfile of=/dev/null bs=$FSIZE
9075
9076         $LCTL get_param osc.*0000-osc-*.stats | grep samples > $DIR/${tfile}.tmp
9077         while read NAME COUNT SAMP UNIT MIN MAX SUM SUMSQ; do
9078                 echo "got $COUNT $NAME"
9079                 [ ! $MIN ] && error "Missing min value for $NAME proc entry"
9080                 eval $NAME=$COUNT || error "Wrong proc format"
9081
9082                 case $NAME in
9083                         read_bytes|write_bytes)
9084                         [ $MIN -lt 4096 ] && error "min is too small: $MIN"
9085                         [ $MIN -gt $FSIZE ] && error "min is too big: $MIN"
9086                         [ $MAX -lt 4096 ] && error "max is too small: $MAX"
9087                         [ $MAX -gt $FSIZE ] && error "max is too big: $MAX"
9088                         [ $SUM -ne $FSIZE ] && error "sum is wrong: $SUM"
9089                         [ $SUMSQ -lt $(((FSIZE /4096) * (4096 * 4096))) ] &&
9090                                 error "sumsquare is too small: $SUMSQ"
9091                         [ $SUMSQ -gt $((FSIZE * FSIZE)) ] &&
9092                                 error "sumsquare is too big: $SUMSQ"
9093                         ;;
9094                         *) ;;
9095                 esac
9096         done < $DIR/${tfile}.tmp
9097
9098         #check that we actually got some stats
9099         [ "$read_bytes" ] || error "Missing read_bytes stats"
9100         [ "$write_bytes" ] || error "Missing write_bytes stats"
9101         [ "$read_bytes" != 0 ] || error "no read done"
9102         [ "$write_bytes" != 0 ] || error "no write done"
9103 }
9104 run_test 127a "verify the client stats are sane"
9105
9106 test_127b() { # bug LU-333
9107         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9108         $LCTL set_param llite.*.stats=0
9109         FSIZE=65536 # sized fixed to match PAGE_SIZE for most clients
9110         # perform 2 reads and writes so MAX is different from SUM.
9111         dd if=/dev/zero of=$DIR/$tfile bs=$FSIZE count=1
9112         dd if=/dev/zero of=$DIR/$tfile bs=$FSIZE count=1
9113         cancel_lru_locks osc
9114         dd if=$DIR/$tfile of=/dev/null bs=$FSIZE count=1
9115         dd if=$DIR/$tfile of=/dev/null bs=$FSIZE count=1
9116
9117         $LCTL get_param llite.*.stats | grep samples > $TMP/${tfile}.tmp
9118         while read NAME COUNT SAMP UNIT MIN MAX SUM SUMSQ; do
9119                 echo "got $COUNT $NAME"
9120                 eval $NAME=$COUNT || error "Wrong proc format"
9121
9122         case $NAME in
9123                 read_bytes)
9124                         [ $COUNT -ne 2 ] && error "count is not 2: $COUNT"
9125                         [ $MIN -ne $FSIZE ] && error "min is not $FSIZE: $MIN"
9126                         [ $MAX -ne $FSIZE ] && error "max is incorrect: $MAX"
9127                         [ $SUM -ne $((FSIZE * 2)) ] && error "sum is wrong: $SUM"
9128                         ;;
9129                 write_bytes)
9130                         [ $COUNT -ne 2 ] && error "count is not 2: $COUNT"
9131                         [ $MIN -ne $FSIZE ] && error "min is not $FSIZE: $MIN"
9132                         [ $MAX -ne $FSIZE ] && error "max is incorrect: $MAX"
9133                         [ $SUM -ne $((FSIZE * 2)) ] && error "sum is wrong: $SUM"
9134                         ;;
9135                         *) ;;
9136                 esac
9137         done < $TMP/${tfile}.tmp
9138
9139         #check that we actually got some stats
9140         [ "$read_bytes" ] || error "Missing read_bytes stats"
9141         [ "$write_bytes" ] || error "Missing write_bytes stats"
9142         [ "$read_bytes" != 0 ] || error "no read done"
9143         [ "$write_bytes" != 0 ] || error "no write done"
9144
9145         rm -f $TMP/${tfile}.tmp
9146 }
9147 run_test 127b "verify the llite client stats are sane"
9148
9149 test_128() { # bug 15212
9150         touch $DIR/$tfile
9151         $LFS 2>&1 <<-EOF | tee $TMP/$tfile.log
9152                 find $DIR/$tfile
9153                 find $DIR/$tfile
9154         EOF
9155
9156         result=$(grep error $TMP/$tfile.log)
9157         rm -f $DIR/$tfile $TMP/$tfile.log
9158         [ -z "$result" ] ||
9159                 error "consecutive find's under interactive lfs failed"
9160 }
9161 run_test 128 "interactive lfs for 2 consecutive find's"
9162
9163 set_dir_limits () {
9164         local mntdev
9165         local canondev
9166         local node
9167
9168         local ldproc=/proc/fs/ldiskfs
9169         local facets=$(get_facets MDS)
9170
9171         for facet in ${facets//,/ }; do
9172                 canondev=$(ldiskfs_canon \
9173                            *.$(convert_facet2label $facet).mntdev $facet)
9174                 do_facet $facet "test -e $ldproc/$canondev/max_dir_size" ||
9175                         ldproc=/sys/fs/ldiskfs
9176                 do_facet $facet "echo $1 >$ldproc/$canondev/max_dir_size"
9177                 do_facet $facet "echo $2 >$ldproc/$canondev/warning_dir_size"
9178         done
9179 }
9180
9181 check_mds_dmesg() {
9182         local facets=$(get_facets MDS)
9183         for facet in ${facets//,/ }; do
9184                 do_facet $facet "dmesg | tail -3 | grep -q $1" && return 0
9185         done
9186         return 1
9187 }
9188
9189 test_129() {
9190         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.5.56) ]] ||
9191                 { skip "Need MDS version with at least 2.5.56"; return 0; }
9192
9193         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9194         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
9195                 skip "ldiskfs only test"
9196                 return
9197         fi
9198         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9199         local ENOSPC=28
9200         local EFBIG=27
9201         local has_warning=false
9202
9203         rm -rf $DIR/$tdir
9204         mkdir -p $DIR/$tdir
9205
9206         # block size of mds1
9207         local maxsize=$(($($LCTL get_param -n mdc.*MDT0000*.blocksize) * 5))
9208         set_dir_limits $maxsize $maxsize
9209         local dirsize=$(stat -c%s "$DIR/$tdir")
9210         local nfiles=0
9211         while [[ $dirsize -le $maxsize ]]; do
9212                 $MULTIOP $DIR/$tdir/file_base_$nfiles Oc
9213                 rc=$?
9214                 if ! $has_warning; then
9215                         check_mds_dmesg '"is approaching"' && has_warning=true
9216                 fi
9217                 # check two errors:
9218                 # ENOSPC for new ext4 max_dir_size (kernel commit df981d03ee)
9219                 # EFBIG for previous versions included in ldiskfs series
9220                 if [ $rc -eq $EFBIG -o $rc -eq $ENOSPC ]; then
9221                         set_dir_limits 0 0
9222                         echo "return code $rc received as expected"
9223
9224                         createmany -o $DIR/$tdir/file_extra_$nfiles. 5 ||
9225                                 error_exit "create failed w/o dir size limit"
9226
9227                         check_mds_dmesg '"has reached"' ||
9228                                 error_exit "reached message should be output"
9229
9230                         [ $has_warning = "false" ] &&
9231                                 error_exit "warning message should be output"
9232
9233                         dirsize=$(stat -c%s "$DIR/$tdir")
9234
9235                         [[ $dirsize -ge $maxsize ]] && return 0
9236                         error_exit "current dir size $dirsize, " \
9237                                    "previous limit $maxsize"
9238                 elif [ $rc -ne 0 ]; then
9239                         set_dir_limits 0 0
9240                         error_exit "return $rc received instead of expected " \
9241                                    "$EFBIG or $ENOSPC, files in dir $dirsize"
9242                 fi
9243                 nfiles=$((nfiles + 1))
9244                 dirsize=$(stat -c%s "$DIR/$tdir")
9245         done
9246
9247         set_dir_limits 0 0
9248         error "exceeded dir size limit $maxsize($MDSCOUNT) : $dirsize bytes"
9249 }
9250 run_test 129 "test directory size limit ========================"
9251
9252 OLDIFS="$IFS"
9253 cleanup_130() {
9254         trap 0
9255         IFS="$OLDIFS"
9256 }
9257
9258 test_130a() {
9259         local filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
9260         [ -n "$filefrag_op" ] && skip_env "filefrag does not support FIEMAP" &&
9261                 return
9262
9263         trap cleanup_130 EXIT RETURN
9264
9265         local fm_file=$DIR/$tfile
9266         $SETSTRIPE -S 65536 -c 1 $fm_file || error "setstripe on $fm_file"
9267         dd if=/dev/zero of=$fm_file bs=65536 count=1 ||
9268                 error "dd failed for $fm_file"
9269
9270         # LU-1795: test filefrag/FIEMAP once, even if unsupported
9271         filefrag -ves $fm_file
9272         RC=$?
9273         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
9274                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
9275         [ $RC != 0 ] && error "filefrag $fm_file failed"
9276
9277         filefrag_op=$(filefrag -ve $fm_file |
9278                         sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
9279         lun=$($GETSTRIPE -i $fm_file)
9280
9281         start_blk=`echo $filefrag_op | cut -d: -f2 | cut -d. -f1`
9282         IFS=$'\n'
9283         tot_len=0
9284         for line in $filefrag_op
9285         do
9286                 frag_lun=`echo $line | cut -d: -f5`
9287                 ext_len=`echo $line | cut -d: -f4`
9288                 if (( $frag_lun != $lun )); then
9289                         cleanup_130
9290                         error "FIEMAP on 1-stripe file($fm_file) failed"
9291                         return
9292                 fi
9293                 (( tot_len += ext_len ))
9294         done
9295
9296         if (( lun != frag_lun || start_blk != 0 || tot_len != 64 )); then
9297                 cleanup_130
9298                 error "FIEMAP on 1-stripe file($fm_file) failed;"
9299                 return
9300         fi
9301
9302         cleanup_130
9303
9304         echo "FIEMAP on single striped file succeeded"
9305 }
9306 run_test 130a "FIEMAP (1-stripe file)"
9307
9308 test_130b() {
9309         [ "$OSTCOUNT" -lt "2" ] && skip_env "needs >= 2 OSTs" && return
9310
9311         local filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
9312         [ -n "$filefrag_op" ] && skip_env "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 $OSTCOUNT $fm_file ||
9319                         error "setstripe on $fm_file"
9320         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
9321                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
9322
9323         dd if=/dev/zero of=$fm_file bs=1M count=$OSTCOUNT ||
9324                 error "dd failed on $fm_file"
9325
9326         filefrag -ves $fm_file || error "filefrag $fm_file failed"
9327         filefrag_op=$(filefrag -ve $fm_file |
9328                         sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
9329
9330         last_lun=$(echo $filefrag_op | cut -d: -f5 |
9331                 sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
9332
9333         IFS=$'\n'
9334         tot_len=0
9335         num_luns=1
9336         for line in $filefrag_op
9337         do
9338                 frag_lun=$(echo $line | cut -d: -f5 |
9339                         sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
9340                 ext_len=$(echo $line | cut -d: -f4)
9341                 if (( $frag_lun != $last_lun )); then
9342                         if (( tot_len != 1024 )); then
9343                                 cleanup_130
9344                                 error "FIEMAP on $fm_file failed; returned " \
9345                                 "len $tot_len for OST $last_lun instead of 1024"
9346                                 return
9347                         else
9348                                 (( num_luns += 1 ))
9349                                 tot_len=0
9350                         fi
9351                 fi
9352                 (( tot_len += ext_len ))
9353                 last_lun=$frag_lun
9354         done
9355         if (( num_luns != $OSTCOUNT || tot_len != 1024 )); then
9356                 cleanup_130
9357                 error "FIEMAP on $fm_file failed; returned wrong number of " \
9358                         "luns or wrong len for OST $last_lun"
9359                 return
9360         fi
9361
9362         cleanup_130
9363
9364         echo "FIEMAP on $OSTCOUNT-stripe file succeeded"
9365 }
9366 run_test 130b "FIEMAP ($OSTCOUNT-stripe file)"
9367
9368 test_130c() {
9369         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
9370
9371         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
9372         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP" &&
9373                 return
9374
9375         trap cleanup_130 EXIT RETURN
9376
9377         local fm_file=$DIR/$tfile
9378         $SETSTRIPE -S 65536 -c 2 $fm_file || error "setstripe on $fm_file"
9379         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
9380                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
9381
9382         dd if=/dev/zero of=$fm_file seek=1 bs=1M count=1 ||
9383                         error "dd failed on $fm_file"
9384
9385         filefrag -ves $fm_file || error "filefrag $fm_file failed"
9386         filefrag_op=$(filefrag -ve $fm_file |
9387                 sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
9388
9389         last_lun=$(echo $filefrag_op | cut -d: -f5 |
9390                 sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
9391
9392         IFS=$'\n'
9393         tot_len=0
9394         num_luns=1
9395         for line in $filefrag_op
9396         do
9397                 frag_lun=$(echo $line | cut -d: -f5 |
9398                         sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
9399                 ext_len=$(echo $line | cut -d: -f4)
9400                 if (( $frag_lun != $last_lun )); then
9401                         logical=`echo $line | cut -d: -f2 | cut -d. -f1`
9402                         if (( logical != 512 )); then
9403                                 cleanup_130
9404                                 error "FIEMAP on $fm_file failed; returned " \
9405                                 "logical start for lun $logical instead of 512"
9406                                 return
9407                         fi
9408                         if (( tot_len != 512 )); then
9409                                 cleanup_130
9410                                 error "FIEMAP on $fm_file failed; returned " \
9411                                 "len $tot_len for OST $last_lun instead of 1024"
9412                                 return
9413                         else
9414                                 (( num_luns += 1 ))
9415                                 tot_len=0
9416                         fi
9417                 fi
9418                 (( tot_len += ext_len ))
9419                 last_lun=$frag_lun
9420         done
9421         if (( num_luns != 2 || tot_len != 512 )); then
9422                 cleanup_130
9423                 error "FIEMAP on $fm_file failed; returned wrong number of " \
9424                         "luns or wrong len for OST $last_lun"
9425                 return
9426         fi
9427
9428         cleanup_130
9429
9430         echo "FIEMAP on 2-stripe file with hole succeeded"
9431 }
9432 run_test 130c "FIEMAP (2-stripe file with hole)"
9433
9434 test_130d() {
9435         [[ $OSTCOUNT -lt 3 ]] && skip_env "needs >= 3 OSTs" && return
9436
9437         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
9438         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP" &&
9439                 return
9440
9441         trap cleanup_130 EXIT RETURN
9442
9443         local fm_file=$DIR/$tfile
9444         $SETSTRIPE -S 65536 -c $OSTCOUNT $fm_file ||
9445                         error "setstripe on $fm_file"
9446         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
9447                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
9448
9449         local actual_stripecnt=$($GETSTRIPE -c $fm_file)
9450         dd if=/dev/zero of=$fm_file bs=1M count=$actual_stripecnt ||
9451                 error "dd failed on $fm_file"
9452
9453         filefrag -ves $fm_file || error "filefrag $fm_file failed"
9454         filefrag_op=$(filefrag -ve $fm_file |
9455                         sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
9456
9457         last_lun=$(echo $filefrag_op | cut -d: -f5 |
9458                 sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
9459
9460         IFS=$'\n'
9461         tot_len=0
9462         num_luns=1
9463         for line in $filefrag_op
9464         do
9465                 frag_lun=$(echo $line | cut -d: -f5 |
9466                         sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
9467                 ext_len=$(echo $line | cut -d: -f4)
9468                 if (( $frag_lun != $last_lun )); then
9469                         if (( tot_len != 1024 )); then
9470                                 cleanup_130
9471                                 error "FIEMAP on $fm_file failed; returned " \
9472                                 "len $tot_len for OST $last_lun instead of 1024"
9473                                 return
9474                         else
9475                                 (( num_luns += 1 ))
9476                                 tot_len=0
9477                         fi
9478                 fi
9479                 (( tot_len += ext_len ))
9480                 last_lun=$frag_lun
9481         done
9482         if (( num_luns != actual_stripecnt || tot_len != 1024 )); then
9483                 cleanup_130
9484                 error "FIEMAP on $fm_file failed; returned wrong number of " \
9485                         "luns or wrong len for OST $last_lun"
9486                 return
9487         fi
9488
9489         cleanup_130
9490
9491         echo "FIEMAP on N-stripe file succeeded"
9492 }
9493 run_test 130d "FIEMAP (N-stripe file)"
9494
9495 test_130e() {
9496         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
9497
9498         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
9499         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP" && return
9500
9501         trap cleanup_130 EXIT RETURN
9502
9503         local fm_file=$DIR/$tfile
9504         $SETSTRIPE -S 131072 -c 2 $fm_file || error "setstripe on $fm_file"
9505         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
9506                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
9507
9508         NUM_BLKS=512
9509         EXPECTED_LEN=$(( (NUM_BLKS / 2) * 64 ))
9510         for ((i = 0; i < $NUM_BLKS; i++))
9511         do
9512                 dd if=/dev/zero of=$fm_file count=1 bs=64k seek=$((2*$i)) conv=notrunc > /dev/null 2>&1
9513         done
9514
9515         filefrag -ves $fm_file || error "filefrag $fm_file failed"
9516         filefrag_op=$(filefrag -ve $fm_file |
9517                         sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
9518
9519         last_lun=$(echo $filefrag_op | cut -d: -f5 |
9520                 sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
9521
9522         IFS=$'\n'
9523         tot_len=0
9524         num_luns=1
9525         for line in $filefrag_op
9526         do
9527                 frag_lun=$(echo $line | cut -d: -f5 |
9528                         sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
9529                 ext_len=$(echo $line | cut -d: -f4)
9530                 if (( $frag_lun != $last_lun )); then
9531                         if (( tot_len != $EXPECTED_LEN )); then
9532                                 cleanup_130
9533                                 error "FIEMAP on $fm_file failed; returned " \
9534                                 "len $tot_len for OST $last_lun instead " \
9535                                 "of $EXPECTED_LEN"
9536                                 return
9537                         else
9538                                 (( num_luns += 1 ))
9539                                 tot_len=0
9540                         fi
9541                 fi
9542                 (( tot_len += ext_len ))
9543                 last_lun=$frag_lun
9544         done
9545         if (( num_luns != 2 || tot_len != $EXPECTED_LEN )); then
9546                 cleanup_130
9547                 error "FIEMAP on $fm_file failed; returned wrong number " \
9548                         "of luns or wrong len for OST $last_lun"
9549                 return
9550         fi
9551
9552         cleanup_130
9553
9554         echo "FIEMAP with continuation calls succeeded"
9555 }
9556 run_test 130e "FIEMAP (test continuation FIEMAP calls)"
9557
9558 # Test for writev/readv
9559 test_131a() {
9560         rwv -f $DIR/$tfile -w -n 3 524288 1048576 1572864 ||
9561                 error "writev test failed"
9562         rwv -f $DIR/$tfile -r -v -n 2 1572864 1048576 ||
9563                 error "readv failed"
9564         rm -f $DIR/$tfile
9565 }
9566 run_test 131a "test iov's crossing stripe boundary for writev/readv"
9567
9568 test_131b() {
9569         local fsize=$((524288 + 1048576 + 1572864))
9570         rwv -f $DIR/$tfile -w -a -n 3 524288 1048576 1572864 &&
9571                 $CHECKSTAT -t file $DIR/$tfile -s $fsize ||
9572                         error "append writev test failed"
9573
9574         ((fsize += 1572864 + 1048576))
9575         rwv -f $DIR/$tfile -w -a -n 2 1572864 1048576 &&
9576                 $CHECKSTAT -t file $DIR/$tfile -s $fsize ||
9577                         error "append writev test failed"
9578         rm -f $DIR/$tfile
9579 }
9580 run_test 131b "test append writev"
9581
9582 test_131c() {
9583         rwv -f $DIR/$tfile -w -d -n 1 1048576 || return 0
9584         error "NOT PASS"
9585 }
9586 run_test 131c "test read/write on file w/o objects"
9587
9588 test_131d() {
9589         rwv -f $DIR/$tfile -w -n 1 1572864
9590         NOB=`rwv -f $DIR/$tfile -r -n 3 524288 524288 1048576 | awk '/error/ {print $6}'`
9591         if [ "$NOB" != 1572864 ]; then
9592                 error "Short read filed: read $NOB bytes instead of 1572864"
9593         fi
9594         rm -f $DIR/$tfile
9595 }
9596 run_test 131d "test short read"
9597
9598 test_131e() {
9599         rwv -f $DIR/$tfile -w -s 1048576 -n 1 1048576
9600         rwv -f $DIR/$tfile -r -z -s 0 -n 1 524288 || \
9601         error "read hitting hole failed"
9602         rm -f $DIR/$tfile
9603 }
9604 run_test 131e "test read hitting hole"
9605
9606 check_stats() {
9607         local facet=$1
9608         local op=$2
9609         local want=${3:-0}
9610         local res
9611
9612         case $facet in
9613         mds*) res=$(do_facet $facet \
9614                    $LCTL get_param mdt.$FSNAME-MDT0000.md_stats | grep "$op")
9615                  ;;
9616         ost*) res=$(do_facet $facet \
9617                    $LCTL get_param obdfilter.$FSNAME-OST0000.stats | grep "$op")
9618                  ;;
9619         *) error "Wrong facet '$facet'" ;;
9620         esac
9621         echo $res
9622         [ "$res" ] || error "The counter for $op on $facet was not incremented"
9623         # if the argument $3 is zero, it means any stat increment is ok.
9624         if [[ $want -gt 0 ]]; then
9625                 local count=$(echo $res | awk '{ print $2 }')
9626                 [[ $count -ne $want ]] &&
9627                         error "The $op counter on $facet is $count, not $want"
9628         fi
9629 }
9630
9631 test_133a() {
9632         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9633         remote_ost_nodsh && skip "remote OST with nodsh" && return
9634         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9635
9636         do_facet $SINGLEMDS $LCTL list_param mdt.*.rename_stats ||
9637                 { skip "MDS doesn't support rename stats"; return; }
9638         local testdir=$DIR/${tdir}/stats_testdir
9639         mkdir -p $DIR/${tdir}
9640
9641         # clear stats.
9642         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
9643         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
9644
9645         # verify mdt stats first.
9646         mkdir ${testdir} || error "mkdir failed"
9647         check_stats $SINGLEMDS "mkdir" 1
9648         touch ${testdir}/${tfile} || error "touch failed"
9649         check_stats $SINGLEMDS "open" 1
9650         check_stats $SINGLEMDS "close" 1
9651         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.8.54) ] && {
9652                 mknod ${testdir}/${tfile}-pipe p || error "mknod failed"
9653                 check_stats $SINGLEMDS "mknod" 2
9654         }
9655         rm -f ${testdir}/${tfile}-pipe || error "pipe remove failed"
9656         check_stats $SINGLEMDS "unlink" 1
9657         rm -f ${testdir}/${tfile} || error "file remove failed"
9658         check_stats $SINGLEMDS "unlink" 2
9659
9660         # remove working dir and check mdt stats again.
9661         rmdir ${testdir} || error "rmdir failed"
9662         check_stats $SINGLEMDS "rmdir" 1
9663
9664         local testdir1=$DIR/${tdir}/stats_testdir1
9665         mkdir -p ${testdir}
9666         mkdir -p ${testdir1}
9667         touch ${testdir1}/test1
9668         mv ${testdir1}/test1 ${testdir} || error "file crossdir rename"
9669         check_stats $SINGLEMDS "crossdir_rename" 1
9670
9671         mv ${testdir}/test1 ${testdir}/test0 || error "file samedir rename"
9672         check_stats $SINGLEMDS "samedir_rename" 1
9673
9674         rm -rf $DIR/${tdir}
9675 }
9676 run_test 133a "Verifying MDT stats ========================================"
9677
9678 test_133b() {
9679         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9680         remote_ost_nodsh && skip "remote OST with nodsh" && return
9681         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9682         local testdir=$DIR/${tdir}/stats_testdir
9683         mkdir -p ${testdir} || error "mkdir failed"
9684         touch ${testdir}/${tfile} || error "touch failed"
9685         cancel_lru_locks mdc
9686
9687         # clear stats.
9688         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
9689         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
9690
9691         # extra mdt stats verification.
9692         chmod 444 ${testdir}/${tfile} || error "chmod failed"
9693         check_stats $SINGLEMDS "setattr" 1
9694         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
9695         if [ $(lustre_version_code $SINGLEMDS) -ne $(version_code 2.2.0) ]
9696         then            # LU-1740
9697                 ls -l ${testdir}/${tfile} > /dev/null|| error "ls failed"
9698                 check_stats $SINGLEMDS "getattr" 1
9699         fi
9700         $LFS df || error "lfs failed"
9701         check_stats $SINGLEMDS "statfs" 1
9702
9703         rm -rf $DIR/${tdir}
9704 }
9705 run_test 133b "Verifying extra MDT stats =================================="
9706
9707 test_133c() {
9708         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9709         remote_ost_nodsh && skip "remote OST with nodsh" && return
9710         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9711         local testdir=$DIR/${tdir}/stats_testdir
9712         test_mkdir -p ${testdir} || error "mkdir failed"
9713
9714         # verify obdfilter stats.
9715         $SETSTRIPE -c 1 -i 0 ${testdir}/${tfile}
9716         sync
9717         cancel_lru_locks osc
9718         wait_delete_completed
9719
9720         # clear stats.
9721         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
9722         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
9723
9724         dd if=/dev/zero of=${testdir}/${tfile} conv=notrunc bs=512k count=1 || error "dd failed"
9725         sync
9726         cancel_lru_locks osc
9727         check_stats ost1 "write" 1
9728
9729         dd if=${testdir}/${tfile} of=/dev/null bs=1k count=1 || error "dd failed"
9730         check_stats ost1 "read" 1
9731
9732         > ${testdir}/${tfile} || error "truncate failed"
9733         check_stats ost1 "punch" 1
9734
9735         rm -f ${testdir}/${tfile} || error "file remove failed"
9736         wait_delete_completed
9737         check_stats ost1 "destroy" 1
9738
9739         rm -rf $DIR/${tdir}
9740 }
9741 run_test 133c "Verifying OST stats ========================================"
9742
9743 order_2() {
9744         local value=$1
9745         local orig=$value
9746         local order=1
9747
9748         while [ $value -ge 2 ]; do
9749                 order=$((order*2))
9750                 value=$((value/2))
9751         done
9752
9753         if [ $orig -gt $order ]; then
9754                 order=$((order*2))
9755         fi
9756         echo $order
9757 }
9758
9759 size_in_KMGT() {
9760     local value=$1
9761     local size=('K' 'M' 'G' 'T');
9762     local i=0
9763     local size_string=$value
9764
9765     while [ $value -ge 1024 ]; do
9766         if [ $i -gt 3 ]; then
9767             #T is the biggest unit we get here, if that is bigger,
9768             #just return XXXT
9769             size_string=${value}T
9770             break
9771         fi
9772         value=$((value >> 10))
9773         if [ $value -lt 1024 ]; then
9774             size_string=${value}${size[$i]}
9775             break
9776         fi
9777         i=$((i + 1))
9778     done
9779
9780     echo $size_string
9781 }
9782
9783 get_rename_size() {
9784     local size=$1
9785     local context=${2:-.}
9786     local sample=$(do_facet $SINGLEMDS $LCTL get_param mdt.*.rename_stats |
9787                 grep -A1 $context |
9788                 awk '/ '${size}'/ {print $4}' | sed -e "s/,//g")
9789     echo $sample
9790 }
9791
9792 test_133d() {
9793         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9794         remote_ost_nodsh && skip "remote OST with nodsh" && return
9795         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9796         do_facet $SINGLEMDS $LCTL list_param mdt.*.rename_stats ||
9797         { skip "MDS doesn't support rename stats"; return; }
9798
9799         local testdir1=$DIR/${tdir}/stats_testdir1
9800         local testdir2=$DIR/${tdir}/stats_testdir2
9801
9802         do_facet $SINGLEMDS $LCTL set_param mdt.*.rename_stats=clear
9803
9804         mkdir -p ${testdir1} || error "mkdir failed"
9805         mkdir -p ${testdir2} || error "mkdir failed"
9806
9807         createmany -o $testdir1/test 512 || error "createmany failed"
9808
9809         # check samedir rename size
9810         mv ${testdir1}/test0 ${testdir1}/test_0
9811
9812         local testdir1_size=$(ls -l $DIR/${tdir} |
9813                 awk '/stats_testdir1/ {print $5}')
9814         local testdir2_size=$(ls -l $DIR/${tdir} |
9815                 awk '/stats_testdir2/ {print $5}')
9816
9817         testdir1_size=$(order_2 $testdir1_size)
9818         testdir2_size=$(order_2 $testdir2_size)
9819
9820         testdir1_size=$(size_in_KMGT $testdir1_size)
9821         testdir2_size=$(size_in_KMGT $testdir2_size)
9822
9823         echo "source rename dir size: ${testdir1_size}"
9824         echo "target rename dir size: ${testdir2_size}"
9825
9826         local cmd="do_facet $SINGLEMDS $LCTL get_param mdt.*.rename_stats"
9827         eval $cmd || error "$cmd failed"
9828         local samedir=$($cmd | grep 'same_dir')
9829         local same_sample=$(get_rename_size $testdir1_size)
9830         [ -z "$samedir" ] && error "samedir_rename_size count error"
9831         [[ $same_sample -eq 1 ]] ||
9832                 error "samedir_rename_size error $same_sample"
9833         echo "Check same dir rename stats success"
9834
9835         do_facet $SINGLEMDS $LCTL set_param mdt.*.rename_stats=clear
9836
9837         # check crossdir rename size
9838         mv ${testdir1}/test_0 ${testdir2}/test_0
9839
9840         testdir1_size=$(ls -l $DIR/${tdir} |
9841                 awk '/stats_testdir1/ {print $5}')
9842         testdir2_size=$(ls -l $DIR/${tdir} |
9843                 awk '/stats_testdir2/ {print $5}')
9844
9845         testdir1_size=$(order_2 $testdir1_size)
9846         testdir2_size=$(order_2 $testdir2_size)
9847
9848         testdir1_size=$(size_in_KMGT $testdir1_size)
9849         testdir2_size=$(size_in_KMGT $testdir2_size)
9850
9851         echo "source rename dir size: ${testdir1_size}"
9852         echo "target rename dir size: ${testdir2_size}"
9853
9854         eval $cmd || error "$cmd failed"
9855         local crossdir=$($cmd | grep 'crossdir')
9856         local src_sample=$(get_rename_size $testdir1_size crossdir_src)
9857         local tgt_sample=$(get_rename_size $testdir2_size crossdir_tgt)
9858         [ -z "$crossdir" ] && error "crossdir_rename_size count error"
9859         [[ $src_sample -eq 1 ]] ||
9860                 error "crossdir_rename_size error $src_sample"
9861         [[ $tgt_sample -eq 1 ]] ||
9862                 error "crossdir_rename_size error $tgt_sample"
9863         echo "Check cross dir rename stats success"
9864         rm -rf $DIR/${tdir}
9865 }
9866 run_test 133d "Verifying rename_stats ========================================"
9867
9868 test_133e() {
9869         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9870         remote_ost_nodsh && skip "remote OST with nodsh" && return
9871         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9872         local testdir=$DIR/${tdir}/stats_testdir
9873         local ctr f0 f1 bs=32768 count=42 sum
9874
9875         mkdir -p ${testdir} || error "mkdir failed"
9876
9877         $SETSTRIPE -c 1 -i 0 ${testdir}/${tfile}
9878
9879         for ctr in {write,read}_bytes; do
9880                 sync
9881                 cancel_lru_locks osc
9882
9883                 do_facet ost1 $LCTL set_param -n \
9884                         "obdfilter.*.exports.clear=clear"
9885
9886                 if [ $ctr = write_bytes ]; then
9887                         f0=/dev/zero
9888                         f1=${testdir}/${tfile}
9889                 else
9890                         f0=${testdir}/${tfile}
9891                         f1=/dev/null
9892                 fi
9893
9894                 dd if=$f0 of=$f1 conv=notrunc bs=$bs count=$count || \
9895                         error "dd failed"
9896                 sync
9897                 cancel_lru_locks osc
9898
9899                 sum=$(do_facet ost1 $LCTL get_param \
9900                         "obdfilter.*.exports.*.stats" |
9901                         awk -v ctr=$ctr 'BEGIN { sum = 0 }
9902                                 $1 == ctr { sum += $7 }
9903                                 END { printf("%0.0f", sum) }')
9904
9905                 if ((sum != bs * count)); then
9906                         error "Bad $ctr sum, expected $((bs * count)), got $sum"
9907                 fi
9908         done
9909
9910         rm -rf $DIR/${tdir}
9911 }
9912 run_test 133e "Verifying OST {read,write}_bytes nid stats ================="
9913
9914 proc_regexp="/{proc,sys}/{fs,sys,kernel/debug}/{lustre,lnet}/"
9915
9916 test_133f() {
9917         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9918         remote_ost_nodsh && skip "remote OST with nodsh" && return
9919         # First without trusting modes.
9920         local proc_dirs=$(eval \ls -d $proc_regexp 2>/dev/null)
9921         echo "proc_dirs='$proc_dirs'"
9922         [ -n "$proc_dirs" ] || error "no proc_dirs on $HOSTNAME"
9923         find $proc_dirs -exec cat '{}' \; &> /dev/null
9924
9925         # Second verifying readability.
9926         $LCTL get_param -R '*' &> /dev/null || error "proc file read failed"
9927
9928         # eventually, this can also be replaced with "lctl get_param -R",
9929         # but not until that option is always available on the server
9930         local facet
9931         for facet in mds1 ost1; do
9932                 local facet_proc_dirs=$(do_facet $facet \
9933                                         \\\ls -d $proc_regexp 2>/dev/null)
9934                 echo "${facet}_proc_dirs='$facet_proc_dirs'"
9935                 [ -z "$facet_proc_dirs" ] && error "no proc_dirs on $facet"
9936                 do_facet $facet find $facet_proc_dirs \
9937                         ! -name req_history \
9938                         -exec cat '{}' \\\; &> /dev/null
9939
9940                 do_facet $facet find $facet_proc_dirs \
9941                         ! -name req_history \
9942                         -type f \
9943                         -exec cat '{}' \\\; &> /dev/null ||
9944                                 error "proc file read failed"
9945         done
9946 }
9947 run_test 133f "Check for LBUGs/Oopses/unreadable files in /proc"
9948
9949 test_133g() {
9950         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9951         remote_ost_nodsh && skip "remote OST with nodsh" && return
9952         # Second verifying writability.
9953         local proc_dirs=$(eval \ls -d $proc_regexp 2>/dev/null)
9954         echo "proc_dirs='$proc_dirs'"
9955         [ -n "$proc_dirs" ] || error "no proc_dirs on $HOSTNAME"
9956         find $proc_dirs \
9957                 -type f \
9958                 -not -name force_lbug \
9959                 -not -name changelog_mask \
9960                 -exec badarea_io '{}' \; &> /dev/null ||
9961                 error "find $proc_dirs failed"
9962
9963         local facet
9964         for facet in mds1 ost1; do
9965                 [ $(lustre_version_code $facet) -le $(version_code 2.5.54) ] &&
9966                         skip "Too old lustre on $facet" && continue
9967                 local facet_proc_dirs=$(do_facet $facet \
9968                                         \\\ls -d $proc_regexp 2> /dev/null)
9969                 echo "${facet}_proc_dirs='$facet_proc_dirs'"
9970                 [ -z "$facet_proc_dirs" ] && error "no proc_dirs on $facet"
9971                 do_facet $facet find $facet_proc_dirs \
9972                         -type f \
9973                         -not -name force_lbug \
9974                         -not -name changelog_mask \
9975                         -exec badarea_io '{}' \\\; &> /dev/null ||
9976                                 error "$facet find $facet_proc_dirs failed"
9977         done
9978
9979         # remount the FS in case writes/reads /proc break the FS
9980         cleanup || error "failed to unmount"
9981         setup || error "failed to setup"
9982         true
9983 }
9984 run_test 133g "Check for Oopses on bad io area writes/reads in /proc"
9985
9986 test_133h() {
9987         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9988         remote_ost_nodsh && skip "remote OST with nodsh" && return
9989         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.9.54) ]] &&
9990                 skip "Need MDS version at least 2.9.54" && return
9991
9992         local facet
9993         for facet in client mds1 ost1; do
9994                 local facet_proc_dirs=$(do_facet $facet \
9995                                         \\\ls -d $proc_regexp 2> /dev/null)
9996                 [ -z "$facet_proc_dirs" ] && error "no proc_dirs on $facet"
9997                 echo "${facet}_proc_dirs='$facet_proc_dirs'"
9998                 # Get the list of files that are missing the terminating newline
9999                 local missing=($(do_facet $facet \
10000                         find ${facet_proc_dirs} -type f \|              \
10001                                 while read F\; do                       \
10002                                         awk -v FS='\v' -v RS='\v\v'     \
10003                                         "'END { if(NR>0 &&              \
10004                                         \\\$NF !~ /.*\\\n\$/)           \
10005                                                 print FILENAME}'"       \
10006                                         '\$F'\;                         \
10007                                 done 2>/dev/null))
10008                 [ ${#missing[*]} -eq 0 ] ||
10009                         error "files do not end with newline: ${missing[*]}"
10010         done
10011 }
10012 run_test 133h "Proc files should end with newlines"
10013
10014 test_134a() {
10015         remote_mds_nodsh && skip "remote MDS with nodsh" && return
10016         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.54) ]] &&
10017                 skip "Need MDS version at least 2.7.54" && return
10018
10019         mkdir -p $DIR/$tdir || error "failed to create $DIR/$tdir"
10020         cancel_lru_locks mdc
10021
10022         local nsdir="ldlm.namespaces.*-MDT0000-mdc-*"
10023         local unused=$($LCTL get_param -n $nsdir.lock_unused_count)
10024         [ $unused -eq 0 ] || error "$unused locks are not cleared"
10025
10026         local nr=1000
10027         createmany -o $DIR/$tdir/f $nr ||
10028                 error "failed to create $nr files in $DIR/$tdir"
10029         unused=$($LCTL get_param -n $nsdir.lock_unused_count)
10030
10031         #define OBD_FAIL_LDLM_WATERMARK_LOW     0x327
10032         do_facet mds1 $LCTL set_param fail_loc=0x327
10033         do_facet mds1 $LCTL set_param fail_val=500
10034         touch $DIR/$tdir/m
10035
10036         echo "sleep 10 seconds ..."
10037         sleep 10
10038         local lck_cnt=$($LCTL get_param -n $nsdir.lock_unused_count)
10039
10040         do_facet mds1 $LCTL set_param fail_loc=0
10041         do_facet mds1 $LCTL set_param fail_val=0
10042         [ $lck_cnt -lt $unused ] ||
10043                 error "No locks reclaimed, before:$unused, after:$lck_cnt"
10044
10045         rm $DIR/$tdir/m
10046         unlinkmany $DIR/$tdir/f $nr
10047 }
10048 run_test 134a "Server reclaims locks when reaching lock_reclaim_threshold"
10049
10050 test_134b() {
10051         remote_mds_nodsh && skip "remote MDS with nodsh" && return
10052         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.54) ]] &&
10053                 skip "Need MDS version at least 2.7.54" && return
10054
10055         mkdir -p $DIR/$tdir || error "failed to create $DIR/$tdir"
10056         cancel_lru_locks mdc
10057
10058         local low_wm=$(do_facet mds1 $LCTL get_param -n \
10059                         ldlm.lock_reclaim_threshold_mb)
10060         # disable reclaim temporarily
10061         do_facet mds1 $LCTL set_param ldlm.lock_reclaim_threshold_mb=0
10062
10063         #define OBD_FAIL_LDLM_WATERMARK_HIGH     0x328
10064         do_facet mds1 $LCTL set_param fail_loc=0x328
10065         do_facet mds1 $LCTL set_param fail_val=500
10066
10067         $LCTL set_param debug=+trace
10068
10069         local nr=600
10070         createmany -o $DIR/$tdir/f $nr &
10071         local create_pid=$!
10072
10073         echo "Sleep $TIMEOUT seconds ..."
10074         sleep $TIMEOUT
10075         if ! ps -p $create_pid  > /dev/null 2>&1; then
10076                 do_facet mds1 $LCTL set_param fail_loc=0
10077                 do_facet mds1 $LCTL set_param fail_val=0
10078                 do_facet mds1 $LCTL set_param \
10079                         ldlm.lock_reclaim_threshold_mb=${low_wm}m
10080                 error "createmany finished incorrectly!"
10081         fi
10082         do_facet mds1 $LCTL set_param fail_loc=0
10083         do_facet mds1 $LCTL set_param fail_val=0
10084         do_facet mds1 $LCTL set_param ldlm.lock_reclaim_threshold_mb=${low_wm}m
10085         wait $create_pid || return 1
10086
10087         unlinkmany $DIR/$tdir/f $nr
10088 }
10089 run_test 134b "Server rejects lock request when reaching lock_limit_mb"
10090
10091 test_140() { #bug-17379
10092         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10093         test_mkdir -p $DIR/$tdir || error "Creating dir $DIR/$tdir"
10094         cd $DIR/$tdir || error "Changing to $DIR/$tdir"
10095         cp $(which stat) . || error "Copying stat to $DIR/$tdir"
10096
10097         # VFS limits max symlink depth to 5(4KSTACK) or 7(8KSTACK) or 8
10098         # For kernel > 3.5, bellow only tests consecutive symlink (MAX 40)
10099         local i=0
10100         while i=`expr $i + 1`; do
10101                 test_mkdir -p $i || error "Creating dir $i"
10102                 cd $i || error "Changing to $i"
10103                 ln -s ../stat stat || error "Creating stat symlink"
10104                 # Read the symlink until ELOOP present,
10105                 # not LBUGing the system is considered success,
10106                 # we didn't overrun the stack.
10107                 $OPENFILE -f O_RDONLY stat >/dev/null 2>&1; ret=$?
10108                 [ $ret -ne 0 ] && {
10109                         if [ $ret -eq 40 ]; then
10110                                 break  # -ELOOP
10111                         else
10112                                 error "Open stat symlink"
10113                                 return
10114                         fi
10115                 }
10116         done
10117         i=`expr $i - 1`
10118         echo "The symlink depth = $i"
10119         [ $i -eq 5 -o $i -eq 7 -o $i -eq 8 -o $i -eq 40 ] ||
10120                                         error "Invalid symlink depth"
10121
10122         # Test recursive symlink
10123         ln -s symlink_self symlink_self
10124         $OPENFILE -f O_RDONLY symlink_self >/dev/null 2>&1; ret=$?
10125         echo "open symlink_self returns $ret"
10126         [ $ret -eq 40 ] || error "recursive symlink doesn't return -ELOOP"
10127 }
10128 run_test 140 "Check reasonable stack depth (shouldn't LBUG) ===="
10129
10130 test_150() {
10131         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10132         local TF="$TMP/$tfile"
10133
10134         dd if=/dev/urandom of=$TF bs=6096 count=1 || error "dd failed"
10135         cp $TF $DIR/$tfile
10136         cancel_lru_locks osc
10137         cmp $TF $DIR/$tfile || error "$TMP/$tfile $DIR/$tfile differ"
10138         remount_client $MOUNT
10139         df -P $MOUNT
10140         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (remount)"
10141
10142         $TRUNCATE $TF 6000
10143         $TRUNCATE $DIR/$tfile 6000
10144         cancel_lru_locks osc
10145         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (truncate1)"
10146
10147         echo "12345" >>$TF
10148         echo "12345" >>$DIR/$tfile
10149         cancel_lru_locks osc
10150         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (append1)"
10151
10152         echo "12345" >>$TF
10153         echo "12345" >>$DIR/$tfile
10154         cancel_lru_locks osc
10155         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (append2)"
10156
10157         rm -f $TF
10158         true
10159 }
10160 run_test 150 "truncate/append tests"
10161
10162 #LU-2902 roc_hit was not able to read all values from lproc
10163 function roc_hit_init() {
10164         local list=$(comma_list $(osts_nodes))
10165         local dir=$DIR/$tdir-check
10166         local file=$dir/file
10167         local BEFORE
10168         local AFTER
10169         local idx
10170
10171         test_mkdir -p $dir
10172         #use setstripe to do a write to every ost
10173         for i in $(seq 0 $((OSTCOUNT-1))); do
10174                 $SETSTRIPE -c 1 -i $i $dir || error "$SETSTRIPE $file failed"
10175                 dd if=/dev/urandom of=$file bs=4k count=4 2>&1 > /dev/null
10176                 idx=$(printf %04x $i)
10177                 BEFORE=$(get_osd_param $list *OST*$idx stats |
10178                         awk '$1 == "cache_access" {sum += $7}
10179                                 END { printf("%0.0f", sum) }')
10180
10181                 cancel_lru_locks osc
10182                 cat $file >/dev/null
10183
10184                 AFTER=$(get_osd_param $list *OST*$idx stats |
10185                         awk '$1 == "cache_access" {sum += $7}
10186                                 END { printf("%0.0f", sum) }')
10187
10188                 echo BEFORE:$BEFORE AFTER:$AFTER
10189                 if ! let "AFTER - BEFORE == 4"; then
10190                         rm -rf $dir
10191                         error "roc_hit is not safe to use"
10192                 fi
10193                 rm $file
10194         done
10195
10196         rm -rf $dir
10197 }
10198
10199 function roc_hit() {
10200         local list=$(comma_list $(osts_nodes))
10201         echo $(get_osd_param $list '' stats |
10202                 awk '$1 == "cache_hit" {sum += $7}
10203                         END { printf("%0.0f", sum) }')
10204 }
10205
10206 function set_cache() {
10207         local on=1
10208
10209         if [ "$2" == "off" ]; then
10210                 on=0;
10211         fi
10212         local list=$(comma_list $(osts_nodes))
10213         set_osd_param $list '' $1_cache_enable $on
10214
10215         cancel_lru_locks osc
10216 }
10217
10218 test_151() {
10219         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10220         remote_ost_nodsh && skip "remote OST with nodsh" && return
10221
10222         local CPAGES=3
10223         local list=$(comma_list $(osts_nodes))
10224
10225         # check whether obdfilter is cache capable at all
10226         if ! get_osd_param $list '' read_cache_enable >/dev/null; then
10227                 echo "not cache-capable obdfilter"
10228                 return 0
10229         fi
10230
10231         # check cache is enabled on all obdfilters
10232         if get_osd_param $list '' read_cache_enable | grep 0; then
10233                 echo "oss cache is disabled"
10234                 return 0
10235         fi
10236
10237         set_osd_param $list '' writethrough_cache_enable 1
10238
10239         # check write cache is enabled on all obdfilters
10240         if get_osd_param $list '' writethrough_cache_enable | grep 0; then
10241                 echo "oss write cache is NOT enabled"
10242                 return 0
10243         fi
10244
10245         roc_hit_init
10246
10247         #define OBD_FAIL_OBD_NO_LRU  0x609
10248         do_nodes $list $LCTL set_param fail_loc=0x609
10249
10250         # pages should be in the case right after write
10251         dd if=/dev/urandom of=$DIR/$tfile bs=4k count=$CPAGES ||
10252                 error "dd failed"
10253
10254         local BEFORE=$(roc_hit)
10255         cancel_lru_locks osc
10256         cat $DIR/$tfile >/dev/null
10257         local AFTER=$(roc_hit)
10258
10259         do_nodes $list $LCTL set_param fail_loc=0
10260
10261         if ! let "AFTER - BEFORE == CPAGES"; then
10262                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
10263         fi
10264
10265         # the following read invalidates the cache
10266         cancel_lru_locks osc
10267         set_osd_param $list '' read_cache_enable 0
10268         cat $DIR/$tfile >/dev/null
10269
10270         # now data shouldn't be found in the cache
10271         BEFORE=$(roc_hit)
10272         cancel_lru_locks osc
10273         cat $DIR/$tfile >/dev/null
10274         AFTER=$(roc_hit)
10275         if let "AFTER - BEFORE != 0"; then
10276                 error "IN CACHE: before: $BEFORE, after: $AFTER"
10277         fi
10278
10279         set_osd_param $list '' read_cache_enable 1
10280         rm -f $DIR/$tfile
10281 }
10282 run_test 151 "test cache on oss and controls ==============================="
10283
10284 test_152() {
10285         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10286         local TF="$TMP/$tfile"
10287
10288         # simulate ENOMEM during write
10289 #define OBD_FAIL_OST_NOMEM      0x226
10290         lctl set_param fail_loc=0x80000226
10291         dd if=/dev/urandom of=$TF bs=6096 count=1 || error "dd failed"
10292         cp $TF $DIR/$tfile
10293         sync || error "sync failed"
10294         lctl set_param fail_loc=0
10295
10296         # discard client's cache
10297         cancel_lru_locks osc
10298
10299         # simulate ENOMEM during read
10300         lctl set_param fail_loc=0x80000226
10301         cmp $TF $DIR/$tfile || error "cmp failed"
10302         lctl set_param fail_loc=0
10303
10304         rm -f $TF
10305 }
10306 run_test 152 "test read/write with enomem ============================"
10307
10308 test_153() {
10309         $MULTIOP $DIR/$tfile Ow4096Ycu || error "multiop failed"
10310 }
10311 run_test 153 "test if fdatasync does not crash ======================="
10312
10313 dot_lustre_fid_permission_check() {
10314         local fid=$1
10315         local ffid=$MOUNT/.lustre/fid/$fid
10316         local test_dir=$2
10317
10318         echo "stat fid $fid"
10319         stat $ffid > /dev/null || error "stat $ffid failed."
10320         echo "touch fid $fid"
10321         touch $ffid || error "touch $ffid failed."
10322         echo "write to fid $fid"
10323         cat /etc/hosts > $ffid || error "write $ffid failed."
10324         echo "read fid $fid"
10325         diff /etc/hosts $ffid || error "read $ffid failed."
10326         echo "append write to fid $fid"
10327         cat /etc/hosts >> $ffid || error "append write $ffid failed."
10328         echo "rename fid $fid"
10329         mv $ffid $test_dir/$tfile.1 &&
10330                 error "rename $ffid to $tfile.1 should fail."
10331         touch $test_dir/$tfile.1
10332         mv $test_dir/$tfile.1 $ffid &&
10333                 error "rename $tfile.1 to $ffid should fail."
10334         rm -f $test_dir/$tfile.1
10335         echo "truncate fid $fid"
10336         $TRUNCATE $ffid 777 || error "truncate $ffid failed."
10337         if [ $MDSCOUNT -lt 2 ]; then #FIXME when cross-MDT hard link is working
10338                 echo "link fid $fid"
10339                 ln -f $ffid $test_dir/tfile.lnk || error "link $ffid failed."
10340         fi
10341         if [ -n $(lctl get_param -n mdc.*-mdc-*.connect_flags | grep acl) ]; then
10342                 echo "setfacl fid $fid"
10343                 setfacl -R -m u:bin:rwx $ffid || error "setfacl $ffid failed."
10344                 echo "getfacl fid $fid"
10345                 getfacl $ffid >/dev/null || error "getfacl $ffid failed."
10346         fi
10347         echo "unlink fid $fid"
10348         unlink $MOUNT/.lustre/fid/$fid && error "unlink $ffid should fail."
10349         echo "mknod fid $fid"
10350         mknod $ffid c 1 3 && error "mknod $ffid should fail."
10351
10352         fid=[0xf00000400:0x1:0x0]
10353         ffid=$MOUNT/.lustre/fid/$fid
10354
10355         echo "stat non-exist fid $fid"
10356         stat $ffid > /dev/null && error "stat non-exist $ffid should fail."
10357         echo "write to non-exist fid $fid"
10358         cat /etc/hosts > $ffid && error "write non-exist $ffid should fail."
10359         echo "link new fid $fid"
10360         ln $test_dir/$tfile $ffid && error "link $ffid should fail."
10361
10362         mkdir -p $test_dir/$tdir
10363         touch $test_dir/$tdir/$tfile
10364         fid=$($LFS path2fid $test_dir/$tdir)
10365         rc=$?
10366         [ $rc -ne 0 ] &&
10367                 error "error: could not get fid for $test_dir/$dir/$tfile."
10368
10369         ffid=$MOUNT/.lustre/fid/$fid
10370
10371         echo "ls $fid"
10372         ls $ffid > /dev/null || error "ls $ffid failed."
10373         echo "touch $fid/$tfile.1"
10374         touch $ffid/$tfile.1 || error "touch $ffid/$tfile.1 failed."
10375
10376         echo "touch $MOUNT/.lustre/fid/$tfile"
10377         touch $MOUNT/.lustre/fid/$tfile && \
10378                 error "touch $MOUNT/.lustre/fid/$tfile should fail."
10379
10380         echo "setxattr to $MOUNT/.lustre/fid"
10381         setfattr -n trusted.name1 -v value1 $MOUNT/.lustre/fid
10382
10383         echo "listxattr for $MOUNT/.lustre/fid"
10384         getfattr -d -m "^trusted" $MOUNT/.lustre/fid
10385
10386         echo "delxattr from $MOUNT/.lustre/fid"
10387         setfattr -x trusted.name1 $MOUNT/.lustre/fid
10388
10389         echo "touch invalid fid: $MOUNT/.lustre/fid/[0x200000400:0x2:0x3]"
10390         touch $MOUNT/.lustre/fid/[0x200000400:0x2:0x3] &&
10391                 error "touch invalid fid should fail."
10392
10393         echo "touch non-normal fid: $MOUNT/.lustre/fid/[0x1:0x2:0x0]"
10394         touch $MOUNT/.lustre/fid/[0x1:0x2:0x0] &&
10395                 error "touch non-normal fid should fail."
10396
10397         echo "rename $tdir to $MOUNT/.lustre/fid"
10398         mrename $test_dir/$tdir $MOUNT/.lustre/fid &&
10399                 error "rename to $MOUNT/.lustre/fid should fail."
10400
10401         if [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.51) ]
10402         then            # LU-3547
10403                 local old_obf_mode=$(stat --format="%a" $DIR/.lustre/fid)
10404                 local new_obf_mode=777
10405
10406                 echo "change mode of $DIR/.lustre/fid to $new_obf_mode"
10407                 chmod $new_obf_mode $DIR/.lustre/fid ||
10408                         error "chmod $new_obf_mode $DIR/.lustre/fid failed"
10409
10410                 local obf_mode=$(stat --format=%a $DIR/.lustre/fid)
10411                 [ $obf_mode -eq $new_obf_mode ] ||
10412                         error "stat $DIR/.lustre/fid returned wrong mode $obf_mode"
10413
10414                 echo "restore mode of $DIR/.lustre/fid to $old_obf_mode"
10415                 chmod $old_obf_mode $DIR/.lustre/fid ||
10416                         error "chmod $old_obf_mode $DIR/.lustre/fid failed"
10417         fi
10418
10419         $OPENFILE -f O_LOV_DELAY_CREATE:O_CREAT $test_dir/$tfile-2
10420         fid=$($LFS path2fid $test_dir/$tfile-2)
10421
10422         if [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.50) ]
10423         then # LU-5424
10424                 echo "cp /etc/passwd $MOUNT/.lustre/fid/$fid"
10425                 cp /etc/passwd $MOUNT/.lustre/fid/$fid ||
10426                         error "create lov data thru .lustre failed"
10427         fi
10428         echo "cp /etc/passwd $test_dir/$tfile-2"
10429         cp /etc/passwd $test_dir/$tfile-2 ||
10430                 error "copy to $test_dir/$tfile-2 failed."
10431         echo "diff /etc/passwd $MOUNT/.lustre/fid/$fid"
10432         diff /etc/passwd $MOUNT/.lustre/fid/$fid ||
10433                 error "diff /etc/passwd $MOUNT/.lustre/fid/$fid failed."
10434
10435         rm -rf $test_dir/tfile.lnk
10436         rm -rf $test_dir/$tfile-2
10437 }
10438
10439 test_154A() {
10440         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.1) ]] &&
10441                 skip "Need MDS version at least 2.4.1" && return
10442
10443         local tf=$DIR/$tfile
10444         touch $tf
10445
10446         local fid=$($LFS path2fid $tf)
10447         [ -z "$fid" ] && error "path2fid unable to get $tf FID"
10448
10449         # check that we get the same pathname back
10450         local found=$($LFS fid2path $MOUNT "$fid")
10451         [ -z "$found" ] && error "fid2path unable to get '$fid' path"
10452         [ "$found" == "$tf" ] ||
10453                 error "fid2path($fid=path2fid($tf)) = $found != $tf"
10454 }
10455 run_test 154A "lfs path2fid and fid2path basic checks"
10456
10457 test_154B() {
10458         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.1) ]] &&
10459                 skip "Need MDS version at least 2.4.1" && return
10460
10461         mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
10462         touch $DIR/$tdir/$tfile || error "touch $DIR/$tdir/$tfile failed"
10463         local linkea=$($LL_DECODE_LINKEA $DIR/$tdir/$tfile | grep 'pfid')
10464         [ -z "$linkea" ] && error "decode linkea $DIR/$tdir/$tfile failed"
10465
10466         local name=$(echo $linkea | awk '/pfid/ {print $5}' | sed -e "s/'//g")
10467         local PFID=$(echo $linkea | awk '/pfid/ {print $3}' | sed -e "s/,//g")
10468
10469         # check that we get the same pathname
10470         echo "PFID: $PFID, name: $name"
10471         local FOUND=$($LFS fid2path $MOUNT "$PFID")
10472         [ -z "$FOUND" ] && error "fid2path unable to get $PFID path"
10473         [ "$FOUND/$name" != "$DIR/$tdir/$tfile" ] &&
10474                 error "ll_decode_linkea has $FOUND/$name != $DIR/$tdir/$tfile"
10475
10476         rm -rf $DIR/$tdir || error "Can not delete directory $DIR/$tdir"
10477 }
10478 run_test 154B "verify the ll_decode_linkea tool"
10479
10480 test_154a() {
10481         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10482         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ]] ||
10483                 { skip "Need MDS version at least 2.2.51"; return 0; }
10484         [ -z "$(which setfacl)" ] && skip "must have setfacl tool" && return
10485         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
10486
10487         cp /etc/hosts $DIR/$tfile
10488
10489         fid=$($LFS path2fid $DIR/$tfile)
10490         rc=$?
10491         [ $rc -ne 0 ] && error "error: could not get fid for $DIR/$tfile."
10492
10493         dot_lustre_fid_permission_check "$fid" $DIR ||
10494                 error "dot lustre permission check $fid failed"
10495
10496         rm -rf $MOUNT/.lustre && error ".lustre is not allowed to be unlinked"
10497
10498         touch $MOUNT/.lustre/file &&
10499                 error "creation is not allowed under .lustre"
10500
10501         mkdir $MOUNT/.lustre/dir &&
10502                 error "mkdir is not allowed under .lustre"
10503
10504         rm -rf $DIR/$tfile
10505 }
10506 run_test 154a "Open-by-FID"
10507
10508 test_154b() {
10509         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10510         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ]] ||
10511                 { skip "Need MDS version at least 2.2.51"; return 0; }
10512         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
10513
10514         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
10515
10516         local remote_dir=$DIR/$tdir/remote_dir
10517         local MDTIDX=1
10518         local rc=0
10519
10520         mkdir -p $DIR/$tdir
10521         $LFS mkdir -i $MDTIDX $remote_dir ||
10522                 error "create remote directory failed"
10523
10524         cp /etc/hosts $remote_dir/$tfile
10525
10526         fid=$($LFS path2fid $remote_dir/$tfile)
10527         rc=$?
10528         [ $rc -ne 0 ] && error "error: could not get fid for $remote_dir/$tfile"
10529
10530         dot_lustre_fid_permission_check "$fid" $remote_dir ||
10531                 error "dot lustre permission check $fid failed"
10532         rm -rf $DIR/$tdir
10533 }
10534 run_test 154b "Open-by-FID for remote directory"
10535
10536 test_154c() {
10537         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.1) ]] &&
10538                 skip "Need MDS version at least 2.4.1" && return
10539
10540         touch $DIR/$tfile.1 $DIR/$tfile.2 $DIR/$tfile.3
10541         local FID1=$($LFS path2fid $DIR/$tfile.1)
10542         local FID2=$($LFS path2fid $DIR/$tfile.2)
10543         local FID3=$($LFS path2fid $DIR/$tfile.3)
10544
10545         local N=1
10546         $LFS path2fid $DIR/$tfile.[123] | while read PATHNAME FID; do
10547                 [ "$PATHNAME" = "$DIR/$tfile.$N:" ] ||
10548                         error "path2fid pathname $PATHNAME != $DIR/$tfile.$N:"
10549                 local want=FID$N
10550                 [ "$FID" = "${!want}" ] ||
10551                         error "path2fid $PATHNAME FID $FID != FID$N ${!want}"
10552                 N=$((N + 1))
10553         done
10554
10555         $LFS fid2path $MOUNT "$FID1" "$FID2" "$FID3" | while read PATHNAME;
10556         do
10557                 [ "$PATHNAME" = "$DIR/$tfile.$N" ] ||
10558                         error "fid2path pathname $PATHNAME != $DIR/$tfile.$N:"
10559                 N=$((N + 1))
10560         done
10561 }
10562 run_test 154c "lfs path2fid and fid2path multiple arguments"
10563
10564 test_154d() {
10565         remote_mds_nodsh && skip "remote MDS with nodsh" && return
10566         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.5.53) ]] &&
10567                 skip "Need MDS version at least 2.5.53" && return
10568
10569         if remote_mds; then
10570                 nid=$($LCTL list_nids | sed  "s/\./\\\./g")
10571         else
10572                 nid="0@lo"
10573         fi
10574         local proc_ofile="mdt.*.exports.'$nid'.open_files"
10575         local fd
10576         local cmd
10577
10578         rm -f $DIR/$tfile
10579         touch $DIR/$tfile
10580
10581         local fid=$($LFS path2fid $DIR/$tfile)
10582         # Open the file
10583         fd=$(free_fd)
10584         cmd="exec $fd<$DIR/$tfile"
10585         eval $cmd
10586         local fid_list=$(do_facet $SINGLEMDS $LCTL get_param $proc_ofile)
10587         echo "$fid_list" | grep "$fid"
10588         rc=$?
10589
10590         cmd="exec $fd>/dev/null"
10591         eval $cmd
10592         if [ $rc -ne 0 ]; then
10593                 error "FID $fid not found in open files list $fid_list"
10594         fi
10595 }
10596 run_test 154d "Verify open file fid"
10597
10598 test_154e()
10599 {
10600         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.6.50) ]] &&
10601                 skip "Need MDS version at least 2.6.50" && return
10602
10603         if ls -a $MOUNT | grep -q '^\.lustre$'; then
10604                 error ".lustre returned by readdir"
10605         fi
10606 }
10607 run_test 154e ".lustre is not returned by readdir"
10608
10609 test_154f() {
10610         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
10611         # create parent directory on a single MDT to avoid cross-MDT hardlinks
10612         test_mkdir -p -c1 $DIR/$tdir/d
10613         # test dirs inherit from its stripe
10614         mkdir -p $DIR/$tdir/d/foo1 || error "mkdir error"
10615         mkdir -p $DIR/$tdir/d/foo2 || error "mkdir error"
10616         cp /etc/hosts $DIR/$tdir/d/foo1/$tfile
10617         ln $DIR/$tdir/d/foo1/$tfile $DIR/$tdir/d/foo2/link
10618         touch $DIR/f
10619
10620         # get fid of parents
10621         local FID0=$($LFS path2fid $DIR/$tdir/d)
10622         local FID1=$($LFS path2fid $DIR/$tdir/d/foo1)
10623         local FID2=$($LFS path2fid $DIR/$tdir/d/foo2)
10624         local FID3=$($LFS path2fid $DIR)
10625
10626         # check that path2fid --parents returns expected <parent_fid>/name
10627         # 1) test for a directory (single parent)
10628         local parent=$($LFS path2fid --parents $DIR/$tdir/d/foo1)
10629         [ "$parent" == "$FID0/foo1" ] ||
10630                 error "expected parent: $FID0/foo1, got: $parent"
10631
10632         # 2) test for a file with nlink > 1 (multiple parents)
10633         parent=$($LFS path2fid --parents $DIR/$tdir/d/foo1/$tfile)
10634         echo "$parent" | grep -F "$FID1/$tfile" ||
10635                 error "$FID1/$tfile not returned in parent list"
10636         echo "$parent" | grep -F "$FID2/link" ||
10637                 error "$FID2/link not returned in parent list"
10638
10639         # 3) get parent by fid
10640         local file_fid=$($LFS path2fid $DIR/$tdir/d/foo1/$tfile)
10641         parent=$($LFS path2fid --parents $MOUNT/.lustre/fid/$file_fid)
10642         echo "$parent" | grep -F "$FID1/$tfile" ||
10643                 error "$FID1/$tfile not returned in parent list (by fid)"
10644         echo "$parent" | grep -F "$FID2/link" ||
10645                 error "$FID2/link not returned in parent list (by fid)"
10646
10647         # 4) test for entry in root directory
10648         parent=$($LFS path2fid --parents $DIR/f)
10649         echo "$parent" | grep -F "$FID3/f" ||
10650                 error "$FID3/f not returned in parent list"
10651
10652         # 5) test it on root directory
10653         [ -z "$($LFS path2fid --parents $MOUNT 2>/dev/null)" ] ||
10654                 error "$MOUNT should not have parents"
10655
10656         # enable xattr caching and check that linkea is correctly updated
10657         local save="$TMP/$TESTSUITE-$TESTNAME.parameters"
10658         save_lustre_params client "llite.*.xattr_cache" > $save
10659         lctl set_param llite.*.xattr_cache 1
10660
10661         # 6.1) linkea update on rename
10662         mv $DIR/$tdir/d/foo1/$tfile $DIR/$tdir/d/foo2/$tfile.moved
10663
10664         # get parents by fid
10665         parent=$($LFS path2fid --parents $MOUNT/.lustre/fid/$file_fid)
10666         # foo1 should no longer be returned in parent list
10667         echo "$parent" | grep -F "$FID1" &&
10668                 error "$FID1 should no longer be in parent list"
10669         # the new path should appear
10670         echo "$parent" | grep -F "$FID2/$tfile.moved" ||
10671                 error "$FID2/$tfile.moved is not in parent list"
10672
10673         # 6.2) linkea update on unlink
10674         rm -f $DIR/$tdir/d/foo2/link
10675         parent=$($LFS path2fid --parents $MOUNT/.lustre/fid/$file_fid)
10676         # foo2/link should no longer be returned in parent list
10677         echo "$parent" | grep -F "$FID2/link" &&
10678                 error "$FID2/link should no longer be in parent list"
10679         true
10680
10681         rm -f $DIR/f
10682         restore_lustre_params < $save
10683         rm -f $save
10684 }
10685 run_test 154f "get parent fids by reading link ea"
10686
10687 test_154g()
10688 {
10689         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.92) ]] ||
10690                 { skip "Need MDS version at least 2.6.92"; return 0; }
10691         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
10692
10693         mkdir -p $DIR/$tdir
10694         llapi_fid_test -d $DIR/$tdir
10695 }
10696 run_test 154g "various llapi FID tests"
10697
10698 test_155_small_load() {
10699     local temp=$TMP/$tfile
10700     local file=$DIR/$tfile
10701
10702     dd if=/dev/urandom of=$temp bs=6096 count=1 || \
10703         error "dd of=$temp bs=6096 count=1 failed"
10704     cp $temp $file
10705     cancel_lru_locks osc
10706     cmp $temp $file || error "$temp $file differ"
10707
10708     $TRUNCATE $temp 6000
10709     $TRUNCATE $file 6000
10710     cmp $temp $file || error "$temp $file differ (truncate1)"
10711
10712     echo "12345" >>$temp
10713     echo "12345" >>$file
10714     cmp $temp $file || error "$temp $file differ (append1)"
10715
10716     echo "12345" >>$temp
10717     echo "12345" >>$file
10718     cmp $temp $file || error "$temp $file differ (append2)"
10719
10720     rm -f $temp $file
10721     true
10722 }
10723
10724 test_155_big_load() {
10725     remote_ost_nodsh && skip "remote OST with nodsh" && return
10726     local temp=$TMP/$tfile
10727     local file=$DIR/$tfile
10728
10729     free_min_max
10730     local cache_size=$(do_facet ost$((MAXI+1)) \
10731         "awk '/cache/ {sum+=\\\$4} END {print sum}' /proc/cpuinfo")
10732     local large_file_size=$((cache_size * 2))
10733
10734     echo "OSS cache size: $cache_size KB"
10735     echo "Large file size: $large_file_size KB"
10736
10737     [ $MAXV -le $large_file_size ] && \
10738         skip_env "max available OST size needs > $large_file_size KB" && \
10739         return 0
10740
10741     $SETSTRIPE $file -c 1 -i $MAXI || error "$SETSTRIPE $file failed"
10742
10743     dd if=/dev/urandom of=$temp bs=$large_file_size count=1k || \
10744         error "dd of=$temp bs=$large_file_size count=1k failed"
10745     cp $temp $file
10746     ls -lh $temp $file
10747     cancel_lru_locks osc
10748     cmp $temp $file || error "$temp $file differ"
10749
10750     rm -f $temp $file
10751     true
10752 }
10753
10754 save_writethrough() {
10755         local facets=$(get_facets OST)
10756
10757         save_lustre_params $facets "obdfilter.*.writethrough_cache_enable" > $1
10758         save_lustre_params $facets "osd-*.*.writethrough_cache_enable" >> $1
10759 }
10760
10761 test_155a() {
10762         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10763         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
10764         save_writethrough $p
10765
10766         set_cache read on
10767         set_cache writethrough on
10768         test_155_small_load
10769         restore_lustre_params < $p
10770         rm -f $p
10771 }
10772 run_test 155a "Verify small file correctness: read cache:on write_cache:on"
10773
10774 test_155b() {
10775         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10776         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
10777         save_writethrough $p
10778
10779         set_cache read on
10780         set_cache writethrough off
10781         test_155_small_load
10782         restore_lustre_params < $p
10783         rm -f $p
10784 }
10785 run_test 155b "Verify small file correctness: read cache:on write_cache:off"
10786
10787 test_155c() {
10788         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10789         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
10790         save_writethrough $p
10791
10792         set_cache read off
10793         set_cache writethrough on
10794         test_155_small_load
10795         restore_lustre_params < $p
10796         rm -f $p
10797 }
10798 run_test 155c "Verify small file correctness: read cache:off write_cache:on"
10799
10800 test_155d() {
10801         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10802         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
10803         save_writethrough $p
10804
10805         set_cache read off
10806         set_cache writethrough off
10807         test_155_small_load
10808         restore_lustre_params < $p
10809         rm -f $p
10810 }
10811 run_test 155d "Verify small file correctness: read cache:off write_cache:off"
10812
10813 test_155e() {
10814         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10815         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
10816         save_writethrough $p
10817
10818         set_cache read on
10819         set_cache writethrough on
10820         test_155_big_load
10821         restore_lustre_params < $p
10822         rm -f $p
10823 }
10824 run_test 155e "Verify big file correctness: read cache:on write_cache:on"
10825
10826 test_155f() {
10827         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10828         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
10829         save_writethrough $p
10830
10831         set_cache read on
10832         set_cache writethrough off
10833         test_155_big_load
10834         restore_lustre_params < $p
10835         rm -f $p
10836 }
10837 run_test 155f "Verify big file correctness: read cache:on write_cache:off"
10838
10839 test_155g() {
10840         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10841         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
10842         save_writethrough $p
10843
10844         set_cache read off
10845         set_cache writethrough on
10846         test_155_big_load
10847         restore_lustre_params < $p
10848         rm -f $p
10849 }
10850 run_test 155g "Verify big file correctness: read cache:off write_cache:on"
10851
10852 test_155h() {
10853         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10854         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
10855         save_writethrough $p
10856
10857         set_cache read off
10858         set_cache writethrough off
10859         test_155_big_load
10860         restore_lustre_params < $p
10861         rm -f $p
10862 }
10863 run_test 155h "Verify big file correctness: read cache:off write_cache:off"
10864
10865 test_156() {
10866         remote_ost_nodsh && skip "remote OST with nodsh" && return
10867         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10868         local CPAGES=3
10869         local BEFORE
10870         local AFTER
10871         local file="$DIR/$tfile"
10872         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
10873
10874         [ "$(facet_fstype ost1)" = "zfs" -a \
10875            $(lustre_version_code ost1 -lt $(version_code 2.6.93)) ] &&
10876                 skip "LU-1956/LU-2261: stats not implemented on OSD ZFS" &&
10877                 return
10878
10879         save_writethrough $p
10880         roc_hit_init
10881
10882         log "Turn on read and write cache"
10883         set_cache read on
10884         set_cache writethrough on
10885
10886         log "Write data and read it back."
10887         log "Read should be satisfied from the cache."
10888         dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
10889         BEFORE=$(roc_hit)
10890         cancel_lru_locks osc
10891         cat $file >/dev/null
10892         AFTER=$(roc_hit)
10893         if ! let "AFTER - BEFORE == CPAGES"; then
10894                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
10895         else
10896                 log "cache hits:: before: $BEFORE, after: $AFTER"
10897         fi
10898
10899         log "Read again; it should be satisfied from the cache."
10900         BEFORE=$AFTER
10901         cancel_lru_locks osc
10902         cat $file >/dev/null
10903         AFTER=$(roc_hit)
10904         if ! let "AFTER - BEFORE == CPAGES"; then
10905                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
10906         else
10907                 log "cache hits:: before: $BEFORE, after: $AFTER"
10908         fi
10909
10910         log "Turn off the read cache and turn on the write cache"
10911         set_cache read off
10912         set_cache writethrough on
10913
10914         log "Read again; it should be satisfied from the cache."
10915         BEFORE=$(roc_hit)
10916         cancel_lru_locks osc
10917         cat $file >/dev/null
10918         AFTER=$(roc_hit)
10919         if ! let "AFTER - BEFORE == CPAGES"; then
10920                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
10921         else
10922                 log "cache hits:: before: $BEFORE, after: $AFTER"
10923         fi
10924
10925         log "Read again; it should not be satisfied from the cache."
10926         BEFORE=$AFTER
10927         cancel_lru_locks osc
10928         cat $file >/dev/null
10929         AFTER=$(roc_hit)
10930         if ! let "AFTER - BEFORE == 0"; then
10931                 error "IN CACHE: before: $BEFORE, after: $AFTER"
10932         else
10933                 log "cache hits:: before: $BEFORE, after: $AFTER"
10934         fi
10935
10936         log "Write data and read it back."
10937         log "Read should be satisfied from the cache."
10938         dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
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         log "Read again; it should not be satisfied from the cache."
10950         BEFORE=$AFTER
10951         cancel_lru_locks osc
10952         cat $file >/dev/null
10953         AFTER=$(roc_hit)
10954         if ! let "AFTER - BEFORE == 0"; then
10955                 error "IN CACHE: before: $BEFORE, after: $AFTER"
10956         else
10957                 log "cache hits:: before: $BEFORE, after: $AFTER"
10958         fi
10959
10960         log "Turn off read and write cache"
10961         set_cache read off
10962         set_cache writethrough off
10963
10964         log "Write data and read it back"
10965         log "It should not be satisfied from the cache."
10966         rm -f $file
10967         dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
10968         cancel_lru_locks osc
10969         BEFORE=$(roc_hit)
10970         cat $file >/dev/null
10971         AFTER=$(roc_hit)
10972         if ! let "AFTER - BEFORE == 0"; then
10973                 error_ignore bz20762 "IN CACHE: before: $BEFORE, after: $AFTER"
10974         else
10975                 log "cache hits:: before: $BEFORE, after: $AFTER"
10976         fi
10977
10978         log "Turn on the read cache and turn off the write cache"
10979         set_cache read on
10980         set_cache writethrough off
10981
10982         log "Write data and read it back"
10983         log "It should not be satisfied from the cache."
10984         rm -f $file
10985         dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
10986         BEFORE=$(roc_hit)
10987         cancel_lru_locks osc
10988         cat $file >/dev/null
10989         AFTER=$(roc_hit)
10990         if ! let "AFTER - BEFORE == 0"; then
10991                 error_ignore bz20762 "IN CACHE: before: $BEFORE, after: $AFTER"
10992         else
10993                 log "cache hits:: before: $BEFORE, after: $AFTER"
10994         fi
10995
10996         log "Read again; it should be satisfied from the cache."
10997         BEFORE=$(roc_hit)
10998         cancel_lru_locks osc
10999         cat $file >/dev/null
11000         AFTER=$(roc_hit)
11001         if ! let "AFTER - BEFORE == CPAGES"; then
11002                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
11003         else
11004                 log "cache hits:: before: $BEFORE, after: $AFTER"
11005         fi
11006
11007         rm -f $file
11008         restore_lustre_params < $p
11009         rm -f $p
11010 }
11011 run_test 156 "Verification of tunables"
11012
11013 #Changelogs
11014 cleanup_changelog () {
11015         trap 0
11016         echo "Deregistering changelog client $CL_USER"
11017         do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister $CL_USER
11018 }
11019
11020 err17935 () {
11021         if [[ $MDSCOUNT -gt 1 ]]; then
11022                 error_ignore bz17935 $*
11023         else
11024                 error $*
11025         fi
11026 }
11027
11028 changelog_chmask()
11029 {
11030         local CL_MASK_PARAM="mdd.$MDT0.changelog_mask"
11031
11032         MASK=$(do_facet $SINGLEMDS $LCTL get_param $CL_MASK_PARAM| grep -c "$1")
11033
11034         if [ $MASK -eq 1 ]; then
11035                 do_facet $SINGLEMDS $LCTL set_param $CL_MASK_PARAM="-$1"
11036         else
11037                 do_facet $SINGLEMDS $LCTL set_param $CL_MASK_PARAM="+$1"
11038         fi
11039 }
11040
11041 changelog_extract_field() {
11042         local mdt=$1
11043         local cltype=$2
11044         local file=$3
11045         local identifier=$4
11046
11047         $LFS changelog $mdt | gawk "/$cltype.*$file$/ {
11048                 print gensub(/^.* "$identifier'(\[[^\]]*\]).*$/,"\\1",1)}' |
11049                 tail -1
11050 }
11051
11052 test_160a() {
11053         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11054         remote_mds_nodsh && skip "remote MDS with nodsh" && return
11055         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] ||
11056                 { skip "Need MDS version at least 2.2.0"; return; }
11057
11058         local CL_USERS="mdd.$MDT0.changelog_users"
11059         local GET_CL_USERS="do_facet $SINGLEMDS $LCTL get_param -n $CL_USERS"
11060         CL_USER=$(do_facet $SINGLEMDS $LCTL --device $MDT0 \
11061                 changelog_register -n)
11062         echo "Registered as changelog user $CL_USER"
11063         trap cleanup_changelog EXIT
11064         $GET_CL_USERS | grep -q $CL_USER ||
11065                 error "User $CL_USER not found in changelog_users"
11066
11067         # change something
11068         test_mkdir -p $DIR/$tdir/pics/2008/zachy
11069         touch $DIR/$tdir/pics/2008/zachy/timestamp
11070         cp /etc/hosts $DIR/$tdir/pics/2008/zachy/pic1.jpg
11071         mv $DIR/$tdir/pics/2008/zachy $DIR/$tdir/pics/zach
11072         ln $DIR/$tdir/pics/zach/pic1.jpg $DIR/$tdir/pics/2008/portland.jpg
11073         ln -s $DIR/$tdir/pics/2008/portland.jpg $DIR/$tdir/pics/desktop.jpg
11074         rm $DIR/$tdir/pics/desktop.jpg
11075
11076         $LFS changelog $MDT0 | tail -5
11077
11078         echo "verifying changelog mask"
11079         changelog_chmask "MKDIR"
11080         changelog_chmask "CLOSE"
11081
11082         test_mkdir -p $DIR/$tdir/pics/zach/sofia
11083         echo "zzzzzz" > $DIR/$tdir/pics/zach/file
11084
11085         changelog_chmask "MKDIR"
11086         changelog_chmask "CLOSE"
11087
11088         test_mkdir -p $DIR/$tdir/pics/2008/sofia
11089         echo "zzzzzz" > $DIR/$tdir/pics/zach/file
11090
11091         $LFS changelog $MDT0
11092         MKDIRS=$($LFS changelog $MDT0 | tail -5 | grep -c "MKDIR")
11093         CLOSES=$($LFS changelog $MDT0 | tail -5 | grep -c "CLOSE")
11094         [ $MKDIRS -eq 1 ] || err17935 "MKDIR changelog mask count $DIRS != 1"
11095         [ $CLOSES -eq 1 ] || err17935 "CLOSE changelog mask count $DIRS != 1"
11096
11097         # verify contents
11098         echo "verifying target fid"
11099         fidc=$(changelog_extract_field $MDT0 "CREAT" "timestamp" "t=")
11100         fidf=$($LFS path2fid $DIR/$tdir/pics/zach/timestamp)
11101         [ "$fidc" == "$fidf" ] ||
11102                 err17935 "fid in changelog $fidc != file fid $fidf"
11103         echo "verifying parent fid"
11104         fidc=$(changelog_extract_field $MDT0 "CREAT" "timestamp" "p=")
11105         fidf=$($LFS path2fid $DIR/$tdir/pics/zach)
11106         [ "$fidc" == "$fidf" ] ||
11107                 err17935 "pfid in changelog $fidc != dir fid $fidf"
11108
11109         USER_REC1=$($GET_CL_USERS | awk "\$1 == \"$CL_USER\" {print \$2}")
11110         $LFS changelog_clear $MDT0 $CL_USER $(($USER_REC1 + 5))
11111         USER_REC2=$($GET_CL_USERS | awk "\$1 == \"$CL_USER\" {print \$2}")
11112         echo "verifying user clear: $(( $USER_REC1 + 5 )) == $USER_REC2"
11113         [ $USER_REC2 == $(($USER_REC1 + 5)) ] ||
11114                 err17935 "user index expected $(($USER_REC1 + 5)) is $USER_REC2"
11115
11116         MIN_REC=$($GET_CL_USERS |
11117                 awk 'min == "" || $2 < min {min = $2}; END {print min}')
11118         FIRST_REC=$($LFS changelog $MDT0 | head -n1 | awk '{print $1}')
11119         echo "verifying min purge: $(( $MIN_REC + 1 )) == $FIRST_REC"
11120         [ $FIRST_REC == $(($MIN_REC + 1)) ] ||
11121                 err17935 "first index should be $(($MIN_REC + 1)) is $FIRST_REC"
11122
11123         # LU-3446 changelog index reset on MDT restart
11124         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
11125         CUR_REC1=$($GET_CL_USERS | head -n1 | cut -f3 -d' ')
11126         $LFS changelog_clear $MDT0 $CL_USER 0
11127         stop $SINGLEMDS || error "Fail to stop MDT."
11128         start $SINGLEMDS $MDT_DEV $MDS_MOUNT_OPTS || error "Fail to start MDT."
11129         CUR_REC2=$($GET_CL_USERS | head -n1 | cut -f3 -d' ')
11130         echo "verifying index survives MDT restart: $CUR_REC1 == $CUR_REC2"
11131         [ $CUR_REC1 == $CUR_REC2 ] ||
11132                 err17935 "current index should be $CUR_REC1 is $CUR_REC2"
11133
11134         echo "verifying user deregister"
11135         cleanup_changelog
11136         $GET_CL_USERS | grep -q $CL_USER &&
11137                 error "User $CL_USER still in changelog_users"
11138
11139         USERS=$(( $($GET_CL_USERS | wc -l) - 2 ))
11140         if [ $CL_USER -eq 0 ]; then
11141                 LAST_REC1=$($GET_CL_USERS | head -n1 | cut -f3 -d' ')
11142                 touch $DIR/$tdir/chloe
11143                 LAST_REC2=$($GET_CL_USERS | head -n1 | cut -f3 -d' ')
11144                 echo "verify changelogs are off: $LAST_REC1 == $LAST_REC2"
11145                 [ $LAST_REC1 == $LAST_REC2 ] || error "changelogs not off"
11146         else
11147                 echo "$CL_USER other changelog users; can't verify off"
11148         fi
11149 }
11150 run_test 160a "changelog sanity"
11151
11152 test_160b() { # LU-3587
11153         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11154         remote_mds_nodsh && skip "remote MDS with nodsh" && return
11155         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] ||
11156                 { skip "Need MDS version at least 2.2.0"; return; }
11157
11158         local CL_USERS="mdd.$MDT0.changelog_users"
11159         local GET_CL_USERS="do_facet $SINGLEMDS $LCTL get_param -n $CL_USERS"
11160         CL_USER=$(do_facet $SINGLEMDS $LCTL --device $MDT0 \
11161                 changelog_register -n)
11162         echo "Registered as changelog user $CL_USER"
11163         trap cleanup_changelog EXIT
11164         $GET_CL_USERS | grep -q $CL_USER ||
11165                 error "User $CL_USER not found in changelog_users"
11166
11167         local LONGNAME1=$(str_repeat a 255)
11168         local LONGNAME2=$(str_repeat b 255)
11169
11170         cd $DIR
11171         echo "creating very long named file"
11172         touch $LONGNAME1 || error "create of $LONGNAME1 failed"
11173         echo "moving very long named file"
11174         mv $LONGNAME1 $LONGNAME2
11175
11176         $LFS changelog $MDT0 | grep RENME
11177         rm -f $LONGNAME2
11178         cleanup_changelog
11179 }
11180 run_test 160b "Verify that very long rename doesn't crash in changelog"
11181
11182 test_160c() {
11183         remote_mds_nodsh && skip "remote MDS with nodsh" && return
11184
11185         local rc=0
11186         local server_version=$(lustre_version_code $SINGLEMDS)
11187
11188         [[ $server_version -gt $(version_code 2.5.57) ]] ||
11189                 [[ $server_version -gt $(version_code 2.5.1) &&
11190                    $server_version -lt $(version_code 2.5.50) ]] ||
11191                 { skip "Need MDS version at least 2.5.58 or 2.5.2+"; return; }
11192         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11193
11194         # Registration step
11195         CL_USER=$(do_facet $SINGLEMDS $LCTL --device $MDT0 \
11196                 changelog_register -n)
11197         trap cleanup_changelog EXIT
11198
11199         rm -rf $DIR/$tdir
11200         mkdir -p $DIR/$tdir
11201         $MCREATE $DIR/$tdir/foo_160c
11202         changelog_chmask "TRUNC"
11203         $TRUNCATE $DIR/$tdir/foo_160c 200
11204         changelog_chmask "TRUNC"
11205         $TRUNCATE $DIR/$tdir/foo_160c 199
11206         $LFS changelog $MDT0
11207         TRUNCS=$($LFS changelog $MDT0 | tail -5 | grep -c "TRUNC")
11208         [ $TRUNCS -eq 1 ] || err17935 "TRUNC changelog mask count $TRUNCS != 1"
11209         $LFS changelog_clear $MDT0 $CL_USER 0
11210
11211         # Deregistration step
11212         cleanup_changelog
11213 }
11214 run_test 160c "verify that changelog log catch the truncate event"
11215
11216 test_160d() {
11217         remote_mds_nodsh && skip "remote MDS with nodsh" && return
11218         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
11219
11220         local server_version=$(lustre_version_code mds1)
11221         local CL_MASK_PARAM="mdd.$MDT0.changelog_mask"
11222
11223         [[ $server_version -ge $(version_code 2.7.60) ]] ||
11224                 { skip "Need MDS version at least 2.7.60+"; return; }
11225         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11226
11227         # Registration step
11228         CL_USER=$(do_facet mds1 $LCTL --device $MDT0 \
11229                 changelog_register -n)
11230
11231         trap cleanup_changelog EXIT
11232         mkdir -p $DIR/$tdir/migrate_dir
11233         $LFS changelog_clear $MDT0 $CL_USER 0
11234
11235         $LFS migrate -m 1 $DIR/$tdir/migrate_dir || error "migrate fails"
11236         $LFS changelog $MDT0
11237         MIGRATES=$($LFS changelog $MDT0 | tail -5 | grep -c "MIGRT")
11238         $LFS changelog_clear $MDT0 $CL_USER 0
11239         [ $MIGRATES -eq 1 ] ||
11240                 error "MIGRATE changelog mask count $MIGRATES != 1"
11241
11242         # Deregistration step
11243         cleanup_changelog
11244 }
11245 run_test 160d "verify that changelog log catch the migrate event"
11246
11247 test_160e() {
11248         remote_mds_nodsh && skip "remote MDS with nodsh" && return
11249
11250         # Create a user
11251         CL_USER=$(do_facet $SINGLEMDS $LCTL --device $MDT0 \
11252                 changelog_register -n)
11253         echo "Registered as changelog user $CL_USER"
11254         trap cleanup_changelog EXIT
11255
11256         # Delete a future user (expect fail)
11257         do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister cl77
11258         local rc=$?
11259
11260         if [ $rc -eq 0 ]; then
11261                 error "Deleted non-existant user cl77"
11262         elif [ $rc -ne 2 ]; then
11263                 error "changelog_deregister failed with $rc, " \
11264                         "expected 2 (ENOENT)"
11265         fi
11266
11267         # Clear to a bad index (1 billion should be safe)
11268         $LFS changelog_clear $MDT0 $CL_USER 1000000000
11269         rc=$?
11270
11271         if [ $rc -eq 0 ]; then
11272                 error "Successfully cleared to invalid CL index"
11273         elif [ $rc -ne 22 ]; then
11274                 error "changelog_clear failed with $rc, expected 22 (EINVAL)"
11275         fi
11276 }
11277 run_test 160e "changelog negative testing"
11278
11279 cleanup_160f() {
11280         trap 0
11281         do_facet $SINGLEMDS $LCTL set_param fail_loc=0 fail_val=0
11282         echo "Deregistering changelog client $CL_USER"
11283         do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister $CL_USER
11284         echo "Deregistering changelog client $CL_USER2"
11285         do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister $CL_USER2
11286         restore_lustre_params < $save_params
11287         rm -f $save_params
11288 }
11289
11290 test_160f() {
11291         # do_facet $SINGLEMDS $LCTL set_param mdd.$MDT0.changelog_gc=1
11292         # should be set by default
11293
11294         local CL_USERS="mdd.$MDT0.changelog_users"
11295         local GET_CL_USERS="do_facet $SINGLEMDS $LCTL get_param -n $CL_USERS"
11296         local save_params="$TMP/sanity-$TESTNAME.parameters"
11297
11298         save_lustre_params $SINGLEMDS \
11299                 "mdd.$MDT0.changelog_max_idle_time" > $save_params
11300         save_lustre_params $SINGLEMDS \
11301                 "mdd.$MDT0.changelog_min_gc_interval" >> $save_params
11302         save_lustre_params $SINGLEMDS \
11303                 "mdd.$MDT0.changelog_min_free_cat_entries" >> $save_params
11304
11305         trap cleanup_160f EXIT
11306
11307         # Create a user
11308         CL_USER=$(do_facet $SINGLEMDS $LCTL --device $MDT0 \
11309                 changelog_register -n)
11310         echo "Registered as changelog user $CL_USER"
11311         CL_USER2=$(do_facet $SINGLEMDS $LCTL --device $MDT0 \
11312                 changelog_register -n)
11313         echo "Registered as changelog user $CL_USER2"
11314         $GET_CL_USERS | grep -q $CL_USER ||
11315                 error "User $CL_USER not found in changelog_users"
11316         $GET_CL_USERS | grep -q $CL_USER2 ||
11317                 error "User $CL_USER2 not found in changelog_users"
11318
11319         # generate some changelogs to accumulate
11320         mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
11321         touch $DIR/$tdir/$tfile || error "touch $DIR/$tdir/$tfile failed"
11322         touch $DIR/$tdir/${tfile}2 || error "touch $DIR/$tdir/${tfile}2 failed"
11323         rm -f $DIR/$tdir/$tfile || error "rm -f $tfile failed"
11324
11325         # check changelogs have been generated
11326         nbcl=$($LFS changelog $MDT0 | wc -l)
11327         [[ $nbcl -eq 0 ]] && error "no changelogs found"
11328
11329         do_facet $SINGLEMDS $LCTL set_param \
11330                 mdd.$MDT0.changelog_max_idle_time=10
11331         do_facet $SINGLEMDS $LCTL set_param \
11332                 mdd.$MDT0.changelog_min_gc_interval=2
11333         do_facet $SINGLEMDS $LCTL set_param \
11334                 mdd.$MDT0.changelog_min_free_cat_entries=3
11335
11336         # simulate changelog catalog almost full
11337 #define OBD_FAIL_CAT_FREE_RECORDS                  0x1313
11338         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x1313
11339         do_facet $SINGLEMDS $LCTL set_param fail_val=3
11340
11341         sleep 6
11342         USER_REC1=$($GET_CL_USERS | awk "\$1 == \"$CL_USER\" {print \$2}")
11343         $LFS changelog_clear $MDT0 $CL_USER $(($USER_REC1 + 2))
11344         USER_REC2=$($GET_CL_USERS | awk "\$1 == \"$CL_USER\" {print \$2}")
11345         echo "verifying user clear: $(( $USER_REC1 + 2 )) == $USER_REC2"
11346         [ $USER_REC2 == $(($USER_REC1 + 2)) ] ||
11347                 error "user index expected $(($USER_REC1 + 2)) is $USER_REC2"
11348         sleep 5
11349
11350         # generate one more changelog to trigger fail_loc
11351         rm -rf $DIR/$tdir || error "rm -rf $tdir failed"
11352
11353         # ensure gc thread is done
11354         wait_update_facet $SINGLEMDS \
11355                           "ps -e -o comm= | grep chlg_gc_thread" "" 20
11356
11357         # check user still registered
11358         $GET_CL_USERS | grep -q $CL_USER ||
11359                 error "User $CL_USER not found in changelog_users"
11360         # check user2 unregistered
11361         $GET_CL_USERS | grep -q $CL_USER2 &&
11362                 error "User $CL_USER2 still found in changelog_users"
11363
11364         # check changelogs are present and starting at $USER_REC2 + 1
11365         FIRST_REC=$($LFS changelog $MDT0 | head -n1 | awk '{print $1}')
11366         echo "verifying min purge: $(( $USER_REC2 + 1 )) == $FIRST_REC"
11367         [ $FIRST_REC == $(($USER_REC2 + 1)) ] ||
11368                 error "first index should be $(($USER_REC2 + 1)) is $FIRST_REC"
11369
11370         cleanup_160f
11371 }
11372 run_test 160f "changelog garbage collect (timestamped users)"
11373
11374 test_160g() {
11375         # do_facet $SINGLEMDS $LCTL set_param mdd.$MDT0.changelog_gc=1
11376         # should be set by default
11377
11378         local CL_USERS="mdd.$MDT0.changelog_users"
11379         local GET_CL_USERS="do_facet $SINGLEMDS $LCTL get_param -n $CL_USERS"
11380         local save_params="$TMP/sanity-$TESTNAME.parameters"
11381
11382         save_lustre_params $SINGLEMDS \
11383                 "mdd.$MDT0.changelog_max_idle_indexes" > $save_params
11384         save_lustre_params $SINGLEMDS \
11385                 "mdd.$MDT0.changelog_min_gc_interval" >> $save_params
11386         save_lustre_params $SINGLEMDS \
11387                 "mdd.$MDT0.changelog_min_free_cat_entries" >> $save_params
11388
11389         trap cleanup_160f EXIT
11390
11391 #define OBD_FAIL_TIME_IN_CHLOG_USER                 0x1314
11392         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x1314
11393
11394         # Create a user
11395         CL_USER=$(do_facet $SINGLEMDS $LCTL --device $MDT0 \
11396                 changelog_register -n)
11397         echo "Registered as changelog user $CL_USER"
11398         CL_USER2=$(do_facet $SINGLEMDS $LCTL --device $MDT0 \
11399                 changelog_register -n)
11400         echo "Registered as changelog user $CL_USER2"
11401         $GET_CL_USERS | grep -q $CL_USER ||
11402                 error "User $CL_USER not found in changelog_users"
11403         $GET_CL_USERS | grep -q $CL_USER2 ||
11404                 error "User $CL_USER2 not found in changelog_users"
11405
11406         # generate some changelogs to accumulate
11407         mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
11408         touch $DIR/$tdir/$tfile || error "touch $DIR/$tdir/$tfile failed"
11409         touch $DIR/$tdir/${tfile}2 || error "touch $DIR/$tdir/${tfile}2 failed"
11410         rm -f $DIR/$tdir/$tfile || error "rm -f $tfile failed"
11411
11412         # check changelogs have been generated
11413         nbcl=$($LFS changelog $MDT0 | wc -l)
11414         [[ $nbcl -eq 0 ]] && error "no changelogs found"
11415
11416         do_facet $SINGLEMDS $LCTL set_param \
11417                 mdd.$MDT0.changelog_max_idle_indexes=$((nbcl - 1))
11418         do_facet $SINGLEMDS $LCTL set_param \
11419                 mdd.$MDT0.changelog_min_gc_interval=2
11420         do_facet $SINGLEMDS $LCTL set_param \
11421                 mdd.$MDT0.changelog_min_free_cat_entries=3
11422
11423         # simulate changelog catalog almost full
11424 #define OBD_FAIL_CAT_FREE_RECORDS                  0x1313
11425         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x1313
11426         do_facet $SINGLEMDS $LCTL set_param fail_val=3
11427
11428         USER_REC1=$($GET_CL_USERS | awk "\$1 == \"$CL_USER\" {print \$2}")
11429         $LFS changelog_clear $MDT0 $CL_USER $(($USER_REC1 + 3))
11430         USER_REC2=$($GET_CL_USERS | awk "\$1 == \"$CL_USER\" {print \$2}")
11431         echo "verifying user clear: $(( $USER_REC1 + 3 )) == $USER_REC2"
11432         [ $USER_REC2 == $(($USER_REC1 + 3)) ] ||
11433                 error "user index expected $(($USER_REC1 + 3)) is $USER_REC2"
11434
11435         # generate one more changelog to trigger fail_loc
11436         rm -rf $DIR/$tdir || error "rm -rf $tdir failed"
11437
11438         # ensure gc thread is done
11439         wait_update_facet $SINGLEMDS \
11440                           "ps -e -o comm= | grep chlg_gc_thread" "" 20
11441
11442         # check user still registered
11443         $GET_CL_USERS | grep -q $CL_USER ||
11444                 error "User $CL_USER not found in changelog_users"
11445         # check user2 unregistered
11446         $GET_CL_USERS | grep -q $CL_USER2 &&
11447                 error "User $CL_USER2 still found in changelog_users"
11448
11449         # check changelogs are present and starting at $USER_REC2 + 1
11450         FIRST_REC=$($LFS changelog $MDT0 | head -n1 | awk '{print $1}')
11451         echo "verifying min purge: $(( $USER_REC2 + 1 )) == $FIRST_REC"
11452         [ $FIRST_REC == $(($USER_REC2 + 1)) ] ||
11453                 error "first index should be $(($USER_REC2 + 1)) is $FIRST_REC"
11454
11455         cleanup_160f
11456 }
11457 run_test 160g "changelog garbage collect (old users)"
11458
11459 test_161a() {
11460         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11461         test_mkdir -p -c1 $DIR/$tdir
11462         cp /etc/hosts $DIR/$tdir/$tfile
11463         test_mkdir -c1 $DIR/$tdir/foo1
11464         test_mkdir -c1 $DIR/$tdir/foo2
11465         ln $DIR/$tdir/$tfile $DIR/$tdir/foo1/sofia
11466         ln $DIR/$tdir/$tfile $DIR/$tdir/foo2/zachary
11467         ln $DIR/$tdir/$tfile $DIR/$tdir/foo1/luna
11468         ln $DIR/$tdir/$tfile $DIR/$tdir/foo2/thor
11469         local FID=$($LFS path2fid $DIR/$tdir/$tfile | tr -d '[]')
11470         if [ "$($LFS fid2path $DIR $FID | wc -l)" != "5" ]; then
11471                 $LFS fid2path $DIR $FID
11472                 err17935 "bad link ea"
11473         fi
11474     # middle
11475     rm $DIR/$tdir/foo2/zachary
11476     # last
11477     rm $DIR/$tdir/foo2/thor
11478     # first
11479     rm $DIR/$tdir/$tfile
11480     # rename
11481     mv $DIR/$tdir/foo1/sofia $DIR/$tdir/foo2/maggie
11482     if [ "$($LFS fid2path $FSNAME --link 1 $FID)" != "$tdir/foo2/maggie" ]
11483         then
11484         $LFS fid2path $DIR $FID
11485         err17935 "bad link rename"
11486     fi
11487     rm $DIR/$tdir/foo2/maggie
11488
11489         # overflow the EA
11490         local longname=filename_avg_len_is_thirty_two_
11491         createmany -l$DIR/$tdir/foo1/luna $DIR/$tdir/foo2/$longname 1000 ||
11492                 error "failed to hardlink many files"
11493         links=$($LFS fid2path $DIR $FID | wc -l)
11494         echo -n "${links}/1000 links in link EA"
11495         [[ $links -gt 60 ]] ||
11496                 err17935 "expected at least 60 links in link EA"
11497         unlinkmany $DIR/$tdir/foo2/$longname 1000 ||
11498                 error "failed to unlink many hardlinks"
11499 }
11500 run_test 161a "link ea sanity"
11501
11502 test_161b() {
11503         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11504         [ $MDSCOUNT -lt 2 ] && skip "skipping remote directory test" && return
11505         local MDTIDX=1
11506         local remote_dir=$DIR/$tdir/remote_dir
11507
11508         mkdir -p $DIR/$tdir
11509         $LFS mkdir -i $MDTIDX $remote_dir ||
11510                 error "create remote directory failed"
11511
11512         cp /etc/hosts $remote_dir/$tfile
11513         mkdir -p $remote_dir/foo1
11514         mkdir -p $remote_dir/foo2
11515         ln $remote_dir/$tfile $remote_dir/foo1/sofia
11516         ln $remote_dir/$tfile $remote_dir/foo2/zachary
11517         ln $remote_dir/$tfile $remote_dir/foo1/luna
11518         ln $remote_dir/$tfile $remote_dir/foo2/thor
11519
11520         local FID=$($LFS path2fid $remote_dir/$tfile | tr -d '[' |
11521                      tr -d ']')
11522         if [ "$($LFS fid2path $DIR $FID | wc -l)" != "5" ]; then
11523                 $LFS fid2path $DIR $FID
11524                 err17935 "bad link ea"
11525         fi
11526         # middle
11527         rm $remote_dir/foo2/zachary
11528         # last
11529         rm $remote_dir/foo2/thor
11530         # first
11531         rm $remote_dir/$tfile
11532         # rename
11533         mv $remote_dir/foo1/sofia $remote_dir/foo2/maggie
11534         local link_path=$($LFS fid2path $FSNAME --link 1 $FID)
11535         if [ "$DIR/$link_path" != "$remote_dir/foo2/maggie" ]; then
11536                 $LFS fid2path $DIR $FID
11537                 err17935 "bad link rename"
11538         fi
11539         rm $remote_dir/foo2/maggie
11540
11541         # overflow the EA
11542         local longname=filename_avg_len_is_thirty_two_
11543         createmany -l$remote_dir/foo1/luna $remote_dir/foo2/$longname 1000 ||
11544                 error "failed to hardlink many files"
11545         links=$($LFS fid2path $DIR $FID | wc -l)
11546         echo -n "${links}/1000 links in link EA"
11547         [[ ${links} -gt 60 ]] ||
11548                 err17935 "expected at least 60 links in link EA"
11549         unlinkmany $remote_dir/foo2/$longname 1000 ||
11550         error "failed to unlink many hardlinks"
11551 }
11552 run_test 161b "link ea sanity under remote directory"
11553
11554 test_161c() {
11555         remote_mds_nodsh && skip "remote MDS with nodsh" && return
11556         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11557         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.1.5) ]] &&
11558                 skip "Need MDS version at least 2.1.5" && return
11559
11560         # define CLF_RENAME_LAST 0x0001
11561         # rename overwrite a target having nlink = 1 (changelog flag 0x1)
11562         CL_USER=$(do_facet $SINGLEMDS $LCTL --device $MDT0 \
11563                 changelog_register -n)
11564
11565         trap cleanup_changelog EXIT
11566         rm -rf $DIR/$tdir
11567         mkdir -p $DIR/$tdir
11568         touch $DIR/$tdir/foo_161c
11569         touch $DIR/$tdir/bar_161c
11570         mv -f $DIR/$tdir/foo_161c $DIR/$tdir/bar_161c
11571         $LFS changelog $MDT0 | grep RENME
11572         local flags=$($LFS changelog $MDT0 | grep RENME | tail -1 | \
11573                 cut -f5 -d' ')
11574         $LFS changelog_clear $MDT0 $CL_USER 0
11575         if [ x$flags != "x0x1" ]; then
11576                 error "flag $flags is not 0x1"
11577         fi
11578         echo "rename overwrite a target having nlink = 1," \
11579                 "changelog record has flags of $flags"
11580
11581         # rename overwrite a target having nlink > 1 (changelog flag 0x0)
11582         touch $DIR/$tdir/foo_161c
11583         touch $DIR/$tdir/bar_161c
11584         ln $DIR/$tdir/bar_161c $DIR/$tdir/foobar_161c
11585         mv -f $DIR/$tdir/foo_161c $DIR/$tdir/bar_161c
11586         $LFS changelog $MDT0 | grep RENME
11587         flags=$($LFS changelog $MDT0 | grep RENME | tail -1 | cut -f5 -d' ')
11588         $LFS changelog_clear $MDT0 $CL_USER 0
11589         if [ x$flags != "x0x0" ]; then
11590                 error "flag $flags is not 0x0"
11591         fi
11592         echo "rename overwrite a target having nlink > 1," \
11593                 "changelog record has flags of $flags"
11594
11595         # rename doesn't overwrite a target (changelog flag 0x0)
11596         touch $DIR/$tdir/foo_161c
11597         mv -f $DIR/$tdir/foo_161c $DIR/$tdir/foo2_161c
11598         $LFS changelog $MDT0 | grep RENME
11599         flags=$($LFS changelog $MDT0 | grep RENME | tail -1 | cut -f5 -d' ')
11600         $LFS changelog_clear $MDT0 $CL_USER 0
11601         if [ x$flags != "x0x0" ]; then
11602                 error "flag $flags is not 0x0"
11603         fi
11604         echo "rename doesn't overwrite a target," \
11605                 "changelog record has flags of $flags"
11606
11607         # define CLF_UNLINK_LAST 0x0001
11608         # unlink a file having nlink = 1 (changelog flag 0x1)
11609         rm -f $DIR/$tdir/foo2_161c
11610         $LFS changelog $MDT0 | grep UNLNK
11611         flags=$($LFS changelog $MDT0 | grep UNLNK | tail -1 | cut -f5 -d' ')
11612         $LFS changelog_clear $MDT0 $CL_USER 0
11613         if [ x$flags != "x0x1" ]; then
11614                 error "flag $flags is not 0x1"
11615         fi
11616         echo "unlink a file having nlink = 1," \
11617                 "changelog record has flags of $flags"
11618
11619         # unlink a file having nlink > 1 (changelog flag 0x0)
11620         ln -f $DIR/$tdir/bar_161c $DIR/$tdir/foobar_161c
11621         rm -f $DIR/$tdir/foobar_161c
11622         $LFS changelog $MDT0 | grep UNLNK
11623         flags=$($LFS changelog $MDT0 | grep UNLNK | tail -1 | cut -f5 -d' ')
11624         $LFS changelog_clear $MDT0 $CL_USER 0
11625         if [ x$flags != "x0x0" ]; then
11626                 error "flag $flags is not 0x0"
11627         fi
11628         echo "unlink a file having nlink > 1," \
11629                 "changelog record has flags of $flags"
11630         cleanup_changelog
11631 }
11632 run_test 161c "check CL_RENME[UNLINK] changelog record flags"
11633
11634 test_161d() {
11635         local user
11636         local pid
11637         local fid
11638
11639         # cleanup previous run
11640         rm -rf $DIR/$tdir/$tfile
11641
11642         user=$(do_facet $SINGLEMDS $LCTL --device $MDT0 \
11643                 changelog_register -n)
11644         [[ $? -eq 0 ]] || error "changelog_register failed"
11645
11646         # work in a standalone dir to avoid locking on $DIR/$MOUNT to
11647         # interfer with $MOUNT/.lustre/fid/ access
11648         mkdir $DIR/$tdir
11649         [[ $? -eq 0 ]] || error "mkdir failed"
11650
11651         #define OBD_FAIL_LLITE_CREATE_NODE_PAUSE 0x140c | OBD_FAIL_ONCE
11652         $LCTL set_param fail_loc=0x8000140c
11653         # 5s pause
11654         $LCTL set_param fail_val=5
11655
11656         # create file
11657         echo foofoo > $DIR/$tdir/$tfile &
11658         pid=$!
11659
11660         # wait for create to be delayed
11661         sleep 2
11662
11663         ps -p $pid
11664         [[ $? -eq 0 ]] || error "create should be blocked"
11665
11666         local tempfile=$(mktemp)
11667         fid=$(changelog_extract_field $MDT0 "CREAT" "$tfile" "t=")
11668         cat $MOUNT/.lustre/fid/$fid 2>/dev/null >$tempfile || error "cat failed"
11669         # some delay may occur during ChangeLog publishing and file read just
11670         # above, that could allow file write to happen finally
11671         [[ -s $tempfile ]] && echo "file should be empty"
11672
11673         $LCTL set_param fail_loc=0
11674
11675         wait $pid
11676         [[ $? -eq 0 ]] || error "create failed"
11677
11678         $LFS changelog_clear $MDT0 $user 0
11679         do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister $user
11680 }
11681 run_test 161d "create with concurrent .lustre/fid access"
11682
11683 check_path() {
11684     local expected=$1
11685     shift
11686     local fid=$2
11687
11688     local path=$(${LFS} fid2path $*)
11689     # Remove the '//' indicating a remote directory
11690     path=$(echo $path | sed 's#//#/#g')
11691     RC=$?
11692
11693     if [ $RC -ne 0 ]; then
11694         err17935 "path looked up of $expected failed. Error $RC"
11695         return $RC
11696     elif [ "${path}" != "${expected}" ]; then
11697         err17935 "path looked up \"${path}\" instead of \"${expected}\""
11698         return 2
11699     fi
11700     echo "fid $fid resolves to path $path (expected $expected)"
11701 }
11702
11703 test_162a() { # was test_162
11704         # Make changes to filesystem
11705         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11706         test_mkdir -p -c1 $DIR/$tdir/d2
11707         touch $DIR/$tdir/d2/$tfile
11708         touch $DIR/$tdir/d2/x1
11709         touch $DIR/$tdir/d2/x2
11710         test_mkdir -p -c1 $DIR/$tdir/d2/a/b/c
11711         test_mkdir -p -c1 $DIR/$tdir/d2/p/q/r
11712         # regular file
11713         FID=$($LFS path2fid $DIR/$tdir/d2/$tfile | tr -d '[]')
11714         check_path "$tdir/d2/$tfile" $FSNAME $FID --link 0 ||
11715                 error "check path $tdir/d2/$tfile failed"
11716
11717         # softlink
11718         ln -s $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/p/q/r/slink
11719         FID=$($LFS path2fid $DIR/$tdir/d2/p/q/r/slink | tr -d '[]')
11720         check_path "$tdir/d2/p/q/r/slink" $FSNAME $FID --link 0 ||
11721                 error "check path $tdir/d2/p/q/r/slink failed"
11722
11723         # softlink to wrong file
11724         ln -s /this/is/garbage $DIR/$tdir/d2/p/q/r/slink.wrong
11725         FID=$($LFS path2fid $DIR/$tdir/d2/p/q/r/slink.wrong | tr -d '[]')
11726         check_path "$tdir/d2/p/q/r/slink.wrong" $FSNAME $FID --link 0 ||
11727                 error "check path $tdir/d2/p/q/r/slink.wrong failed"
11728
11729         # hardlink
11730         ln $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/p/q/r/hlink
11731         mv $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/a/b/c/new_file
11732         FID=$($LFS path2fid $DIR/$tdir/d2/a/b/c/new_file | tr -d '[]')
11733         # fid2path dir/fsname should both work
11734         check_path "$tdir/d2/a/b/c/new_file" $FSNAME $FID --link 1 ||
11735                 error "check path $tdir/d2/a/b/c/new_file failed"
11736         check_path "$DIR/$tdir/d2/p/q/r/hlink" $DIR $FID --link 0 ||
11737                 error "check path $DIR/$tdir/d2/p/q/r/hlink failed"
11738
11739         # hardlink count: check that there are 2 links
11740         # Doesnt work with CMD yet: 17935
11741         ${LFS} fid2path $DIR $FID | wc -l | grep -q 2 || \
11742                 err17935 "expected 2 links"
11743
11744         # hardlink indexing: remove the first link
11745         rm $DIR/$tdir/d2/p/q/r/hlink
11746         check_path "$tdir/d2/a/b/c/new_file" $FSNAME $FID --link 0 ||
11747                 error "check path $DIR/$tdir/d2/a/b/c/new_file failed"
11748
11749         return 0
11750 }
11751 run_test 162a "path lookup sanity"
11752
11753 test_162b() {
11754         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11755         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
11756
11757         mkdir $DIR/$tdir
11758         $LFS setdirstripe -i0 -c$MDSCOUNT -t all_char $DIR/$tdir/striped_dir ||
11759                                 error "create striped dir failed"
11760
11761         local FID=$($LFS getdirstripe $DIR/$tdir/striped_dir |
11762                                         tail -n 1 | awk '{print $2}')
11763         stat $MOUNT/.lustre/fid/$FID && error "sub_stripe can be accessed"
11764
11765         touch $DIR/$tdir/striped_dir/f{0..4} || error "touch f0..4 failed"
11766         mkdir $DIR/$tdir/striped_dir/d{0..4} || error "mkdir d0..4 failed"
11767
11768         # regular file
11769         for ((i=0;i<5;i++)); do
11770                 FID=$($LFS path2fid $DIR/$tdir/striped_dir/f$i | tr -d '[]') ||
11771                         error "get fid for f$i failed"
11772                 check_path "$tdir/striped_dir/f$i" $FSNAME $FID --link 0 ||
11773                         error "check path $tdir/striped_dir/f$i failed"
11774
11775                 FID=$($LFS path2fid $DIR/$tdir/striped_dir/d$i | tr -d '[]') ||
11776                         error "get fid for d$i failed"
11777                 check_path "$tdir/striped_dir/d$i" $FSNAME $FID --link 0 ||
11778                         error "check path $tdir/striped_dir/d$i failed"
11779         done
11780
11781         return 0
11782 }
11783 run_test 162b "striped directory path lookup sanity"
11784
11785 # LU-4239: Verify fid2path works with paths 100 or more directories deep
11786 test_162c() {
11787         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.51) ]] &&
11788                 skip "Need MDS version at least 2.7.51" && return
11789         test_mkdir $DIR/$tdir.local
11790         test_mkdir $DIR/$tdir.remote
11791         local lpath=$tdir.local
11792         local rpath=$tdir.remote
11793
11794         for ((i = 0; i <= 101; i++)); do
11795                 lpath="$lpath/$i"
11796                 mkdir $DIR/$lpath
11797                 FID=$($LFS path2fid $DIR/$lpath | tr -d '[]') ||
11798                         error "get fid for local directory $DIR/$lpath failed"
11799                 check_path "$DIR/$lpath" $MOUNT $FID --link 0 ||
11800                         error "check path for local directory $DIR/$lpath failed"
11801
11802                 rpath="$rpath/$i"
11803                 test_mkdir $DIR/$rpath
11804                 FID=$($LFS path2fid $DIR/$rpath | tr -d '[]') ||
11805                         error "get fid for remote directory $DIR/$rpath failed"
11806                 check_path "$DIR/$rpath" $MOUNT $FID --link 0 ||
11807                         error "check path for remote directory $DIR/$rpath failed"
11808         done
11809
11810         return 0
11811 }
11812 run_test 162c "fid2path works with paths 100 or more directories deep"
11813
11814 test_169() {
11815         # do directio so as not to populate the page cache
11816         log "creating a 10 Mb file"
11817         $MULTIOP $DIR/$tfile oO_CREAT:O_DIRECT:O_RDWR:w$((10*1048576))c || error "multiop failed while creating a file"
11818         log "starting reads"
11819         dd if=$DIR/$tfile of=/dev/null bs=4096 &
11820         log "truncating the file"
11821         $MULTIOP $DIR/$tfile oO_TRUNC:c || error "multiop failed while truncating the file"
11822         log "killing dd"
11823         kill %+ || true # reads might have finished
11824         echo "wait until dd is finished"
11825         wait
11826         log "removing the temporary file"
11827         rm -rf $DIR/$tfile || error "tmp file removal failed"
11828 }
11829 run_test 169 "parallel read and truncate should not deadlock"
11830
11831 test_170() {
11832         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11833         $LCTL clear     # bug 18514
11834         $LCTL debug_daemon start $TMP/${tfile}_log_good
11835         touch $DIR/$tfile
11836         $LCTL debug_daemon stop
11837         sed -e "s/^...../a/g" $TMP/${tfile}_log_good > $TMP/${tfile}_log_bad ||
11838                error "sed failed to read log_good"
11839
11840         $LCTL debug_daemon start $TMP/${tfile}_log_good
11841         rm -rf $DIR/$tfile
11842         $LCTL debug_daemon stop
11843
11844         $LCTL df $TMP/${tfile}_log_bad > $TMP/${tfile}_log_bad.out 2>&1 ||
11845                error "lctl df log_bad failed"
11846
11847         local bad_line=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $9}')
11848         local good_line1=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $5}')
11849
11850         $LCTL df $TMP/${tfile}_log_good > $TMP/${tfile}_log_good.out 2>&1
11851         local good_line2=$(tail -n 1 $TMP/${tfile}_log_good.out | awk '{print $5}')
11852
11853         [ "$bad_line" ] && [ "$good_line1" ] && [ "$good_line2" ] ||
11854                 error "bad_line good_line1 good_line2 are empty"
11855
11856         cat $TMP/${tfile}_log_good >> $TMP/${tfile}_logs_corrupt
11857         cat $TMP/${tfile}_log_bad >> $TMP/${tfile}_logs_corrupt
11858         cat $TMP/${tfile}_log_good >> $TMP/${tfile}_logs_corrupt
11859
11860         $LCTL df $TMP/${tfile}_logs_corrupt > $TMP/${tfile}_log_bad.out 2>&1
11861         local bad_line_new=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $9}')
11862         local good_line_new=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $5}')
11863
11864         [ "$bad_line_new" ] && [ "$good_line_new" ] ||
11865                 error "bad_line_new good_line_new are empty"
11866
11867         local expected_good=$((good_line1 + good_line2*2))
11868
11869         rm -f $TMP/${tfile}*
11870         # LU-231, short malformed line may not be counted into bad lines
11871         if [ $bad_line -ne $bad_line_new ] &&
11872                    [ $bad_line -ne $((bad_line_new - 1)) ]; then
11873                 error "expected $bad_line bad lines, but got $bad_line_new"
11874                 return 1
11875         fi
11876
11877         if [ $expected_good -ne $good_line_new ]; then
11878                 error "expected $expected_good good lines, but got $good_line_new"
11879                 return 2
11880         fi
11881         true
11882 }
11883 run_test 170 "test lctl df to handle corrupted log ====================="
11884
11885 test_171() { # bug20592
11886         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11887 #define OBD_FAIL_PTLRPC_DUMP_LOG         0x50e
11888         $LCTL set_param fail_loc=0x50e
11889         $LCTL set_param fail_val=3000
11890         multiop_bg_pause $DIR/$tfile O_s || true
11891         local MULTIPID=$!
11892         kill -USR1 $MULTIPID
11893         # cause log dump
11894         sleep 3
11895         wait $MULTIPID
11896         if dmesg | grep "recursive fault"; then
11897                 error "caught a recursive fault"
11898         fi
11899         $LCTL set_param fail_loc=0
11900         true
11901 }
11902 run_test 171 "test libcfs_debug_dumplog_thread stuck in do_exit() ======"
11903
11904 # it would be good to share it with obdfilter-survey/iokit-libecho code
11905 setup_obdecho_osc () {
11906         local rc=0
11907         local ost_nid=$1
11908         local obdfilter_name=$2
11909         echo "Creating new osc for $obdfilter_name on $ost_nid"
11910         # make sure we can find loopback nid
11911         $LCTL add_uuid $ost_nid $ost_nid >/dev/null 2>&1
11912
11913         [ $rc -eq 0 ] && { $LCTL attach osc ${obdfilter_name}_osc     \
11914                            ${obdfilter_name}_osc_UUID || rc=2; }
11915         [ $rc -eq 0 ] && { $LCTL --device ${obdfilter_name}_osc setup \
11916                            ${obdfilter_name}_UUID  $ost_nid || rc=3; }
11917         return $rc
11918 }
11919
11920 cleanup_obdecho_osc () {
11921         local obdfilter_name=$1
11922         $LCTL --device ${obdfilter_name}_osc cleanup >/dev/null
11923         $LCTL --device ${obdfilter_name}_osc detach  >/dev/null
11924         return 0
11925 }
11926
11927 obdecho_test() {
11928         local OBD=$1
11929         local node=$2
11930         local pages=${3:-64}
11931         local rc=0
11932         local id
11933
11934         local count=10
11935         local obd_size=$(get_obd_size $node $OBD)
11936         local page_size=$(get_page_size $node)
11937         if [[ -n "$obd_size" ]]; then
11938                 local new_count=$((obd_size / (pages * page_size / 1024)))
11939                 [[ $new_count -ge $count ]] || count=$new_count
11940         fi
11941
11942         do_facet $node "$LCTL attach echo_client ec ec_uuid" || rc=1
11943         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec setup $OBD" ||
11944                            rc=2; }
11945         if [ $rc -eq 0 ]; then
11946             id=$(do_facet $node "$LCTL --device ec create 1"  | awk '/object id/ {print $6}')
11947             [ ${PIPESTATUS[0]} -eq 0 -a -n "$id" ] || rc=3
11948         fi
11949         echo "New object id is $id"
11950         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec getattr $id" ||
11951                            rc=4; }
11952         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec "                 \
11953                            "test_brw $count w v $pages $id" || rc=4; }
11954         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec destroy $id 1" ||
11955                            rc=4; }
11956         [ $rc -eq 0 -o $rc -gt 2 ] && { do_facet $node "$LCTL --device ec "    \
11957                                         "cleanup" || rc=5; }
11958         [ $rc -eq 0 -o $rc -gt 1 ] && { do_facet $node "$LCTL --device ec "    \
11959                                         "detach" || rc=6; }
11960         [ $rc -ne 0 ] && echo "obecho_create_test failed: $rc"
11961         return $rc
11962 }
11963
11964 test_180a() {
11965         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11966         remote_ost_nodsh && skip "remote OST with nodsh" && return
11967         local rc=0
11968         local rmmod_local=0
11969
11970         if ! module_loaded obdecho; then
11971             load_module obdecho/obdecho
11972             rmmod_local=1
11973         fi
11974
11975         local osc=$($LCTL dl | grep -v mdt | awk '$3 == "osc" {print $4; exit}')
11976         local host=$(lctl get_param -n osc.$osc.import |
11977                              awk '/current_connection:/ {print $2}' )
11978         local target=$(lctl get_param -n osc.$osc.import |
11979                              awk '/target:/ {print $2}' )
11980         target=${target%_UUID}
11981
11982         [[ -n $target ]]  && { setup_obdecho_osc $host $target || rc=1; } || rc=1
11983         [ $rc -eq 0 ] && { obdecho_test ${target}_osc client || rc=2; }
11984         [[ -n $target ]] && cleanup_obdecho_osc $target
11985         [ $rmmod_local -eq 1 ] && rmmod obdecho
11986         return $rc
11987 }
11988 run_test 180a "test obdecho on osc"
11989
11990 test_180b() {
11991         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11992         remote_ost_nodsh && skip "remote OST with nodsh" && return
11993         local rc=0
11994         local rmmod_remote=0
11995
11996         do_rpc_nodes $(facet_active_host ost1) load_module obdecho/obdecho &&
11997                 rmmod_remote=true || error "failed to load module obdecho"
11998         target=$(do_facet ost1 $LCTL dl | awk '/obdfilter/ {print $4;exit}')
11999         [[ -n $target ]] && { obdecho_test $target ost1 || rc=1; }
12000         $rmmod_remote && do_facet ost1 "rmmod obdecho"
12001         return $rc
12002 }
12003 run_test 180b "test obdecho directly on obdfilter"
12004
12005 test_180c() { # LU-2598
12006         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12007         remote_ost_nodsh && skip "remote OST with nodsh" && return
12008         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.0) ]] &&
12009                 skip "Need MDS version at least 2.4.0" && return
12010
12011         local rc=0
12012         local rmmod_remote=false
12013         local pages=16384 # 64MB bulk I/O RPC size
12014         local target
12015
12016         do_rpc_nodes $(facet_active_host ost1) load_module obdecho/obdecho &&
12017                 rmmod_remote=true || error "failed to load module obdecho"
12018
12019         target=$(do_facet ost1 $LCTL dl | awk '/obdfilter/ { print $4 }' |
12020                 head -n1)
12021         if [ -n "$target" ]; then
12022                 obdecho_test "$target" ost1 "$pages" || rc=${PIPESTATUS[0]}
12023         else
12024                 echo "there is no obdfilter target on ost1"
12025                 rc=2
12026         fi
12027         $rmmod_remote && do_facet ost1 "rmmod obdecho" || true
12028         return $rc
12029 }
12030 run_test 180c "test huge bulk I/O size on obdfilter, don't LASSERT"
12031
12032 test_181() { # bug 22177
12033         test_mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
12034         # create enough files to index the directory
12035         createmany -o $DIR/$tdir/foobar 4000
12036         # print attributes for debug purpose
12037         lsattr -d .
12038         # open dir
12039         multiop_bg_pause $DIR/$tdir D_Sc || return 1
12040         MULTIPID=$!
12041         # remove the files & current working dir
12042         unlinkmany $DIR/$tdir/foobar 4000
12043         rmdir $DIR/$tdir
12044         kill -USR1 $MULTIPID
12045         wait $MULTIPID
12046         stat $DIR/$tdir && error "open-unlinked dir was not removed!"
12047         return 0
12048 }
12049 run_test 181 "Test open-unlinked dir ========================"
12050
12051 test_182() {
12052         local fcount=1000
12053         local tcount=10
12054
12055         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
12056
12057         $LCTL set_param mdc.*.rpc_stats=clear
12058
12059         for (( i = 0; i < $tcount; i++ )) ; do
12060                 mkdir $DIR/$tdir/$i
12061         done
12062
12063         for (( i = 0; i < $tcount; i++ )) ; do
12064                 createmany -o $DIR/$tdir/$i/f- $fcount &
12065         done
12066         wait
12067
12068         for (( i = 0; i < $tcount; i++ )) ; do
12069                 unlinkmany $DIR/$tdir/$i/f- $fcount &
12070         done
12071         wait
12072
12073         $LCTL get_param mdc.*.rpc_stats
12074
12075         rm -rf $DIR/$tdir
12076 }
12077 run_test 182 "Test parallel modify metadata operations ================"
12078
12079 test_183() { # LU-2275
12080         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12081         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.56) ]] &&
12082                 skip "Need MDS version at least 2.3.56" && return
12083
12084         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12085         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
12086         echo aaa > $DIR/$tdir/$tfile
12087
12088 #define OBD_FAIL_MDS_NEGATIVE_POSITIVE  0x148
12089         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x148
12090
12091         ls -l $DIR/$tdir && error "ls succeeded, should have failed"
12092         cat $DIR/$tdir/$tfile && error "cat succeeded, should have failed"
12093
12094         do_facet $SINGLEMDS $LCTL set_param fail_loc=0
12095
12096         # Flush negative dentry cache
12097         touch $DIR/$tdir/$tfile
12098
12099         # We are not checking for any leaked references here, they'll
12100         # become evident next time we do cleanup with module unload.
12101         rm -rf $DIR/$tdir
12102 }
12103 run_test 183 "No crash or request leak in case of strange dispositions ========"
12104
12105 # test suite 184 is for LU-2016, LU-2017
12106 test_184a() {
12107         check_swap_layouts_support && return 0
12108
12109         dir0=$DIR/$tdir/$testnum
12110         test_mkdir -p -c1 $dir0 || error "creating dir $dir0"
12111         ref1=/etc/passwd
12112         ref2=/etc/group
12113         file1=$dir0/f1
12114         file2=$dir0/f2
12115         $SETSTRIPE -c1 $file1
12116         cp $ref1 $file1
12117         $SETSTRIPE -c2 $file2
12118         cp $ref2 $file2
12119         gen1=$($GETSTRIPE -g $file1)
12120         gen2=$($GETSTRIPE -g $file2)
12121
12122         $LFS swap_layouts $file1 $file2 || error "swap of file layout failed"
12123         gen=$($GETSTRIPE -g $file1)
12124         [[ $gen1 != $gen ]] ||
12125                 "Layout generation on $file1 does not change"
12126         gen=$($GETSTRIPE -g $file2)
12127         [[ $gen2 != $gen ]] ||
12128                 "Layout generation on $file2 does not change"
12129
12130         cmp $ref1 $file2 || error "content compare failed ($ref1 != $file2)"
12131         cmp $ref2 $file1 || error "content compare failed ($ref2 != $file1)"
12132 }
12133 run_test 184a "Basic layout swap"
12134
12135 test_184b() {
12136         check_swap_layouts_support && return 0
12137
12138         dir0=$DIR/$tdir/$testnum
12139         mkdir -p $dir0 || error "creating dir $dir0"
12140         file1=$dir0/f1
12141         file2=$dir0/f2
12142         file3=$dir0/f3
12143         dir1=$dir0/d1
12144         dir2=$dir0/d2
12145         mkdir $dir1 $dir2
12146         $SETSTRIPE -c1 $file1
12147         $SETSTRIPE -c2 $file2
12148         $SETSTRIPE -c1 $file3
12149         chown $RUNAS_ID $file3
12150         gen1=$($GETSTRIPE -g $file1)
12151         gen2=$($GETSTRIPE -g $file2)
12152
12153         $LFS swap_layouts $dir1 $dir2 &&
12154                 error "swap of directories layouts should fail"
12155         $LFS swap_layouts $dir1 $file1 &&
12156                 error "swap of directory and file layouts should fail"
12157         $RUNAS $LFS swap_layouts $file1 $file2 &&
12158                 error "swap of file we cannot write should fail"
12159         $LFS swap_layouts $file1 $file3 &&
12160                 error "swap of file with different owner should fail"
12161         /bin/true # to clear error code
12162 }
12163 run_test 184b "Forbidden layout swap (will generate errors)"
12164
12165 test_184c() {
12166         local cmpn_arg=$(cmp -n 2>&1 | grep "invalid option")
12167         [ -n "$cmpn_arg" ] && skip_env "cmp does not support -n" && return
12168         check_swap_layouts_support && return 0
12169
12170         local dir0=$DIR/$tdir/$testnum
12171         mkdir -p $dir0 || error "creating dir $dir0"
12172
12173         local ref1=$dir0/ref1
12174         local ref2=$dir0/ref2
12175         local file1=$dir0/file1
12176         local file2=$dir0/file2
12177         # create a file large enough for the concurrent test
12178         dd if=/dev/urandom of=$ref1 bs=1M count=$((RANDOM % 50 + 20))
12179         dd if=/dev/urandom of=$ref2 bs=1M count=$((RANDOM % 50 + 20))
12180         echo "ref file size: ref1($(stat -c %s $ref1))," \
12181              "ref2($(stat -c %s $ref2))"
12182
12183         cp $ref2 $file2
12184         dd if=$ref1 of=$file1 bs=16k &
12185         local DD_PID=$!
12186
12187         # Make sure dd starts to copy file
12188         while [ ! -f $file1 ]; do sleep 0.1; done
12189
12190         $LFS swap_layouts $file1 $file2
12191         local rc=$?
12192         wait $DD_PID
12193         [[ $? == 0 ]] || error "concurrent write on $file1 failed"
12194         [[ $rc == 0 ]] || error "swap of $file1 and $file2 failed"
12195
12196         # how many bytes copied before swapping layout
12197         local copied=$(stat -c %s $file2)
12198         local remaining=$(stat -c %s $ref1)
12199         remaining=$((remaining - copied))
12200         echo "Copied $copied bytes before swapping layout..."
12201
12202         cmp -n $copied $file1 $ref2 | grep differ &&
12203                 error "Content mismatch [0, $copied) of ref2 and file1"
12204         cmp -n $copied $file2 $ref1 ||
12205                 error "Content mismatch [0, $copied) of ref1 and file2"
12206         cmp -i $copied:$copied -n $remaining $file1 $ref1 ||
12207                 error "Content mismatch [$copied, EOF) of ref1 and file1"
12208
12209         # clean up
12210         rm -f $ref1 $ref2 $file1 $file2
12211 }
12212 run_test 184c "Concurrent write and layout swap"
12213
12214 test_184d() {
12215         check_swap_layouts_support && return 0
12216         [ -z "$(which getfattr 2>/dev/null)" ] &&
12217                 skip "no getfattr command" && return 0
12218
12219         local file1=$DIR/$tdir/$tfile-1
12220         local file2=$DIR/$tdir/$tfile-2
12221         local file3=$DIR/$tdir/$tfile-3
12222         local lovea1
12223         local lovea2
12224
12225         mkdir -p $DIR/$tdir
12226         touch $file1 || error "create $file1 failed"
12227         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file2 ||
12228                 error "create $file2 failed"
12229         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file3 ||
12230                 error "create $file3 failed"
12231         lovea1=$(get_layout_param $file1)
12232
12233         $LFS swap_layouts $file2 $file3 ||
12234                 error "swap $file2 $file3 layouts failed"
12235         $LFS swap_layouts $file1 $file2 ||
12236                 error "swap $file1 $file2 layouts failed"
12237
12238         lovea2=$(get_layout_param $file2)
12239         echo "$lovea1"
12240         echo "$lovea2"
12241         [ "$lovea1" == "$lovea2" ] || error "lovea $lovea1 != $lovea2"
12242
12243         lovea1=$(getfattr -n trusted.lov $file1 | grep ^trusted)
12244         [[ -z "$lovea1" ]] || error "$file1 shouldn't have lovea"
12245 }
12246 run_test 184d "allow stripeless layouts swap"
12247
12248 test_184e() {
12249         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.94) ]] ||
12250                 { skip "Need MDS version at least 2.6.94"; return 0; }
12251         check_swap_layouts_support && return 0
12252         [ -z "$(which getfattr 2>/dev/null)" ] &&
12253                 skip "no getfattr command" && return 0
12254
12255         local file1=$DIR/$tdir/$tfile-1
12256         local file2=$DIR/$tdir/$tfile-2
12257         local file3=$DIR/$tdir/$tfile-3
12258         local lovea
12259
12260         mkdir -p $DIR/$tdir
12261         touch $file1 || error "create $file1 failed"
12262         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file2 ||
12263                 error "create $file2 failed"
12264         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file3 ||
12265                 error "create $file3 failed"
12266
12267         $LFS swap_layouts $file1 $file2 ||
12268                 error "swap $file1 $file2 layouts failed"
12269
12270         lovea=$(getfattr -n trusted.lov $file1 | grep ^trusted)
12271         [[ -z "$lovea" ]] || error "$file1 shouldn't have lovea"
12272
12273         echo 123 > $file1 || error "Should be able to write into $file1"
12274
12275         $LFS swap_layouts $file1 $file3 ||
12276                 error "swap $file1 $file3 layouts failed"
12277
12278         echo 123 > $file1 || error "Should be able to write into $file1"
12279
12280         rm -rf $file1 $file2 $file3
12281 }
12282 run_test 184e "Recreate layout after stripeless layout swaps"
12283
12284 test_185() { # LU-2441
12285         # LU-3553 - no volatile file support in old servers
12286         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.60) ]] ||
12287                 { skip "Need MDS version at least 2.3.60"; return 0; }
12288
12289         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
12290         touch $DIR/$tdir/spoo
12291         local mtime1=$(stat -c "%Y" $DIR/$tdir)
12292         local fid=$($MULTIOP $DIR/$tdir VFw4096c) ||
12293                 error "cannot create/write a volatile file"
12294         [ "$FILESET" == "" ] &&
12295         $CHECKSTAT -t file $MOUNT/.lustre/fid/$fid 2>/dev/null &&
12296                 error "FID is still valid after close"
12297
12298         multiop_bg_pause $DIR/$tdir vVw4096_c
12299         local multi_pid=$!
12300
12301         local OLD_IFS=$IFS
12302         IFS=":"
12303         local fidv=($fid)
12304         IFS=$OLD_IFS
12305         # assume that the next FID for this client is sequential, since stdout
12306         # is unfortunately eaten by multiop_bg_pause
12307         local n=$((${fidv[1]} + 1))
12308         local next_fid="${fidv[0]}:$(printf "0x%x" $n):${fidv[2]}"
12309         if [ "$FILESET" == "" ]; then
12310                 $CHECKSTAT -t file $MOUNT/.lustre/fid/$next_fid ||
12311                         error "FID is missing before close"
12312         fi
12313         kill -USR1 $multi_pid
12314         # 1 second delay, so if mtime change we will see it
12315         sleep 1
12316         local mtime2=$(stat -c "%Y" $DIR/$tdir)
12317         [[ $mtime1 == $mtime2 ]] || error "mtime has changed"
12318 }
12319 run_test 185 "Volatile file support"
12320
12321 test_187a() {
12322         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12323         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.0) ] &&
12324                 skip "Need MDS version at least 2.3.0" && return
12325
12326         local dir0=$DIR/$tdir/$testnum
12327         mkdir -p $dir0 || error "creating dir $dir0"
12328
12329         local file=$dir0/file1
12330         dd if=/dev/urandom of=$file count=10 bs=1M conv=fsync
12331         local dv1=$($LFS data_version $file)
12332         dd if=/dev/urandom of=$file seek=10 count=1 bs=1M conv=fsync
12333         local dv2=$($LFS data_version $file)
12334         [[ $dv1 != $dv2 ]] ||
12335                 error "data version did not change on write $dv1 == $dv2"
12336
12337         # clean up
12338         rm -f $file1
12339 }
12340 run_test 187a "Test data version change"
12341
12342 test_187b() {
12343         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12344         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.0) ] &&
12345                 skip "Need MDS version at least 2.3.0" && return
12346
12347         local dir0=$DIR/$tdir/$testnum
12348         mkdir -p $dir0 || error "creating dir $dir0"
12349
12350         declare -a DV=$($MULTIOP $dir0 Vw1000xYw1000xY | cut -f3 -d" ")
12351         [[ ${DV[0]} != ${DV[1]} ]] ||
12352                 error "data version did not change on write"\
12353                       " ${DV[0]} == ${DV[1]}"
12354
12355         # clean up
12356         rm -f $file1
12357 }
12358 run_test 187b "Test data version change on volatile file"
12359
12360 test_200() {
12361         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12362         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
12363         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
12364
12365         local POOL=${POOL:-cea1}
12366         local POOL_ROOT=${POOL_ROOT:-$DIR/d200.pools}
12367         local POOL_DIR_NAME=${POOL_DIR_NAME:-dir_tst}
12368         # Pool OST targets
12369         local first_ost=0
12370         local last_ost=$(($OSTCOUNT - 1))
12371         local ost_step=2
12372         local ost_list=$(seq $first_ost $ost_step $last_ost)
12373         local ost_range="$first_ost $last_ost $ost_step"
12374         local test_path=$POOL_ROOT/$POOL_DIR_NAME
12375         local file_dir=$POOL_ROOT/file_tst
12376         local subdir=$test_path/subdir
12377
12378         local rc=0
12379         while : ; do
12380                 # former test_200a test_200b
12381                 pool_add $POOL                          || { rc=$? ; break; }
12382                 pool_add_targets  $POOL $ost_range      || { rc=$? ; break; }
12383                 # former test_200c test_200d
12384                 mkdir -p $test_path
12385                 pool_set_dir      $POOL $test_path      || { rc=$? ; break; }
12386                 pool_check_dir    $POOL $test_path      || { rc=$? ; break; }
12387                 mkdir -p $subdir
12388                 pool_check_dir    $POOL $subdir         || { rc=$? ; break; }
12389                 pool_dir_rel_path $POOL $POOL_DIR_NAME $POOL_ROOT \
12390                                                         || { rc=$? ; break; }
12391                 # former test_200e test_200f
12392                 local files=$((OSTCOUNT*3))
12393                 pool_alloc_files  $POOL $test_path $files "$ost_list" \
12394                                                         || { rc=$? ; break; }
12395                 pool_create_files $POOL $file_dir $files "$ost_list" \
12396                                                         || { rc=$? ; break; }
12397                 # former test_200g test_200h
12398                 pool_lfs_df $POOL                       || { rc=$? ; break; }
12399                 pool_file_rel_path $POOL $test_path     || { rc=$? ; break; }
12400
12401                 # former test_201a test_201b test_201c
12402                 pool_remove_first_target $POOL          || { rc=$? ; break; }
12403
12404                 local f=$test_path/$tfile
12405                 pool_remove_all_targets $POOL $f        || { rc=$? ; break; }
12406                 pool_remove $POOL $f                    || { rc=$? ; break; }
12407                 break
12408         done
12409
12410         destroy_test_pools
12411         return $rc
12412 }
12413 run_test 200 "OST pools"
12414
12415 # usage: default_attr <count | size | offset>
12416 default_attr() {
12417         $LCTL get_param -n lov.$FSNAME-clilov-\*.stripe${1}
12418 }
12419
12420 # usage: check_default_stripe_attr
12421 check_default_stripe_attr() {
12422         ACTUAL=$($GETSTRIPE $* $DIR/$tdir)
12423         case $1 in
12424         --stripe-count|-c)
12425                 [ -n "$2" ] && EXPECTED=0 || EXPECTED=$(default_attr count);;
12426         --stripe-size|-S)
12427                 [ -n "$2" ] && EXPECTED=0 || EXPECTED=$(default_attr size);;
12428         --stripe-index|-i)
12429                 EXPECTED=-1;;
12430         *)
12431                 error "unknown getstripe attr '$1'"
12432         esac
12433
12434         [ $ACTUAL != $EXPECTED ] &&
12435                 error "$DIR/$tdir has $1 '$ACTUAL', not '$EXPECTED'"
12436 }
12437
12438 test_204a() {
12439         test_mkdir -p $DIR/$tdir
12440         $SETSTRIPE --stripe-count 0 --stripe-size 0 --stripe-index -1 $DIR/$tdir
12441
12442         check_default_stripe_attr --stripe-count
12443         check_default_stripe_attr --stripe-size
12444         check_default_stripe_attr --stripe-index
12445
12446         return 0
12447 }
12448 run_test 204a "Print default stripe attributes ================="
12449
12450 test_204b() {
12451         test_mkdir -p $DIR/$tdir
12452         $SETSTRIPE --stripe-count 1 $DIR/$tdir
12453
12454         check_default_stripe_attr --stripe-size
12455         check_default_stripe_attr --stripe-index
12456
12457         return 0
12458 }
12459 run_test 204b "Print default stripe size and offset  ==========="
12460
12461 test_204c() {
12462         test_mkdir -p $DIR/$tdir
12463         $SETSTRIPE --stripe-size 65536 $DIR/$tdir
12464
12465         check_default_stripe_attr --stripe-count
12466         check_default_stripe_attr --stripe-index
12467
12468         return 0
12469 }
12470 run_test 204c "Print default stripe count and offset ==========="
12471
12472 test_204d() {
12473         test_mkdir -p $DIR/$tdir
12474         $SETSTRIPE --stripe-index 0 $DIR/$tdir
12475
12476         check_default_stripe_attr --stripe-count
12477         check_default_stripe_attr --stripe-size
12478
12479         return 0
12480 }
12481 run_test 204d "Print default stripe count and size ============="
12482
12483 test_204e() {
12484         test_mkdir -p $DIR/$tdir
12485         $SETSTRIPE -d $DIR/$tdir
12486
12487         check_default_stripe_attr --stripe-count --raw
12488         check_default_stripe_attr --stripe-size --raw
12489         check_default_stripe_attr --stripe-index --raw
12490
12491         return 0
12492 }
12493 run_test 204e "Print raw stripe attributes ================="
12494
12495 test_204f() {
12496         test_mkdir -p $DIR/$tdir
12497         $SETSTRIPE --stripe-count 1 $DIR/$tdir
12498
12499         check_default_stripe_attr --stripe-size --raw
12500         check_default_stripe_attr --stripe-index --raw
12501
12502         return 0
12503 }
12504 run_test 204f "Print raw stripe size and offset  ==========="
12505
12506 test_204g() {
12507         test_mkdir -p $DIR/$tdir
12508         $SETSTRIPE --stripe-size 65536 $DIR/$tdir
12509
12510         check_default_stripe_attr --stripe-count --raw
12511         check_default_stripe_attr --stripe-index --raw
12512
12513         return 0
12514 }
12515 run_test 204g "Print raw stripe count and offset ==========="
12516
12517 test_204h() {
12518         test_mkdir -p $DIR/$tdir
12519         $SETSTRIPE --stripe-index 0 $DIR/$tdir
12520
12521         check_default_stripe_attr --stripe-count --raw
12522         check_default_stripe_attr --stripe-size --raw
12523
12524         return 0
12525 }
12526 run_test 204h "Print raw stripe count and size ============="
12527
12528 # Figure out which job scheduler is being used, if any,
12529 # or use a fake one
12530 if [ -n "$SLURM_JOB_ID" ]; then # SLURM
12531         JOBENV=SLURM_JOB_ID
12532 elif [ -n "$LSB_JOBID" ]; then # Load Sharing Facility
12533         JOBENV=LSB_JOBID
12534 elif [ -n "$PBS_JOBID" ]; then # PBS/Maui/Moab
12535         JOBENV=PBS_JOBID
12536 elif [ -n "$LOADL_STEPID" ]; then # LoadLeveller
12537         JOBENV=LOADL_STEP_ID
12538 elif [ -n "$JOB_ID" ]; then # Sun Grid Engine
12539         JOBENV=JOB_ID
12540 else
12541         $LCTL list_param jobid_name > /dev/null 2>&1
12542         if [ $? -eq 0 ]; then
12543                 JOBENV=nodelocal
12544         else
12545                 JOBENV=FAKE_JOBID
12546         fi
12547 fi
12548
12549 verify_jobstats() {
12550         local cmd=($1)
12551         shift
12552         local facets="$@"
12553
12554 # we don't really need to clear the stats for this test to work, since each
12555 # command has a unique jobid, but it makes debugging easier if needed.
12556 #       for facet in $facets; do
12557 #               local dev=$(convert_facet2label $facet)
12558 #               # clear old jobstats
12559 #               do_facet $facet lctl set_param *.$dev.job_stats="clear"
12560 #       done
12561
12562         # use a new JobID for each test, or we might see an old one
12563         [ "$JOBENV" = "FAKE_JOBID" ] &&
12564                 FAKE_JOBID=id.$testnum.$(basename ${cmd[0]}).$RANDOM
12565
12566         JOBVAL=${!JOBENV}
12567
12568         [ "$JOBENV" = "nodelocal" ] && {
12569                 FAKE_JOBID=id.$testnum.$(basename ${cmd[0]}).$RANDOM
12570                 $LCTL set_param jobid_name=$FAKE_JOBID
12571                 JOBVAL=$FAKE_JOBID
12572         }
12573
12574         log "Test: ${cmd[*]}"
12575         log "Using JobID environment variable $JOBENV=$JOBVAL"
12576
12577         if [ $JOBENV = "FAKE_JOBID" ]; then
12578                 FAKE_JOBID=$JOBVAL ${cmd[*]}
12579         else
12580                 ${cmd[*]}
12581         fi
12582
12583         # all files are created on OST0000
12584         for facet in $facets; do
12585                 local stats="*.$(convert_facet2label $facet).job_stats"
12586                 if [ $(do_facet $facet lctl get_param $stats |
12587                        grep -c $JOBVAL) -ne 1 ]; then
12588                         do_facet $facet lctl get_param $stats
12589                         error "No jobstats for $JOBVAL found on $facet::$stats"
12590                 fi
12591         done
12592 }
12593
12594 jobstats_set() {
12595         trap 0
12596         NEW_JOBENV=${1:-$OLD_JOBENV}
12597         do_facet mgs $LCTL conf_param $FSNAME.sys.jobid_var=$NEW_JOBENV
12598         wait_update $HOSTNAME "$LCTL get_param -n jobid_var" $NEW_JOBENV
12599 }
12600
12601 cleanup_205() {
12602         trap 0
12603         do_facet $SINGLEMDS \
12604                 $LCTL set_param mdt.*.job_cleanup_interval=$OLD_INTERVAL
12605         [ $OLD_JOBENV != $JOBENV ] && jobstats_set $OLD_JOBENV
12606         cleanup_changelog
12607 }
12608
12609 test_205() { # Job stats
12610         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.7.1) ]] ||
12611                 { skip "Need MDS version with at least 2.7.1"; return 0; }
12612
12613         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12614         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
12615         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12616         remote_ost_nodsh && skip "remote OST with nodsh" && return
12617
12618         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep jobstats)" ] &&
12619                 skip "Server doesn't support jobstats" && return 0
12620         [[ $JOBID_VAR = disable ]] && skip "jobstats is disabled" && return
12621
12622         OLD_JOBENV=$($LCTL get_param -n jobid_var)
12623         if [ $OLD_JOBENV != $JOBENV ]; then
12624                 jobstats_set $JOBENV
12625                 trap cleanup_205 EXIT
12626         fi
12627
12628         CL_USER=$(do_facet $SINGLEMDS lctl --device $MDT0 changelog_register -n)
12629         echo "Registered as changelog user $CL_USER"
12630
12631         OLD_INTERVAL=$(do_facet $SINGLEMDS \
12632                        lctl get_param -n mdt.*.job_cleanup_interval)
12633         local interval_new=5
12634         do_facet $SINGLEMDS \
12635                 $LCTL set_param mdt.*.job_cleanup_interval=$interval_new
12636         local start=$SECONDS
12637
12638         local cmd
12639         # mkdir
12640         cmd="mkdir $DIR/$tdir"
12641         verify_jobstats "$cmd" "$SINGLEMDS"
12642         # rmdir
12643         cmd="rmdir $DIR/$tdir"
12644         verify_jobstats "$cmd" "$SINGLEMDS"
12645         # mkdir on secondary MDT
12646         if [ $MDSCOUNT -gt 1 ]; then
12647                 cmd="lfs mkdir -i 1 $DIR/$tdir.remote"
12648                 verify_jobstats "$cmd" "mds2"
12649         fi
12650         # mknod
12651         cmd="mknod $DIR/$tfile c 1 3"
12652         verify_jobstats "$cmd" "$SINGLEMDS"
12653         # unlink
12654         cmd="rm -f $DIR/$tfile"
12655         verify_jobstats "$cmd" "$SINGLEMDS"
12656         # create all files on OST0000 so verify_jobstats can find OST stats
12657         # open & close
12658         cmd="$SETSTRIPE -i 0 -c 1 $DIR/$tfile"
12659         verify_jobstats "$cmd" "$SINGLEMDS"
12660         # setattr
12661         cmd="touch $DIR/$tfile"
12662         verify_jobstats "$cmd" "$SINGLEMDS ost1"
12663         # write
12664         cmd="dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 oflag=sync"
12665         verify_jobstats "$cmd" "ost1"
12666         # read
12667         cancel_lru_locks osc
12668         cmd="dd if=$DIR/$tfile of=/dev/null bs=1M count=1 iflag=direct"
12669         verify_jobstats "$cmd" "ost1"
12670         # truncate
12671         cmd="$TRUNCATE $DIR/$tfile 0"
12672         verify_jobstats "$cmd" "$SINGLEMDS ost1"
12673         # rename
12674         cmd="mv -f $DIR/$tfile $DIR/$tdir.rename"
12675         verify_jobstats "$cmd" "$SINGLEMDS"
12676         # jobstats expiry - sleep until old stats should be expired
12677         local left=$((interval_new + 5 - (SECONDS - start)))
12678         [ $left -ge 0 ] && wait_update_facet $SINGLEMDS \
12679                 "lctl get_param *.*.job_stats | grep -c 'job_id.*mkdir'" \
12680                         "0" $left
12681         cmd="mkdir $DIR/$tdir.expire"
12682         verify_jobstats "$cmd" "$SINGLEMDS"
12683         [ $(do_facet $SINGLEMDS lctl get_param *.*.job_stats |
12684             grep -c "job_id.*mkdir") -gt 1 ] && error "old jobstats not expired"
12685
12686         # Ensure that jobid are present in changelog (if supported by MDS)
12687         if [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.52) ]
12688         then
12689                 $LFS changelog $MDT0 | tail -9
12690                 jobids=$($LFS changelog $MDT0 | tail -9 | grep -c "j=")
12691                 [ $jobids -eq 9 ] ||
12692                         error "Wrong changelog jobid count $jobids != 9"
12693
12694                 # LU-5862
12695                 JOBENV="disable"
12696                 jobstats_set $JOBENV
12697                 touch $DIR/$tfile
12698                 $LFS changelog $MDT0 | tail -1
12699                 jobids=$($LFS changelog $MDT0 | tail -1 | grep -c "j=")
12700                 [ $jobids -eq 0 ] ||
12701                         error "Unexpected jobids when jobid_var=$JOBENV"
12702         fi
12703
12704         cleanup_205
12705 }
12706 run_test 205 "Verify job stats"
12707
12708 # LU-1480, LU-1773 and LU-1657
12709 test_206() {
12710         mkdir -p $DIR/$tdir
12711         $SETSTRIPE -c -1 $DIR/$tdir
12712 #define OBD_FAIL_LOV_INIT 0x1403
12713         $LCTL set_param fail_loc=0xa0001403
12714         $LCTL set_param fail_val=1
12715         touch $DIR/$tdir/$tfile || true
12716 }
12717 run_test 206 "fail lov_init_raid0() doesn't lbug"
12718
12719 test_207a() {
12720         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((RANDOM%10+1))
12721         local fsz=`stat -c %s $DIR/$tfile`
12722         cancel_lru_locks mdc
12723
12724         # do not return layout in getattr intent
12725 #define OBD_FAIL_MDS_NO_LL_GETATTR 0x170
12726         $LCTL set_param fail_loc=0x170
12727         local sz=`stat -c %s $DIR/$tfile`
12728
12729         [ $fsz -eq $sz ] || error "file size expected $fsz, actual $sz"
12730
12731         rm -rf $DIR/$tfile
12732 }
12733 run_test 207a "can refresh layout at glimpse"
12734
12735 test_207b() {
12736         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((RANDOM%10+1))
12737         local cksum=`md5sum $DIR/$tfile`
12738         local fsz=`stat -c %s $DIR/$tfile`
12739         cancel_lru_locks mdc
12740         cancel_lru_locks osc
12741
12742         # do not return layout in getattr intent
12743 #define OBD_FAIL_MDS_NO_LL_OPEN 0x171
12744         $LCTL set_param fail_loc=0x171
12745
12746         # it will refresh layout after the file is opened but before read issues
12747         echo checksum is "$cksum"
12748         echo "$cksum" |md5sum -c --quiet || error "file differs"
12749
12750         rm -rf $DIR/$tfile
12751 }
12752 run_test 207b "can refresh layout at open"
12753
12754 test_208() {
12755         # FIXME: in this test suite, only RD lease is used. This is okay
12756         # for now as only exclusive open is supported. After generic lease
12757         # is done, this test suite should be revised. - Jinshan
12758
12759         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12760         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.4.52) ]] ||
12761                 { skip "Need MDS version at least 2.4.52"; return 0; }
12762
12763         echo "==== test 1: verify get lease work"
12764         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:eRE+eU || error "get lease error"
12765
12766         echo "==== test 2: verify lease can be broken by upcoming open"
12767         $MULTIOP $DIR/$tfile oO_RDONLY:eR_E-eUc &
12768         local PID=$!
12769         sleep 1
12770
12771         $MULTIOP $DIR/$tfile oO_RDONLY:c
12772         kill -USR1 $PID && wait $PID || error "break lease error"
12773
12774         echo "==== test 3: verify lease can't be granted if an open already exists"
12775         $MULTIOP $DIR/$tfile oO_RDONLY:_c &
12776         local PID=$!
12777         sleep 1
12778
12779         $MULTIOP $DIR/$tfile oO_RDONLY:eReUc && error "apply lease should fail"
12780         kill -USR1 $PID && wait $PID || error "open file error"
12781
12782         echo "==== test 4: lease can sustain over recovery"
12783         $MULTIOP $DIR/$tfile oO_RDONLY:eR_E+eUc &
12784         PID=$!
12785         sleep 1
12786
12787         fail mds1
12788
12789         kill -USR1 $PID && wait $PID || error "lease broken over recovery"
12790
12791         echo "==== test 5: lease broken can't be regained by replay"
12792         $MULTIOP $DIR/$tfile oO_RDONLY:eR_E-eUc &
12793         PID=$!
12794         sleep 1
12795
12796         # open file to break lease and then recovery
12797         $MULTIOP $DIR/$tfile oO_RDWR:c || error "open file error"
12798         fail mds1
12799
12800         kill -USR1 $PID && wait $PID || error "lease not broken over recovery"
12801
12802         rm -f $DIR/$tfile
12803 }
12804 run_test 208 "Exclusive open"
12805
12806 test_209() {
12807         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep disp_stripe)" ] &&
12808                 skip_env "must have disp_stripe" && return
12809
12810         touch $DIR/$tfile
12811         sync; sleep 5; sync;
12812
12813         echo 3 > /proc/sys/vm/drop_caches
12814         req_before=$(awk '/ptlrpc_cache / { print $2 }' /proc/slabinfo)
12815
12816         # open/close 500 times
12817         for i in $(seq 500); do
12818                 cat $DIR/$tfile
12819         done
12820
12821         echo 3 > /proc/sys/vm/drop_caches
12822         req_after=$(awk '/ptlrpc_cache / { print $2 }' /proc/slabinfo)
12823
12824         echo "before: $req_before, after: $req_after"
12825         [ $((req_after - req_before)) -ge 300 ] &&
12826                 error "open/close requests are not freed"
12827         return 0
12828 }
12829 run_test 209 "read-only open/close requests should be freed promptly"
12830
12831 test_212() {
12832         size=`date +%s`
12833         size=$((size % 8192 + 1))
12834         dd if=/dev/urandom of=$DIR/f212 bs=1k count=$size
12835         sendfile $DIR/f212 $DIR/f212.xyz || error "sendfile wrong"
12836         rm -f $DIR/f212 $DIR/f212.xyz
12837 }
12838 run_test 212 "Sendfile test ============================================"
12839
12840 test_213() {
12841         dd if=/dev/zero of=$DIR/$tfile bs=4k count=4
12842         cancel_lru_locks osc
12843         lctl set_param fail_loc=0x8000040f
12844         # generate a read lock
12845         cat $DIR/$tfile > /dev/null
12846         # write to the file, it will try to cancel the above read lock.
12847         cat /etc/hosts >> $DIR/$tfile
12848 }
12849 run_test 213 "OSC lock completion and cancel race don't crash - bug 18829"
12850
12851 test_214() { # for bug 20133
12852         mkdir -p $DIR/$tdir/d214c || error "mkdir $DIR/$tdir/d214c failed"
12853         for (( i=0; i < 340; i++ )) ; do
12854                 touch $DIR/$tdir/d214c/a$i
12855         done
12856
12857         ls -l $DIR/$tdir || error "ls -l $DIR/d214p failed"
12858         mv $DIR/$tdir/d214c $DIR/ || error "mv $DIR/d214p/d214c $DIR/ failed"
12859         ls $DIR/d214c || error "ls $DIR/d214c failed"
12860         rm -rf $DIR/$tdir || error "rm -rf $DIR/d214* failed"
12861         rm -rf $DIR/d214* || error "rm -rf $DIR/d214* failed"
12862 }
12863 run_test 214 "hash-indexed directory test - bug 20133"
12864
12865 # having "abc" as 1st arg, creates $TMP/lnet_abc.out and $TMP/lnet_abc.sys
12866 create_lnet_proc_files() {
12867         lctl get_param -n $1 >$TMP/lnet_$1.out || error "cannot read lnet.$1"
12868         sysctl lnet.$1 >$TMP/lnet_$1.sys_tmp || error "cannot read lnet.$1"
12869
12870         sed "s/^lnet.$1\ =\ //g" "$TMP/lnet_$1.sys_tmp" >$TMP/lnet_$1.sys
12871         rm -f "$TMP/lnet_$1.sys_tmp"
12872 }
12873
12874 # counterpart of create_lnet_proc_files
12875 remove_lnet_proc_files() {
12876         rm -f $TMP/lnet_$1.out $TMP/lnet_$1.sys
12877 }
12878
12879 # uses 1st arg as trailing part of filename, 2nd arg as description for reports,
12880 # 3rd arg as regexp for body
12881 check_lnet_proc_stats() {
12882         local l=$(cat "$TMP/lnet_$1" |wc -l)
12883         [ $l = 1 ] || (cat "$TMP/lnet_$1" && error "$2 is not of 1 line: $l")
12884
12885         grep -E "$3" "$TMP/lnet_$1" || (cat "$TMP/lnet_$1" && error "$2 misformatted")
12886 }
12887
12888 # uses 1st arg as trailing part of filename, 2nd arg as description for reports,
12889 # 3rd arg as regexp for body, 4th arg as regexp for 1st line, 5th arg is
12890 # optional and can be regexp for 2nd line (lnet.routes case)
12891 check_lnet_proc_entry() {
12892         local blp=2          # blp stands for 'position of 1st line of body'
12893         [ -z "$5" ] || blp=3 # lnet.routes case
12894
12895         local l=$(cat "$TMP/lnet_$1" |wc -l)
12896         # subtracting one from $blp because the body can be empty
12897         [ "$l" -ge "$(($blp - 1))" ] || (cat "$TMP/lnet_$1" && error "$2 is too short: $l")
12898
12899         sed -n '1 p' "$TMP/lnet_$1" |grep -E "$4" >/dev/null ||
12900                 (cat "$TMP/lnet_$1" && error "1st line of $2 misformatted")
12901
12902         [ "$5" = "" ] || sed -n '2 p' "$TMP/lnet_$1" |grep -E "$5" >/dev/null ||
12903                 (cat "$TMP/lnet_$1" && error "2nd line of $2 misformatted")
12904
12905         # bail out if any unexpected line happened
12906         sed -n "$blp p" "$TMP/lnet_$1" | grep -Ev "$3"
12907         [ "$?" != 0 ] || error "$2 misformatted"
12908 }
12909
12910 test_215() { # for bugs 18102, 21079, 21517
12911         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12912         local N='(0|[1-9][0-9]*)'       # non-negative numeric
12913         local P='[1-9][0-9]*'           # positive numeric
12914         local I='(0|-?[1-9][0-9]*|NA)'  # any numeric (0 | >0 | <0) or NA if no value
12915         local NET='[a-z][a-z0-9]*'      # LNET net like o2ib2
12916         local ADDR='[0-9.]+'            # LNET addr like 10.0.0.1
12917         local NID="$ADDR@$NET"          # LNET nid like 10.0.0.1@o2ib2
12918
12919         local L1 # regexp for 1st line
12920         local L2 # regexp for 2nd line (optional)
12921         local BR # regexp for the rest (body)
12922
12923         # lnet.stats should look as 11 space-separated non-negative numerics
12924         BR="^$N $N $N $N $N $N $N $N $N $N $N$"
12925         create_lnet_proc_files "stats"
12926         check_lnet_proc_stats "stats.sys" "lnet.stats" "$BR"
12927         remove_lnet_proc_files "stats"
12928
12929         # lnet.routes should look like this:
12930         # Routing disabled/enabled
12931         # net hops priority state router
12932         # where net is a string like tcp0, hops > 0, priority >= 0,
12933         # state is up/down,
12934         # router is a string like 192.168.1.1@tcp2
12935         L1="^Routing (disabled|enabled)$"
12936         L2="^net +hops +priority +state +router$"
12937         BR="^$NET +$N +(0|1) +(up|down) +$NID$"
12938         create_lnet_proc_files "routes"
12939         check_lnet_proc_entry "routes.sys" "lnet.routes" "$BR" "$L1" "$L2"
12940         remove_lnet_proc_files "routes"
12941
12942         # lnet.routers should look like this:
12943         # ref rtr_ref alive_cnt state last_ping ping_sent deadline down_ni router
12944         # where ref > 0, rtr_ref > 0, alive_cnt >= 0, state is up/down,
12945         # last_ping >= 0, ping_sent is boolean (0/1), deadline and down_ni are
12946         # numeric (0 or >0 or <0), router is a string like 192.168.1.1@tcp2
12947         L1="^ref +rtr_ref +alive_cnt +state +last_ping +ping_sent +deadline +down_ni +router$"
12948         BR="^$P +$P +$N +(up|down) +$N +(0|1) +$I +$I +$NID$"
12949         create_lnet_proc_files "routers"
12950         check_lnet_proc_entry "routers.sys" "lnet.routers" "$BR" "$L1"
12951         remove_lnet_proc_files "routers"
12952
12953         # lnet.peers should look like this:
12954         # nid refs state last max rtr min tx min queue
12955         # where nid is a string like 192.168.1.1@tcp2, refs > 0,
12956         # state is up/down/NA, max >= 0. last, rtr, min, tx, min are
12957         # numeric (0 or >0 or <0), queue >= 0.
12958         L1="^nid +refs +state +last +max +rtr +min +tx +min +queue$"
12959         BR="^$NID +$P +(up|down|NA) +$I +$N +$I +$I +$I +$I +$N$"
12960         create_lnet_proc_files "peers"
12961         check_lnet_proc_entry "peers.sys" "lnet.peers" "$BR" "$L1"
12962         remove_lnet_proc_files "peers"
12963
12964         # lnet.buffers  should look like this:
12965         # pages count credits min
12966         # where pages >=0, count >=0, credits and min are numeric (0 or >0 or <0)
12967         L1="^pages +count +credits +min$"
12968         BR="^ +$N +$N +$I +$I$"
12969         create_lnet_proc_files "buffers"
12970         check_lnet_proc_entry "buffers.sys" "lnet.buffers" "$BR" "$L1"
12971         remove_lnet_proc_files "buffers"
12972
12973         # lnet.nis should look like this:
12974         # nid status alive refs peer rtr max tx min
12975         # where nid is a string like 192.168.1.1@tcp2, status is up/down,
12976         # alive is numeric (0 or >0 or <0), refs >= 0, peer >= 0,
12977         # rtr >= 0, max >=0, tx and min are numeric (0 or >0 or <0).
12978         L1="^nid +status +alive +refs +peer +rtr +max +tx +min$"
12979         BR="^$NID +(up|down) +$I +$N +$N +$N +$N +$I +$I$"
12980         create_lnet_proc_files "nis"
12981         check_lnet_proc_entry "nis.sys" "lnet.nis" "$BR" "$L1"
12982         remove_lnet_proc_files "nis"
12983
12984         # can we successfully write to lnet.stats?
12985         lctl set_param -n stats=0 || error "cannot write to lnet.stats"
12986         sysctl -w lnet.stats=0 || error "cannot write to lnet.stats"
12987 }
12988 run_test 215 "lnet exists and has proper content - bugs 18102, 21079, 21517"
12989
12990 test_216() { # bug 20317
12991         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12992         remote_ost_nodsh && skip "remote OST with nodsh" && return
12993
12994         local node
12995         local facets=$(get_facets OST)
12996         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
12997
12998         save_lustre_params client "osc.*.contention_seconds" > $p
12999         save_lustre_params $facets \
13000                 "ldlm.namespaces.filter-*.max_nolock_bytes" >> $p
13001         save_lustre_params $facets \
13002                 "ldlm.namespaces.filter-*.contended_locks" >> $p
13003         save_lustre_params $facets \
13004                 "ldlm.namespaces.filter-*.contention_seconds" >> $p
13005         clear_stats osc.*.osc_stats
13006
13007         # agressive lockless i/o settings
13008         do_nodes $(comma_list $(osts_nodes)) \
13009                 "lctl set_param -n ldlm.namespaces.*.max_nolock_bytes=2000000 \
13010                         ldlm.namespaces.filter-*.contended_locks=0 \
13011                         ldlm.namespaces.filter-*.contention_seconds=60"
13012         lctl set_param -n osc.*.contention_seconds=60
13013
13014         $DIRECTIO write $DIR/$tfile 0 10 4096
13015         $CHECKSTAT -s 40960 $DIR/$tfile
13016
13017         # disable lockless i/o
13018         do_nodes $(comma_list $(osts_nodes)) \
13019                 "lctl set_param -n ldlm.namespaces.filter-*.max_nolock_bytes=0 \
13020                         ldlm.namespaces.filter-*.contended_locks=32 \
13021                         ldlm.namespaces.filter-*.contention_seconds=0"
13022         lctl set_param -n osc.*.contention_seconds=0
13023         clear_stats osc.*.osc_stats
13024
13025         dd if=/dev/zero of=$DIR/$tfile count=0
13026         $CHECKSTAT -s 0 $DIR/$tfile
13027
13028         restore_lustre_params <$p
13029         rm -f $p
13030         rm $DIR/$tfile
13031 }
13032 run_test 216 "check lockless direct write updates file size and kms correctly"
13033
13034 test_217() { # bug 22430
13035         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13036         local node
13037         local nid
13038
13039         for node in $(nodes_list); do
13040                 nid=$(host_nids_address $node $NETTYPE)
13041                 if [[ $nid = *-* ]] ; then
13042                         echo "lctl ping $(h2nettype $nid)"
13043                         lctl ping $(h2nettype $nid)
13044                 else
13045                         echo "skipping $node (no hyphen detected)"
13046                 fi
13047         done
13048 }
13049 run_test 217 "check lctl ping for hostnames with hiphen ('-')"
13050
13051 test_218() {
13052        # do directio so as not to populate the page cache
13053        log "creating a 10 Mb file"
13054        $MULTIOP $DIR/$tfile oO_CREAT:O_DIRECT:O_RDWR:w$((10*1048576))c || error "multiop failed while creating a file"
13055        log "starting reads"
13056        dd if=$DIR/$tfile of=/dev/null bs=4096 &
13057        log "truncating the file"
13058        $MULTIOP $DIR/$tfile oO_TRUNC:c || error "multiop failed while truncating the file"
13059        log "killing dd"
13060        kill %+ || true # reads might have finished
13061        echo "wait until dd is finished"
13062        wait
13063        log "removing the temporary file"
13064        rm -rf $DIR/$tfile || error "tmp file removal failed"
13065 }
13066 run_test 218 "parallel read and truncate should not deadlock ======================="
13067
13068 test_219() {
13069         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13070         # write one partial page
13071         dd if=/dev/zero of=$DIR/$tfile bs=1024 count=1
13072         # set no grant so vvp_io_commit_write will do sync write
13073         $LCTL set_param fail_loc=0x411
13074         # write a full page at the end of file
13075         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 seek=1 conv=notrunc
13076
13077         $LCTL set_param fail_loc=0
13078         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 seek=3
13079         $LCTL set_param fail_loc=0x411
13080         dd if=/dev/zero of=$DIR/$tfile bs=1024 count=1 seek=2 conv=notrunc
13081
13082         # LU-4201
13083         dd if=/dev/zero of=$DIR/$tfile-2 bs=1024 count=1
13084         $CHECKSTAT -s 1024 $DIR/$tfile-2 || error "checkstat wrong size"
13085 }
13086 run_test 219 "LU-394: Write partial won't cause uncontiguous pages vec at LND"
13087
13088 test_220() { #LU-325
13089         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13090         remote_ost_nodsh && skip "remote OST with nodsh" && return
13091         remote_mds_nodsh && skip "remote MDS with nodsh" && return
13092         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
13093         local OSTIDX=0
13094
13095         # create on MDT0000 so the last_id and next_id are correct
13096         mkdir $DIR/$tdir
13097         local OST=$($LFS df $DIR | awk '/OST:'$OSTIDX'/ { print $1 }')
13098         OST=${OST%_UUID}
13099
13100         # on the mdt's osc
13101         local mdtosc_proc1=$(get_mdtosc_proc_path $SINGLEMDS $OST)
13102         local last_id=$(do_facet $SINGLEMDS lctl get_param -n \
13103                         osc.$mdtosc_proc1.prealloc_last_id)
13104         local next_id=$(do_facet $SINGLEMDS lctl get_param -n \
13105                         osc.$mdtosc_proc1.prealloc_next_id)
13106
13107         $LFS df -i
13108
13109         do_facet ost$((OSTIDX + 1)) lctl set_param fail_val=-1
13110         #define OBD_FAIL_OST_ENOINO              0x229
13111         do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=0x229
13112         create_pool $FSNAME.$TESTNAME || return 1
13113         do_facet mgs $LCTL pool_add $FSNAME.$TESTNAME $OST || return 2
13114
13115         $SETSTRIPE $DIR/$tdir -i $OSTIDX -c 1 -p $FSNAME.$TESTNAME
13116
13117         MDSOBJS=$((last_id - next_id))
13118         echo "preallocated objects on MDS is $MDSOBJS" "($last_id - $next_id)"
13119
13120         blocks=$($LFS df $MOUNT | awk '($1 == '$OSTIDX') { print $4 }')
13121         echo "OST still has $count kbytes free"
13122
13123         echo "create $MDSOBJS files @next_id..."
13124         createmany -o $DIR/$tdir/f $MDSOBJS || return 3
13125
13126         local last_id2=$(do_facet mds${MDSIDX} lctl get_param -n \
13127                         osc.$mdtosc_proc1.prealloc_last_id)
13128         local next_id2=$(do_facet mds${MDSIDX} lctl get_param -n \
13129                         osc.$mdtosc_proc1.prealloc_next_id)
13130
13131         echo "after creation, last_id=$last_id2, next_id=$next_id2"
13132         $LFS df -i
13133
13134         echo "cleanup..."
13135
13136         do_facet ost$((OSTIDX + 1)) lctl set_param fail_val=0
13137         do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=0
13138
13139         do_facet mgs $LCTL pool_remove $FSNAME.$TESTNAME $OST || return 4
13140         do_facet mgs $LCTL pool_destroy $FSNAME.$TESTNAME || return 5
13141         echo "unlink $MDSOBJS files @$next_id..."
13142         unlinkmany $DIR/$tdir/f $MDSOBJS || return 6
13143 }
13144 run_test 220 "preallocated MDS objects still used if ENOSPC from OST"
13145
13146 test_221() {
13147         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13148         dd if=`which date` of=$MOUNT/date oflag=sync
13149         chmod +x $MOUNT/date
13150
13151         #define OBD_FAIL_LLITE_FAULT_TRUNC_RACE  0x1401
13152         $LCTL set_param fail_loc=0x80001401
13153
13154         $MOUNT/date > /dev/null
13155         rm -f $MOUNT/date
13156 }
13157 run_test 221 "make sure fault and truncate race to not cause OOM"
13158
13159 test_222a () {
13160         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13161        rm -rf $DIR/$tdir
13162        test_mkdir -p $DIR/$tdir
13163        $SETSTRIPE -c 1 -i 0 $DIR/$tdir
13164        createmany -o $DIR/$tdir/$tfile 10
13165        cancel_lru_locks mdc
13166        cancel_lru_locks osc
13167        #define OBD_FAIL_LDLM_AGL_DELAY           0x31a
13168        $LCTL set_param fail_loc=0x31a
13169        ls -l $DIR/$tdir > /dev/null || error "AGL for ls failed"
13170        $LCTL set_param fail_loc=0
13171        rm -r $DIR/$tdir
13172 }
13173 run_test 222a "AGL for ls should not trigger CLIO lock failure ================"
13174
13175 test_222b () {
13176         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13177         rm -rf $DIR/$tdir
13178         test_mkdir -p $DIR/$tdir
13179         $SETSTRIPE -c 1 -i 0 $DIR/$tdir
13180         createmany -o $DIR/$tdir/$tfile 10
13181         cancel_lru_locks mdc
13182         cancel_lru_locks osc
13183         #define OBD_FAIL_LDLM_AGL_DELAY           0x31a
13184         $LCTL set_param fail_loc=0x31a
13185         rm -r $DIR/$tdir || error "AGL for rmdir failed"
13186         $LCTL set_param fail_loc=0
13187 }
13188 run_test 222b "AGL for rmdir should not trigger CLIO lock failure ============="
13189
13190 test_223 () {
13191         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13192        rm -rf $DIR/$tdir
13193        test_mkdir -p $DIR/$tdir
13194        $SETSTRIPE -c 1 -i 0 $DIR/$tdir
13195        createmany -o $DIR/$tdir/$tfile 10
13196        cancel_lru_locks mdc
13197        cancel_lru_locks osc
13198        #define OBD_FAIL_LDLM_AGL_NOLOCK          0x31b
13199        $LCTL set_param fail_loc=0x31b
13200        ls -l $DIR/$tdir > /dev/null || error "reenqueue failed"
13201        $LCTL set_param fail_loc=0
13202        rm -r $DIR/$tdir
13203 }
13204 run_test 223 "osc reenqueue if without AGL lock granted ======================="
13205
13206 test_224a() { # LU-1039, MRP-303
13207         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13208         #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB   0x508
13209         $LCTL set_param fail_loc=0x508
13210         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 conv=fsync
13211         $LCTL set_param fail_loc=0
13212         df $DIR
13213 }
13214 run_test 224a "Don't panic on bulk IO failure"
13215
13216 test_224b() { # LU-1039, MRP-303
13217         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13218         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1
13219         cancel_lru_locks osc
13220         #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB2   0x515
13221         $LCTL set_param fail_loc=0x515
13222         dd of=/dev/null if=$DIR/$tfile bs=4096 count=1
13223         $LCTL set_param fail_loc=0
13224         df $DIR
13225 }
13226 run_test 224b "Don't panic on bulk IO failure"
13227
13228 test_224c() { # LU-6441
13229         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13230         remote_mds_nodsh && skip "remote MDS with nodsh" && return
13231
13232         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
13233         save_writethrough $p
13234         set_cache writethrough on
13235
13236         local pages_per_rpc=$($LCTL get_param \
13237                                 osc.*.max_pages_per_rpc)
13238         local at_max=$($LCTL get_param -n at_max)
13239         local timeout=$($LCTL get_param -n timeout)
13240         local test_at="$LCTL get_param -n at_max"
13241         local param_at="$FSNAME.sys.at_max"
13242         local test_timeout="$LCTL get_param -n timeout"
13243         local param_timeout="$FSNAME.sys.timeout"
13244
13245         $LCTL set_param -n osc.*.max_pages_per_rpc=1024
13246
13247         set_conf_param_and_check client "$test_at" "$param_at" 0 ||
13248                 error "conf_param at_max=0 failed"
13249         set_conf_param_and_check client "$test_timeout" "$param_timeout" 5 ||
13250                 error "conf_param timeout=5 failed"
13251
13252         #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB3   0x520
13253         do_facet ost1 $LCTL set_param fail_loc=0x520
13254         $LFS setstripe -c 1 -i 0 $DIR/$tfile
13255         dd if=/dev/zero of=$DIR/$tfile bs=8MB count=1
13256         sync
13257         do_facet ost1 $LCTL set_param fail_loc=0
13258
13259         set_conf_param_and_check client "$test_at" "$param_at" $at_max ||
13260                 error "conf_param at_max=$at_max failed"
13261         set_conf_param_and_check client "$test_timeout" "$param_timeout" \
13262                 $timeout || error "conf_param timeout=$timeout failed"
13263
13264         $LCTL set_param -n $pages_per_rpc
13265         restore_lustre_params < $p
13266         rm -f $p
13267 }
13268 run_test 224c "Don't hang if one of md lost during large bulk RPC"
13269
13270 MDSSURVEY=${MDSSURVEY:-$(which mds-survey 2>/dev/null || true)}
13271 test_225a () {
13272         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13273         remote_mds_nodsh && skip "remote MDS with nodsh" && return
13274         if [ -z ${MDSSURVEY} ]; then
13275               skip_env "mds-survey not found" && return
13276         fi
13277
13278         [ $MDSCOUNT -ge 2 ] &&
13279                 skip "skipping now for more than one MDT" && return
13280
13281        [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ] ||
13282             { skip "Need MDS version at least 2.2.51"; return; }
13283
13284        local mds=$(facet_host $SINGLEMDS)
13285        local target=$(do_nodes $mds 'lctl dl' | \
13286                       awk "{if (\$2 == \"UP\" && \$3 == \"mdt\") {print \$4}}")
13287
13288        local cmd1="file_count=1000 thrhi=4"
13289        local cmd2="dir_count=2 layer=mdd stripe_count=0"
13290        local cmd3="rslt_loc=${TMP} targets=\"$mds:$target\" $MDSSURVEY"
13291        local cmd="$cmd1 $cmd2 $cmd3"
13292
13293        rm -f ${TMP}/mds_survey*
13294        echo + $cmd
13295        eval $cmd || error "mds-survey with zero-stripe failed"
13296        cat ${TMP}/mds_survey*
13297        rm -f ${TMP}/mds_survey*
13298 }
13299 run_test 225a "Metadata survey sanity with zero-stripe"
13300
13301 test_225b () {
13302         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13303         remote_mds_nodsh && skip "remote MDS with nodsh" && return
13304         if [ -z ${MDSSURVEY} ]; then
13305               skip_env "mds-survey not found" && return
13306         fi
13307         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ] ||
13308             { skip "Need MDS version at least 2.2.51"; return; }
13309
13310         if [ $($LCTL dl | grep -c osc) -eq 0 ]; then
13311               skip_env "Need to mount OST to test" && return
13312         fi
13313
13314         [ $MDSCOUNT -ge 2 ] &&
13315                 skip "skipping now for more than one MDT" && return
13316        local mds=$(facet_host $SINGLEMDS)
13317        local target=$(do_nodes $mds 'lctl dl' | \
13318                       awk "{if (\$2 == \"UP\" && \$3 == \"mdt\") {print \$4}}")
13319
13320        local cmd1="file_count=1000 thrhi=4"
13321        local cmd2="dir_count=2 layer=mdd stripe_count=1"
13322        local cmd3="rslt_loc=${TMP} targets=\"$mds:$target\" $MDSSURVEY"
13323        local cmd="$cmd1 $cmd2 $cmd3"
13324
13325        rm -f ${TMP}/mds_survey*
13326        echo + $cmd
13327        eval $cmd || error "mds-survey with stripe_count failed"
13328        cat ${TMP}/mds_survey*
13329        rm -f ${TMP}/mds_survey*
13330 }
13331 run_test 225b "Metadata survey sanity with stripe_count = 1"
13332
13333 mcreate_path2fid () {
13334         local mode=$1
13335         local major=$2
13336         local minor=$3
13337         local name=$4
13338         local desc=$5
13339         local path=$DIR/$tdir/$name
13340         local fid
13341         local rc
13342         local fid_path
13343
13344         $MCREATE --mode=$1 --major=$2 --minor=$3 $path ||
13345                 error "cannot create $desc"
13346
13347         fid=$($LFS path2fid $path | tr -d '[' | tr -d ']')
13348         rc=$?
13349         [ $rc -ne 0 ] && error "cannot get fid of a $desc"
13350
13351         fid_path=$($LFS fid2path $MOUNT $fid)
13352         rc=$?
13353         [ $rc -ne 0 ] && error "cannot get path of $desc by $DIR $path $fid"
13354
13355         [ "$path" == "$fid_path" ] ||
13356                 error "fid2path returned $fid_path, expected $path"
13357
13358         echo "pass with $path and $fid"
13359 }
13360
13361 test_226a () {
13362         rm -rf $DIR/$tdir
13363         mkdir -p $DIR/$tdir
13364
13365         mcreate_path2fid 0010666 0 0 fifo "FIFO"
13366         mcreate_path2fid 0020666 1 3 null "character special file (null)"
13367         mcreate_path2fid 0020666 1 255 none "character special file (no device)"
13368         mcreate_path2fid 0040666 0 0 dir "directory"
13369         mcreate_path2fid 0060666 7 0 loop0 "block special file (loop)"
13370         mcreate_path2fid 0100666 0 0 file "regular file"
13371         mcreate_path2fid 0120666 0 0 link "symbolic link"
13372         mcreate_path2fid 0140666 0 0 sock "socket"
13373 }
13374 run_test 226a "call path2fid and fid2path on files of all type"
13375
13376 test_226b () {
13377         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13378         rm -rf $DIR/$tdir
13379         local MDTIDX=1
13380
13381         mkdir -p $DIR/$tdir
13382         $LFS setdirstripe -i $MDTIDX $DIR/$tdir/remote_dir ||
13383                 error "create remote directory failed"
13384         mcreate_path2fid 0010666 0 0 "remote_dir/fifo" "FIFO"
13385         mcreate_path2fid 0020666 1 3 "remote_dir/null" \
13386                                 "character special file (null)"
13387         mcreate_path2fid 0020666 1 255 "remote_dir/none" \
13388                                 "character special file (no device)"
13389         mcreate_path2fid 0040666 0 0 "remote_dir/dir" "directory"
13390         mcreate_path2fid 0060666 7 0 "remote_dir/loop0" \
13391                                 "block special file (loop)"
13392         mcreate_path2fid 0100666 0 0 "remote_dir/file" "regular file"
13393         mcreate_path2fid 0120666 0 0 "remote_dir/link" "symbolic link"
13394         mcreate_path2fid 0140666 0 0 "remote_dir/sock" "socket"
13395 }
13396 run_test 226b "call path2fid and fid2path on files of all type under remote dir"
13397
13398 # LU-1299 Executing or running ldd on a truncated executable does not
13399 # cause an out-of-memory condition.
13400 test_227() {
13401         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13402         [ -z "$(which ldd)" ] && skip "should have ldd tool" && return
13403         dd if=$(which date) of=$MOUNT/date bs=1k count=1
13404         chmod +x $MOUNT/date
13405
13406         $MOUNT/date > /dev/null
13407         ldd $MOUNT/date > /dev/null
13408         rm -f $MOUNT/date
13409 }
13410 run_test 227 "running truncated executable does not cause OOM"
13411
13412 # LU-1512 try to reuse idle OI blocks
13413 test_228a() {
13414         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13415         remote_mds_nodsh && skip "remote MDS with nodsh" && return
13416         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
13417                 skip "ldiskfs only test" && return
13418
13419         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
13420         local myDIR=$DIR/$tdir
13421
13422         mkdir -p $myDIR
13423         #define OBD_FAIL_SEQ_EXHAUST             0x1002
13424         $LCTL set_param fail_loc=0x80001002
13425         createmany -o $myDIR/t- 10000
13426         $LCTL set_param fail_loc=0
13427         # The guard is current the largest FID holder
13428         touch $myDIR/guard
13429         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
13430                     tr -d '[')
13431         local IDX=$(($SEQ % 64))
13432
13433         do_facet $SINGLEMDS sync
13434         # Make sure journal flushed.
13435         sleep 6
13436         local blk1=$(do_facet $SINGLEMDS \
13437                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
13438                      grep Blockcount | awk '{print $4}')
13439
13440         # Remove old files, some OI blocks will become idle.
13441         unlinkmany $myDIR/t- 10000
13442         # Create new files, idle OI blocks should be reused.
13443         createmany -o $myDIR/t- 2000
13444         do_facet $SINGLEMDS sync
13445         # Make sure journal flushed.
13446         sleep 6
13447         local blk2=$(do_facet $SINGLEMDS \
13448                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
13449                      grep Blockcount | awk '{print $4}')
13450
13451         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
13452 }
13453 run_test 228a "try to reuse idle OI blocks"
13454
13455 test_228b() {
13456         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13457         remote_mds_nodsh && skip "remote MDS with nodsh" && return
13458         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
13459                 skip "ldiskfs only test" && return
13460
13461         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
13462         local myDIR=$DIR/$tdir
13463
13464         mkdir -p $myDIR
13465         #define OBD_FAIL_SEQ_EXHAUST             0x1002
13466         $LCTL set_param fail_loc=0x80001002
13467         createmany -o $myDIR/t- 10000
13468         $LCTL set_param fail_loc=0
13469         # The guard is current the largest FID holder
13470         touch $myDIR/guard
13471         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
13472                     tr -d '[')
13473         local IDX=$(($SEQ % 64))
13474
13475         do_facet $SINGLEMDS sync
13476         # Make sure journal flushed.
13477         sleep 6
13478         local blk1=$(do_facet $SINGLEMDS \
13479                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
13480                      grep Blockcount | awk '{print $4}')
13481
13482         # Remove old files, some OI blocks will become idle.
13483         unlinkmany $myDIR/t- 10000
13484
13485         # stop the MDT
13486         stop $SINGLEMDS || error "Fail to stop MDT."
13487         # remount the MDT
13488         start $SINGLEMDS $MDT_DEV $MDS_MOUNT_OPTS || error "Fail to start MDT."
13489
13490         df $MOUNT || error "Fail to df."
13491         # Create new files, idle OI blocks should be reused.
13492         createmany -o $myDIR/t- 2000
13493         do_facet $SINGLEMDS sync
13494         # Make sure journal flushed.
13495         sleep 6
13496         local blk2=$(do_facet $SINGLEMDS \
13497                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
13498                      grep Blockcount | awk '{print $4}')
13499
13500         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
13501 }
13502 run_test 228b "idle OI blocks can be reused after MDT restart"
13503
13504 #LU-1881
13505 test_228c() {
13506         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13507         remote_mds_nodsh && skip "remote MDS with nodsh" && return
13508         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
13509                 skip "ldiskfs only test" && return
13510
13511         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
13512         local myDIR=$DIR/$tdir
13513
13514         mkdir -p $myDIR
13515         #define OBD_FAIL_SEQ_EXHAUST             0x1002
13516         $LCTL set_param fail_loc=0x80001002
13517         # 20000 files can guarantee there are index nodes in the OI file
13518         createmany -o $myDIR/t- 20000
13519         $LCTL set_param fail_loc=0
13520         # The guard is current the largest FID holder
13521         touch $myDIR/guard
13522         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
13523                     tr -d '[')
13524         local IDX=$(($SEQ % 64))
13525
13526         do_facet $SINGLEMDS sync
13527         # Make sure journal flushed.
13528         sleep 6
13529         local blk1=$(do_facet $SINGLEMDS \
13530                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
13531                      grep Blockcount | awk '{print $4}')
13532
13533         # Remove old files, some OI blocks will become idle.
13534         unlinkmany $myDIR/t- 20000
13535         rm -f $myDIR/guard
13536         # The OI file should become empty now
13537
13538         # Create new files, idle OI blocks should be reused.
13539         createmany -o $myDIR/t- 2000
13540         do_facet $SINGLEMDS sync
13541         # Make sure journal flushed.
13542         sleep 6
13543         local blk2=$(do_facet $SINGLEMDS \
13544                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
13545                      grep Blockcount | awk '{print $4}')
13546
13547         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
13548 }
13549 run_test 228c "NOT shrink the last entry in OI index node to recycle idle leaf"
13550
13551 test_229() { # LU-2482, LU-3448
13552         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.53) ] &&
13553                 skip "No HSM $(lustre_build_version $SINGLEMDS) MDS < 2.4.53" &&
13554                 return
13555         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13556         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
13557
13558         rm -f $DIR/$tfile
13559
13560         # Create a file with a released layout and stripe count 2.
13561         $MULTIOP $DIR/$tfile H2c ||
13562                 error "failed to create file with released layout"
13563
13564         $GETSTRIPE -v $DIR/$tfile
13565
13566         local pattern=$($GETSTRIPE -L $DIR/$tfile)
13567         [ X"$pattern" = X"80000001" ] || error "pattern error ($pattern)"
13568
13569         local stripe_count=$($GETSTRIPE -c $DIR/$tfile) || error "getstripe"
13570         [ $stripe_count -eq 2 ] || error "stripe count not 2 ($stripe_count)"
13571         stat $DIR/$tfile || error "failed to stat released file"
13572
13573         chown $RUNAS_ID $DIR/$tfile ||
13574                 error "chown $RUNAS_ID $DIR/$tfile failed"
13575
13576         chgrp $RUNAS_ID $DIR/$tfile ||
13577                 error "chgrp $RUNAS_ID $DIR/$tfile failed"
13578
13579         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
13580         rm $DIR/$tfile || error "failed to remove released file"
13581 }
13582 run_test 229 "getstripe/stat/rm/attr changes work on released files"
13583
13584 test_230a() {
13585         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13586         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13587         local MDTIDX=1
13588
13589         test_mkdir $DIR/$tdir
13590         test_mkdir -i0 -c1 $DIR/$tdir/test_230_local
13591         local mdt_idx=$($GETSTRIPE -M $DIR/$tdir/test_230_local)
13592         [ $mdt_idx -ne 0 ] &&
13593                 error "create local directory on wrong MDT $mdt_idx"
13594
13595         $LFS mkdir -i $MDTIDX $DIR/$tdir/test_230 ||
13596                         error "create remote directory failed"
13597         local mdt_idx=$($GETSTRIPE -M $DIR/$tdir/test_230)
13598         [ $mdt_idx -ne $MDTIDX ] &&
13599                 error "create remote directory on wrong MDT $mdt_idx"
13600
13601         createmany -o $DIR/$tdir/test_230/t- 10 ||
13602                 error "create files on remote directory failed"
13603         mdt_idx=$($GETSTRIPE -M $DIR/$tdir/test_230/t-0)
13604         [ $mdt_idx -ne $MDTIDX ] && error "create files on wrong MDT $mdt_idx"
13605         rm -r $DIR/$tdir || error "unlink remote directory failed"
13606 }
13607 run_test 230a "Create remote directory and files under the remote directory"
13608
13609 test_230b() {
13610         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13611         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13612         local MDTIDX=1
13613         local mdt_index
13614         local i
13615         local file
13616         local pid
13617         local stripe_count
13618         local migrate_dir=$DIR/$tdir/migrate_dir
13619         local other_dir=$DIR/$tdir/other_dir
13620
13621         test_mkdir $DIR/$tdir
13622         test_mkdir -i0 -c1 $migrate_dir
13623         test_mkdir -i0 -c1 $other_dir
13624         for ((i=0; i<10; i++)); do
13625                 mkdir -p $migrate_dir/dir_${i}
13626                 createmany -o $migrate_dir/dir_${i}/f 10 ||
13627                         error "create files under remote dir failed $i"
13628         done
13629
13630         cp /etc/passwd $migrate_dir/$tfile
13631         cp /etc/passwd $other_dir/$tfile
13632         chattr +SAD $migrate_dir
13633         chattr +SAD $migrate_dir/$tfile
13634
13635         local old_dir_flag=$(lsattr -a $migrate_dir | awk '/\/\.$/ {print $1}')
13636         local old_file_flag=$(lsattr $migrate_dir/$tfile | awk '{print $1}')
13637         local old_dir_mode=$(stat -c%f $migrate_dir)
13638         local old_file_mode=$(stat -c%f $migrate_dir/$tfile)
13639
13640         mkdir -p $migrate_dir/dir_default_stripe2
13641         $SETSTRIPE -c 2 $migrate_dir/dir_default_stripe2
13642         $SETSTRIPE -c 2 $migrate_dir/${tfile}_stripe2
13643
13644         mkdir -p $other_dir
13645         ln $migrate_dir/$tfile $other_dir/luna
13646         ln $migrate_dir/$tfile $migrate_dir/sofia
13647         ln $other_dir/$tfile $migrate_dir/david
13648         ln -s $migrate_dir/$tfile $other_dir/zachary
13649         ln -s $migrate_dir/$tfile $migrate_dir/${tfile}_ln
13650         ln -s $other_dir/$tfile $migrate_dir/${tfile}_ln_other
13651
13652         $LFS migrate -m $MDTIDX $migrate_dir ||
13653                 error "fails on migrating remote dir to MDT1"
13654
13655         echo "migratate to MDT1, then checking.."
13656         for ((i = 0; i < 10; i++)); do
13657                 for file in $(find $migrate_dir/dir_${i}); do
13658                         mdt_index=$($LFS getstripe -M $file)
13659                         [ $mdt_index == $MDTIDX ] ||
13660                                 error "$file is not on MDT${MDTIDX}"
13661                 done
13662         done
13663
13664         # the multiple link file should still in MDT0
13665         mdt_index=$($LFS getstripe -M $migrate_dir/$tfile)
13666         [ $mdt_index == 0 ] ||
13667                 error "$file is not on MDT${MDTIDX}"
13668
13669         local new_dir_flag=$(lsattr -a $migrate_dir | awk '/\/\.$/ {print $1}')
13670         [ "$old_dir_flag" = "$new_dir_flag" ] ||
13671                 error " expect $old_dir_flag get $new_dir_flag"
13672
13673         local new_file_flag=$(lsattr $migrate_dir/$tfile | awk '{print $1}')
13674         [ "$old_file_flag" = "$new_file_flag" ] ||
13675                 error " expect $old_file_flag get $new_file_flag"
13676
13677         local new_dir_mode=$(stat -c%f $migrate_dir)
13678         [ "$old_dir_mode" = "$new_dir_mode" ] ||
13679                 error "expect mode $old_dir_mode get $new_dir_mode"
13680
13681         local new_file_mode=$(stat -c%f $migrate_dir/$tfile)
13682         [ "$old_file_mode" = "$new_file_mode" ] ||
13683                 error "expect mode $old_file_mode get $new_file_mode"
13684
13685         diff /etc/passwd $migrate_dir/$tfile ||
13686                 error "$tfile different after migration"
13687
13688         diff /etc/passwd $other_dir/luna ||
13689                 error "luna different after migration"
13690
13691         diff /etc/passwd $migrate_dir/sofia ||
13692                 error "sofia different after migration"
13693
13694         diff /etc/passwd $migrate_dir/david ||
13695                 error "david different after migration"
13696
13697         diff /etc/passwd $other_dir/zachary ||
13698                 error "zachary different after migration"
13699
13700         diff /etc/passwd $migrate_dir/${tfile}_ln ||
13701                 error "${tfile}_ln different after migration"
13702
13703         diff /etc/passwd $migrate_dir/${tfile}_ln_other ||
13704                 error "${tfile}_ln_other different after migration"
13705
13706         stripe_count=$($LFS getstripe -c $migrate_dir/dir_default_stripe2)
13707         [ $stripe_count = 2 ] ||
13708                 error "dir strpe_count $d != 2 after migration."
13709
13710         stripe_count=$($LFS getstripe -c $migrate_dir/${tfile}_stripe2)
13711         [ $stripe_count = 2 ] ||
13712                 error "file strpe_count $d != 2 after migration."
13713
13714         #migrate back to MDT0
13715         MDTIDX=0
13716
13717         $LFS migrate -m $MDTIDX $migrate_dir ||
13718                 error "fails on migrating remote dir to MDT0"
13719
13720         echo "migrate back to MDT0, checking.."
13721         for file in $(find $migrate_dir); do
13722                 mdt_index=$($LFS getstripe -M $file)
13723                 [ $mdt_index == $MDTIDX ] ||
13724                         error "$file is not on MDT${MDTIDX}"
13725         done
13726
13727         local new_dir_flag=$(lsattr -a $migrate_dir | awk '/\/\.$/ {print $1}')
13728         [ "$old_dir_flag" = "$new_dir_flag" ] ||
13729                 error " expect $old_dir_flag get $new_dir_flag"
13730
13731         local new_file_flag=$(lsattr $migrate_dir/$tfile | awk '{print $1}')
13732         [ "$old_file_flag" = "$new_file_flag" ] ||
13733                 error " expect $old_file_flag get $new_file_flag"
13734
13735         local new_dir_mode=$(stat -c%f $migrate_dir)
13736         [ "$old_dir_mode" = "$new_dir_mode" ] ||
13737                 error "expect mode $old_dir_mode get $new_dir_mode"
13738
13739         local new_file_mode=$(stat -c%f $migrate_dir/$tfile)
13740         [ "$old_file_mode" = "$new_file_mode" ] ||
13741                 error "expect mode $old_file_mode get $new_file_mode"
13742
13743         diff /etc/passwd ${migrate_dir}/$tfile ||
13744                 error "$tfile different after migration"
13745
13746         diff /etc/passwd ${other_dir}/luna ||
13747                 error "luna different after migration"
13748
13749         diff /etc/passwd ${migrate_dir}/sofia ||
13750                 error "sofia different after migration"
13751
13752         diff /etc/passwd ${other_dir}/zachary ||
13753                 error "zachary different after migration"
13754
13755         diff /etc/passwd $migrate_dir/${tfile}_ln ||
13756                 error "${tfile}_ln different after migration"
13757
13758         diff /etc/passwd $migrate_dir/${tfile}_ln_other ||
13759                 error "${tfile}_ln_other different after migration"
13760
13761         stripe_count=$($LFS getstripe -c ${migrate_dir}/dir_default_stripe2)
13762         [ $stripe_count = 2 ] ||
13763                 error "dir strpe_count $d != 2 after migration."
13764
13765         stripe_count=$($LFS getstripe -c ${migrate_dir}/${tfile}_stripe2)
13766         [ $stripe_count = 2 ] ||
13767                 error "file strpe_count $d != 2 after migration."
13768
13769         rm -rf $DIR/$tdir || error "rm dir failed after migration"
13770 }
13771 run_test 230b "migrate directory"
13772
13773 test_230c() {
13774         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13775         remote_mds_nodsh && skip "remote MDS with nodsh" && return
13776         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13777         local MDTIDX=1
13778         local mdt_index
13779         local file
13780         local migrate_dir=$DIR/$tdir/migrate_dir
13781
13782         #If migrating directory fails in the middle, all entries of
13783         #the directory is still accessiable.
13784         test_mkdir $DIR/$tdir
13785         test_mkdir -i0 -c1 $migrate_dir
13786         stat $migrate_dir
13787         createmany -o $migrate_dir/f 10 ||
13788                 error "create files under ${migrate_dir} failed"
13789
13790         #failed after migrating 5 entries
13791         #OBD_FAIL_MIGRATE_ENTRIES       0x1801
13792         do_facet mds1 lctl set_param fail_loc=0x20001801
13793         do_facet mds1 lctl  set_param fail_val=5
13794         local t=$(ls $migrate_dir | wc -l)
13795         $LFS migrate --mdt-index $MDTIDX $migrate_dir &&
13796                 error "migrate should fail after 5 entries"
13797
13798         mkdir $migrate_dir/dir &&
13799                 error "mkdir succeeds under migrating directory"
13800         touch $migrate_dir/file &&
13801                 error "touch file succeeds under migrating directory"
13802
13803         local u=$(ls $migrate_dir | wc -l)
13804         [ "$u" == "$t" ] || error "$u != $t during migration"
13805
13806         for file in $(find $migrate_dir); do
13807                 stat $file || error "stat $file failed"
13808         done
13809
13810         do_facet mds1 lctl set_param fail_loc=0
13811         do_facet mds1 lctl set_param fail_val=0
13812
13813         $LFS migrate -m $MDTIDX $migrate_dir ||
13814                 error "migrate open files should failed with open files"
13815
13816         echo "Finish migration, then checking.."
13817         for file in $(find $migrate_dir); do
13818                 mdt_index=$($LFS getstripe -M $file)
13819                 [ $mdt_index == $MDTIDX ] ||
13820                         error "$file is not on MDT${MDTIDX}"
13821         done
13822
13823         rm -rf $DIR/$tdir || error "rm dir failed after migration"
13824 }
13825 run_test 230c "check directory accessiblity if migration is failed"
13826
13827 test_230d() {
13828         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13829         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13830         local MDTIDX=1
13831         local mdt_index
13832         local migrate_dir=$DIR/$tdir/migrate_dir
13833         local i
13834         local j
13835
13836         test_mkdir $DIR/$tdir
13837         test_mkdir -i0 -c1 $migrate_dir
13838
13839         for ((i=0; i<100; i++)); do
13840                 test_mkdir -i0 -c1 $migrate_dir/dir_${i}
13841                 createmany -o $migrate_dir/dir_${i}/f 100 ||
13842                         error "create files under remote dir failed $i"
13843         done
13844
13845         $LFS migrate -m $MDTIDX $migrate_dir ||
13846                 error "migrate remote dir error"
13847
13848         echo "Finish migration, then checking.."
13849         for file in $(find $migrate_dir); do
13850                 mdt_index=$($LFS getstripe -M $file)
13851                 [ $mdt_index == $MDTIDX ] ||
13852                         error "$file is not on MDT${MDTIDX}"
13853         done
13854
13855         rm -rf $DIR/$tdir || error "rm dir failed after migration"
13856 }
13857 run_test 230d "check migrate big directory"
13858
13859 test_230e() {
13860         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13861         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13862         local i
13863         local j
13864         local a_fid
13865         local b_fid
13866
13867         mkdir -p $DIR/$tdir
13868         mkdir $DIR/$tdir/migrate_dir
13869         mkdir $DIR/$tdir/other_dir
13870         touch $DIR/$tdir/migrate_dir/a
13871         ln $DIR/$tdir/migrate_dir/a $DIR/$tdir/other_dir/b
13872         ls $DIR/$tdir/other_dir
13873
13874         $LFS migrate -m 1 $DIR/$tdir/migrate_dir ||
13875                 error "migrate dir fails"
13876
13877         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir)
13878         [ $mdt_index == 1 ] || error "migrate_dir is not on MDT1"
13879
13880         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir/a)
13881         [ $mdt_index == 0 ] || error "a is not on MDT0"
13882
13883         $LFS migrate -m 1 $DIR/$tdir/other_dir ||
13884                 error "migrate dir fails"
13885
13886         mdt_index=$($LFS getstripe -M $DIR/$tdir/other_dir)
13887         [ $mdt_index == 1 ] || error "other_dir is not on MDT1"
13888
13889         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir/a)
13890         [ $mdt_index == 1 ] || error "a is not on MDT1"
13891
13892         mdt_index=$($LFS getstripe -M $DIR/$tdir/other_dir/b)
13893         [ $mdt_index == 1 ] || error "b is not on MDT1"
13894
13895         a_fid=$($LFS path2fid $DIR/$tdir/migrate_dir/a)
13896         b_fid=$($LFS path2fid $DIR/$tdir/other_dir/b)
13897
13898         [ "$a_fid" = "$b_fid" ] || error "different fid after migration"
13899
13900         rm -rf $DIR/$tdir || error "rm dir failed after migration"
13901 }
13902 run_test 230e "migrate mulitple local link files"
13903
13904 test_230f() {
13905         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13906         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13907         local a_fid
13908         local ln_fid
13909
13910         mkdir -p $DIR/$tdir
13911         mkdir $DIR/$tdir/migrate_dir
13912         $LFS mkdir -i1 $DIR/$tdir/other_dir
13913         touch $DIR/$tdir/migrate_dir/a
13914         ln $DIR/$tdir/migrate_dir/a $DIR/$tdir/other_dir/ln1
13915         ln $DIR/$tdir/migrate_dir/a $DIR/$tdir/other_dir/ln2
13916         ls $DIR/$tdir/other_dir
13917
13918         # a should be migrated to MDT1, since no other links on MDT0
13919         $LFS migrate -m 1 $DIR/$tdir/migrate_dir ||
13920                 error "#1 migrate dir fails"
13921         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir)
13922         [ $mdt_index == 1 ] || error "migrate_dir is not on MDT1"
13923         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir/a)
13924         [ $mdt_index == 1 ] || error "a is not on MDT1"
13925
13926         # a should stay on MDT1, because it is a mulitple link file
13927         $LFS migrate -m 0 $DIR/$tdir/migrate_dir ||
13928                 error "#2 migrate dir fails"
13929         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir/a)
13930         [ $mdt_index == 1 ] || error "a is not on MDT1"
13931
13932         $LFS migrate -m 1 $DIR/$tdir/migrate_dir ||
13933                 error "#3 migrate dir fails"
13934
13935         a_fid=$($LFS path2fid $DIR/$tdir/migrate_dir/a)
13936         ln_fid=$($LFS path2fid $DIR/$tdir/other_dir/ln1)
13937         [ "$a_fid" = "$ln_fid" ] || error "different fid after migrate to MDT1"
13938
13939         rm -rf $DIR/$tdir/other_dir/ln1 || error "unlink ln1 fails"
13940         rm -rf $DIR/$tdir/other_dir/ln2 || error "unlink ln2 fails"
13941
13942         # a should be migrated to MDT0, since no other links on MDT1
13943         $LFS migrate -m 0 $DIR/$tdir/migrate_dir ||
13944                 error "#4 migrate dir fails"
13945         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir/a)
13946         [ $mdt_index == 0 ] || error "a is not on MDT0"
13947
13948         rm -rf $DIR/$tdir || error "rm dir failed after migration"
13949 }
13950 run_test 230f "migrate mulitple remote link files"
13951
13952 test_230g() {
13953         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13954         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13955
13956         mkdir -p $DIR/$tdir/migrate_dir
13957
13958         $LFS migrate -m 1000 $DIR/$tdir/migrate_dir &&
13959                 error "migrating dir to non-exist MDT succeeds"
13960         true
13961 }
13962 run_test 230g "migrate dir to non-exist MDT"
13963
13964 test_230h() {
13965         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13966         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13967         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.64) ] &&
13968                 skip "Need MDS version at least 2.7.64" && return
13969         local mdt_index
13970
13971         mkdir -p $DIR/$tdir/migrate_dir
13972
13973         $LFS migrate -m1 $DIR &&
13974                 error "migrating mountpoint1 should fail"
13975
13976         $LFS migrate -m1 $DIR/$tdir/.. &&
13977                 error "migrating mountpoint2 should fail"
13978
13979         $LFS migrate -m1 $DIR/$tdir/migrate_dir/.. ||
13980                 error "migrating $tdir fail"
13981
13982         mdt_index=$($LFS getstripe -M $DIR/$tdir)
13983         [ $mdt_index == 1 ] || error "$mdt_index != 1 after migration"
13984
13985         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir)
13986         [ $mdt_index == 1 ] || error "$mdt_index != 1 after migration"
13987
13988 }
13989 run_test 230h "migrate .. and root"
13990
13991 test_230i() {
13992         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13993         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13994
13995         mkdir -p $DIR/$tdir/migrate_dir
13996
13997         $LFS migrate -m 1 $DIR/$tdir/migrate_dir/ ||
13998                 error "migration fails with a tailing slash"
13999
14000         $LFS migrate -m 0 $DIR/$tdir/migrate_dir// ||
14001                 error "migration fails with two tailing slashes"
14002 }
14003 run_test 230i "lfs migrate -m tolerates trailing slashes"
14004
14005 test_231a()
14006 {
14007         # For simplicity this test assumes that max_pages_per_rpc
14008         # is the same across all OSCs
14009         local max_pages=$($LCTL get_param -n osc.*.max_pages_per_rpc | head -n1)
14010         local bulk_size=$((max_pages * 4096))
14011         local brw_size=$(do_facet ost1 $LCTL get_param -n obdfilter.*.brw_size |
14012                                        head -n 1)
14013
14014         mkdir -p $DIR/$tdir
14015         $LFS setstripe -S ${brw_size}M $DIR/$tdir ||
14016                 error "failed to set stripe with -S ${brw_size}M option"
14017
14018         # clear the OSC stats
14019         $LCTL set_param osc.*.stats=0 &>/dev/null
14020         stop_writeback
14021
14022         # Client writes $bulk_size - there must be 1 rpc for $max_pages.
14023         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=$bulk_size count=1 \
14024                 oflag=direct &>/dev/null || error "dd failed"
14025
14026         sync; sleep 1; sync # just to be safe
14027         local nrpcs=$($LCTL get_param osc.*.stats |awk '/ost_write/ {print $2}')
14028         if [ x$nrpcs != "x1" ]; then
14029                 $LCTL get_param osc.*.stats
14030                 error "found $nrpcs ost_write RPCs, not 1 as expected"
14031         fi
14032
14033         start_writeback
14034         # Drop the OSC cache, otherwise we will read from it
14035         cancel_lru_locks osc
14036
14037         # clear the OSC stats
14038         $LCTL set_param osc.*.stats=0 &>/dev/null
14039
14040         # Client reads $bulk_size.
14041         dd if=$DIR/$tdir/$tfile of=/dev/null bs=$bulk_size count=1 \
14042                 iflag=direct &>/dev/null || error "dd failed"
14043
14044         nrpcs=$($LCTL get_param osc.*.stats | awk '/ost_read/ { print $2 }')
14045         if [ x$nrpcs != "x1" ]; then
14046                 $LCTL get_param osc.*.stats
14047                 error "found $nrpcs ost_read RPCs, not 1 as expected"
14048         fi
14049 }
14050 run_test 231a "checking that reading/writing of BRW RPC size results in one RPC"
14051
14052 test_231b() {
14053         mkdir -p $DIR/$tdir
14054         local i
14055         for i in {0..1023}; do
14056                 dd if=/dev/zero of=$DIR/$tdir/$tfile conv=notrunc \
14057                         seek=$((2 * i)) bs=4096 count=1 &>/dev/null ||
14058                         error "dd of=$DIR/$tdir/$tfile seek=$((2 * i)) failed"
14059         done
14060         sync
14061 }
14062 run_test 231b "must not assert on fully utilized OST request buffer"
14063
14064 test_232() {
14065         mkdir -p $DIR/$tdir
14066         #define OBD_FAIL_LDLM_OST_LVB            0x31c
14067         $LCTL set_param fail_loc=0x31c
14068
14069         # ignore dd failure
14070         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=1 || true
14071
14072         $LCTL set_param fail_loc=0
14073         umount_client $MOUNT || error "umount failed"
14074         mount_client $MOUNT || error "mount failed"
14075 }
14076 run_test 232 "failed lock should not block umount"
14077
14078 test_233a() {
14079         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.64) ] ||
14080         { skip "Need MDS version at least 2.3.64"; return; }
14081         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
14082
14083         local fid=$($LFS path2fid $MOUNT)
14084         stat $MOUNT/.lustre/fid/$fid > /dev/null ||
14085                 error "cannot access $MOUNT using its FID '$fid'"
14086 }
14087 run_test 233a "checking that OBF of the FS root succeeds"
14088
14089 test_233b() {
14090         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.5.90) ] ||
14091         { skip "Need MDS version at least 2.5.90"; return; }
14092         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
14093
14094         local fid=$($LFS path2fid $MOUNT/.lustre)
14095         stat $MOUNT/.lustre/fid/$fid > /dev/null ||
14096                 error "cannot access $MOUNT/.lustre using its FID '$fid'"
14097
14098         fid=$($LFS path2fid $MOUNT/.lustre/fid)
14099         stat $MOUNT/.lustre/fid/$fid > /dev/null ||
14100                 error "cannot access $MOUNT/.lustre/fid using its FID '$fid'"
14101 }
14102 run_test 233b "checking that OBF of the FS .lustre succeeds"
14103
14104 test_234() {
14105         local p="$TMP/sanityN-$TESTNAME.parameters"
14106         save_lustre_params client "llite.*.xattr_cache" > $p
14107         lctl set_param llite.*.xattr_cache 1 ||
14108                 { skip "xattr cache is not supported"; return 0; }
14109
14110         mkdir -p $DIR/$tdir || error "mkdir failed"
14111         touch $DIR/$tdir/$tfile || error "touch failed"
14112         # OBD_FAIL_LLITE_XATTR_ENOMEM
14113         $LCTL set_param fail_loc=0x1405
14114         # output of the form: attr 2 4 44 3 fc13 x86_64
14115         V=($(IFS=".-" rpm -q attr))
14116         if [[ ${V[1]} > 2 || ${V[2]} > 4 || ${V[3]} > 44 ||
14117               ${V[1]} = 2 && ${V[2]} = 4 && ${V[3]} = 44 && ${V[4]} > 6 ]]; then
14118                 # attr pre-2.4.44-7 had a bug with rc
14119                 # LU-3703 - SLES 11 and FC13 clients have older attr
14120                 getfattr -n user.attr $DIR/$tdir/$tfile &&
14121                         error "getfattr should have failed with ENOMEM"
14122         else
14123                 skip "LU-3703: attr version $(getfattr --version) too old"
14124         fi
14125         $LCTL set_param fail_loc=0x0
14126         rm -rf $DIR/$tdir
14127
14128         restore_lustre_params < $p
14129         rm -f $p
14130 }
14131 run_test 234 "xattr cache should not crash on ENOMEM"
14132
14133 test_235() {
14134         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.52) ] &&
14135                 skip "Need MDS version at least 2.4.52" && return
14136         flock_deadlock $DIR/$tfile
14137         local RC=$?
14138         case $RC in
14139                 0)
14140                 ;;
14141                 124) error "process hangs on a deadlock"
14142                 ;;
14143                 *) error "error executing flock_deadlock $DIR/$tfile"
14144                 ;;
14145         esac
14146 }
14147 run_test 235 "LU-1715: flock deadlock detection does not work properly"
14148
14149 #LU-2935
14150 test_236() {
14151         check_swap_layouts_support && return 0
14152         test_mkdir -p -c1 $DIR/$tdir || error "mkdir $tdir failed"
14153
14154         local ref1=/etc/passwd
14155         local ref2=/etc/group
14156         local file1=$DIR/$tdir/f1
14157         local file2=$DIR/$tdir/f2
14158
14159         $SETSTRIPE -c 1 $file1 || error "cannot setstripe on '$file1': rc = $?"
14160         cp $ref1 $file1 || error "cp $ref1 $file1 failed: rc = $?"
14161         $SETSTRIPE -c 2 $file2 || error "cannot setstripe on '$file2': rc = $?"
14162         cp $ref2 $file2 || error "cp $ref2 $file2 failed: rc = $?"
14163         local fd=$(free_fd)
14164         local cmd="exec $fd<>$file2"
14165         eval $cmd
14166         rm $file2
14167         $LFS swap_layouts $file1 /proc/self/fd/${fd} ||
14168                 error "cannot swap layouts of '$file1' and /proc/self/fd/${fd}"
14169         cmd="exec $fd>&-"
14170         eval $cmd
14171         cmp $ref2 $file1 || error "content compare failed ($ref2 != $file1)"
14172
14173         #cleanup
14174         rm -rf $DIR/$tdir
14175 }
14176 run_test 236 "Layout swap on open unlinked file"
14177
14178 # test to verify file handle related system calls
14179 # (name_to_handle_at/open_by_handle_at)
14180 # The new system calls are supported in glibc >= 2.14.
14181
14182 test_237() {
14183         echo "Test file_handle syscalls" > $DIR/$tfile ||
14184                 error "write failed"
14185         check_fhandle_syscalls $DIR/$tfile ||
14186                 error "check_fhandle_syscalls failed"
14187 }
14188 run_test 237 "Verify name_to_handle_at/open_by_handle_at syscalls"
14189
14190 # LU-4659 linkea consistency
14191 test_238() {
14192         local server_version=$(lustre_version_code $SINGLEMDS)
14193
14194         [[ $server_version -gt $(version_code 2.5.57) ]] ||
14195                 [[ $server_version -gt $(version_code 2.5.1) &&
14196                    $server_version -lt $(version_code 2.5.50) ]] ||
14197                 { skip "Need MDS version at least 2.5.58 or 2.5.2+"; return; }
14198
14199         touch $DIR/$tfile
14200         ln $DIR/$tfile $DIR/$tfile.lnk
14201         touch $DIR/$tfile.new
14202         mv $DIR/$tfile.new $DIR/$tfile
14203         local fid1=$($LFS path2fid $DIR/$tfile)
14204         local fid2=$($LFS path2fid $DIR/$tfile.lnk)
14205         local path1=$($LFS fid2path $FSNAME "$fid1")
14206         [ $tfile == $path1 ] || error "linkea inconsistent: $tfile $fid1 $path1"
14207         local path2=$($LFS fid2path $FSNAME "$fid2")
14208         [ $tfile.lnk == $path2 ] ||
14209                 error "linkea inconsistent: $tfile.lnk $fid2 $path2!"
14210         rm -f $DIR/$tfile*
14211 }
14212 run_test 238 "Verify linkea consistency"
14213
14214 test_239() {
14215         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.5.60) ] &&
14216                 skip "Need MDS version at least 2.5.60" && return
14217         local list=$(comma_list $(mdts_nodes))
14218
14219         mkdir -p $DIR/$tdir
14220         createmany -o $DIR/$tdir/f- 5000
14221         unlinkmany $DIR/$tdir/f- 5000
14222         do_nodes $list "lctl set_param -n osp*.*.sync_changes 1"
14223         changes=$(do_nodes $list "lctl get_param -n osc.*MDT*.sync_changes \
14224                         osc.*MDT*.sync_in_flight" | calc_sum)
14225         [ "$changes" -eq 0 ] || error "$changes not synced"
14226 }
14227 run_test 239 "osp_sync test"
14228
14229 test_239a() { #LU-5297
14230         remote_mds_nodsh && skip "remote MDS with nodsh" && return
14231         touch $DIR/$tfile
14232         #define OBD_FAIL_OSP_CHECK_INVALID_REC     0x2100
14233         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x2100
14234         chgrp $RUNAS_GID $DIR/$tfile
14235         wait_delete_completed
14236 }
14237 run_test 239a "process invalid osp sync record correctly"
14238
14239 test_239b() { #LU-5297
14240         remote_mds_nodsh && skip "remote MDS with nodsh" && return
14241         touch $DIR/$tfile1
14242         #define OBD_FAIL_OSP_CHECK_ENOMEM     0x2101
14243         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x2101
14244         chgrp $RUNAS_GID $DIR/$tfile1
14245         wait_delete_completed
14246         do_facet $SINGLEMDS $LCTL set_param fail_loc=0
14247         touch $DIR/$tfile2
14248         chgrp $RUNAS_GID $DIR/$tfile2
14249         wait_delete_completed
14250 }
14251 run_test 239b "process osp sync record with ENOMEM error correctly"
14252
14253 test_240() {
14254         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
14255         remote_mds_nodsh && skip "remote MDS with nodsh" && return
14256
14257         mkdir -p $DIR/$tdir
14258
14259         $LFS mkdir -i 0 $DIR/$tdir/d0 ||
14260                 error "failed to mkdir $DIR/$tdir/d0 on MDT0"
14261         $LFS mkdir -i 1 $DIR/$tdir/d0/d1 ||
14262                 error "failed to mkdir $DIR/$tdir/d0/d1 on MDT1"
14263
14264         umount_client $MOUNT || error "umount failed"
14265         #define OBD_FAIL_TGT_DELAY_CONDITIONAL   0x713
14266         do_facet mds2 lctl set_param fail_loc=0x713 fail_val=1
14267         mount_client $MOUNT || error "failed to mount client"
14268
14269         echo "stat $DIR/$tdir/d0/d1, should not fail/ASSERT"
14270         stat $DIR/$tdir/d0/d1 || error "fail to stat $DIR/$tdir/d0/d1"
14271 }
14272 run_test 240 "race between ldlm enqueue and the connection RPC (no ASSERT)"
14273
14274 test_241_bio() {
14275         for LOOP in $(seq $1); do
14276                 dd if=$DIR/$tfile of=/dev/null bs=40960 count=1 2>/dev/null
14277                 cancel_lru_locks osc || true
14278         done
14279 }
14280
14281 test_241_dio() {
14282         for LOOP in $(seq $1); do
14283                 dd if=$DIR/$tfile of=/dev/null bs=40960 count=1 \
14284                                                 iflag=direct 2>/dev/null
14285         done
14286 }
14287
14288 test_241a() { # was test_241
14289         dd if=/dev/zero of=$DIR/$tfile count=1 bs=40960
14290         ls -la $DIR/$tfile
14291         cancel_lru_locks osc
14292         test_241_bio 1000 &
14293         PID=$!
14294         test_241_dio 1000
14295         wait $PID
14296 }
14297 run_test 241a "bio vs dio"
14298
14299 test_241b() {
14300         dd if=/dev/zero of=$DIR/$tfile count=1 bs=40960
14301         ls -la $DIR/$tfile
14302         test_241_dio 1000 &
14303         PID=$!
14304         test_241_dio 1000
14305         wait $PID
14306 }
14307 run_test 241b "dio vs dio"
14308
14309 test_242() {
14310         remote_mds_nodsh && skip "remote MDS with nodsh" && return
14311         mkdir -p $DIR/$tdir
14312         touch $DIR/$tdir/$tfile
14313
14314         #define OBD_FAIL_MDS_READPAGE_PACK      0x105
14315         do_facet mds1 lctl set_param fail_loc=0x105
14316         /bin/ls $DIR/$tdir && error "ls $DIR/$tdir should fail"
14317
14318         do_facet mds1 lctl set_param fail_loc=0
14319         /bin/ls $DIR/$tdir || error "ls $DIR/$tdir failed"
14320 }
14321 run_test 242 "mdt_readpage failure should not cause directory unreadable"
14322
14323 test_243()
14324 {
14325         test_mkdir -p $DIR/$tdir
14326         group_lock_test -d $DIR/$tdir || error "A group lock test failed"
14327 }
14328 run_test 243 "various group lock tests"
14329
14330 test_244()
14331 {
14332         test_mkdir -p $DIR/$tdir
14333         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=35
14334         sendfile_grouplock $DIR/$tdir/$tfile || \
14335                 error "sendfile+grouplock failed"
14336         rm -rf $DIR/$tdir
14337 }
14338 run_test 244 "sendfile with group lock tests"
14339
14340 test_245() {
14341         local flagname="multi_mod_rpcs"
14342         local connect_data_name="max_mod_rpcs"
14343         local out
14344
14345         # check if multiple modify RPCs flag is set
14346         out=$($LCTL get_param mdc.$FSNAME-MDT0000-*.import |
14347                 grep "connect_flags:")
14348         echo "$out"
14349
14350         echo "$out" | grep -qw $flagname
14351         if [ $? -ne 0 ]; then
14352                 echo "connect flag $flagname is not set"
14353                 return
14354         fi
14355
14356         # check if multiple modify RPCs data is set
14357         out=$($LCTL get_param mdc.$FSNAME-MDT0000-*.import)
14358         echo "$out"
14359
14360         echo "$out" | grep -qw $connect_data_name ||
14361                 error "import should have connect data $connect_data_name"
14362 }
14363 run_test 245 "check mdc connection flag/data: multiple modify RPCs"
14364
14365 test_246() { # LU-7371
14366         remote_ost_nodsh && skip "remote OST with nodsh" && return
14367         [ $(lustre_version_code ost1) -lt $(version_code 2.7.62) ] &&
14368                 skip "Need OST version >= 2.7.62" && return 0
14369         do_facet ost1 $LCTL set_param fail_val=4095
14370 #define OBD_FAIL_OST_READ_SIZE          0x234
14371         do_facet ost1 $LCTL set_param fail_loc=0x234
14372         $LFS setstripe $DIR/$tfile -i 0 -c 1
14373         dd if=/dev/zero of=$DIR/$tfile bs=4095 count=1 > /dev/null 2>&1
14374         cancel_lru_locks $FSNAME-OST0000
14375         dd if=$DIR/$tfile of=/dev/null bs=1048576 || error "Read failed"
14376 }
14377 run_test 246 "Read file of size 4095 should return right length"
14378
14379 test_247a() {
14380         lctl get_param -n mdc.$FSNAME-MDT0000*.import |
14381                 grep -q subtree ||
14382                 { skip "Fileset feature is not supported"; return; }
14383
14384         local submount=${MOUNT}_$tdir
14385
14386         mkdir $MOUNT/$tdir
14387         mkdir -p $submount || error "mkdir $submount failed"
14388         FILESET="$FILESET/$tdir" mount_client $submount ||
14389                 error "mount $submount failed"
14390         echo foo > $submount/$tfile || error "write $submount/$tfile failed"
14391         [ $(cat $MOUNT/$tdir/$tfile) = "foo" ] ||
14392                 error "read $MOUNT/$tdir/$tfile failed"
14393         umount_client $submount || error "umount $submount failed"
14394         rmdir $submount
14395 }
14396 run_test 247a "mount subdir as fileset"
14397
14398 test_247b() {
14399         lctl get_param -n mdc.$FSNAME-MDT0000*.import | grep -q subtree ||
14400                 { skip "Fileset feature is not supported"; return; }
14401
14402         local submount=${MOUNT}_$tdir
14403
14404         rm -rf $MOUNT/$tdir
14405         mkdir -p $submount || error "mkdir $submount failed"
14406         SKIP_FILESET=1
14407         FILESET="$FILESET/$tdir" mount_client $submount &&
14408                 error "mount $submount should fail"
14409         rmdir $submount
14410 }
14411 run_test 247b "mount subdir that dose not exist"
14412
14413 test_247c() {
14414         lctl get_param -n mdc.$FSNAME-MDT0000*.import | grep -q subtree ||
14415                 { skip "Fileset feature is not supported"; return; }
14416
14417         local submount=${MOUNT}_$tdir
14418
14419         mkdir -p $MOUNT/$tdir/dir1
14420         mkdir -p $submount || error "mkdir $submount failed"
14421         FILESET="$FILESET/$tdir" mount_client $submount ||
14422                 error "mount $submount failed"
14423         local fid=$($LFS path2fid $MOUNT/)
14424         $LFS fid2path $submount $fid && error "fid2path should fail"
14425         umount_client $submount || error "umount $submount failed"
14426         rmdir $submount
14427 }
14428 run_test 247c "running fid2path outside root"
14429
14430 test_247d() {
14431         lctl get_param -n mdc.$FSNAME-MDT0000*.import | grep -q subtree ||
14432                 { skip "Fileset feature is not supported"; return; }
14433
14434         local submount=${MOUNT}_$tdir
14435
14436         mkdir -p $MOUNT/$tdir/dir1
14437         mkdir -p $submount || error "mkdir $submount failed"
14438         FILESET="$FILESET/$tdir" mount_client $submount ||
14439                 error "mount $submount failed"
14440         local fid=$($LFS path2fid $submount/dir1)
14441         $LFS fid2path $submount $fid || error "fid2path should succeed"
14442         umount_client $submount || error "umount $submount failed"
14443         rmdir $submount
14444 }
14445 run_test 247d "running fid2path inside root"
14446
14447 # LU-8037
14448 test_247e() {
14449         lctl get_param -n mdc.$FSNAME-MDT0000*.import |
14450                 grep -q subtree ||
14451                 { skip "Fileset feature is not supported"; return; }
14452
14453         local submount=${MOUNT}_$tdir
14454
14455         mkdir $MOUNT/$tdir
14456         mkdir -p $submount || error "mkdir $submount failed"
14457         FILESET="$FILESET/.." mount_client $submount &&
14458                 error "mount $submount should fail"
14459         rmdir $submount
14460 }
14461 run_test 247e "mount .. as fileset"
14462
14463 test_248() {
14464         local fast_read_sav=$($LCTL get_param -n llite.*.fast_read 2>/dev/null)
14465         [ -z "$fast_read_sav" ] && skip "no fast read support" && return
14466
14467         # create a large file for fast read verification
14468         dd if=/dev/zero of=$DIR/$tfile bs=1M count=128 > /dev/null 2>&1
14469
14470         # make sure the file is created correctly
14471         $CHECKSTAT -s $((128*1024*1024)) $DIR/$tfile ||
14472                 { rm -f $DIR/$tfile; skip "file creation error" && return; }
14473
14474         echo "Test 1: verify that fast read is 4 times faster on cache read"
14475
14476         # small read with fast read enabled
14477         $LCTL set_param -n llite.*.fast_read=1
14478         local t_fast=$(dd if=$DIR/$tfile of=/dev/null bs=4k 2>&1 |
14479                 egrep -o '([[:digit:]\.\,e-]+) s' | cut -d's' -f1 |
14480                 sed -e 's/,/./' -e 's/[eE]+*/\*10\^/')
14481         # small read with fast read disabled
14482         $LCTL set_param -n llite.*.fast_read=0
14483         local t_slow=$(dd if=$DIR/$tfile of=/dev/null bs=4k 2>&1 |
14484                 egrep -o '([[:digit:]\.\,e-]+) s' | cut -d's' -f1 |
14485                 sed -e 's/,/./' -e 's/[eE]+*/\*10\^/')
14486
14487         # verify that fast read is 4 times faster for cache read
14488         [ $(bc <<< "4 * $t_fast < $t_slow") -eq 1 ] ||
14489                 error_not_in_vm "fast read was not 4 times faster: " \
14490                            "$t_fast vs $t_slow"
14491
14492         echo "Test 2: verify the performance between big and small read"
14493         $LCTL set_param -n llite.*.fast_read=1
14494
14495         # 1k non-cache read
14496         cancel_lru_locks osc
14497         local t_1k=$(dd if=$DIR/$tfile of=/dev/null bs=1k 2>&1 |
14498                 egrep -o '([[:digit:]\.\,e-]+) s' | cut -d's' -f1 |
14499                 sed -e 's/,/./' -e 's/[eE]+*/\*10\^/')
14500
14501         # 1M non-cache read
14502         cancel_lru_locks osc
14503         local t_1m=$(dd if=$DIR/$tfile of=/dev/null bs=1k 2>&1 |
14504                 egrep -o '([[:digit:]\.\,e-]+) s' | cut -d's' -f1 |
14505                 sed -e 's/,/./' -e 's/[eE]+*/\*10\^/')
14506
14507         # verify that big IO is not 4 times faster than small IO
14508         [ $(bc <<< "4 * $t_1k >= $t_1m") -eq 1 ] ||
14509                 error_not_in_vm "bigger IO is way too fast: $t_1k vs $t_1m"
14510
14511         $LCTL set_param -n llite.*.fast_read=$fast_read_sav
14512         rm -f $DIR/$tfile
14513 }
14514 run_test 248 "fast read verification"
14515
14516 test_249() { # LU-7890
14517         rm -f $DIR/$tfile
14518         $SETSTRIPE -c 1 $DIR/$tfile
14519
14520         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.53) ] &&
14521         skip "Need at least version 2.8.54"
14522
14523         # Offset 2T == 4k * 512M
14524         dd if=/dev/zero of=$DIR/$tfile bs=4k count=1 seek=512M ||
14525                 error "dd to 2T offset failed"
14526 }
14527 run_test 249 "Write above 2T file size"
14528
14529 test_250() {
14530         [ "$(facet_fstype ost$(($($GETSTRIPE -i $DIR/$tfile) + 1)))" = "zfs" ] \
14531          && skip "no 16TB file size limit on ZFS" && return
14532
14533         $SETSTRIPE -c 1 $DIR/$tfile
14534         # ldiskfs extent file size limit is (16TB - 4KB - 1) bytes
14535         local size=$((16 * 1024 * 1024 * 1024 * 1024 - 4096 - 1))
14536         $TRUNCATE $DIR/$tfile $size || error "truncate $tfile to $size failed"
14537         dd if=/dev/zero of=$DIR/$tfile bs=10 count=1 oflag=append \
14538                 conv=notrunc,fsync && error "append succeeded"
14539         return 0
14540 }
14541 run_test 250 "Write above 16T limit"
14542
14543 test_251() {
14544         $SETSTRIPE -c -1 -S 1048576 $DIR/$tfile
14545
14546         #define OBD_FAIL_LLITE_LOST_LAYOUT 0x1407
14547         #Skip once - writing the first stripe will succeed
14548         $LCTL set_param fail_loc=0xa0001407 fail_val=1
14549         $MULTIOP $DIR/$tfile o:O_RDWR:w2097152c 2>&1 | grep -q "short write" &&
14550                 error "short write happened"
14551
14552         $LCTL set_param fail_loc=0xa0001407 fail_val=1
14553         $MULTIOP $DIR/$tfile or2097152c 2>&1 | grep -q "short read" &&
14554                 error "short read happened"
14555
14556         rm -f $DIR/$tfile
14557 }
14558 run_test 251 "Handling short read and write correctly"
14559
14560 test_252() {
14561         local tgt
14562         local dev
14563         local out
14564         local uuid
14565         local num
14566         local gen
14567
14568         remote_mds_nodsh && skip "remote MDS with nodsh" && return
14569         remote_ost_nodsh && skip "remote OST with nodsh" && return
14570         if [ "$(facet_fstype ost1)" != "ldiskfs" -o \
14571              "$(facet_fstype mds1)" != "ldiskfs" ]; then
14572                 skip "ldiskfs only test"
14573                 return
14574         fi
14575
14576         # check lr_reader on OST0000
14577         tgt=ost1
14578         dev=$(facet_device $tgt)
14579         out=$(do_facet $tgt $LR_READER $dev)
14580         [ $? -eq 0 ] || error "$LR_READER failed on target $tgt device $dev"
14581         echo "$out"
14582         uuid=$(echo "$out" | grep -i uuid | awk '{ print $2 }')
14583         [ "$uuid" == "$(ostuuid_from_index 0)" ] ||
14584                 error "Invalid uuid returned by $LR_READER on target $tgt"
14585         echo -e "uuid returned by $LR_READER is '$uuid'\n"
14586
14587         # check lr_reader -c on MDT0000
14588         tgt=mds1
14589         dev=$(facet_device $tgt)
14590         if ! do_facet $tgt $LR_READER -h | grep -q OPTIONS; then
14591                 echo "$LR_READER does not support additional options"
14592                 return 0
14593         fi
14594         out=$(do_facet $tgt $LR_READER -c $dev)
14595         [ $? -eq 0 ] || error "$LR_READER failed on target $tgt device $dev"
14596         echo "$out"
14597         num=$(echo "$out" | grep -c "mdtlov")
14598         [ "$num" -eq $((MDSCOUNT - 1)) ] ||
14599                 error "Invalid number of mdtlov clients returned by $LR_READER"
14600         echo -e "Number of mdtlov clients returned by $LR_READER is '$num'\n"
14601
14602         # check lr_reader -cr on MDT0000
14603         out=$(do_facet $tgt $LR_READER -cr $dev)
14604         [ $? -eq 0 ] || error "$LR_READER failed on target $tgt device $dev"
14605         echo "$out"
14606         echo "$out" | grep -q "^reply_data:$" ||
14607                 error "$LR_READER should have returned 'reply_data' section"
14608         num=$(echo "$out" | grep -c "client_generation")
14609         echo -e "Number of reply data returned by $LR_READER is '$num'\n"
14610 }
14611 run_test 252 "check lr_reader tool"
14612
14613 test_253_fill_ost() {
14614         local size_mb #how many MB should we write to pass watermark
14615         local lwm=$3  #low watermark
14616         local free_10mb #10% of free space
14617
14618         free_kb=$($LFS df $MOUNT | grep $1 | awk '{ print $4 }')
14619         size_mb=$((free_kb / 1024 - lwm))
14620         free_10mb=$((free_kb / 10240))
14621         #If 10% of free space cross low watermark use it
14622         if (( free_10mb > size_mb )); then
14623                 size_mb=$free_10mb
14624         else
14625                 #At least we need to store 1.1 of difference between
14626                 #free space and low watermark
14627                 size_mb=$((size_mb + size_mb / 10))
14628         fi
14629         if (( lwm <= $((free_kb / 1024)) )) || [ ! -f $DIR/$tdir/1 ]; then
14630                 dd if=/dev/zero of=$DIR/$tdir/1 bs=1M count=$size_mb \
14631                          oflag=append conv=notrunc
14632         fi
14633
14634         sleep_maxage
14635
14636         free_kb=$($LFS df $MOUNT | grep $1 | awk '{ print $4 }')
14637         echo "OST still has $((free_kb / 1024)) mbytes free"
14638 }
14639
14640 test_253() {
14641         local ostidx=0
14642         local rc=0
14643
14644         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14645         remote_mds_nodsh && skip "remote MDS with nodsh" && return
14646         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
14647
14648         local ost_name=$($LFS osts |
14649                 sed -n 's/^'$ostidx': \(.*\)_UUID .*/\1/p')
14650         # on the mdt's osc
14651         local mdtosc_proc1=$(get_mdtosc_proc_path $SINGLEMDS $ost_name)
14652         do_facet $SINGLEMDS $LCTL get_param -n \
14653                 osp.$mdtosc_proc1.reserved_mb_high ||
14654                 { skip  "remote MDS does not support reserved_mb_high" &&
14655                   return; }
14656
14657         rm -rf $DIR/$tdir
14658         wait_mds_ost_sync
14659         wait_delete_completed
14660         mkdir $DIR/$tdir
14661
14662         local last_wm_h=$(do_facet $SINGLEMDS $LCTL get_param -n \
14663                         osp.$mdtosc_proc1.reserved_mb_high)
14664         local last_wm_l=$(do_facet $SINGLEMDS $LCTL get_param -n \
14665                         osp.$mdtosc_proc1.reserved_mb_low)
14666         echo "prev high watermark $last_wm_h, prev low watermark $last_wm_l"
14667
14668         create_pool $FSNAME.$TESTNAME || error "Pool creation failed"
14669         do_facet mgs $LCTL pool_add $FSNAME.$TESTNAME $ost_name ||
14670                 error "Adding $ost_name to pool failed"
14671
14672         # Wait for client to see a OST at pool
14673         wait_update $HOSTNAME "$LCTL get_param -n
14674                 lov.$FSNAME-*.pools.$TESTNAME | sort -u |
14675                 grep $ost_name" "$ost_name""_UUID" $((TIMEOUT/2)) ||
14676                 error "Client can not see the pool"
14677         $SETSTRIPE $DIR/$tdir -i $ostidx -c 1 -p $FSNAME.$TESTNAME ||
14678                 error "Setstripe failed"
14679
14680         dd if=/dev/zero of=$DIR/$tdir/0 bs=1M count=10
14681         local blocks=$($LFS df $MOUNT | grep $ost_name | awk '{ print $4 }')
14682         echo "OST still has $((blocks/1024)) mbytes free"
14683
14684         local new_lwm=$((blocks/1024-10))
14685         do_facet $SINGLEMDS $LCTL set_param \
14686                         osp.$mdtosc_proc1.reserved_mb_high=$((new_lwm+5))
14687         do_facet $SINGLEMDS $LCTL set_param \
14688                         osp.$mdtosc_proc1.reserved_mb_low=$new_lwm
14689
14690         test_253_fill_ost $ost_name $mdtosc_proc1 $new_lwm
14691
14692         #First enospc could execute orphan deletion so repeat.
14693         test_253_fill_ost $ost_name $mdtosc_proc1 $new_lwm
14694
14695         local oa_status=$(do_facet $SINGLEMDS $LCTL get_param -n \
14696                         osp.$mdtosc_proc1.prealloc_status)
14697         echo "prealloc_status $oa_status"
14698
14699         dd if=/dev/zero of=$DIR/$tdir/2 bs=1M count=1 &&
14700                 error "File creation should fail"
14701         #object allocation was stopped, but we still able to append files
14702         dd if=/dev/zero of=$DIR/$tdir/1 bs=1M seek=6 count=5 oflag=append ||
14703                 error "Append failed"
14704         rm -f $DIR/$tdir/1 $DIR/$tdir/0 $DIR/$tdir/r*
14705
14706         wait_delete_completed
14707
14708         sleep_maxage
14709
14710         for i in $(seq 10 12); do
14711                 dd if=/dev/zero of=$DIR/$tdir/$i bs=1M count=1 2>/dev/null ||
14712                         error "File creation failed after rm";
14713         done
14714
14715         oa_status=$(do_facet $SINGLEMDS $LCTL get_param -n \
14716                         osp.$mdtosc_proc1.prealloc_status)
14717         echo "prealloc_status $oa_status"
14718
14719         if (( oa_status != 0 )); then
14720                 error "Object allocation still disable after rm"
14721         fi
14722         do_facet $SINGLEMDS $LCTL set_param \
14723                         osp.$mdtosc_proc1.reserved_mb_high=$last_wm_h
14724         do_facet $SINGLEMDS $LCTL set_param \
14725                         osp.$mdtosc_proc1.reserved_mb_low=$last_wm_l
14726
14727
14728         do_facet mgs $LCTL pool_remove $FSNAME.$TESTNAME $ost_name ||
14729                 error "Remove $ost_name from pool failed"
14730         do_facet mgs $LCTL pool_destroy $FSNAME.$TESTNAME ||
14731                 error "Pool destroy fialed"
14732 }
14733 run_test 253 "Check object allocation limit"
14734
14735 test_254() {
14736         local cl_user
14737
14738         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14739         remote_mds_nodsh && skip "remote MDS with nodsh" && return
14740         do_facet mds1 $LCTL get_param -n mdd.$MDT0.changelog_size ||
14741                 { skip "MDS does not support changelog_size" && return; }
14742
14743         cl_user=$(do_facet mds1 $LCTL --device $MDT0 changelog_register -n)
14744         echo "Registered as changelog user $cl_user"
14745
14746         $LFS changelog_clear $MDT0 $cl_user 0
14747
14748         local size1=$(do_facet mds1 \
14749                       $LCTL get_param -n mdd.$MDT0.changelog_size)
14750         echo "Changelog size $size1"
14751
14752         rm -rf $DIR/$tdir
14753         $LFS mkdir -i 0 $DIR/$tdir
14754         # change something
14755         mkdir -p $DIR/$tdir/pics/2008/zachy
14756         touch $DIR/$tdir/pics/2008/zachy/timestamp
14757         cp /etc/hosts $DIR/$tdir/pics/2008/zachy/pic1.jpg
14758         mv $DIR/$tdir/pics/2008/zachy $DIR/$tdir/pics/zach
14759         ln $DIR/$tdir/pics/zach/pic1.jpg $DIR/$tdir/pics/2008/portland.jpg
14760         ln -s $DIR/$tdir/pics/2008/portland.jpg $DIR/$tdir/pics/desktop.jpg
14761         rm $DIR/$tdir/pics/desktop.jpg
14762
14763         local size2=$(do_facet mds1 \
14764                       $LCTL get_param -n mdd.$MDT0.changelog_size)
14765         echo "Changelog size after work $size2"
14766
14767         do_facet mds1 $LCTL --device $MDT0 changelog_deregister $cl_user
14768
14769         if (( size2 <= size1 )); then
14770                 error "Changelog size after work should be greater than original"
14771         fi
14772         return 0
14773 }
14774 run_test 254 "Check changelog size"
14775
14776 ladvise_no_type()
14777 {
14778         local type=$1
14779         local file=$2
14780
14781         lfs ladvise -a invalid $file 2>&1 | grep "Valid types" |
14782                 awk -F: '{print $2}' | grep $type > /dev/null
14783         if [ $? -ne 0 ]; then
14784                 return 0
14785         fi
14786         return 1
14787 }
14788
14789 ladvise_no_ioctl()
14790 {
14791         local file=$1
14792
14793         lfs ladvise -a willread $file > /dev/null 2>&1
14794         if [ $? -eq 0 ]; then
14795                 return 1
14796         fi
14797
14798         lfs ladvise -a willread $file 2>&1 |
14799                 grep "Inappropriate ioctl for device" > /dev/null
14800         if [ $? -eq 0 ]; then
14801                 return 0
14802         fi
14803         return 1
14804 }
14805
14806 percent() {
14807         bc <<<"scale=2; ($1 - $2) * 100 / $2"
14808 }
14809
14810 # run a random read IO workload
14811 # usage: random_read_iops <filename> <filesize> <iosize>
14812 random_read_iops() {
14813         local file=$1
14814         local fsize=$2
14815         local iosize=${3:-4096}
14816
14817         $READS -f $file -s $fsize -b $iosize -n $((fsize / iosize)) -t 60 |
14818                 sed -e '/^$/d' -e 's#.*s, ##' -e 's#MB/s##'
14819 }
14820
14821 drop_file_oss_cache() {
14822         local file="$1"
14823         local nodes="$2"
14824
14825         $LFS ladvise -a dontneed $file 2>/dev/null ||
14826                 do_nodes $nodes "echo 3 > /proc/sys/vm/drop_caches"
14827 }
14828
14829 ladvise_willread_performance()
14830 {
14831         local repeat=10
14832         local average_origin=0
14833         local average_cache=0
14834         local average_ladvise=0
14835
14836         for ((i = 1; i <= $repeat; i++)); do
14837                 echo "Iter $i/$repeat: reading without willread hint"
14838                 cancel_lru_locks osc
14839                 drop_file_oss_cache $DIR/$tfile $(comma_list $(osts_nodes))
14840                 local speed_origin=$(random_read_iops $DIR/$tfile $size)
14841                 echo "Iter $i/$repeat: uncached speed: $speed_origin"
14842                 average_origin=$(bc <<<"$average_origin + $speed_origin")
14843
14844                 cancel_lru_locks osc
14845                 local speed_cache=$(random_read_iops $DIR/$tfile $size)
14846                 echo "Iter $i/$repeat: OSS cache speed: $speed_cache"
14847                 average_cache=$(bc <<<"$average_cache + $speed_cache")
14848
14849                 cancel_lru_locks osc
14850                 drop_file_oss_cache $DIR/$tfile $(comma_list $(osts_nodes))
14851                 $LFS ladvise -a willread $DIR/$tfile || error "ladvise failed"
14852                 local speed_ladvise=$(random_read_iops $DIR/$tfile $size)
14853                 echo "Iter $i/$repeat: ladvise speed: $speed_ladvise"
14854                 average_ladvise=$(bc <<<"$average_ladvise + $speed_ladvise")
14855         done
14856         average_origin=$(bc <<<"scale=2; $average_origin / $repeat")
14857         average_cache=$(bc <<<"scale=2; $average_cache / $repeat")
14858         average_ladvise=$(bc <<<"scale=2; $average_ladvise / $repeat")
14859
14860         speedup_cache=$(percent $average_cache $average_origin)
14861         speedup_ladvise=$(percent $average_ladvise $average_origin)
14862
14863         echo "Average uncached read: $average_origin"
14864         echo "Average speedup with OSS cached read: " \
14865                 "$average_cache = +$speedup_cache%"
14866         echo "Average speedup with ladvise willread: " \
14867                 "$average_ladvise = +$speedup_ladvise%"
14868
14869         local lowest_speedup=20
14870         if [ ${average_cache%.*} -lt $lowest_speedup ]; then
14871                 echo "Speedup with OSS cached read less than $lowest_speedup%, " \
14872                         "got $average_cache%. Skipping ladvise willread check."
14873                 return 0
14874         fi
14875
14876         # the test won't work on ZFS until it supports 'ladvise dontneed', but
14877         # it is still good to run until then to exercise 'ladvise willread'
14878         ! $LFS ladvise -a dontneed $DIR/$tfile &&
14879                 [ "$(facet_fstype ost1)" = "zfs" ] &&
14880                 echo "osd-zfs does not support dontneed or drop_caches" &&
14881                 return 0
14882
14883         lowest_speedup=$(bc <<<"scale=2; $average_cache / 2")
14884         [ ${average_ladvise%.*} -gt $lowest_speedup ] ||
14885                 error_not_in_vm "Speedup with willread is less than " \
14886                         "$lowest_speedup%, got $average_ladvise%"
14887 }
14888
14889 test_255a() {
14890         [ $(lustre_version_code ost1) -lt $(version_code 2.8.54) ] &&
14891                 skip "lustre < 2.8.54 does not support ladvise " && return
14892         remote_ost_nodsh && skip "remote OST with nodsh" && return
14893
14894         lfs setstripe -c -1 -i 0 $DIR/$tfile || error "$tfile failed"
14895
14896         ladvise_no_type willread $DIR/$tfile &&
14897                 skip "willread ladvise is not supported" && return
14898
14899         ladvise_no_ioctl $DIR/$tfile &&
14900                 skip "ladvise ioctl is not supported" && return
14901
14902         local size_mb=100
14903         local size=$((size_mb * 1048576))
14904         dd if=/dev/zero of=$DIR/$tfile bs=1048576 count=$size_mb ||
14905                 error "dd to $DIR/$tfile failed"
14906
14907         lfs ladvise -a willread $DIR/$tfile ||
14908                 error "Ladvise failed with no range argument"
14909
14910         lfs ladvise -a willread -s 0 $DIR/$tfile ||
14911                 error "Ladvise failed with no -l or -e argument"
14912
14913         lfs ladvise -a willread -e 1 $DIR/$tfile ||
14914                 error "Ladvise failed with only -e argument"
14915
14916         lfs ladvise -a willread -l 1 $DIR/$tfile ||
14917                 error "Ladvise failed with only -l argument"
14918
14919         lfs ladvise -a willread -s 2 -e 1 $DIR/$tfile &&
14920                 error "End offset should not be smaller than start offset"
14921
14922         lfs ladvise -a willread -s 2 -e 2 $DIR/$tfile &&
14923                 error "End offset should not be equal to start offset"
14924
14925         lfs ladvise -a willread -s $size -l 1 $DIR/$tfile ||
14926                 error "Ladvise failed with overflowing -s argument"
14927
14928         lfs ladvise -a willread -s 1 -e $((size + 1)) $DIR/$tfile ||
14929                 error "Ladvise failed with overflowing -e argument"
14930
14931         lfs ladvise -a willread -s 1 -l $size $DIR/$tfile ||
14932                 error "Ladvise failed with overflowing -l argument"
14933
14934         lfs ladvise -a willread -l 1 -e 2 $DIR/$tfile &&
14935                 error "Ladvise succeeded with conflicting -l and -e arguments"
14936
14937         echo "Synchronous ladvise should wait"
14938         local delay=4
14939 #define OBD_FAIL_OST_LADVISE_PAUSE       0x237
14940         do_nodes $(comma_list $(osts_nodes)) \
14941                 $LCTL set_param fail_val=$delay fail_loc=0x237
14942
14943         local start_ts=$SECONDS
14944         lfs ladvise -a willread $DIR/$tfile ||
14945                 error "Ladvise failed with no range argument"
14946         local end_ts=$SECONDS
14947         local inteval_ts=$((end_ts - start_ts))
14948
14949         if [ $inteval_ts -lt $(($delay - 1)) ]; then
14950                 error "Synchronous advice didn't wait reply"
14951         fi
14952
14953         echo "Asynchronous ladvise shouldn't wait"
14954         local start_ts=$SECONDS
14955         lfs ladvise -a willread -b $DIR/$tfile ||
14956                 error "Ladvise failed with no range argument"
14957         local end_ts=$SECONDS
14958         local inteval_ts=$((end_ts - start_ts))
14959
14960         if [ $inteval_ts -gt $(($delay / 2)) ]; then
14961                 error "Asynchronous advice blocked"
14962         fi
14963
14964         do_nodes $(comma_list $(osts_nodes)) $LCTL set_param fail_loc=0
14965         ladvise_willread_performance
14966 }
14967 run_test 255a "check 'lfs ladvise -a willread'"
14968
14969 facet_meminfo() {
14970         local facet=$1
14971         local info=$2
14972
14973         do_facet $facet "cat /proc/meminfo | grep ^${info}:" | awk '{print $2}'
14974 }
14975
14976 test_255b() {
14977         remote_ost_nodsh && skip "remote OST with nodsh" && return
14978
14979         lfs setstripe -c 1 -i 0 $DIR/$tfile
14980
14981         ladvise_no_type dontneed $DIR/$tfile &&
14982                 skip "dontneed ladvise is not supported" && return
14983
14984         ladvise_no_ioctl $DIR/$tfile &&
14985                 skip "ladvise ioctl is not supported" && return
14986
14987         [ $(lustre_version_code ost1) -lt $(version_code 2.8.54) ] &&
14988                 skip "lustre < 2.8.54 does not support ladvise" && return
14989
14990         ! $LFS ladvise -a dontneed $DIR/$tfile &&
14991                 [ "$(facet_fstype ost1)" = "zfs" ] &&
14992                 skip "zfs-osd does not support 'ladvise dontneed'" && return
14993
14994         local size_mb=100
14995         local size=$((size_mb * 1048576))
14996         # In order to prevent disturbance of other processes, only check 3/4
14997         # of the memory usage
14998         local kibibytes=$((size_mb * 1024 * 3 / 4))
14999
15000         dd if=/dev/zero of=$DIR/$tfile bs=1048576 count=$size_mb ||
15001                 error "dd to $DIR/$tfile failed"
15002
15003         local total=$(facet_meminfo ost1 MemTotal)
15004         echo "Total memory: $total KiB"
15005
15006         do_facet ost1 "sync && echo 3 > /proc/sys/vm/drop_caches"
15007         local before_read=$(facet_meminfo ost1 Cached)
15008         echo "Cache used before read: $before_read KiB"
15009
15010         lfs ladvise -a willread $DIR/$tfile ||
15011                 error "Ladvise willread failed"
15012         local after_read=$(facet_meminfo ost1 Cached)
15013         echo "Cache used after read: $after_read KiB"
15014
15015         lfs ladvise -a dontneed $DIR/$tfile ||
15016                 error "Ladvise dontneed again failed"
15017         local no_read=$(facet_meminfo ost1 Cached)
15018         echo "Cache used after dontneed ladvise: $no_read KiB"
15019
15020         if [ $total -lt $((before_read + kibibytes)) ]; then
15021                 echo "Memory is too small, abort checking"
15022                 return 0
15023         fi
15024
15025         if [ $((before_read + kibibytes)) -gt $after_read ]; then
15026                 error "Ladvise willread should use more memory" \
15027                         "than $kibibytes KiB"
15028         fi
15029
15030         if [ $((no_read + kibibytes)) -gt $after_read ]; then
15031                 error "Ladvise dontneed should release more memory" \
15032                         "than $kibibytes KiB"
15033         fi
15034 }
15035 run_test 255b "check 'lfs ladvise -a dontneed'"
15036
15037 test_256() {
15038         local cl_user
15039         local cat_sl
15040         local mdt_dev
15041
15042         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15043         remote_mds_nodsh && skip "remote MDS with nodsh" && return
15044         [ "$(facet_fstype mds1)" != "ldiskfs" ] &&
15045                 skip "ldiskfs only test" && return
15046
15047         mdt_dev=$(mdsdevname 1)
15048         echo $mdt_dev
15049         cl_user=$(do_facet mds1 \
15050         "$LCTL get_param -n mdd.$MDT0.changelog_users | grep cl")
15051         if [[ -n $cl_user ]]; then
15052                 skip "active changelog user"
15053                 return
15054         fi
15055
15056         cl_user=$(do_facet mds1 $LCTL --device $MDT0 changelog_register -n)
15057         echo "Registered as changelog user $cl_user"
15058
15059         rm -rf $DIR/$tdir
15060         mkdir -p $DIR/$tdir
15061
15062         $LFS changelog_clear $MDT0 $cl_user 0
15063
15064         # change something
15065         touch $DIR/$tdir/{1..10}
15066
15067         # stop the MDT
15068         stop mds1 || error "Fail to stop MDT."
15069
15070         # remount the MDT
15071         start mds1 $mdt_dev $MDS_MOUNT_OPTS || error "Fail to start MDT."
15072
15073         #after mount new plainllog is used
15074         touch $DIR/$tdir/{11..19}
15075         local TEMP256FILE=$(mktemp TEMP256XXXXXX)
15076         cat_sl=$(do_facet mds1 \
15077         "$DEBUGFS -R \\\"dump changelog_catalog $TEMP256FILE\\\" $mdt_dev; \
15078          llog_reader $TEMP256FILE | grep \\\"type=1064553b\\\" | wc -l")
15079         rm $TEMP256FILE
15080
15081         if (( cat_sl != 2 )); then
15082                 do_facet mds1 $LCTL --device $MDT0 changelog_deregister $cl_user
15083                 error "Changelog catalog has wrong number of slots $cat_sl"
15084         fi
15085
15086         $LFS changelog_clear $MDT0 $cl_user 0
15087
15088         TEMP256FILE=$(mktemp TEMP256XXXXXX)
15089         cat_sl=$(do_facet mds1 \
15090         "$DEBUGFS -R \\\"dump changelog_catalog $TEMP256FILE\\\" $mdt_dev; \
15091          llog_reader $TEMP256FILE | grep \\\"type=1064553b\\\" | wc -l")
15092         rm $TEMP256FILE
15093
15094         do_facet mds1 $LCTL --device $MDT0 changelog_deregister $cl_user
15095
15096         if (( cat_sl == 2 )); then
15097                 error "Empty plain llog was not deleted from changelog catalog"
15098         fi
15099         if (( cat_sl != 1 )); then
15100                 error "Active plain llog shouldn\`t be deleted from catalog"
15101         fi
15102 }
15103 run_test 256 "Check llog delete for empty and not full state"
15104
15105 test_257() {
15106         remote_mds_nodsh && skip "remote MDS with nodsh" && return
15107         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.55) ]] &&
15108                 skip "Need MDS version at least 2.8.55" && return
15109
15110         test_mkdir -p $DIR/$tdir
15111
15112         setfattr -n trusted.name1 -v value1 $DIR/$tdir ||
15113                 error "setfattr -n trusted.name1=value1 $DIR/$tdir failed"
15114         stat $DIR/$tdir
15115
15116 #define OBD_FAIL_MDS_XATTR_REP                  0x161
15117         local mdtidx=$($LFS getstripe -M $DIR/$tdir)
15118         local facet=mds$((mdtidx + 1))
15119         set_nodes_failloc $(facet_active_host $facet) 0x80000161
15120         getfattr -n trusted.name1 $DIR/$tdir 2> /dev/null
15121
15122         stop $facet || error "stop MDS failed"
15123         start $facet $(mdsdevname $((mdtidx + 1))) $MDS_MOUNT_OPTS ||
15124                 error "start MDS fail"
15125 }
15126 run_test 257 "xattr locks are not lost"
15127
15128 # Verify we take the i_mutex when security requires it
15129 test_258a() {
15130 #define OBD_FAIL_IMUTEX_SEC 0x141c
15131         $LCTL set_param fail_loc=0x141c
15132         touch $DIR/$tfile
15133         chmod u+s $DIR/$tfile
15134         chmod a+rwx $DIR/$tfile
15135         $RUNAS dd if=/dev/zero of=$DIR/$tfile bs=4k count=1 oflag=append
15136         RC=$?
15137         if [ $RC -ne 0 ]; then
15138                 error "error, failed to take i_mutex, rc=$?"
15139         fi
15140         rm -f $DIR/$tfile
15141 }
15142 run_test 258a
15143
15144 # Verify we do NOT take the i_mutex in the normal case
15145 test_258b() {
15146 #define OBD_FAIL_IMUTEX_NOSEC 0x141d
15147         $LCTL set_param fail_loc=0x141d
15148         touch $DIR/$tfile
15149         chmod a+rwx $DIR
15150         chmod a+rw $DIR/$tfile
15151         $RUNAS dd if=/dev/zero of=$DIR/$tfile bs=4k count=1 oflag=append
15152         RC=$?
15153         if [ $RC -ne 0 ]; then
15154                 error "error, took i_mutex unnecessarily, rc=$?"
15155         fi
15156         rm -f $DIR/$tfile
15157
15158 }
15159 run_test 258b "verify i_mutex security behavior"
15160
15161 test_260() {
15162 #define OBD_FAIL_MDC_CLOSE               0x806
15163         $LCTL set_param fail_loc=0x80000806
15164         touch $DIR/$tfile
15165
15166 }
15167 run_test 260 "Check mdc_close fail"
15168
15169 cleanup_test_300() {
15170         trap 0
15171         umask $SAVE_UMASK
15172 }
15173 test_striped_dir() {
15174         local mdt_index=$1
15175         local stripe_count
15176         local stripe_index
15177
15178         mkdir -p $DIR/$tdir
15179
15180         SAVE_UMASK=$(umask)
15181         trap cleanup_test_300 RETURN EXIT
15182
15183         $LFS setdirstripe -i $mdt_index -c 2 -t all_char -m 755 \
15184                                                 $DIR/$tdir/striped_dir ||
15185                 error "set striped dir error"
15186
15187         local mode=$(stat -c%a $DIR/$tdir/striped_dir)
15188         [ "$mode" = "755" ] || error "expect 755 got $mode"
15189
15190         $LFS getdirstripe $DIR/$tdir/striped_dir > /dev/null 2>&1 ||
15191                 error "getdirstripe failed"
15192         stripe_count=$($LFS getdirstripe -c $DIR/$tdir/striped_dir)
15193         if [ "$stripe_count" != "2" ]; then
15194                 error "1:stripe_count is $stripe_count, expect 2"
15195         fi
15196         stripe_count=$($LFS getdirstripe -T $DIR/$tdir/striped_dir)
15197         if [ "$stripe_count" != "2" ]; then
15198                 error "2:stripe_count is $stripe_count, expect 2"
15199         fi
15200
15201         stripe_index=$($LFS getdirstripe -i $DIR/$tdir/striped_dir)
15202         if [ "$stripe_index" != "$mdt_index" ]; then
15203                 error "stripe_index is $stripe_index, expect $mdt_index"
15204         fi
15205
15206         [ $(stat -c%h $DIR/$tdir/striped_dir) == '2' ] ||
15207                 error "nlink error after create striped dir"
15208
15209         mkdir $DIR/$tdir/striped_dir/a
15210         mkdir $DIR/$tdir/striped_dir/b
15211
15212         stat $DIR/$tdir/striped_dir/a ||
15213                 error "create dir under striped dir failed"
15214         stat $DIR/$tdir/striped_dir/b ||
15215                 error "create dir under striped dir failed"
15216
15217         [ $(stat -c%h $DIR/$tdir/striped_dir) == '4' ] ||
15218                 error "nlink error after mkdir"
15219
15220         rmdir $DIR/$tdir/striped_dir/a
15221         [ $(stat -c%h $DIR/$tdir/striped_dir) == '3' ] ||
15222                 error "nlink error after rmdir"
15223
15224         rmdir $DIR/$tdir/striped_dir/b
15225         [ $(stat -c%h $DIR/$tdir/striped_dir) == '2' ] ||
15226                 error "nlink error after rmdir"
15227
15228         chattr +i $DIR/$tdir/striped_dir
15229         createmany -o $DIR/$tdir/striped_dir/f 10 &&
15230                 error "immutable flags not working under striped dir!"
15231         chattr -i $DIR/$tdir/striped_dir
15232
15233         rmdir $DIR/$tdir/striped_dir ||
15234                 error "rmdir striped dir error"
15235
15236         cleanup_test_300
15237
15238         true
15239 }
15240
15241 test_300a() {
15242         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.0) ] &&
15243                 skip "skipped for lustre < 2.7.0" && return
15244         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15245         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15246
15247         test_striped_dir 0 || error "failed on striped dir on MDT0"
15248         test_striped_dir 1 || error "failed on striped dir on MDT0"
15249 }
15250 run_test 300a "basic striped dir sanity test"
15251
15252 test_300b() {
15253         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.0) ] &&
15254                 skip "skipped for lustre < 2.7.0" && return
15255         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15256         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15257         local i
15258         local mtime1
15259         local mtime2
15260         local mtime3
15261
15262         test_mkdir $DIR/$tdir || error "mkdir fail"
15263         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir ||
15264                 error "set striped dir error"
15265         for ((i=0; i<10; i++)); do
15266                 mtime1=$(stat -c %Y $DIR/$tdir/striped_dir)
15267                 sleep 1
15268                 touch $DIR/$tdir/striped_dir/file_$i ||
15269                                         error "touch error $i"
15270                 mtime2=$(stat -c %Y $DIR/$tdir/striped_dir)
15271                 [ $mtime1 -eq $mtime2 ] &&
15272                         error "mtime not change after create"
15273                 sleep 1
15274                 rm -f $DIR/$tdir/striped_dir/file_$i ||
15275                                         error "unlink error $i"
15276                 mtime3=$(stat -c %Y $DIR/$tdir/striped_dir)
15277                 [ $mtime2 -eq $mtime3 ] &&
15278                         error "mtime did not change after unlink"
15279         done
15280         true
15281 }
15282 run_test 300b "check ctime/mtime for striped dir"
15283
15284 test_300c() {
15285         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.0) ] &&
15286                 skip "skipped for lustre < 2.7.0" && return
15287         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15288         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15289         local file_count
15290
15291         mkdir -p $DIR/$tdir
15292         $LFS setdirstripe -i 0 -c 2 $DIR/$tdir/striped_dir ||
15293                 error "set striped dir error"
15294
15295         chown $RUNAS_ID:$RUNAS_GID $DIR/$tdir/striped_dir ||
15296                 error "chown striped dir failed"
15297
15298         $RUNAS createmany -o $DIR/$tdir/striped_dir/f 5000 ||
15299                 error "create 5k files failed"
15300
15301         file_count=$(ls $DIR/$tdir/striped_dir | wc -l)
15302
15303         [ "$file_count" = 5000 ] || error "file count $file_count != 5000"
15304
15305         rm -rf $DIR/$tdir
15306 }
15307 run_test 300c "chown && check ls under striped directory"
15308
15309 test_300d() {
15310         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.0) ] &&
15311                 skip "skipped for lustre < 2.7.0" && return
15312         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15313         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15314         local stripe_count
15315         local file
15316
15317         mkdir -p $DIR/$tdir
15318         $SETSTRIPE -c 2 $DIR/$tdir
15319
15320         #local striped directory
15321         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir ||
15322                 error "set striped dir error"
15323         createmany -o $DIR/$tdir/striped_dir/f 10 ||
15324                 error "create 10 files failed"
15325
15326         #remote striped directory
15327         $LFS setdirstripe -i 1 -c 2 $DIR/$tdir/remote_striped_dir ||
15328                 error "set striped dir error"
15329         createmany -o $DIR/$tdir/remote_striped_dir/f 10 ||
15330                 error "create 10 files failed"
15331
15332         for file in $(find $DIR/$tdir); do
15333                 stripe_count=$($GETSTRIPE -c $file)
15334                 [ $stripe_count -eq 2 ] ||
15335                         error "wrong stripe $stripe_count for $file"
15336         done
15337
15338         rm -rf $DIR/$tdir
15339 }
15340 run_test 300d "check default stripe under striped directory"
15341
15342 test_300e() {
15343         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
15344                 skip "Need MDS version at least 2.7.55" && return
15345         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15346         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15347         local stripe_count
15348         local file
15349
15350         mkdir -p $DIR/$tdir
15351
15352         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir ||
15353                 error "set striped dir error"
15354
15355         touch $DIR/$tdir/striped_dir/a
15356         touch $DIR/$tdir/striped_dir/b
15357         touch $DIR/$tdir/striped_dir/c
15358
15359         mkdir $DIR/$tdir/striped_dir/dir_a
15360         mkdir $DIR/$tdir/striped_dir/dir_b
15361         mkdir $DIR/$tdir/striped_dir/dir_c
15362
15363         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir/stp_a ||
15364                 error "set striped adir under striped dir error"
15365
15366         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir/stp_b ||
15367                 error "set striped bdir under striped dir error"
15368
15369         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir/stp_c ||
15370                 error "set striped cdir under striped dir error"
15371
15372         mrename $DIR/$tdir/striped_dir/dir_a $DIR/$tdir/striped_dir/dir_b ||
15373                 error "rename dir under striped dir fails"
15374
15375         mrename $DIR/$tdir/striped_dir/stp_a $DIR/$tdir/striped_dir/stp_b ||
15376                 error "rename dir under different stripes fails"
15377
15378         mrename $DIR/$tdir/striped_dir/a $DIR/$tdir/striped_dir/c ||
15379                 error "rename file under striped dir should succeed"
15380
15381         mrename $DIR/$tdir/striped_dir/dir_b $DIR/$tdir/striped_dir/dir_c ||
15382                 error "rename dir under striped dir should succeed"
15383
15384         rm -rf $DIR/$tdir
15385 }
15386 run_test 300e "check rename under striped directory"
15387
15388 test_300f() {
15389         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
15390                 skip "Need MDS version at least 2.7.55" && return
15391         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15392         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15393         local stripe_count
15394         local file
15395
15396         rm -rf $DIR/$tdir
15397         mkdir -p $DIR/$tdir
15398
15399         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir ||
15400                 error "set striped dir error"
15401
15402         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir1 ||
15403                 error "set striped dir error"
15404
15405         touch $DIR/$tdir/striped_dir/a
15406         mkdir $DIR/$tdir/striped_dir/dir_a
15407         $LFS setdirstripe -i 0 -c 2 $DIR/$tdir/striped_dir/stp_a ||
15408                 error "create striped dir under striped dir fails"
15409
15410         touch $DIR/$tdir/striped_dir1/b
15411         mkdir $DIR/$tdir/striped_dir1/dir_b
15412         $LFS setdirstripe -i 0 -c 2 $DIR/$tdir/striped_dir/stp_b ||
15413                 error "create striped dir under striped dir fails"
15414
15415         mrename $DIR/$tdir/striped_dir/dir_a $DIR/$tdir/striped_dir1/dir_b ||
15416                 error "rename dir under different striped dir should fail"
15417
15418         mrename $DIR/$tdir/striped_dir/stp_a $DIR/$tdir/striped_dir1/stp_b ||
15419                 error "rename striped dir under diff striped dir should fail"
15420
15421         mrename $DIR/$tdir/striped_dir/a $DIR/$tdir/striped_dir1/a ||
15422                 error "rename file under diff striped dirs fails"
15423
15424         rm -rf $DIR/$tdir
15425 }
15426 run_test 300f "check rename cross striped directory"
15427
15428 test_300_check_default_striped_dir()
15429 {
15430         local dirname=$1
15431         local default_count=$2
15432         local default_index=$3
15433         local stripe_count
15434         local stripe_index
15435         local dir_stripe_index
15436         local dir
15437
15438         echo "checking $dirname $default_count $default_index"
15439         $LFS setdirstripe -D -c $default_count -i $default_index \
15440                                 -t all_char $DIR/$tdir/$dirname ||
15441                 error "set default stripe on striped dir error"
15442         stripe_count=$($LFS getdirstripe -D -c $DIR/$tdir/$dirname)
15443         [ $stripe_count -eq $default_count ] ||
15444                 error "expect $default_count get $stripe_count for $dirname"
15445
15446         stripe_index=$($LFS getdirstripe -D -i $DIR/$tdir/$dirname)
15447         [ $stripe_index -eq $default_index ] ||
15448                 error "expect $default_index get $stripe_index for $dirname"
15449
15450         mkdir $DIR/$tdir/$dirname/{test1,test2,test3,test4} ||
15451                                                 error "create dirs failed"
15452
15453         createmany -o $DIR/$tdir/$dirname/f- 10 || error "create files failed"
15454         unlinkmany $DIR/$tdir/$dirname/f- 10    || error "unlink files failed"
15455         for dir in $(find $DIR/$tdir/$dirname/*); do
15456                 stripe_count=$($LFS getdirstripe -c $dir)
15457                 [ $stripe_count -eq $default_count ] ||
15458                 [ $stripe_count -eq 0 -o $default_count -eq 1 ] ||
15459                 error "stripe count $default_count != $stripe_count for $dir"
15460
15461                 stripe_index=$($LFS getdirstripe -i $dir)
15462                 [ $default_index -eq -1 -o $stripe_index -eq $default_index ] ||
15463                         error "$stripe_index != $default_index for $dir"
15464
15465                 #check default stripe
15466                 stripe_count=$($LFS getdirstripe -D -c $dir)
15467                 [ $stripe_count -eq $default_count ] ||
15468                 error "default count $default_count != $stripe_count for $dir"
15469
15470                 stripe_index=$($LFS getdirstripe -D -i $dir)
15471                 [ $stripe_index -eq $default_index ] ||
15472                 error "default index $default_index != $stripe_index for $dir"
15473         done
15474         rmdir $DIR/$tdir/$dirname/* || error "rmdir failed"
15475 }
15476
15477 test_300g() {
15478         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
15479                 skip "Need MDS version at least 2.7.55" && return
15480         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15481         local dir
15482         local stripe_count
15483         local stripe_index
15484
15485         mkdir $DIR/$tdir
15486         mkdir $DIR/$tdir/normal_dir
15487
15488         #Checking when client cache stripe index
15489         $LFS setdirstripe -c$MDSCOUNT $DIR/$tdir/striped_dir
15490         $LFS setdirstripe -D -i1 $DIR/$tdir/striped_dir ||
15491                 error "create striped_dir failed"
15492
15493         mkdir $DIR/$tdir/striped_dir/dir1 ||
15494                 error "create dir1 fails"
15495         stripe_index=$($LFS getdirstripe -i $DIR/$tdir/striped_dir/dir1)
15496         [ $stripe_index -eq 1 ] ||
15497                 error "dir1 expect 1 got $stripe_index"
15498
15499         $LFS setdirstripe -i2 $DIR/$tdir/striped_dir/dir2 ||
15500                 error "create dir2 fails"
15501         stripe_index=$($LFS getdirstripe -i $DIR/$tdir/striped_dir/dir2)
15502         [ $stripe_index -eq 2 ] ||
15503                 error "dir2 expect 2 got $stripe_index"
15504
15505         #check default stripe count/stripe index
15506         test_300_check_default_striped_dir normal_dir $MDSCOUNT 1
15507         test_300_check_default_striped_dir normal_dir 1 0
15508         test_300_check_default_striped_dir normal_dir 2 1
15509         test_300_check_default_striped_dir normal_dir 2 -1
15510
15511         #delete default stripe information
15512         echo "delete default stripeEA"
15513         $LFS setdirstripe -d $DIR/$tdir/normal_dir ||
15514                 error "set default stripe on striped dir error"
15515
15516         mkdir -p $DIR/$tdir/normal_dir/{test1,test2,test3,test4}
15517         for dir in $(find $DIR/$tdir/normal_dir/*); do
15518                 stripe_count=$($LFS getdirstripe -c $dir)
15519                 [ $stripe_count -eq 0 ] ||
15520                         error "expect 1 get $stripe_count for $dir"
15521                 stripe_index=$($LFS getdirstripe -i $dir)
15522                 [ $stripe_index -eq 0 ] ||
15523                         error "expect 0 get $stripe_index for $dir"
15524         done
15525 }
15526 run_test 300g "check default striped directory for normal directory"
15527
15528 test_300h() {
15529         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
15530                 skip "Need MDS version at least 2.7.55" && return
15531         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15532         local dir
15533         local stripe_count
15534
15535         mkdir $DIR/$tdir
15536         $LFS setdirstripe -i 0 -c $MDSCOUNT -t all_char \
15537                                         $DIR/$tdir/striped_dir ||
15538                 error "set striped dir error"
15539
15540         test_300_check_default_striped_dir striped_dir $MDSCOUNT 1
15541         test_300_check_default_striped_dir striped_dir 1 0
15542         test_300_check_default_striped_dir striped_dir 2 1
15543         test_300_check_default_striped_dir striped_dir 2 -1
15544
15545         #delete default stripe information
15546         $LFS setdirstripe -d $DIR/$tdir/striped_dir ||
15547                 error "set default stripe on striped dir error"
15548
15549         mkdir -p $DIR/$tdir/striped_dir/{test1,test2,test3,test4}
15550         for dir in $(find $DIR/$tdir/striped_dir/*); do
15551                 stripe_count=$($LFS getdirstripe -c $dir)
15552                 [ $stripe_count -eq 0 ] ||
15553                         error "expect 1 get $stripe_count for $dir"
15554         done
15555 }
15556 run_test 300h "check default striped directory for striped directory"
15557
15558 test_300i() {
15559         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
15560                 skip "Need MDS version at least 2.7.55" && return
15561         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15562         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15563         local stripe_count
15564         local file
15565
15566         mkdir $DIR/$tdir
15567
15568         $LFS setdirstripe -i 0 -c$MDSCOUNT -t all_char $DIR/$tdir/striped_dir ||
15569                 error "set striped dir error"
15570
15571         createmany -o $DIR/$tdir/striped_dir/f- 10 ||
15572                 error "create files under striped dir failed"
15573
15574         $LFS setdirstripe -i0 -c$MDSCOUNT -H all_char $DIR/$tdir/hashdir ||
15575                 error "set striped hashdir error"
15576
15577         $LFS setdirstripe -i0 -c$MDSCOUNT -H all_char $DIR/$tdir/hashdir/d0 ||
15578                 error "create dir0 under hash dir failed"
15579         $LFS setdirstripe -i0 -c$MDSCOUNT -H fnv_1a_64 $DIR/$tdir/hashdir/d1 ||
15580                 error "create dir1 under hash dir failed"
15581
15582         # unfortunately, we need to umount to clear dir layout cache for now
15583         # once we fully implement dir layout, we can drop this
15584         umount_client $MOUNT || error "umount failed"
15585         mount_client $MOUNT || error "mount failed"
15586
15587         $LFS find -H fnv_1a_64 $DIR/$tdir/hashdir
15588         local dircnt=$($LFS find -H fnv_1a_64 $DIR/$tdir/hashdir | wc -l)
15589         [ $dircnt -eq 1 ] || error "lfs find striped dir got:$dircnt,except:1"
15590
15591         #set the stripe to be unknown hash type
15592         #define OBD_FAIL_UNKNOWN_LMV_STRIPE     0x1901
15593         $LCTL set_param fail_loc=0x1901
15594         for ((i = 0; i < 10; i++)); do
15595                 $CHECKSTAT -t file $DIR/$tdir/striped_dir/f-$i ||
15596                         error "stat f-$i failed"
15597                 rm $DIR/$tdir/striped_dir/f-$i || error "unlink f-$i failed"
15598         done
15599
15600         touch $DIR/$tdir/striped_dir/f0 &&
15601                 error "create under striped dir with unknown hash should fail"
15602
15603         $LCTL set_param fail_loc=0
15604
15605         umount_client $MOUNT || error "umount failed"
15606         mount_client $MOUNT || error "mount failed"
15607
15608         return 0
15609 }
15610 run_test 300i "client handle unknown hash type striped directory"
15611
15612 test_300j() {
15613         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15614         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
15615                 skip "Need MDS version at least 2.7.55" && return
15616         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15617         local stripe_count
15618         local file
15619
15620         mkdir $DIR/$tdir
15621
15622         #define OBD_FAIL_SPLIT_UPDATE_REC       0x1702
15623         $LCTL set_param fail_loc=0x1702
15624         $LFS setdirstripe -i 0 -c$MDSCOUNT -t all_char $DIR/$tdir/striped_dir ||
15625                 error "set striped dir error"
15626
15627         createmany -o $DIR/$tdir/striped_dir/f- 10 ||
15628                 error "create files under striped dir failed"
15629
15630         $LCTL set_param fail_loc=0
15631
15632         rm -rf $DIR/$tdir || error "unlink striped dir fails"
15633
15634         return 0
15635 }
15636 run_test 300j "test large update record"
15637
15638 test_300k() {
15639         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
15640                 skip "Need MDS version at least 2.7.55" && return
15641         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15642         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15643         local stripe_count
15644         local file
15645
15646         mkdir $DIR/$tdir
15647
15648         #define OBD_FAIL_LARGE_STRIPE   0x1703
15649         $LCTL set_param fail_loc=0x1703
15650         $LFS setdirstripe -i 0 -c512 $DIR/$tdir/striped_dir ||
15651                 error "set striped dir error"
15652         $LCTL set_param fail_loc=0
15653
15654         $LFS getdirstripe $DIR/$tdir/striped_dir ||
15655                 error "getstripeddir fails"
15656         rm -rf $DIR/$tdir/striped_dir ||
15657                 error "unlink striped dir fails"
15658
15659         return 0
15660 }
15661 run_test 300k "test large striped directory"
15662
15663 test_300l() {
15664         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
15665                 skip "Need MDS version at least 2.7.55" && return
15666         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15667         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15668         local stripe_index
15669
15670         test_mkdir -p $DIR/$tdir/striped_dir
15671         chown $RUNAS_ID $DIR/$tdir/striped_dir ||
15672                         error "chown $RUNAS_ID failed"
15673         $LFS setdirstripe -i 1 -D $DIR/$tdir/striped_dir ||
15674                 error "set default striped dir failed"
15675
15676         #define OBD_FAIL_MDS_STALE_DIR_LAYOUT    0x158
15677         $LCTL set_param fail_loc=0x80000158
15678         $RUNAS mkdir $DIR/$tdir/striped_dir/test_dir || error "create dir fails"
15679
15680         stripe_index=$($LFS getdirstripe -i $DIR/$tdir/striped_dir/test_dir)
15681         [ $stripe_index -eq 1 ] ||
15682                 error "expect 1 get $stripe_index for $dir"
15683 }
15684 run_test 300l "non-root user to create dir under striped dir with stale layout"
15685
15686 test_300m() {
15687         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
15688                 skip "Need MDS version at least 2.7.55" && return
15689         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15690         [ $MDSCOUNT -ge 2 ] && skip "Only for single MDT" && return
15691
15692         mkdir -p $DIR/$tdir/striped_dir
15693         $LFS setdirstripe -D -c 1 $DIR/$tdir/striped_dir ||
15694                 error "set default stripes dir error"
15695
15696         mkdir $DIR/$tdir/striped_dir/a || error "mkdir a fails"
15697
15698         stripe_count=$($LFS getdirstripe -c $DIR/$tdir/striped_dir/a)
15699         [ $stripe_count -eq 0 ] ||
15700                         error "expect 0 get $stripe_count for a"
15701
15702         $LFS setdirstripe -D -c 2 $DIR/$tdir/striped_dir ||
15703                 error "set default stripes dir error"
15704
15705         mkdir $DIR/$tdir/striped_dir/b || error "mkdir b fails"
15706
15707         stripe_count=$($LFS getdirstripe -c $DIR/$tdir/striped_dir/b)
15708         [ $stripe_count -eq 0 ] ||
15709                         error "expect 0 get $stripe_count for b"
15710
15711         $LFS setdirstripe -D -c1 -i2 $DIR/$tdir/striped_dir ||
15712                 error "set default stripes dir error"
15713
15714         mkdir $DIR/$tdir/striped_dir/c &&
15715                 error "default stripe_index is invalid, mkdir c should fails"
15716
15717         rm -rf $DIR/$tdir || error "rmdir fails"
15718 }
15719 run_test 300m "setstriped directory on single MDT FS"
15720
15721 cleanup_300n() {
15722         local list=$(comma_list $(mdts_nodes))
15723
15724         trap 0
15725         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=0
15726 }
15727
15728 test_300n() {
15729         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
15730                 skip "Need MDS version at least 2.7.55" && return
15731         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15732         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15733         remote_mds_nodsh && skip "remote MDS with nodsh" && return
15734
15735         local stripe_index
15736         local list=$(comma_list $(mdts_nodes))
15737
15738         trap cleanup_300n RETURN EXIT
15739         mkdir -p $DIR/$tdir
15740         chmod 777 $DIR/$tdir
15741         $RUNAS $LFS setdirstripe -i0 -c$MDSCOUNT \
15742                                 $DIR/$tdir/striped_dir > /dev/null 2>&1 &&
15743                 error "create striped dir succeeds with gid=0"
15744
15745         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=-1
15746         $RUNAS $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/striped_dir ||
15747                 error "create striped dir fails with gid=-1"
15748
15749         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=0
15750         $RUNAS $LFS setdirstripe -i 1 -c$MDSCOUNT -D \
15751                                 $DIR/$tdir/striped_dir > /dev/null 2>&1 &&
15752                 error "set default striped dir succeeds with gid=0"
15753
15754
15755         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=-1
15756         $RUNAS $LFS setdirstripe -i 1 -c$MDSCOUNT -D $DIR/$tdir/striped_dir ||
15757                 error "set default striped dir fails with gid=-1"
15758
15759
15760         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=0
15761         $RUNAS mkdir $DIR/$tdir/striped_dir/test_dir ||
15762                                         error "create test_dir fails"
15763         $RUNAS mkdir $DIR/$tdir/striped_dir/test_dir1 ||
15764                                         error "create test_dir1 fails"
15765         $RUNAS mkdir $DIR/$tdir/striped_dir/test_dir2 ||
15766                                         error "create test_dir2 fails"
15767         cleanup_300n
15768 }
15769 run_test 300n "non-root user to create dir under striped dir with default EA"
15770
15771 test_300o() {
15772         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
15773                 skip "Need MDS version at least 2.7.55" && return
15774         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15775         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15776         local numfree1
15777         local numfree2
15778
15779         mkdir -p $DIR/$tdir
15780
15781         numfree1=$(lctl get_param -n mdc.*MDT0000*.filesfree)
15782         numfree2=$(lctl get_param -n mdc.*MDT0001*.filesfree)
15783         if [ $numfree1 -lt 66000 -o $numfree2 -lt 66000 ]; then
15784                 skip "not enough free inodes $numfree1 $numfree2"
15785                 return
15786         fi
15787
15788         numfree1=$(lctl get_param -n mdc.*MDT0000-mdc-*.kbytesfree)
15789         numfree2=$(lctl get_param -n mdc.*MDT0001-mdc-*.kbytesfree)
15790         if [ $numfree1 -lt 300000 -o $numfree2 -lt 300000 ]; then
15791                 skip "not enough free space $numfree1 $numfree2"
15792                 return
15793         fi
15794
15795         $LFS setdirstripe -c2 $DIR/$tdir/striped_dir ||
15796                 error "setdirstripe fails"
15797
15798         createmany -d $DIR/$tdir/striped_dir/d 131000 ||
15799                 error "create dirs fails"
15800
15801         $LCTL set_param ldlm.namespaces.*mdc-*.lru_size=0
15802         ls $DIR/$tdir/striped_dir > /dev/null ||
15803                 error "ls striped dir fails"
15804         unlinkmany -d $DIR/$tdir/striped_dir/d 131000 ||
15805                 error "unlink big striped dir fails"
15806 }
15807 run_test 300o "unlink big sub stripe(> 65000 subdirs)"
15808
15809 test_300p() {
15810         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15811         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15812         remote_mds_nodsh && skip "remote MDS with nodsh" && return
15813
15814         mkdir -p $DIR/$tdir
15815
15816         #define OBD_FAIL_OUT_ENOSPC     0x1704
15817         do_facet mds2 lctl set_param fail_loc=0x80001704
15818         $LFS setdirstripe -c2 $DIR/$tdir/bad_striped_dir > /dev/null 2>&1 &&
15819                         error "create striped directory should fail"
15820
15821         [ -e $DIR/$tdir/bad_striped_dir ] && error "striped dir exists"
15822
15823         $LFS setdirstripe -c2 $DIR/$tdir/bad_striped_dir
15824         true
15825 }
15826 run_test 300p "create striped directory without space"
15827
15828 test_300q() {
15829         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15830         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15831
15832         local fd=$(free_fd)
15833         local cmd="exec $fd<$tdir"
15834         cd $DIR
15835         $LFS mkdir -c $MDSCOUNT $tdir || error "create $tdir fails"
15836         eval $cmd
15837         cmd="exec $fd<&-"
15838         trap "eval $cmd" EXIT
15839         cd $tdir || error "cd $tdir fails"
15840         rmdir  ../$tdir || error "rmdir $tdir fails"
15841         mkdir local_dir && error "create dir succeeds"
15842         $LFS setdirstripe -i1 remote_dir && error "create remote dir succeeds"
15843         eval $cmd
15844         return 0
15845 }
15846 run_test 300q "create remote directory under orphan directory"
15847
15848 prepare_remote_file() {
15849         mkdir $DIR/$tdir/src_dir ||
15850                 error "create remote source failed"
15851
15852         cp /etc/hosts $DIR/$tdir/src_dir/a || error
15853         touch $DIR/$tdir/src_dir/a
15854
15855         $LFS mkdir -i 1 $DIR/$tdir/tgt_dir ||
15856                 error "create remote target dir failed"
15857
15858         touch $DIR/$tdir/tgt_dir/b
15859
15860         mrename $DIR/$tdir/src_dir/a $DIR/$tdir/tgt_dir/b ||
15861                 error "rename dir cross MDT failed!"
15862
15863         $CHECKSTAT -t file $DIR/$tdir/src_dir/a &&
15864                 error "src_child still exists after rename"
15865
15866         $CHECKSTAT -t file $DIR/$tdir/tgt_dir/b ||
15867                 error "missing file(a) after rename"
15868
15869         diff /etc/hosts $DIR/$tdir/tgt_dir/b ||
15870                 error "diff after rename"
15871 }
15872
15873 test_310a() {
15874         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 4 MDTs" && return
15875         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15876         local remote_file=$DIR/$tdir/tgt_dir/b
15877
15878         mkdir -p $DIR/$tdir
15879
15880         prepare_remote_file || error "prepare remote file failed"
15881
15882         #open-unlink file
15883         $OPENUNLINK $remote_file $remote_file || error
15884         $CHECKSTAT -a $remote_file || error
15885 }
15886 run_test 310a "open unlink remote file"
15887
15888 test_310b() {
15889         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 4 MDTs" && return
15890         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15891         local remote_file=$DIR/$tdir/tgt_dir/b
15892
15893         mkdir -p $DIR/$tdir
15894
15895         prepare_remote_file || error "prepare remote file failed"
15896
15897         ln $remote_file $DIR/$tfile || error "link failed for remote file"
15898         $MULTIOP $DIR/$tfile Ouc || error "mulitop failed"
15899         $CHECKSTAT -t file $remote_file || error "check file failed"
15900 }
15901 run_test 310b "unlink remote file with multiple links while open"
15902
15903 test_310c() {
15904         [[ $MDSCOUNT -lt 4 ]] && skip "needs >= 4 MDTs" && return
15905         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15906         local remote_file=$DIR/$tdir/tgt_dir/b
15907
15908         mkdir -p $DIR/$tdir
15909
15910         prepare_remote_file || error "prepare remote file failed"
15911
15912         ln $remote_file $DIR/$tfile || error "link failed for remote file"
15913         multiop_bg_pause $remote_file O_uc ||
15914                         error "mulitop failed for remote file"
15915         MULTIPID=$!
15916         $MULTIOP $DIR/$tfile Ouc
15917         kill -USR1 $MULTIPID
15918         wait $MULTIPID
15919 }
15920 run_test 310c "open-unlink remote file with multiple links"
15921
15922 #LU-4825
15923 test_311() {
15924         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.54) ] &&
15925                 skip "lustre < 2.8.54 does not contain LU-4825 fix" && return
15926         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15927         remote_mds_nodsh && skip "remote MDS with nodsh" && return
15928
15929         local old_iused=$($LFS df -i | grep OST0000 | awk '{ print $3 }')
15930
15931         mkdir -p $DIR/$tdir
15932         $SETSTRIPE -i 0 -c 1 $DIR/$tdir
15933         createmany -o $DIR/$tdir/$tfile. 1000
15934
15935         # statfs data is not real time, let's just calculate it
15936         old_iused=$((old_iused + 1000))
15937
15938         local count=$(do_facet $SINGLEMDS "lctl get_param -n \
15939                         osp.*OST0000*MDT0000.create_count")
15940         local max_count=$(do_facet $SINGLEMDS "lctl get_param -n \
15941                                 osp.*OST0000*MDT0000.max_create_count")
15942         for idx in $(seq $MDSCOUNT); do
15943                 do_facet mds$idx "lctl set_param -n \
15944                         osp.*OST0000*MDT000?.max_create_count=0"
15945         done
15946
15947         $SETSTRIPE -i 0 $DIR/$tdir/$tfile || error "setstripe failed"
15948         local index=$($GETSTRIPE -i $DIR/$tdir/$tfile)
15949         [ $index -ne 0 ] || error "$tfile stripe index is 0"
15950
15951         unlinkmany $DIR/$tdir/$tfile. 1000
15952
15953         for idx in $(seq $MDSCOUNT); do
15954                 do_facet mds$idx "lctl set_param -n \
15955                         osp.*OST0000*MDT000?.max_create_count=$max_count"
15956                 do_facet mds$idx "lctl set_param -n \
15957                         osp.*OST0000*MDT000?.create_count=$count"
15958         done
15959
15960         local new_iused
15961         for i in $(seq 120); do
15962                 new_iused=$($LFS df -i | grep OST0000 | awk '{ print $3 }')
15963                 # system may be too busy to destroy all objs in time, use
15964                 # a somewhat small value to not fail autotest
15965                 [ $((old_iused - new_iused)) -gt 400 ] && break
15966                 sleep 1
15967         done
15968
15969         echo "waited $i sec, old Iused $old_iused, new Iused $new_iused"
15970         [ $((old_iused - new_iused)) -gt 400 ] ||
15971                 error "objs not destroyed after unlink"
15972 }
15973 run_test 311 "disable OSP precreate, and unlink should destroy objs"
15974
15975 zfs_oid_to_objid()
15976 {
15977         local ost=$1
15978         local objid=$2
15979
15980         local vdevdir=$(dirname $(facet_vdevice $ost))
15981         local cmd="$ZDB -e -p $vdevdir -ddddd $(facet_device $ost)"
15982         local zfs_zapid=$(do_facet $ost $cmd |
15983                           grep -w "/O/0/d$((objid%32))" -C 5 |
15984                           awk '/Object/{getline; print $1}')
15985         local zfs_objid=$(do_facet $ost $cmd $zfs_zapid |
15986                           awk "/$objid = /"'{printf $3}')
15987
15988         echo $zfs_objid
15989 }
15990
15991 zfs_object_blksz() {
15992         local ost=$1
15993         local objid=$2
15994
15995         local vdevdir=$(dirname $(facet_vdevice $ost))
15996         local cmd="$ZDB -e -p $vdevdir -dddd $(facet_device $ost)"
15997         local blksz=$(do_facet $ost $cmd $objid |
15998                       awk '/dblk/{getline; printf $4}')
15999
16000         case "${blksz: -1}" in
16001                 k|K) blksz=$((${blksz:0:$((${#blksz} - 1))}*1024)) ;;
16002                 m|M) blksz=$((${blksz:0:$((${#blksz} - 1))}*1024*1024)) ;;
16003                 *) ;;
16004         esac
16005
16006         echo $blksz
16007 }
16008
16009 test_312() { # LU-4856
16010         remote_ost_nodsh && skip "remote OST with nodsh" && return
16011
16012         [ $(facet_fstype ost1) = "zfs" ] ||
16013                 { skip "the test only applies to zfs" && return; }
16014
16015         local max_blksz=$(do_facet ost1 \
16016                           $ZFS get -p recordsize $(facet_device ost1) |
16017                           awk '!/VALUE/{print $3}')
16018         local min_blksz=$(getconf PAGE_SIZE)
16019
16020         # to make life a little bit easier
16021         $LFS mkdir -c 1 -i 0 $DIR/$tdir
16022         $LFS setstripe -c 1 -i 0 $DIR/$tdir
16023
16024         local tf=$DIR/$tdir/$tfile
16025         touch $tf
16026         local oid=$($LFS getstripe $tf | awk '/obdidx/{getline; print $2}')
16027
16028         # Get ZFS object id
16029         local zfs_objid=$(zfs_oid_to_objid ost1 $oid)
16030
16031         # block size change by sequential over write
16032         local blksz
16033         for ((bs=$min_blksz; bs <= max_blksz; bs <<= 2)); do
16034                 dd if=/dev/zero of=$tf bs=$bs count=1 oflag=sync conv=notrunc
16035
16036                 blksz=$(zfs_object_blksz ost1 $zfs_objid)
16037                 [ $blksz -eq $bs ] || error "blksz error: $blksz, expected: $bs"
16038         done
16039         rm -f $tf
16040
16041         # block size change by sequential append write
16042         dd if=/dev/zero of=$tf bs=$min_blksz count=1 oflag=sync conv=notrunc
16043         oid=$($LFS getstripe $tf | awk '/obdidx/{getline; print $2}')
16044         zfs_objid=$(zfs_oid_to_objid ost1 $oid)
16045
16046         for ((count = 1; count < $((max_blksz / min_blksz)); count *= 2)); do
16047                 dd if=/dev/zero of=$tf bs=$min_blksz count=$count seek=$count \
16048                         oflag=sync conv=notrunc
16049
16050                 blksz=$(zfs_object_blksz ost1 $zfs_objid)
16051                 [ $blksz -eq $((2 * count * min_blksz)) ] ||
16052                         error "blksz error, actual $blksz, "    \
16053                                 "expected: 2 * $count * $min_blksz"
16054         done
16055         rm -f $tf
16056
16057         # random write
16058         touch $tf
16059         oid=$($LFS getstripe $tf | awk '/obdidx/{getline; print $2}')
16060         zfs_objid=$(zfs_oid_to_objid ost1 $oid)
16061
16062         dd if=/dev/zero of=$tf bs=1K count=1 oflag=sync conv=notrunc
16063         blksz=$(zfs_object_blksz ost1 $zfs_objid)
16064         [ $blksz -eq $min_blksz ] ||
16065                 error "blksz error: $blksz, expected: $min_blksz"
16066
16067         dd if=/dev/zero of=$tf bs=64K count=1 oflag=sync conv=notrunc seek=128
16068         blksz=$(zfs_object_blksz ost1 $zfs_objid)
16069         [ $blksz -eq 65536 ] || error "blksz error: $blksz, expected: 64k"
16070
16071         dd if=/dev/zero of=$tf bs=1M count=1 oflag=sync conv=notrunc
16072         blksz=$(zfs_object_blksz ost1 $zfs_objid)
16073         [ $blksz -eq 65536 ] || error "rewrite error: $blksz, expected: 64k"
16074 }
16075 run_test 312 "make sure ZFS adjusts its block size by write pattern"
16076
16077 test_313() {
16078         remote_ost_nodsh && skip "remote OST with nodsh" && return
16079
16080         local file=$DIR/$tfile
16081         rm -f $file
16082         $SETSTRIPE -c 1 -i 0 $file || error "setstripe failed"
16083
16084         # define OBD_FAIL_TGT_RCVD_EIO           0x720
16085         do_facet ost1 "$LCTL set_param fail_loc=0x720"
16086         dd if=/dev/zero of=$file bs=4096 oflag=direct count=1 &&
16087                 error "write should failed"
16088         do_facet ost1 "$LCTL set_param fail_loc=0"
16089         rm -f $file
16090 }
16091 run_test 313 "io should fail after last_rcvd update fail"
16092
16093 test_fake_rw() {
16094         local read_write=$1
16095         if [ "$read_write" = "write" ]; then
16096                 local dd_cmd="dd if=/dev/zero of=$DIR/$tfile"
16097         elif [ "$read_write" = "read" ]; then
16098                 local dd_cmd="dd of=/dev/null if=$DIR/$tfile"
16099         else
16100                 error "argument error"
16101         fi
16102
16103         # turn off debug for performance testing
16104         local saved_debug=$($LCTL get_param -n debug)
16105         $LCTL set_param debug=0
16106
16107         $SETSTRIPE -c 1 -i 0 $DIR/$tfile
16108
16109         # get ost1 size - lustre-OST0000
16110         local ost1_avail_size=$($LFS df | awk /${ost1_svc}/'{ print $4 }')
16111         local blocks=$((ost1_avail_size/2/1024)) # half avail space by megabytes
16112         [ $blocks -gt 1000 ] && blocks=1000 # 1G in maximum
16113
16114         if [ "$read_write" = "read" ]; then
16115                 truncate -s $(expr 1048576 \* $blocks) $DIR/$tfile
16116         fi
16117
16118         local start_time=$(date +%s.%N)
16119         $dd_cmd bs=1M count=$blocks oflag=sync ||
16120                 error "real dd $read_write error"
16121         local duration=$(bc <<< "$(date +%s.%N) - $start_time")
16122
16123         if [ "$read_write" = "write" ]; then
16124                 rm -f $DIR/$tfile
16125         fi
16126
16127         # define OBD_FAIL_OST_FAKE_RW           0x238
16128         do_facet ost1 $LCTL set_param fail_loc=0x238
16129
16130         local start_time=$(date +%s.%N)
16131         $dd_cmd bs=1M count=$blocks oflag=sync ||
16132                 error "fake dd $read_write error"
16133         local duration_fake=$(bc <<< "$(date +%s.%N) - $start_time")
16134
16135         if [ "$read_write" = "write" ]; then
16136                 # verify file size
16137                 cancel_lru_locks osc
16138                 $CHECKSTAT -t file -s $((blocks * 1024 * 1024)) $DIR/$tfile ||
16139                         error "$tfile size not $blocks MB"
16140         fi
16141         do_facet ost1 $LCTL set_param fail_loc=0
16142
16143         echo "fake $read_write $duration_fake vs. normal $read_write" \
16144                 "$duration in seconds"
16145         [ $(bc <<< "$duration_fake < $duration") -eq 1 ] ||
16146                 error_not_in_vm "fake write is slower"
16147
16148         $LCTL set_param -n debug="$saved_debug"
16149         rm -f $DIR/$tfile
16150 }
16151 test_399a() { # LU-7655 for OST fake write
16152         remote_ost_nodsh && skip "remote OST with nodsh" && return
16153
16154         test_fake_rw write
16155 }
16156 run_test 399a "fake write should not be slower than normal write"
16157
16158 test_399b() { # LU-8726 for OST fake read
16159         remote_ost_nodsh && skip "remote OST with nodsh" && return
16160
16161         if [ "$(facet_fstype ost1)" != "ldiskfs" ]; then
16162                 skip "ldiskfs only test" && return 0
16163         fi
16164         test_fake_rw read
16165 }
16166 run_test 399b "fake read should not be slower than normal read"
16167
16168 test_400a() { # LU-1606, was conf-sanity test_74
16169         local extra_flags=''
16170         local out=$TMP/$tfile
16171         local prefix=/usr/include/lustre
16172         local prog
16173
16174         if ! which $CC > /dev/null 2>&1; then
16175                 skip_env "$CC is not installed"
16176                 return 0
16177         fi
16178
16179         if ! [[ -d $prefix ]]; then
16180                 # Assume we're running in tree and fixup the include path.
16181                 extra_flags+=" -I$LUSTRE/../libcfs/include"
16182                 extra_flags+=" -I$LUSTRE/include"
16183                 extra_flags+=" -L$LUSTRE/utils"
16184         fi
16185
16186         for prog in $LUSTRE_TESTS_API_DIR/*.c; do
16187                 $CC -Wall -Werror $extra_flags -llustreapi -o $out $prog ||
16188                         error "client api broken"
16189         done
16190         rm -f $out
16191 }
16192 run_test 400a "Lustre client api program can compile and link"
16193
16194 test_400b() { # LU-1606, LU-5011
16195         local header
16196         local out=$TMP/$tfile
16197         local prefix=/usr/include/lustre
16198
16199         # We use a hard coded prefix so that this test will not fail
16200         # when run in tree. There are headers in lustre/include/lustre/
16201         # that are not packaged (like lustre_idl.h) and have more
16202         # complicated include dependencies (like config.h and lnet/types.h).
16203         # Since this test about correct packaging we just skip them when
16204         # they don't exist (see below) rather than try to fixup cppflags.
16205
16206         if ! which $CC > /dev/null 2>&1; then
16207                 skip_env "$CC is not installed"
16208                 return 0
16209         fi
16210
16211         for header in $prefix/*.h; do
16212                 if ! [[ -f "$header" ]]; then
16213                         continue
16214                 fi
16215
16216                 if [[ "$(basename $header)" == liblustreapi.h ]]; then
16217                         continue # liblustreapi.h is deprecated.
16218                 fi
16219
16220                 $CC -Wall -Werror -include $header -c -x c /dev/null -o $out ||
16221                         error "cannot compile '$header'"
16222         done
16223         rm -f $out
16224 }
16225 run_test 400b "packaged headers can be compiled"
16226
16227 test_401a() { #LU-7437
16228         local printf_arg=$(find -printf 2>&1 | grep "unrecognized:")
16229         [ -n "$printf_arg" ] && skip_env "find does not support -printf" &&
16230                 return
16231         #count the number of parameters by "list_param -R"
16232         local params=$($LCTL list_param -R '*' 2>/dev/null | wc -l)
16233         #count the number of parameters by listing proc files
16234         local proc_dirs=$(eval \ls -d $proc_regexp 2>/dev/null)
16235         echo "proc_dirs='$proc_dirs'"
16236         [ -n "$proc_dirs" ] || error "no proc_dirs on $HOSTNAME"
16237         local procs=$(find -L $proc_dirs -mindepth 1 -printf '%P\n' 2>/dev/null|
16238                       sort -u | wc -l)
16239
16240         [ $params -eq $procs ] ||
16241                 error "found $params parameters vs. $procs proc files"
16242
16243         # test the list_param -D option only returns directories
16244         params=$($LCTL list_param -R -D '*' 2>/dev/null | wc -l)
16245         #count the number of parameters by listing proc directories
16246         procs=$(find -L $proc_dirs -mindepth 1 -type d -printf '%P\n' 2>/dev/null |
16247                 sort -u | wc -l)
16248
16249         [ $params -eq $procs ] ||
16250                 error "found $params parameters vs. $procs proc files"
16251 }
16252 run_test 401a "Verify if 'lctl list_param -R' can list parameters recursively"
16253
16254 test_401b() {
16255         local save=$($LCTL get_param -n jobid_var)
16256         local tmp=testing
16257
16258         $LCTL set_param foo=bar jobid_var=$tmp bar=baz &&
16259                 error "no error returned when setting bad parameters"
16260
16261         local jobid_new=$($LCTL get_param -n foe jobid_var baz)
16262         [[ "$jobid_new" == "$tmp" ]] || error "jobid tmp $jobid_new != $tmp"
16263
16264         $LCTL set_param -n fog=bam jobid_var=$save bat=fog
16265         local jobid_old=$($LCTL get_param -n foe jobid_var bag)
16266         [[ "$jobid_old" == "$save" ]] || error "jobid new $jobid_old != $save"
16267 }
16268 run_test 401b "Verify 'lctl {get,set}_param' continue after error"
16269
16270 test_401c() {
16271         local jobid_var_old=$($LCTL get_param -n jobid_var)
16272         local jobid_var_new
16273
16274         $LCTL set_param jobid_var= &&
16275                 error "no error returned for 'set_param a='"
16276
16277         jobid_var_new=$($LCTL get_param -n jobid_var)
16278         [[ "$jobid_var_old" == "$jobid_var_new" ]] ||
16279                 error "jobid_var was changed by setting without value"
16280
16281         $LCTL set_param jobid_var &&
16282                 error "no error returned for 'set_param a'"
16283
16284         jobid_var_new=$($LCTL get_param -n jobid_var)
16285         [[ "$jobid_var_old" == "$jobid_var_new" ]] ||
16286                 error "jobid_var was changed by setting without value"
16287 }
16288 run_test 401c "Verify 'lctl set_param' without value fails in either format."
16289
16290 test_401d() {
16291         local jobid_var_old=$($LCTL get_param -n jobid_var)
16292         local jobid_var_new
16293         local new_value="foo=bar"
16294
16295         $LCTL set_param jobid_var=$new_value ||
16296                 error "'set_param a=b' did not accept a value containing '='"
16297
16298         jobid_var_new=$($LCTL get_param -n jobid_var)
16299         [[ "$jobid_var_new" == "$new_value" ]] ||
16300                 error "'set_param a=b' failed on a value containing '='"
16301
16302         # Reset the jobid_var to test the other format
16303         $LCTL set_param jobid_var=$jobid_var_old
16304         jobid_var_new=$($LCTL get_param -n jobid_var)
16305         [[ "$jobid_var_new" == "$jobid_var_old" ]] ||
16306                 error "failed to reset jobid_var"
16307
16308         $LCTL set_param jobid_var $new_value ||
16309                 error "'set_param a b' did not accept a value containing '='"
16310
16311         jobid_var_new=$($LCTL get_param -n jobid_var)
16312         [[ "$jobid_var_new" == "$new_value" ]] ||
16313                 error "'set_param a b' failed on a value containing '='"
16314
16315         $LCTL set_param jobid_var $jobid_var_old
16316         jobid_var_new=$($LCTL get_param -n jobid_var)
16317         [[ "$jobid_var_new" == "$jobid_var_old" ]] ||
16318                 error "failed to reset jobid_var"
16319 }
16320 run_test 401d "Verify 'lctl set_param' accepts values containing '='"
16321
16322 test_402() {
16323         local server_version=$(lustre_version_code $SINGLEMDS)
16324         [[ $server_version -ge $(version_code 2.7.66) ]] ||
16325         [[ $server_version -ge $(version_code 2.7.18.4) &&
16326                 $server_version -lt $(version_code 2.7.50) ]] ||
16327         [[ $server_version -ge $(version_code 2.7.2) &&
16328                 $server_version -lt $(version_code 2.7.11) ]] ||
16329                 { skip "Need MDS version 2.7.2+ or 2.7.18.4+ or 2.7.66+";
16330                         return; }
16331         remote_mds_nodsh && skip "remote MDS with nodsh" && return
16332         $LFS setdirstripe -i 0 $DIR/$tdir || error "setdirstripe -i 0 failed"
16333 #define OBD_FAIL_MDS_FLD_LOOKUP 0x15c
16334         do_facet mds1 "lctl set_param fail_loc=0x8000015c"
16335         touch $DIR/$tdir/$tfile && error "touch should fail with ENOENT" ||
16336                 echo "Touch failed - OK"
16337 }
16338 run_test 402 "Return ENOENT to lod_generate_and_set_lovea"
16339
16340 test_403() {
16341         local file1=$DIR/$tfile.1
16342         local file2=$DIR/$tfile.2
16343         local tfile=$TMP/$tfile
16344
16345         rm -f $file1 $file2 $tfile
16346
16347         touch $file1
16348         ln $file1 $file2
16349
16350         # 30 sec OBD_TIMEOUT in ll_getattr()
16351         # right before populating st_nlink
16352         $LCTL set_param fail_loc=0x80001409
16353         stat -c %h $file1 > $tfile &
16354
16355         # create an alias, drop all locks and reclaim the dentry
16356         < $file2
16357         cancel_lru_locks mdc
16358         cancel_lru_locks osc
16359         sysctl -w vm.drop_caches=2
16360
16361         wait
16362
16363         [ `cat $tfile` -gt 0 ] || error "wrong nlink count: `cat $tfile`"
16364
16365         rm -f $tfile $file1 $file2
16366 }
16367 run_test 403 "i_nlink should not drop to zero due to aliasing"
16368
16369 test_404() { # LU-6601
16370         local server_version=$(lustre_version_code $SINGLEMDS)
16371         [[ $server_version -ge $(version_code 2.8.53) ]] ||
16372                 { skip "Need server version newer than 2.8.52"; return 0; }
16373
16374         remote_mds_nodsh && skip "remote MDS with nodsh" && return
16375         local mosps=$(do_facet $SINGLEMDS $LCTL dl |
16376                 awk '/osp .*-osc-MDT/ { print $4}')
16377
16378         local osp
16379         for osp in $mosps; do
16380                 echo "Deactivate: " $osp
16381                 do_facet $SINGLEMDS $LCTL --device %$osp deactivate
16382                 local stat=$(do_facet $SINGLEMDS $LCTL dl |
16383                         awk -vp=$osp '$4 == p { print $2 }')
16384                 [ $stat = IN ] || {
16385                         do_facet $SINGLEMDS $LCTL dl | grep -w $osp
16386                         error "deactivate error"
16387                 }
16388                 echo "Activate: " $osp
16389                 do_facet $SINGLEMDS $LCTL --device %$osp activate
16390                 local stat=$(do_facet $SINGLEMDS $LCTL dl |
16391                         awk -vp=$osp '$4 == p { print $2 }')
16392                 [ $stat = UP ] || {
16393                         do_facet $SINGLEMDS $LCTL dl | grep -w $osp
16394                         error "activate error"
16395                 }
16396         done
16397 }
16398 run_test 404 "validate manual {de}activated works properly for OSPs"
16399
16400 test_405() {
16401         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.6.92) ] &&
16402                 skip "Layout swap lock is not supported" && return
16403
16404         check_swap_layouts_support && return 0
16405
16406         test_mkdir -p $DIR/$tdir
16407         swap_lock_test -d $DIR/$tdir ||
16408                 error "One layout swap locked test failed"
16409 }
16410 run_test 405 "Various layout swap lock tests"
16411
16412 test_406() {
16413         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
16414         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
16415         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
16416         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
16417         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.50) ] &&
16418                 skip "Need MDS version at least 2.8.50" && return
16419
16420         local def_stripenr=$($GETSTRIPE -c $MOUNT)
16421         local def_stripe_size=$($GETSTRIPE -S $MOUNT)
16422         local def_stripe_offset=$($GETSTRIPE -i $MOUNT)
16423         local def_pool=$($GETSTRIPE -p $MOUNT)
16424
16425         local test_pool=$TESTNAME
16426         pool_add $test_pool || error "pool_add failed"
16427         pool_add_targets $test_pool 0 $(($OSTCOUNT - 1)) 1 ||
16428                 error "pool_add_targets failed"
16429
16430         # parent set default stripe count only, child will stripe from both
16431         # parent and fs default
16432         $SETSTRIPE -c 1 -i 1 -S $((def_stripe_size * 2)) -p $test_pool $MOUNT ||
16433                 error "setstripe $MOUNT failed"
16434         $LFS mkdir -c $MDSCOUNT $DIR/$tdir || error "mkdir $tdir failed"
16435         $SETSTRIPE -c $OSTCOUNT $DIR/$tdir || error "setstripe $tdir failed"
16436         for i in $(seq 10); do
16437                 local f=$DIR/$tdir/$tfile.$i
16438                 touch $f || error "touch failed"
16439                 local count=$($GETSTRIPE -c $f)
16440                 [ $count -eq $OSTCOUNT ] ||
16441                         error "$f stripe count $count != $OSTCOUNT"
16442                 local offset=$($GETSTRIPE -i $f)
16443                 [ $offset -eq 1 ] || error "$f stripe offset $offset != 1"
16444                 local size=$($GETSTRIPE -S $f)
16445                 [ $size -eq $((def_stripe_size * 2)) ] ||
16446                         error "$f stripe size $size != $((def_stripe_size * 2))"
16447                 local pool=$($GETSTRIPE -p $f)
16448                 [ $pool == $test_pool ] || error "$f pool $pool != $test_pool"
16449         done
16450
16451         # change fs default striping, delete parent default striping, now child
16452         # will stripe from new fs default striping only
16453         $SETSTRIPE -c 1 -S $def_stripe_size -i 0 $MOUNT ||
16454                 error "change $MOUNT default stripe failed"
16455         $SETSTRIPE -c 0 $DIR/$tdir || error "delete $tdir default stripe failed"
16456         for i in $(seq 11 20); do
16457                 local f=$DIR/$tdir/$tfile.$i
16458                 touch $f || error "touch $f failed"
16459                 local count=$($GETSTRIPE -c $f)
16460                 [ $count -eq 1 ] || error "$f stripe count $count != 1"
16461                 local offset=$($GETSTRIPE -i $f)
16462                 [ $offset -eq 0 ] || error "$f stripe offset $offset != 0"
16463                 local size=$($GETSTRIPE -S $f)
16464                 [ $size -eq $def_stripe_size ] ||
16465                         error "$f stripe size $size != $def_stripe_size"
16466                 local pool=$($GETSTRIPE -p $f)
16467                 [ "#$pool" == "#" ] || error "$f pool $pool is set"
16468
16469         done
16470
16471         unlinkmany $DIR/$tdir/$tfile. 1 20
16472
16473         # restore FS default striping
16474         if [ -z $def_pool ]; then
16475                 $SETSTRIPE -c $def_stripenr -S $def_stripe_size \
16476                         -i $def_stripe_offset $MOUNT ||
16477                         error "restore default striping failed"
16478         else
16479                 $SETSTRIPE -c $def_stripenr -S $def_stripe_size -p $def_pool \
16480                         -i $def_stripe_offset $MOUNT ||
16481                         error "restore default striping with $def_pool failed"
16482         fi
16483
16484         local f=$DIR/$tdir/$tfile
16485         pool_remove_all_targets $test_pool $f
16486         pool_remove $test_pool $f
16487 }
16488 run_test 406 "DNE support fs default striping"
16489
16490 test_407() {
16491         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
16492         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.55) ]] &&
16493                 skip "Need MDS version at least 2.8.55" && return
16494         remote_mds_nodsh && skip "remote MDS with nodsh" && return
16495
16496         $LFS mkdir -i 0 -c 1 $DIR/$tdir.0 ||
16497                 error "$LFS mkdir -i 0 -c 1 $tdir.0 failed"
16498         $LFS mkdir -i 1 -c 1 $DIR/$tdir.1 ||
16499                 error "$LFS mkdir -i 1 -c 1 $tdir.1 failed"
16500         touch $DIR/$tdir.0/$tfile.0 || error "touch $tdir.0/$tfile.0 failed"
16501
16502         #define OBD_FAIL_DT_TXN_STOP    0x2019
16503         for idx in $(seq $MDSCOUNT); do
16504                 do_facet mds$idx "lctl set_param fail_loc=0x2019"
16505         done
16506         $LFS mkdir -c 2 $DIR/$tdir && error "$LFS mkdir -c 2 $tdir should fail"
16507         mv $DIR/$tdir.0/$tfile.0 $DIR/$tdir.1/$tfile.1 &&
16508                 error "mv $tdir.0/$tfile.0 $tdir.1/$tfile.1 should fail"
16509         true
16510 }
16511 run_test 407 "transaction fail should cause operation fail"
16512
16513 test_408() {
16514         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 oflag=direct
16515
16516         #define OBD_FAIL_OSC_BRW_PREP_REQ2        0x40a
16517         lctl set_param fail_loc=0x8000040a
16518         # let ll_prepare_partial_page() fail
16519         dd if=/dev/zero of=$DIR/$tfile bs=2048 count=1 conv=notrunc || true
16520
16521         rm -f $DIR/$tfile
16522
16523         # create at least 100 unused inodes so that
16524         # shrink_icache_memory(0) should not return 0
16525         touch $DIR/$tfile-{0..100}
16526         rm -f $DIR/$tfile-{0..100}
16527         sync
16528
16529         echo 2 > /proc/sys/vm/drop_caches
16530 }
16531 run_test 408 "drop_caches should not hang due to page leaks"
16532
16533 test_409()
16534 {
16535         [ $MDSCOUNT -lt 2 ] &&
16536                 skip "We need at least 2 MDTs for this test" && return
16537
16538         check_mount_and_prep
16539
16540         mkdir -p $DIR/$tdir || error "(0) Fail to mkdir"
16541         $LFS mkdir -i 1 -c 2 $DIR/$tdir/foo || error "(1) Fail to mkdir"
16542         touch $DIR/$tdir/guard || error "(2) Fail to create"
16543
16544         local PREFIX=$(str_repeat 'A' 128)
16545         echo "Create 1K hard links start at $(date)"
16546         createmany -l $DIR/$tdir/guard $DIR/$tdir/foo/${PREFIX}_ 1000 ||
16547                 error "(3) Fail to hard link"
16548
16549         echo "Links count should be right although linkEA overflow"
16550         stat $DIR/$tdir/guard || error "(4) Fail to stat"
16551         local linkcount=$(stat --format=%h $DIR/$tdir/guard)
16552         [ $linkcount -eq 1001 ] ||
16553                 error "(5) Unexpected hard links count: $linkcount"
16554
16555         echo "List all links start at $(date)"
16556         ls -l $DIR/$tdir/foo > /dev/null ||
16557                 error "(6) Fail to list $DIR/$tdir/foo"
16558
16559         echo "Unlink hard links start at $(date)"
16560         unlinkmany $DIR/$tdir/foo/${PREFIX}_ 1000 ||
16561                 error "(7) Fail to unlink"
16562 }
16563 run_test 409 "Large amount of cross-MDTs hard links on the same file"
16564
16565 test_410()
16566 {
16567         # Create a file, and stat it from the kernel
16568         local testfile=$DIR/$tfile
16569         touch $testfile
16570
16571         local run_id=$RANDOM
16572         local my_ino=$(stat --format "%i" $testfile)
16573
16574         # Try to insert the module. This will always fail as the
16575         # module is designed to not be inserted.
16576         insmod $LUSTRE/tests/kernel/kinode.ko run_id=$run_id fname=$testfile \
16577             &> /dev/null
16578
16579         # Anything but success is a test failure
16580         dmesg | grep -q \
16581             "lustre_kinode_$run_id: inode numbers are identical: $my_ino" ||
16582             error "no inode match"
16583 }
16584 run_test 410 "Test inode number returned from kernel thread"
16585
16586 prep_801() {
16587         [[ $(lustre_version_code mds1) -lt $(version_code 2.9.55) ]] ||
16588         [[ $(lustre_version_code ost1) -lt $(version_code 2.9.55) ]] &&
16589                 skip "Need server version at least 2.9.55" & exit 0
16590         start_full_debug_logging
16591 }
16592
16593 post_801() {
16594         stop_full_debug_logging
16595 }
16596
16597 barrier_stat() {
16598         if [ $(lustre_version_code mgs) -le $(version_code 2.10.0) ]; then
16599                 local st=$(do_facet mgs $LCTL barrier_stat $FSNAME |
16600                            awk '/The barrier for/ { print $7 }')
16601                 echo $st
16602         else
16603                 local st=$(do_facet mgs $LCTL barrier_stat -s $FSNAME)
16604                 echo \'$st\'
16605         fi
16606 }
16607
16608 barrier_expired() {
16609         local expired
16610
16611         if [ $(lustre_version_code mgs) -le $(version_code 2.10.0) ]; then
16612                 expired=$(do_facet mgs $LCTL barrier_stat $FSNAME |
16613                           awk '/will be expired/ { print $7 }')
16614         else
16615                 expired=$(do_facet mgs $LCTL barrier_stat -t $FSNAME)
16616         fi
16617
16618         echo $expired
16619 }
16620
16621 test_801a() {
16622         prep_801
16623
16624         echo "Start barrier_freeze at: $(date)"
16625         #define OBD_FAIL_BARRIER_DELAY          0x2202
16626         do_facet mgs $LCTL set_param fail_val=5 fail_loc=0x2202
16627         do_facet mgs $LCTL barrier_freeze $FSNAME 10 &
16628
16629         sleep 2
16630         local b_status=$(barrier_stat)
16631         echo "Got barrier status at: $(date)"
16632         [ "$b_status" = "'freezing_p1'" ] ||
16633                 error "(1) unexpected barrier status $b_status"
16634
16635         do_facet mgs $LCTL set_param fail_val=0 fail_loc=0
16636         wait
16637         b_status=$(barrier_stat)
16638         [ "$b_status" = "'frozen'" ] ||
16639                 error "(2) unexpected barrier status $b_status"
16640
16641         local expired=$(barrier_expired)
16642         echo "sleep $((expired + 3)) seconds, then the barrier will be expired"
16643         sleep $((expired + 3))
16644
16645         b_status=$(barrier_stat)
16646         [ "$b_status" = "'expired'" ] ||
16647                 error "(3) unexpected barrier status $b_status"
16648
16649         do_facet mgs $LCTL barrier_freeze $FSNAME 10 ||
16650                 error "(4) fail to freeze barrier"
16651
16652         b_status=$(barrier_stat)
16653         [ "$b_status" = "'frozen'" ] ||
16654                 error "(5) unexpected barrier status $b_status"
16655
16656         echo "Start barrier_thaw at: $(date)"
16657         #define OBD_FAIL_BARRIER_DELAY          0x2202
16658         do_facet mgs $LCTL set_param fail_val=5 fail_loc=0x2202
16659         do_facet mgs $LCTL barrier_thaw $FSNAME &
16660
16661         sleep 2
16662         b_status=$(barrier_stat)
16663         echo "Got barrier status at: $(date)"
16664         [ "$b_status" = "'thawing'" ] ||
16665                 error "(6) unexpected barrier status $b_status"
16666
16667         do_facet mgs $LCTL set_param fail_val=0 fail_loc=0
16668         wait
16669         b_status=$(barrier_stat)
16670         [ "$b_status" = "'thawed'" ] ||
16671                 error "(7) unexpected barrier status $b_status"
16672
16673         #define OBD_FAIL_BARRIER_FAILURE        0x2203
16674         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x2203
16675         do_facet mgs $LCTL barrier_freeze $FSNAME
16676
16677         b_status=$(barrier_stat)
16678         [ "$b_status" = "'failed'" ] ||
16679                 error "(8) unexpected barrier status $b_status"
16680
16681         do_facet $SINGLEMDS $LCTL set_param fail_loc=0
16682         do_facet mgs $LCTL barrier_thaw $FSNAME
16683
16684         post_801
16685 }
16686 run_test 801a "write barrier user interfaces and stat machine"
16687
16688 test_801b() {
16689         prep_801
16690
16691         mkdir $DIR/$tdir || error "(1) fail to mkdir"
16692         createmany -d $DIR/$tdir/d 6 || "(2) fail to mkdir"
16693         touch $DIR/$tdir/d2/f10 || error "(3) fail to touch"
16694         touch $DIR/$tdir/d3/f11 || error "(4) fail to touch"
16695         touch $DIR/$tdir/d4/f12 || error "(5) fail to touch"
16696
16697         cancel_lru_locks mdc
16698
16699         # 180 seconds should be long enough
16700         do_facet mgs $LCTL barrier_freeze $FSNAME 180
16701
16702         local b_status=$(barrier_stat)
16703         [ "$b_status" = "'frozen'" ] ||
16704                 error "(6) unexpected barrier status $b_status"
16705
16706         mkdir $DIR/$tdir/d0/d10 &
16707         mkdir_pid=$!
16708
16709         touch $DIR/$tdir/d1/f13 &
16710         touch_pid=$!
16711
16712         ln $DIR/$tdir/d2/f10 $DIR/$tdir/d2/f14 &
16713         ln_pid=$!
16714
16715         mv $DIR/$tdir/d3/f11 $DIR/$tdir/d3/f15 &
16716         mv_pid=$!
16717
16718         rm -f $DIR/$tdir/d4/f12 &
16719         rm_pid=$!
16720
16721         stat $DIR/$tdir/d5 || error "(7) stat should succeed"
16722
16723         # To guarantee taht the 'stat' is not blocked
16724         b_status=$(barrier_stat)
16725         [ "$b_status" = "'frozen'" ] ||
16726                 error "(8) unexpected barrier status $b_status"
16727
16728         # let above commands to run at background
16729         sleep 5
16730
16731         ps -p $mkdir_pid || error "(9) mkdir should be blocked"
16732         ps -p $touch_pid || error "(10) touch should be blocked"
16733         ps -p $ln_pid || error "(11) link should be blocked"
16734         ps -p $mv_pid || error "(12) rename should be blocked"
16735         ps -p $rm_pid || error "(13) unlink should be blocked"
16736
16737         b_status=$(barrier_stat)
16738         [ "$b_status" = "'frozen'" ] ||
16739                 error "(14) unexpected barrier status $b_status"
16740
16741         do_facet mgs $LCTL barrier_thaw $FSNAME
16742         b_status=$(barrier_stat)
16743         [ "$b_status" = "'thawed'" ] ||
16744                 error "(15) unexpected barrier status $b_status"
16745
16746         wait $mkdir_pid || error "(16) mkdir should succeed"
16747         wait $touch_pid || error "(17) touch should succeed"
16748         wait $ln_pid || error "(18) link should succeed"
16749         wait $mv_pid || error "(19) rename should succeed"
16750         wait $rm_pid || error "(20) unlink should succeed"
16751
16752         post_801
16753 }
16754 run_test 801b "modification will be blocked by write barrier"
16755
16756 test_801c() {
16757         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 2 MDTs" && return
16758
16759         prep_801
16760
16761         stop mds2 || error "(1) Fail to stop mds2"
16762
16763         do_facet mgs $LCTL barrier_freeze $FSNAME 30
16764
16765         local b_status=$(barrier_stat)
16766         [ "$b_status" = "'expired'" -o "$b_status" = "'failed'" ] || {
16767                 do_facet mgs $LCTL barrier_thaw $FSNAME
16768                 error "(2) unexpected barrier status $b_status"
16769         }
16770
16771         do_facet mgs $LCTL barrier_rescan $FSNAME ||
16772                 error "(3) Fail to rescan barrier bitmap"
16773
16774         do_facet mgs $LCTL barrier_freeze $FSNAME 10
16775
16776         b_status=$(barrier_stat)
16777         [ "$b_status" = "'frozen'" ] ||
16778                 error "(4) unexpected barrier status $b_status"
16779
16780         do_facet mgs $LCTL barrier_thaw $FSNAME
16781         b_status=$(barrier_stat)
16782         [ "$b_status" = "'thawed'" ] ||
16783                 error "(5) unexpected barrier status $b_status"
16784
16785         local devname=$(mdsdevname 2)
16786
16787         start mds2 $devname $MDS_MOUNT_OPTS || error "(6) Fail to start mds2"
16788
16789         do_facet mgs $LCTL barrier_rescan $FSNAME ||
16790                 error "(7) Fail to rescan barrier bitmap"
16791
16792         post_801
16793 }
16794 run_test 801c "rescan barrier bitmap"
16795
16796 saved_MGS_MOUNT_OPTS=$MGS_MOUNT_OPTS
16797 saved_MDS_MOUNT_OPTS=$MDS_MOUNT_OPTS
16798 saved_OST_MOUNT_OPTS=$OST_MOUNT_OPTS
16799
16800 cleanup_802() {
16801         trap 0
16802
16803         stopall
16804         MGS_MOUNT_OPTS=$saved_MGS_MOUNT_OPTS
16805         MDS_MOUNT_OPTS=$saved_MDS_MOUNT_OPTS
16806         OST_MOUNT_OPTS=$saved_OST_MOUNT_OPTS
16807         setupall
16808 }
16809
16810 test_802() {
16811
16812         [[ $(lustre_version_code mds1) -lt $(version_code 2.9.55) ]] ||
16813         [[ $(lustre_version_code ost1) -lt $(version_code 2.9.55) ]] &&
16814                 skip "Need server version at least 2.9.55" & exit 0
16815
16816         mkdir $DIR/$tdir || error "(1) fail to mkdir"
16817
16818         cp $LUSTRE/tests/test-framework.sh $DIR/$tdir/ ||
16819                 error "(2) Fail to copy"
16820
16821         trap cleanup_802 EXIT
16822
16823         # sync by force before remount as readonly
16824         sync; sync_all_data; sleep 3; sync_all_data
16825
16826         stopall
16827
16828         MGS_MOUNT_OPTS=$(csa_add "$MGS_MOUNT_OPTS" -o rdonly_dev)
16829         MDS_MOUNT_OPTS=$(csa_add "$MDS_MOUNT_OPTS" -o rdonly_dev)
16830         OST_MOUNT_OPTS=$(csa_add "$OST_MOUNT_OPTS" -o rdonly_dev)
16831
16832         echo "Mount the server as read only"
16833         setupall server_only || error "(3) Fail to start servers"
16834
16835         echo "Mount client without ro should fail"
16836         mount_client $MOUNT &&
16837                 error "(4) Mount client without 'ro' should fail"
16838
16839         echo "Mount client with ro should succeed"
16840         mount_client $MOUNT ro ||
16841                 error "(5) Mount client with 'ro' should succeed"
16842
16843         echo "Modify should be refused"
16844         touch $DIR/$tdir/guard && error "(6) Touch should fail under ro mode"
16845
16846         echo "Read should be allowed"
16847         diff $LUSTRE/tests/test-framework.sh $DIR/$tdir/test-framework.sh ||
16848                 error "(7) Read should succeed under ro mode"
16849
16850         cleanup_802
16851 }
16852 run_test 802 "simulate readonly device"
16853
16854 #
16855 # tests that do cleanup/setup should be run at the end
16856 #
16857
16858 test_900() {
16859         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
16860         local ls
16861         #define OBD_FAIL_MGC_PAUSE_PROCESS_LOG   0x903
16862         $LCTL set_param fail_loc=0x903
16863
16864         cancel_lru_locks MGC
16865
16866         FAIL_ON_ERROR=true cleanup
16867         FAIL_ON_ERROR=true setup
16868 }
16869 run_test 900 "umount should not race with any mgc requeue thread"
16870
16871 complete $SECONDS
16872 [ -f $EXT2_DEV ] && rm $EXT2_DEV || true
16873 check_and_cleanup_lustre
16874 if [ "$I_MOUNTED" != "yes" ]; then
16875         lctl set_param debug="$OLDDEBUG" 2> /dev/null || true
16876 fi
16877 exit_status