Whamcloud - gitweb
LU-8541 ldlm: don't use jiffies as sysfs parameter
[fs/lustre-release.git] / lustre / tests / sanity.sh
1 #!/bin/bash
2 # -*- tab-width: 8; indent-tabs-mode: t; -*-
3 #
4 # Run select tests by setting ONLY, or as arguments to the script.
5 # Skip specific tests by setting EXCEPT.
6 #
7 # e.g. ONLY="22 23" or ONLY="`seq 32 39`" or EXCEPT="31"
8 set -e
9
10 ONLY=${ONLY:-"$*"}
11 # bug number for skipped test: LU-9693 LU-6493 LU-9693 3561 5188
12 ALWAYS_EXCEPT="                42a    42b      42c     45   68b $SANITY_EXCEPT"
13 # UPDATE THE COMMENT ABOVE WITH BUG NUMBERS WHEN CHANGING ALWAYS_EXCEPT!
14
15 # skipped tests: LU-2036 LU-8411 LU-9096 LU-9054
16 ALWAYS_EXCEPT="  76      407     253     312 $ALWAYS_EXCEPT"
17
18 # Check Grants after these tests
19 GRANT_CHECK_LIST="$GRANT_CHECK_LIST 42a 42b 42c 42d 42e 63a 63b 64a 64b 64c"
20
21 is_sles11()                                             # LU-4341
22 {
23         if [ -r /etc/SuSE-release ]
24         then
25                 local vers=$(grep VERSION /etc/SuSE-release | awk '{print $3}')
26                 local patchlev=$(grep PATCHLEVEL /etc/SuSE-release |
27                         awk '{ print $3 }')
28                 if [ $vers -eq 11 ] && [ $patchlev -ge 3 ]; then
29                         return 0
30                 fi
31         fi
32         return 1
33 }
34
35 if is_sles11; then                                      # LU-4341
36         ALWAYS_EXCEPT="$ALWAYS_EXCEPT 170"
37 fi
38
39 SRCDIR=$(cd $(dirname $0); echo $PWD)
40 export PATH=$PATH:/sbin
41
42 TMP=${TMP:-/tmp}
43
44 CC=${CC:-cc}
45 CHECKSTAT=${CHECKSTAT:-"checkstat -v"}
46 CREATETEST=${CREATETEST:-createtest}
47 LFS=${LFS:-lfs}
48 LFIND=${LFIND:-"$LFS find"}
49 LVERIFY=${LVERIFY:-ll_dirstripe_verify}
50 LCTL=${LCTL:-lctl}
51 OPENFILE=${OPENFILE:-openfile}
52 OPENUNLINK=${OPENUNLINK:-openunlink}
53 export MULTIOP=${MULTIOP:-multiop}
54 READS=${READS:-"reads"}
55 MUNLINK=${MUNLINK:-munlink}
56 SOCKETSERVER=${SOCKETSERVER:-socketserver}
57 SOCKETCLIENT=${SOCKETCLIENT:-socketclient}
58 MEMHOG=${MEMHOG:-memhog}
59 DIRECTIO=${DIRECTIO:-directio}
60 ACCEPTOR_PORT=${ACCEPTOR_PORT:-988}
61 STRIPES_PER_OBJ=-1
62 CHECK_GRANT=${CHECK_GRANT:-"yes"}
63 GRANT_CHECK_LIST=${GRANT_CHECK_LIST:-""}
64 export PARALLEL=${PARALLEL:-"no"}
65
66 export NAME=${NAME:-local}
67
68 SAVE_PWD=$PWD
69
70 CLEANUP=${CLEANUP:-:}
71 SETUP=${SETUP:-:}
72 TRACE=${TRACE:-""}
73 LUSTRE=${LUSTRE:-$(cd $(dirname $0)/..; echo $PWD)}
74 LUSTRE_TESTS_API_DIR=${LUSTRE_TESTS_API_DIR:-${LUSTRE}/tests/clientapi}
75 . $LUSTRE/tests/test-framework.sh
76 init_test_env $@
77 . ${CONFIG:=$LUSTRE/tests/cfg/${NAME}.sh}
78 init_logging
79
80 #                                  5          12          (min)"
81 [ "$SLOW" = "no" ] && EXCEPT_SLOW="27m 64b 68 71 115 300o"
82
83 if [ $(facet_fstype $SINGLEMDS) = "zfs" ]; then
84         # bug number for skipped test: LU-1957
85         ALWAYS_EXCEPT="$ALWAYS_EXCEPT  180"
86         #                                               13    (min)"
87         [ "$SLOW" = "no" ] && EXCEPT_SLOW="$EXCEPT_SLOW 51b"
88 fi
89
90 FAIL_ON_ERROR=false
91
92 cleanup() {
93         echo -n "cln.."
94         pgrep ll_sa > /dev/null && { echo "There are ll_sa thread not exit!"; exit 20; }
95         cleanupall ${FORCE} $* || { echo "FAILed to clean up"; exit 20; }
96 }
97 setup() {
98         echo -n "mnt.."
99         load_modules
100         setupall || exit 10
101         echo "done"
102 }
103
104 check_swap_layouts_support()
105 {
106         $LCTL get_param -n llite.*.sbi_flags | grep -q layout ||
107                 { skip "Does not support layout lock."; return 0; }
108         return 1
109 }
110
111 check_and_setup_lustre
112 DIR=${DIR:-$MOUNT}
113 assert_DIR
114
115 MDT0=$($LCTL get_param -n mdc.*.mds_server_uuid |
116         awk '{ gsub(/_UUID/,""); print $1 }' | head -n1)
117 MAXFREE=${MAXFREE:-$((200000 * $OSTCOUNT))}
118
119 [ -f $DIR/d52a/foo ] && chattr -a $DIR/d52a/foo
120 [ -f $DIR/d52b/foo ] && chattr -i $DIR/d52b/foo
121 rm -rf $DIR/[Rdfs][0-9]*
122
123 # $RUNAS_ID may get set incorrectly somewhere else
124 [ $UID -eq 0 -a $RUNAS_ID -eq 0 ] && error "\$RUNAS_ID set to 0, but \$UID is also 0!"
125
126 check_runas_id $RUNAS_ID $RUNAS_GID $RUNAS
127
128 build_test_filter
129
130 if [ "${ONLY}" = "MOUNT" ] ; then
131         echo "Lustre is up, please go on"
132         exit
133 fi
134
135 echo "preparing for tests involving mounts"
136 EXT2_DEV=${EXT2_DEV:-$TMP/SANITY.LOOP}
137 touch $EXT2_DEV
138 mke2fs -j -F $EXT2_DEV 8000 > /dev/null
139 echo # add a newline after mke2fs.
140
141 umask 077
142
143 OLDDEBUG=$(lctl get_param -n debug 2> /dev/null)
144 lctl set_param debug=-1 2> /dev/null || true
145 test_0a() {
146         touch $DIR/$tfile
147         $CHECKSTAT -t file $DIR/$tfile || error "$tfile is not a file"
148         rm $DIR/$tfile
149         $CHECKSTAT -a $DIR/$tfile || error "$tfile was not removed"
150 }
151 run_test 0a "touch; rm ====================="
152
153 test_0b() {
154         chmod 0755 $DIR || error "chmod 0755 $DIR failed"
155         $CHECKSTAT -p 0755 $DIR || error "$DIR permission is not 0755"
156 }
157 run_test 0b "chmod 0755 $DIR ============================="
158
159 test_0c() {
160         $LCTL get_param mdc.*.import | grep "state: FULL" ||
161                 error "import not FULL"
162         $LCTL get_param mdc.*.import | grep "target: $FSNAME-MDT" ||
163                 error "bad target"
164 }
165 run_test 0c "check import proc"
166
167 test_1() {
168         test_mkdir $DIR/$tdir
169         test_mkdir $DIR/$tdir/d2
170         mkdir $DIR/$tdir/d2 && error "we expect EEXIST, but not returned"
171         $CHECKSTAT -t dir $DIR/$tdir/d2 || error "$tdir/d2 is not a dir"
172         rmdir $DIR/$tdir/d2
173         rmdir $DIR/$tdir
174         $CHECKSTAT -a $DIR/$tdir || error "$tdir was not removed"
175 }
176 run_test 1 "mkdir; remkdir; rmdir"
177
178 test_2() {
179         test_mkdir $DIR/$tdir
180         touch $DIR/$tdir/$tfile || error "touch $tdir/$tfile failed"
181         $CHECKSTAT -t file $DIR/$tdir/$tfile || error "$tdir/$tfile not a file"
182         rm -r $DIR/$tdir
183         $CHECKSTAT -a $DIR/$tdir/$tfile || error "$tdir/$file is not removed"
184 }
185 run_test 2 "mkdir; touch; rmdir; check file"
186
187 test_3() {
188         test_mkdir $DIR/$tdir
189         $CHECKSTAT -t dir $DIR/$tdir || error "$tdir is not a directory"
190         touch $DIR/$tdir/$tfile
191         $CHECKSTAT -t file $DIR/$tdir/$tfile || error "$tdir/$tfile not a file"
192         rm -r $DIR/$tdir
193         $CHECKSTAT -a $DIR/$tdir || error "$tdir is not removed"
194 }
195 run_test 3 "mkdir; touch; rmdir; check dir"
196
197 # LU-4471 - failed rmdir on remote directories still removes directory on MDT0
198 test_4() {
199         test_mkdir -i 1 $DIR/$tdir
200
201         touch $DIR/$tdir/$tfile ||
202                 error "Create file under remote directory failed"
203
204         rmdir $DIR/$tdir &&
205                 error "Expect error removing in-use dir $DIR/$tdir"
206
207         test -d $DIR/$tdir || error "Remote directory disappeared"
208
209         rm -rf $DIR/$tdir || error "remove remote dir error"
210 }
211 run_test 4 "mkdir; touch dir/file; rmdir; checkdir (expect error)"
212
213 test_5() {
214         test_mkdir $DIR/$tdir
215         test_mkdir $DIR/$tdir/d2
216         chmod 0707 $DIR/$tdir/d2 || error "chmod 0707 $tdir/d2 failed"
217         $CHECKSTAT -t dir -p 0707 $DIR/$tdir/d2 || error "$tdir/d2 not mode 707"
218         $CHECKSTAT -t dir $DIR/$tdir/d2 || error "$tdir/d2 is not a directory"
219 }
220 run_test 5 "mkdir .../d5 .../d5/d2; chmod .../d5/d2"
221
222 test_6a() {
223         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
224         chmod 0666 $DIR/$tfile || error "chmod 0666 $tfile failed"
225         $CHECKSTAT -t file -p 0666 -u \#$UID $DIR/$tfile ||
226                 error "$tfile does not have perm 0666 or UID $UID"
227         $RUNAS chmod 0444 $DIR/$tfile && error "chmod $tfile worked on UID $UID"
228         $CHECKSTAT -t file -p 0666 -u \#$UID $DIR/$tfile ||
229                 error "$tfile should be 0666 and owned by UID $UID"
230 }
231 run_test 6a "touch f6a; chmod f6a; $RUNAS chmod f6a (should return error) =="
232
233 test_6c() {
234         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID" && return
235         touch $DIR/$tfile
236         chown $RUNAS_ID $DIR/$tfile || error "chown $RUNAS_ID $file failed"
237         $CHECKSTAT -t file -u \#$RUNAS_ID $DIR/$tfile ||
238                 error "$tfile should be owned by UID $RUNAS_ID"
239         $RUNAS chown $UID $DIR/$tfile && error "chown $UID $file succeeded"
240         $CHECKSTAT -t file -u \#$RUNAS_ID $DIR/$tfile ||
241                 error "$tfile should be owned by UID $RUNAS_ID"
242 }
243 run_test 6c "touch f6c; chown f6c; $RUNAS chown f6c (should return error) =="
244
245 test_6e() {
246         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID" && return
247         touch $DIR/$tfile
248         chgrp $RUNAS_ID $DIR/$tfile || error "chgrp $RUNAS_ID $file failed"
249         $CHECKSTAT -t file -u \#$UID -g \#$RUNAS_ID $DIR/$tfile ||
250                 error "$tfile should be owned by GID $UID"
251         $RUNAS chgrp $UID $DIR/$tfile && error "chgrp $UID $file succeeded"
252         $CHECKSTAT -t file -u \#$UID -g \#$RUNAS_ID $DIR/$tfile ||
253                 error "$tfile should be owned by UID $UID and GID $RUNAS_ID"
254 }
255 run_test 6e "touch+chgrp $tfile; $RUNAS chgrp $tfile (should return error)"
256
257 test_6g() {
258         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID" && return
259         test_mkdir $DIR/$tdir
260         chmod 777 $DIR/$tdir || error "chmod 0777 $tdir failed"
261         $RUNAS mkdir $DIR/$tdir/d || error "mkdir $tdir/d failed"
262         chmod g+s $DIR/$tdir/d || error "chmod g+s $tdir/d failed"
263         test_mkdir $DIR/$tdir/d/subdir
264         $CHECKSTAT -g \#$RUNAS_GID $DIR/$tdir/d/subdir ||
265                 error "$tdir/d/subdir should be GID $RUNAS_GID"
266         if [[ $MDSCOUNT -gt 1 ]]; then
267                 # check remote dir sgid inherite
268                 $LFS mkdir -i 0 $DIR/$tdir.local ||
269                         error "mkdir $tdir.local failed"
270                 chmod g+s $DIR/$tdir.local ||
271                         error "chmod $tdir.local failed"
272                 chgrp $RUNAS_GID $DIR/$tdir.local ||
273                         error "chgrp $tdir.local failed"
274                 $LFS mkdir -i 1 $DIR/$tdir.local/$tdir.remote ||
275                         error "mkdir $tdir.remote failed"
276                 $CHECKSTAT -g \#$RUNAS_GID $DIR/$tdir.local/$tdir.remote ||
277                         error "$tdir.remote should be owned by $UID.$RUNAS_ID"
278                 $CHECKSTAT -p 02755 $DIR/$tdir.local/$tdir.remote ||
279                         error "$tdir.remote should be mode 02755"
280         fi
281 }
282 run_test 6g "verify new dir in sgid dir inherits group"
283
284 test_6h() { # bug 7331
285         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID" && return
286         touch $DIR/$tfile || error "touch failed"
287         chown $RUNAS_ID:$RUNAS_GID $DIR/$tfile || error "initial chown failed"
288         $RUNAS -G$RUNAS_GID chown $RUNAS_ID:0 $DIR/$tfile &&
289                 error "chown $RUNAS_ID:0 $tfile worked as GID $RUNAS_GID"
290         $CHECKSTAT -t file -u \#$RUNAS_ID -g \#$RUNAS_GID $DIR/$tfile ||
291                 error "$tdir/$tfile should be UID $RUNAS_UID GID $RUNAS_GID"
292 }
293 run_test 6h "$RUNAS chown RUNAS_ID.0 .../$tfile (should return error)"
294
295 test_7a() {
296         test_mkdir $DIR/$tdir
297         $MCREATE $DIR/$tdir/$tfile
298         chmod 0666 $DIR/$tdir/$tfile
299         $CHECKSTAT -t file -p 0666 $DIR/$tdir/$tfile ||
300                 error "$tdir/$tfile should be mode 0666"
301 }
302 run_test 7a "mkdir .../d7; mcreate .../d7/f; chmod .../d7/f ===="
303
304 test_7b() {
305         if [ ! -d $DIR/$tdir ]; then
306                 test_mkdir $DIR/$tdir
307         fi
308         $MCREATE $DIR/$tdir/$tfile
309         echo -n foo > $DIR/$tdir/$tfile
310         [ "$(cat $DIR/$tdir/$tfile)" = "foo" ] || error "$tdir/$tfile not 'foo'"
311         $CHECKSTAT -t file -s 3 $DIR/$tdir/$tfile || error "$tfile size not 3"
312 }
313 run_test 7b "mkdir .../d7; mcreate d7/f2; echo foo > d7/f2 ====="
314
315 test_8() {
316         test_mkdir $DIR/$tdir
317         touch $DIR/$tdir/$tfile
318         chmod 0666 $DIR/$tdir/$tfile
319         $CHECKSTAT -t file -p 0666 $DIR/$tdir/$tfile ||
320                 error "$tfile mode not 0666"
321 }
322 run_test 8 "mkdir .../d8; touch .../d8/f; chmod .../d8/f ======="
323
324 test_9() {
325         test_mkdir $DIR/$tdir
326         test_mkdir $DIR/$tdir/d2
327         test_mkdir $DIR/$tdir/d2/d3
328         $CHECKSTAT -t dir $DIR/$tdir/d2/d3 || error "$tdir/d2/d3 not a dir"
329 }
330 run_test 9 "mkdir .../d9 .../d9/d2 .../d9/d2/d3 ================"
331
332 test_10() {
333         test_mkdir $DIR/$tdir
334         test_mkdir $DIR/$tdir/d2
335         touch $DIR/$tdir/d2/$tfile
336         $CHECKSTAT -t file $DIR/$tdir/d2/$tfile ||
337                 error "$tdir/d2/$tfile not a file"
338 }
339 run_test 10 "mkdir .../d10 .../d10/d2; touch .../d10/d2/f ======"
340
341 test_11() {
342         test_mkdir $DIR/$tdir
343         test_mkdir $DIR/$tdir/d2
344         chmod 0666 $DIR/$tdir/d2
345         chmod 0705 $DIR/$tdir/d2
346         $CHECKSTAT -t dir -p 0705 $DIR/$tdir/d2 ||
347                 error "$tdir/d2 mode not 0705"
348 }
349 run_test 11 "mkdir .../d11 d11/d2; chmod .../d11/d2 ============"
350
351 test_12() {
352         test_mkdir $DIR/$tdir
353         touch $DIR/$tdir/$tfile
354         chmod 0666 $DIR/$tdir/$tfile
355         chmod 0654 $DIR/$tdir/$tfile
356         $CHECKSTAT -t file -p 0654 $DIR/$tdir/$tfile ||
357                 error "$tdir/d2 mode not 0654"
358 }
359 run_test 12 "touch .../d12/f; chmod .../d12/f .../d12/f ========"
360
361 test_13() {
362         test_mkdir $DIR/$tdir
363         dd if=/dev/zero of=$DIR/$tdir/$tfile count=10
364         >  $DIR/$tdir/$tfile
365         $CHECKSTAT -t file -s 0 $DIR/$tdir/$tfile ||
366                 error "$tdir/$tfile size not 0 after truncate"
367 }
368 run_test 13 "creat .../d13/f; dd .../d13/f; > .../d13/f ========"
369
370 test_14() {
371         test_mkdir $DIR/$tdir
372         touch $DIR/$tdir/$tfile
373         rm $DIR/$tdir/$tfile
374         $CHECKSTAT -a $DIR/$tdir/$tfile || error "$tdir/$tfile not removed"
375 }
376 run_test 14 "touch .../d14/f; rm .../d14/f; rm .../d14/f ======="
377
378 test_15() {
379         test_mkdir $DIR/$tdir
380         touch $DIR/$tdir/$tfile
381         mv $DIR/$tdir/$tfile $DIR/$tdir/${tfile}_2
382         $CHECKSTAT -t file $DIR/$tdir/${tfile}_2 ||
383                 error "$tdir/${tfile_2} not a file after rename"
384         rm $DIR/$tdir/${tfile}_2 || error "unlink failed after rename"
385 }
386 run_test 15 "touch .../d15/f; mv .../d15/f .../d15/f2 =========="
387
388 test_16() {
389         test_mkdir $DIR/$tdir
390         touch $DIR/$tdir/$tfile
391         rm -rf $DIR/$tdir/$tfile
392         $CHECKSTAT -a $DIR/$tdir/$tfile || error "$tdir/$tfile not removed"
393 }
394 run_test 16 "touch .../d16/f; rm -rf .../d16/f"
395
396 test_17a() {
397         test_mkdir $DIR/$tdir
398         touch $DIR/$tdir/$tfile
399         ln -s $DIR/$tdir/$tfile $DIR/$tdir/l-exist
400         ls -l $DIR/$tdir
401         $CHECKSTAT -l $DIR/$tdir/$tfile $DIR/$tdir/l-exist ||
402                 error "$tdir/l-exist not a symlink"
403         $CHECKSTAT -f -t f $DIR/$tdir/l-exist ||
404                 error "$tdir/l-exist not referencing a file"
405         rm -f $DIR/$tdir/l-exist
406         $CHECKSTAT -a $DIR/$tdir/l-exist || error "$tdir/l-exist not removed"
407 }
408 run_test 17a "symlinks: create, remove (real)"
409
410 test_17b() {
411         test_mkdir $DIR/$tdir
412         ln -s no-such-file $DIR/$tdir/l-dangle
413         ls -l $DIR/$tdir
414         $CHECKSTAT -l no-such-file $DIR/$tdir/l-dangle ||
415                 error "$tdir/l-dangle not referencing no-such-file"
416         $CHECKSTAT -fa $DIR/$tdir/l-dangle ||
417                 error "$tdir/l-dangle not referencing non-existent file"
418         rm -f $DIR/$tdir/l-dangle
419         $CHECKSTAT -a $DIR/$tdir/l-dangle || error "$tdir/l-dangle not removed"
420 }
421 run_test 17b "symlinks: create, remove (dangling)"
422
423 test_17c() { # bug 3440 - don't save failed open RPC for replay
424         test_mkdir $DIR/$tdir
425         ln -s foo $DIR/$tdir/$tfile
426         cat $DIR/$tdir/$tfile && error "opened non-existent symlink" || true
427 }
428 run_test 17c "symlinks: open dangling (should return error)"
429
430 test_17d() {
431         test_mkdir $DIR/$tdir
432         ln -s foo $DIR/$tdir/$tfile
433         touch $DIR/$tdir/$tfile || error "creating to new symlink"
434 }
435 run_test 17d "symlinks: create dangling"
436
437 test_17e() {
438         test_mkdir $DIR/$tdir
439         local foo=$DIR/$tdir/$tfile
440         ln -s $foo $foo || error "create symlink failed"
441         ls -l $foo || error "ls -l failed"
442         ls $foo && error "ls not failed" || true
443 }
444 run_test 17e "symlinks: create recursive symlink (should return error)"
445
446 test_17f() {
447         test_mkdir $DIR/$tdir
448         ln -s 1234567890/2234567890/3234567890/4234567890 $DIR/$tdir/111
449         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890 $DIR/$tdir/222
450         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890 $DIR/$tdir/333
451         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890/9234567890/a234567890/b234567890 $DIR/$tdir/444
452         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890/9234567890/a234567890/b234567890/c234567890/d234567890/f234567890 $DIR/$tdir/555
453         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890/9234567890/a234567890/b234567890/c234567890/d234567890/f234567890/aaaaaaaaaa/bbbbbbbbbb/cccccccccc/dddddddddd/eeeeeeeeee/ffffffffff/ $DIR/$tdir/666
454         ls -l  $DIR/$tdir
455 }
456 run_test 17f "symlinks: long and very long symlink name"
457
458 # str_repeat(S, N) generate a string that is string S repeated N times
459 str_repeat() {
460         local s=$1
461         local n=$2
462         local ret=''
463         while [ $((n -= 1)) -ge 0 ]; do
464                 ret=$ret$s
465         done
466         echo $ret
467 }
468
469 # Long symlinks and LU-2241
470 test_17g() {
471         test_mkdir $DIR/$tdir
472         local TESTS="59 60 61 4094 4095"
473
474         # Fix for inode size boundary in 2.1.4
475         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.1.4) ] &&
476                 TESTS="4094 4095"
477
478         # Patch not applied to 2.2 or 2.3 branches
479         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] &&
480         [ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.3.55) ] &&
481                 TESTS="4094 4095"
482
483         # skip long symlink name for rhel6.5.
484         # rhel6.5 has a limit (PATH_MAX - sizeof(struct filename))
485         grep -q '6.5' /etc/redhat-release &>/dev/null &&
486                 TESTS="59 60 61 4062 4063"
487
488         for i in $TESTS; do
489                 local SYMNAME=$(str_repeat 'x' $i)
490                 ln -s $SYMNAME $DIR/$tdir/f$i || error "failed $i-char symlink"
491                 readlink $DIR/$tdir/f$i || error "failed $i-char readlink"
492         done
493 }
494 run_test 17g "symlinks: really long symlink name and inode boundaries"
495
496 test_17h() { #bug 17378
497         remote_mds_nodsh && skip "remote MDS with nodsh" && return
498         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
499         local mdt_idx
500         test_mkdir $DIR/$tdir
501         if [[ $MDSCOUNT -gt 1 ]]; then
502                 mdt_idx=$($LFS getdirstripe -i $DIR/$tdir)
503         else
504                 mdt_idx=0
505         fi
506         $LFS setstripe -c -1 $DIR/$tdir
507         #define OBD_FAIL_MDS_LOV_PREP_CREATE 0x141
508         do_facet mds$((mdt_idx + 1)) lctl set_param fail_loc=0x80000141
509         touch $DIR/$tdir/$tfile || true
510 }
511 run_test 17h "create objects: lov_free_memmd() doesn't lbug"
512
513 test_17i() { #bug 20018
514         remote_mds_nodsh && skip "remote MDS with nodsh" && return
515         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
516         test_mkdir -c1 $DIR/$tdir
517         local foo=$DIR/$tdir/$tfile
518         local mdt_idx
519         if [[ $MDSCOUNT -gt 1 ]]; then
520                 mdt_idx=$($LFS getdirstripe -i $DIR/$tdir)
521         else
522                 mdt_idx=0
523         fi
524         ln -s $foo $foo || error "create symlink failed"
525 #define OBD_FAIL_MDS_READLINK_EPROTO     0x143
526         do_facet mds$((mdt_idx + 1)) lctl set_param fail_loc=0x80000143
527         ls -l $foo && error "error not detected"
528         return 0
529 }
530 run_test 17i "don't panic on short symlink"
531
532 test_17k() { #bug 22301
533         [[ -z "$(which rsync 2>/dev/null)" ]] &&
534                 skip "no rsync command" && return 0
535         rsync --help | grep -q xattr ||
536                 skip_env "$(rsync --version | head -n1) does not support xattrs"
537         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return 0
538         test_mkdir $DIR/$tdir
539         test_mkdir $DIR/$tdir.new
540         touch $DIR/$tdir/$tfile
541         ln -s $DIR/$tdir/$tfile $DIR/$tdir/$tfile.lnk
542         rsync -av -X $DIR/$tdir/ $DIR/$tdir.new ||
543                 error "rsync failed with xattrs enabled"
544 }
545 run_test 17k "symlinks: rsync with xattrs enabled"
546
547 test_17l() { # LU-279
548         [[ -z "$(which getfattr 2>/dev/null)" ]] &&
549                 skip "no getfattr command" && return 0
550         test_mkdir $DIR/$tdir
551         touch $DIR/$tdir/$tfile
552         ln -s $DIR/$tdir/$tfile $DIR/$tdir/$tfile.lnk
553         for path in "$DIR/$tdir" "$DIR/$tdir/$tfile" "$DIR/$tdir/$tfile.lnk"; do
554                 # -h to not follow symlinks. -m '' to list all the xattrs.
555                 # grep to remove first line: '# file: $path'.
556                 for xattr in `getfattr -hm '' $path 2>/dev/null | grep -v '^#'`;
557                 do
558                         lgetxattr_size_check $path $xattr ||
559                                 error "lgetxattr_size_check $path $xattr failed"
560                 done
561         done
562 }
563 run_test 17l "Ensure lgetxattr's returned xattr size is consistent"
564
565 # LU-1540
566 test_17m() {
567         local short_sym="0123456789"
568         local wdir=$DIR/$tdir
569         local i
570
571         remote_mds_nodsh && skip "remote MDS with nodsh" && return
572         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] &&
573         [ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.2.93) ] &&
574                 skip "MDS 2.2.0-2.2.93 do not NUL-terminate symlinks" && return
575
576         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
577                 skip "ldiskfs only test" && return 0
578
579         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
580
581         test_mkdir $wdir
582         long_sym=$short_sym
583         # create a long symlink file
584         for ((i = 0; i < 4; ++i)); do
585                 long_sym=${long_sym}${long_sym}
586         done
587
588         echo "create 512 short and long symlink files under $wdir"
589         for ((i = 0; i < 256; ++i)); do
590                 ln -sf ${long_sym}"a5a5" $wdir/long-$i
591                 ln -sf ${short_sym}"a5a5" $wdir/short-$i
592         done
593
594         echo "erase them"
595         rm -f $wdir/*
596         sync
597         wait_delete_completed
598
599         echo "recreate the 512 symlink files with a shorter string"
600         for ((i = 0; i < 512; ++i)); do
601                 # rewrite the symlink file with a shorter string
602                 ln -sf ${long_sym} $wdir/long-$i || error "long_sym failed"
603                 ln -sf ${short_sym} $wdir/short-$i || error "short_sym failed"
604         done
605
606         local mds_index=$(($($LFS getstripe -M $wdir) + 1))
607         local devname=$(mdsdevname $mds_index)
608
609         echo "stop and checking mds${mds_index}:"
610         # e2fsck should not return error
611         stop mds${mds_index}
612         run_e2fsck $(facet_active_host mds${mds_index}) $devname -n
613         rc=$?
614
615         start mds${mds_index} $devname $MDS_MOUNT_OPTS ||
616                 error "start mds${mds_index} failed"
617         df $MOUNT > /dev/null 2>&1
618         [ $rc -eq 0 ] ||
619                 error "e2fsck detected error for short/long symlink: rc=$rc"
620 }
621 run_test 17m "run e2fsck against MDT which contains short/long symlink"
622
623 check_fs_consistency_17n() {
624         local mdt_index
625         local rc=0
626
627         # create/unlink in 17n only change 2 MDTs(MDT1/MDT2),
628         # so it only check MDT1/MDT2 instead of all of MDTs.
629         for mdt_index in 1 2; do
630                 local devname=$(mdsdevname $mdt_index)
631                 # e2fsck should not return error
632                 stop mds${mdt_index}
633                 run_e2fsck $(facet_active_host mds$mdt_index) $devname -n ||
634                         rc=$((rc + $?))
635
636                 start mds${mdt_index} $devname $MDS_MOUNT_OPTS ||
637                         error "mount mds$mdt_index failed"
638                 df $MOUNT > /dev/null 2>&1
639         done
640         return $rc
641 }
642
643 test_17n() {
644         local i
645
646         remote_mds_nodsh && skip "remote MDS with nodsh" && return
647         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] &&
648         [ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.2.93) ] &&
649                 skip "MDS 2.2.0-2.2.93 do not NUL-terminate symlinks" && return
650
651         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
652                 skip "ldiskfs only test" && return 0
653
654         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 2 MDTs" && return
655
656         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
657
658         test_mkdir $DIR/$tdir
659         for ((i=0; i<10; i++)); do
660                 $LFS mkdir -i1 -c2 $DIR/$tdir/remote_dir_${i} ||
661                         error "create remote dir error $i"
662                 createmany -o $DIR/$tdir/remote_dir_${i}/f 10 ||
663                         error "create files under remote dir failed $i"
664         done
665
666         check_fs_consistency_17n ||
667                 error "e2fsck report error after create files under remote dir"
668
669         for ((i = 0; i < 10; i++)); do
670                 rm -rf $DIR/$tdir/remote_dir_${i} ||
671                         error "destroy remote dir error $i"
672         done
673
674         check_fs_consistency_17n ||
675                 error "e2fsck report error after unlink files under remote dir"
676
677         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.50) ] &&
678                 skip "lustre < 2.4.50 does not support migrate mv " && return
679
680         for ((i = 0; i < 10; i++)); do
681                 mkdir -p $DIR/$tdir/remote_dir_${i}
682                 createmany -o $DIR/$tdir/remote_dir_${i}/f 10 ||
683                         error "create files under remote dir failed $i"
684                 $LFS migrate --mdt-index 1 $DIR/$tdir/remote_dir_${i} ||
685                         error "migrate remote dir error $i"
686         done
687         check_fs_consistency_17n || error "e2fsck report error after migration"
688
689         for ((i = 0; i < 10; i++)); do
690                 rm -rf $DIR/$tdir/remote_dir_${i} ||
691                         error "destroy remote dir error $i"
692         done
693
694         check_fs_consistency_17n || error "e2fsck report error after unlink"
695 }
696 run_test 17n "run e2fsck against master/slave MDT which contains remote dir"
697
698 test_17o() {
699         remote_mds_nodsh && skip "remote MDS with nodsh" && return
700         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.64) ] &&
701                 skip "Need MDS version at least 2.3.64" && return
702
703         local wdir=$DIR/${tdir}o
704         local mdt_index
705         local rc=0
706
707         test_mkdir $wdir
708         touch $wdir/$tfile
709         mdt_index=$($LFS getstripe -M $wdir/$tfile)
710         mdt_index=$((mdt_index + 1))
711
712         cancel_lru_locks mdc
713         #fail mds will wait the failover finish then set
714         #following fail_loc to avoid interfer the recovery process.
715         fail mds${mdt_index}
716
717         #define OBD_FAIL_OSD_LMA_INCOMPAT 0x194
718         do_facet mds${mdt_index} lctl set_param fail_loc=0x194
719         ls -l $wdir/$tfile && rc=1
720         do_facet mds${mdt_index} lctl set_param fail_loc=0
721         [[ $rc -eq 0 ]] || error "stat file should fail"
722 }
723 run_test 17o "stat file with incompat LMA feature"
724
725 test_18() {
726         touch $DIR/$tfile || error "Failed to touch $DIR/$tfile: $?"
727         ls $DIR || error "Failed to ls $DIR: $?"
728 }
729 run_test 18 "touch .../f ; ls ... =============================="
730
731 test_19a() {
732         touch $DIR/$tfile
733         ls -l $DIR
734         rm $DIR/$tfile
735         $CHECKSTAT -a $DIR/$tfile || error "$tfile was not removed"
736 }
737 run_test 19a "touch .../f19 ; ls -l ... ; rm .../f19 ==========="
738
739 test_19b() {
740         ls -l $DIR/$tfile && error "ls -l $tfile failed"|| true
741 }
742 run_test 19b "ls -l .../f19 (should return error) =============="
743
744 test_19c() {
745         [ $RUNAS_ID -eq $UID ] &&
746                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
747         $RUNAS touch $DIR/$tfile && error "create non-root file failed" || true
748 }
749 run_test 19c "$RUNAS touch .../f19 (should return error) =="
750
751 test_19d() {
752         cat $DIR/f19 && error || true
753 }
754 run_test 19d "cat .../f19 (should return error) =============="
755
756 test_20() {
757         touch $DIR/$tfile
758         rm $DIR/$tfile
759         touch $DIR/$tfile
760         rm $DIR/$tfile
761         touch $DIR/$tfile
762         rm $DIR/$tfile
763         $CHECKSTAT -a $DIR/$tfile || error "$tfile was not removed"
764 }
765 run_test 20 "touch .../f ; ls -l ..."
766
767 test_21() {
768         test_mkdir $DIR/$tdir
769         [ -f $DIR/$tdir/dangle ] && rm -f $DIR/$tdir/dangle
770         ln -s dangle $DIR/$tdir/link
771         echo foo >> $DIR/$tdir/link
772         cat $DIR/$tdir/dangle
773         $CHECKSTAT -t link $DIR/$tdir/link || error "$tdir/link not a link"
774         $CHECKSTAT -f -t file $DIR/$tdir/link ||
775                 error "$tdir/link not linked to a file"
776 }
777 run_test 21 "write to dangling link"
778
779 test_22() {
780         local wdir=$DIR/$tdir
781         test_mkdir $wdir
782         chown $RUNAS_ID:$RUNAS_GID $wdir
783         (cd $wdir || error "cd $wdir failed";
784                 $RUNAS tar cf - /etc/hosts /etc/sysconfig/network |
785                 $RUNAS tar xf -)
786         ls -lR $wdir/etc || error "ls -lR $wdir/etc failed"
787         $CHECKSTAT -t dir $wdir/etc || error "checkstat -t dir failed"
788         $CHECKSTAT -u \#$RUNAS_ID -g \#$RUNAS_GID $wdir/etc ||
789                 error "checkstat -u failed"
790 }
791 run_test 22 "unpack tar archive as non-root user"
792
793 # was test_23
794 test_23a() {
795         test_mkdir $DIR/$tdir
796         local file=$DIR/$tdir/$tfile
797
798         openfile -f O_CREAT:O_EXCL $file || error "$file create failed"
799         openfile -f O_CREAT:O_EXCL $file &&
800                 error "$file recreate succeeded" || true
801 }
802 run_test 23a "O_CREAT|O_EXCL in subdir"
803
804 test_23b() { # bug 18988
805         test_mkdir $DIR/$tdir
806         local file=$DIR/$tdir/$tfile
807
808         rm -f $file
809         echo foo > $file || error "write filed"
810         echo bar >> $file || error "append filed"
811         $CHECKSTAT -s 8 $file || error "wrong size"
812         rm $file
813 }
814 run_test 23b "O_APPEND check"
815
816 # rename sanity
817 test_24a() {
818         echo '-- same directory rename'
819         test_mkdir $DIR/$tdir
820         touch $DIR/$tdir/$tfile.1
821         mv $DIR/$tdir/$tfile.1 $DIR/$tdir/$tfile.2
822         $CHECKSTAT -t file $DIR/$tdir/$tfile.2 || error "$tfile.2 not a file"
823 }
824 run_test 24a "rename file to non-existent target"
825
826 test_24b() {
827         test_mkdir $DIR/$tdir
828         touch $DIR/$tdir/$tfile.{1,2}
829         mv $DIR/$tdir/$tfile.1 $DIR/$tdir/$tfile.2
830         $CHECKSTAT -a $DIR/$tdir/$tfile.1 || error "$tfile.1 exists"
831         $CHECKSTAT -t file $DIR/$tdir/$tfile.2 || error "$tfile.2 not a file"
832 }
833 run_test 24b "rename file to existing target"
834
835 test_24c() {
836         test_mkdir $DIR/$tdir
837         test_mkdir $DIR/$tdir/d$testnum.1
838         mv $DIR/$tdir/d$testnum.1 $DIR/$tdir/d$testnum.2
839         $CHECKSTAT -a $DIR/$tdir/d$testnum.1 || error "d$testnum.1 exists"
840         $CHECKSTAT -t dir $DIR/$tdir/d$testnum.2 || error "d$testnum.2 not dir"
841 }
842 run_test 24c "rename directory to non-existent target"
843
844 test_24d() {
845         test_mkdir -c1 $DIR/$tdir
846         test_mkdir -c1 $DIR/$tdir/d$testnum.1
847         test_mkdir -c1 $DIR/$tdir/d$testnum.2
848         mrename $DIR/$tdir/d$testnum.1 $DIR/$tdir/d$testnum.2
849         $CHECKSTAT -a $DIR/$tdir/d$testnum.1 || error "d$testnum.1 exists"
850         $CHECKSTAT -t dir $DIR/$tdir/d$testnum.2 || error "d$testnum.2 not dir"
851 }
852 run_test 24d "rename directory to existing target"
853
854 test_24e() {
855         echo '-- cross directory renames --'
856         test_mkdir $DIR/R5a
857         test_mkdir $DIR/R5b
858         touch $DIR/R5a/f
859         mv $DIR/R5a/f $DIR/R5b/g
860         $CHECKSTAT -a $DIR/R5a/f || error
861         $CHECKSTAT -t file $DIR/R5b/g || error
862 }
863 run_test 24e "touch .../R5a/f; rename .../R5a/f .../R5b/g ======"
864
865 test_24f() {
866         test_mkdir $DIR/R6a
867         test_mkdir $DIR/R6b
868         touch $DIR/R6a/f $DIR/R6b/g
869         mv $DIR/R6a/f $DIR/R6b/g
870         $CHECKSTAT -a $DIR/R6a/f || error
871         $CHECKSTAT -t file $DIR/R6b/g || error
872 }
873 run_test 24f "touch .../R6a/f R6b/g; mv .../R6a/f .../R6b/g ===="
874
875 test_24g() {
876         test_mkdir $DIR/R7a
877         test_mkdir $DIR/R7b
878         test_mkdir $DIR/R7a/d
879         mv $DIR/R7a/d $DIR/R7b/e
880         $CHECKSTAT -a $DIR/R7a/d || error
881         $CHECKSTAT -t dir $DIR/R7b/e || error
882 }
883 run_test 24g "mkdir .../R7{a,b}/d; mv .../R7a/d .../R7b/e ======"
884
885 test_24h() {
886         test_mkdir -c1 $DIR/R8a
887         test_mkdir -c1 $DIR/R8b
888         test_mkdir -c1 $DIR/R8a/d
889         test_mkdir -c1 $DIR/R8b/e
890         mrename $DIR/R8a/d $DIR/R8b/e
891         $CHECKSTAT -a $DIR/R8a/d || error
892         $CHECKSTAT -t dir $DIR/R8b/e || error
893 }
894 run_test 24h "mkdir .../R8{a,b}/{d,e}; rename .../R8a/d .../R8b/e"
895
896 test_24i() {
897         echo "-- rename error cases"
898         test_mkdir $DIR/R9
899         test_mkdir $DIR/R9/a
900         touch $DIR/R9/f
901         mrename $DIR/R9/f $DIR/R9/a
902         $CHECKSTAT -t file $DIR/R9/f || error
903         $CHECKSTAT -t dir  $DIR/R9/a || error
904         $CHECKSTAT -a $DIR/R9/a/f || error
905 }
906 run_test 24i "rename file to dir error: touch f ; mkdir a ; rename f a"
907
908 test_24j() {
909         test_mkdir $DIR/R10
910         mrename $DIR/R10/f $DIR/R10/g
911         $CHECKSTAT -t dir $DIR/R10 || error
912         $CHECKSTAT -a $DIR/R10/f || error
913         $CHECKSTAT -a $DIR/R10/g || error
914 }
915 run_test 24j "source does not exist ============================"
916
917 test_24k() {
918         test_mkdir $DIR/R11a
919         test_mkdir $DIR/R11a/d
920         touch $DIR/R11a/f
921         mv $DIR/R11a/f $DIR/R11a/d
922         $CHECKSTAT -a $DIR/R11a/f || error
923         $CHECKSTAT -t file $DIR/R11a/d/f || error
924 }
925 run_test 24k "touch .../R11a/f; mv .../R11a/f .../R11a/d ======="
926
927 # bug 2429 - rename foo foo foo creates invalid file
928 test_24l() {
929         f="$DIR/f24l"
930         $MULTIOP $f OcNs || error
931 }
932 run_test 24l "Renaming a file to itself ========================"
933
934 test_24m() {
935         f="$DIR/f24m"
936         $MULTIOP $f OcLN ${f}2 ${f}2 || error "link ${f}2 ${f}2 failed"
937         # on ext3 this does not remove either the source or target files
938         # though the "expected" operation would be to remove the source
939         $CHECKSTAT -t file ${f} || error "${f} missing"
940         $CHECKSTAT -t file ${f}2 || error "${f}2 missing"
941 }
942 run_test 24m "Renaming a file to a hard link to itself ========="
943
944 test_24n() {
945     f="$DIR/f24n"
946     # this stats the old file after it was renamed, so it should fail
947     touch ${f}
948     $CHECKSTAT ${f}
949     mv ${f} ${f}.rename
950     $CHECKSTAT ${f}.rename
951     $CHECKSTAT -a ${f}
952 }
953 run_test 24n "Statting the old file after renaming (Posix rename 2)"
954
955 test_24o() {
956         test_mkdir $DIR/$tdir
957         rename_many -s random -v -n 10 $DIR/$tdir
958 }
959 run_test 24o "rename of files during htree split"
960
961 test_24p() {
962         test_mkdir $DIR/R12a
963         test_mkdir $DIR/R12b
964         DIRINO=`ls -lid $DIR/R12a | awk '{ print $1 }'`
965         mrename $DIR/R12a $DIR/R12b
966         $CHECKSTAT -a $DIR/R12a || error
967         $CHECKSTAT -t dir $DIR/R12b || error
968         DIRINO2=`ls -lid $DIR/R12b | awk '{ print $1 }'`
969         [ "$DIRINO" = "$DIRINO2" ] || error "R12a $DIRINO != R12b $DIRINO2"
970 }
971 run_test 24p "mkdir .../R12{a,b}; rename .../R12a .../R12b"
972
973 cleanup_multiop_pause() {
974         trap 0
975         kill -USR1 $MULTIPID
976 }
977
978 test_24q() {
979         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
980         test_mkdir $DIR/R13a
981         test_mkdir $DIR/R13b
982         local DIRINO=$(ls -lid $DIR/R13a | awk '{ print $1 }')
983         multiop_bg_pause $DIR/R13b D_c || error "multiop failed to start"
984         MULTIPID=$!
985
986         trap cleanup_multiop_pause EXIT
987         mrename $DIR/R13a $DIR/R13b
988         $CHECKSTAT -a $DIR/R13a || error "R13a still exists"
989         $CHECKSTAT -t dir $DIR/R13b || error "R13b does not exist"
990         local DIRINO2=$(ls -lid $DIR/R13b | awk '{ print $1 }')
991         [ "$DIRINO" = "$DIRINO2" ] || error "R13a $DIRINO != R13b $DIRINO2"
992         cleanup_multiop_pause
993         wait $MULTIPID || error "multiop close failed"
994 }
995 run_test 24q "mkdir .../R13{a,b}; open R13b rename R13a R13b ==="
996
997 test_24r() { #bug 3789
998         test_mkdir $DIR/R14a
999         test_mkdir $DIR/R14a/b
1000         mrename $DIR/R14a $DIR/R14a/b && error "rename to subdir worked!"
1001         $CHECKSTAT -t dir $DIR/R14a || error "$DIR/R14a missing"
1002         $CHECKSTAT -t dir $DIR/R14a/b || error "$DIR/R14a/b missing"
1003 }
1004 run_test 24r "mkdir .../R14a/b; rename .../R14a .../R14a/b ====="
1005
1006 test_24s() {
1007         test_mkdir $DIR/R15a
1008         test_mkdir $DIR/R15a/b
1009         test_mkdir $DIR/R15a/b/c
1010         mrename $DIR/R15a $DIR/R15a/b/c && error "rename to sub-subdir worked!"
1011         $CHECKSTAT -t dir $DIR/R15a || error "$DIR/R15a missing"
1012         $CHECKSTAT -t dir $DIR/R15a/b/c || error "$DIR/R15a/b/c missing"
1013 }
1014 run_test 24s "mkdir .../R15a/b/c; rename .../R15a .../R15a/b/c ="
1015 test_24t() {
1016         test_mkdir $DIR/R16a
1017         test_mkdir $DIR/R16a/b
1018         test_mkdir $DIR/R16a/b/c
1019         mrename $DIR/R16a/b/c $DIR/R16a && error "rename to sub-subdir worked!"
1020         $CHECKSTAT -t dir $DIR/R16a || error "$DIR/R16a missing"
1021         $CHECKSTAT -t dir $DIR/R16a/b/c || error "$DIR/R16a/b/c missing"
1022 }
1023 run_test 24t "mkdir .../R16a/b/c; rename .../R16a/b/c .../R16a ="
1024
1025 test_24u() { # bug12192
1026         $MULTIOP $DIR/$tfile C2w$((2048 * 1024))c || error
1027         $CHECKSTAT -s $((2048 * 1024)) $DIR/$tfile || error "wrong file size"
1028 }
1029 run_test 24u "create stripe file"
1030
1031 page_size() {
1032         local size
1033         size=$(getconf PAGE_SIZE 2>/dev/null)
1034         echo -n ${size:-4096}
1035 }
1036
1037 simple_cleanup_common() {
1038         local rc=0
1039         trap 0
1040         [ -z "$DIR" -o -z "$tdir" ] && return 0
1041
1042         local start=$SECONDS
1043         rm -rf $DIR/$tdir
1044         rc=$?
1045         wait_delete_completed
1046         echo "cleanup time $((SECONDS - start))"
1047         return $rc
1048 }
1049
1050 max_pages_per_rpc() {
1051         local mdtname="$(printf "MDT%04x" ${1:-0})"
1052         $LCTL get_param -n mdc.*$mdtname*.max_pages_per_rpc
1053 }
1054
1055 test_24v() {
1056         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1057         local nrfiles=${COUNT:-100000}
1058         # Performance issue on ZFS see LU-4072 (c.f. LU-2887)
1059         [ $(facet_fstype $SINGLEMDS) = "zfs" ] && nrfiles=${COUNT:-10000}
1060
1061         local fname="$DIR/$tdir/$tfile"
1062         test_mkdir "$(dirname $fname)"
1063         # assume MDT0000 has the fewest inodes
1064         local stripes=$($LFS getdirstripe -c $(dirname $fname))
1065         local free_inodes=$(($(mdt_free_inodes 0) * stripes))
1066         [[ $free_inodes -lt $nrfiles ]] && nrfiles=$free_inodes
1067
1068         trap simple_cleanup_common EXIT
1069
1070         createmany -m "$fname" $nrfiles
1071
1072         cancel_lru_locks mdc
1073         lctl set_param mdc.*.stats clear
1074
1075         # was previously test_24D: LU-6101
1076         # readdir() returns correct number of entries after cursor reload
1077         local num_ls=$(ls $DIR/$tdir | wc -l)
1078         local num_uniq=$(ls $DIR/$tdir | sort -u | wc -l)
1079         local num_all=$(ls -a $DIR/$tdir | wc -l)
1080         if [ $num_ls -ne $nrfiles -o $num_uniq -ne $nrfiles -o \
1081              $num_all -ne $((nrfiles + 2)) ]; then
1082                 error "Expected $nrfiles files, got $num_ls " \
1083                         "($num_uniq unique $num_all .&..)"
1084         fi
1085         # LU-5 large readdir
1086         # dirent_size = 32 bytes for sizeof(struct lu_dirent) +
1087         #               N bytes for name (len($nrfiles) rounded to 8 bytes) +
1088         #               8 bytes for luda_type (4 bytes rounded to 8 bytes)
1089         # take into account of overhead in lu_dirpage header and end mark in
1090         # each page, plus one in rpc_num calculation.
1091         local dirent_size=$((32 + (${#tfile} | 7) + 1 + 8))
1092         local page_entries=$((($(page_size) - 24) / dirent_size))
1093         local mdt_idx=$($LFS getdirstripe -i $(dirname $fname))
1094         local rpc_pages=$(max_pages_per_rpc $mdt_idx)
1095         local rpc_max=$((nrfiles / (page_entries * rpc_pages) + stripes))
1096         local mds_readpage=$(calc_stats mdc.*.stats mds_readpage)
1097         echo "readpages: $mds_readpage rpc_max: $rpc_max"
1098         (( $mds_readpage < $rpc_max - 2 || $mds_readpage > $rpc_max + 1)) &&
1099                 error "large readdir doesn't take effect: " \
1100                       "$mds_readpage should be about $rpc_max"
1101
1102         simple_cleanup_common
1103 }
1104 run_test 24v "list large directory (test hash collision, b=17560)"
1105
1106 test_24w() { # bug21506
1107         SZ1=234852
1108         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=4096 || return 1
1109         dd if=/dev/zero bs=$SZ1 count=1 >> $DIR/$tfile || return 2
1110         dd if=$DIR/$tfile of=$DIR/${tfile}_left bs=1M skip=4097 || return 3
1111         SZ2=`ls -l $DIR/${tfile}_left | awk '{print $5}'`
1112         [[ "$SZ1" -eq "$SZ2" ]] ||
1113                 error "Error reading at the end of the file $tfile"
1114 }
1115 run_test 24w "Reading a file larger than 4Gb"
1116
1117 test_24x() {
1118         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 2 MDTs" && return
1119
1120         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.56) ]] &&
1121                 skip "Need MDS version at least 2.7.56" && return
1122
1123         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1124         local MDTIDX=1
1125         local remote_dir=$DIR/$tdir/remote_dir
1126
1127         test_mkdir $DIR/$tdir
1128         $LFS mkdir -i $MDTIDX $remote_dir ||
1129                 error "create remote directory failed"
1130
1131         test_mkdir $DIR/$tdir/src_dir
1132         touch $DIR/$tdir/src_file
1133         test_mkdir $remote_dir/tgt_dir
1134         touch $remote_dir/tgt_file
1135
1136         mrename $DIR/$tdir/src_dir $remote_dir/tgt_dir ||
1137                 error "rename dir cross MDT failed!"
1138
1139         mrename $DIR/$tdir/src_file $remote_dir/tgt_file ||
1140                 error "rename file cross MDT failed!"
1141
1142         touch $DIR/$tdir/ln_file
1143         ln $DIR/$tdir/ln_file $remote_dir/ln_name ||
1144                 error "ln file cross MDT failed"
1145
1146         rm -rf $DIR/$tdir || error "Can not delete directories"
1147 }
1148 run_test 24x "cross MDT rename/link"
1149
1150 test_24y() {
1151         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 2 MDTs" && return
1152         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1153         local remote_dir=$DIR/$tdir/remote_dir
1154         local mdtidx=1
1155
1156         test_mkdir $DIR/$tdir
1157         $LFS mkdir -i $mdtidx $remote_dir ||
1158                    error "create remote directory failed"
1159
1160         test_mkdir $remote_dir/src_dir
1161         touch $remote_dir/src_file
1162         test_mkdir $remote_dir/tgt_dir
1163         touch $remote_dir/tgt_file
1164
1165         mrename $remote_dir/src_dir $remote_dir/tgt_dir ||
1166                 error "rename subdir in the same remote dir failed!"
1167
1168         mrename $remote_dir/src_file $remote_dir/tgt_file ||
1169                 error "rename files in the same remote dir failed!"
1170
1171         ln $remote_dir/tgt_file $remote_dir/tgt_file1 ||
1172                 error "link files in the same remote dir failed!"
1173
1174         rm -rf $DIR/$tdir || error "Can not delete directories"
1175 }
1176 run_test 24y "rename/link on the same dir should succeed"
1177
1178 test_24A() { # LU-3182
1179         local NFILES=5000
1180
1181         rm -rf $DIR/$tdir
1182         test_mkdir $DIR/$tdir
1183         trap simple_cleanup_common EXIT
1184         createmany -m $DIR/$tdir/$tfile $NFILES
1185         local t=$(ls $DIR/$tdir | wc -l)
1186         local u=$(ls $DIR/$tdir | sort -u | wc -l)
1187         local v=$(ls -ai $DIR/$tdir | sort -u | wc -l)
1188         if [ $t -ne $NFILES -o $u -ne $NFILES -o $v -ne $((NFILES + 2)) ] ; then
1189                 error "Expected $NFILES files, got $t ($u unique $v .&..)"
1190         fi
1191
1192         simple_cleanup_common || error "Can not delete directories"
1193 }
1194 run_test 24A "readdir() returns correct number of entries."
1195
1196 test_24B() { # LU-4805
1197         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
1198         local count
1199
1200         test_mkdir $DIR/$tdir
1201         $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/striped_dir ||
1202                 error "create striped dir failed"
1203
1204         count=$(ls -ai $DIR/$tdir/striped_dir | wc -l)
1205         [ $count -eq 2 ] || error "Expected 2, got $count"
1206
1207         touch $DIR/$tdir/striped_dir/a
1208
1209         count=$(ls -ai $DIR/$tdir/striped_dir | wc -l)
1210         [ $count -eq 3 ] || error "Expected 3, got $count"
1211
1212         touch $DIR/$tdir/striped_dir/.f
1213
1214         count=$(ls -ai $DIR/$tdir/striped_dir | wc -l)
1215         [ $count -eq 4 ] || error "Expected 4, got $count"
1216
1217         rm -rf $DIR/$tdir || error "Can not delete directories"
1218 }
1219 run_test 24B "readdir for striped dir return correct number of entries"
1220
1221 test_24C() {
1222         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
1223
1224         mkdir $DIR/$tdir
1225         mkdir $DIR/$tdir/d0
1226         mkdir $DIR/$tdir/d1
1227
1228         $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/d0/striped_dir ||
1229                 error "create striped dir failed"
1230
1231         cd $DIR/$tdir/d0/striped_dir
1232
1233         local d0_ino=$(ls -i -l -a $DIR/$tdir | grep "d0" | awk '{print $1}')
1234         local d1_ino=$(ls -i -l -a $DIR/$tdir | grep "d1" | awk '{print $1}')
1235         local parent_ino=$(ls -i -l -a | grep "\.\." | awk '{print $1}')
1236
1237         [ "$d0_ino" = "$parent_ino" ] ||
1238                 error ".. wrong, expect $d0_ino, get $parent_ino"
1239
1240         mv $DIR/$tdir/d0/striped_dir $DIR/$tdir/d1/ ||
1241                 error "mv striped dir failed"
1242
1243         parent_ino=$(ls -i -l -a | grep "\.\." | awk '{print $1}')
1244
1245         [ "$d1_ino" = "$parent_ino" ] ||
1246                 error ".. wrong after mv, expect $d1_ino, get $parent_ino"
1247 }
1248 run_test 24C "check .. in striped dir"
1249
1250 test_24E() {
1251         [[ $MDSCOUNT -lt 4 ]] && skip "needs >= 4 MDTs" && return
1252         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1253
1254         mkdir -p $DIR/$tdir
1255         mkdir $DIR/$tdir/src_dir
1256         $LFS mkdir -i 1 $DIR/$tdir/src_dir/src_child ||
1257                 error "create remote source failed"
1258
1259         touch $DIR/$tdir/src_dir/src_child/a
1260
1261         $LFS mkdir -i 2 $DIR/$tdir/tgt_dir ||
1262                 error "create remote target dir failed"
1263
1264         $LFS mkdir -i 3 $DIR/$tdir/tgt_dir/tgt_child ||
1265                 error "create remote target child failed"
1266
1267         mrename $DIR/$tdir/src_dir/src_child $DIR/$tdir/tgt_dir/tgt_child ||
1268                 error "rename dir cross MDT failed!"
1269
1270         find $DIR/$tdir
1271
1272         $CHECKSTAT -t dir $DIR/$tdir/src_dir/src_child &&
1273                 error "src_child still exists after rename"
1274
1275         $CHECKSTAT -t file $DIR/$tdir/tgt_dir/tgt_child/a ||
1276                 error "missing file(a) after rename"
1277
1278         rm -rf $DIR/$tdir || error "Can not delete directories"
1279 }
1280 run_test 24E "cross MDT rename/link"
1281
1282 test_25a() {
1283         echo '== symlink sanity ============================================='
1284
1285         test_mkdir $DIR/d25
1286         ln -s d25 $DIR/s25
1287         touch $DIR/s25/foo || error
1288 }
1289 run_test 25a "create file in symlinked directory ==============="
1290
1291 test_25b() {
1292         [ ! -d $DIR/d25 ] && test_25a
1293         $CHECKSTAT -t file $DIR/s25/foo || error
1294 }
1295 run_test 25b "lookup file in symlinked directory ==============="
1296
1297 test_26a() {
1298         test_mkdir $DIR/d26
1299         test_mkdir $DIR/d26/d26-2
1300         ln -s d26/d26-2 $DIR/s26
1301         touch $DIR/s26/foo || error
1302 }
1303 run_test 26a "multiple component symlink ======================="
1304
1305 test_26b() {
1306         test_mkdir -p $DIR/$tdir/d26-2
1307         ln -s $tdir/d26-2/foo $DIR/s26-2
1308         touch $DIR/s26-2 || error
1309 }
1310 run_test 26b "multiple component symlink at end of lookup ======"
1311
1312 test_26c() {
1313         test_mkdir $DIR/d26.2
1314         touch $DIR/d26.2/foo
1315         ln -s d26.2 $DIR/s26.2-1
1316         ln -s s26.2-1 $DIR/s26.2-2
1317         ln -s s26.2-2 $DIR/s26.2-3
1318         chmod 0666 $DIR/s26.2-3/foo
1319 }
1320 run_test 26c "chain of symlinks"
1321
1322 # recursive symlinks (bug 439)
1323 test_26d() {
1324         ln -s d26-3/foo $DIR/d26-3
1325 }
1326 run_test 26d "create multiple component recursive symlink"
1327
1328 test_26e() {
1329         [ ! -h $DIR/d26-3 ] && test_26d
1330         rm $DIR/d26-3
1331 }
1332 run_test 26e "unlink multiple component recursive symlink"
1333
1334 # recursive symlinks (bug 7022)
1335 test_26f() {
1336         test_mkdir $DIR/$tdir
1337         test_mkdir $DIR/$tdir/$tfile
1338         cd $DIR/$tdir/$tfile           || error "cd $DIR/$tdir/$tfile failed"
1339         test_mkdir -p lndir/bar1
1340         test_mkdir $DIR/$tdir/$tfile/$tfile
1341         cd $tfile                || error "cd $tfile failed"
1342         ln -s .. dotdot          || error "ln dotdot failed"
1343         ln -s dotdot/lndir lndir || error "ln lndir failed"
1344         cd $DIR/$tdir                 || error "cd $DIR/$tdir failed"
1345         output=`ls $tfile/$tfile/lndir/bar1`
1346         [ "$output" = bar1 ] && error "unexpected output"
1347         rm -r $tfile             || error "rm $tfile failed"
1348         $CHECKSTAT -a $DIR/$tfile || error "$tfile not gone"
1349 }
1350 run_test 26f "rm -r of a directory which has recursive symlink"
1351
1352 test_27a() {
1353         test_mkdir $DIR/$tdir
1354         $LFS getstripe $DIR/$tdir
1355         $LFS setstripe -c 1 $DIR/$tdir/$tfile || error "setstripe failed"
1356         $CHECKSTAT -t file $DIR/$tdir/$tfile || error "checkstat failed"
1357         cp /etc/hosts $DIR/$tdir/$tfile || error
1358 }
1359 run_test 27a "one stripe file"
1360
1361 test_27b() {
1362         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
1363         test_mkdir $DIR/$tdir
1364         $LFS setstripe -c 2 $DIR/$tdir/$tfile || error "setstripe failed"
1365         $LFS getstripe -c $DIR/$tdir/$tfile
1366         [ $($LFS getstripe -c $DIR/$tdir/$tfile) -eq 2 ] ||
1367                 error "two-stripe file doesn't have two stripes"
1368
1369         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=4k count=4 || error "dd failed"
1370 }
1371 run_test 27b "create and write to two stripe file"
1372
1373 test_27d() {
1374         test_mkdir $DIR/$tdir
1375         $LFS setstripe -c 0 -i -1 -S 0 $DIR/$tdir/$tfile ||
1376                 error "setstripe failed"
1377         $CHECKSTAT -t file $DIR/$tdir/$tfile || error "checkstat failed"
1378         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=4k count=4 || error "dd failed"
1379 }
1380 run_test 27d "create file with default settings"
1381
1382 test_27e() {
1383         # LU-5839 adds check for existed layout before setting it
1384         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.56) ]] &&
1385                 skip "Need MDS version at least 2.7.56" && return
1386         test_mkdir $DIR/$tdir
1387         $LFS setstripe -c 2 $DIR/$tdir/$tfile || error "setstripe failed"
1388         $LFS setstripe -c 2 $DIR/$tdir/$tfile && error "setstripe worked twice"
1389         $CHECKSTAT -t file $DIR/$tdir/$tfile || error "checkstat failed"
1390 }
1391 run_test 27e "setstripe existing file (should return error)"
1392
1393 test_27f() {
1394         test_mkdir $DIR/$tdir
1395         $LFS setstripe -S 100 -i 0 -c 1 $DIR/$tdir/$tfile &&
1396                 error "$SETSTRIPE $DIR/$tdir/$tfile failed"
1397         $CHECKSTAT -t file $DIR/$tdir/$tfile &&
1398                 error "$CHECKSTAT -t file $DIR/$tdir/$tfile should fail"
1399         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=4k count=4 || error "dd failed"
1400         $LFS getstripe $DIR/$tdir/$tfile || error "$LFS getstripe failed"
1401 }
1402 run_test 27f "setstripe with bad stripe size (should return error)"
1403
1404 test_27g() {
1405         test_mkdir $DIR/$tdir
1406         $MCREATE $DIR/$tdir/$tfile || error "mcreate failed"
1407         $LFS getstripe $DIR/$tdir/$tfile 2>&1 | grep "no stripe info" ||
1408                 error "$DIR/$tdir/$tfile has object"
1409 }
1410 run_test 27g "$LFS getstripe with no objects"
1411
1412 test_27i() {
1413         test_mkdir $DIR/$tdir
1414         touch $DIR/$tdir/$tfile || error "touch failed"
1415         [[ $($LFS getstripe -c $DIR/$tdir/$tfile) -gt 0 ]] ||
1416                 error "missing objects"
1417 }
1418 run_test 27i "$LFS getstripe with some objects"
1419
1420 test_27j() {
1421         test_mkdir $DIR/$tdir
1422         $LFS setstripe -i $OSTCOUNT $DIR/$tdir/$tfile &&
1423                 error "setstripe failed" || true
1424 }
1425 run_test 27j "setstripe with bad stripe offset (should return error)"
1426
1427 test_27k() { # bug 2844
1428         test_mkdir $DIR/$tdir
1429         local file=$DIR/$tdir/$tfile
1430         local ll_max_blksize=$((4 * 1024 * 1024))
1431         $LFS setstripe -S 67108864 $file || error "setstripe failed"
1432         local blksize=$(stat $file | awk '/IO Block:/ { print $7 }')
1433         [ $blksize -le $ll_max_blksize ] || error "1:$blksize > $ll_max_blksize"
1434         dd if=/dev/zero of=$file bs=4k count=1
1435         blksize=$(stat $file | awk '/IO Block:/ { print $7 }')
1436         [ $blksize -le $ll_max_blksize ] || error "2:$blksize > $ll_max_blksize"
1437 }
1438 run_test 27k "limit i_blksize for broken user apps"
1439
1440 test_27l() {
1441         mcreate $DIR/$tfile || error "creating file"
1442         $RUNAS $LFS setstripe -c 1 $DIR/$tfile &&
1443                 error "setstripe should have failed" || true
1444 }
1445 run_test 27l "check setstripe permissions (should return error)"
1446
1447 test_27m() {
1448         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
1449
1450         ORIGFREE=$($LCTL get_param -n lov.$FSNAME-clilov-*.kbytesavail |
1451                    head -n1)
1452         if [[ $ORIGFREE -gt $MAXFREE ]]; then
1453                 skip "$ORIGFREE > $MAXFREE skipping out-of-space test on OST0"
1454                 return
1455         fi
1456         trap simple_cleanup_common EXIT
1457         test_mkdir $DIR/$tdir
1458         $LFS setstripe -i 0 -c 1 $DIR/$tdir/$tfile.1
1459         dd if=/dev/zero of=$DIR/$tdir/$tfile.1 bs=1024 count=$MAXFREE &&
1460                 error "dd should fill OST0"
1461         i=2
1462         while $LFS setstripe -i 0 -c 1 $DIR/$tdir/$tfile.$i; do
1463                 i=$((i + 1))
1464                 [ $i -gt 256 ] && break
1465         done
1466         i=$((i + 1))
1467         touch $DIR/$tdir/$tfile.$i
1468         [ $($LFS getstripe $DIR/$tdir/$tfile.$i | grep -A 10 obdidx |
1469             awk '{print $1}'| grep -w "0") ] &&
1470                 error "OST0 was full but new created file still use it"
1471         i=$((i + 1))
1472         touch $DIR/$tdir/$tfile.$i
1473         [ $($LFS getstripe $DIR/$tdir/$tfile.$i | grep -A 10 obdidx |
1474             awk '{print $1}'| grep -w "0") ] &&
1475                 error "OST0 was full but new created file still use it"
1476         simple_cleanup_common
1477 }
1478 run_test 27m "create file while OST0 was full"
1479
1480 sleep_maxage() {
1481         local delay=$(do_facet $SINGLEMDS lctl get_param -n lov.*.qos_maxage |
1482                       head -n 1 | awk '{ print $1 * 2 }')
1483         sleep $delay
1484 }
1485
1486 # OSCs keep a NOSPC flag that will be reset after ~5s (qos_maxage)
1487 # if the OST isn't full anymore.
1488 reset_enospc() {
1489         local OSTIDX=${1:-""}
1490
1491         local list=$(comma_list $(osts_nodes))
1492         [ "$OSTIDX" ] && list=$(facet_host ost$((OSTIDX + 1)))
1493
1494         do_nodes $list lctl set_param fail_loc=0
1495         sync    # initiate all OST_DESTROYs from MDS to OST
1496         sleep_maxage
1497 }
1498
1499 exhaust_precreations() {
1500         local OSTIDX=$1
1501         local FAILLOC=$2
1502         local FAILIDX=${3:-$OSTIDX}
1503         local ofacet=ost$((OSTIDX + 1))
1504
1505         test_mkdir -p -c1 $DIR/$tdir
1506         local mdtidx=$($LFS getstripe -M $DIR/$tdir)
1507         local mfacet=mds$((mdtidx + 1))
1508         echo OSTIDX=$OSTIDX MDTIDX=$mdtidx
1509
1510         local OST=$(ostname_from_index $OSTIDX)
1511
1512         # on the mdt's osc
1513         local mdtosc_proc1=$(get_mdtosc_proc_path $mfacet $OST)
1514         local last_id=$(do_facet $mfacet lctl get_param -n \
1515                         osc.$mdtosc_proc1.prealloc_last_id)
1516         local next_id=$(do_facet $mfacet lctl get_param -n \
1517                         osc.$mdtosc_proc1.prealloc_next_id)
1518
1519         local mdtosc_proc2=$(get_mdtosc_proc_path $mfacet)
1520         do_facet $mfacet lctl get_param osc.$mdtosc_proc2.prealloc*
1521
1522         test_mkdir -p $DIR/$tdir/${OST}
1523         $SETSTRIPE -i $OSTIDX -c 1 $DIR/$tdir/${OST}
1524 #define OBD_FAIL_OST_ENOSPC              0x215
1525         do_facet $ofacet lctl set_param fail_val=$FAILIDX fail_loc=0x215
1526         echo "Creating to objid $last_id on ost $OST..."
1527         createmany -o $DIR/$tdir/${OST}/f $next_id $((last_id - next_id + 2))
1528         do_facet $mfacet lctl get_param osc.$mdtosc_proc2.prealloc*
1529         do_facet $ofacet lctl set_param fail_loc=$FAILLOC
1530         sleep_maxage
1531 }
1532
1533 exhaust_all_precreations() {
1534         local i
1535         for (( i=0; i < OSTCOUNT; i++ )) ; do
1536                 exhaust_precreations $i $1 -1
1537         done
1538 }
1539
1540 test_27n() {
1541         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
1542         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1543         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1544         remote_ost_nodsh && skip "remote OST with nodsh" && return
1545
1546         reset_enospc
1547         rm -f $DIR/$tdir/$tfile
1548         exhaust_precreations 0 0x80000215
1549         $LFS setstripe -c -1 $DIR/$tdir
1550         touch $DIR/$tdir/$tfile || error
1551         $LFS getstripe $DIR/$tdir/$tfile
1552         reset_enospc
1553 }
1554 run_test 27n "create file with some full OSTs"
1555
1556 test_27o() {
1557         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
1558         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1559         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1560         remote_ost_nodsh && skip "remote OST with nodsh" && return
1561
1562         reset_enospc
1563         rm -f $DIR/$tdir/$tfile
1564         exhaust_all_precreations 0x215
1565
1566         touch $DIR/$tdir/$tfile && error "able to create $DIR/$tdir/$tfile"
1567
1568         reset_enospc
1569         rm -rf $DIR/$tdir/*
1570 }
1571 run_test 27o "create file with all full OSTs (should error)"
1572
1573 test_27p() {
1574         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
1575         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1576         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1577         remote_ost_nodsh && skip "remote OST with nodsh" && return
1578
1579         reset_enospc
1580         rm -f $DIR/$tdir/$tfile
1581         test_mkdir $DIR/$tdir
1582
1583         $MCREATE $DIR/$tdir/$tfile || error "mcreate failed"
1584         $TRUNCATE $DIR/$tdir/$tfile 80000000 || error "truncate failed"
1585         $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat failed"
1586
1587         exhaust_precreations 0 0x80000215
1588         echo foo >> $DIR/$tdir/$tfile || error "append failed"
1589         $CHECKSTAT -s 80000004 $DIR/$tdir/$tfile || error "checkstat failed"
1590         $LFS getstripe $DIR/$tdir/$tfile
1591
1592         reset_enospc
1593 }
1594 run_test 27p "append to a truncated file with some full OSTs"
1595
1596 test_27q() {
1597         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
1598         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1599         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1600         remote_ost_nodsh && skip "remote OST with nodsh" && return
1601
1602         reset_enospc
1603         rm -f $DIR/$tdir/$tfile
1604
1605         test_mkdir $DIR/$tdir
1606         $MCREATE $DIR/$tdir/$tfile || error "mcreate $DIR/$tdir/$tfile failed"
1607         $TRUNCATE $DIR/$tdir/$tfile 80000000 ||
1608                 error "truncate $DIR/$tdir/$tfile failed"
1609         $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat failed"
1610
1611         exhaust_all_precreations 0x215
1612
1613         echo foo >> $DIR/$tdir/$tfile && error "append succeeded"
1614         $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat 2 failed"
1615
1616         reset_enospc
1617 }
1618 run_test 27q "append to truncated file with all OSTs full (should error)"
1619
1620 test_27r() {
1621         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
1622         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1623         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1624         remote_ost_nodsh && skip "remote OST with nodsh" && return
1625
1626         reset_enospc
1627         rm -f $DIR/$tdir/$tfile
1628         exhaust_precreations 0 0x80000215
1629
1630         $LFS setstripe -i 0 -c 2 $DIR/$tdir/$tfile # && error
1631
1632         reset_enospc
1633 }
1634 run_test 27r "stripe file with some full OSTs (shouldn't LBUG) ="
1635
1636 test_27s() { # bug 10725
1637         test_mkdir $DIR/$tdir
1638         local stripe_size=$((4096 * 1024 * 1024))       # 2^32
1639         local stripe_count=0
1640         [ $OSTCOUNT -eq 1 ] || stripe_count=2
1641         $LFS setstripe -S $stripe_size -c $stripe_count $DIR/$tdir &&
1642                 error "stripe width >= 2^32 succeeded" || true
1643
1644 }
1645 run_test 27s "lsm_xfersize overflow (should error) (bug 10725)"
1646
1647 test_27t() { # bug 10864
1648         WDIR=$(pwd)
1649         WLFS=$(which lfs)
1650         cd $DIR
1651         touch $tfile
1652         $WLFS getstripe $tfile
1653         cd $WDIR
1654 }
1655 run_test 27t "check that utils parse path correctly"
1656
1657 test_27u() { # bug 4900
1658         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
1659         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1660         local index
1661         local list=$(comma_list $(mdts_nodes))
1662
1663 #define OBD_FAIL_MDS_OSC_PRECREATE      0x139
1664         do_nodes $list $LCTL set_param fail_loc=0x139
1665         test_mkdir -p $DIR/$tdir
1666         trap simple_cleanup_common EXIT
1667         createmany -o $DIR/$tdir/t- 1000
1668         do_nodes $list $LCTL set_param fail_loc=0
1669
1670         TLOG=$TMP/$tfile.getstripe
1671         $LFS getstripe $DIR/$tdir > $TLOG
1672         OBJS=$(awk -vobj=0 '($1 == 0) { obj += 1 } END { print obj; }' $TLOG)
1673         unlinkmany $DIR/$tdir/t- 1000
1674         trap 0
1675         [[ $OBJS -gt 0 ]] &&
1676                 error "$OBJS objects created on OST-0. See $TLOG" || pass
1677 }
1678 run_test 27u "skip object creation on OSC w/o objects"
1679
1680 test_27v() { # bug 4900
1681         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
1682         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1683         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1684         remote_ost_nodsh && skip "remote OST with nodsh" && return
1685
1686         exhaust_all_precreations 0x215
1687         reset_enospc
1688
1689         $LFS setstripe -c 1 $DIR/$tdir         # 1 stripe / file
1690
1691         touch $DIR/$tdir/$tfile
1692         #define OBD_FAIL_TGT_DELAY_PRECREATE     0x705
1693         # all except ost1
1694         for (( i=1; i < OSTCOUNT; i++ )); do
1695                 do_facet ost$i lctl set_param fail_loc=0x705
1696         done
1697         local START=`date +%s`
1698         createmany -o $DIR/$tdir/$tfile 32
1699
1700         local FINISH=`date +%s`
1701         local TIMEOUT=`lctl get_param -n timeout`
1702         local PROCESS=$((FINISH - START))
1703         [ $PROCESS -ge $((TIMEOUT / 2)) ] && \
1704                error "$FINISH - $START >= $TIMEOUT / 2"
1705         sleep $((TIMEOUT / 2 - PROCESS))
1706         reset_enospc
1707 }
1708 run_test 27v "skip object creation on slow OST"
1709
1710 test_27w() { # bug 10997
1711         test_mkdir $DIR/$tdir
1712         $LFS setstripe -S 65536 $DIR/$tdir/f0 || error "setstripe failed"
1713         [ $($LFS getstripe -S $DIR/$tdir/f0) -ne 65536 ] &&
1714                 error "stripe size $size != 65536" || true
1715         [ $($LFS getstripe -d $DIR/$tdir | grep -c "stripe_count") -ne 1 ] &&
1716                 error "$LFS getstripe -d $DIR/$tdir failed" || true
1717 }
1718 run_test 27w "check $LFS setstripe -S option"
1719
1720 test_27wa() {
1721         [[ $OSTCOUNT -lt 2 ]] &&
1722                 skip_env "skipping multiple stripe count/offset test" && return
1723
1724         test_mkdir $DIR/$tdir
1725         for i in $(seq 1 $OSTCOUNT); do
1726                 offset=$((i - 1))
1727                 $LFS setstripe -c $i -i $offset $DIR/$tdir/f$i ||
1728                         error "setstripe -c $i -i $offset failed"
1729                 count=$($LFS getstripe -c $DIR/$tdir/f$i)
1730                 index=$($LFS getstripe -i $DIR/$tdir/f$i)
1731                 [ $count -ne $i ] && error "stripe count $count != $i" || true
1732                 [ $index -ne $offset ] &&
1733                         error "stripe offset $index != $offset" || true
1734         done
1735 }
1736 run_test 27wa "check $LFS setstripe -c -i options"
1737
1738 test_27x() {
1739         remote_ost_nodsh && skip "remote OST with nodsh" && return
1740         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
1741         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1742         OFFSET=$(($OSTCOUNT - 1))
1743         OSTIDX=0
1744         local OST=$(ostname_from_index $OSTIDX)
1745
1746         test_mkdir $DIR/$tdir
1747         $LFS setstripe -c 1 $DIR/$tdir  # 1 stripe per file
1748         do_facet ost$((OSTIDX + 1)) lctl set_param -n obdfilter.$OST.degraded 1
1749         sleep_maxage
1750         createmany -o $DIR/$tdir/$tfile $OSTCOUNT
1751         for i in $(seq 0 $OFFSET); do
1752                 [ $($LFS getstripe $DIR/$tdir/$tfile$i | grep -A 10 obdidx |
1753                         awk '{print $1}' | grep -w "$OSTIDX") ] &&
1754                 error "OST0 was degraded but new created file still use it"
1755         done
1756         do_facet ost$((OSTIDX + 1)) lctl set_param -n obdfilter.$OST.degraded 0
1757 }
1758 run_test 27x "create files while OST0 is degraded"
1759
1760 test_27y() {
1761         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
1762         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1763         remote_ost_nodsh && skip "remote OST with nodsh" && return
1764         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1765
1766         local mdtosc=$(get_mdtosc_proc_path $SINGLEMDS $FSNAME-OST0000)
1767         local last_id=$(do_facet $SINGLEMDS lctl get_param -n \
1768                 osc.$mdtosc.prealloc_last_id)
1769         local next_id=$(do_facet $SINGLEMDS lctl get_param -n \
1770                 osc.$mdtosc.prealloc_next_id)
1771         local fcount=$((last_id - next_id))
1772         [[ $fcount -eq 0 ]] && skip "not enough space on OST0" && return
1773         [[ $fcount -gt $OSTCOUNT ]] && fcount=$OSTCOUNT
1774
1775         local MDS_OSCS=$(do_facet $SINGLEMDS lctl dl |
1776                          awk '/[oO][sS][cC].*md[ts]/ { print $4 }')
1777         local OST_DEACTIVE_IDX=-1
1778         local OSC
1779         local OSTIDX
1780         local OST
1781
1782         for OSC in $MDS_OSCS; do
1783                 OST=$(osc_to_ost $OSC)
1784                 OSTIDX=$(index_from_ostuuid $OST)
1785                 if [ $OST_DEACTIVE_IDX == -1 ]; then
1786                         OST_DEACTIVE_IDX=$OSTIDX
1787                 fi
1788                 if [ $OSTIDX != $OST_DEACTIVE_IDX ]; then
1789                         echo $OSC "is Deactivated:"
1790                         do_facet $SINGLEMDS lctl --device  %$OSC deactivate
1791                 fi
1792         done
1793
1794         OSTIDX=$(index_from_ostuuid $OST)
1795         test_mkdir $DIR/$tdir
1796         $LFS setstripe -c 1 $DIR/$tdir      # 1 stripe / file
1797
1798         for OSC in $MDS_OSCS; do
1799                 OST=$(osc_to_ost $OSC)
1800                 OSTIDX=$(index_from_ostuuid $OST)
1801                 if [ $OSTIDX == $OST_DEACTIVE_IDX ]; then
1802                         echo $OST "is degraded:"
1803                         do_facet ost$((OSTIDX+1)) lctl set_param -n \
1804                                                 obdfilter.$OST.degraded=1
1805                 fi
1806         done
1807
1808         sleep_maxage
1809         createmany -o $DIR/$tdir/$tfile $fcount
1810
1811         for OSC in $MDS_OSCS; do
1812                 OST=$(osc_to_ost $OSC)
1813                 OSTIDX=$(index_from_ostuuid $OST)
1814                 if [ $OSTIDX == $OST_DEACTIVE_IDX ]; then
1815                         echo $OST "is recovered from degraded:"
1816                         do_facet ost$((OSTIDX+1)) lctl set_param -n \
1817                                                 obdfilter.$OST.degraded=0
1818                 else
1819                         do_facet $SINGLEMDS lctl --device %$OSC activate
1820                 fi
1821         done
1822
1823         # all osp devices get activated, hence -1 stripe count restored
1824         local stripe_count=0
1825
1826         # sleep 2*lod_qos_maxage seconds waiting for lod qos to notice osp
1827         # devices get activated.
1828         sleep_maxage
1829         $LFS setstripe -c -1 $DIR/$tfile
1830         stripe_count=$($LFS getstripe -c $DIR/$tfile)
1831         rm -f $DIR/$tfile
1832         [ $stripe_count -ne $OSTCOUNT ] &&
1833                 error "Of $OSTCOUNT OSTs, only $stripe_count is available"
1834         return 0
1835 }
1836 run_test 27y "create files while OST0 is degraded and the rest inactive"
1837
1838 check_seq_oid()
1839 {
1840         log "check file $1"
1841
1842         lmm_count=$($GETSTRIPE -c $1)
1843         lmm_seq=$($GETSTRIPE -v $1 | awk '/lmm_seq/ { print $2 }')
1844         lmm_oid=$($GETSTRIPE -v $1 | awk '/lmm_object_id/ { print $2 }')
1845
1846         local old_ifs="$IFS"
1847         IFS=$'[:]'
1848         fid=($($LFS path2fid $1))
1849         IFS="$old_ifs"
1850
1851         log "FID seq ${fid[1]}, oid ${fid[2]} ver ${fid[3]}"
1852         log "LOV seq $lmm_seq, oid $lmm_oid, count: $lmm_count"
1853
1854         # compare lmm_seq and lu_fid->f_seq
1855         [ $lmm_seq = ${fid[1]} ] || { error "SEQ mismatch"; return 1; }
1856         # compare lmm_object_id and lu_fid->oid
1857         [ $lmm_oid = ${fid[2]} ] || { error "OID mismatch"; return 2; }
1858
1859         # check the trusted.fid attribute of the OST objects of the file
1860         local have_obdidx=false
1861         local stripe_nr=0
1862         $GETSTRIPE $1 | while read obdidx oid hex seq; do
1863                 # skip lines up to and including "obdidx"
1864                 [ -z "$obdidx" ] && break
1865                 [ "$obdidx" = "obdidx" ] && have_obdidx=true && continue
1866                 $have_obdidx || continue
1867
1868                 local ost=$((obdidx + 1))
1869                 local dev=$(ostdevname $ost)
1870                 local oid_hex
1871
1872                 log "want: stripe:$stripe_nr ost:$obdidx oid:$oid/$hex seq:$seq"
1873
1874                 seq=$(echo $seq | sed -e "s/^0x//g")
1875                 if [ $seq == 0 ] || [ $(facet_fstype ost$ost) == zfs ]; then
1876                         oid_hex=$(echo $oid)
1877                 else
1878                         oid_hex=$(echo $hex | sed -e "s/^0x//g")
1879                 fi
1880                 local obj_file="O/$seq/d$((oid %32))/$oid_hex"
1881
1882                 local ff=""
1883                 #
1884                 # Don't unmount/remount the OSTs if we don't need to do that.
1885                 # LU-2577 changes filter_fid to be smaller, so debugfs needs
1886                 # update too, until that use mount/ll_decode_filter_fid/mount.
1887                 # Re-enable when debugfs will understand new filter_fid.
1888                 #
1889                 if [ $(facet_fstype ost$ost) == ldiskfs ]; then
1890                         ff=$(do_facet ost$ost "$DEBUGFS -c -R 'stat $obj_file' \
1891                                 $dev 2>/dev/null" | grep "parent=")
1892                 fi
1893                 if [ -z "$ff" ]; then
1894                         stop ost$ost
1895                         mount_fstype ost$ost
1896                         ff=$(do_facet ost$ost $LL_DECODE_FILTER_FID \
1897                                 $(facet_mntpt ost$ost)/$obj_file)
1898                         unmount_fstype ost$ost
1899                         start ost$ost $dev $OST_MOUNT_OPTS
1900                         clients_up
1901                 fi
1902
1903                 [ -z "$ff" ] && error "$obj_file: no filter_fid info"
1904
1905                 echo "$ff" | sed -e 's#.*objid=#got: objid=#'
1906
1907                 # /mnt/O/0/d23/23: objid=23 seq=0 parent=[0x200000400:0x1e:0x1]
1908                 # fid: objid=23 seq=0 parent=[0x200000400:0x1e:0x0] stripe=1
1909                 #
1910                 # fid: parent=[0x200000400:0x1e:0x0] stripe=1 stripe_count=2 \
1911                 #       stripe_size=1048576 component_id=1 component_start=0 \
1912                 #       component_end=33554432
1913                 local ff_parent=$(sed -e 's/.*parent=.//' <<<$ff)
1914                 local ff_pseq=$(cut -d: -f1 <<<$ff_parent)
1915                 local ff_poid=$(cut -d: -f2 <<<$ff_parent)
1916                 local ff_pstripe
1917                 if grep -q 'stripe=' <<<$ff; then
1918                         ff_pstripe=$(sed -e 's/.*stripe=//' -e 's/ .*//' <<<$ff)
1919                 else
1920                         # $LL_DECODE_FILTER_FID does not print "stripe="; look
1921                         # into f_ver in this case.  See comment on ff_parent.
1922                         ff_pstripe=$(cut -d: -f3 <<<$ff_parent | sed -e 's/]//')
1923                 fi
1924
1925                 # compare lmm_seq and filter_fid->ff_parent.f_seq
1926                 [ $ff_pseq = $lmm_seq ] ||
1927                         error "FF parent SEQ $ff_pseq != $lmm_seq"
1928                 # compare lmm_object_id and filter_fid->ff_parent.f_oid
1929                 [ $ff_poid = $lmm_oid ] ||
1930                         error "FF parent OID $ff_poid != $lmm_oid"
1931                 (($ff_pstripe == $stripe_nr)) ||
1932                         error "FF stripe $ff_pstripe != $stripe_nr"
1933
1934                 stripe_nr=$((stripe_nr + 1))
1935                 [ $(lustre_version_code client) -lt $(version_code 2.9.55) ] &&
1936                         continue
1937                 if grep -q 'stripe_count=' <<<$ff; then
1938                         local ff_scnt=$(sed -e 's/.*stripe_count=//' \
1939                                             -e 's/ .*//' <<<$ff)
1940                         [ $lmm_count = $ff_scnt ] ||
1941                                 error "FF stripe count $lmm_count != $ff_scnt"
1942                 fi
1943         done
1944 }
1945
1946 test_27z() {
1947         remote_ost_nodsh && skip "remote OST with nodsh" && return
1948         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1949         test_mkdir $DIR/$tdir
1950
1951         $LFS setstripe -c 1 -i 0 -S 64k $DIR/$tdir/$tfile-1 ||
1952                 { error "setstripe -c -1 failed"; return 1; }
1953         # We need to send a write to every object to get parent FID info set.
1954         # This _should_ also work for setattr, but does not currently.
1955         # touch $DIR/$tdir/$tfile-1 ||
1956         dd if=/dev/zero of=$DIR/$tdir/$tfile-1 bs=1M count=1 ||
1957                 { error "dd $tfile-1 failed"; return 2; }
1958         $LFS setstripe -c -1 -i $((OSTCOUNT - 1)) -S 1M $DIR/$tdir/$tfile-2 ||
1959                 { error "setstripe -c -1 failed"; return 3; }
1960         dd if=/dev/zero of=$DIR/$tdir/$tfile-2 bs=1M count=$OSTCOUNT ||
1961                 { error "dd $tfile-2 failed"; return 4; }
1962
1963         # make sure write RPCs have been sent to OSTs
1964         sync; sleep 5; sync
1965
1966         check_seq_oid $DIR/$tdir/$tfile-1 || return 5
1967         check_seq_oid $DIR/$tdir/$tfile-2 || return 6
1968 }
1969 run_test 27z "check SEQ/OID on the MDT and OST filesystems"
1970
1971 test_27A() { # b=19102
1972         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1973         local restore_size=$($GETSTRIPE -S $MOUNT)
1974         local restore_count=$($GETSTRIPE -c $MOUNT)
1975         local restore_offset=$($GETSTRIPE -i $MOUNT)
1976         $SETSTRIPE -c 0 -i -1 -S 0 $MOUNT
1977         wait_update $HOSTNAME "$GETSTRIPE -c $MOUNT | sed 's/  *//g'" "1" 20 ||
1978                 error "stripe count $($GETSTRIPE -c $MOUNT) != 1"
1979         local default_size=$($GETSTRIPE -S $MOUNT)
1980         local default_offset=$($GETSTRIPE -i $MOUNT)
1981         local dsize=$((1024 * 1024))
1982         [ $default_size -eq $dsize ] ||
1983                 error "stripe size $default_size != $dsize"
1984         [ $default_offset -eq -1 ] ||error "stripe offset $default_offset != -1"
1985         $SETSTRIPE -c $restore_count -i $restore_offset -S $restore_size $MOUNT
1986 }
1987 run_test 27A "check filesystem-wide default LOV EA values"
1988
1989 test_27B() { # LU-2523
1990         test_mkdir $DIR/$tdir
1991         rm -f $DIR/$tdir/f0 $DIR/$tdir/f1
1992         touch $DIR/$tdir/f0
1993         # open f1 with O_LOV_DELAY_CREATE
1994         # rename f0 onto f1
1995         # call setstripe ioctl on open file descriptor for f1
1996         # close
1997         multiop $DIR/$tdir/f1 oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:nB1c \
1998                 $DIR/$tdir/f0
1999
2000         rm -f $DIR/$tdir/f1
2001         # open f1 with O_LOV_DELAY_CREATE
2002         # unlink f1
2003         # call setstripe ioctl on open file descriptor for f1
2004         # close
2005         multiop $DIR/$tdir/f1 oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:uB1c
2006
2007         # Allow multiop to fail in imitation of NFS's busted semantics.
2008         true
2009 }
2010 run_test 27B "call setstripe on open unlinked file/rename victim"
2011
2012 test_27C() { #LU-2871
2013         [[ $OSTCOUNT -lt 2 ]] && skip "needs >= 2 OSTs" && return
2014
2015         declare -a ost_idx
2016         local index
2017         local found
2018         local i
2019         local j
2020
2021         test_mkdir $DIR/$tdir
2022         cd $DIR/$tdir
2023         for i in $(seq 0 $((OSTCOUNT - 1))); do
2024                 # set stripe across all OSTs starting from OST$i
2025                 $SETSTRIPE -i $i -c -1 $tfile$i
2026                 # get striping information
2027                 ost_idx=($($GETSTRIPE $tfile$i |
2028                          tail -n $((OSTCOUNT + 1)) | awk '{print $1}'))
2029                 echo ${ost_idx[@]}
2030
2031                 # check the layout
2032                 [ ${#ost_idx[@]} -eq $OSTCOUNT ] ||
2033                         error "${#ost_idx[@]} != $OSTCOUNT"
2034
2035                 for index in $(seq 0 $((OSTCOUNT - 1))); do
2036                         found=0
2037                         for j in $(echo ${ost_idx[@]}); do
2038                                 if [ $index -eq $j ]; then
2039                                         found=1
2040                                         break
2041                                 fi
2042                         done
2043                         [ $found = 1 ] ||
2044                                 error "Can not find $index in ${ost_idx[@]}"
2045                 done
2046         done
2047 }
2048 run_test 27C "check full striping across all OSTs"
2049
2050 test_27D() {
2051         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
2052         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
2053         remote_mds_nodsh && skip "remote MDS with nodsh" && return
2054         local POOL=${POOL:-testpool}
2055         local first_ost=0
2056         local last_ost=$(($OSTCOUNT - 1))
2057         local ost_step=1
2058         local ost_list=$(seq $first_ost $ost_step $last_ost)
2059         local ost_range="$first_ost $last_ost $ost_step"
2060
2061         test_mkdir $DIR/$tdir
2062         pool_add $POOL || error "pool_add failed"
2063         pool_add_targets $POOL $ost_range || error "pool_add_targets failed"
2064
2065         local skip27D
2066         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.55) ] &&
2067                 skip27D += "-s 29"
2068         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.9.55) -o \
2069           $(lustre_version_code client) -lt $(version_code 2.9.55) ] &&
2070                 skip27D += "-s 30,31"
2071         llapi_layout_test -d$DIR/$tdir -p$POOL -o$OSTCOUNT $skip27D ||
2072                 error "llapi_layout_test failed"
2073
2074         destroy_test_pools || error "destroy test pools failed"
2075 }
2076 run_test 27D "validate llapi_layout API"
2077
2078 # Verify that default_easize is increased from its initial value after
2079 # accessing a widely striped file.
2080 test_27E() {
2081         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
2082         [ $(lustre_version_code client) -lt $(version_code 2.5.57) ] &&
2083                 skip "client does not have LU-3338 fix" && return
2084
2085         # 72 bytes is the minimum space required to store striping
2086         # information for a file striped across one OST:
2087         # (sizeof(struct lov_user_md_v3) +
2088         #  sizeof(struct lov_user_ost_data_v1))
2089         local min_easize=72
2090         $LCTL set_param -n llite.*.default_easize $min_easize ||
2091                 error "lctl set_param failed"
2092         local easize=$($LCTL get_param -n llite.*.default_easize)
2093
2094         [ $easize -eq $min_easize ] ||
2095                 error "failed to set default_easize"
2096
2097         $LFS setstripe -c $OSTCOUNT $DIR/$tfile ||
2098                 error "setstripe failed"
2099         cat $DIR/$tfile
2100         rm $DIR/$tfile
2101
2102         easize=$($LCTL get_param -n llite.*.default_easize)
2103
2104         [ $easize -gt $min_easize ] ||
2105                 error "default_easize not updated"
2106 }
2107 run_test 27E "check that default extended attribute size properly increases"
2108
2109 test_27F() { # LU-5346/LU-7975
2110         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2111         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.51) ]] &&
2112                 skip "Need MDS version at least 2.8.51" && return
2113         remote_ost_nodsh && skip "remote OST with nodsh" && return
2114
2115         test_mkdir $DIR/$tdir
2116         rm -f $DIR/$tdir/f0
2117         $SETSTRIPE -c 2 $DIR/$tdir
2118
2119         # stop all OSTs to reproduce situation for LU-7975 ticket
2120         for num in $(seq $OSTCOUNT); do
2121                 stop ost$num
2122         done
2123
2124         # open/create f0 with O_LOV_DELAY_CREATE
2125         # truncate f0 to a non-0 size
2126         # close
2127         multiop $DIR/$tdir/f0 oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:T1050000c
2128
2129         $CHECKSTAT -s 1050000 $DIR/$tdir/f0 || error "checkstat failed"
2130         # open/write it again to force delayed layout creation
2131         cat /etc/hosts > $DIR/$tdir/f0 &
2132         catpid=$!
2133
2134         # restart OSTs
2135         for num in $(seq $OSTCOUNT); do
2136                 start ost$num $(ostdevname $num) $OST_MOUNT_OPTS ||
2137                         error "ost$num failed to start"
2138         done
2139
2140         wait $catpid || error "cat failed"
2141
2142         cmp /etc/hosts $DIR/$tdir/f0 || error "cmp failed"
2143         [[ $($GETSTRIPE -c $DIR/$tdir/f0) == 2 ]] || error "wrong stripecount"
2144
2145 }
2146 run_test 27F "Client resend delayed layout creation with non-zero size"
2147
2148 # createtest also checks that device nodes are created and
2149 # then visible correctly (#2091)
2150 test_28() { # bug 2091
2151         test_mkdir $DIR/d28
2152         $CREATETEST $DIR/d28/ct || error
2153 }
2154 run_test 28 "create/mknod/mkdir with bad file types ============"
2155
2156 test_29() {
2157         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return 0
2158         sync; sleep 1; sync # flush out any dirty pages from previous tests
2159         cancel_lru_locks
2160         test_mkdir $DIR/d29
2161         touch $DIR/d29/foo
2162         log 'first d29'
2163         ls -l $DIR/d29
2164
2165         declare -i LOCKCOUNTORIG=0
2166         for lock_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_count); do
2167                 let LOCKCOUNTORIG=$LOCKCOUNTORIG+$lock_count
2168         done
2169         [ $LOCKCOUNTORIG -eq 0 ] && error "No mdc lock count" && return 1
2170
2171         declare -i LOCKUNUSEDCOUNTORIG=0
2172         for unused_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_unused_count); do
2173                 let LOCKUNUSEDCOUNTORIG=$LOCKUNUSEDCOUNTORIG+$unused_count
2174         done
2175
2176         log 'second d29'
2177         ls -l $DIR/d29
2178         log 'done'
2179
2180         declare -i LOCKCOUNTCURRENT=0
2181         for lock_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_count); do
2182                 let LOCKCOUNTCURRENT=$LOCKCOUNTCURRENT+$lock_count
2183         done
2184
2185         declare -i LOCKUNUSEDCOUNTCURRENT=0
2186         for unused_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_unused_count); do
2187                 let LOCKUNUSEDCOUNTCURRENT=$LOCKUNUSEDCOUNTCURRENT+$unused_count
2188         done
2189
2190         if [[ $LOCKCOUNTCURRENT -gt $LOCKCOUNTORIG ]]; then
2191                 $LCTL set_param -n ldlm.dump_namespaces ""
2192                 error "CURRENT: $LOCKCOUNTCURRENT > $LOCKCOUNTORIG"
2193                 $LCTL dk | sort -k4 -t: > $TMP/test_29.dk
2194                 log "dumped log to $TMP/test_29.dk (bug 5793)"
2195                 return 2
2196         fi
2197         if [[ $LOCKUNUSEDCOUNTCURRENT -gt $LOCKUNUSEDCOUNTORIG ]]; then
2198                 error "UNUSED: $LOCKUNUSEDCOUNTCURRENT > $LOCKUNUSEDCOUNTORIG"
2199                 $LCTL dk | sort -k4 -t: > $TMP/test_29.dk
2200                 log "dumped log to $TMP/test_29.dk (bug 5793)"
2201                 return 3
2202         fi
2203 }
2204 run_test 29 "IT_GETATTR regression  ============================"
2205
2206 test_30a() { # was test_30
2207         cp $(which ls) $DIR || cp /bin/ls $DIR
2208         $DIR/ls / || error
2209         rm $DIR/ls
2210 }
2211 run_test 30a "execute binary from Lustre (execve) =============="
2212
2213 test_30b() {
2214         cp `which ls` $DIR || cp /bin/ls $DIR
2215         chmod go+rx $DIR/ls
2216         $RUNAS $DIR/ls / || error
2217         rm $DIR/ls
2218 }
2219 run_test 30b "execute binary from Lustre as non-root ==========="
2220
2221 test_30c() { # b=22376
2222         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2223         cp `which ls` $DIR || cp /bin/ls $DIR
2224         chmod a-rw $DIR/ls
2225         cancel_lru_locks mdc
2226         cancel_lru_locks osc
2227         $RUNAS $DIR/ls / || error
2228         rm -f $DIR/ls
2229 }
2230 run_test 30c "execute binary from Lustre without read perms ===="
2231
2232 test_31a() {
2233         $OPENUNLINK $DIR/f31 $DIR/f31 || error
2234         $CHECKSTAT -a $DIR/f31 || error
2235 }
2236 run_test 31a "open-unlink file =================================="
2237
2238 test_31b() {
2239         touch $DIR/f31 || error
2240         ln $DIR/f31 $DIR/f31b || error
2241         $MULTIOP $DIR/f31b Ouc || error
2242         $CHECKSTAT -t file $DIR/f31 || error
2243 }
2244 run_test 31b "unlink file with multiple links while open ======="
2245
2246 test_31c() {
2247         touch $DIR/f31 || error
2248         ln $DIR/f31 $DIR/f31c || error
2249         multiop_bg_pause $DIR/f31 O_uc || return 1
2250         MULTIPID=$!
2251         $MULTIOP $DIR/f31c Ouc
2252         kill -USR1 $MULTIPID
2253         wait $MULTIPID
2254 }
2255 run_test 31c "open-unlink file with multiple links ============="
2256
2257 test_31d() {
2258         opendirunlink $DIR/d31d $DIR/d31d || error
2259         $CHECKSTAT -a $DIR/d31d || error
2260 }
2261 run_test 31d "remove of open directory ========================="
2262
2263 test_31e() { # bug 2904
2264         openfilleddirunlink $DIR/d31e || error
2265 }
2266 run_test 31e "remove of open non-empty directory ==============="
2267
2268 test_31f() { # bug 4554
2269         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2270         set -vx
2271         test_mkdir $DIR/d31f
2272         $SETSTRIPE -S 1048576 -c 1 $DIR/d31f
2273         cp /etc/hosts $DIR/d31f
2274         ls -l $DIR/d31f
2275         $GETSTRIPE $DIR/d31f/hosts
2276         multiop_bg_pause $DIR/d31f D_c || return 1
2277         MULTIPID=$!
2278
2279         rm -rv $DIR/d31f || error "first of $DIR/d31f"
2280         test_mkdir $DIR/d31f
2281         $SETSTRIPE -S 1048576 -c 1 $DIR/d31f
2282         cp /etc/hosts $DIR/d31f
2283         ls -l $DIR/d31f
2284         $GETSTRIPE $DIR/d31f/hosts
2285         multiop_bg_pause $DIR/d31f D_c || return 1
2286         MULTIPID2=$!
2287
2288         kill -USR1 $MULTIPID || error "first opendir $MULTIPID not running"
2289         wait $MULTIPID || error "first opendir $MULTIPID failed"
2290
2291         sleep 6
2292
2293         kill -USR1 $MULTIPID2 || error "second opendir $MULTIPID not running"
2294         wait $MULTIPID2 || error "second opendir $MULTIPID2 failed"
2295         set +vx
2296 }
2297 run_test 31f "remove of open directory with open-unlink file ==="
2298
2299 test_31g() {
2300         echo "-- cross directory link --"
2301         test_mkdir -c1 $DIR/${tdir}ga
2302         test_mkdir -c1 $DIR/${tdir}gb
2303         touch $DIR/${tdir}ga/f
2304         ln $DIR/${tdir}ga/f $DIR/${tdir}gb/g
2305         $CHECKSTAT -t file $DIR/${tdir}ga/f || error "source"
2306         [ `stat -c%h $DIR/${tdir}ga/f` == '2' ] || error "source nlink"
2307         $CHECKSTAT -t file $DIR/${tdir}gb/g || error "target"
2308         [ `stat -c%h $DIR/${tdir}gb/g` == '2' ] || error "target nlink"
2309 }
2310 run_test 31g "cross directory link==============="
2311
2312 test_31h() {
2313         echo "-- cross directory link --"
2314         test_mkdir -c1 $DIR/${tdir}
2315         test_mkdir -c1 $DIR/${tdir}/dir
2316         touch $DIR/${tdir}/f
2317         ln $DIR/${tdir}/f $DIR/${tdir}/dir/g
2318         $CHECKSTAT -t file $DIR/${tdir}/f || error "source"
2319         [ `stat -c%h $DIR/${tdir}/f` == '2' ] || error "source nlink"
2320         $CHECKSTAT -t file $DIR/${tdir}/dir/g || error "target"
2321         [ `stat -c%h $DIR/${tdir}/dir/g` == '2' ] || error "target nlink"
2322 }
2323 run_test 31h "cross directory link under child==============="
2324
2325 test_31i() {
2326         echo "-- cross directory link --"
2327         test_mkdir -c1 $DIR/$tdir
2328         test_mkdir -c1 $DIR/$tdir/dir
2329         touch $DIR/$tdir/dir/f
2330         ln $DIR/$tdir/dir/f $DIR/$tdir/g
2331         $CHECKSTAT -t file $DIR/$tdir/dir/f || error "source"
2332         [ `stat -c%h $DIR/$tdir/dir/f` == '2' ] || error "source nlink"
2333         $CHECKSTAT -t file $DIR/$tdir/g || error "target"
2334         [ `stat -c%h $DIR/$tdir/g` == '2' ] || error "target nlink"
2335 }
2336 run_test 31i "cross directory link under parent==============="
2337
2338 test_31j() {
2339         test_mkdir -c1 -p $DIR/$tdir
2340         test_mkdir -c1 -p $DIR/$tdir/dir1
2341         ln $DIR/$tdir/dir1 $DIR/$tdir/dir2 && error "ln for dir"
2342         link $DIR/$tdir/dir1 $DIR/$tdir/dir3 && error "link for dir"
2343         mlink $DIR/$tdir/dir1 $DIR/$tdir/dir4 && error "mlink for dir"
2344         mlink $DIR/$tdir/dir1 $DIR/$tdir/dir1 && error "mlink to the same dir"
2345         return 0
2346 }
2347 run_test 31j "link for directory==============="
2348
2349 test_31k() {
2350         test_mkdir -c1 -p $DIR/$tdir
2351         touch $DIR/$tdir/s
2352         touch $DIR/$tdir/exist
2353         mlink $DIR/$tdir/s $DIR/$tdir/t || error "mlink"
2354         mlink $DIR/$tdir/s $DIR/$tdir/exist && error "mlink to exist file"
2355         mlink $DIR/$tdir/s $DIR/$tdir/s && error "mlink to the same file"
2356         mlink $DIR/$tdir/s $DIR/$tdir && error "mlink to parent dir"
2357         mlink $DIR/$tdir $DIR/$tdir/s && error "mlink parent dir to target"
2358         mlink $DIR/$tdir/not-exist $DIR/$tdir/foo && error "mlink non-existing to new"
2359         mlink $DIR/$tdir/not-exist $DIR/$tdir/s && error "mlink non-existing to exist"
2360         return 0
2361 }
2362 run_test 31k "link to file: the same, non-existing, dir==============="
2363
2364 test_31m() {
2365         mkdir $DIR/d31m
2366         touch $DIR/d31m/s
2367         mkdir $DIR/d31m2
2368         touch $DIR/d31m2/exist
2369         mlink $DIR/d31m/s $DIR/d31m2/t || error "mlink"
2370         mlink $DIR/d31m/s $DIR/d31m2/exist && error "mlink to exist file"
2371         mlink $DIR/d31m/s $DIR/d31m2 && error "mlink to parent dir"
2372         mlink $DIR/d31m2 $DIR/d31m/s && error "mlink parent dir to target"
2373         mlink $DIR/d31m/not-exist $DIR/d31m2/foo && error "mlink non-existing to new"
2374         mlink $DIR/d31m/not-exist $DIR/d31m2/s && error "mlink non-existing to exist"
2375         return 0
2376 }
2377 run_test 31m "link to file: the same, non-existing, dir==============="
2378
2379 test_31n() {
2380         touch $DIR/$tfile || error "cannot create '$DIR/$tfile'"
2381         nlink=$(stat --format=%h $DIR/$tfile)
2382         [ ${nlink:--1} -eq 1 ] || error "nlink is $nlink, expected 1"
2383         local fd=$(free_fd)
2384         local cmd="exec $fd<$DIR/$tfile"
2385         eval $cmd
2386         cmd="exec $fd<&-"
2387         trap "eval $cmd" EXIT
2388         nlink=$(stat --dereference --format=%h /proc/self/fd/$fd)
2389         [ ${nlink:--1} -eq 1 ] || error "nlink is $nlink, expected 1"
2390         rm $DIR/$tfile || error "cannot remove '$DIR/$tfile'"
2391         nlink=$(stat --dereference --format=%h /proc/self/fd/$fd)
2392         [ ${nlink:--1} -eq 0 ] || error "nlink is $nlink, expected 0"
2393         eval $cmd
2394 }
2395 run_test 31n "check link count of unlinked file"
2396
2397 link_one() {
2398         local TEMPNAME=$(mktemp $1_XXXXXX)
2399         mlink $TEMPNAME $1 2> /dev/null &&
2400                 echo "$BASHPID: link $TEMPNAME to $1 succeeded"
2401         munlink $TEMPNAME
2402 }
2403
2404 test_31o() { # LU-2901
2405         test_mkdir $DIR/$tdir
2406         for LOOP in $(seq 100); do
2407                 rm -f $DIR/$tdir/$tfile*
2408                 for THREAD in $(seq 8); do
2409                         link_one $DIR/$tdir/$tfile.$LOOP &
2410                 done
2411                 wait
2412                 local LINKS=$(ls -1 $DIR/$tdir | grep -c $tfile.$LOOP)
2413                 [[ $LINKS -gt 1 ]] && ls $DIR/$tdir &&
2414                         error "$LINKS duplicate links to $tfile.$LOOP" &&
2415                         break || true
2416         done
2417 }
2418 run_test 31o "duplicate hard links with same filename"
2419
2420 test_31p() {
2421         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
2422
2423         test_mkdir $DIR/$tdir
2424         $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
2425         $LFS setdirstripe -D -c2 -t all_char $DIR/$tdir/striped_dir
2426
2427         opendirunlink $DIR/$tdir/striped_dir/test1 ||
2428                 error "open unlink test1 failed"
2429         opendirunlink $DIR/$tdir/striped_dir/test2 ||
2430                 error "open unlink test2 failed"
2431
2432         $CHECKSTAT -a $DIR/$tdir/striped_dir/test1 ||
2433                 error "test1 still exists"
2434         $CHECKSTAT -a $DIR/$tdir/striped_dir/test2 ||
2435                 error "test2 still exists"
2436 }
2437 run_test 31p "remove of open striped directory"
2438
2439 cleanup_test32_mount() {
2440         local rc=0
2441         trap 0
2442         local loopdev=$(losetup -a | grep $EXT2_DEV | sed -ne 's/:.*$//p')
2443         $UMOUNT $DIR/$tdir/ext2-mountpoint || rc=$?
2444         losetup -d $loopdev || true
2445         rm -rf $DIR/$tdir
2446         return $rc
2447 }
2448
2449 test_32a() {
2450         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2451         echo "== more mountpoints and symlinks ================="
2452         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2453         trap cleanup_test32_mount EXIT
2454         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2455         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2456         $CHECKSTAT -t dir $DIR/$tdir/ext2-mountpoint/.. || error
2457         cleanup_test32_mount
2458 }
2459 run_test 32a "stat d32a/ext2-mountpoint/.. ====================="
2460
2461 test_32b() {
2462         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2463         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2464         trap cleanup_test32_mount EXIT
2465         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2466         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2467         ls -al $DIR/$tdir/ext2-mountpoint/.. || error
2468         cleanup_test32_mount
2469 }
2470 run_test 32b "open d32b/ext2-mountpoint/.. ====================="
2471
2472 test_32c() {
2473         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2474         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2475         trap cleanup_test32_mount EXIT
2476         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2477         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2478         test_mkdir -p $DIR/$tdir/d2/test_dir
2479         $CHECKSTAT -t dir $DIR/$tdir/ext2-mountpoint/../d2/test_dir || error
2480         cleanup_test32_mount
2481 }
2482 run_test 32c "stat d32c/ext2-mountpoint/../d2/test_dir ========="
2483
2484 test_32d() {
2485         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2486         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2487         trap cleanup_test32_mount EXIT
2488         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2489         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2490         test_mkdir -p $DIR/$tdir/d2/test_dir
2491         ls -al $DIR/$tdir/ext2-mountpoint/../d2/test_dir || error
2492         cleanup_test32_mount
2493 }
2494 run_test 32d "open d32d/ext2-mountpoint/../d2/test_dir"
2495
2496 test_32e() {
2497         rm -fr $DIR/$tdir
2498         test_mkdir -p $DIR/$tdir/tmp
2499         local tmp_dir=$DIR/$tdir/tmp
2500         ln -s $DIR/$tdir $tmp_dir/symlink11
2501         ln -s $tmp_dir/symlink11 $tmp_dir/../symlink01
2502         $CHECKSTAT -t link $DIR/$tdir/tmp/symlink11 || error "symlink11 bad"
2503         $CHECKSTAT -t link $DIR/$tdir/symlink01 || error "symlink01 bad"
2504 }
2505 run_test 32e "stat d32e/symlink->tmp/symlink->lustre-subdir"
2506
2507 test_32f() {
2508         rm -fr $DIR/$tdir
2509         test_mkdir -p $DIR/$tdir/tmp
2510         local tmp_dir=$DIR/$tdir/tmp
2511         ln -s $DIR/$tdir $tmp_dir/symlink11
2512         ln -s $tmp_dir/symlink11 $tmp_dir/../symlink01
2513         ls $DIR/$tdir/tmp/symlink11  || error "symlink11 bad"
2514         ls $DIR/$tdir/symlink01 || error "symlink01 bad"
2515 }
2516 run_test 32f "open d32f/symlink->tmp/symlink->lustre-subdir"
2517
2518 test_32g() {
2519         local tmp_dir=$DIR/$tdir/tmp
2520         test_mkdir -p $tmp_dir
2521         test_mkdir $DIR/${tdir}2
2522         ln -s $DIR/${tdir}2 $tmp_dir/symlink12
2523         ln -s $tmp_dir/symlink12 $tmp_dir/../symlink02
2524         $CHECKSTAT -t link $tmp_dir/symlink12 || error "symlink12 not a link"
2525         $CHECKSTAT -t link $DIR/$tdir/symlink02 || error "symlink02 not a link"
2526         $CHECKSTAT -t dir -f $tmp_dir/symlink12 || error "symlink12 not a dir"
2527         $CHECKSTAT -t dir -f $DIR/$tdir/symlink02 || error "symlink12 not a dir"
2528 }
2529 run_test 32g "stat d32g/symlink->tmp/symlink->lustre-subdir/${tdir}2"
2530
2531 test_32h() {
2532         rm -fr $DIR/$tdir $DIR/${tdir}2
2533         tmp_dir=$DIR/$tdir/tmp
2534         test_mkdir -p $tmp_dir
2535         test_mkdir $DIR/${tdir}2
2536         ln -s $DIR/${tdir}2 $tmp_dir/symlink12
2537         ln -s $tmp_dir/symlink12 $tmp_dir/../symlink02
2538         ls $tmp_dir/symlink12 || error "listing symlink12"
2539         ls $DIR/$tdir/symlink02  || error "listing symlink02"
2540 }
2541 run_test 32h "open d32h/symlink->tmp/symlink->lustre-subdir/${tdir}2"
2542
2543 test_32i() {
2544         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2545         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2546         trap cleanup_test32_mount EXIT
2547         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2548         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2549         touch $DIR/$tdir/test_file
2550         $CHECKSTAT -t file $DIR/$tdir/ext2-mountpoint/../test_file || error
2551         cleanup_test32_mount
2552 }
2553 run_test 32i "stat d32i/ext2-mountpoint/../test_file ==========="
2554
2555 test_32j() {
2556         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2557         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2558         trap cleanup_test32_mount EXIT
2559         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2560         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2561         touch $DIR/$tdir/test_file
2562         cat $DIR/$tdir/ext2-mountpoint/../test_file || error
2563         cleanup_test32_mount
2564 }
2565 run_test 32j "open d32j/ext2-mountpoint/../test_file ==========="
2566
2567 test_32k() {
2568         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2569         rm -fr $DIR/$tdir
2570         trap cleanup_test32_mount EXIT
2571         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2572         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint
2573         test_mkdir -p $DIR/$tdir/d2
2574         touch $DIR/$tdir/d2/test_file || error
2575         $CHECKSTAT -t file $DIR/$tdir/ext2-mountpoint/../d2/test_file || error
2576         cleanup_test32_mount
2577 }
2578 run_test 32k "stat d32k/ext2-mountpoint/../d2/test_file ========"
2579
2580 test_32l() {
2581         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2582         rm -fr $DIR/$tdir
2583         trap cleanup_test32_mount EXIT
2584         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2585         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2586         test_mkdir -p $DIR/$tdir/d2
2587         touch $DIR/$tdir/d2/test_file
2588         cat  $DIR/$tdir/ext2-mountpoint/../d2/test_file || error
2589         cleanup_test32_mount
2590 }
2591 run_test 32l "open d32l/ext2-mountpoint/../d2/test_file ========"
2592
2593 test_32m() {
2594         rm -fr $DIR/d32m
2595         test_mkdir -p $DIR/d32m/tmp
2596         TMP_DIR=$DIR/d32m/tmp
2597         ln -s $DIR $TMP_DIR/symlink11
2598         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2599         $CHECKSTAT -t link $DIR/d32m/tmp/symlink11 || error
2600         $CHECKSTAT -t link $DIR/d32m/symlink01 || error
2601 }
2602 run_test 32m "stat d32m/symlink->tmp/symlink->lustre-root ======"
2603
2604 test_32n() {
2605         rm -fr $DIR/d32n
2606         test_mkdir -p $DIR/d32n/tmp
2607         TMP_DIR=$DIR/d32n/tmp
2608         ln -s $DIR $TMP_DIR/symlink11
2609         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2610         ls -l $DIR/d32n/tmp/symlink11  || error
2611         ls -l $DIR/d32n/symlink01 || error
2612 }
2613 run_test 32n "open d32n/symlink->tmp/symlink->lustre-root ======"
2614
2615 test_32o() {
2616         touch $DIR/$tfile
2617         test_mkdir -p $DIR/d32o/tmp
2618         TMP_DIR=$DIR/d32o/tmp
2619         ln -s $DIR/$tfile $TMP_DIR/symlink12
2620         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2621         $CHECKSTAT -t link $DIR/d32o/tmp/symlink12 || error
2622         $CHECKSTAT -t link $DIR/d32o/symlink02 || error
2623         $CHECKSTAT -t file -f $DIR/d32o/tmp/symlink12 || error
2624         $CHECKSTAT -t file -f $DIR/d32o/symlink02 || error
2625 }
2626 run_test 32o "stat d32o/symlink->tmp/symlink->lustre-root/$tfile"
2627
2628 test_32p() {
2629         log 32p_1
2630         rm -fr $DIR/d32p
2631         log 32p_2
2632         rm -f $DIR/$tfile
2633         log 32p_3
2634         touch $DIR/$tfile
2635         log 32p_4
2636         test_mkdir -p $DIR/d32p/tmp
2637         log 32p_5
2638         TMP_DIR=$DIR/d32p/tmp
2639         log 32p_6
2640         ln -s $DIR/$tfile $TMP_DIR/symlink12
2641         log 32p_7
2642         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2643         log 32p_8
2644         cat $DIR/d32p/tmp/symlink12 || error
2645         log 32p_9
2646         cat $DIR/d32p/symlink02 || error
2647         log 32p_10
2648 }
2649 run_test 32p "open d32p/symlink->tmp/symlink->lustre-root/$tfile"
2650
2651 test_32q() {
2652         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2653         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2654         trap cleanup_test32_mount EXIT
2655         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2656         touch $DIR/$tdir/ext2-mountpoint/under_the_mount
2657         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint
2658         ls $DIR/$tdir/ext2-mountpoint | grep "\<under_the_mount\>" && error
2659         cleanup_test32_mount
2660 }
2661 run_test 32q "stat follows mountpoints in Lustre (should return error)"
2662
2663 test_32r() {
2664         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2665         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2666         trap cleanup_test32_mount EXIT
2667         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2668         touch $DIR/$tdir/ext2-mountpoint/under_the_mount
2669         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint
2670         ls $DIR/$tdir/ext2-mountpoint | grep -q under_the_mount && error || true
2671         cleanup_test32_mount
2672 }
2673 run_test 32r "opendir follows mountpoints in Lustre (should return error)"
2674
2675 test_33aa() {
2676         rm -f $DIR/$tfile
2677         touch $DIR/$tfile
2678         chmod 444 $DIR/$tfile
2679         chown $RUNAS_ID $DIR/$tfile
2680         log 33_1
2681         $RUNAS $OPENFILE -f O_RDWR $DIR/$tfile && error || true
2682         log 33_2
2683 }
2684 run_test 33aa "write file with mode 444 (should return error)"
2685
2686 test_33a() {
2687         rm -fr $DIR/$tdir
2688         test_mkdir $DIR/$tdir
2689         chown $RUNAS_ID $DIR/$tdir
2690         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $DIR/$tdir/$tfile ||
2691                 error "$RUNAS create $tdir/$tfile failed"
2692         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $DIR/$tdir/$tfile &&
2693                 error "open RDWR" || true
2694 }
2695 run_test 33a "test open file(mode=0444) with O_RDWR (should return error)"
2696
2697 test_33b() {
2698         rm -fr $DIR/$tdir
2699         test_mkdir $DIR/$tdir
2700         chown $RUNAS_ID $DIR/$tdir
2701         $RUNAS $OPENFILE -f 1286739555 $DIR/$tdir/$tfile || true
2702 }
2703 run_test 33b "test open file with malformed flags (No panic)"
2704
2705 test_33c() {
2706         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2707         local ostnum
2708         local ostname
2709         local write_bytes
2710         local all_zeros
2711
2712         remote_ost_nodsh && skip "remote OST with nodsh" && return
2713         all_zeros=:
2714         rm -fr $DIR/$tdir
2715         test_mkdir $DIR/$tdir
2716         # Read: 0, Write: 4, create/destroy: 2/0, stat: 1, punch: 0
2717
2718         sync
2719         for ostnum in $(seq $OSTCOUNT); do
2720                 # test-framework's OST numbering is one-based, while Lustre's
2721                 # is zero-based
2722                 ostname=$(printf "$FSNAME-OST%.4x" $((ostnum - 1)))
2723                 # Parsing llobdstat's output sucks; we could grep the /proc
2724                 # path, but that's likely to not be as portable as using the
2725                 # llobdstat utility.  So we parse lctl output instead.
2726                 write_bytes=$(do_facet ost$ostnum lctl get_param -n \
2727                         obdfilter/$ostname/stats |
2728                         awk '/^write_bytes/ {print $7}' )
2729                 echo "baseline_write_bytes@$OSTnum/$ostname=$write_bytes"
2730                 if (( ${write_bytes:-0} > 0 ))
2731                 then
2732                         all_zeros=false
2733                         break;
2734                 fi
2735         done
2736
2737         $all_zeros || return 0
2738
2739         # Write four bytes
2740         echo foo > $DIR/$tdir/bar
2741         # Really write them
2742         sync
2743
2744         # Total up write_bytes after writing.  We'd better find non-zeros.
2745         for ostnum in $(seq $OSTCOUNT); do
2746                 ostname=$(printf "$FSNAME-OST%.4x" $((ostnum - 1)))
2747                 write_bytes=$(do_facet ost$ostnum lctl get_param -n \
2748                         obdfilter/$ostname/stats |
2749                         awk '/^write_bytes/ {print $7}' )
2750                 echo "write_bytes@$OSTnum/$ostname=$write_bytes"
2751                 if (( ${write_bytes:-0} > 0 ))
2752                 then
2753                         all_zeros=false
2754                         break;
2755                 fi
2756         done
2757
2758         if $all_zeros
2759         then
2760                 for ostnum in $(seq $OSTCOUNT); do
2761                         ostname=$(printf "$FSNAME-OST%.4x" $((ostnum - 1)))
2762                         echo "Check that write_bytes is present in obdfilter/*/stats:"
2763                         do_facet ost$ostnum lctl get_param -n \
2764                                 obdfilter/$ostname/stats
2765                 done
2766                 error "OST not keeping write_bytes stats (b22312)"
2767         fi
2768 }
2769 run_test 33c "test llobdstat and write_bytes"
2770
2771 test_33d() {
2772         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 2 MDTs" && return
2773         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2774         local MDTIDX=1
2775         local remote_dir=$DIR/$tdir/remote_dir
2776
2777         test_mkdir $DIR/$tdir
2778         $LFS mkdir -i $MDTIDX $remote_dir ||
2779                 error "create remote directory failed"
2780
2781         touch $remote_dir/$tfile
2782         chmod 444 $remote_dir/$tfile
2783         chown $RUNAS_ID $remote_dir/$tfile
2784
2785         $RUNAS $OPENFILE -f O_RDWR $DIR/$tfile && error || true
2786
2787         chown $RUNAS_ID $remote_dir
2788         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $remote_dir/f33 ||
2789                                         error "create" || true
2790         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $remote_dir/f33 &&
2791                                     error "open RDWR" || true
2792         $RUNAS $OPENFILE -f 1286739555 $remote_dir/f33 || true
2793 }
2794 run_test 33d "openfile with 444 modes and malformed flags under remote dir"
2795
2796 test_33e() {
2797         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
2798
2799         mkdir $DIR/$tdir
2800
2801         $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
2802         $LFS setdirstripe -i1 -c2 $DIR/$tdir/striped_dir1
2803         mkdir $DIR/$tdir/local_dir
2804
2805         local s0_mode=$(stat -c%f $DIR/$tdir/striped_dir)
2806         local s1_mode=$(stat -c%f $DIR/$tdir/striped_dir1)
2807         local l_mode=$(stat -c%f $DIR/$tdir/local_dir)
2808
2809         [ "$l_mode" = "$s0_mode" -a "$l_mode" = "$s1_mode" ] ||
2810                 error "mkdir $l_mode striped0 $s0_mode striped1 $s1_mode"
2811
2812         rmdir $DIR/$tdir/* || error "rmdir failed"
2813
2814         umask 777
2815         $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
2816         $LFS setdirstripe -i1 -c2 $DIR/$tdir/striped_dir1
2817         mkdir $DIR/$tdir/local_dir
2818
2819         s0_mode=$(stat -c%f $DIR/$tdir/striped_dir)
2820         s1_mode=$(stat -c%f $DIR/$tdir/striped_dir1)
2821         l_mode=$(stat -c%f $DIR/$tdir/local_dir)
2822
2823         [ "$l_mode" = "$s0_mode" -a "$l_mode" = "$s1_mode" ] ||
2824                 error "mkdir $l_mode striped0 $s0_mode striped1 $s1_mode 777"
2825
2826         rmdir $DIR/$tdir/* || error "rmdir(umask 777) failed"
2827
2828         umask 000
2829         $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
2830         $LFS setdirstripe -i1 -c2 $DIR/$tdir/striped_dir1
2831         mkdir $DIR/$tdir/local_dir
2832
2833         s0_mode=$(stat -c%f $DIR/$tdir/striped_dir)
2834         s1_mode=$(stat -c%f $DIR/$tdir/striped_dir1)
2835         l_mode=$(stat -c%f $DIR/$tdir/local_dir)
2836
2837         [ "$l_mode" = "$s0_mode" -a "$l_mode" = "$s1_mode" ] ||
2838                 error "mkdir $l_mode striped0 $s0_mode striped1 $s1_mode 0"
2839 }
2840 run_test 33e "mkdir and striped directory should have same mode"
2841
2842 cleanup_33f() {
2843         trap 0
2844         do_facet $SINGLEMDS $LCTL set_param mdt.*.enable_remote_dir_gid=0
2845 }
2846
2847 test_33f() {
2848         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
2849         remote_mds_nodsh && skip "remote MDS with nodsh" && return
2850
2851         mkdir $DIR/$tdir
2852         chmod go+rwx $DIR/$tdir
2853         do_facet $SINGLEMDS $LCTL set_param mdt.*.enable_remote_dir_gid=-1
2854         trap cleanup_33f EXIT
2855
2856         $RUNAS lfs mkdir -c$MDSCOUNT $DIR/$tdir/striped_dir ||
2857                 error "cannot create striped directory"
2858
2859         $RUNAS touch $DIR/$tdir/striped_dir/{0..16} ||
2860                 error "cannot create files in striped directory"
2861
2862         $RUNAS rm $DIR/$tdir/striped_dir/{0..16} ||
2863                 error "cannot remove files in striped directory"
2864
2865         $RUNAS rmdir $DIR/$tdir/striped_dir ||
2866                 error "cannot remove striped directory"
2867
2868         cleanup_33f
2869 }
2870 run_test 33f "nonroot user can create, access, and remove a striped directory"
2871
2872 test_33g() {
2873         mkdir -p $DIR/$tdir/dir2
2874
2875         local err=$($RUNAS mkdir $DIR/$tdir/dir2 2>&1)
2876         echo $err
2877         [[ $err =~ "exists" ]] || error "Not exists error"
2878 }
2879 run_test 33g "nonroot user create already existing root created file"
2880
2881 TEST_34_SIZE=${TEST_34_SIZE:-2000000000000}
2882 test_34a() {
2883         rm -f $DIR/f34
2884         $MCREATE $DIR/f34 || error
2885         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" || error
2886         $TRUNCATE $DIR/f34 $TEST_34_SIZE || error
2887         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" || error
2888         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2889 }
2890 run_test 34a "truncate file that has not been opened ==========="
2891
2892 test_34b() {
2893         [ ! -f $DIR/f34 ] && test_34a
2894         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2895         $OPENFILE -f O_RDONLY $DIR/f34
2896         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" || error
2897         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2898 }
2899 run_test 34b "O_RDONLY opening file doesn't create objects ====="
2900
2901 test_34c() {
2902         [ ! -f $DIR/f34 ] && test_34a
2903         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2904         $OPENFILE -f O_RDWR $DIR/f34
2905         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" && error
2906         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2907 }
2908 run_test 34c "O_RDWR opening file-with-size works =============="
2909
2910 test_34d() {
2911         [ ! -f $DIR/f34 ] && test_34a
2912         dd if=/dev/zero of=$DIR/f34 conv=notrunc bs=4k count=1 || error
2913         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2914         rm $DIR/f34
2915 }
2916 run_test 34d "write to sparse file ============================="
2917
2918 test_34e() {
2919         rm -f $DIR/f34e
2920         $MCREATE $DIR/f34e || error
2921         $TRUNCATE $DIR/f34e 1000 || error
2922         $CHECKSTAT -s 1000 $DIR/f34e || error
2923         $OPENFILE -f O_RDWR $DIR/f34e
2924         $CHECKSTAT -s 1000 $DIR/f34e || error
2925 }
2926 run_test 34e "create objects, some with size and some without =="
2927
2928 test_34f() { # bug 6242, 6243
2929         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2930         SIZE34F=48000
2931         rm -f $DIR/f34f
2932         $MCREATE $DIR/f34f || error
2933         $TRUNCATE $DIR/f34f $SIZE34F || error "truncating $DIR/f3f to $SIZE34F"
2934         dd if=$DIR/f34f of=$TMP/f34f
2935         $CHECKSTAT -s $SIZE34F $TMP/f34f || error "$TMP/f34f not $SIZE34F bytes"
2936         dd if=/dev/zero of=$TMP/f34fzero bs=$SIZE34F count=1
2937         cmp $DIR/f34f $TMP/f34fzero || error "$DIR/f34f not all zero"
2938         cmp $TMP/f34f $TMP/f34fzero || error "$TMP/f34f not all zero"
2939         rm $TMP/f34f $TMP/f34fzero $DIR/f34f
2940 }
2941 run_test 34f "read from a file with no objects until EOF ======="
2942
2943 test_34g() {
2944         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2945         dd if=/dev/zero of=$DIR/$tfile bs=1 count=100 seek=$TEST_34_SIZE || error
2946         $TRUNCATE $DIR/$tfile $((TEST_34_SIZE / 2))|| error
2947         $CHECKSTAT -s $((TEST_34_SIZE / 2)) $DIR/$tfile || error "truncate failed"
2948         cancel_lru_locks osc
2949         $CHECKSTAT -s $((TEST_34_SIZE / 2)) $DIR/$tfile || \
2950                 error "wrong size after lock cancel"
2951
2952         $TRUNCATE $DIR/$tfile $TEST_34_SIZE || error
2953         $CHECKSTAT -s $TEST_34_SIZE $DIR/$tfile || \
2954                 error "expanding truncate failed"
2955         cancel_lru_locks osc
2956         $CHECKSTAT -s $TEST_34_SIZE $DIR/$tfile || \
2957                 error "wrong expanded size after lock cancel"
2958 }
2959 run_test 34g "truncate long file ==============================="
2960
2961 test_34h() {
2962         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2963         local gid=10
2964         local sz=1000
2965
2966         dd if=/dev/zero of=$DIR/$tfile bs=1M count=10 || error
2967         sync # Flush the cache so that multiop below does not block on cache
2968              # flush when getting the group lock
2969         $MULTIOP $DIR/$tfile OG${gid}T${sz}g${gid}c &
2970         MULTIPID=$!
2971
2972         # Since just timed wait is not good enough, let's do a sync write
2973         # that way we are sure enough time for a roundtrip + processing
2974         # passed + 2 seconds of extra margin.
2975         dd if=/dev/zero of=$DIR/${tfile}-1 bs=4096 oflag=direct count=1
2976         rm $DIR/${tfile}-1
2977         sleep 2
2978
2979         if [[ `ps h -o comm -p $MULTIPID` == "multiop" ]]; then
2980                 error "Multiop blocked on ftruncate, pid=$MULTIPID"
2981                 kill -9 $MULTIPID
2982         fi
2983         wait $MULTIPID
2984         local nsz=`stat -c %s $DIR/$tfile`
2985         [[ $nsz == $sz ]] || error "New size wrong $nsz != $sz"
2986 }
2987 run_test 34h "ftruncate file under grouplock should not block"
2988
2989 test_35a() {
2990         cp /bin/sh $DIR/f35a
2991         chmod 444 $DIR/f35a
2992         chown $RUNAS_ID $DIR/f35a
2993         $RUNAS $DIR/f35a && error || true
2994         rm $DIR/f35a
2995 }
2996 run_test 35a "exec file with mode 444 (should return and not leak)"
2997
2998 test_36a() {
2999         rm -f $DIR/f36
3000         utime $DIR/f36 || error
3001 }
3002 run_test 36a "MDS utime check (mknod, utime)"
3003
3004 test_36b() {
3005         echo "" > $DIR/f36
3006         utime $DIR/f36 || error
3007 }
3008 run_test 36b "OST utime check (open, utime)"
3009
3010 test_36c() {
3011         rm -f $DIR/d36/f36
3012         test_mkdir $DIR/d36
3013         chown $RUNAS_ID $DIR/d36
3014         $RUNAS utime $DIR/d36/f36 || error
3015 }
3016 run_test 36c "non-root MDS utime check (mknod, utime)"
3017
3018 test_36d() {
3019         [ ! -d $DIR/d36 ] && test_36c
3020         echo "" > $DIR/d36/f36
3021         $RUNAS utime $DIR/d36/f36 || error
3022 }
3023 run_test 36d "non-root OST utime check (open, utime)"
3024
3025 test_36e() {
3026         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID -- skipping" && return
3027         test_mkdir $DIR/$tdir
3028         touch $DIR/$tdir/$tfile
3029         $RUNAS utime $DIR/$tdir/$tfile &&
3030                 error "utime worked, expected failure" || true
3031 }
3032 run_test 36e "utime on non-owned file (should return error)"
3033
3034 subr_36fh() {
3035         local fl="$1"
3036         local LANG_SAVE=$LANG
3037         local LC_LANG_SAVE=$LC_LANG
3038         export LANG=C LC_LANG=C # for date language
3039
3040         DATESTR="Dec 20  2000"
3041         test_mkdir $DIR/$tdir
3042         lctl set_param fail_loc=$fl
3043         date; date +%s
3044         cp /etc/hosts $DIR/$tdir/$tfile
3045         sync & # write RPC generated with "current" inode timestamp, but delayed
3046         sleep 1
3047         touch --date="$DATESTR" $DIR/$tdir/$tfile # setattr timestamp in past
3048         LS_BEFORE="`ls -l $DIR/$tdir/$tfile`" # old timestamp from client cache
3049         cancel_lru_locks osc
3050         LS_AFTER="`ls -l $DIR/$tdir/$tfile`"  # timestamp from OST object
3051         date; date +%s
3052         [ "$LS_BEFORE" != "$LS_AFTER" ] && \
3053                 echo "BEFORE: $LS_BEFORE" && \
3054                 echo "AFTER : $LS_AFTER" && \
3055                 echo "WANT  : $DATESTR" && \
3056                 error "$DIR/$tdir/$tfile timestamps changed" || true
3057
3058         export LANG=$LANG_SAVE LC_LANG=$LC_LANG_SAVE
3059 }
3060
3061 test_36f() {
3062         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3063         #define OBD_FAIL_OST_BRW_PAUSE_BULK 0x214
3064         subr_36fh "0x80000214"
3065 }
3066 run_test 36f "utime on file racing with OST BRW write =========="
3067
3068 test_36g() {
3069         remote_ost_nodsh && skip "remote OST with nodsh" && return
3070         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3071         local fmd_max_age
3072         local fmd_before
3073         local fmd_after
3074
3075         test_mkdir $DIR/$tdir
3076         fmd_max_age=$(do_facet ost1 \
3077                 "lctl get_param -n obdfilter.*.client_cache_seconds 2> /dev/null | \
3078                 head -n 1")
3079
3080         fmd_before=$(do_facet ost1 \
3081                 "awk '/ll_fmd_cache/ {print \\\$2}' /proc/slabinfo")
3082         touch $DIR/$tdir/$tfile
3083         sleep $((fmd_max_age + 12))
3084         fmd_after=$(do_facet ost1 \
3085                 "awk '/ll_fmd_cache/ {print \\\$2}' /proc/slabinfo")
3086
3087         echo "fmd_before: $fmd_before"
3088         echo "fmd_after: $fmd_after"
3089         [[ $fmd_after -gt $fmd_before ]] &&
3090                 echo "AFTER: $fmd_after > BEFORE: $fmd_before" &&
3091                 error "fmd didn't expire after ping" || true
3092 }
3093 run_test 36g "filter mod data cache expiry ====================="
3094
3095 test_36h() {
3096         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3097         #define OBD_FAIL_OST_BRW_PAUSE_BULK2 0x227
3098         subr_36fh "0x80000227"
3099 }
3100 run_test 36h "utime on file racing with OST BRW write =========="
3101
3102 test_36i() {
3103         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
3104
3105         test_mkdir $DIR/$tdir
3106         $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/striped_dir
3107
3108         local mtime=$(stat -c%Y $DIR/$tdir/striped_dir)
3109         local new_mtime=$((mtime + 200))
3110
3111         #change Modify time of striped dir
3112         touch -m -d @$new_mtime $DIR/$tdir/striped_dir ||
3113                         error "change mtime failed"
3114
3115         local got=$(stat -c%Y $DIR/$tdir/striped_dir)
3116
3117         [ "$new_mtime" = "$got" ] || error "expect $new_mtime got $got"
3118 }
3119 run_test 36i "change mtime on striped directory"
3120
3121 # test_37 - duplicate with tests 32q 32r
3122
3123 test_38() {
3124         local file=$DIR/$tfile
3125         touch $file
3126         openfile -f O_DIRECTORY $file
3127         local RC=$?
3128         local ENOTDIR=20
3129         [ $RC -eq 0 ] && error "opened file $file with O_DIRECTORY" || true
3130         [ $RC -eq $ENOTDIR ] || error "error $RC should be ENOTDIR ($ENOTDIR)"
3131 }
3132 run_test 38 "open a regular file with O_DIRECTORY should return -ENOTDIR ==="
3133
3134 test_39a() { # was test_39
3135         touch $DIR/$tfile
3136         touch $DIR/${tfile}2
3137 #       ls -l  $DIR/$tfile $DIR/${tfile}2
3138 #       ls -lu  $DIR/$tfile $DIR/${tfile}2
3139 #       ls -lc  $DIR/$tfile $DIR/${tfile}2
3140         sleep 2
3141         $OPENFILE -f O_CREAT:O_TRUNC:O_WRONLY $DIR/${tfile}2
3142         if [ ! $DIR/${tfile}2 -nt $DIR/$tfile ]; then
3143                 echo "mtime"
3144                 ls -l --full-time $DIR/$tfile $DIR/${tfile}2
3145                 echo "atime"
3146                 ls -lu --full-time $DIR/$tfile $DIR/${tfile}2
3147                 echo "ctime"
3148                 ls -lc --full-time $DIR/$tfile $DIR/${tfile}2
3149                 error "O_TRUNC didn't change timestamps"
3150         fi
3151 }
3152 run_test 39a "mtime changed on create"
3153
3154 test_39b() {
3155         test_mkdir -c1 $DIR/$tdir
3156         cp -p /etc/passwd $DIR/$tdir/fopen
3157         cp -p /etc/passwd $DIR/$tdir/flink
3158         cp -p /etc/passwd $DIR/$tdir/funlink
3159         cp -p /etc/passwd $DIR/$tdir/frename
3160         ln $DIR/$tdir/funlink $DIR/$tdir/funlink2
3161
3162         sleep 1
3163         echo "aaaaaa" >> $DIR/$tdir/fopen
3164         echo "aaaaaa" >> $DIR/$tdir/flink
3165         echo "aaaaaa" >> $DIR/$tdir/funlink
3166         echo "aaaaaa" >> $DIR/$tdir/frename
3167
3168         local open_new=`stat -c %Y $DIR/$tdir/fopen`
3169         local link_new=`stat -c %Y $DIR/$tdir/flink`
3170         local unlink_new=`stat -c %Y $DIR/$tdir/funlink`
3171         local rename_new=`stat -c %Y $DIR/$tdir/frename`
3172
3173         cat $DIR/$tdir/fopen > /dev/null
3174         ln $DIR/$tdir/flink $DIR/$tdir/flink2
3175         rm -f $DIR/$tdir/funlink2
3176         mv -f $DIR/$tdir/frename $DIR/$tdir/frename2
3177
3178         for (( i=0; i < 2; i++ )) ; do
3179                 local open_new2=`stat -c %Y $DIR/$tdir/fopen`
3180                 local link_new2=`stat -c %Y $DIR/$tdir/flink`
3181                 local unlink_new2=`stat -c %Y $DIR/$tdir/funlink`
3182                 local rename_new2=`stat -c %Y $DIR/$tdir/frename2`
3183
3184                 [ $open_new2 -eq $open_new ] || error "open file reverses mtime"
3185                 [ $link_new2 -eq $link_new ] || error "link file reverses mtime"
3186                 [ $unlink_new2 -eq $unlink_new ] || error "unlink file reverses mtime"
3187                 [ $rename_new2 -eq $rename_new ] || error "rename file reverses mtime"
3188
3189                 cancel_lru_locks osc
3190                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3191         done
3192 }
3193 run_test 39b "mtime change on open, link, unlink, rename  ======"
3194
3195 # this should be set to past
3196 TEST_39_MTIME=`date -d "1 year ago" +%s`
3197
3198 # bug 11063
3199 test_39c() {
3200         touch $DIR1/$tfile
3201         sleep 2
3202         local mtime0=`stat -c %Y $DIR1/$tfile`
3203
3204         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3205         local mtime1=`stat -c %Y $DIR1/$tfile`
3206         [ "$mtime1" = $TEST_39_MTIME ] || \
3207                 error "mtime is not set to past: $mtime1, should be $TEST_39_MTIME"
3208
3209         local d1=`date +%s`
3210         echo hello >> $DIR1/$tfile
3211         local d2=`date +%s`
3212         local mtime2=`stat -c %Y $DIR1/$tfile`
3213         [ "$mtime2" -ge "$d1" ] && [ "$mtime2" -le "$d2" ] || \
3214                 error "mtime is not updated on write: $d1 <= $mtime2 <= $d2"
3215
3216         mv $DIR1/$tfile $DIR1/$tfile-1
3217
3218         for (( i=0; i < 2; i++ )) ; do
3219                 local mtime3=`stat -c %Y $DIR1/$tfile-1`
3220                 [ "$mtime2" = "$mtime3" ] || \
3221                         error "mtime ($mtime2) changed (to $mtime3) on rename"
3222
3223                 cancel_lru_locks osc
3224                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3225         done
3226 }
3227 run_test 39c "mtime change on rename ==========================="
3228
3229 # bug 21114
3230 test_39d() {
3231         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3232         touch $DIR1/$tfile
3233
3234         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3235
3236         for (( i=0; i < 2; i++ )) ; do
3237                 local mtime=`stat -c %Y $DIR1/$tfile`
3238                 [ $mtime = $TEST_39_MTIME ] || \
3239                         error "mtime($mtime) is not set to $TEST_39_MTIME"
3240
3241                 cancel_lru_locks osc
3242                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3243         done
3244 }
3245 run_test 39d "create, utime, stat =============================="
3246
3247 # bug 21114
3248 test_39e() {
3249         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3250         touch $DIR1/$tfile
3251         local mtime1=`stat -c %Y $DIR1/$tfile`
3252
3253         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3254
3255         for (( i=0; i < 2; i++ )) ; do
3256                 local mtime2=`stat -c %Y $DIR1/$tfile`
3257                 [ $mtime2 = $TEST_39_MTIME ] || \
3258                         error "mtime($mtime2) is not set to $TEST_39_MTIME"
3259
3260                 cancel_lru_locks osc
3261                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3262         done
3263 }
3264 run_test 39e "create, stat, utime, stat ========================"
3265
3266 # bug 21114
3267 test_39f() {
3268         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3269         touch $DIR1/$tfile
3270         mtime1=`stat -c %Y $DIR1/$tfile`
3271
3272         sleep 2
3273         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3274
3275         for (( i=0; i < 2; i++ )) ; do
3276                 local mtime2=`stat -c %Y $DIR1/$tfile`
3277                 [ $mtime2 = $TEST_39_MTIME ] || \
3278                         error "mtime($mtime2) is not set to $TEST_39_MTIME"
3279
3280                 cancel_lru_locks osc
3281                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3282         done
3283 }
3284 run_test 39f "create, stat, sleep, utime, stat ================="
3285
3286 # bug 11063
3287 test_39g() {
3288         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3289         echo hello >> $DIR1/$tfile
3290         local mtime1=`stat -c %Y $DIR1/$tfile`
3291
3292         sleep 2
3293         chmod o+r $DIR1/$tfile
3294
3295         for (( i=0; i < 2; i++ )) ; do
3296                 local mtime2=`stat -c %Y $DIR1/$tfile`
3297                 [ "$mtime1" = "$mtime2" ] || \
3298                         error "lost mtime: $mtime2, should be $mtime1"
3299
3300                 cancel_lru_locks osc
3301                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3302         done
3303 }
3304 run_test 39g "write, chmod, stat ==============================="
3305
3306 # bug 11063
3307 test_39h() {
3308         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3309         touch $DIR1/$tfile
3310         sleep 1
3311
3312         local d1=`date`
3313         echo hello >> $DIR1/$tfile
3314         local mtime1=`stat -c %Y $DIR1/$tfile`
3315
3316         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3317         local d2=`date`
3318         if [ "$d1" != "$d2" ]; then
3319                 echo "write and touch not within one second"
3320         else
3321                 for (( i=0; i < 2; i++ )) ; do
3322                         local mtime2=`stat -c %Y $DIR1/$tfile`
3323                         [ "$mtime2" = $TEST_39_MTIME ] || \
3324                                 error "lost mtime: $mtime2, should be $TEST_39_MTIME"
3325
3326                         cancel_lru_locks osc
3327                         if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3328                 done
3329         fi
3330 }
3331 run_test 39h "write, utime within one second, stat ============="
3332
3333 test_39i() {
3334         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3335         touch $DIR1/$tfile
3336         sleep 1
3337
3338         echo hello >> $DIR1/$tfile
3339         local mtime1=`stat -c %Y $DIR1/$tfile`
3340
3341         mv $DIR1/$tfile $DIR1/$tfile-1
3342
3343         for (( i=0; i < 2; i++ )) ; do
3344                 local mtime2=`stat -c %Y $DIR1/$tfile-1`
3345
3346                 [ "$mtime1" = "$mtime2" ] || \
3347                         error "lost mtime: $mtime2, should be $mtime1"
3348
3349                 cancel_lru_locks osc
3350                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3351         done
3352 }
3353 run_test 39i "write, rename, stat =============================="
3354
3355 test_39j() {
3356         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3357         start_full_debug_logging
3358         touch $DIR1/$tfile
3359         sleep 1
3360
3361         #define OBD_FAIL_OSC_DELAY_SETTIME       0x412
3362         lctl set_param fail_loc=0x80000412
3363         multiop_bg_pause $DIR1/$tfile oO_RDWR:w2097152_c ||
3364                 error "multiop failed"
3365         local multipid=$!
3366         local mtime1=`stat -c %Y $DIR1/$tfile`
3367
3368         mv $DIR1/$tfile $DIR1/$tfile-1
3369
3370         kill -USR1 $multipid
3371         wait $multipid || error "multiop close failed"
3372
3373         for (( i=0; i < 2; i++ )) ; do
3374                 local mtime2=`stat -c %Y $DIR1/$tfile-1`
3375                 [ "$mtime1" = "$mtime2" ] ||
3376                         error "mtime is lost on close: $mtime2, " \
3377                               "should be $mtime1"
3378
3379                 cancel_lru_locks osc
3380                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3381         done
3382         lctl set_param fail_loc=0
3383         stop_full_debug_logging
3384 }
3385 run_test 39j "write, rename, close, stat ======================="
3386
3387 test_39k() {
3388         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3389         touch $DIR1/$tfile
3390         sleep 1
3391
3392         multiop_bg_pause $DIR1/$tfile oO_RDWR:w2097152_c || error "multiop failed"
3393         local multipid=$!
3394         local mtime1=`stat -c %Y $DIR1/$tfile`
3395
3396         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3397
3398         kill -USR1 $multipid
3399         wait $multipid || error "multiop close failed"
3400
3401         for (( i=0; i < 2; i++ )) ; do
3402                 local mtime2=`stat -c %Y $DIR1/$tfile`
3403
3404                 [ "$mtime2" = $TEST_39_MTIME ] || \
3405                         error "mtime is lost on close: $mtime2, should be $TEST_39_MTIME"
3406
3407                 cancel_lru_locks osc
3408                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3409         done
3410 }
3411 run_test 39k "write, utime, close, stat ========================"
3412
3413 # this should be set to future
3414 TEST_39_ATIME=`date -d "1 year" +%s`
3415
3416 test_39l() {
3417         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3418         remote_mds_nodsh && skip "remote MDS with nodsh" && return
3419         local atime_diff=$(do_facet $SINGLEMDS \
3420                                 lctl get_param -n mdd.*MDT0000*.atime_diff)
3421         rm -rf $DIR/$tdir
3422         mkdir -p $DIR/$tdir
3423
3424         # test setting directory atime to future
3425         touch -a -d @$TEST_39_ATIME $DIR/$tdir
3426         local atime=$(stat -c %X $DIR/$tdir)
3427         [ "$atime" = $TEST_39_ATIME ] ||
3428                 error "atime is not set to future: $atime, $TEST_39_ATIME"
3429
3430         # test setting directory atime from future to now
3431         local now=$(date +%s)
3432         touch -a -d @$now $DIR/$tdir
3433
3434         atime=$(stat -c %X $DIR/$tdir)
3435         [ "$atime" -eq "$now"  ] ||
3436                 error "atime is not updated from future: $atime, $now"
3437
3438         do_facet $SINGLEMDS lctl set_param -n mdd.*MDT0000*.atime_diff=2
3439         sleep 3
3440
3441         # test setting directory atime when now > dir atime + atime_diff
3442         local d1=$(date +%s)
3443         ls $DIR/$tdir
3444         local d2=$(date +%s)
3445         cancel_lru_locks mdc
3446         atime=$(stat -c %X $DIR/$tdir)
3447         [ "$atime" -ge "$d1" -a "$atime" -le "$d2" ] ||
3448                 error "atime is not updated  : $atime, should be $d2"
3449
3450         do_facet $SINGLEMDS lctl set_param -n mdd.*MDT0000*.atime_diff=60
3451         sleep 3
3452
3453         # test not setting directory atime when now < dir atime + atime_diff
3454         ls $DIR/$tdir
3455         cancel_lru_locks mdc
3456         atime=$(stat -c %X $DIR/$tdir)
3457         [ "$atime" -ge "$d1" -a "$atime" -le "$d2" ] ||
3458                 error "atime is updated to $atime, should remain $d1<atime<$d2"
3459
3460         do_facet $SINGLEMDS \
3461                 lctl set_param -n mdd.*MDT0000*.atime_diff=$atime_diff
3462 }
3463 run_test 39l "directory atime update ==========================="
3464
3465 test_39m() {
3466         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3467         touch $DIR1/$tfile
3468         sleep 2
3469         local far_past_mtime=$(date -d "May 29 1953" +%s)
3470         local far_past_atime=$(date -d "Dec 17 1903" +%s)
3471
3472         touch -m -d @$far_past_mtime $DIR1/$tfile
3473         touch -a -d @$far_past_atime $DIR1/$tfile
3474
3475         for (( i=0; i < 2; i++ )) ; do
3476                 local timestamps=$(stat -c "%X %Y" $DIR1/$tfile)
3477                 [ "$timestamps" = "$far_past_atime $far_past_mtime" ] || \
3478                         error "atime or mtime set incorrectly"
3479
3480                 cancel_lru_locks osc
3481                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3482         done
3483 }
3484 run_test 39m "test atime and mtime before 1970"
3485
3486 test_39n() { # LU-3832
3487         remote_mds_nodsh && skip "remote MDS with nodsh" && return
3488         local atime_diff=$(do_facet $SINGLEMDS \
3489                 lctl get_param -n mdd.*MDT0000*.atime_diff)
3490         local atime0
3491         local atime1
3492         local atime2
3493
3494         do_facet $SINGLEMDS lctl set_param -n mdd.*MDT0000*.atime_diff=1
3495
3496         rm -rf $DIR/$tfile
3497         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 status=noxfer
3498         atime0=$(stat -c %X $DIR/$tfile)
3499
3500         sleep 5
3501         $MULTIOP $DIR/$tfile oO_RDONLY:O_NOATIME:r4096c
3502         atime1=$(stat -c %X $DIR/$tfile)
3503
3504         sleep 5
3505         cancel_lru_locks mdc
3506         cancel_lru_locks osc
3507         $MULTIOP $DIR/$tfile oO_RDONLY:O_NOATIME:r4096c
3508         atime2=$(stat -c %X $DIR/$tfile)
3509
3510         do_facet $SINGLEMDS \
3511                 lctl set_param -n mdd.*MDT0000*.atime_diff=$atime_diff
3512
3513         [ "$atime0" -eq "$atime1" ] || error "atime0 $atime0 != atime1 $atime1"
3514         [ "$atime1" -eq "$atime2" ] || error "atime0 $atime0 != atime1 $atime1"
3515 }
3516 run_test 39n "check that O_NOATIME is honored"
3517
3518 test_39o() {
3519         TESTDIR=$DIR/$tdir/$tfile
3520         [ -e $TESTDIR ] && rm -rf $TESTDIR
3521         mkdir -p $TESTDIR
3522         cd $TESTDIR
3523         links1=2
3524         ls
3525         mkdir a b
3526         ls
3527         links2=$(stat -c %h .)
3528         [ $(($links1 + 2)) != $links2 ] &&
3529                 error "wrong links count $(($links1 + 2)) != $links2"
3530         rmdir b
3531         links3=$(stat -c %h .)
3532         [ $(($links1 + 1)) != $links3 ] &&
3533                 error "wrong links count $links1 != $links3"
3534         return 0
3535 }
3536 run_test 39o "directory cached attributes updated after create"
3537
3538 test_39p() {
3539         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 2 MDTs" && return
3540         local MDTIDX=1
3541         TESTDIR=$DIR/$tdir/$tdir
3542         [ -e $TESTDIR ] && rm -rf $TESTDIR
3543         test_mkdir -p $TESTDIR
3544         cd $TESTDIR
3545         links1=2
3546         ls
3547         test_mkdir -i $MDTIDX $TESTDIR/remote_dir1
3548         test_mkdir -i $MDTIDX $TESTDIR/remote_dir2
3549         ls
3550         links2=$(stat -c %h .)
3551         [ $(($links1 + 2)) != $links2 ] &&
3552                 error "wrong links count $(($links1 + 2)) != $links2"
3553         rmdir remote_dir2
3554         links3=$(stat -c %h .)
3555         [ $(($links1 + 1)) != $links3 ] &&
3556                 error "wrong links count $links1 != $links3"
3557         return 0
3558 }
3559 run_test 39p "remote directory cached attributes updated after create ========"
3560
3561
3562 test_39q() { # LU-8041
3563         local testdir=$DIR/$tdir
3564         mkdir -p $testdir
3565         multiop_bg_pause $testdir D_c || error "multiop failed"
3566         local multipid=$!
3567         cancel_lru_locks mdc
3568         kill -USR1 $multipid
3569         local atime=$(stat -c %X $testdir)
3570         [ "$atime" -ne 0 ] || error "atime is zero"
3571 }
3572 run_test 39q "close won't zero out atime"
3573
3574 test_40() {
3575         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1
3576         $RUNAS $OPENFILE -f O_WRONLY:O_TRUNC $DIR/$tfile &&
3577                 error "openfile O_WRONLY:O_TRUNC $tfile failed"
3578         $CHECKSTAT -t file -s 4096 $DIR/$tfile ||
3579                 error "$tfile is not 4096 bytes in size"
3580 }
3581 run_test 40 "failed open(O_TRUNC) doesn't truncate ============="
3582
3583 test_41() {
3584         # bug 1553
3585         small_write $DIR/f41 18
3586 }
3587 run_test 41 "test small file write + fstat ====================="
3588
3589 count_ost_writes() {
3590         lctl get_param -n osc.*.stats |
3591                 awk -vwrites=0 '/ost_write/ { writes += $2 } \
3592                         END { printf("%0.0f", writes) }'
3593 }
3594
3595 # decent default
3596 WRITEBACK_SAVE=500
3597 DIRTY_RATIO_SAVE=40
3598 MAX_DIRTY_RATIO=50
3599 BG_DIRTY_RATIO_SAVE=10
3600 MAX_BG_DIRTY_RATIO=25
3601
3602 start_writeback() {
3603         trap 0
3604         # in 2.6, restore /proc/sys/vm/dirty_writeback_centisecs,
3605         # dirty_ratio, dirty_background_ratio
3606         if [ -f /proc/sys/vm/dirty_writeback_centisecs ]; then
3607                 sysctl -w vm.dirty_writeback_centisecs=$WRITEBACK_SAVE
3608                 sysctl -w vm.dirty_background_ratio=$BG_DIRTY_RATIO_SAVE
3609                 sysctl -w vm.dirty_ratio=$DIRTY_RATIO_SAVE
3610         else
3611                 # if file not here, we are a 2.4 kernel
3612                 kill -CONT `pidof kupdated`
3613         fi
3614 }
3615
3616 stop_writeback() {
3617         # setup the trap first, so someone cannot exit the test at the
3618         # exact wrong time and mess up a machine
3619         trap start_writeback EXIT
3620         # in 2.6, save and 0 /proc/sys/vm/dirty_writeback_centisecs
3621         if [ -f /proc/sys/vm/dirty_writeback_centisecs ]; then
3622                 WRITEBACK_SAVE=`sysctl -n vm.dirty_writeback_centisecs`
3623                 sysctl -w vm.dirty_writeback_centisecs=0
3624                 sysctl -w vm.dirty_writeback_centisecs=0
3625                 # save and increase /proc/sys/vm/dirty_ratio
3626                 DIRTY_RATIO_SAVE=`sysctl -n vm.dirty_ratio`
3627                 sysctl -w vm.dirty_ratio=$MAX_DIRTY_RATIO
3628                 # save and increase /proc/sys/vm/dirty_background_ratio
3629                 BG_DIRTY_RATIO_SAVE=`sysctl -n vm.dirty_background_ratio`
3630                 sysctl -w vm.dirty_background_ratio=$MAX_BG_DIRTY_RATIO
3631         else
3632                 # if file not here, we are a 2.4 kernel
3633                 kill -STOP `pidof kupdated`
3634         fi
3635 }
3636
3637 # ensure that all stripes have some grant before we test client-side cache
3638 setup_test42() {
3639         for i in `seq -f $DIR/f42-%g 1 $OSTCOUNT`; do
3640                 dd if=/dev/zero of=$i bs=4k count=1
3641                 rm $i
3642         done
3643 }
3644
3645 # Tests 42* verify that our behaviour is correct WRT caching, file closure,
3646 # file truncation, and file removal.
3647 test_42a() {
3648         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3649         setup_test42
3650         cancel_lru_locks osc
3651         stop_writeback
3652         sync; sleep 1; sync # just to be safe
3653         BEFOREWRITES=`count_ost_writes`
3654         lctl get_param -n osc.*[oO][sS][cC][_-]*.cur_grant_bytes | grep "[0-9]"
3655         dd if=/dev/zero of=$DIR/f42a bs=1024 count=100
3656         AFTERWRITES=`count_ost_writes`
3657         [ $BEFOREWRITES -eq $AFTERWRITES ] || \
3658                 error "$BEFOREWRITES < $AFTERWRITES"
3659         start_writeback
3660 }
3661 run_test 42a "ensure that we don't flush on close"
3662
3663 test_42b() {
3664         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3665         setup_test42
3666         cancel_lru_locks osc
3667         stop_writeback
3668         sync
3669         dd if=/dev/zero of=$DIR/f42b bs=1024 count=100
3670         BEFOREWRITES=$(count_ost_writes)
3671         $MUNLINK $DIR/f42b || error "$MUNLINK $DIR/f42b: $?"
3672         AFTERWRITES=$(count_ost_writes)
3673         if [[ $BEFOREWRITES -lt $AFTERWRITES ]]; then
3674                 error "$BEFOREWRITES < $AFTERWRITES on unlink"
3675         fi
3676         BEFOREWRITES=$(count_ost_writes)
3677         sync || error "sync: $?"
3678         AFTERWRITES=$(count_ost_writes)
3679         if [[ $BEFOREWRITES -lt $AFTERWRITES ]]; then
3680                 error "$BEFOREWRITES < $AFTERWRITES on sync"
3681         fi
3682         dmesg | grep 'error from obd_brw_async' && error 'error writing back'
3683         start_writeback
3684         return 0
3685 }
3686 run_test 42b "test destroy of file with cached dirty data ======"
3687
3688 # if these tests just want to test the effect of truncation,
3689 # they have to be very careful.  consider:
3690 # - the first open gets a {0,EOF}PR lock
3691 # - the first write conflicts and gets a {0, count-1}PW
3692 # - the rest of the writes are under {count,EOF}PW
3693 # - the open for truncate tries to match a {0,EOF}PR
3694 #   for the filesize and cancels the PWs.
3695 # any number of fixes (don't get {0,EOF} on open, match
3696 # composite locks, do smarter file size management) fix
3697 # this, but for now we want these tests to verify that
3698 # the cancellation with truncate intent works, so we
3699 # start the file with a full-file pw lock to match against
3700 # until the truncate.
3701 trunc_test() {
3702         test=$1
3703         file=$DIR/$test
3704         offset=$2
3705         cancel_lru_locks osc
3706         stop_writeback
3707         # prime the file with 0,EOF PW to match
3708         touch $file
3709         $TRUNCATE $file 0
3710         sync; sync
3711         # now the real test..
3712         dd if=/dev/zero of=$file bs=1024 count=100
3713         BEFOREWRITES=`count_ost_writes`
3714         $TRUNCATE $file $offset
3715         cancel_lru_locks osc
3716         AFTERWRITES=`count_ost_writes`
3717         start_writeback
3718 }
3719
3720 test_42c() {
3721         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3722         trunc_test 42c 1024
3723         [ $BEFOREWRITES -eq $AFTERWRITES ] && \
3724             error "beforewrites $BEFOREWRITES == afterwrites $AFTERWRITES on truncate"
3725         rm $file
3726 }
3727 run_test 42c "test partial truncate of file with cached dirty data"
3728
3729 test_42d() {
3730         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3731         trunc_test 42d 0
3732         [ $BEFOREWRITES -eq $AFTERWRITES ] || \
3733             error "beforewrites $BEFOREWRITES != afterwrites $AFTERWRITES on truncate"
3734         rm $file
3735 }
3736 run_test 42d "test complete truncate of file with cached dirty data"
3737
3738 test_42e() { # bug22074
3739         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3740         local TDIR=$DIR/${tdir}e
3741         local pagesz=$(page_size)
3742         local pages=16 # hardcoded 16 pages, don't change it.
3743         local files=$((OSTCOUNT * 500)) # hopefully 500 files on each OST
3744         local proc_osc0="osc.${FSNAME}-OST0000-osc-[^MDT]*"
3745         local max_dirty_mb
3746         local warmup_files
3747
3748         test_mkdir $DIR/${tdir}e
3749         $SETSTRIPE -c 1 $TDIR
3750         createmany -o $TDIR/f $files
3751
3752         max_dirty_mb=$($LCTL get_param -n $proc_osc0/max_dirty_mb)
3753
3754         # we assume that with $OSTCOUNT files, at least one of them will
3755         # be allocated on OST0.
3756         warmup_files=$((OSTCOUNT * max_dirty_mb))
3757         createmany -o $TDIR/w $warmup_files
3758
3759         # write a large amount of data into one file and sync, to get good
3760         # avail_grant number from OST.
3761         for ((i=0; i<$warmup_files; i++)); do
3762                 idx=$($GETSTRIPE -i $TDIR/w$i)
3763                 [ $idx -ne 0 ] && continue
3764                 dd if=/dev/zero of=$TDIR/w$i bs="$max_dirty_mb"M count=1
3765                 break
3766         done
3767         [[ $i -gt $warmup_files ]] && error "OST0 is still cold"
3768         sync
3769         $LCTL get_param $proc_osc0/cur_dirty_bytes
3770         $LCTL get_param $proc_osc0/cur_grant_bytes
3771
3772         # create as much dirty pages as we can while not to trigger the actual
3773         # RPCs directly. but depends on the env, VFS may trigger flush during this
3774         # period, hopefully we are good.
3775         for ((i=0; i<$warmup_files; i++)); do
3776                 idx=$($GETSTRIPE -i $TDIR/w$i)
3777                 [ $idx -ne 0 ] && continue
3778                 dd if=/dev/zero of=$TDIR/w$i bs=1M count=1 2>/dev/null
3779         done
3780         $LCTL get_param $proc_osc0/cur_dirty_bytes
3781         $LCTL get_param $proc_osc0/cur_grant_bytes
3782
3783         # perform the real test
3784         $LCTL set_param $proc_osc0/rpc_stats 0
3785         for ((;i<$files; i++)); do
3786                 [ $($GETSTRIPE -i $TDIR/f$i) -eq 0 ] || continue
3787                 dd if=/dev/zero of=$TDIR/f$i bs=$pagesz count=$pages 2>/dev/null
3788         done
3789         sync
3790         $LCTL get_param $proc_osc0/rpc_stats
3791
3792         local percent=0
3793         local have_ppr=false
3794         $LCTL get_param $proc_osc0/rpc_stats |
3795                 while read PPR RRPC RPCT RCUM BAR WRPC WPCT WCUM; do
3796                         # skip lines until we are at the RPC histogram data
3797                         [ "$PPR" == "pages" ] && have_ppr=true && continue
3798                         $have_ppr || continue
3799
3800                         # we only want the percent stat for < 16 pages
3801                         [[ $(echo $PPR | tr -d ':') -ge $pages ]] && break
3802
3803                         percent=$((percent + WPCT))
3804                         if [[ $percent -gt 15 ]]; then
3805                                 error "less than 16-pages write RPCs" \
3806                                       "$percent% > 15%"
3807                                 break
3808                         fi
3809                 done
3810         rm -rf $TDIR
3811 }
3812 run_test 42e "verify sub-RPC writes are not done synchronously"
3813
3814 test_43A() { # was test_43
3815         test_mkdir $DIR/$tdir
3816         cp -p /bin/ls $DIR/$tdir/$tfile
3817         $MULTIOP $DIR/$tdir/$tfile Ow_c &
3818         pid=$!
3819         # give multiop a chance to open
3820         sleep 1
3821
3822         $DIR/$tdir/$tfile && error "execute $DIR/$tdir/$tfile succeeded" || true
3823         kill -USR1 $pid
3824 }
3825 run_test 43A "execution of file opened for write should return -ETXTBSY"
3826
3827 test_43a() {
3828         test_mkdir $DIR/$tdir
3829         cp -p $(which $MULTIOP) $DIR/$tdir/multiop ||
3830                 cp -p multiop $DIR/$tdir/multiop
3831         MULTIOP_PROG=$DIR/$tdir/multiop multiop_bg_pause $TMP/$tfile.junk O_c ||
3832                 error "multiop open $TMP/$tfile.junk failed"
3833         MULTIOP_PID=$!
3834         $MULTIOP $DIR/$tdir/multiop Oc && error "expected error, got success"
3835         kill -USR1 $MULTIOP_PID || error "kill -USR1 PID $MULTIOP_PID failed"
3836         wait $MULTIOP_PID || error "wait PID $MULTIOP_PID failed"
3837 }
3838 run_test 43a "open(RDWR) of file being executed should return -ETXTBSY"
3839
3840 test_43b() {
3841         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3842         test_mkdir $DIR/$tdir
3843         cp -p $(which $MULTIOP) $DIR/$tdir/multiop ||
3844                 cp -p multiop $DIR/$tdir/multiop
3845         MULTIOP_PROG=$DIR/$tdir/multiop multiop_bg_pause $TMP/$tfile.junk O_c ||
3846                 error "multiop open $TMP/$tfile.junk failed"
3847         MULTIOP_PID=$!
3848         $TRUNCATE $DIR/$tdir/multiop 0 && error "expected error, got success"
3849         kill -USR1 $MULTIOP_PID || error "kill -USR1 PID $MULTIOP_PID failed"
3850         wait $MULTIOP_PID || error "wait PID $MULTIOP_PID failed"
3851 }
3852 run_test 43b "truncate of file being executed should return -ETXTBSY"
3853
3854 test_43c() {
3855         local testdir="$DIR/$tdir"
3856         test_mkdir $testdir
3857         cp $SHELL $testdir/
3858         ( cd $(dirname $SHELL) && md5sum $(basename $SHELL) ) |
3859                 ( cd $testdir && md5sum -c )
3860 }
3861 run_test 43c "md5sum of copy into lustre"
3862
3863 test_44A() { # was test_44
3864         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
3865         dd if=/dev/zero of=$DIR/f1 bs=4k count=1 seek=1023
3866         dd if=$DIR/f1 bs=4k count=1 > /dev/null
3867 }
3868 run_test 44A "zero length read from a sparse stripe"
3869
3870 test_44a() {
3871         local nstripe=$($LCTL lov_getconfig $DIR | grep default_stripe_count: |
3872                 awk '{ print $2 }')
3873         [ -z "$nstripe" ] && skip "can't get stripe info" && return
3874         [[ $nstripe -gt $OSTCOUNT ]] &&
3875             skip "Wrong default_stripe_count: $nstripe (OSTCOUNT: $OSTCOUNT)" &&
3876             return
3877         local stride=$($LCTL lov_getconfig $DIR | grep default_stripe_size: |
3878                 awk '{ print $2 }')
3879         if [[ $nstripe -eq 0 || $nstripe -eq -1 ]]; then
3880                 nstripe=$($LCTL lov_getconfig $DIR | grep obd_count: |
3881                         awk '{ print $2 }')
3882         fi
3883
3884         OFFSETS="0 $((stride/2)) $((stride-1))"
3885         for offset in $OFFSETS; do
3886                 for i in $(seq 0 $((nstripe-1))); do
3887                         local GLOBALOFFSETS=""
3888                         # size in Bytes
3889                         local size=$((((i + 2 * $nstripe )*$stride + $offset)))
3890                         local myfn=$DIR/d44a-$size
3891                         echo "--------writing $myfn at $size"
3892                         ll_sparseness_write $myfn $size ||
3893                                 error "ll_sparseness_write"
3894                         GLOBALOFFSETS="$GLOBALOFFSETS $size"
3895                         ll_sparseness_verify $myfn $GLOBALOFFSETS ||
3896                                 error "ll_sparseness_verify $GLOBALOFFSETS"
3897
3898                         for j in $(seq 0 $((nstripe-1))); do
3899                                 # size in Bytes
3900                                 size=$((((j + $nstripe )*$stride + $offset)))
3901                                 ll_sparseness_write $myfn $size ||
3902                                         error "ll_sparseness_write"
3903                                 GLOBALOFFSETS="$GLOBALOFFSETS $size"
3904                         done
3905                         ll_sparseness_verify $myfn $GLOBALOFFSETS ||
3906                                 error "ll_sparseness_verify $GLOBALOFFSETS"
3907                         rm -f $myfn
3908                 done
3909         done
3910 }
3911 run_test 44a "test sparse pwrite ==============================="
3912
3913 dirty_osc_total() {
3914         tot=0
3915         for d in `lctl get_param -n osc.*.cur_dirty_bytes`; do
3916                 tot=$(($tot + $d))
3917         done
3918         echo $tot
3919 }
3920 do_dirty_record() {
3921         before=`dirty_osc_total`
3922         echo executing "\"$*\""
3923         eval $*
3924         after=`dirty_osc_total`
3925         echo before $before, after $after
3926 }
3927 test_45() {
3928         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3929         f="$DIR/f45"
3930         # Obtain grants from OST if it supports it
3931         echo blah > ${f}_grant
3932         stop_writeback
3933         sync
3934         do_dirty_record "echo blah > $f"
3935         [[ $before -eq $after ]] && error "write wasn't cached"
3936         do_dirty_record "> $f"
3937         [[ $before -gt $after ]] || error "truncate didn't lower dirty count"
3938         do_dirty_record "echo blah > $f"
3939         [[ $before -eq $after ]] && error "write wasn't cached"
3940         do_dirty_record "sync"
3941         [[ $before -gt $after ]] || error "writeback didn't lower dirty count"
3942         do_dirty_record "echo blah > $f"
3943         [[ $before -eq $after ]] && error "write wasn't cached"
3944         do_dirty_record "cancel_lru_locks osc"
3945         [[ $before -gt $after ]] ||
3946                 error "lock cancellation didn't lower dirty count"
3947         start_writeback
3948 }
3949 run_test 45 "osc io page accounting ============================"
3950
3951 # in a 2 stripe file (lov.sh), page 1023 maps to page 511 in its object.  this
3952 # test tickles a bug where re-dirtying a page was failing to be mapped to the
3953 # objects offset and an assert hit when an rpc was built with 1023's mapped
3954 # offset 511 and 511's raw 511 offset. it also found general redirtying bugs.
3955 test_46() {
3956         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3957         f="$DIR/f46"
3958         stop_writeback
3959         sync
3960         dd if=/dev/zero of=$f bs=`page_size` seek=511 count=1
3961         sync
3962         dd conv=notrunc if=/dev/zero of=$f bs=`page_size` seek=1023 count=1
3963         dd conv=notrunc if=/dev/zero of=$f bs=`page_size` seek=511 count=1
3964         sync
3965         start_writeback
3966 }
3967 run_test 46 "dirtying a previously written page ================"
3968
3969 # test_47 is removed "Device nodes check" is moved to test_28
3970
3971 test_48a() { # bug 2399
3972         [ $(facet_fstype $SINGLEMDS) = "zfs" ] &&
3973         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.63) ] &&
3974                 skip "MDS prior to 2.3.63 handle ZFS dir .. incorrectly" &&
3975                 return
3976         test_mkdir $DIR/$tdir
3977         cd $DIR/$tdir
3978         mv $DIR/$tdir $DIR/$tdir.new || error "move directory failed"
3979         test_mkdir $DIR/$tdir
3980         touch foo || error "'touch foo' failed after recreating cwd"
3981         test_mkdir bar
3982         touch .foo || error "'touch .foo' failed after recreating cwd"
3983         test_mkdir .bar
3984         ls . > /dev/null || error "'ls .' failed after recreating cwd"
3985         ls .. > /dev/null || error "'ls ..' failed after removing cwd"
3986         cd . || error "'cd .' failed after recreating cwd"
3987         mkdir . && error "'mkdir .' worked after recreating cwd"
3988         rmdir . && error "'rmdir .' worked after recreating cwd"
3989         ln -s . baz || error "'ln -s .' failed after recreating cwd"
3990         cd .. || error "'cd ..' failed after recreating cwd"
3991 }
3992 run_test 48a "Access renamed working dir (should return errors)="
3993
3994 test_48b() { # bug 2399
3995         rm -rf $DIR/$tdir
3996         test_mkdir $DIR/$tdir
3997         cd $DIR/$tdir
3998         rmdir $DIR/$tdir || error "remove cwd $DIR/$tdir failed"
3999         touch foo && error "'touch foo' worked after removing cwd"
4000         mkdir foo && error "'mkdir foo' worked after removing cwd"
4001         touch .foo && error "'touch .foo' worked after removing cwd"
4002         mkdir .foo && error "'mkdir .foo' worked after removing cwd"
4003         ls . > /dev/null && error "'ls .' worked after removing cwd"
4004         ls .. > /dev/null || error "'ls ..' failed after removing cwd"
4005         mkdir . && error "'mkdir .' worked after removing cwd"
4006         rmdir . && error "'rmdir .' worked after removing cwd"
4007         ln -s . foo && error "'ln -s .' worked after removing cwd"
4008         cd .. || echo "'cd ..' failed after removing cwd `pwd`"  #bug 3517
4009 }
4010 run_test 48b "Access removed working dir (should return errors)="
4011
4012 test_48c() { # bug 2350
4013         #lctl set_param debug=-1
4014         #set -vx
4015         rm -rf $DIR/$tdir
4016         test_mkdir -p $DIR/$tdir/dir
4017         cd $DIR/$tdir/dir
4018         $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
4019         $TRACE touch foo && error "touch foo worked after removing cwd"
4020         $TRACE mkdir foo && error "'mkdir foo' worked after removing cwd"
4021         touch .foo && error "touch .foo worked after removing cwd"
4022         mkdir .foo && error "mkdir .foo worked after removing cwd"
4023         $TRACE ls . && error "'ls .' worked after removing cwd"
4024         $TRACE ls .. || error "'ls ..' failed after removing cwd"
4025         $TRACE mkdir . && error "'mkdir .' worked after removing cwd"
4026         $TRACE rmdir . && error "'rmdir .' worked after removing cwd"
4027         $TRACE ln -s . foo && error "'ln -s .' worked after removing cwd"
4028         $TRACE cd .. || echo "'cd ..' failed after removing cwd `pwd`" #bug 3415
4029 }
4030 run_test 48c "Access removed working subdir (should return errors)"
4031
4032 test_48d() { # bug 2350
4033         #lctl set_param debug=-1
4034         #set -vx
4035         rm -rf $DIR/$tdir
4036         test_mkdir -p $DIR/$tdir/dir
4037         cd $DIR/$tdir/dir
4038         $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
4039         $TRACE rmdir $DIR/$tdir || error "remove parent $DIR/$tdir failed"
4040         $TRACE touch foo && error "'touch foo' worked after removing parent"
4041         $TRACE mkdir foo && error "mkdir foo worked after removing parent"
4042         touch .foo && error "'touch .foo' worked after removing parent"
4043         mkdir .foo && error "mkdir .foo worked after removing parent"
4044         $TRACE ls . && error "'ls .' worked after removing parent"
4045         $TRACE ls .. && error "'ls ..' worked after removing parent"
4046         $TRACE mkdir . && error "'mkdir .' worked after removing parent"
4047         $TRACE rmdir . && error "'rmdir .' worked after removing parent"
4048         $TRACE ln -s . foo && error "'ln -s .' worked after removing parent"
4049         true
4050 }
4051 run_test 48d "Access removed parent subdir (should return errors)"
4052
4053 test_48e() { # bug 4134
4054         #lctl set_param debug=-1
4055         #set -vx
4056         rm -rf $DIR/$tdir
4057         test_mkdir -p $DIR/$tdir/dir
4058         cd $DIR/$tdir/dir
4059         $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
4060         $TRACE rmdir $DIR/$tdir || error "remove parent $DIR/$tdir failed"
4061         $TRACE touch $DIR/$tdir || error "'touch $DIR/$tdir' failed"
4062         $TRACE chmod +x $DIR/$tdir || error "'chmod +x $DIR/$tdir' failed"
4063         # On a buggy kernel addition of "touch foo" after cd .. will
4064         # produce kernel oops in lookup_hash_it
4065         touch ../foo && error "'cd ..' worked after recreate parent"
4066         cd $DIR
4067         $TRACE rm $DIR/$tdir || error "rm '$DIR/$tdir' failed"
4068 }
4069 run_test 48e "Access to recreated parent subdir (should return errors)"
4070
4071 test_49() { # LU-1030
4072         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4073         remote_ost_nodsh && skip "remote OST with nodsh" && return
4074         # get ost1 size - lustre-OST0000
4075         ost1_size=$(do_facet ost1 $LFS df | grep ${ost1_svc} |
4076                 awk '{ print $4 }')
4077         # write 800M at maximum
4078         [[ $ost1_size -lt 2 ]] && ost1_size=2
4079         [[ $ost1_size -gt 819200 ]] && ost1_size=819200
4080
4081         $SETSTRIPE -c 1 -i 0 $DIR/$tfile
4082         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((ost1_size >> 2)) &
4083         local dd_pid=$!
4084
4085         # change max_pages_per_rpc while writing the file
4086         local osc1_mppc=osc.$(get_osc_import_name client ost1).max_pages_per_rpc
4087         local orig_mppc=$($LCTL get_param -n $osc1_mppc)
4088         # loop until dd process exits
4089         while ps ax -opid | grep -wq $dd_pid; do
4090                 $LCTL set_param $osc1_mppc=$((RANDOM % 256 + 1))
4091                 sleep $((RANDOM % 5 + 1))
4092         done
4093         # restore original max_pages_per_rpc
4094         $LCTL set_param $osc1_mppc=$orig_mppc
4095         rm $DIR/$tfile || error "rm $DIR/$tfile failed"
4096 }
4097 run_test 49 "Change max_pages_per_rpc won't break osc extent"
4098
4099 test_50() {
4100         # bug 1485
4101         test_mkdir $DIR/$tdir
4102         cd $DIR/$tdir
4103         ls /proc/$$/cwd || error "ls /proc/$$/cwd failed"
4104 }
4105 run_test 50 "special situations: /proc symlinks  ==============="
4106
4107 test_51a() {    # was test_51
4108         # bug 1516 - create an empty entry right after ".." then split dir
4109         test_mkdir -c1 $DIR/$tdir
4110         touch $DIR/$tdir/foo
4111         $MCREATE $DIR/$tdir/bar
4112         rm $DIR/$tdir/foo
4113         createmany -m $DIR/$tdir/longfile 201
4114         FNUM=202
4115         while [[ $(ls -sd $DIR/$tdir | awk '{ print $1 }') -eq 4 ]]; do
4116                 $MCREATE $DIR/$tdir/longfile$FNUM
4117                 FNUM=$(($FNUM + 1))
4118                 echo -n "+"
4119         done
4120         echo
4121         ls -l $DIR/$tdir > /dev/null || error "ls -l $DIR/$tdir failed"
4122 }
4123 run_test 51a "special situations: split htree with empty entry =="
4124
4125 cleanup_print_lfs_df () {
4126         trap 0
4127         $LFS df
4128         $LFS df -i
4129 }
4130
4131 test_51b() {
4132         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4133         local dir=$DIR/$tdir
4134
4135         local nrdirs=$((65536 + 100))
4136
4137         # cleanup the directory
4138         rm -fr $dir
4139
4140         test_mkdir -c1 $dir
4141
4142         $LFS df
4143         $LFS df -i
4144         local mdtidx=$(printf "%04x" $($LFS getstripe -M $dir))
4145         local numfree=$(lctl get_param -n mdc.$FSNAME-MDT$mdtidx*.filesfree)
4146         [[ $numfree -lt $nrdirs ]] &&
4147                 skip "not enough free inodes ($numfree) on MDT$mdtidx" &&
4148                 return
4149
4150         # need to check free space for the directories as well
4151         local blkfree=$(lctl get_param -n mdc.$FSNAME-MDT$mdtidx*.kbytesavail)
4152         numfree=$(( blkfree / $(fs_inode_ksize) ))
4153         [[ $numfree -lt $nrdirs ]] && skip "not enough blocks ($numfree)" &&
4154                 return
4155
4156         trap cleanup_print_lfsdf EXIT
4157
4158         # create files
4159         createmany -d $dir/d $nrdirs ||
4160                 error "failed to create $nrdirs subdirs in MDT$mdtidx:$dir"
4161
4162         # really created :
4163         nrdirs=$(ls -U $dir | wc -l)
4164
4165         # unlink all but 100 subdirectories, then check it still works
4166         local left=100
4167         local delete=$((nrdirs - left))
4168
4169         $LFS df
4170         $LFS df -i
4171
4172         # for ldiskfs the nlink count should be 1, but this is OSD specific
4173         # and so this is listed for informational purposes only
4174         echo "nlink before: $(stat -c %h $dir), created before: $nrdirs"
4175         unlinkmany -d $dir/d $delete ||
4176                 error "unlink of first $delete subdirs failed"
4177
4178         echo "nlink between: $(stat -c %h $dir)"
4179         local found=$(ls -U $dir | wc -l)
4180         [ $found -ne $left ] &&
4181                 error "can't find subdirs: found only $found, expected $left"
4182
4183         unlinkmany -d $dir/d $delete $left ||
4184                 error "unlink of second $left subdirs failed"
4185         # regardless of whether the backing filesystem tracks nlink accurately
4186         # or not, the nlink count shouldn't be more than "." and ".." here
4187         local after=$(stat -c %h $dir)
4188         [[ $after -gt 2 ]] && error "nlink after: $after > 2" ||
4189                 echo "nlink after: $after"
4190
4191         cleanup_print_lfs_df
4192 }
4193 run_test 51b "exceed 64k subdirectory nlink limit on create, verify unlink"
4194
4195 test_51d() {
4196         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4197         [[ $OSTCOUNT -lt 3 ]] && skip_env "needs >= 3 OSTs" && return
4198         test_mkdir $DIR/$tdir
4199         createmany -o $DIR/$tdir/t- 1000
4200         $LFS getstripe $DIR/$tdir > $TMP/$tfile
4201         for N in $(seq 0 $((OSTCOUNT - 1))); do
4202                 OBJS[$N]=$(awk -vobjs=0 '($1 == '$N') { objs += 1 } \
4203                         END { printf("%0.0f", objs) }' $TMP/$tfile)
4204                 OBJS0[$N]=$(grep -A 1 idx $TMP/$tfile | awk -vobjs=0 \
4205                         '($1 == '$N') { objs += 1 } \
4206                         END { printf("%0.0f", objs) }')
4207                 log "OST$N has ${OBJS[$N]} objects, ${OBJS0[$N]} are index 0"
4208         done
4209         unlinkmany $DIR/$tdir/t- 1000
4210
4211         NLAST=0
4212         for N in $(seq 1 $((OSTCOUNT - 1))); do
4213                 [[ ${OBJS[$N]} -lt $((${OBJS[$NLAST]} - 20)) ]] &&
4214                         error "OST $N has less objects vs OST $NLAST" \
4215                               " (${OBJS[$N]} < ${OBJS[$NLAST]}"
4216                 [[ ${OBJS[$N]} -gt $((${OBJS[$NLAST]} + 20)) ]] &&
4217                         error "OST $N has less objects vs OST $NLAST" \
4218                               " (${OBJS[$N]} < ${OBJS[$NLAST]}"
4219
4220                 [[ ${OBJS0[$N]} -lt $((${OBJS0[$NLAST]} - 20)) ]] &&
4221                         error "OST $N has less #0 objects vs OST $NLAST" \
4222                               " (${OBJS0[$N]} < ${OBJS0[$NLAST]}"
4223                 [[ ${OBJS0[$N]} -gt $((${OBJS0[$NLAST]} + 20)) ]] &&
4224                         error "OST $N has less #0 objects vs OST $NLAST" \
4225                               " (${OBJS0[$N]} < ${OBJS0[$NLAST]}"
4226                 NLAST=$N
4227         done
4228         rm -f $TMP/$tfile
4229 }
4230 run_test 51d "check object distribution"
4231
4232 test_51e() {
4233         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
4234                 skip "ldiskfs only test"
4235                 return
4236         fi
4237
4238         test_mkdir -c1 $DIR/$tdir
4239         test_mkdir -c1 $DIR/$tdir/d0
4240
4241         touch $DIR/$tdir/d0/foo
4242         createmany -l $DIR/$tdir/d0/foo $DIR/$tdir/d0/f- 65001 &&
4243                 error "file exceed 65000 nlink limit!"
4244         unlinkmany $DIR/$tdir/d0/f- 65001
4245         return 0
4246 }
4247 run_test 51e "check file nlink limit"
4248
4249 test_51f() {
4250         test_mkdir $DIR/$tdir
4251
4252         local max=100000
4253         local ulimit_old=$(ulimit -n)
4254         local spare=20 # number of spare fd's for scripts/libraries, etc.
4255         local mdt=$(lfs getstripe -M $DIR/$tdir)
4256         local numfree=$(lfs df -i $DIR/$tdir | awk '/MDT:'$mdt'/ { print $4 }')
4257
4258         echo "MDT$mdt numfree=$numfree, max=$max"
4259         [[ $numfree -gt $max ]] && numfree=$max || numfree=$((numfree * 7 / 8))
4260         if [ $((numfree + spare)) -gt $ulimit_old ]; then
4261                 while ! ulimit -n $((numfree + spare)); do
4262                         numfree=$((numfree * 3 / 4))
4263                 done
4264                 echo "changed ulimit from $ulimit_old to $((numfree + spare))"
4265         else
4266                 echo "left ulimit at $ulimit_old"
4267         fi
4268
4269         createmany -o -k -t 120 $DIR/$tdir/f $numfree ||
4270                 error "create+open $numfree files in $DIR/$tdir failed"
4271         ulimit -n $ulimit_old
4272
4273         # if createmany exits at 120s there will be fewer than $numfree files
4274         unlinkmany $DIR/$tdir/f $numfree || true
4275 }
4276 run_test 51f "check many open files limit"
4277
4278 test_52a() {
4279         [ -f $DIR/$tdir/foo ] && chattr -a $DIR/$tdir/foo
4280         test_mkdir $DIR/$tdir
4281         touch $DIR/$tdir/foo
4282         chattr +a $DIR/$tdir/foo || error "chattr +a failed"
4283         echo bar >> $DIR/$tdir/foo || error "append bar failed"
4284         cp /etc/hosts $DIR/$tdir/foo && error "cp worked"
4285         rm -f $DIR/$tdir/foo 2>/dev/null && error "rm worked"
4286         link $DIR/$tdir/foo $DIR/$tdir/foo_link 2>/dev/null &&
4287                                         error "link worked"
4288         echo foo >> $DIR/$tdir/foo || error "append foo failed"
4289         mrename $DIR/$tdir/foo $DIR/$tdir/foo_ren && error "rename worked"
4290         lsattr $DIR/$tdir/foo | egrep -q "^-+a[-e]+ $DIR/$tdir/foo" ||
4291                                                      error "lsattr"
4292         chattr -a $DIR/$tdir/foo || error "chattr -a failed"
4293         cp -r $DIR/$tdir $TMP/
4294         rm -fr $DIR/$tdir $TMP/$tdir || error "cleanup rm failed"
4295 }
4296 run_test 52a "append-only flag test (should return errors)"
4297
4298 test_52b() {
4299         [ -f $DIR/$tdir/foo ] && chattr -i $DIR/$tdir/foo
4300         test_mkdir $DIR/$tdir
4301         touch $DIR/$tdir/foo
4302         chattr +i $DIR/$tdir/foo || error "chattr +i failed"
4303         cat test > $DIR/$tdir/foo && error "cat test worked"
4304         cp /etc/hosts $DIR/$tdir/foo && error "cp worked"
4305         rm -f $DIR/$tdir/foo 2>/dev/null && error "rm worked"
4306         link $DIR/$tdir/foo $DIR/$tdir/foo_link 2>/dev/null &&
4307                                         error "link worked"
4308         echo foo >> $DIR/$tdir/foo && error "echo worked"
4309         mrename $DIR/$tdir/foo $DIR/$tdir/foo_ren && error "rename worked"
4310         [ -f $DIR/$tdir/foo ] || error "$tdir/foo is not a file"
4311         [ -f $DIR/$tdir/foo_ren ] && error "$tdir/foo_ren is not a file"
4312         lsattr $DIR/$tdir/foo | egrep -q "^-+i[-e]+ $DIR/$tdir/foo" ||
4313                                                         error "lsattr"
4314         chattr -i $DIR/$tdir/foo || error "chattr failed"
4315
4316         rm -fr $DIR/$tdir || error "unable to remove $DIR/$tdir"
4317 }
4318 run_test 52b "immutable flag test (should return errors) ======="
4319
4320 test_53() {
4321         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4322         remote_mds_nodsh && skip "remote MDS with nodsh" && return
4323         remote_ost_nodsh && skip "remote OST with nodsh" && return
4324
4325         local param
4326         local param_seq
4327         local ostname
4328         local mds_last
4329         local mds_last_seq
4330         local ost_last
4331         local ost_last_seq
4332         local ost_last_id
4333         local ostnum
4334         local node
4335         local found=false
4336         local support_last_seq=true
4337
4338         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.60) ]] ||
4339                 support_last_seq=false
4340
4341         # only test MDT0000
4342         local mdtosc=$(get_mdtosc_proc_path $SINGLEMDS)
4343         local value
4344         for value in $(do_facet $SINGLEMDS \
4345                        $LCTL get_param osc.$mdtosc.prealloc_last_id) ; do
4346                 param=$(echo ${value[0]} | cut -d "=" -f1)
4347                 ostname=$(echo $param | cut -d "." -f2 | cut -d - -f 1-2)
4348
4349                 if $support_last_seq; then
4350                         param_seq=$(echo $param |
4351                                 sed -e s/prealloc_last_id/prealloc_last_seq/g)
4352                         mds_last_seq=$(do_facet $SINGLEMDS \
4353                                        $LCTL get_param -n $param_seq)
4354                 fi
4355                 mds_last=$(do_facet $SINGLEMDS $LCTL get_param -n $param)
4356
4357                 ostnum=$(index_from_ostuuid ${ostname}_UUID)
4358                 node=$(facet_active_host ost$((ostnum+1)))
4359                 param="obdfilter.$ostname.last_id"
4360                 for ost_last in $(do_node $node $LCTL get_param -n $param) ; do
4361                         echo "$ostname.last_id=$ost_last; MDS.last_id=$mds_last"
4362                         ost_last_id=$ost_last
4363
4364                         if $support_last_seq; then
4365                                 ost_last_id=$(echo $ost_last |
4366                                               awk -F':' '{print $2}' |
4367                                               sed -e "s/^0x//g")
4368                                 ost_last_seq=$(echo $ost_last |
4369                                                awk -F':' '{print $1}')
4370                                 [[ $ost_last_seq = $mds_last_seq ]] || continue
4371                         fi
4372
4373                         if [[ $ost_last_id != $mds_last ]]; then
4374                                 error "$ost_last_id != $mds_last"
4375                         else
4376                                 found=true
4377                                 break
4378                         fi
4379                 done
4380         done
4381         $found || error "can not match last_seq/last_id for $mdtosc"
4382         return 0
4383 }
4384 run_test 53 "verify that MDS and OSTs agree on pre-creation ===="
4385
4386 test_54a() {
4387         perl -MSocket -e ';' || { skip "no Socket perl module installed" && return; }
4388
4389         $SOCKETSERVER $DIR/socket ||
4390                 error "$SOCKETSERVER $DIR/socket failed: $?"
4391         $SOCKETCLIENT $DIR/socket ||
4392                 error "$SOCKETCLIENT $DIR/socket failed: $?"
4393         $MUNLINK $DIR/socket || error "$MUNLINK $DIR/socket failed: $?"
4394 }
4395 run_test 54a "unix domain socket test =========================="
4396
4397 test_54b() {
4398         f="$DIR/f54b"
4399         mknod $f c 1 3
4400         chmod 0666 $f
4401         dd if=/dev/zero of=$f bs=$(page_size) count=1
4402 }
4403 run_test 54b "char device works in lustre ======================"
4404
4405 find_loop_dev() {
4406         [ -b /dev/loop/0 ] && LOOPBASE=/dev/loop/
4407         [ -b /dev/loop0 ] && LOOPBASE=/dev/loop
4408         [ -z "$LOOPBASE" ] && echo "/dev/loop/0 and /dev/loop0 gone?" && return
4409
4410         for i in $(seq 3 7); do
4411                 losetup $LOOPBASE$i > /dev/null 2>&1 && continue
4412                 LOOPDEV=$LOOPBASE$i
4413                 LOOPNUM=$i
4414                 break
4415         done
4416 }
4417
4418 cleanup_54c() {
4419         local rc=0
4420         loopdev="$DIR/loop54c"
4421
4422         trap 0
4423         $UMOUNT $DIR/$tdir || rc=$?
4424         losetup -d $loopdev || true
4425         losetup -d $LOOPDEV || true
4426         rm -rf $loopdev $DIR/$tfile $DIR/$tdir
4427         return $rc
4428 }
4429
4430 test_54c() {
4431         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4432         loopdev="$DIR/loop54c"
4433
4434         find_loop_dev
4435         [ -z "$LOOPNUM" ] && echo "couldn't find empty loop device" && return
4436         trap cleanup_54c EXIT
4437         mknod $loopdev b 7 $LOOPNUM
4438         echo "make a loop file system with $DIR/$tfile on $loopdev ($LOOPNUM)."
4439         dd if=/dev/zero of=$DIR/$tfile bs=$(get_page_size client) seek=1024 count=1 > /dev/null
4440         losetup $loopdev $DIR/$tfile ||
4441                 error "can't set up $loopdev for $DIR/$tfile"
4442         mkfs.ext2 $loopdev || error "mke2fs on $loopdev"
4443         test_mkdir $DIR/$tdir
4444         mount -t ext2 $loopdev $DIR/$tdir ||
4445                 error "error mounting $loopdev on $DIR/$tdir"
4446         dd if=/dev/zero of=$DIR/$tdir/tmp bs=$(get_page_size client) count=30 ||
4447                 error "dd write"
4448         df $DIR/$tdir
4449         dd if=$DIR/$tdir/tmp of=/dev/zero bs=$(get_page_size client) count=30 ||
4450                 error "dd read"
4451         cleanup_54c
4452 }
4453 run_test 54c "block device works in lustre ====================="
4454
4455 test_54d() {
4456         f="$DIR/f54d"
4457         string="aaaaaa"
4458         mknod $f p
4459         [ "$string" = $(echo $string > $f | cat $f) ] || error "$f != $string"
4460 }
4461 run_test 54d "fifo device works in lustre ======================"
4462
4463 test_54e() {
4464         f="$DIR/f54e"
4465         string="aaaaaa"
4466         cp -aL /dev/console $f
4467         echo $string > $f || error "echo $string to $f failed"
4468 }
4469 run_test 54e "console/tty device works in lustre ======================"
4470
4471 #The test_55 used to be iopen test and it was removed by bz#24037.
4472 #run_test 55 "check iopen_connect_dentry() ======================"
4473
4474 test_56a() {    # was test_56
4475         rm -rf $DIR/$tdir
4476         $SETSTRIPE -d $DIR
4477         test_mkdir -p $DIR/$tdir/dir
4478         NUMFILES=3
4479         NUMFILESx2=$(($NUMFILES * 2))
4480         for i in $(seq 1 $NUMFILES); do
4481                 touch $DIR/$tdir/file$i
4482                 touch $DIR/$tdir/dir/file$i
4483         done
4484
4485         # test lfs getstripe with --recursive
4486         FILENUM=$($GETSTRIPE --recursive $DIR/$tdir | grep -c obdidx)
4487         [[ $FILENUM -eq $NUMFILESx2 ]] ||
4488                 error "$GETSTRIPE --recursive: found $FILENUM, not $NUMFILESx2"
4489         FILENUM=$($GETSTRIPE $DIR/$tdir | grep -c obdidx)
4490         [[ $FILENUM -eq $NUMFILES ]] ||
4491                 error "$GETSTRIPE $DIR/$tdir: found $FILENUM, not $NUMFILES"
4492         echo "$GETSTRIPE --recursive passed."
4493
4494         # test lfs getstripe with file instead of dir
4495         FILENUM=$($GETSTRIPE $DIR/$tdir/file1 | grep -c obdidx)
4496         [[ $FILENUM -eq 1 ]] ||
4497                 error "$GETSTRIPE $DIR/$tdir/file1: found $FILENUM, not 1"
4498         echo "$GETSTRIPE file1 passed."
4499
4500         #test lfs getstripe with --verbose
4501         [[ $($GETSTRIPE --verbose $DIR/$tdir |
4502                 grep -c lmm_magic) -eq $NUMFILES ]] ||
4503                 error "$GETSTRIPE --verbose $DIR/$tdir: want $NUMFILES"
4504         [[ $($GETSTRIPE $DIR/$tdir | grep -c lmm_magic) -eq 0 ]] ||
4505                 error "$GETSTRIPE $DIR/$tdir: showed lmm_magic"
4506
4507         #test lfs getstripe with -v prints lmm_fid
4508         [[ $($GETSTRIPE -v $DIR/$tdir | grep -c lmm_fid) -eq $NUMFILES ]] ||
4509                 error "$GETSTRIPE -v $DIR/$tdir: want $NUMFILES lmm_fid: lines"
4510         [[ $($GETSTRIPE $DIR/$tdir | grep -c lmm_fid) -eq 0 ]] ||
4511                 error "$GETSTRIPE $DIR/$tdir: showed lmm_fid"
4512         echo "$GETSTRIPE --verbose passed."
4513
4514         #check for FID information
4515         local fid1=$($GETSTRIPE --fid $DIR/$tdir/file1)
4516         local fid2=$($GETSTRIPE --verbose $DIR/$tdir/file1 |
4517                        awk '/lmm_fid: / { print $2 }')
4518         local fid3=$($LFS path2fid $DIR/$tdir/file1)
4519         [ "$fid1" != "$fid2" ] &&
4520                 error "getstripe --fid $fid1 != getstripe --verbose $fid2"
4521         [ "$fid1" != "$fid3" ] &&
4522                 error "getstripe --fid $fid1 != lfs path2fid $fid3"
4523         echo "$GETSTRIPE --fid passed."
4524
4525         #test lfs getstripe with --obd
4526         $GETSTRIPE --obd wrong_uuid $DIR/$tdir 2>&1 |
4527                 grep -q "unknown obduuid" ||
4528                 error "$GETSTRIPE --obd wrong_uuid should return error message"
4529
4530         [[ $OSTCOUNT -lt 2 ]] &&
4531                 skip_env "skipping other $GETSTRIPE --obd test" && return
4532
4533         OSTIDX=1
4534         OBDUUID=$(ostuuid_from_index $OSTIDX)
4535         FILENUM=$($GETSTRIPE -ir $DIR/$tdir | grep "^$OSTIDX\$" | wc -l)
4536         FOUND=$($GETSTRIPE -r --obd $OBDUUID $DIR/$tdir | grep obdidx | wc -l)
4537         [[ $FOUND -eq $FILENUM ]] ||
4538                 error "$GETSTRIPE --obd wrong: found $FOUND, expected $FILENUM"
4539         [[ $($GETSTRIPE -r -v --obd $OBDUUID $DIR/$tdir |
4540                 sed '/^[         ]*'${OSTIDX}'[  ]/d' |
4541                 sed -n '/^[      ]*[0-9][0-9]*[  ]/p' | wc -l) -eq 0 ]] ||
4542                 error "$GETSTRIPE --obd: should not show file on other obd"
4543         echo "$GETSTRIPE --obd passed"
4544 }
4545 run_test 56a "check $GETSTRIPE"
4546
4547 test_56b() {
4548         test_mkdir $DIR/$tdir
4549         NUMDIRS=3
4550         for i in $(seq 1 $NUMDIRS); do
4551                 test_mkdir $DIR/$tdir/dir$i
4552         done
4553
4554         # test lfs getdirstripe default mode is non-recursion, which is
4555         # different from lfs getstripe
4556         dircnt=$($LFS getdirstripe $DIR/$tdir | grep -c lmv_stripe_count)
4557         [[ $dircnt -eq 1 ]] ||
4558                 error "$LFS getdirstripe: found $dircnt, not 1"
4559         dircnt=$($LFS getdirstripe --recursive $DIR/$tdir |
4560                 grep -c lmv_stripe_count)
4561         [[ $dircnt -eq $((NUMDIRS + 1)) ]] ||
4562                 error "$LFS getdirstripe --recursive: found $dircnt, \
4563                         not $((NUMDIRS + 1))"
4564 }
4565 run_test 56b "check $LFS getdirstripe"
4566
4567 test_56c() {
4568         local ost_idx=0
4569         local ost_name=$(ostname_from_index $ost_idx)
4570
4571         local old_status=$(ost_dev_status $ost_idx)
4572         [[ -z "$old_status" ]] ||
4573                 { skip_env "OST $ost_name is in $old_status status"; return 0; }
4574
4575         do_facet ost1 $LCTL set_param -n obdfilter.$ost_name.degraded=1
4576         sleep_maxage
4577
4578         local new_status=$(ost_dev_status $ost_idx)
4579         [[ "$new_status" = "D" ]] ||
4580                 error "OST $ost_name is in status of '$new_status', not 'D'"
4581
4582         do_facet ost1 $LCTL set_param -n obdfilter.$ost_name.degraded=0
4583         sleep_maxage
4584
4585         new_status=$(ost_dev_status $ost_idx)
4586         [[ -z "$new_status" ]] ||
4587                 error "OST $ost_name is in status of '$new_status', not ''"
4588 }
4589 run_test 56c "check 'lfs df' showing device status"
4590
4591 NUMFILES=3
4592 NUMDIRS=3
4593 setup_56() {
4594         local LOCAL_NUMFILES="$1"
4595         local LOCAL_NUMDIRS="$2"
4596         local MKDIR_PARAMS="$3"
4597         local DIR_STRIPE_PARAMS="$4"
4598
4599         if [ ! -d "$TDIR" ] ; then
4600                 test_mkdir -p $DIR_STRIPE_PARAMS $TDIR
4601                 [ "$MKDIR_PARAMS" ] && $SETSTRIPE $MKDIR_PARAMS $TDIR
4602                 for i in `seq 1 $LOCAL_NUMFILES` ; do
4603                         touch $TDIR/file$i
4604                 done
4605                 for i in `seq 1 $LOCAL_NUMDIRS` ; do
4606                         test_mkdir $DIR_STRIPE_PARAMS $TDIR/dir$i
4607                         for j in `seq 1 $LOCAL_NUMFILES` ; do
4608                                 touch $TDIR/dir$i/file$j
4609                         done
4610                 done
4611         fi
4612 }
4613
4614 setup_56_special() {
4615         LOCAL_NUMFILES=$1
4616         LOCAL_NUMDIRS=$2
4617         setup_56 $1 $2
4618         if [ ! -e "$TDIR/loop1b" ] ; then
4619                 for i in `seq 1 $LOCAL_NUMFILES` ; do
4620                         mknod $TDIR/loop${i}b b 7 $i
4621                         mknod $TDIR/null${i}c c 1 3
4622                         ln -s $TDIR/file1 $TDIR/link${i}l
4623                 done
4624                 for i in `seq 1 $LOCAL_NUMDIRS` ; do
4625                         mknod $TDIR/dir$i/loop${i}b b 7 $i
4626                         mknod $TDIR/dir$i/null${i}c c 1 3
4627                         ln -s $TDIR/dir$i/file1 $TDIR/dir$i/link${i}l
4628                 done
4629         fi
4630 }
4631
4632 test_56g() {
4633         $SETSTRIPE -d $DIR
4634
4635         TDIR=$DIR/${tdir}g
4636         setup_56 $NUMFILES $NUMDIRS
4637
4638         EXPECTED=$(($NUMDIRS + 2))
4639         # test lfs find with -name
4640         for i in $(seq 1 $NUMFILES) ; do
4641                 NUMS=$($LFIND -name "*$i" $TDIR | wc -l)
4642                 [ $NUMS -eq $EXPECTED ] ||
4643                         error "lfs find -name \"*$i\" $TDIR wrong: "\
4644                               "found $NUMS, expected $EXPECTED"
4645         done
4646 }
4647 run_test 56g "check lfs find -name ============================="
4648
4649 test_56h() {
4650         $SETSTRIPE -d $DIR
4651
4652         TDIR=$DIR/${tdir}g
4653         setup_56 $NUMFILES $NUMDIRS
4654
4655         EXPECTED=$(((NUMDIRS + 1) * (NUMFILES - 1) + NUMFILES))
4656         # test lfs find with ! -name
4657         for i in $(seq 1 $NUMFILES) ; do
4658                 NUMS=$($LFIND ! -name "*$i" $TDIR | wc -l)
4659                 [ $NUMS -eq $EXPECTED ] ||
4660                         error "lfs find ! -name \"*$i\" $TDIR wrong: "\
4661                               "found $NUMS, expected $EXPECTED"
4662         done
4663 }
4664 run_test 56h "check lfs find ! -name"
4665
4666 test_56i() {
4667         tdir=${tdir}i
4668         test_mkdir $DIR/$tdir
4669         UUID=$(ostuuid_from_index 0 $DIR/$tdir)
4670         CMD="$LFIND -ost $UUID $DIR/$tdir"
4671         OUT=$($CMD)
4672         [ -z "$OUT" ] || error "'$CMD' returned directory '$OUT'"
4673 }
4674 run_test 56i "check 'lfs find -ost UUID' skips directories"
4675
4676 test_56j() {
4677         TDIR=$DIR/${tdir}g
4678         setup_56_special $NUMFILES $NUMDIRS
4679
4680         EXPECTED=$((NUMDIRS + 1))
4681         CMD="$LFIND -type d $TDIR"
4682         NUMS=$($CMD | wc -l)
4683         [ $NUMS -eq $EXPECTED ] ||
4684                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4685 }
4686 run_test 56j "check lfs find -type d ============================="
4687
4688 test_56k() {
4689         TDIR=$DIR/${tdir}g
4690         setup_56_special $NUMFILES $NUMDIRS
4691
4692         EXPECTED=$(((NUMDIRS + 1) * NUMFILES))
4693         CMD="$LFIND -type f $TDIR"
4694         NUMS=$($CMD | wc -l)
4695         [ $NUMS -eq $EXPECTED ] ||
4696                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4697 }
4698 run_test 56k "check lfs find -type f ============================="
4699
4700 test_56l() {
4701         TDIR=$DIR/${tdir}g
4702         setup_56_special $NUMFILES $NUMDIRS
4703
4704         EXPECTED=$((NUMDIRS + NUMFILES))
4705         CMD="$LFIND -type b $TDIR"
4706         NUMS=$($CMD | wc -l)
4707         [ $NUMS -eq $EXPECTED ] ||
4708                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4709 }
4710 run_test 56l "check lfs find -type b ============================="
4711
4712 test_56m() {
4713         TDIR=$DIR/${tdir}g
4714         setup_56_special $NUMFILES $NUMDIRS
4715
4716         EXPECTED=$((NUMDIRS + NUMFILES))
4717         CMD="$LFIND -type c $TDIR"
4718         NUMS=$($CMD | wc -l)
4719         [ $NUMS -eq $EXPECTED ] ||
4720                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4721 }
4722 run_test 56m "check lfs find -type c ============================="
4723
4724 test_56n() {
4725         TDIR=$DIR/${tdir}g
4726         setup_56_special $NUMFILES $NUMDIRS
4727
4728         EXPECTED=$((NUMDIRS + NUMFILES))
4729         CMD="$LFIND -type l $TDIR"
4730         NUMS=$($CMD | wc -l)
4731         [ $NUMS -eq $EXPECTED ] ||
4732                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4733 }
4734 run_test 56n "check lfs find -type l ============================="
4735
4736 test_56o() {
4737         TDIR=$DIR/${tdir}o
4738         setup_56 $NUMFILES $NUMDIRS
4739         utime $TDIR/file1 > /dev/null || error "utime (1)"
4740         utime $TDIR/file2 > /dev/null || error "utime (2)"
4741         utime $TDIR/dir1 > /dev/null || error "utime (3)"
4742         utime $TDIR/dir2 > /dev/null || error "utime (4)"
4743         utime $TDIR/dir1/file1 > /dev/null || error "utime (5)"
4744         dd if=/dev/zero count=1 >> $TDIR/dir1/file1 && sync
4745
4746         EXPECTED=4
4747         NUMS=`$LFIND -mtime +0 $TDIR | wc -l`
4748         [ $NUMS -eq $EXPECTED ] || \
4749                 error "lfs find -mtime +0 $TDIR wrong: found $NUMS, expected $EXPECTED"
4750
4751         EXPECTED=12
4752         CMD="$LFIND -mtime 0 $TDIR"
4753         NUMS=$($CMD | wc -l)
4754         [ $NUMS -eq $EXPECTED ] ||
4755                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4756 }
4757 run_test 56o "check lfs find -mtime for old files =========================="
4758
4759 test_56p() {
4760         [ $RUNAS_ID -eq $UID ] &&
4761                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
4762
4763         TDIR=$DIR/${tdir}p
4764         setup_56 $NUMFILES $NUMDIRS
4765
4766         chown $RUNAS_ID $TDIR/file* || error "chown $DIR/${tdir}g/file$i failed"
4767         EXPECTED=$NUMFILES
4768         CMD="$LFIND -uid $RUNAS_ID $TDIR"
4769         NUMS=$($CMD | wc -l)
4770         [ $NUMS -eq $EXPECTED ] || \
4771                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4772
4773         EXPECTED=$(((NUMFILES + 1) * NUMDIRS + 1))
4774         CMD="$LFIND ! -uid $RUNAS_ID $TDIR"
4775         NUMS=$($CMD | wc -l)
4776         [ $NUMS -eq $EXPECTED ] || \
4777                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4778 }
4779 run_test 56p "check lfs find -uid and ! -uid ==============================="
4780
4781 test_56q() {
4782         [ $RUNAS_ID -eq $UID ] &&
4783                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
4784
4785         TDIR=$DIR/${tdir}q
4786         setup_56 $NUMFILES $NUMDIRS
4787
4788         chgrp $RUNAS_GID $TDIR/file* || error "chown $TDIR/file$i failed"
4789
4790         EXPECTED=$NUMFILES
4791         CMD="$LFIND -gid $RUNAS_GID $TDIR"
4792         NUMS=$($CMD | wc -l)
4793         [ $NUMS -eq $EXPECTED ] ||
4794                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4795
4796         EXPECTED=$(( ($NUMFILES+1) * $NUMDIRS + 1))
4797         CMD="$LFIND ! -gid $RUNAS_GID $TDIR"
4798         NUMS=$($CMD | wc -l)
4799         [ $NUMS -eq $EXPECTED ] ||
4800                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4801 }
4802 run_test 56q "check lfs find -gid and ! -gid ==============================="
4803
4804 test_56r() {
4805         TDIR=$DIR/${tdir}r
4806         setup_56 $NUMFILES $NUMDIRS
4807
4808         EXPECTED=12
4809         CMD="$LFIND -size 0 -type f $TDIR"
4810         NUMS=$($CMD | wc -l)
4811         [ $NUMS -eq $EXPECTED ] ||
4812                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4813         EXPECTED=0
4814         CMD="$LFIND ! -size 0 -type f $TDIR"
4815         NUMS=$($CMD | wc -l)
4816         [ $NUMS -eq $EXPECTED ] ||
4817                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4818         echo "test" > $TDIR/$tfile
4819         echo "test2" > $TDIR/$tfile.2 && sync
4820         EXPECTED=1
4821         CMD="$LFIND -size 5 -type f $TDIR"
4822         NUMS=$($CMD | wc -l)
4823         [ $NUMS -eq $EXPECTED ] ||
4824                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4825         EXPECTED=1
4826         CMD="$LFIND -size +5 -type f $TDIR"
4827         NUMS=$($CMD | wc -l)
4828         [ $NUMS -eq $EXPECTED ] ||
4829                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4830         EXPECTED=2
4831         CMD="$LFIND -size +0 -type f $TDIR"
4832         NUMS=$($CMD | wc -l)
4833         [ $NUMS -eq $EXPECTED ] ||
4834                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4835         EXPECTED=2
4836         CMD="$LFIND ! -size -5 -type f $TDIR"
4837         NUMS=$($CMD | wc -l)
4838         [ $NUMS -eq $EXPECTED ] ||
4839                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4840         EXPECTED=12
4841         CMD="$LFIND -size -5 -type f $TDIR"
4842         NUMS=$($CMD | wc -l)
4843         [ $NUMS -eq $EXPECTED ] ||
4844                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4845 }
4846 run_test 56r "check lfs find -size works =========================="
4847
4848 test_56s() { # LU-611
4849         TDIR=$DIR/${tdir}s
4850
4851         #LU-9369
4852         setup_56 0 $NUMDIRS
4853         for i in $(seq 1 $NUMDIRS); do
4854                 $SETSTRIPE -c $((OSTCOUNT + 1)) $TDIR/dir$i/$tfile
4855         done
4856         EXPECTED=$NUMDIRS
4857         CMD="$LFIND -c $OSTCOUNT $TDIR"
4858         NUMS=$($CMD | wc -l)
4859         [ $NUMS -eq $EXPECTED ] || {
4860                 $GETSTRIPE -R $TDIR
4861                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4862         }
4863         rm -rf $TDIR
4864
4865         setup_56 $NUMFILES $NUMDIRS "-c $OSTCOUNT"
4866         if [[ $OSTCOUNT -gt 1 ]]; then
4867                 $SETSTRIPE -c 1 $TDIR/$tfile.{0,1,2,3}
4868                 ONESTRIPE=4
4869                 EXTRA=4
4870         else
4871                 ONESTRIPE=$(((NUMDIRS + 1) * NUMFILES))
4872                 EXTRA=0
4873         fi
4874
4875         EXPECTED=$(((NUMDIRS + 1) * NUMFILES))
4876         CMD="$LFIND -stripe-count $OSTCOUNT -type f $TDIR"
4877         NUMS=$($CMD | wc -l)
4878         [ $NUMS -eq $EXPECTED ] || {
4879                 $GETSTRIPE -R $TDIR
4880                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4881         }
4882
4883         EXPECTED=$(((NUMDIRS + 1) * NUMFILES + EXTRA))
4884         CMD="$LFIND -stripe-count +0 -type f $TDIR"
4885         NUMS=$($CMD | wc -l)
4886         [ $NUMS -eq $EXPECTED ] || {
4887                 $GETSTRIPE -R $TDIR
4888                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4889         }
4890
4891         EXPECTED=$ONESTRIPE
4892         CMD="$LFIND -stripe-count 1 -type f $TDIR"
4893         NUMS=$($CMD | wc -l)
4894         [ $NUMS -eq $EXPECTED ] || {
4895                 $GETSTRIPE -R $TDIR
4896                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4897         }
4898
4899         CMD="$LFIND -stripe-count -2 -type f $TDIR"
4900         NUMS=$($CMD | wc -l)
4901         [ $NUMS -eq $EXPECTED ] || {
4902                 $GETSTRIPE -R $TDIR
4903                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4904         }
4905
4906         EXPECTED=0
4907         CMD="$LFIND -stripe-count $((OSTCOUNT + 1)) -type f $TDIR"
4908         NUMS=$($CMD | wc -l)
4909         [ $NUMS -eq $EXPECTED ] || {
4910                 $GETSTRIPE -R $TDIR
4911                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4912         }
4913 }
4914 run_test 56s "check lfs find -stripe-count works"
4915
4916 test_56t() { # LU-611
4917         TDIR=$DIR/${tdir}t
4918
4919         #LU-9369
4920         setup_56 0 $NUMDIRS
4921         for i in $(seq 1 $NUMDIRS); do
4922                 $SETSTRIPE -S 4M $TDIR/dir$i/$tfile
4923         done
4924         EXPECTED=$NUMDIRS
4925         CMD="$LFIND -S 4M $TDIR"
4926         NUMS=$($CMD | wc -l)
4927         [ $NUMS -eq $EXPECTED ] || {
4928                 $GETSTRIPE -R $TDIR
4929                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4930         }
4931         rm -rf $TDIR
4932
4933         setup_56 $NUMFILES $NUMDIRS "--stripe-size 512k"
4934
4935         $SETSTRIPE -S 256k $TDIR/$tfile.{0,1,2,3}
4936
4937         EXPECTED=$(((NUMDIRS + 1) * NUMFILES))
4938         CMD="$LFIND -stripe-size 512k -type f $TDIR"
4939         NUMS=$($CMD | wc -l)
4940         [ $NUMS -eq $EXPECTED ] ||
4941                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4942
4943         CMD="$LFIND -stripe-size +320k -type f $TDIR"
4944         NUMS=$($CMD | wc -l)
4945         [ $NUMS -eq $EXPECTED ] ||
4946                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4947
4948         EXPECTED=$(((NUMDIRS + 1) * NUMFILES + 4))
4949         CMD="$LFIND -stripe-size +200k -type f $TDIR"
4950         NUMS=$($CMD | wc -l)
4951         [ $NUMS -eq $EXPECTED ] ||
4952                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4953
4954         CMD="$LFIND -stripe-size -640k -type f $TDIR"
4955         NUMS=$($CMD | wc -l)
4956         [ $NUMS -eq $EXPECTED ] ||
4957                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4958
4959         EXPECTED=4
4960         CMD="$LFIND -stripe-size 256k -type f $TDIR"
4961         NUMS=$($CMD | wc -l)
4962         [ $NUMS -eq $EXPECTED ] ||
4963                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4964
4965         CMD="$LFIND -stripe-size -320k -type f $TDIR"
4966         NUMS=$($CMD | wc -l)
4967         [ $NUMS -eq $EXPECTED ] ||
4968                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4969
4970         EXPECTED=0
4971         CMD="$LFIND -stripe-size 1024k -type f $TDIR"
4972         NUMS=$($CMD | wc -l)
4973         [ $NUMS -eq $EXPECTED ] ||
4974                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4975 }
4976 run_test 56t "check lfs find -stripe-size works"
4977
4978 test_56u() { # LU-611
4979         TDIR=$DIR/${tdir}u
4980         setup_56 $NUMFILES $NUMDIRS "-i 0"
4981
4982         if [[ $OSTCOUNT -gt 1 ]]; then
4983                 $SETSTRIPE -i 1 $TDIR/$tfile.{0,1,2,3}
4984                 ONESTRIPE=4
4985         else
4986                 ONESTRIPE=0
4987         fi
4988
4989         EXPECTED=$(((NUMDIRS + 1) * NUMFILES))
4990         CMD="$LFIND -stripe-index 0 -type f $TDIR"
4991         NUMS=$($CMD | wc -l)
4992         [ $NUMS -eq $EXPECTED ] ||
4993                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4994
4995         EXPECTED=$ONESTRIPE
4996         CMD="$LFIND -stripe-index 1 -type f $TDIR"
4997         NUMS=$($CMD | wc -l)
4998         [ $NUMS -eq $EXPECTED ] ||
4999                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
5000
5001         CMD="$LFIND ! -stripe-index 0 -type f $TDIR"
5002         NUMS=$($CMD | wc -l)
5003         [ $NUMS -eq $EXPECTED ] ||
5004                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
5005
5006         EXPECTED=0
5007         # This should produce an error and not return any files
5008         CMD="$LFIND -stripe-index $OSTCOUNT -type f $TDIR"
5009         NUMS=$($CMD 2>/dev/null | wc -l)
5010         [ $NUMS -eq $EXPECTED ] ||
5011                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
5012
5013         if [[ $OSTCOUNT -gt 1 ]]; then
5014                 EXPECTED=$(((NUMDIRS + 1) * NUMFILES + ONESTRIPE))
5015                 CMD="$LFIND -stripe-index 0,1 -type f $TDIR"
5016                 NUMS=$($CMD | wc -l)
5017                 [ $NUMS -eq $EXPECTED ] ||
5018                         error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
5019         fi
5020 }
5021 run_test 56u "check lfs find -stripe-index works"
5022
5023 test_56v() {
5024     local MDT_IDX=0
5025
5026     TDIR=$DIR/${tdir}v
5027     rm -rf $TDIR
5028     setup_56 $NUMFILES $NUMDIRS
5029
5030     UUID=$(mdtuuid_from_index $MDT_IDX $TDIR)
5031     [ -z "$UUID" ] && error "mdtuuid_from_index cannot find MDT index $MDT_IDX"
5032
5033     for file in $($LFIND -mdt $UUID $TDIR); do
5034         file_mdt_idx=$($GETSTRIPE -M $file)
5035         [ $file_mdt_idx -eq $MDT_IDX ] ||
5036             error "'lfind -mdt $UUID' != 'getstripe -M' ($file_mdt_idx)"
5037     done
5038 }
5039 run_test 56v "check 'lfs find -mdt match with lfs getstripe -M' ======="
5040
5041 test_56w() {
5042         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
5043         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5044         TDIR=$DIR/${tdir}w
5045
5046         rm -rf $TDIR || error "remove $TDIR failed"
5047         setup_56 $NUMFILES $NUMDIRS "-c $OSTCOUNT" "-c1"
5048
5049         local stripe_size
5050         stripe_size=$($GETSTRIPE -S -d $TDIR) ||
5051                 error "$GETSTRIPE -S -d $TDIR failed"
5052         stripe_size=${stripe_size%% *}
5053
5054         local file_size=$((stripe_size * OSTCOUNT))
5055         local file_num=$((NUMDIRS * NUMFILES + NUMFILES))
5056         local required_space=$((file_num * file_size))
5057
5058         local free_space=$($LCTL get_param -n lov.$FSNAME-clilov-*.kbytesavail |
5059                            head -n1)
5060         [[ $free_space -le $((required_space / 1024)) ]] &&
5061                 skip_env "need $required_space bytes, have $free_space KB" &&
5062                 return
5063
5064         local dd_bs=65536
5065         local dd_count=$((file_size / dd_bs))
5066
5067         # write data into the files
5068         local i
5069         local j
5070         local file
5071         for i in $(seq 1 $NUMFILES); do
5072                 file=$TDIR/file$i
5073                 yes | dd bs=$dd_bs count=$dd_count of=$file &>/dev/null ||
5074                         error "write data into $file failed"
5075         done
5076         for i in $(seq 1 $NUMDIRS); do
5077                 for j in $(seq 1 $NUMFILES); do
5078                         file=$TDIR/dir$i/file$j
5079                         yes|dd bs=$dd_bs count=$dd_count of=$file &>/dev/null ||
5080                                 error "write data into $file failed"
5081                 done
5082         done
5083
5084         # $LFS_MIGRATE will fail if hard link migration is unsupported
5085         if [[ $(lustre_version_code mds1) -gt $(version_code 2.5.55) ]]; then
5086                 createmany -l$TDIR/dir1/file1 $TDIR/dir1/link 200 ||
5087                         error "creating links to $TDIR/dir1/file1 failed"
5088         fi
5089
5090         local expected=-1
5091         [[ $OSTCOUNT -gt 1 ]] && expected=$((OSTCOUNT - 1))
5092
5093         # lfs_migrate file
5094         local cmd="$LFS_MIGRATE -y -c $expected $TDIR/file1"
5095         echo "$cmd"
5096         eval $cmd || error "$cmd failed"
5097
5098         check_stripe_count $TDIR/file1 $expected
5099
5100         if [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.90) ];
5101         then
5102                 # lfs_migrate file onto OST 0 if it is on OST 1, or onto
5103                 # OST 1 if it is on OST 0. This file is small enough to
5104                 # be on only one stripe.
5105                 file=$TDIR/migr_1_ost
5106                 dd bs=$dd_bs count=1 if=/dev/urandom of=$file >/dev/null 2>&1 ||
5107                         error "write data into $file failed"
5108                 local obdidx=$($LFS getstripe -i $file)
5109                 local oldmd5=$(md5sum $file)
5110                 local newobdidx=0
5111                 [[ $obdidx -eq 0 ]] && newobdidx=1
5112                 cmd="$LFS migrate -i $newobdidx $file"
5113                 echo $cmd
5114                 eval $cmd || error "$cmd failed"
5115                 local realobdix=$($LFS getstripe -i $file)
5116                 local newmd5=$(md5sum $file)
5117                 [[ $newobdidx -ne $realobdix ]] &&
5118                         error "new OST is different (was=$obdidx, wanted=$newobdidx, got=$realobdix)"
5119                 [[ "$oldmd5" != "$newmd5" ]] &&
5120                         error "md5sum differ: $oldmd5, $newmd5"
5121         fi
5122
5123     # lfs_migrate dir
5124     cmd="$LFS_MIGRATE -y -c $expected $TDIR/dir1"
5125     echo "$cmd"
5126     eval $cmd || error "$cmd failed"
5127
5128     for j in $(seq 1 $NUMFILES); do
5129         check_stripe_count $TDIR/dir1/file$j $expected
5130     done
5131
5132     # lfs_migrate works with lfs find
5133     cmd="$LFIND -stripe_count $OSTCOUNT -type f $TDIR |
5134          $LFS_MIGRATE -y -c $expected"
5135     echo "$cmd"
5136     eval $cmd || error "$cmd failed"
5137
5138     for i in $(seq 2 $NUMFILES); do
5139         check_stripe_count $TDIR/file$i $expected
5140     done
5141     for i in $(seq 2 $NUMDIRS); do
5142         for j in $(seq 1 $NUMFILES); do
5143             check_stripe_count $TDIR/dir$i/file$j $expected
5144         done
5145     done
5146 }
5147 run_test 56w "check lfs_migrate -c stripe_count works"
5148
5149 test_56x() {
5150         check_swap_layouts_support && return 0
5151         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
5152
5153         local dir0=$DIR/$tdir/$testnum
5154         test_mkdir -p $dir0
5155
5156         local ref1=/etc/passwd
5157         local file1=$dir0/file1
5158
5159         $SETSTRIPE -c 2 $file1
5160         cp $ref1 $file1
5161         $LFS migrate -c 1 $file1 || error "migrate failed rc = $?"
5162         stripe=$($GETSTRIPE -c $file1)
5163         [[ $stripe == 1 ]] || error "stripe of $file1 is $stripe != 1"
5164         cmp $file1 $ref1 || error "content mismatch $file1 differs from $ref1"
5165
5166         # clean up
5167         rm -f $file1
5168 }
5169 run_test 56x "lfs migration support"
5170
5171 test_56xa() {
5172         check_swap_layouts_support && return 0
5173         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
5174
5175         local dir0=$DIR/$tdir/$testnum
5176         test_mkdir -p $dir0
5177
5178         local ref1=/etc/passwd
5179         local file1=$dir0/file1
5180
5181         $SETSTRIPE -c 2 $file1
5182         cp $ref1 $file1
5183         $LFS migrate --block -c 1 $file1 || error "migrate failed rc = $?"
5184         local stripe=$($GETSTRIPE -c $file1)
5185         [[ $stripe == 1 ]] || error "stripe of $file1 is $stripe != 1"
5186         cmp $file1 $ref1 || error "content mismatch $file1 differs from $ref1"
5187
5188         # clean up
5189         rm -f $file1
5190 }
5191 run_test 56xa "lfs migration --block support"
5192
5193 test_56y() {
5194         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.53) ] &&
5195                 skip "No HSM $(lustre_build_version $SINGLEMDS) MDS < 2.4.53" &&
5196                 return
5197
5198         local res=""
5199         local dir0=$DIR/$tdir/$testnum
5200         test_mkdir -p $dir0
5201         local f1=$dir0/file1
5202         local f2=$dir0/file2
5203
5204         touch $f1 || error "creating std file $f1"
5205         $MULTIOP $f2 H2c || error "creating released file $f2"
5206
5207         # a directory can be raid0, so ask only for files
5208         res=$($LFIND $dir0 -L raid0 -type f | wc -l)
5209         [[ $res == 2 ]] || error "search raid0: found $res files != 2"
5210
5211         res=$($LFIND $dir0 \! -L raid0 -type f | wc -l)
5212         [[ $res == 0 ]] || error "search !raid0: found $res files != 0"
5213
5214         # only files can be released, so no need to force file search
5215         res=$($LFIND $dir0 -L released)
5216         [[ $res == $f2 ]] || error "search released: found $res != $f2"
5217
5218         res=$($LFIND $dir0 \! -L released)
5219         [[ $res == $f1 ]] || error "search !released: found $res != $f1"
5220
5221 }
5222 run_test 56y "lfs find -L raid0|released"
5223
5224 test_56z() { # LU-4824
5225         # This checks to make sure 'lfs find' continues after errors
5226         # There are two classes of errors that should be caught:
5227         # - If multiple paths are provided, all should be searched even if one
5228         #   errors out
5229         # - If errors are encountered during the search, it should not terminate
5230         #   early
5231         local i
5232         test_mkdir $DIR/$tdir
5233         for i in d{0..9}; do
5234                 test_mkdir $DIR/$tdir/$i
5235         done
5236         touch $DIR/$tdir/d{0..9}/$tfile
5237         $LFS find $DIR/non_existent_dir $DIR/$tdir &&
5238                 error "$LFS find did not return an error"
5239         # Make a directory unsearchable. This should NOT be the last entry in
5240         # directory order.  Arbitrarily pick the 6th entry
5241         chmod 700 $($LFS find $DIR/$tdir -type d | sed '6!d')
5242         local count=$($RUNAS $LFS find $DIR/non_existent $DIR/$tdir | wc -l)
5243         # The user should be able to see 10 directories and 9 files
5244         [ $count == 19 ] || error "$LFS find did not continue after error"
5245 }
5246 run_test 56z "lfs find should continue after an error"
5247
5248 test_56aa() { # LU-5937
5249         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
5250
5251         mkdir $DIR/$tdir
5252         $LFS setdirstripe -c$MDSCOUNT $DIR/$tdir/striped_dir
5253
5254         createmany -o $DIR/$tdir/striped_dir/${tfile}- 1024
5255         local dirs=$(lfs find --size +8k $DIR/$tdir/)
5256
5257         [ -n "$dirs" ] || error "lfs find --size wrong under striped dir"
5258 }
5259 run_test 56aa "lfs find --size under striped dir"
5260
5261 test_57a() {
5262         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5263         # note test will not do anything if MDS is not local
5264         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
5265                 skip "ldiskfs only test"
5266                 return
5267         fi
5268
5269         remote_mds_nodsh && skip "remote MDS with nodsh" && return
5270         local MNTDEV="osd*.*MDT*.mntdev"
5271         DEV=$(do_facet $SINGLEMDS lctl get_param -n $MNTDEV)
5272         [ -z "$DEV" ] && error "can't access $MNTDEV"
5273         for DEV in $(do_facet $SINGLEMDS lctl get_param -n $MNTDEV); do
5274                 do_facet $SINGLEMDS $DUMPE2FS -h $DEV > $TMP/t57a.dump ||
5275                         error "can't access $DEV"
5276                 DEVISIZE=$(awk '/Inode size:/ { print $3 }' $TMP/t57a.dump)
5277                 [[ $DEVISIZE -gt 128 ]] || error "inode size $DEVISIZE"
5278                 rm $TMP/t57a.dump
5279         done
5280 }
5281 run_test 57a "verify MDS filesystem created with large inodes =="
5282
5283 test_57b() {
5284         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5285         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
5286                 skip "ldiskfs only test"
5287                 return
5288         fi
5289
5290         remote_mds_nodsh && skip "remote MDS with nodsh" && return
5291         local dir=$DIR/$tdir
5292
5293         local FILECOUNT=100
5294         local FILE1=$dir/f1
5295         local FILEN=$dir/f$FILECOUNT
5296
5297         rm -rf $dir || error "removing $dir"
5298         test_mkdir -c1 $dir
5299         local mdtidx=$($LFS getstripe -M $dir)
5300         local mdtname=MDT$(printf %04x $mdtidx)
5301         local facet=mds$((mdtidx + 1))
5302
5303         echo "mcreating $FILECOUNT files"
5304         createmany -m $dir/f 1 $FILECOUNT || \
5305                 error "creating files in $dir"
5306
5307         # verify that files do not have EAs yet
5308         $GETSTRIPE $FILE1 2>&1 | grep -q "no stripe" || error "$FILE1 has an EA"
5309         $GETSTRIPE $FILEN 2>&1 | grep -q "no stripe" || error "$FILEN has an EA"
5310
5311         sync
5312         sleep 1
5313         df $dir  #make sure we get new statfs data
5314         local MDSFREE=$(do_facet $facet \
5315                 lctl get_param -n osd*.*$mdtname.kbytesfree)
5316         local MDCFREE=$(lctl get_param -n mdc.*$mdtname-mdc-*.kbytesfree)
5317         echo "opening files to create objects/EAs"
5318         local FILE
5319         for FILE in `seq -f $dir/f%g 1 $FILECOUNT`; do
5320                 $OPENFILE -f O_RDWR $FILE > /dev/null 2>&1 || error "opening $FILE"
5321         done
5322
5323         # verify that files have EAs now
5324         $GETSTRIPE $FILE1 | grep -q "obdidx" || error "$FILE1 missing EA"
5325         $GETSTRIPE $FILEN | grep -q "obdidx" || error "$FILEN missing EA"
5326
5327         sleep 1  #make sure we get new statfs data
5328         df $dir
5329         local MDSFREE2=$(do_facet $facet \
5330                 lctl get_param -n osd*.*$mdtname.kbytesfree)
5331         local MDCFREE2=$(lctl get_param -n mdc.*$mdtname-mdc-*.kbytesfree)
5332         if [[ $MDCFREE2 -lt $((MDCFREE - 16)) ]]; then
5333                 if [ "$MDSFREE" != "$MDSFREE2" ]; then
5334                         error "MDC before $MDCFREE != after $MDCFREE2"
5335                 else
5336                         echo "MDC before $MDCFREE != after $MDCFREE2"
5337                         echo "unable to confirm if MDS has large inodes"
5338                 fi
5339         fi
5340         rm -rf $dir
5341 }
5342 run_test 57b "default LOV EAs are stored inside large inodes ==="
5343
5344 test_58() {
5345         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5346         [ -z "$(which wiretest 2>/dev/null)" ] &&
5347                         skip_env "could not find wiretest" && return
5348         wiretest
5349 }
5350 run_test 58 "verify cross-platform wire constants =============="
5351
5352 test_59() {
5353         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5354         echo "touch 130 files"
5355         createmany -o $DIR/f59- 130
5356         echo "rm 130 files"
5357         unlinkmany $DIR/f59- 130
5358         sync
5359         # wait for commitment of removal
5360         wait_delete_completed
5361 }
5362 run_test 59 "verify cancellation of llog records async ========="
5363
5364 TEST60_HEAD="test_60 run $RANDOM"
5365 test_60a() {
5366         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5367         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
5368         do_facet mgs "! which run-llog.sh &> /dev/null" &&
5369                 do_facet mgs "! ls run-llog.sh &> /dev/null" &&
5370                         skip_env "missing subtest run-llog.sh" && return
5371
5372         log "$TEST60_HEAD - from kernel mode"
5373         do_facet mgs "$LCTL set_param debug=warning; $LCTL dk > /dev/null"
5374         do_facet mgs "sh run-llog.sh" || error "run-llog.sh failed"
5375         do_facet mgs $LCTL dk > $TMP/$tfile
5376
5377         # LU-6388: test llog_reader
5378         local llog_reader=$(do_facet mgs "which llog_reader 2> /dev/null")
5379         llog_reader=${llog_reader:-$LUSTRE/utils/llog_reader}
5380         [ -z $(do_facet mgs ls -d $llog_reader 2> /dev/null) ] &&
5381                         skip_env "missing llog_reader" && return
5382         local fstype=$(facet_fstype mgs)
5383         [ $fstype != ldiskfs -a $fstype != zfs ] &&
5384                 skip_env "Only for ldiskfs or zfs type mgs" && return
5385
5386         local mntpt=$(facet_mntpt mgs)
5387         local mgsdev=$(mgsdevname 1)
5388         local fid_list
5389         local fid
5390         local rec_list
5391         local rec
5392         local rec_type
5393         local obj_file
5394         local path
5395         local seq
5396         local oid
5397         local pass=true
5398
5399         #get fid and record list
5400         fid_list=($(awk '/9_sub.*record/ { print $NF }' /$TMP/$tfile |
5401                 tail -n 4))
5402         rec_list=($(awk '/9_sub.*record/ { print $((NF-3)) }' /$TMP/$tfile |
5403                 tail -n 4))
5404         #remount mgs as ldiskfs or zfs type
5405         stop mgs || error "stop mgs failed"
5406         mount_fstype mgs || error "remount mgs failed"
5407         for ((i = 0; i < ${#fid_list[@]}; i++)); do
5408                 fid=${fid_list[i]}
5409                 rec=${rec_list[i]}
5410                 seq=$(echo $fid | awk -F ':' '{ print $1 }' | sed -e "s/^0x//g")
5411                 oid=$(echo $fid | awk -F ':' '{ print $2 }' | sed -e "s/^0x//g")
5412                 oid=$((16#$oid))
5413
5414                 case $fstype in
5415                         ldiskfs )
5416                                 obj_file=$mntpt/O/$seq/d$((oid%32))/$oid ;;
5417                         zfs )
5418                                 obj_file=$mntpt/oi.$(($((16#$seq))&127))/$fid ;;
5419                 esac
5420                 echo "obj_file is $obj_file"
5421                 do_facet mgs $llog_reader $obj_file
5422
5423                 rec_type=$(do_facet mgs $llog_reader $obj_file | grep "type=" |
5424                         awk '{ print $3 }' | sed -e "s/^type=//g")
5425                 if [ $rec_type != $rec ]; then
5426                         echo "FAILED test_60a wrong record type $rec_type," \
5427                               "should be $rec"
5428                         pass=false
5429                         break
5430                 fi
5431
5432                 #check obj path if record type is LLOG_LOGID_MAGIC
5433                 if [ "$rec" == "1064553b" ]; then
5434                         path=$(do_facet mgs $llog_reader $obj_file |
5435                                 grep "path=" | awk '{ print $NF }' |
5436                                 sed -e "s/^path=//g")
5437                         if [ $obj_file != $mntpt/$path ]; then
5438                                 echo "FAILED test_60a wrong obj path" \
5439                                       "$montpt/$path, should be $obj_file"
5440                                 pass=false
5441                                 break
5442                         fi
5443                 fi
5444         done
5445         rm -f $TMP/$tfile
5446         #restart mgs before "error", otherwise it will block the next test
5447         stop mgs || error "stop mgs failed"
5448         start mgs $(mgsdevname) $MGS_MOUNT_OPTS || error "start mgs failed"
5449         $pass || error "test failed, see FAILED test_60a messages for specifics"
5450 }
5451 run_test 60a "llog_test run from kernel module and test llog_reader"
5452
5453 test_60aa() {
5454         # test old logid format
5455         if [ $(lustre_version_code mgs) -le $(version_code 3.1.53) ]; then
5456                 do_facet mgs $LCTL dl | grep MGS
5457                 do_facet mgs "$LCTL --device %MGS llog_print \\\\\\\$$FSNAME-client" ||
5458                         error "old llog_print failed"
5459         fi
5460
5461         # test new logid format
5462         if [ $(lustre_version_code mgs) -ge $(version_code 2.9.53) ]; then
5463                 do_facet mgs "$LCTL --device MGS llog_print $FSNAME-client" ||
5464                         error "new llog_print failed"
5465         fi
5466 }
5467 run_test 60aa "llog_print works with FIDs and simple names"
5468
5469 test_60b() { # bug 6411
5470         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5471         dmesg > $DIR/$tfile
5472         LLOG_COUNT=$(dmesg | awk "/$TEST60_HEAD/ { marker = 1; from_marker = 0; }
5473                                 /llog.test/ {
5474                                         if (marker)
5475                                                 from_marker++
5476                                         from_begin++
5477                                 }
5478                                 END {
5479                                         if (marker)
5480                                                 print from_marker
5481                                         else
5482                                                 print from_begin
5483                                 }")
5484         [[ $LLOG_COUNT -gt 100 ]] &&
5485                 error "CDEBUG_LIMIT not limiting messages ($LLOG_COUNT)" || true
5486 }
5487 run_test 60b "limit repeated messages from CERROR/CWARN ========"
5488
5489 test_60c() {
5490         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5491         echo "create 5000 files"
5492         createmany -o $DIR/f60c- 5000
5493 #define OBD_FAIL_MDS_LLOG_CREATE_FAILED  0x137
5494         lctl set_param fail_loc=0x80000137
5495         unlinkmany $DIR/f60c- 5000
5496         lctl set_param fail_loc=0
5497 }
5498 run_test 60c "unlink file when mds full"
5499
5500 test_60d() {
5501         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5502         SAVEPRINTK=$(lctl get_param -n printk)
5503
5504         # verify "lctl mark" is even working"
5505         MESSAGE="test message ID $RANDOM $$"
5506         $LCTL mark "$MESSAGE" || error "$LCTL mark failed"
5507         dmesg | grep -q "$MESSAGE" || error "didn't find debug marker in log"
5508
5509         lctl set_param printk=0 || error "set lnet.printk failed"
5510         lctl get_param -n printk | grep emerg || error "lnet.printk dropped emerg"
5511         MESSAGE="new test message ID $RANDOM $$"
5512         # Assume here that libcfs_debug_mark_buffer() uses D_WARNING
5513         $LCTL mark "$MESSAGE" || error "$LCTL mark failed"
5514         dmesg | grep -q "$MESSAGE" && error "D_WARNING wasn't masked" || true
5515
5516         lctl set_param -n printk="$SAVEPRINTK"
5517 }
5518 run_test 60d "test printk console message masking"
5519
5520 test_60e() {
5521         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5522         remote_mds_nodsh && skip "remote MDS with nodsh" && return
5523         touch $DIR/$tfile
5524 #define OBD_FAIL_MDS_LLOG_CREATE_FAILED2  0x15b
5525         do_facet mds1 lctl set_param fail_loc=0x15b
5526         rm $DIR/$tfile
5527 }
5528 run_test 60e "no space while new llog is being created"
5529
5530 test_61() {
5531         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5532         f="$DIR/f61"
5533         dd if=/dev/zero of=$f bs=$(page_size) count=1 || error "dd $f failed"
5534         cancel_lru_locks osc
5535         $MULTIOP $f OSMWUc || error "$MULTIOP $f failed"
5536         sync
5537 }
5538 run_test 61 "mmap() writes don't make sync hang ================"
5539
5540 # bug 2330 - insufficient obd_match error checking causes LBUG
5541 test_62() {
5542         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5543         f="$DIR/f62"
5544         echo foo > $f
5545         cancel_lru_locks osc
5546         lctl set_param fail_loc=0x405
5547         cat $f && error "cat succeeded, expect -EIO"
5548         lctl set_param fail_loc=0
5549 }
5550 # This test is now irrelevant (as of bug 10718 inclusion), we no longer
5551 # match every page all of the time.
5552 #run_test 62 "verify obd_match failure doesn't LBUG (should -EIO)"
5553
5554 # bug 2319 - oig_wait() interrupted causes crash because of invalid waitq.
5555 # Though this test is irrelevant anymore, it helped to reveal some
5556 # other grant bugs (LU-4482), let's keep it.
5557 test_63a() {   # was test_63
5558         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5559         MAX_DIRTY_MB=`lctl get_param -n osc.*.max_dirty_mb | head -n 1`
5560         for i in `seq 10` ; do
5561                 dd if=/dev/zero of=$DIR/f63 bs=8k &
5562                 sleep 5
5563                 kill $!
5564                 sleep 1
5565         done
5566
5567         rm -f $DIR/f63 || true
5568 }
5569 run_test 63a "Verify oig_wait interruption does not crash ======="
5570
5571 # bug 2248 - async write errors didn't return to application on sync
5572 # bug 3677 - async write errors left page locked
5573 test_63b() {
5574         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5575         debugsave
5576         lctl set_param debug=-1
5577
5578         # ensure we have a grant to do async writes
5579         dd if=/dev/zero of=$DIR/$tfile bs=4k count=1
5580         rm $DIR/$tfile
5581
5582         sync    # sync lest earlier test intercept the fail_loc
5583
5584         #define OBD_FAIL_OSC_BRW_PREP_REQ        0x406
5585         lctl set_param fail_loc=0x80000406
5586         $MULTIOP $DIR/$tfile Owy && \
5587                 error "sync didn't return ENOMEM"
5588         sync; sleep 2; sync     # do a real sync this time to flush page
5589         lctl get_param -n llite.*.dump_page_cache | grep locked && \
5590                 error "locked page left in cache after async error" || true
5591         debugrestore
5592 }
5593 run_test 63b "async write errors should be returned to fsync ==="
5594
5595 test_64a () {
5596         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5597         df $DIR
5598         lctl get_param -n osc.*[oO][sS][cC][_-]*.cur* | grep "[0-9]"
5599 }
5600 run_test 64a "verify filter grant calculations (in kernel) ====="
5601
5602 test_64b () {
5603         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5604         sh oos.sh $MOUNT || error "oos.sh failed: $?"
5605 }
5606 run_test 64b "check out-of-space detection on client"
5607
5608 test_64c() {
5609         $LCTL set_param osc.*OST0000-osc-[^mM]*.cur_grant_bytes=0
5610 }
5611 run_test 64c "verify grant shrink"
5612
5613 # bug 1414 - set/get directories' stripe info
5614 test_65a() {
5615         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5616         test_mkdir $DIR/$tdir
5617         touch $DIR/$tdir/f1
5618         $LVERIFY $DIR/$tdir $DIR/$tdir/f1 || error "lverify failed"
5619 }
5620 run_test 65a "directory with no stripe info"
5621
5622 test_65b() {
5623         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5624         test_mkdir $DIR/$tdir
5625         local STRIPESIZE=$($GETSTRIPE -S $DIR/$tdir)
5626
5627         $SETSTRIPE -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
5628                                                 error "setstripe"
5629         touch $DIR/$tdir/f2
5630         $LVERIFY $DIR/$tdir $DIR/$tdir/f2 || error "lverify failed"
5631 }
5632 run_test 65b "directory setstripe -S stripe_size*2 -i 0 -c 1"
5633
5634 test_65c() {
5635         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5636         [ $OSTCOUNT -lt 2 ] && skip "need at least 2 OSTs" && return
5637         test_mkdir $DIR/$tdir
5638         local stripesize=$($GETSTRIPE -S $DIR/$tdir)
5639
5640         $LFS setstripe -S $((stripesize * 4)) -i 1 \
5641                 -c $((OSTCOUNT - 1)) $DIR/$tdir || error "setstripe"
5642         touch $DIR/$tdir/f3
5643         $LVERIFY $DIR/$tdir $DIR/$tdir/f3 || error "lverify failed"
5644 }
5645 run_test 65c "directory setstripe -S stripe_size*4 -i 1 -c $((OSTCOUNT-1))"
5646
5647 test_65d() {
5648         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5649         test_mkdir $DIR/$tdir
5650         local STRIPECOUNT=$($GETSTRIPE -c $DIR/$tdir)
5651         local STRIPESIZE=$($GETSTRIPE -S $DIR/$tdir)
5652
5653         if [[ $STRIPECOUNT -le 0 ]]; then
5654                 sc=1
5655         elif [[ $STRIPECOUNT -gt 2000 ]]; then
5656 #LOV_MAX_STRIPE_COUNT is 2000
5657                 [[ $OSTCOUNT -gt 2000 ]] && sc=2000 || sc=$(($OSTCOUNT - 1))
5658         else
5659                 sc=$(($STRIPECOUNT - 1))
5660         fi
5661         $SETSTRIPE -S $STRIPESIZE -c $sc $DIR/$tdir || error "setstripe"
5662         touch $DIR/$tdir/f4 $DIR/$tdir/f5
5663         $LVERIFY $DIR/$tdir $DIR/$tdir/f4 $DIR/$tdir/f5 ||
5664                 error "lverify failed"
5665 }
5666 run_test 65d "directory setstripe -S stripe_size -c stripe_count"
5667
5668 test_65e() {
5669         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5670         test_mkdir $DIR/$tdir
5671
5672         $SETSTRIPE $DIR/$tdir || error "setstripe"
5673         $GETSTRIPE -v $DIR/$tdir | grep "Default" ||
5674                                         error "no stripe info failed"
5675         touch $DIR/$tdir/f6
5676         $LVERIFY $DIR/$tdir $DIR/$tdir/f6 || error "lverify failed"
5677 }
5678 run_test 65e "directory setstripe defaults"
5679
5680 test_65f() {
5681         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5682         test_mkdir $DIR/${tdir}f
5683         $RUNAS $SETSTRIPE $DIR/${tdir}f && error "setstripe succeeded" || true
5684 }
5685 run_test 65f "dir setstripe permission (should return error) ==="
5686
5687 test_65g() {
5688         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5689         test_mkdir $DIR/$tdir
5690         local STRIPESIZE=$($GETSTRIPE -S $DIR/$tdir)
5691
5692         $LFS setstripe -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
5693                 error "setstripe -S failed"
5694         $LFS setstripe -d $DIR/$tdir || error "setstripe -d failed"
5695         $LFS getstripe -v $DIR/$tdir | grep "Default" ||
5696                 error "delete default stripe failed"
5697 }
5698 run_test 65g "directory setstripe -d"
5699
5700 test_65h() {
5701         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5702         test_mkdir $DIR/$tdir
5703         local STRIPESIZE=$($GETSTRIPE -S $DIR/$tdir)
5704
5705         $LFS setstripe -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
5706                 error "setstripe -S failed"
5707         test_mkdir $DIR/$tdir/dd1
5708         [ $($LFS getstripe -c $DIR/$tdir) = $($GETSTRIPE -c $DIR/$tdir/dd1) ] ||
5709                 error "stripe info inherit failed"
5710 }
5711 run_test 65h "directory stripe info inherit ===================="
5712
5713 test_65i() { # bug6367
5714         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5715         $SETSTRIPE -S 65536 -c -1 $MOUNT
5716 }
5717 run_test 65i "set non-default striping on root directory (bug 6367)="
5718
5719 test_65ia() { # bug12836
5720         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5721         $GETSTRIPE $MOUNT || error "getstripe $MOUNT failed"
5722 }
5723 run_test 65ia "getstripe on -1 default directory striping"
5724
5725 test_65ib() { # bug12836
5726         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5727         $GETSTRIPE -v $MOUNT || error "getstripe -v $MOUNT failed"
5728 }
5729 run_test 65ib "getstripe -v on -1 default directory striping"
5730
5731 test_65ic() { # bug12836
5732         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5733         $LFS find -mtime -1 $MOUNT > /dev/null || error "find $MOUNT failed"
5734 }
5735 run_test 65ic "new find on -1 default directory striping"
5736
5737 test_65j() { # bug6367
5738         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5739         sync; sleep 1
5740         # if we aren't already remounting for each test, do so for this test
5741         if [ "$CLEANUP" = ":" -a "$I_MOUNTED" = "yes" ]; then
5742                 cleanup || error "failed to unmount"
5743                 setup
5744         fi
5745         $SETSTRIPE -d $MOUNT || error "setstripe failed"
5746 }
5747 run_test 65j "set default striping on root directory (bug 6367)="
5748
5749 test_65k() { # bug11679
5750         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5751         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
5752         remote_mds_nodsh && skip "remote MDS with nodsh" && return
5753
5754         local disable_precreate=true
5755         [ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.8.54) ] &&
5756                 disable_precreate=false
5757
5758         echo "Check OST status: "
5759         local MDS_OSCS=$(do_facet $SINGLEMDS lctl dl |
5760                 awk '/[oO][sS][cC].*md[ts]/ { print $4 }')
5761
5762         for OSC in $MDS_OSCS; do
5763                 echo $OSC "is active"
5764                 do_facet $SINGLEMDS lctl --device %$OSC activate
5765         done
5766
5767         for INACTIVE_OSC in $MDS_OSCS; do
5768                 local ost=$(osc_to_ost $INACTIVE_OSC)
5769                 local ostnum=$(do_facet $SINGLEMDS lctl get_param -n \
5770                                lov.*md*.target_obd |
5771                                awk -F: /$ost/'{ print $1 }' | head -n 1)
5772
5773                 mkdir -p $DIR/$tdir
5774                 $SETSTRIPE -i $ostnum -c 1 $DIR/$tdir
5775                 createmany -o $DIR/$tdir/$tfile.$ostnum. 1000
5776
5777                 echo "Deactivate: " $INACTIVE_OSC
5778                 do_facet $SINGLEMDS lctl --device %$INACTIVE_OSC deactivate
5779
5780                 local count=$(do_facet $SINGLEMDS "lctl get_param -n \
5781                               osp.$ost*MDT0000.create_count")
5782                 local max_count=$(do_facet $SINGLEMDS "lctl get_param -n \
5783                                   osp.$ost*MDT0000.max_create_count")
5784                 $disable_precreate &&
5785                         do_facet $SINGLEMDS "lctl set_param -n \
5786                                 osp.$ost*MDT0000.max_create_count=0"
5787
5788                 for idx in $(seq 0 $((OSTCOUNT - 1))); do
5789                         [ -f $DIR/$tdir/$idx ] && continue
5790                         echo "$SETSTRIPE -i $idx -c 1 $DIR/$tdir/$idx"
5791                         $SETSTRIPE -i $idx -c 1 $DIR/$tdir/$idx ||
5792                                 error "setstripe $idx should succeed"
5793                         rm -f $DIR/$tdir/$idx || error "rm $idx failed"
5794                 done
5795                 unlinkmany $DIR/$tdir/$tfile.$ostnum. 1000
5796                 rmdir $DIR/$tdir
5797
5798                 do_facet $SINGLEMDS "lctl set_param -n \
5799                         osp.$ost*MDT0000.max_create_count=$max_count"
5800                 do_facet $SINGLEMDS "lctl set_param -n \
5801                         osp.$ost*MDT0000.create_count=$count"
5802                 do_facet $SINGLEMDS lctl --device  %$INACTIVE_OSC activate
5803                 echo $INACTIVE_OSC "is Activate"
5804
5805                 wait_osc_import_state mds ost$ostnum FULL
5806         done
5807 }
5808 run_test 65k "validate manual striping works properly with deactivated OSCs"
5809
5810 test_65l() { # bug 12836
5811         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5812         test_mkdir -p $DIR/$tdir/test_dir
5813         $SETSTRIPE -c -1 $DIR/$tdir/test_dir
5814         $LFS find -mtime -1 $DIR/$tdir >/dev/null
5815 }
5816 run_test 65l "lfs find on -1 stripe dir ========================"
5817
5818 test_65m() {
5819         $RUNAS $SETSTRIPE -c 2 $MOUNT && error "setstripe should fail"
5820         true
5821 }
5822 run_test 65m "normal user can't set filesystem default stripe"
5823
5824 # bug 2543 - update blocks count on client
5825 test_66() {
5826         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5827         COUNT=${COUNT:-8}
5828         dd if=/dev/zero of=$DIR/f66 bs=1k count=$COUNT
5829         sync; sync_all_data; sync; sync_all_data
5830         cancel_lru_locks osc
5831         BLOCKS=`ls -s $DIR/f66 | awk '{ print $1 }'`
5832         [ $BLOCKS -ge $COUNT ] || error "$DIR/f66 blocks $BLOCKS < $COUNT"
5833 }
5834 run_test 66 "update inode blocks count on client ==============="
5835
5836 meminfo() {
5837         awk '($1 == "'$1':") { print $2 }' /proc/meminfo
5838 }
5839
5840 swap_used() {
5841         swapon -s | awk '($1 == "'$1'") { print $4 }'
5842 }
5843
5844 # bug5265, obdfilter oa2dentry return -ENOENT
5845 # #define OBD_FAIL_SRV_ENOENT 0x217
5846 test_69() {
5847         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5848         remote_ost_nodsh && skip "remote OST with nodsh" && return
5849
5850         f="$DIR/$tfile"
5851         $SETSTRIPE -c 1 -i 0 $f
5852
5853         $DIRECTIO write ${f}.2 0 1 || error "directio write error"
5854
5855         do_facet ost1 lctl set_param fail_loc=0x217
5856         $TRUNCATE $f 1 # vmtruncate() will ignore truncate() error.
5857         $DIRECTIO write $f 0 2 && error "write succeeded, expect -ENOENT"
5858
5859         do_facet ost1 lctl set_param fail_loc=0
5860         $DIRECTIO write $f 0 2 || error "write error"
5861
5862         cancel_lru_locks osc
5863         $DIRECTIO read $f 0 1 || error "read error"
5864
5865         do_facet ost1 lctl set_param fail_loc=0x217
5866         $DIRECTIO read $f 1 1 && error "read succeeded, expect -ENOENT"
5867
5868         do_facet ost1 lctl set_param fail_loc=0
5869         rm -f $f
5870 }
5871 run_test 69 "verify oa2dentry return -ENOENT doesn't LBUG ======"
5872
5873 test_71() {
5874         test_mkdir $DIR/$tdir
5875         $LFS setdirstripe -D -c$MDSCOUNT $DIR/$tdir
5876         sh rundbench -C -D $DIR/$tdir 2 || error "dbench failed!"
5877 }
5878 run_test 71 "Running dbench on lustre (don't segment fault) ===="
5879
5880 test_72a() { # bug 5695 - Test that on 2.6 remove_suid works properly
5881         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5882         [ "$RUNAS_ID" = "$UID" ] &&
5883                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
5884
5885         # Check that testing environment is properly set up. Skip if not
5886         FAIL_ON_ERROR=false check_runas_id_ret $RUNAS_ID $RUNAS_GID $RUNAS || {
5887                 skip_env "User $RUNAS_ID does not exist - skipping"
5888                 return 0
5889         }
5890         touch $DIR/$tfile
5891         chmod 777 $DIR/$tfile
5892         chmod ug+s $DIR/$tfile
5893         $RUNAS dd if=/dev/zero of=$DIR/$tfile bs=512 count=1 ||
5894                 error "$RUNAS dd $DIR/$tfile failed"
5895         # See if we are still setuid/sgid
5896         test -u $DIR/$tfile -o -g $DIR/$tfile &&
5897                 error "S/gid is not dropped on write"
5898         # Now test that MDS is updated too
5899         cancel_lru_locks mdc
5900         test -u $DIR/$tfile -o -g $DIR/$tfile &&
5901                 error "S/gid is not dropped on MDS"
5902         rm -f $DIR/$tfile
5903 }
5904 run_test 72a "Test that remove suid works properly (bug5695) ===="
5905
5906 test_72b() { # bug 24226 -- keep mode setting when size is not changing
5907         local perm
5908
5909         [ "$RUNAS_ID" = "$UID" ] && \
5910                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
5911         [ "$RUNAS_ID" -eq 0 ] && \
5912                 skip_env "RUNAS_ID = 0 -- skipping" && return
5913
5914         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5915         # Check that testing environment is properly set up. Skip if not
5916         FAIL_ON_ERROR=false check_runas_id_ret $RUNAS_ID $RUNAS_ID $RUNAS || {
5917                 skip_env "User $RUNAS_ID does not exist - skipping"
5918                 return 0
5919         }
5920         touch $DIR/${tfile}-f{g,u}
5921         test_mkdir $DIR/${tfile}-dg
5922         test_mkdir $DIR/${tfile}-du
5923         chmod 770 $DIR/${tfile}-{f,d}{g,u}
5924         chmod g+s $DIR/${tfile}-{f,d}g
5925         chmod u+s $DIR/${tfile}-{f,d}u
5926         for perm in 777 2777 4777; do
5927                 $RUNAS chmod $perm $DIR/${tfile}-fg && error "S/gid file allowed improper chmod to $perm"
5928                 $RUNAS chmod $perm $DIR/${tfile}-fu && error "S/uid file allowed improper chmod to $perm"
5929                 $RUNAS chmod $perm $DIR/${tfile}-dg && error "S/gid dir allowed improper chmod to $perm"
5930                 $RUNAS chmod $perm $DIR/${tfile}-du && error "S/uid dir allowed improper chmod to $perm"
5931         done
5932         true
5933 }
5934 run_test 72b "Test that we keep mode setting if without file data changed (bug 24226)"
5935
5936 # bug 3462 - multiple simultaneous MDC requests
5937 test_73() {
5938         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5939         test_mkdir $DIR/d73-1
5940         test_mkdir $DIR/d73-2
5941         multiop_bg_pause $DIR/d73-1/f73-1 O_c || return 1
5942         pid1=$!
5943
5944         lctl set_param fail_loc=0x80000129
5945         $MULTIOP $DIR/d73-1/f73-2 Oc &
5946         sleep 1
5947         lctl set_param fail_loc=0
5948
5949         $MULTIOP $DIR/d73-2/f73-3 Oc &
5950         pid3=$!
5951
5952         kill -USR1 $pid1
5953         wait $pid1 || return 1
5954
5955         sleep 25
5956
5957         $CHECKSTAT -t file $DIR/d73-1/f73-1 || return 4
5958         $CHECKSTAT -t file $DIR/d73-1/f73-2 || return 5
5959         $CHECKSTAT -t file $DIR/d73-2/f73-3 || return 6
5960
5961         rm -rf $DIR/d73-*
5962 }
5963 run_test 73 "multiple MDC requests (should not deadlock)"
5964
5965 test_74a() { # bug 6149, 6184
5966         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5967         #define OBD_FAIL_LDLM_ENQUEUE_OLD_EXPORT 0x30e
5968         #
5969         # very important to OR with OBD_FAIL_ONCE (0x80000000) -- otherwise it
5970         # will spin in a tight reconnection loop
5971         touch $DIR/f74a
5972         $LCTL set_param fail_loc=0x8000030e
5973         # get any lock that won't be difficult - lookup works.
5974         ls $DIR/f74a
5975         $LCTL set_param fail_loc=0
5976         rm -f $DIR/f74a
5977         true
5978 }
5979 run_test 74a "ldlm_enqueue freed-export error path, ls (shouldn't LBUG)"
5980
5981 test_74b() { # bug 13310
5982         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5983         #define OBD_FAIL_LDLM_ENQUEUE_OLD_EXPORT 0x30e
5984         #
5985         # very important to OR with OBD_FAIL_ONCE (0x80000000) -- otherwise it
5986         # will spin in a tight reconnection loop
5987         $LCTL set_param fail_loc=0x8000030e
5988         # get a "difficult" lock
5989         touch $DIR/f74b
5990         $LCTL set_param fail_loc=0
5991         rm -f $DIR/f74b
5992         true
5993 }
5994 run_test 74b "ldlm_enqueue freed-export error path, touch (shouldn't LBUG)"
5995
5996 test_74c() {
5997         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5998         #define OBD_FAIL_LDLM_NEW_LOCK
5999         $LCTL set_param fail_loc=0x319
6000         touch $DIR/$tfile && error "touch successful"
6001         $LCTL set_param fail_loc=0
6002         true
6003 }
6004 run_test 74c "ldlm_lock_create error path, (shouldn't LBUG)"
6005
6006 num_inodes() {
6007         awk '/lustre_inode_cache/ {print $2; exit}' /proc/slabinfo
6008 }
6009
6010 get_inode_slab_tunables() {
6011         awk '/lustre_inode_cache/ {print $9," ",$10," ",$11; exit}' /proc/slabinfo
6012 }
6013
6014 set_inode_slab_tunables() {
6015         echo "lustre_inode_cache $1" > /proc/slabinfo
6016 }
6017
6018 test_76() { # Now for bug 20433, added originally in bug 1443
6019         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6020         local SLAB_SETTINGS=$(get_inode_slab_tunables)
6021         local CPUS=$(getconf _NPROCESSORS_ONLN 2>/dev/null)
6022         # we cannot set limit below 1 which means 1 inode in each
6023         # per-cpu cache is still allowed
6024         set_inode_slab_tunables "1 1 0"
6025         cancel_lru_locks osc
6026         BEFORE_INODES=$(num_inodes)
6027         echo "before inodes: $BEFORE_INODES"
6028         local COUNT=1000
6029         [ "$SLOW" = "no" ] && COUNT=100
6030         for i in $(seq $COUNT); do
6031                 touch $DIR/$tfile
6032                 rm -f $DIR/$tfile
6033         done
6034         cancel_lru_locks osc
6035         AFTER_INODES=$(num_inodes)
6036         echo "after inodes: $AFTER_INODES"
6037         local wait=0
6038         while [[ $((AFTER_INODES-1*${CPUS:-1})) -gt $BEFORE_INODES ]]; do
6039                 sleep 2
6040                 AFTER_INODES=$(num_inodes)
6041                 wait=$((wait+2))
6042                 echo "wait $wait seconds inodes: $AFTER_INODES"
6043                 if [ $wait -gt 30 ]; then
6044                         error "inode slab grew from $BEFORE_INODES to $AFTER_INODES"
6045                 fi
6046         done
6047         set_inode_slab_tunables "$SLAB_SETTINGS"
6048 }
6049 run_test 76 "confirm clients recycle inodes properly ===="
6050
6051
6052 export ORIG_CSUM=""
6053 set_checksums()
6054 {
6055         # Note: in sptlrpc modes which enable its own bulk checksum, the
6056         # original crc32_le bulk checksum will be automatically disabled,
6057         # and the OBD_FAIL_OSC_CHECKSUM_SEND/OBD_FAIL_OSC_CHECKSUM_RECEIVE
6058         # will be checked by sptlrpc code against sptlrpc bulk checksum.
6059         # In this case set_checksums() will not be no-op, because sptlrpc
6060         # bulk checksum will be enabled all through the test.
6061
6062         [ "$ORIG_CSUM" ] || ORIG_CSUM=`lctl get_param -n osc.*.checksums | head -n1`
6063         lctl set_param -n osc.*.checksums $1
6064         return 0
6065 }
6066
6067 export ORIG_CSUM_TYPE="`lctl get_param -n osc.*osc-[^mM]*.checksum_type |
6068                         sed 's/.*\[\(.*\)\].*/\1/g' | head -n1`"
6069 CKSUM_TYPES=${CKSUM_TYPES:-"crc32 adler"}
6070 [ "$ORIG_CSUM_TYPE" = "crc32c" ] && CKSUM_TYPES="$CKSUM_TYPES crc32c"
6071 set_checksum_type()
6072 {
6073         lctl set_param -n osc.*osc-[^mM]*.checksum_type $1
6074         log "set checksum type to $1"
6075         return 0
6076 }
6077 F77_TMP=$TMP/f77-temp
6078 F77SZ=8
6079 setup_f77() {
6080         dd if=/dev/urandom of=$F77_TMP bs=1M count=$F77SZ || \
6081                 error "error writing to $F77_TMP"
6082 }
6083
6084 test_77a() { # bug 10889
6085         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6086         $GSS && skip "could not run with gss" && return
6087         [ ! -f $F77_TMP ] && setup_f77
6088         set_checksums 1
6089         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ || error "dd error"
6090         set_checksums 0
6091         rm -f $DIR/$tfile
6092 }
6093 run_test 77a "normal checksum read/write operation"
6094
6095 test_77b() { # bug 10889
6096         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6097         $GSS && skip "could not run with gss" && return
6098         [ ! -f $F77_TMP ] && setup_f77
6099         #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
6100         $LCTL set_param fail_loc=0x80000409
6101         set_checksums 1
6102
6103         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ conv=sync ||
6104                 error "dd error: $?"
6105         $LCTL set_param fail_loc=0
6106
6107         for algo in $CKSUM_TYPES; do
6108                 cancel_lru_locks osc
6109                 set_checksum_type $algo
6110                 #define OBD_FAIL_OSC_CHECKSUM_RECEIVE    0x408
6111                 $LCTL set_param fail_loc=0x80000408
6112                 cmp $F77_TMP $DIR/$tfile || error "file compare failed"
6113                 $LCTL set_param fail_loc=0
6114         done
6115         set_checksums 0
6116         set_checksum_type $ORIG_CSUM_TYPE
6117         rm -f $DIR/$tfile
6118 }
6119 run_test 77b "checksum error on client write, read"
6120
6121 cleanup_77c() {
6122         trap 0
6123         set_checksums 0
6124         $LCTL set_param osc.*osc-[^mM]*.checksum_dump=0
6125         $check_ost &&
6126                 do_facet ost1 $LCTL set_param obdfilter.*-OST*.checksum_dump=0
6127         [ -n $osc_file_prefix ] && rm -f ${osc_file_prefix}*
6128         $check_ost && [ -n $ost_file_prefix ] &&
6129                 do_facet ost1 rm -f ${ost_file_prefix}\*
6130 }
6131
6132 test_77c() {
6133         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6134         $GSS && skip "could not run with gss" && return
6135
6136         local bad1
6137         local osc_file_prefix
6138         local osc_file
6139         local check_ost=false
6140         local ost_file_prefix
6141         local ost_file
6142         local orig_cksum
6143         local dump_cksum
6144         local fid
6145
6146         # ensure corruption will occur on first OSS/OST
6147         $LFS setstripe -i 0 $DIR/$tfile
6148
6149         [ ! -f $F77_TMP ] && setup_f77
6150         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ conv=sync ||
6151                 error "dd write error: $?"
6152         fid=$($LFS path2fid $DIR/$tfile)
6153
6154         if [ $(lustre_version_code ost1) -ge $(version_code 2.9.57) ]
6155         then
6156                 check_ost=true
6157                 ost_file_prefix=$(do_facet ost1 $LCTL get_param -n debug_path)
6158                 ost_file_prefix=${ost_file_prefix}-checksum_dump-ost-\\${fid}
6159         else
6160                 echo "OSS do not support bulk pages dump upon error"
6161         fi
6162
6163         osc_file_prefix=$($LCTL get_param -n debug_path)
6164         osc_file_prefix=${osc_file_prefix}-checksum_dump-osc-\\${fid}
6165
6166         trap cleanup_77c EXIT
6167
6168         set_checksums 1
6169         # enable bulk pages dump upon error on Client
6170         $LCTL set_param osc.*osc-[^mM]*.checksum_dump=1
6171         # enable bulk pages dump upon error on OSS
6172         $check_ost &&
6173                 do_facet ost1 $LCTL set_param obdfilter.*-OST*.checksum_dump=1
6174
6175         # flush Client cache to allow next read to reach OSS
6176         cancel_lru_locks osc
6177
6178         #define OBD_FAIL_OSC_CHECKSUM_RECEIVE       0x408
6179         $LCTL set_param fail_loc=0x80000408
6180         dd if=$DIR/$tfile of=/dev/null bs=1M || error "dd read error: $?"
6181         $LCTL set_param fail_loc=0
6182
6183         rm -f $DIR/$tfile
6184
6185         # check cksum dump on Client
6186         osc_file=$(ls ${osc_file_prefix}*)
6187         [ -n "$osc_file" ] || error "no checksum dump file on Client"
6188         # OBD_FAIL_OSC_CHECKSUM_RECEIVE corrupts with "bad1" at start of file
6189         bad1=$(dd if=$osc_file bs=1 count=4 2>/dev/null) || error "dd error: $?"
6190         [ $bad1 == "bad1" ] || error "unexpected corrupt pattern"
6191         orig_cksum=$(dd if=$F77_TMP bs=1 skip=4 count=1048572 2>/dev/null |
6192                      cksum)
6193         dump_cksum=$(dd if=$osc_file bs=1 skip=4 2>/dev/null | cksum)
6194         [[ "$orig_cksum" == "$dump_cksum" ]] ||
6195                 error "dump content does not match on Client"
6196
6197         $check_ost || skip "No need to check cksum dump on OSS"
6198
6199         # check cksum dump on OSS
6200         ost_file=$(do_facet ost1 ls ${ost_file_prefix}\*)
6201         [ -n "$ost_file" ] || error "no checksum dump file on OSS"
6202         orig_cksum=$(dd if=$F77_TMP bs=1048576 count=1 2>/dev/null | cksum)
6203         dump_cksum=$(do_facet ost1 dd if=$ost_file 2>/dev/null \| cksum)
6204         [[ "$orig_cksum" == "$dump_cksum" ]] ||
6205                 error "dump content does not match on OSS"
6206
6207         cleanup_77c
6208 }
6209 run_test 77c "checksum error on client read with debug"
6210
6211 test_77d() { # bug 10889
6212         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6213         $GSS && skip "could not run with gss" && return
6214         #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
6215         $LCTL set_param fail_loc=0x80000409
6216         set_checksums 1
6217         $DIRECTIO write $DIR/$tfile 0 $F77SZ $((1024 * 1024)) ||
6218                 error "direct write: rc=$?"
6219         $LCTL set_param fail_loc=0
6220         set_checksums 0
6221
6222         #define OBD_FAIL_OSC_CHECKSUM_RECEIVE    0x408
6223         $LCTL set_param fail_loc=0x80000408
6224         set_checksums 1
6225         cancel_lru_locks osc
6226         $DIRECTIO read $DIR/$tfile 0 $F77SZ $((1024 * 1024)) ||
6227                 error "direct read: rc=$?"
6228         $LCTL set_param fail_loc=0
6229         set_checksums 0
6230 }
6231 run_test 77d "checksum error on OST direct write, read"
6232
6233 test_77f() { # bug 10889
6234         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6235         $GSS && skip "could not run with gss" && return
6236         set_checksums 1
6237         for algo in $CKSUM_TYPES; do
6238                 cancel_lru_locks osc
6239                 set_checksum_type $algo
6240                 #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
6241                 $LCTL set_param fail_loc=0x409
6242                 $DIRECTIO write $DIR/$tfile 0 $F77SZ $((1024 * 1024)) &&
6243                         error "direct write succeeded"
6244                 $LCTL set_param fail_loc=0
6245         done
6246         set_checksum_type $ORIG_CSUM_TYPE
6247         set_checksums 0
6248 }
6249 run_test 77f "repeat checksum error on write (expect error)"
6250
6251 test_77g() { # bug 10889
6252         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6253         $GSS && skip "could not run with gss" && return
6254         remote_ost_nodsh && skip "remote OST with nodsh" && return
6255
6256         [ ! -f $F77_TMP ] && setup_f77
6257
6258         $SETSTRIPE -c 1 -i 0 $DIR/$tfile
6259         #define OBD_FAIL_OST_CHECKSUM_RECEIVE       0x21a
6260         do_facet ost1 lctl set_param fail_loc=0x8000021a
6261         set_checksums 1
6262         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ ||
6263                 error "write error: rc=$?"
6264         do_facet ost1 lctl set_param fail_loc=0
6265         set_checksums 0
6266
6267         cancel_lru_locks osc
6268         #define OBD_FAIL_OST_CHECKSUM_SEND          0x21b
6269         do_facet ost1 lctl set_param fail_loc=0x8000021b
6270         set_checksums 1
6271         cmp $F77_TMP $DIR/$tfile || error "file compare failed"
6272         do_facet ost1 lctl set_param fail_loc=0
6273         set_checksums 0
6274 }
6275 run_test 77g "checksum error on OST write, read"
6276
6277 test_77j() { # bug 13805
6278         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6279         $GSS && skip "could not run with gss" && return
6280         #define OBD_FAIL_OSC_CKSUM_ADLER_ONLY    0x40c
6281         lctl set_param fail_loc=0x40c
6282         remount_client $MOUNT
6283         lctl set_param fail_loc=0
6284         # wait async osc connect to finish and reflect updated state value
6285         local i
6286         for (( i=0; i < OSTCOUNT; i++ )) ; do
6287                 wait_osc_import_state client ost$((i+1)) FULL
6288         done
6289
6290         for VALUE in $(lctl get_param osc.*osc-[^mM]*.checksum_type); do
6291                 PARAM=$(echo ${VALUE[0]} | cut -d "=" -f1)
6292                 algo=$(lctl get_param -n $PARAM | sed 's/.*\[\(.*\)\].*/\1/g')
6293                 [ "$algo" = "adler" ] || error "algo set to $algo instead of adler"
6294         done
6295         remount_client $MOUNT
6296 }
6297 run_test 77j "client only supporting ADLER32"
6298
6299 [ "$ORIG_CSUM" ] && set_checksums $ORIG_CSUM || true
6300 rm -f $F77_TMP
6301 unset F77_TMP
6302
6303 cleanup_test_78() {
6304         trap 0
6305         rm -f $DIR/$tfile
6306 }
6307
6308 test_78() { # bug 10901
6309         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6310         remote_ost || { skip_env "local OST" && return; }
6311
6312         NSEQ=5
6313         F78SIZE=$(($(awk '/MemFree:/ { print $2 }' /proc/meminfo) / 1024))
6314         echo "MemFree: $F78SIZE, Max file size: $MAXFREE"
6315         MEMTOTAL=$(($(awk '/MemTotal:/ { print $2 }' /proc/meminfo) / 1024))
6316         echo "MemTotal: $MEMTOTAL"
6317
6318         # reserve 256MB of memory for the kernel and other running processes,
6319         # and then take 1/2 of the remaining memory for the read/write buffers.
6320         if [ $MEMTOTAL -gt 512 ] ;then
6321                 MEMTOTAL=$(((MEMTOTAL - 256 ) / 2))
6322         else
6323                 # for those poor memory-starved high-end clusters...
6324                 MEMTOTAL=$((MEMTOTAL / 2))
6325         fi
6326         echo "Mem to use for directio: $MEMTOTAL"
6327
6328         [[ $F78SIZE -gt $MEMTOTAL ]] && F78SIZE=$MEMTOTAL
6329         [[ $F78SIZE -gt 512 ]] && F78SIZE=512
6330         [[ $F78SIZE -gt $((MAXFREE / 1024)) ]] && F78SIZE=$((MAXFREE / 1024))
6331         SMALLESTOST=$($LFS df $DIR | grep OST | awk '{ print $4 }' | sort -n |
6332                 head -n1)
6333         echo "Smallest OST: $SMALLESTOST"
6334         [[ $SMALLESTOST -lt 10240 ]] &&
6335                 skip "too small OSTSIZE, useless to run large O_DIRECT test" && return 0
6336
6337         trap cleanup_test_78 EXIT
6338
6339         [[ $F78SIZE -gt $((SMALLESTOST * $OSTCOUNT / 1024 - 80)) ]] &&
6340                 F78SIZE=$((SMALLESTOST * $OSTCOUNT / 1024 - 80))
6341
6342         [ "$SLOW" = "no" ] && NSEQ=1 && [ $F78SIZE -gt 32 ] && F78SIZE=32
6343         echo "File size: $F78SIZE"
6344         $SETSTRIPE -c $OSTCOUNT $DIR/$tfile || error "setstripe failed"
6345         for i in $(seq 1 $NSEQ); do
6346                 FSIZE=$(($F78SIZE / ($NSEQ - $i + 1)))
6347                 echo directIO rdwr round $i of $NSEQ
6348                 $DIRECTIO rdwr $DIR/$tfile 0 $FSIZE 1048576||error "rdwr failed"
6349         done
6350
6351         cleanup_test_78
6352 }
6353 run_test 78 "handle large O_DIRECT writes correctly ============"
6354
6355 test_79() { # bug 12743
6356         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6357         wait_delete_completed
6358
6359         BKTOTAL=$(calc_osc_kbytes kbytestotal)
6360         BKFREE=$(calc_osc_kbytes kbytesfree)
6361         BKAVAIL=$(calc_osc_kbytes kbytesavail)
6362
6363         STRING=`df -P $MOUNT | tail -n 1 | awk '{print $2","$3","$4}'`
6364         DFTOTAL=`echo $STRING | cut -d, -f1`
6365         DFUSED=`echo $STRING  | cut -d, -f2`
6366         DFAVAIL=`echo $STRING | cut -d, -f3`
6367         DFFREE=$(($DFTOTAL - $DFUSED))
6368
6369         ALLOWANCE=$((64 * $OSTCOUNT))
6370
6371         if [ $DFTOTAL -lt $(($BKTOTAL - $ALLOWANCE)) ] ||
6372            [ $DFTOTAL -gt $(($BKTOTAL + $ALLOWANCE)) ] ; then
6373                 error "df total($DFTOTAL) mismatch OST total($BKTOTAL)"
6374         fi
6375         if [ $DFFREE -lt $(($BKFREE - $ALLOWANCE)) ] ||
6376            [ $DFFREE -gt $(($BKFREE + $ALLOWANCE)) ] ; then
6377                 error "df free($DFFREE) mismatch OST free($BKFREE)"
6378         fi
6379         if [ $DFAVAIL -lt $(($BKAVAIL - $ALLOWANCE)) ] ||
6380            [ $DFAVAIL -gt $(($BKAVAIL + $ALLOWANCE)) ] ; then
6381                 error "df avail($DFAVAIL) mismatch OST avail($BKAVAIL)"
6382         fi
6383 }
6384 run_test 79 "df report consistency check ======================="
6385
6386 test_80() { # bug 10718
6387         remote_ost_nodsh && skip "remote OST with nodsh" && return
6388         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6389         # relax strong synchronous semantics for slow backends like ZFS
6390         local soc="obdfilter.*.sync_on_lock_cancel"
6391         local soc_old=$(do_facet ost1 lctl get_param -n $soc | head -n1)
6392         local hosts=
6393         if [ "$soc_old" != "never" -a "$(facet_fstype ost1)" != "ldiskfs" ]; then
6394                 hosts=$(for host in $(seq -f "ost%g" 1 $OSTCOUNT); do
6395                           facet_active_host $host; done | sort -u)
6396                 do_nodes $hosts lctl set_param $soc=never
6397         fi
6398
6399         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=1M
6400         sync; sleep 1; sync
6401         local BEFORE=`date +%s`
6402         cancel_lru_locks osc
6403         local AFTER=`date +%s`
6404         local DIFF=$((AFTER-BEFORE))
6405         if [ $DIFF -gt 1 ] ; then
6406                 error "elapsed for 1M@1T = $DIFF"
6407         fi
6408
6409         [ -n "$hosts" ] && do_nodes $hosts lctl set_param $soc=$soc_old
6410
6411         rm -f $DIR/$tfile
6412 }
6413 run_test 80 "Page eviction is equally fast at high offsets too  ===="
6414
6415 test_81a() { # LU-456
6416         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6417         remote_ost_nodsh && skip "remote OST with nodsh" && return
6418         # define OBD_FAIL_OST_MAPBLK_ENOSPC    0x228
6419         # MUST OR with the OBD_FAIL_ONCE (0x80000000)
6420         do_facet ost1 lctl set_param fail_loc=0x80000228
6421
6422         # write should trigger a retry and success
6423         $SETSTRIPE -i 0 -c 1 $DIR/$tfile
6424         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
6425         RC=$?
6426         if [ $RC -ne 0 ] ; then
6427                 error "write should success, but failed for $RC"
6428         fi
6429 }
6430 run_test 81a "OST should retry write when get -ENOSPC ==============="
6431
6432 test_81b() { # LU-456
6433         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6434         remote_ost_nodsh && skip "remote OST with nodsh" && return
6435         # define OBD_FAIL_OST_MAPBLK_ENOSPC    0x228
6436         # Don't OR with the OBD_FAIL_ONCE (0x80000000)
6437         do_facet ost1 lctl set_param fail_loc=0x228
6438
6439         # write should retry several times and return -ENOSPC finally
6440         $SETSTRIPE -i 0 -c 1 $DIR/$tfile
6441         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
6442         RC=$?
6443         ENOSPC=28
6444         if [ $RC -ne $ENOSPC ] ; then
6445                 error "dd should fail for -ENOSPC, but succeed."
6446         fi
6447 }
6448 run_test 81b "OST should return -ENOSPC when retry still fails ======="
6449
6450 test_82() { # LU-1031
6451         dd if=/dev/zero of=$DIR/$tfile bs=1M count=10
6452         local gid1=14091995
6453         local gid2=16022000
6454
6455         multiop_bg_pause $DIR/$tfile OG${gid1}_g${gid1}c || return 1
6456         local MULTIPID1=$!
6457         multiop_bg_pause $DIR/$tfile O_G${gid2}r10g${gid2}c || return 2
6458         local MULTIPID2=$!
6459         kill -USR1 $MULTIPID2
6460         sleep 2
6461         if [[ `ps h -o comm -p $MULTIPID2` == "" ]]; then
6462                 error "First grouplock does not block second one"
6463         else
6464                 echo "Second grouplock blocks first one"
6465         fi
6466         kill -USR1 $MULTIPID1
6467         wait $MULTIPID1
6468         wait $MULTIPID2
6469 }
6470 run_test 82 "Basic grouplock test"
6471
6472 test_83() {
6473         local sfile="/boot/System.map-$(uname -r)"
6474         # define OBD_FAIL_LLITE_PTASK_IO_FAIL 0x140d
6475         $LCTL set_param fail_loc=0x140d
6476         cp $sfile $DIR/$tfile || error "write failed"
6477         diff -c $sfile $DIR/$tfile || error "files are different"
6478         $LCTL set_param fail_loc=0
6479         rm -f $DIR/$tfile
6480 }
6481 run_test 83 "Short write in ptask ==============================="
6482
6483 test_99() {
6484         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" &&
6485                 return
6486         test_mkdir $DIR/$tdir.cvsroot
6487         chown $RUNAS_ID $DIR/$tdir.cvsroot
6488
6489         cd $TMP
6490         $RUNAS cvs -d $DIR/$tdir.cvsroot init || error "cvs init failed"
6491
6492         cd /etc/init.d
6493         # some versions of cvs import exit(1) when asked to import links or
6494         # files they can't read.  ignore those files.
6495         local toignore=$(find . -type l -printf '-I %f\n' -o \
6496                          ! -perm /4 -printf '-I %f\n')
6497         $RUNAS cvs -d $DIR/$tdir.cvsroot import -m "nomesg" $toignore \
6498                 $tdir.reposname vtag rtag
6499
6500         cd $DIR
6501         test_mkdir $DIR/$tdir.reposname
6502         chown $RUNAS_ID $DIR/$tdir.reposname
6503         $RUNAS cvs -d $DIR/$tdir.cvsroot co $tdir.reposname
6504
6505         cd $DIR/$tdir.reposname
6506         $RUNAS touch foo99
6507         $RUNAS cvs add -m 'addmsg' foo99
6508         $RUNAS cvs update
6509         $RUNAS cvs commit -m 'nomsg' foo99
6510         rm -fr $DIR/$tdir.cvsroot
6511 }
6512 run_test 99 "cvs strange file/directory operations"
6513
6514 test_100() {
6515         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6516         [[ "$NETTYPE" =~ tcp ]] ||
6517                 { skip "TCP secure port test, not useful for NETTYPE=$NETTYPE" &&
6518                         return ; }
6519
6520         remote_ost_nodsh && skip "remote OST with nodsh" && return
6521         remote_mds_nodsh && skip "remote MDS with nodsh" && return
6522         remote_servers ||
6523                 { skip "useless for local single node setup" && return; }
6524
6525         netstat -tna | ( rc=1; while read PROT SND RCV LOCAL REMOTE STAT; do
6526                 [ "$PROT" != "tcp" ] && continue
6527                 RPORT=$(echo $REMOTE | cut -d: -f2)
6528                 [ "$RPORT" != "$ACCEPTOR_PORT" ] && continue
6529
6530                 rc=0
6531                 LPORT=`echo $LOCAL | cut -d: -f2`
6532                 if [ $LPORT -ge 1024 ]; then
6533                         echo "bad: $PROT $SND $RCV $LOCAL $REMOTE $STAT"
6534                         netstat -tna
6535                         error_exit "local: $LPORT > 1024, remote: $RPORT"
6536                 fi
6537         done
6538         [ "$rc" = 0 ] || error_exit "privileged port not found" )
6539 }
6540 run_test 100 "check local port using privileged port ==========="
6541
6542 function get_named_value()
6543 {
6544     local tag
6545
6546     tag=$1
6547     while read ;do
6548         line=$REPLY
6549         case $line in
6550         $tag*)
6551             echo $line | sed "s/^$tag[ ]*//"
6552             break
6553             ;;
6554         esac
6555     done
6556 }
6557
6558 export CACHE_MAX=$($LCTL get_param -n llite.*.max_cached_mb |
6559                    awk '/^max_cached_mb/ { print $2 }')
6560
6561 cleanup_101a() {
6562         $LCTL set_param -n llite.*.max_cached_mb $CACHE_MAX
6563         trap 0
6564 }
6565
6566 test_101a() {
6567         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6568         [ $MDSCOUNT -ge 2 ] && skip "needs < 2 MDTs" && return #LU-4322
6569         local s
6570         local discard
6571         local nreads=10000
6572         local cache_limit=32
6573
6574         $LCTL set_param -n osc.*-osc*.rpc_stats 0
6575         trap cleanup_101a EXIT
6576         $LCTL set_param -n llite.*.read_ahead_stats 0
6577         $LCTL set_param -n llite.*.max_cached_mb $cache_limit
6578
6579         #
6580         # randomly read 10000 of 64K chunks from file 3x 32MB in size
6581         #
6582         echo "nreads: $nreads file size: $((cache_limit * 3))MB"
6583         $READS -f $DIR/$tfile -s$((cache_limit * 3192 * 1024)) -b65536 -C -n$nreads -t 180
6584
6585         discard=0
6586         for s in $($LCTL get_param -n llite.*.read_ahead_stats |
6587                 get_named_value 'read but discarded' | cut -d" " -f1); do
6588                         discard=$(($discard + $s))
6589         done
6590         cleanup_101a
6591
6592         if [[ $(($discard * 10)) -gt $nreads ]]; then
6593                 $LCTL get_param osc.*-osc*.rpc_stats
6594                 $LCTL get_param llite.*.read_ahead_stats
6595                 error "too many ($discard) discarded pages"
6596         fi
6597         rm -f $DIR/$tfile || true
6598 }
6599 run_test 101a "check read-ahead for random reads"
6600
6601 setup_test101bc() {
6602         test_mkdir $DIR/$tdir
6603         local STRIPE_SIZE=$1
6604         local FILE_LENGTH=$2
6605         STRIPE_OFFSET=0
6606
6607         local FILE_SIZE_MB=$((FILE_LENGTH / STRIPE_SIZE))
6608
6609         local list=$(comma_list $(osts_nodes))
6610         set_osd_param $list '' read_cache_enable 0
6611         set_osd_param $list '' writethrough_cache_enable 0
6612
6613         trap cleanup_test101bc EXIT
6614         # prepare the read-ahead file
6615         $SETSTRIPE -S $STRIPE_SIZE -i $STRIPE_OFFSET -c $OSTCOUNT $DIR/$tfile
6616
6617         dd if=/dev/zero of=$DIR/$tfile bs=$STRIPE_SIZE \
6618                                 count=$FILE_SIZE_MB 2> /dev/null
6619
6620 }
6621
6622 cleanup_test101bc() {
6623         trap 0
6624         rm -rf $DIR/$tdir
6625         rm -f $DIR/$tfile
6626
6627         local list=$(comma_list $(osts_nodes))
6628         set_osd_param $list '' read_cache_enable 1
6629         set_osd_param $list '' writethrough_cache_enable 1
6630 }
6631
6632 calc_total() {
6633         awk 'BEGIN{total=0}; {total+=$1}; END{print total}'
6634 }
6635
6636 ra_check_101() {
6637         local READ_SIZE=$1
6638         local STRIPE_SIZE=$2
6639         local FILE_LENGTH=$3
6640         local RA_INC=1048576
6641         local STRIDE_LENGTH=$((STRIPE_SIZE/READ_SIZE))
6642         local discard_limit=$((((STRIDE_LENGTH - 1)*3/(STRIDE_LENGTH*OSTCOUNT))* \
6643                              (STRIDE_LENGTH*OSTCOUNT - STRIDE_LENGTH)))
6644         DISCARD=$($LCTL get_param -n llite.*.read_ahead_stats |
6645                         get_named_value 'read but discarded' |
6646                         cut -d" " -f1 | calc_total)
6647         if [[ $DISCARD -gt $discard_limit ]]; then
6648                 $LCTL get_param llite.*.read_ahead_stats
6649                 error "Too many ($DISCARD) discarded pages with size (${READ_SIZE})"
6650         else
6651                 echo "Read-ahead success for size ${READ_SIZE}"
6652         fi
6653 }
6654
6655 test_101b() {
6656         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6657         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
6658         local STRIPE_SIZE=1048576
6659         local STRIDE_SIZE=$((STRIPE_SIZE*OSTCOUNT))
6660         if [ $SLOW == "yes" ]; then
6661                 local FILE_LENGTH=$((STRIDE_SIZE * 64))
6662         else
6663                 local FILE_LENGTH=$((STRIDE_SIZE * 8))
6664         fi
6665
6666         local ITERATION=$((FILE_LENGTH / STRIDE_SIZE))
6667
6668         # prepare the read-ahead file
6669         setup_test101bc $STRIPE_SIZE $FILE_LENGTH
6670         cancel_lru_locks osc
6671         for BIDX in 2 4 8 16 32 64 128 256
6672         do
6673                 local BSIZE=$((BIDX*4096))
6674                 local READ_COUNT=$((STRIPE_SIZE/BSIZE))
6675                 local STRIDE_LENGTH=$((STRIDE_SIZE/BSIZE))
6676                 local OFFSET=$((STRIPE_SIZE/BSIZE*(OSTCOUNT - 1)))
6677                 $LCTL set_param -n llite.*.read_ahead_stats 0
6678                 $READS -f $DIR/$tfile  -l $STRIDE_LENGTH -o $OFFSET \
6679                               -s $FILE_LENGTH -b $STRIPE_SIZE -a $READ_COUNT -n $ITERATION
6680                 cancel_lru_locks osc
6681                 ra_check_101 $BSIZE $STRIPE_SIZE $FILE_LENGTH
6682         done
6683         cleanup_test101bc
6684         true
6685 }
6686 run_test 101b "check stride-io mode read-ahead ================="
6687
6688 test_101c() {
6689         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6690         local STRIPE_SIZE=1048576
6691         local FILE_LENGTH=$((STRIPE_SIZE*100))
6692         local nreads=10000
6693         local osc_rpc_stats
6694
6695         setup_test101bc $STRIPE_SIZE $FILE_LENGTH
6696
6697         cancel_lru_locks osc
6698         $LCTL set_param osc.*.rpc_stats 0
6699         $READS -f $DIR/$tfile -s$FILE_LENGTH -b65536 -n$nreads -t 180
6700         for osc_rpc_stats in $($LCTL get_param -N osc.*.rpc_stats); do
6701                 local stats=$($LCTL get_param -n $osc_rpc_stats)
6702                 local lines=$(echo "$stats" | awk 'END {print NR;}')
6703                 local size
6704
6705                 if [ $lines -le 20 ]; then
6706                         continue
6707                 fi
6708                 for size in 1 2 4 8; do
6709                         local rpc=$(echo "$stats" |
6710                                     awk '($1 == "'$size':") {print $2; exit; }')
6711                         [ $rpc != 0 ] &&
6712                                 error "Small $((size*4))k read IO $rpc !"
6713                 done
6714                 echo "$osc_rpc_stats check passed!"
6715         done
6716         cleanup_test101bc
6717         true
6718 }
6719 run_test 101c "check stripe_size aligned read-ahead ================="
6720
6721 set_read_ahead() {
6722         $LCTL get_param -n llite.*.max_read_ahead_mb | head -n 1
6723         $LCTL set_param -n llite.*.max_read_ahead_mb $1 > /dev/null 2>&1
6724 }
6725
6726 test_101d() {
6727         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6728         local file=$DIR/$tfile
6729         local sz_MB=${FILESIZE_101d:-500}
6730         local ra_MB=${READAHEAD_MB:-40}
6731
6732         local free_MB=$(($(df -P $DIR | tail -n 1 | awk '{ print $4 }') / 1024))
6733         [ $free_MB -lt $sz_MB ] &&
6734                 skip "Need free space ${sz_MB}M, have ${free_MB}M" && return
6735
6736         echo "Create test file $file size ${sz_MB}M, ${free_MB}M free"
6737         $SETSTRIPE -c -1 $file || error "setstripe failed"
6738
6739         dd if=/dev/zero of=$file bs=1M count=$sz_MB || error "dd failed"
6740         echo Cancel LRU locks on lustre client to flush the client cache
6741         cancel_lru_locks osc
6742
6743         echo Disable read-ahead
6744         local old_READAHEAD=$(set_read_ahead 0)
6745
6746         echo Reading the test file $file with read-ahead disabled
6747         local raOFF=$(do_and_time "dd if=$file of=/dev/null bs=1M count=$sz_MB")
6748
6749         echo Cancel LRU locks on lustre client to flush the client cache
6750         cancel_lru_locks osc
6751         echo Enable read-ahead with ${ra_MB}MB
6752         set_read_ahead $ra_MB
6753
6754         echo Reading the test file $file with read-ahead enabled
6755         local raON=$(do_and_time "dd if=$file of=/dev/null bs=1M count=$sz_MB")
6756
6757         echo "read-ahead disabled time read $raOFF"
6758         echo "read-ahead enabled  time read $raON"
6759
6760         set_read_ahead $old_READAHEAD
6761         rm -f $file
6762         wait_delete_completed
6763
6764         [ $raOFF -le 1 -o $raON -lt $raOFF ] ||
6765                 error "readahead ${raON}s > no-readahead ${raOFF}s ${sz_MB}M"
6766 }
6767 run_test 101d "file read with and without read-ahead enabled"
6768
6769 test_101e() {
6770         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6771         local file=$DIR/$tfile
6772         local size_KB=500  #KB
6773         local count=100
6774         local bsize=1024
6775
6776         local free_KB=$(df -P $DIR | tail -n 1 | awk '{ print $4 }')
6777         local need_KB=$((count * size_KB))
6778         [[ $free_KB -le $need_KB ]] &&
6779                 skip_env "Need free space $need_KB, have $free_KB" && return
6780
6781         echo "Creating $count ${size_KB}K test files"
6782         for ((i = 0; i < $count; i++)); do
6783                 dd if=/dev/zero of=$file.$i bs=$bsize count=$size_KB 2>/dev/null
6784         done
6785
6786         echo "Cancel LRU locks on lustre client to flush the client cache"
6787         cancel_lru_locks osc
6788
6789         echo "Reset readahead stats"
6790         $LCTL set_param -n llite.*.read_ahead_stats 0
6791
6792         for ((i = 0; i < $count; i++)); do
6793                 dd if=$file.$i of=/dev/null bs=$bsize count=$size_KB 2>/dev/null
6794         done
6795
6796         local miss=$($LCTL get_param -n llite.*.read_ahead_stats |
6797                      get_named_value 'misses' | cut -d" " -f1 | calc_total)
6798
6799         for ((i = 0; i < $count; i++)); do
6800                 rm -rf $file.$i 2>/dev/null
6801         done
6802
6803         #10000 means 20% reads are missing in readahead
6804         [[ $miss -lt 10000 ]] ||  error "misses too much for small reads"
6805 }
6806 run_test 101e "check read-ahead for small read(1k) for small files(500k)"
6807
6808 test_101f() {
6809         which iozone || { skip "no iozone installed" && return; }
6810
6811         local old_debug=$($LCTL get_param debug)
6812         old_debug=${old_debug#*=}
6813         $LCTL set_param debug="reada mmap"
6814
6815         # create a test file
6816         iozone -i 0 -+n -r 1m -s 128m -w -f $DIR/$tfile > /dev/null 2>&1
6817
6818         echo Cancel LRU locks on lustre client to flush the client cache
6819         cancel_lru_locks osc
6820
6821         echo Reset readahead stats
6822         $LCTL set_param -n llite.*.read_ahead_stats 0
6823
6824         echo mmap read the file with small block size
6825         iozone -i 1 -u 1 -l 1 -+n -r 32k -s 128m -B -f $DIR/$tfile \
6826                 > /dev/null 2>&1
6827
6828         echo checking missing pages
6829         $LCTL get_param llite.*.read_ahead_stats
6830         local miss=$($LCTL get_param -n llite.*.read_ahead_stats |
6831                         get_named_value 'misses' | cut -d" " -f1 | calc_total)
6832
6833         $LCTL set_param debug="$old_debug"
6834         [ $miss -lt 3 ] || error "misses too much pages ('$miss')!"
6835         rm -f $DIR/$tfile
6836 }
6837 run_test 101f "check mmap read performance"
6838
6839 test_101g_brw_size_test() {
6840         local mb=$1
6841         local pages=$((mb * 1048576 / $(page_size)))
6842
6843         $LCTL set_param osc.*.max_pages_per_rpc=${mb}M ||
6844                 { error "unable to set max_pages_per_rpc=${mb}M"; return 1; }
6845         for mp in $($LCTL get_param -n osc.*.max_pages_per_rpc); do
6846                 [ $mp -ne $pages ] && error "max_pages_per_rpc $mp != $pages" &&
6847                         return 2
6848         done
6849
6850         $LCTL set_param -n osc.*.rpc_stats=0
6851
6852         # 10 RPCs should be enough for the test
6853         local count=10
6854         dd if=/dev/zero of=$DIR/$tfile bs=${mb}M count=$count ||
6855                 { error "dd write ${mb} MB blocks failed"; return 3; }
6856         cancel_lru_locks osc
6857         dd of=/dev/null if=$DIR/$tfile bs=${mb}M count=$count ||
6858                 { error "dd write ${mb} MB blocks failed"; return 4; }
6859
6860         # calculate number of full-sized read and write RPCs
6861         rpcs=($($LCTL get_param -n 'osc.*.rpc_stats' |
6862                 sed -n '/pages per rpc/,/^$/p' |
6863                 awk '/'$pages':/ { reads += $2; writes += $6 }; \
6864                 END { print reads,writes }'))
6865         [ ${rpcs[0]} -ne $count ] && error "${rpcs[0]} != $count read RPCs" &&
6866                 return 5
6867         [ ${rpcs[1]} -ne $count ] && error "${rpcs[1]} != $count write RPCs" &&
6868                 return 6
6869
6870         return 0
6871 }
6872
6873 test_101g() {
6874         local rpcs
6875         local osts=$(get_facets OST)
6876         local list=$(comma_list $(osts_nodes))
6877         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
6878         local brw_size="obdfilter.*.brw_size"
6879
6880         $LFS setstripe -i 0 -c 1 $DIR/$tfile
6881
6882         local orig_mb=$(do_facet ost1 $LCTL get_param -n $brw_size | head -n 1)
6883         if [ $(lustre_version_code ost1) -ge $(version_code 2.8.52) -a \
6884              $(lustre_version_code client) -ge $(version_code 2.8.52) ]; then
6885                 [ $(lustre_version_code ost1) -ge $(version_code 2.9.52) ] &&
6886                         suffix="M"
6887                 if [[ $orig_mb -lt 16 ]]; then
6888                         save_lustre_params $osts "$brw_size" > $p
6889                         do_nodes $list $LCTL set_param -n $brw_size=16$suffix ||
6890                                 error "set 16MB RPC size failed"
6891
6892                         echo "remount client to enable new RPC size"
6893                         remount_client $MOUNT || error "remount_client failed"
6894                 fi
6895
6896                 test_101g_brw_size_test 16 || error "16MB RPC test failed"
6897                 # should be able to set brw_size=12, but no rpc_stats for that
6898                 test_101g_brw_size_test 8 || error "8MB RPC test failed"
6899         fi
6900
6901         test_101g_brw_size_test 4 || error "4MB RPC test failed"
6902
6903         if [[ $orig_mb -lt 16 ]]; then
6904                 restore_lustre_params < $p
6905                 remount_client $MOUNT || error "remount_client restore failed"
6906         fi
6907
6908         rm -f $p $DIR/$tfile
6909 }
6910 run_test 101g "Big bulk(4/16 MiB) readahead"
6911
6912 setup_test102() {
6913         test_mkdir $DIR/$tdir
6914         chown $RUNAS_ID $DIR/$tdir
6915         STRIPE_SIZE=65536
6916         STRIPE_OFFSET=1
6917         STRIPE_COUNT=$OSTCOUNT
6918         [[ $OSTCOUNT -gt 4 ]] && STRIPE_COUNT=4
6919
6920         trap cleanup_test102 EXIT
6921         cd $DIR
6922         $1 $SETSTRIPE -S $STRIPE_SIZE -i $STRIPE_OFFSET -c $STRIPE_COUNT $tdir
6923         cd $DIR/$tdir
6924         for num in 1 2 3 4; do
6925                 for count in $(seq 1 $STRIPE_COUNT); do
6926                         for idx in $(seq 0 $[$STRIPE_COUNT - 1]); do
6927                                 local size=`expr $STRIPE_SIZE \* $num`
6928                                 local file=file"$num-$idx-$count"
6929                                 $1 $SETSTRIPE -S $size -i $idx -c $count $file
6930                         done
6931                 done
6932         done
6933
6934         cd $DIR
6935         $1 $TAR cf $TMP/f102.tar $tdir --xattrs
6936 }
6937
6938 cleanup_test102() {
6939         trap 0
6940         rm -f $TMP/f102.tar
6941         rm -rf $DIR/d0.sanity/d102
6942 }
6943
6944 test_102a() {
6945         local testfile=$DIR/$tfile
6946
6947         touch $testfile
6948
6949         [ "$UID" != 0 ] && skip_env "must run as root" && return
6950         [ -z "$(lctl get_param -n mdc.*-mdc-*.connect_flags | grep xattr)" ] &&
6951                 skip_env "must have user_xattr" && return
6952
6953         [ -z "$(which setfattr 2>/dev/null)" ] &&
6954                 skip_env "could not find setfattr" && return
6955
6956         echo "set/get xattr..."
6957         setfattr -n trusted.name1 -v value1 $testfile ||
6958                 error "setfattr -n trusted.name1=value1 $testfile failed"
6959         getfattr -n trusted.name1 $testfile 2> /dev/null |
6960           grep "trusted.name1=.value1" ||
6961                 error "$testfile missing trusted.name1=value1"
6962
6963         setfattr -n user.author1 -v author1 $testfile ||
6964                 error "setfattr -n user.author1=author1 $testfile failed"
6965         getfattr -n user.author1 $testfile 2> /dev/null |
6966           grep "user.author1=.author1" ||
6967                 error "$testfile missing trusted.author1=author1"
6968
6969         echo "listxattr..."
6970         setfattr -n trusted.name2 -v value2 $testfile ||
6971                 error "$testfile unable to set trusted.name2"
6972         setfattr -n trusted.name3 -v value3 $testfile ||
6973                 error "$testfile unable to set trusted.name3"
6974         [ $(getfattr -d -m "^trusted" $testfile 2> /dev/null |
6975             grep "trusted.name" | wc -l) -eq 3 ] ||
6976                 error "$testfile missing 3 trusted.name xattrs"
6977
6978         setfattr -n user.author2 -v author2 $testfile ||
6979                 error "$testfile unable to set user.author2"
6980         setfattr -n user.author3 -v author3 $testfile ||
6981                 error "$testfile unable to set user.author3"
6982         [ $(getfattr -d -m "^user" $testfile 2> /dev/null |
6983             grep "user.author" | wc -l) -eq 3 ] ||
6984                 error "$testfile missing 3 user.author xattrs"
6985
6986         echo "remove xattr..."
6987         setfattr -x trusted.name1 $testfile ||
6988                 error "$testfile error deleting trusted.name1"
6989         getfattr -d -m trusted $testfile 2> /dev/null | grep "trusted.name1" &&
6990                 error "$testfile did not delete trusted.name1 xattr"
6991
6992         setfattr -x user.author1 $testfile ||
6993                 error "$testfile error deleting user.author1"
6994         echo "set lustre special xattr ..."
6995         $LFS setstripe -c1 $testfile
6996         local lovea=$(getfattr -n "trusted.lov" -e hex $testfile |
6997                 awk -F "=" '/trusted.lov/ { print $2 }' )
6998         setfattr -n "trusted.lov" -v $lovea $testfile ||
6999                 error "$testfile doesn't ignore setting trusted.lov again"
7000         setfattr -n "trusted.lov" -v "invalid_value" $testfile &&
7001                 error "$testfile allow setting invalid trusted.lov"
7002         rm -f $testfile
7003 }
7004 run_test 102a "user xattr test =================================="
7005
7006 test_102b() {
7007         [ -z "$(which setfattr 2>/dev/null)" ] &&
7008                 skip_env "could not find setfattr" && return
7009
7010         # b10930: get/set/list trusted.lov xattr
7011         echo "get/set/list trusted.lov xattr ..."
7012         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
7013         local testfile=$DIR/$tfile
7014         $SETSTRIPE -S 65536 -i 1 -c $OSTCOUNT $testfile ||
7015                 error "setstripe failed"
7016         local STRIPECOUNT=$($GETSTRIPE -c $testfile) ||
7017                 error "getstripe failed"
7018         getfattr -d -m "^trusted" $testfile 2>/dev/null | grep "trusted.lov" ||
7019                 error "can't get trusted.lov from $testfile"
7020
7021         local testfile2=${testfile}2
7022         local value=$(getfattr -n trusted.lov $testfile 2>/dev/null |
7023                         grep "trusted.lov" | sed -e 's/[^=]\+=//')
7024
7025         $MCREATE $testfile2
7026         setfattr -n trusted.lov -v $value $testfile2
7027         local stripe_size=$($GETSTRIPE -S $testfile2)
7028         local stripe_count=$($GETSTRIPE -c $testfile2)
7029         [[ $stripe_size -eq 65536 ]] ||
7030                 error "stripe size $stripe_size != 65536"
7031         [[ $stripe_count -eq $STRIPECOUNT ]] ||
7032                 error "stripe count $stripe_count != $STRIPECOUNT"
7033         rm -f $DIR/$tfile
7034 }
7035 run_test 102b "getfattr/setfattr for trusted.lov EAs ============"
7036
7037 test_102c() {
7038         [ -z "$(which setfattr 2>/dev/null)" ] &&
7039                 skip_env "could not find setfattr" && return
7040
7041         # b10930: get/set/list lustre.lov xattr
7042         echo "get/set/list lustre.lov xattr ..."
7043         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
7044         test_mkdir $DIR/$tdir
7045         chown $RUNAS_ID $DIR/$tdir
7046         local testfile=$DIR/$tdir/$tfile
7047         $RUNAS $SETSTRIPE -S 65536 -i 1 -c $OSTCOUNT $testfile ||
7048                 error "setstripe failed"
7049         local STRIPECOUNT=$($RUNAS $GETSTRIPE -c $testfile) ||
7050                 error "getstripe failed"
7051         $RUNAS getfattr -d -m "^lustre" $testfile 2> /dev/null | \
7052         grep "lustre.lov" || error "can't get lustre.lov from $testfile"
7053
7054         local testfile2=${testfile}2
7055         local value=`getfattr -n lustre.lov $testfile 2> /dev/null | \
7056                      grep "lustre.lov" |sed -e 's/[^=]\+=//'  `
7057
7058         $RUNAS $MCREATE $testfile2
7059         $RUNAS setfattr -n lustre.lov -v $value $testfile2
7060         local stripe_size=$($RUNAS $GETSTRIPE -S $testfile2)
7061         local stripe_count=$($RUNAS $GETSTRIPE -c $testfile2)
7062         [ $stripe_size -eq 65536 ] || error "stripe size $stripe_size != 65536"
7063         [ $stripe_count -eq $STRIPECOUNT ] ||
7064                 error "stripe count $stripe_count != $STRIPECOUNT"
7065 }
7066 run_test 102c "non-root getfattr/setfattr for lustre.lov EAs ==========="
7067
7068 compare_stripe_info1() {
7069         local stripe_index_all_zero=true
7070
7071         for num in 1 2 3 4; do
7072                 for count in $(seq 1 $STRIPE_COUNT); do
7073                         for offset in $(seq 0 $[$STRIPE_COUNT - 1]); do
7074                                 local size=$((STRIPE_SIZE * num))
7075                                 local file=file"$num-$offset-$count"
7076                                 stripe_size=$($LFS getstripe -S $PWD/$file)
7077                                 [[ $stripe_size -ne $size ]] &&
7078                                     error "$file: size $stripe_size != $size"
7079                                 stripe_count=$($LFS getstripe -c $PWD/$file)
7080                                 # allow fewer stripes to be created, ORI-601
7081                                 [[ $stripe_count -lt $(((3 * count + 3) / 4)) ]] &&
7082                                     error "$file: count $stripe_count != $count"
7083                                 stripe_index=$($LFS getstripe -i $PWD/$file)
7084                                 [[ $stripe_index -ne 0 ]] &&
7085                                         stripe_index_all_zero=false
7086                         done
7087                 done
7088         done
7089         $stripe_index_all_zero &&
7090                 error "all files are being extracted starting from OST index 0"
7091         return 0
7092 }
7093
7094 find_lustre_tar() {
7095         [ -n "$(which tar 2>/dev/null)" ] &&
7096                 strings $(which tar) | grep -q "lustre" && echo tar
7097 }
7098
7099 test_102d() {
7100         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7101         # b10930: tar test for trusted.lov xattr
7102         TAR=$(find_lustre_tar)
7103         [ -z "$TAR" ] && skip_env "lustre-aware tar is not installed" && return
7104         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
7105         setup_test102
7106         test_mkdir $DIR/$tdir
7107         $TAR xf $TMP/$tfile.tar -C $DIR/$tdir --xattrs
7108         cd $DIR/$tdir/$tdir
7109         compare_stripe_info1
7110 }
7111 run_test 102d "tar restore stripe info from tarfile,not keep osts"
7112
7113 test_102f() {
7114         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7115         # b10930: tar test for trusted.lov xattr
7116         TAR=$(find_lustre_tar)
7117         [ -z "$TAR" ] && skip_env "lustre-aware tar is not installed" && return
7118         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
7119         setup_test102
7120         test_mkdir $DIR/$tdir.restore
7121         cd $DIR
7122         $TAR cf - --xattrs $tdir | $TAR xf - --xattrs -C $DIR/$tdir.restore
7123         cd $DIR/$tdir.restore/$tdir
7124         compare_stripe_info1
7125 }
7126 run_test 102f "tar copy files, not keep osts"
7127
7128 grow_xattr() {
7129         local xsize=${1:-1024}  # in bytes
7130         local file=$DIR/$tfile
7131
7132         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep xattr)" ] &&
7133                 skip "must have user_xattr" && return 0
7134         [ -z "$(which setfattr 2>/dev/null)" ] &&
7135                 skip_env "could not find setfattr" && return 0
7136         [ -z "$(which getfattr 2>/dev/null)" ] &&
7137                 skip_env "could not find getfattr" && return 0
7138
7139         touch $file
7140
7141         local value="$(generate_string $xsize)"
7142
7143         local xbig=trusted.big
7144         log "save $xbig on $file"
7145         setfattr -n $xbig -v $value $file ||
7146                 error "saving $xbig on $file failed"
7147
7148         local orig=$(get_xattr_value $xbig $file)
7149         [[ "$orig" != "$value" ]] && error "$xbig different after saving $xbig"
7150
7151         local xsml=trusted.sml
7152         log "save $xsml on $file"
7153         setfattr -n $xsml -v val $file || error "saving $xsml on $file failed"
7154
7155         local new=$(get_xattr_value $xbig $file)
7156         [[ "$new" != "$orig" ]] && error "$xbig different after saving $xsml"
7157
7158         log "grow $xsml on $file"
7159         setfattr -n $xsml -v "$value" $file ||
7160                 error "growing $xsml on $file failed"
7161
7162         new=$(get_xattr_value $xbig $file)
7163         [[ "$new" != "$orig" ]] && error "$xbig different after growing $xsml"
7164         log "$xbig still valid after growing $xsml"
7165
7166         rm -f $file
7167 }
7168
7169 test_102h() { # bug 15777
7170         grow_xattr 1024
7171 }
7172 run_test 102h "grow xattr from inside inode to external block"
7173
7174 test_102ha() {
7175         large_xattr_enabled || { skip "large_xattr disabled" && return; }
7176         grow_xattr $(max_xattr_size)
7177 }
7178 run_test 102ha "grow xattr from inside inode to external inode"
7179
7180 test_102i() { # bug 17038
7181         [ -z "$(which getfattr 2>/dev/null)" ] &&
7182                 skip "could not find getfattr" && return
7183         touch $DIR/$tfile
7184         ln -s $DIR/$tfile $DIR/${tfile}link
7185         getfattr -n trusted.lov $DIR/$tfile ||
7186                 error "lgetxattr on $DIR/$tfile failed"
7187         getfattr -h -n trusted.lov $DIR/${tfile}link 2>&1 |
7188                 grep -i "no such attr" ||
7189                 error "error for lgetxattr on $DIR/${tfile}link is not ENODATA"
7190         rm -f $DIR/$tfile $DIR/${tfile}link
7191 }
7192 run_test 102i "lgetxattr test on symbolic link ============"
7193
7194 test_102j() {
7195         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7196         TAR=$(find_lustre_tar)
7197         [ -z "$TAR" ] && skip_env "lustre-aware tar is not installed" && return
7198         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
7199         setup_test102 "$RUNAS"
7200         test_mkdir $DIR/$tdir
7201         chown $RUNAS_ID $DIR/$tdir
7202         $RUNAS $TAR xf $TMP/f102.tar -C $DIR/$tdir --xattrs
7203         cd $DIR/$tdir/$tdir
7204         compare_stripe_info1 "$RUNAS"
7205 }
7206 run_test 102j "non-root tar restore stripe info from tarfile, not keep osts ==="
7207
7208 test_102k() {
7209         [ -z "$(which setfattr 2>/dev/null)" ] &&
7210                 skip "could not find setfattr" && return
7211         touch $DIR/$tfile
7212         # b22187 just check that does not crash for regular file.
7213         setfattr -n trusted.lov $DIR/$tfile
7214         # b22187 'setfattr -n trusted.lov' should remove LOV EA for directories
7215         local test_kdir=$DIR/$tdir
7216         test_mkdir $test_kdir
7217         local default_size=$($LFS getstripe -S $test_kdir)
7218         local default_count=$($LFS getstripe -c $test_kdir)
7219         local default_offset=$($LFS getstripe -i $test_kdir)
7220         $SETSTRIPE -S 65536 -i 0 -c $OSTCOUNT $test_kdir ||
7221                 error 'dir setstripe failed'
7222         setfattr -n trusted.lov $test_kdir
7223         local stripe_size=$($LFS getstripe -S $test_kdir)
7224         local stripe_count=$($LFS getstripe -c $test_kdir)
7225         local stripe_offset=$($LFS getstripe -i $test_kdir)
7226         [ $stripe_size -eq $default_size ] ||
7227                 error "stripe size $stripe_size != $default_size"
7228         [ $stripe_count -eq $default_count ] ||
7229                 error "stripe count $stripe_count != $default_count"
7230         [ $stripe_offset -eq $default_offset ] ||
7231                 error "stripe offset $stripe_offset != $default_offset"
7232         rm -rf $DIR/$tfile $test_kdir
7233 }
7234 run_test 102k "setfattr without parameter of value shouldn't cause a crash"
7235
7236 test_102l() {
7237         [ -z "$(which getfattr 2>/dev/null)" ] &&
7238                 skip "could not find getfattr" && return
7239
7240         # LU-532 trusted. xattr is invisible to non-root
7241         local testfile=$DIR/$tfile
7242
7243         touch $testfile
7244
7245         echo "listxattr as user..."
7246         chown $RUNAS_ID $testfile
7247         $RUNAS getfattr -d -m '.*' $testfile 2>&1 |
7248             grep -q "trusted" &&
7249                 error "$testfile trusted xattrs are user visible"
7250
7251         return 0;
7252 }
7253 run_test 102l "listxattr size test =================================="
7254
7255 test_102m() { # LU-3403 llite: error of listxattr when buffer is small
7256         local path=$DIR/$tfile
7257         touch $path
7258
7259         listxattr_size_check $path || error "listattr_size_check $path failed"
7260 }
7261 run_test 102m "Ensure listxattr fails on small bufffer ========"
7262
7263 cleanup_test102
7264
7265 getxattr() { # getxattr path name
7266         # Return the base64 encoding of the value of xattr name on path.
7267         local path=$1
7268         local name=$2
7269
7270         # # getfattr --absolute-names --encoding=base64 --name=trusted.lov $path
7271         # file: $path
7272         # trusted.lov=0s0AvRCwEAAAAGAAAAAAAAAAAEAAACAAAAAAAQAAEAA...AAAAAAAAA=
7273         #
7274         # We print just 0s0AvRCwEAAAAGAAAAAAAAAAAEAAACAAAAAAAQAAEAA...AAAAAAAAA=
7275
7276         getfattr --absolute-names --encoding=base64 --name=$name $path |
7277                 awk -F= -v name=$name '$1 == name {
7278                         print substr($0, index($0, "=") + 1);
7279         }'
7280 }
7281
7282 test_102n() { # LU-4101 mdt: protect internal xattrs
7283         [ -z "$(which setfattr 2>/dev/null)" ] &&
7284                 skip "could not find setfattr" && return
7285         if [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.5.50) ]
7286         then
7287                 skip "MDT < 2.5.50 allows setxattr on internal trusted xattrs"
7288                 return
7289         fi
7290
7291         local file0=$DIR/$tfile.0
7292         local file1=$DIR/$tfile.1
7293         local xattr0=$TMP/$tfile.0
7294         local xattr1=$TMP/$tfile.1
7295         local namelist="lov lma lmv link fid version som hsm"
7296         local name
7297         local value
7298
7299         rm -rf $file0 $file1 $xattr0 $xattr1
7300         touch $file0 $file1
7301
7302         # Get 'before' xattrs of $file1.
7303         getfattr --absolute-names --dump --match=- $file1 > $xattr0
7304
7305         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.53) ] &&
7306                 namelist+=" lfsck_namespace"
7307         for name in $namelist; do
7308                 # Try to copy xattr from $file0 to $file1.
7309                 value=$(getxattr $file0 trusted.$name 2> /dev/null)
7310
7311                 setfattr --name=trusted.$name --value="$value" $file1 ||
7312                         error "setxattr 'trusted.$name' failed"
7313
7314                 # Try to set a garbage xattr.
7315                 value=0sVGhlIHF1aWNrIGJyb3duIGZveCBqdW1wcyBvdmVyIGl0c2VsZi4=
7316
7317                 if [[ x$name == "xlov" ]]; then
7318                         setfattr --name=trusted.lov --value="$value" $file1 &&
7319                         error "setxattr invalid 'trusted.lov' success"
7320                 else
7321                         setfattr --name=trusted.$name --value="$value" $file1 ||
7322                                 error "setxattr invalid 'trusted.$name' failed"
7323                 fi
7324
7325                 # Try to remove the xattr from $file1. We don't care if this
7326                 # appears to succeed or fail, we just don't want there to be
7327                 # any changes or crashes.
7328                 setfattr --remove=$trusted.$name $file1 2> /dev/null
7329         done
7330
7331         if [ $(lustre_version_code $SINGLEMDS) -gt $(version_code 2.6.50) ]
7332         then
7333                 name="lfsck_ns"
7334                 # Try to copy xattr from $file0 to $file1.
7335                 value=$(getxattr $file0 trusted.$name 2> /dev/null)
7336
7337                 setfattr --name=trusted.$name --value="$value" $file1 ||
7338                         error "setxattr 'trusted.$name' failed"
7339
7340                 # Try to set a garbage xattr.
7341                 value=0sVGhlIHF1aWNrIGJyb3duIGZveCBqdW1wcyBvdmVyIGl0c2VsZi4=
7342
7343                 setfattr --name=trusted.$name --value="$value" $file1 ||
7344                         error "setxattr 'trusted.$name' failed"
7345
7346                 # Try to remove the xattr from $file1. We don't care if this
7347                 # appears to succeed or fail, we just don't want there to be
7348                 # any changes or crashes.
7349                 setfattr --remove=$trusted.$name $file1 2> /dev/null
7350         fi
7351
7352         # Get 'after' xattrs of file1.
7353         getfattr --absolute-names --dump --match=- $file1 > $xattr1
7354
7355         if ! diff $xattr0 $xattr1; then
7356                 error "before and after xattrs of '$file1' differ"
7357         fi
7358
7359         rm -rf $file0 $file1 $xattr0 $xattr1
7360
7361         return 0
7362 }
7363 run_test 102n "silently ignore setxattr on internal trusted xattrs"
7364
7365 test_102p() { # LU-4703 setxattr did not check ownership
7366         local testfile=$DIR/$tfile
7367
7368         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.5.56) ] &&
7369                 skip "MDS needs to be at least 2.5.56" && return
7370
7371         touch $testfile
7372
7373         echo "setfacl as user..."
7374         $RUNAS setfacl -m "u:$RUNAS_ID:rwx" $testfile
7375         [ $? -ne 0 ] || error "setfacl by $RUNAS_ID was allowed on $testfile"
7376
7377         echo "setfattr as user..."
7378         setfacl -m "u:$RUNAS_ID:---" $testfile
7379         $RUNAS setfattr -x system.posix_acl_access $testfile
7380         [ $? -ne 0 ] || error "setfattr by $RUNAS_ID was allowed on $testfile"
7381 }
7382 run_test 102p "check setxattr(2) correctly fails without permission"
7383
7384 test_102q() {
7385         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.6.92) ] &&
7386                 skip "MDS needs to be at least 2.6.92" && return
7387         orphan_linkea_check $DIR/$tfile || error "orphan_linkea_check"
7388 }
7389 run_test 102q "flistxattr should not return trusted.link EAs for orphans"
7390
7391 test_102r() {
7392         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.6.93) ] &&
7393                 skip "MDS needs to be at least 2.6.93" && return
7394         touch $DIR/$tfile || error "touch"
7395         setfattr -n user.$(basename $tfile) $DIR/$tfile || error "setfattr"
7396         getfattr -n user.$(basename $tfile) $DIR/$tfile || error "getfattr"
7397         rm $DIR/$tfile || error "rm"
7398
7399         #normal directory
7400         mkdir -p $DIR/$tdir || error "mkdir"
7401         setfattr -n user.$(basename $tdir) $DIR/$tdir || error "setfattr dir"
7402         getfattr -n user.$(basename $tdir) $DIR/$tdir || error "getfattr dir"
7403         setfattr -x user.$(basename $tdir) $DIR/$tdir ||
7404                 error "$testfile error deleting user.author1"
7405         getfattr -d -m user.$(basename $tdir) 2> /dev/null |
7406                 grep "user.$(basename $tdir)" &&
7407                 error "$tdir did not delete user.$(basename $tdir)"
7408         rmdir $DIR/$tdir || error "rmdir"
7409
7410         #striped directory
7411         test_mkdir $DIR/$tdir
7412         setfattr -n user.$(basename $tdir) $DIR/$tdir || error "setfattr dir"
7413         getfattr -n user.$(basename $tdir) $DIR/$tdir || error "getfattr dir"
7414         setfattr -x user.$(basename $tdir) $DIR/$tdir ||
7415                 error "$testfile error deleting user.author1"
7416         getfattr -d -m user.$(basename $tdir) 2> /dev/null |
7417                 grep "user.$(basename $tdir)" &&
7418                 error "$tdir did not delete user.$(basename $tdir)"
7419         rmdir $DIR/$tdir || error "rm striped dir"
7420 }
7421 run_test 102r "set EAs with empty values"
7422
7423 run_acl_subtest()
7424 {
7425     $LUSTRE/tests/acl/run $LUSTRE/tests/acl/$1.test
7426     return $?
7427 }
7428
7429 test_103a() {
7430         [ "$UID" != 0 ] && skip_env "must run as root" && return
7431         [ -z "$(lctl get_param -n mdc.*-mdc-*.connect_flags | grep acl)" ] &&
7432                 skip "must have acl enabled" && return
7433         [ -z "$(which setfacl 2>/dev/null)" ] &&
7434                 skip_env "could not find setfacl" && return
7435         $GSS && skip "could not run under gss" && return
7436         remote_mds_nodsh && skip "remote MDS with nodsh" && return
7437
7438         gpasswd -a daemon bin                           # LU-5641
7439         do_facet $SINGLEMDS gpasswd -a daemon bin       # LU-5641
7440
7441         declare -a identity_old
7442
7443         for num in $(seq $MDSCOUNT); do
7444                 switch_identity $num true || identity_old[$num]=$?
7445         done
7446
7447         SAVE_UMASK=$(umask)
7448         umask 0022
7449         mkdir -p $DIR/$tdir
7450         cd $DIR/$tdir
7451
7452         echo "performing cp ..."
7453         run_acl_subtest cp || error "run_acl_subtest cp failed"
7454         echo "performing getfacl-noacl..."
7455         run_acl_subtest getfacl-noacl || error "getfacl-noacl test failed"
7456         echo "performing misc..."
7457         run_acl_subtest misc || error  "misc test failed"
7458         echo "performing permissions..."
7459         run_acl_subtest permissions || error "permissions failed"
7460         # LU-1482 mdd: Setting xattr are properly checked with and without ACLs
7461         if [ $(lustre_version_code $SINGLEMDS) -gt $(version_code 2.8.55) -o \
7462              \( $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.6) -a \
7463              $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.5.29) \) ]
7464         then
7465                 echo "performing permissions xattr..."
7466                 run_acl_subtest permissions_xattr ||
7467                         error "permissions_xattr failed"
7468         fi
7469         echo "performing setfacl..."
7470         run_acl_subtest setfacl || error  "setfacl test failed"
7471
7472         # inheritance test got from HP
7473         echo "performing inheritance..."
7474         cp $LUSTRE/tests/acl/make-tree . || error "cannot copy make-tree"
7475         chmod +x make-tree || error "chmod +x failed"
7476         run_acl_subtest inheritance || error "inheritance test failed"
7477         rm -f make-tree
7478
7479         echo "LU-974 ignore umask when acl is enabled..."
7480         run_acl_subtest 974 || error "LU-974 umask test failed"
7481         if [ $MDSCOUNT -ge 2 ]; then
7482                 run_acl_subtest 974_remote ||
7483                         error "LU-974 umask test failed under remote dir"
7484         fi
7485
7486         echo "LU-2561 newly created file is same size as directory..."
7487         if [ $(facet_fstype $SINGLEMDS) != "zfs" ]; then
7488                 run_acl_subtest 2561 || error "LU-2561 test failed"
7489         else
7490                 run_acl_subtest 2561_zfs || error "LU-2561 zfs test failed"
7491         fi
7492
7493         run_acl_subtest 4924 || error "LU-4924 test failed"
7494
7495         cd $SAVE_PWD
7496         umask $SAVE_UMASK
7497
7498         for num in $(seq $MDSCOUNT); do
7499                 if [ "${identity_old[$num]}" = 1 ]; then
7500                         switch_identity $num false || identity_old[$num]=$?
7501                 fi
7502         done
7503 }
7504 run_test 103a "acl test ========================================="
7505
7506 test_103c() {
7507         mkdir -p $DIR/$tdir
7508         cp -rp $DIR/$tdir $DIR/$tdir.bak
7509
7510         [ -n "$(getfattr -d -m. $DIR/$tdir | grep posix_acl_default)" ] &&
7511                 error "$DIR/$tdir shouldn't contain default ACL"
7512         [ -n "$(getfattr -d -m. $DIR/$tdir.bak | grep posix_acl_default)" ] &&
7513                 error "$DIR/$tdir.bak shouldn't contain default ACL"
7514         true
7515 }
7516 run_test 103c "'cp -rp' won't set empty acl"
7517
7518 test_104a() {
7519         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7520         touch $DIR/$tfile
7521         lfs df || error "lfs df failed"
7522         lfs df -ih || error "lfs df -ih failed"
7523         lfs df -h $DIR || error "lfs df -h $DIR failed"
7524         lfs df -i $DIR || error "lfs df -i $DIR failed"
7525         lfs df $DIR/$tfile || error "lfs df $DIR/$tfile failed"
7526         lfs df -ih $DIR/$tfile || error "lfs df -ih $DIR/$tfile failed"
7527
7528         local OSC=$(lctl dl | grep OST0000-osc-[^M] | awk '{ print $4 }')
7529         lctl --device %$OSC deactivate
7530         lfs df || error "lfs df with deactivated OSC failed"
7531         lctl --device %$OSC activate
7532         # wait the osc back to normal
7533         wait_osc_import_state client ost FULL
7534
7535         lfs df || error "lfs df with reactivated OSC failed"
7536         rm -f $DIR/$tfile
7537 }
7538 run_test 104a "lfs df [-ih] [path] test ========================="
7539
7540 test_104b() {
7541         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7542         [ $RUNAS_ID -eq $UID ] &&
7543                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
7544         chmod 666 /dev/obd
7545         denied_cnt=$(($($RUNAS $LFS check servers 2>&1 |
7546                         grep "Permission denied" | wc -l)))
7547         if [ $denied_cnt -ne 0 ]; then
7548                 error "lfs check servers test failed"
7549         fi
7550 }
7551 run_test 104b "$RUNAS lfs check servers test ===================="
7552
7553 test_105a() {
7554         # doesn't work on 2.4 kernels
7555         touch $DIR/$tfile
7556         if $(flock_is_enabled); then
7557                 flocks_test 1 on -f $DIR/$tfile || error "fail flock on"
7558         else
7559                 flocks_test 1 off -f $DIR/$tfile || error "fail flock off"
7560         fi
7561         rm -f $DIR/$tfile
7562 }
7563 run_test 105a "flock when mounted without -o flock test ========"
7564
7565 test_105b() {
7566         touch $DIR/$tfile
7567         if $(flock_is_enabled); then
7568                 flocks_test 1 on -c $DIR/$tfile || error "fail flock on"
7569         else
7570                 flocks_test 1 off -c $DIR/$tfile || error "fail flock off"
7571         fi
7572         rm -f $DIR/$tfile
7573 }
7574 run_test 105b "fcntl when mounted without -o flock test ========"
7575
7576 test_105c() {
7577         touch $DIR/$tfile
7578         if $(flock_is_enabled); then
7579                 flocks_test 1 on -l $DIR/$tfile || error "fail flock on"
7580         else
7581                 flocks_test 1 off -l $DIR/$tfile || error "fail flock off"
7582         fi
7583         rm -f $DIR/$tfile
7584 }
7585 run_test 105c "lockf when mounted without -o flock test"
7586
7587 test_105d() { # bug 15924
7588         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7589         test_mkdir $DIR/$tdir
7590         flock_is_enabled || { skip "mount w/o flock enabled" && return; }
7591         #define OBD_FAIL_LDLM_CP_CB_WAIT  0x315
7592         $LCTL set_param fail_loc=0x80000315
7593         flocks_test 2 $DIR/$tdir
7594 }
7595 run_test 105d "flock race (should not freeze) ========"
7596
7597 test_105e() { # bug 22660 && 22040
7598         flock_is_enabled || { skip "mount w/o flock enabled" && return; }
7599         touch $DIR/$tfile
7600         flocks_test 3 $DIR/$tfile
7601 }
7602 run_test 105e "Two conflicting flocks from same process"
7603
7604 test_106() { #bug 10921
7605         test_mkdir $DIR/$tdir
7606         $DIR/$tdir && error "exec $DIR/$tdir succeeded"
7607         chmod 777 $DIR/$tdir || error "chmod $DIR/$tdir failed"
7608 }
7609 run_test 106 "attempt exec of dir followed by chown of that dir"
7610
7611 test_107() {
7612         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7613         CDIR=`pwd`
7614         cd $DIR
7615
7616         local file=core
7617         rm -f $file
7618
7619         local save_pattern=$(sysctl -n kernel.core_pattern)
7620         local save_uses_pid=$(sysctl -n kernel.core_uses_pid)
7621         sysctl -w kernel.core_pattern=$file
7622         sysctl -w kernel.core_uses_pid=0
7623
7624         ulimit -c unlimited
7625         sleep 60 &
7626         SLEEPPID=$!
7627
7628         sleep 1
7629
7630         kill -s 11 $SLEEPPID
7631         wait $SLEEPPID
7632         if [ -e $file ]; then
7633                 size=`stat -c%s $file`
7634                 [ $size -eq 0 ] && error "Fail to create core file $file"
7635         else
7636                 error "Fail to create core file $file"
7637         fi
7638         rm -f $file
7639         sysctl -w kernel.core_pattern=$save_pattern
7640         sysctl -w kernel.core_uses_pid=$save_uses_pid
7641         cd $CDIR
7642 }
7643 run_test 107 "Coredump on SIG"
7644
7645 test_110() {
7646         test_mkdir $DIR/$tdir
7647         test_mkdir $DIR/$tdir/$(str_repeat 'a' 255)
7648         $LFS mkdir -c $MDSCOUNT $DIR/$tdir/$(str_repeat 'b' 256) &&
7649                 error "mkdir with 256 char should fail, but did not"
7650         touch $DIR/$tdir/$(str_repeat 'x' 255) ||
7651                 error "create with 255 char failed"
7652         touch $DIR/$tdir/$(str_repeat 'y' 256) &&
7653                 error "create with 256 char should fail, but did not"
7654
7655         ls -l $DIR/$tdir
7656         rm -rf $DIR/$tdir
7657 }
7658 run_test 110 "filename length checking"
7659
7660 #
7661 # Purpose: To verify dynamic thread (OSS) creation.
7662 #
7663 test_115() {
7664         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7665         remote_ost_nodsh && skip "remote OST with nodsh" && return
7666
7667         # Lustre does not stop service threads once they are started.
7668         # Reset number of running threads to default.
7669         stopall
7670         setupall
7671
7672         local OSTIO_pre
7673         local save_params="$TMP/sanity-$TESTNAME.parameters"
7674
7675         # Get ll_ost_io count before I/O
7676         OSTIO_pre=$(do_facet ost1 \
7677                 "$LCTL get_param ost.OSS.ost_io.threads_started | cut -d= -f2")
7678         # Exit if lustre is not running (ll_ost_io not running).
7679         [ -z "$OSTIO_pre" ] && error "no OSS threads"
7680
7681         echo "Starting with $OSTIO_pre threads"
7682         local thread_max=$((OSTIO_pre * 2))
7683         local rpc_in_flight=$((thread_max * 2))
7684         # Number of I/O Process proposed to be started.
7685         local nfiles
7686         local facets=$(get_facets OST)
7687
7688         save_lustre_params client "osc.*OST*.max_rpcs_in_flight" > $save_params
7689         save_lustre_params $facets "ost.OSS.ost_io.threads_max" >> $save_params
7690
7691         # Set in_flight to $rpc_in_flight
7692         $LCTL set_param osc.*OST*.max_rpcs_in_flight=$rpc_in_flight ||
7693                 error "Failed to set max_rpcs_in_flight to $rpc_in_flight"
7694         nfiles=${rpc_in_flight}
7695         # Set ost thread_max to $thread_max
7696         do_facet ost1 "$LCTL set_param ost.OSS.ost_io.threads_max=$thread_max"
7697
7698         # 5 Minutes should be sufficient for max number of OSS
7699         # threads(thread_max) to be created.
7700         local timeout=300
7701
7702         # Start I/O.
7703         local WTL=${WTL:-"$LUSTRE/tests/write_time_limit"}
7704         test_mkdir $DIR/$tdir
7705         for i in $(seq $nfiles); do
7706                 local file=$DIR/$tdir/${tfile}-$i
7707                 $LFS setstripe -c -1 -i 0 $file
7708                 ($WTL $file $timeout)&
7709         done
7710
7711         # I/O Started - Wait for thread_started to reach thread_max or report
7712         # error if thread_started is more than thread_max.
7713         echo "Waiting for thread_started to reach thread_max"
7714         local thread_started=0
7715         local end_time=$((SECONDS + timeout))
7716
7717         while [ $SECONDS -le $end_time ] ; do
7718                 echo -n "."
7719                 # Get ost i/o thread_started count.
7720                 thread_started=$(do_facet ost1 \
7721                         "$LCTL get_param \
7722                         ost.OSS.ost_io.threads_started | cut -d= -f2")
7723                 # Break out if thread_started is equal/greater than thread_max
7724                 if [[ $thread_started -ge $thread_max ]]; then
7725                         echo ll_ost_io thread_started $thread_started, \
7726                                 equal/greater than thread_max $thread_max
7727                         break
7728                 fi
7729                 sleep 1
7730         done
7731
7732         # Cleanup - We have the numbers, Kill i/o jobs if running.
7733         jobcount=($(jobs -p))
7734         for i in $(seq 0 $((${#jobcount[@]}-1)))
7735         do
7736                 kill -9 ${jobcount[$i]}
7737                 if [ $? -ne 0 ] ; then
7738                         echo Warning: \
7739                         Failed to Kill \'WTL\(I/O\)\' with pid ${jobcount[$i]}
7740                 fi
7741         done
7742
7743         # Cleanup files left by WTL binary.
7744         for i in $(seq $nfiles); do
7745                 local file=$DIR/$tdir/${tfile}-$i
7746                 rm -rf $file
7747                 if [ $? -ne 0 ] ; then
7748                         echo "Warning: Failed to delete file $file"
7749                 fi
7750         done
7751
7752         restore_lustre_params <$save_params
7753         rm -f $save_params || echo "Warning: delete file '$save_params' failed"
7754
7755         # Error out if no new thread has started or Thread started is greater
7756         # than thread max.
7757         if [[ $thread_started -le $OSTIO_pre ||
7758                         $thread_started -gt $thread_max ]]; then
7759                 error "ll_ost_io: thread_started $thread_started" \
7760                       "OSTIO_pre $OSTIO_pre, thread_max $thread_max." \
7761                       "No new thread started or thread started greater " \
7762                       "than thread_max."
7763         fi
7764 }
7765 run_test 115 "verify dynamic thread creation===================="
7766
7767 free_min_max () {
7768         wait_delete_completed
7769         AVAIL=($(lctl get_param -n osc.*[oO][sS][cC]-[^M]*.kbytesavail))
7770         echo "OST kbytes available: ${AVAIL[@]}"
7771         MAXV=${AVAIL[0]}
7772         MAXI=0
7773         MINV=${AVAIL[0]}
7774         MINI=0
7775         for ((i = 0; i < ${#AVAIL[@]}; i++)); do
7776                 #echo OST $i: ${AVAIL[i]}kb
7777                 if [[ ${AVAIL[i]} -gt $MAXV ]]; then
7778                         MAXV=${AVAIL[i]}
7779                         MAXI=$i
7780                 fi
7781                 if [[ ${AVAIL[i]} -lt $MINV ]]; then
7782                         MINV=${AVAIL[i]}
7783                         MINI=$i
7784                 fi
7785         done
7786         echo "Min free space: OST $MINI: $MINV"
7787         echo "Max free space: OST $MAXI: $MAXV"
7788 }
7789
7790 test_116a() { # was previously test_116()
7791         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7792         remote_mds_nodsh && skip "remote MDS with nodsh" && return
7793
7794         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
7795
7796         echo -n "Free space priority "
7797         do_facet $SINGLEMDS lctl get_param -n lo*.*-mdtlov.qos_prio_free |
7798                 head -n1
7799         declare -a AVAIL
7800         free_min_max
7801
7802         [ $MINV -eq 0 ] && skip "no free space in OST$MINI, skip" && return
7803         [ $MINV -gt 10000000 ] && skip "too much free space in OST$MINI, skip" \
7804                 && return
7805         trap simple_cleanup_common EXIT
7806
7807
7808         # Check if we need to generate uneven OSTs
7809         test_mkdir -p $DIR/$tdir/OST${MINI}
7810         local FILL=$((MINV / 4))
7811         local DIFF=$((MAXV - MINV))
7812         local DIFF2=$((DIFF * 100 / MINV))
7813
7814         local threshold=$(do_facet $SINGLEMDS \
7815                 lctl get_param -n *.*MDT0000-mdtlov.qos_threshold_rr | head -n1)
7816         threshold=${threshold%%%}
7817         echo -n "Check for uneven OSTs: "
7818         echo -n "diff=${DIFF}KB (${DIFF2}%) must be > ${threshold}% ..."
7819
7820         if [[ $DIFF2 -gt $threshold ]]; then
7821                 echo "ok"
7822                 echo "Don't need to fill OST$MINI"
7823         else
7824                 # generate uneven OSTs. Write 2% over the QOS threshold value
7825                 echo "no"
7826                 DIFF=$((threshold - DIFF2 + 2))
7827                 DIFF2=$((MINV * DIFF / 100))
7828                 echo "Fill $DIFF% remaining space in OST$MINI with ${DIFF2}KB"
7829                 $SETSTRIPE -i $MINI -c 1 $DIR/$tdir/OST${MINI} ||
7830                         error "setstripe failed"
7831                 DIFF=$((DIFF2 / 2048))
7832                 i=0
7833                 while [ $i -lt $DIFF ]; do
7834                         i=$((i + 1))
7835                         dd if=/dev/zero of=$DIR/$tdir/OST${MINI}/$tfile-$i \
7836                                 bs=2M count=1 2>/dev/null
7837                         echo -n .
7838                 done
7839                 echo .
7840                 sync
7841                 sleep_maxage
7842                 free_min_max
7843         fi
7844
7845         DIFF=$((MAXV - MINV))
7846         DIFF2=$((DIFF * 100 / MINV))
7847         echo -n "diff=$DIFF=$DIFF2% must be > $threshold% for QOS mode..."
7848         if [ $DIFF2 -gt $threshold ]; then
7849                 echo "ok"
7850         else
7851                 echo "failed - QOS mode won't be used"
7852                 skip "QOS imbalance criteria not met"
7853                 simple_cleanup_common
7854                 return
7855         fi
7856
7857         MINI1=$MINI
7858         MINV1=$MINV
7859         MAXI1=$MAXI
7860         MAXV1=$MAXV
7861
7862         # now fill using QOS
7863         $SETSTRIPE -c 1 $DIR/$tdir
7864         FILL=$((FILL / 200))
7865         if [ $FILL -gt 600 ]; then
7866                 FILL=600
7867         fi
7868         echo "writing $FILL files to QOS-assigned OSTs"
7869         i=0
7870         while [ $i -lt $FILL ]; do
7871                 i=$((i + 1))
7872                 dd if=/dev/zero of=$DIR/$tdir/$tfile-$i bs=200k \
7873                         count=1 2>/dev/null
7874                 echo -n .
7875         done
7876         echo "wrote $i 200k files"
7877         sync
7878         sleep_maxage
7879
7880         echo "Note: free space may not be updated, so measurements might be off"
7881         free_min_max
7882         DIFF2=$((MAXV - MINV))
7883         echo "free space delta: orig $DIFF final $DIFF2"
7884         [ $DIFF2 -gt $DIFF ] && echo "delta got worse!"
7885         DIFF=$((MINV1 - ${AVAIL[$MINI1]}))
7886         echo "Wrote ${DIFF}KB to smaller OST $MINI1"
7887         DIFF2=$((MAXV1 - ${AVAIL[$MAXI1]}))
7888         echo "Wrote ${DIFF2}KB to larger OST $MAXI1"
7889         if [[ $DIFF -gt 0 ]]; then
7890                 FILL=$((DIFF2 * 100 / DIFF - 100))
7891                 echo "Wrote ${FILL}% more data to larger OST $MAXI1"
7892         fi
7893
7894         # Figure out which files were written where
7895         UUID=$(lctl get_param -n lov.${FSNAME}-clilov-*.target_obd |
7896                awk '/'$MINI1': / {print $2; exit}')
7897         echo $UUID
7898         MINC=$($GETSTRIPE --ost $UUID $DIR/$tdir | grep $DIR | wc -l)
7899         echo "$MINC files created on smaller OST $MINI1"
7900         UUID=$(lctl get_param -n lov.${FSNAME}-clilov-*.target_obd |
7901                awk '/'$MAXI1': / {print $2; exit}')
7902         echo $UUID
7903         MAXC=$($GETSTRIPE --ost $UUID $DIR/$tdir | grep $DIR | wc -l)
7904         echo "$MAXC files created on larger OST $MAXI1"
7905         if [[ $MINC -gt 0 ]]; then
7906                 FILL=$((MAXC * 100 / MINC - 100))
7907                 echo "Wrote ${FILL}% more files to larger OST $MAXI1"
7908         fi
7909         [[ $MAXC -gt $MINC ]] ||
7910                 error_ignore LU-9 "stripe QOS didn't balance free space"
7911         simple_cleanup_common
7912 }
7913 run_test 116a "stripe QOS: free space balance ==================="
7914
7915 test_116b() { # LU-2093
7916         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7917         remote_mds_nodsh && skip "remote MDS with nodsh" && return
7918
7919 #define OBD_FAIL_MDS_OSC_CREATE_FAIL     0x147
7920         local old_rr=$(do_facet $SINGLEMDS lctl get_param -n \
7921                        lo*.$FSNAME-MDT0000-mdtlov.qos_threshold_rr | head -1)
7922         [ -z "$old_rr" ] && skip "no QOS" && return 0
7923         do_facet $SINGLEMDS lctl set_param \
7924                 lo*.$FSNAME-MDT0000-mdtlov.qos_threshold_rr=0
7925         mkdir -p $DIR/$tdir
7926         do_facet $SINGLEMDS lctl set_param fail_loc=0x147
7927         createmany -o $DIR/$tdir/f- 20 || error "can't create"
7928         do_facet $SINGLEMDS lctl set_param fail_loc=0
7929         rm -rf $DIR/$tdir
7930         do_facet $SINGLEMDS lctl set_param \
7931                 lo*.$FSNAME-MDT0000-mdtlov.qos_threshold_rr=$old_rr
7932 }
7933 run_test 116b "QoS shouldn't LBUG if not enough OSTs found on the 2nd pass"
7934
7935 test_117() # bug 10891
7936 {
7937         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7938         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1
7939         #define OBD_FAIL_OST_SETATTR_CREDITS 0x21e
7940         lctl set_param fail_loc=0x21e
7941         > $DIR/$tfile || error "truncate failed"
7942         lctl set_param fail_loc=0
7943         echo "Truncate succeeded."
7944         rm -f $DIR/$tfile
7945 }
7946 run_test 117 "verify osd extend =========="
7947
7948 NO_SLOW_RESENDCOUNT=4
7949 export OLD_RESENDCOUNT=""
7950 set_resend_count () {
7951         local PROC_RESENDCOUNT="osc.${FSNAME}-OST*-osc-*.resend_count"
7952         OLD_RESENDCOUNT=$(lctl get_param -n $PROC_RESENDCOUNT | head -n1)
7953         lctl set_param -n $PROC_RESENDCOUNT $1
7954         echo resend_count is set to $(lctl get_param -n $PROC_RESENDCOUNT)
7955 }
7956
7957 # for reduce test_118* time (b=14842)
7958 [ "$SLOW" = "no" ] && set_resend_count $NO_SLOW_RESENDCOUNT
7959
7960 # Reset async IO behavior after error case
7961 reset_async() {
7962         FILE=$DIR/reset_async
7963
7964         # Ensure all OSCs are cleared
7965         $SETSTRIPE -c -1 $FILE
7966         dd if=/dev/zero of=$FILE bs=64k count=$OSTCOUNT
7967         sync
7968         rm $FILE
7969 }
7970
7971 test_118a() #bug 11710
7972 {
7973         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7974         reset_async
7975
7976         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
7977         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
7978         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
7979
7980         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
7981                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
7982                 return 1;
7983         fi
7984         rm -f $DIR/$tfile
7985 }
7986 run_test 118a "verify O_SYNC works =========="
7987
7988 test_118b()
7989 {
7990         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7991         remote_ost_nodsh && skip "remote OST with nodsh" && return
7992
7993         reset_async
7994
7995         #define OBD_FAIL_SRV_ENOENT 0x217
7996         set_nodes_failloc "$(osts_nodes)" 0x217
7997         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
7998         RC=$?
7999         set_nodes_failloc "$(osts_nodes)" 0
8000         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
8001         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
8002                     grep -c writeback)
8003
8004         if [[ $RC -eq 0 ]]; then
8005                 error "Must return error due to dropped pages, rc=$RC"
8006                 return 1;
8007         fi
8008
8009         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
8010                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
8011                 return 1;
8012         fi
8013
8014         echo "Dirty pages not leaked on ENOENT"
8015
8016         # Due to the above error the OSC will issue all RPCs syncronously
8017         # until a subsequent RPC completes successfully without error.
8018         $MULTIOP $DIR/$tfile Ow4096yc
8019         rm -f $DIR/$tfile
8020
8021         return 0
8022 }
8023 run_test 118b "Reclaim dirty pages on fatal error =========="
8024
8025 test_118c()
8026 {
8027         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8028
8029         # for 118c, restore the original resend count, LU-1940
8030         [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] &&
8031                                 set_resend_count $OLD_RESENDCOUNT
8032         remote_ost_nodsh && skip "remote OST with nodsh" && return
8033
8034         reset_async
8035
8036         #define OBD_FAIL_OST_EROFS               0x216
8037         set_nodes_failloc "$(osts_nodes)" 0x216
8038
8039         # multiop should block due to fsync until pages are written
8040         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
8041         MULTIPID=$!
8042         sleep 1
8043
8044         if [[ `ps h -o comm -p $MULTIPID` != "multiop" ]]; then
8045                 error "Multiop failed to block on fsync, pid=$MULTIPID"
8046         fi
8047
8048         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
8049                     grep -c writeback)
8050         if [[ $WRITEBACK -eq 0 ]]; then
8051                 error "No page in writeback, writeback=$WRITEBACK"
8052         fi
8053
8054         set_nodes_failloc "$(osts_nodes)" 0
8055         wait $MULTIPID
8056         RC=$?
8057         if [[ $RC -ne 0 ]]; then
8058                 error "Multiop fsync failed, rc=$RC"
8059         fi
8060
8061         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
8062         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
8063                     grep -c writeback)
8064         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
8065                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
8066         fi
8067
8068         rm -f $DIR/$tfile
8069         echo "Dirty pages flushed via fsync on EROFS"
8070         return 0
8071 }
8072 run_test 118c "Fsync blocks on EROFS until dirty pages are flushed =========="
8073
8074 # continue to use small resend count to reduce test_118* time (b=14842)
8075 [ "$SLOW" = "no" ] && set_resend_count $NO_SLOW_RESENDCOUNT
8076
8077 test_118d()
8078 {
8079         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8080         remote_ost_nodsh && skip "remote OST with nodsh" && return
8081
8082         reset_async
8083
8084         #define OBD_FAIL_OST_BRW_PAUSE_BULK
8085         set_nodes_failloc "$(osts_nodes)" 0x214
8086         # multiop should block due to fsync until pages are written
8087         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
8088         MULTIPID=$!
8089         sleep 1
8090
8091         if [[ `ps h -o comm -p $MULTIPID` != "multiop" ]]; then
8092                 error "Multiop failed to block on fsync, pid=$MULTIPID"
8093         fi
8094
8095         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
8096                     grep -c writeback)
8097         if [[ $WRITEBACK -eq 0 ]]; then
8098                 error "No page in writeback, writeback=$WRITEBACK"
8099         fi
8100
8101         wait $MULTIPID || error "Multiop fsync failed, rc=$?"
8102         set_nodes_failloc "$(osts_nodes)" 0
8103
8104         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
8105         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
8106                     grep -c writeback)
8107         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
8108                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
8109         fi
8110
8111         rm -f $DIR/$tfile
8112         echo "Dirty pages gaurenteed flushed via fsync"
8113         return 0
8114 }
8115 run_test 118d "Fsync validation inject a delay of the bulk =========="
8116
8117 test_118f() {
8118         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8119         reset_async
8120
8121         #define OBD_FAIL_OSC_BRW_PREP_REQ2        0x40a
8122         lctl set_param fail_loc=0x8000040a
8123
8124         # Should simulate EINVAL error which is fatal
8125         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
8126         RC=$?
8127         if [[ $RC -eq 0 ]]; then
8128                 error "Must return error due to dropped pages, rc=$RC"
8129         fi
8130
8131         lctl set_param fail_loc=0x0
8132
8133         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
8134         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
8135         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
8136                     grep -c writeback)
8137         if [[ $LOCKED -ne 0 ]]; then
8138                 error "Locked pages remain in cache, locked=$LOCKED"
8139         fi
8140
8141         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
8142                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
8143         fi
8144
8145         rm -f $DIR/$tfile
8146         echo "No pages locked after fsync"
8147
8148         reset_async
8149         return 0
8150 }
8151 run_test 118f "Simulate unrecoverable OSC side error =========="
8152
8153 test_118g() {
8154         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8155         reset_async
8156
8157         #define OBD_FAIL_OSC_BRW_PREP_REQ        0x406
8158         lctl set_param fail_loc=0x406
8159
8160         # simulate local -ENOMEM
8161         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
8162         RC=$?
8163
8164         lctl set_param fail_loc=0
8165         if [[ $RC -eq 0 ]]; then
8166                 error "Must return error due to dropped pages, rc=$RC"
8167         fi
8168
8169         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
8170         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
8171         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
8172                         grep -c writeback)
8173         if [[ $LOCKED -ne 0 ]]; then
8174                 error "Locked pages remain in cache, locked=$LOCKED"
8175         fi
8176
8177         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
8178                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
8179         fi
8180
8181         rm -f $DIR/$tfile
8182         echo "No pages locked after fsync"
8183
8184         reset_async
8185         return 0
8186 }
8187 run_test 118g "Don't stay in wait if we got local -ENOMEM  =========="
8188
8189 test_118h() {
8190         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8191         remote_ost_nodsh && skip "remote OST with nodsh" && return
8192
8193         reset_async
8194
8195         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
8196         set_nodes_failloc "$(osts_nodes)" 0x20e
8197         # Should simulate ENOMEM error which is recoverable and should be handled by timeout
8198         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
8199         RC=$?
8200
8201         set_nodes_failloc "$(osts_nodes)" 0
8202         if [[ $RC -eq 0 ]]; then
8203                 error "Must return error due to dropped pages, rc=$RC"
8204         fi
8205
8206         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
8207         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
8208         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
8209                     grep -c writeback)
8210         if [[ $LOCKED -ne 0 ]]; then
8211                 error "Locked pages remain in cache, locked=$LOCKED"
8212         fi
8213
8214         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
8215                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
8216         fi
8217
8218         rm -f $DIR/$tfile
8219         echo "No pages locked after fsync"
8220
8221         return 0
8222 }
8223 run_test 118h "Verify timeout in handling recoverables errors  =========="
8224
8225 [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] && set_resend_count $OLD_RESENDCOUNT
8226
8227 test_118i() {
8228         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8229         remote_ost_nodsh && skip "remote OST with nodsh" && return
8230
8231         reset_async
8232
8233         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
8234         set_nodes_failloc "$(osts_nodes)" 0x20e
8235
8236         # Should simulate ENOMEM error which is recoverable and should be handled by timeout
8237         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
8238         PID=$!
8239         sleep 5
8240         set_nodes_failloc "$(osts_nodes)" 0
8241
8242         wait $PID
8243         RC=$?
8244         if [[ $RC -ne 0 ]]; then
8245                 error "got error, but should be not, rc=$RC"
8246         fi
8247
8248         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
8249         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
8250         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
8251         if [[ $LOCKED -ne 0 ]]; then
8252                 error "Locked pages remain in cache, locked=$LOCKED"
8253         fi
8254
8255         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
8256                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
8257         fi
8258
8259         rm -f $DIR/$tfile
8260         echo "No pages locked after fsync"
8261
8262         return 0
8263 }
8264 run_test 118i "Fix error before timeout in recoverable error  =========="
8265
8266 [ "$SLOW" = "no" ] && set_resend_count 4
8267
8268 test_118j() {
8269         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8270         remote_ost_nodsh && skip "remote OST with nodsh" && return
8271
8272         reset_async
8273
8274         #define OBD_FAIL_OST_BRW_WRITE_BULK2     0x220
8275         set_nodes_failloc "$(osts_nodes)" 0x220
8276
8277         # return -EIO from OST
8278         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
8279         RC=$?
8280         set_nodes_failloc "$(osts_nodes)" 0x0
8281         if [[ $RC -eq 0 ]]; then
8282                 error "Must return error due to dropped pages, rc=$RC"
8283         fi
8284
8285         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
8286         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
8287         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
8288         if [[ $LOCKED -ne 0 ]]; then
8289                 error "Locked pages remain in cache, locked=$LOCKED"
8290         fi
8291
8292         # in recoverable error on OST we want resend and stay until it finished
8293         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
8294                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
8295         fi
8296
8297         rm -f $DIR/$tfile
8298         echo "No pages locked after fsync"
8299
8300         return 0
8301 }
8302 run_test 118j "Simulate unrecoverable OST side error =========="
8303
8304 test_118k()
8305 {
8306         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8307         remote_ost_nodsh && skip "remote OSTs with nodsh" && return
8308
8309         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
8310         set_nodes_failloc "$(osts_nodes)" 0x20e
8311         test_mkdir $DIR/$tdir
8312
8313         for ((i=0;i<10;i++)); do
8314                 (dd if=/dev/zero of=$DIR/$tdir/$tfile-$i bs=1M count=10 || \
8315                         error "dd to $DIR/$tdir/$tfile-$i failed" )&
8316                 SLEEPPID=$!
8317                 sleep 0.500s
8318                 kill $SLEEPPID
8319                 wait $SLEEPPID
8320         done
8321
8322         set_nodes_failloc "$(osts_nodes)" 0
8323         rm -rf $DIR/$tdir
8324 }
8325 run_test 118k "bio alloc -ENOMEM and IO TERM handling ========="
8326
8327 test_118l()
8328 {
8329         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8330         # LU-646
8331         test_mkdir $DIR/$tdir
8332         $MULTIOP $DIR/$tdir Dy || error "fsync dir failed"
8333         rm -rf $DIR/$tdir
8334 }
8335 run_test 118l "fsync dir"
8336
8337 test_118m() # LU-3066
8338 {
8339         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8340         test_mkdir $DIR/$tdir
8341         $MULTIOP $DIR/$tdir DY || error "fdatasync dir failed"
8342         rm -rf $DIR/$tdir
8343 }
8344 run_test 118m "fdatasync dir ========="
8345
8346 [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] && set_resend_count $OLD_RESENDCOUNT
8347
8348 test_119a() # bug 11737
8349 {
8350         BSIZE=$((512 * 1024))
8351         directio write $DIR/$tfile 0 1 $BSIZE
8352         # We ask to read two blocks, which is more than a file size.
8353         # directio will indicate an error when requested and actual
8354         # sizes aren't equeal (a normal situation in this case) and
8355         # print actual read amount.
8356         NOB=`directio read $DIR/$tfile 0 2 $BSIZE | awk '/error/ {print $6}'`
8357         if [ "$NOB" != "$BSIZE" ]; then
8358                 error "read $NOB bytes instead of $BSIZE"
8359         fi
8360         rm -f $DIR/$tfile
8361 }
8362 run_test 119a "Short directIO read must return actual read amount"
8363
8364 test_119b() # bug 11737
8365 {
8366         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
8367
8368         $SETSTRIPE -c 2 $DIR/$tfile || error "setstripe failed"
8369         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=1 || error "dd failed"
8370         sync
8371         $MULTIOP $DIR/$tfile oO_RDONLY:O_DIRECT:r$((2048 * 1024)) || \
8372                 error "direct read failed"
8373         rm -f $DIR/$tfile
8374 }
8375 run_test 119b "Sparse directIO read must return actual read amount"
8376
8377 test_119c() # bug 13099
8378 {
8379         BSIZE=1048576
8380         directio write $DIR/$tfile 3 1 $BSIZE || error "direct write failed"
8381         directio readhole $DIR/$tfile 0 2 $BSIZE || error "reading hole failed"
8382         rm -f $DIR/$tfile
8383 }
8384 run_test 119c "Testing for direct read hitting hole"
8385
8386 test_119d() # bug 15950
8387 {
8388         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8389         MAX_RPCS_IN_FLIGHT=`$LCTL get_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight`
8390         $LCTL set_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight 1
8391         BSIZE=1048576
8392         $SETSTRIPE $DIR/$tfile -i 0 -c 1 || error "setstripe failed"
8393         $DIRECTIO write $DIR/$tfile 0 1 $BSIZE || error "first directio failed"
8394         #define OBD_FAIL_OSC_DIO_PAUSE           0x40d
8395         lctl set_param fail_loc=0x40d
8396         $DIRECTIO write $DIR/$tfile 1 4 $BSIZE &
8397         pid_dio=$!
8398         sleep 1
8399         cat $DIR/$tfile > /dev/null &
8400         lctl set_param fail_loc=0
8401         pid_reads=$!
8402         wait $pid_dio
8403         log "the DIO writes have completed, now wait for the reads (should not block very long)"
8404         sleep 2
8405         [ -n "`ps h -p $pid_reads -o comm`" ] && \
8406         error "the read rpcs have not completed in 2s"
8407         rm -f $DIR/$tfile
8408         $LCTL set_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight $MAX_RPCS_IN_FLIGHT
8409 }
8410 run_test 119d "The DIO path should try to send a new rpc once one is completed"
8411
8412 test_120a() {
8413         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8414         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8415         test_mkdir $DIR/$tdir
8416         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
8417                 { skip "no early lock cancel on server"; return 0; }
8418
8419         lru_resize_disable mdc
8420         lru_resize_disable osc
8421         cancel_lru_locks mdc
8422         # asynchronous object destroy at MDT could cause bl ast to client
8423         cancel_lru_locks osc
8424
8425         stat $DIR/$tdir > /dev/null
8426         can1=$(do_facet $SINGLEMDS \
8427                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8428                awk '/ldlm_cancel/ {print $2}')
8429         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8430                awk '/ldlm_bl_callback/ {print $2}')
8431         test_mkdir -c1 $DIR/$tdir/d1
8432         can2=$(do_facet $SINGLEMDS \
8433                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8434                awk '/ldlm_cancel/ {print $2}')
8435         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8436                awk '/ldlm_bl_callback/ {print $2}')
8437         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
8438         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
8439         lru_resize_enable mdc
8440         lru_resize_enable osc
8441 }
8442 run_test 120a "Early Lock Cancel: mkdir test"
8443
8444 test_120b() {
8445         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8446         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8447         test_mkdir $DIR/$tdir
8448         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
8449                 { skip "no early lock cancel on server"; return 0; }
8450         lru_resize_disable mdc
8451         lru_resize_disable osc
8452         cancel_lru_locks mdc
8453         stat $DIR/$tdir > /dev/null
8454         can1=$(do_facet $SINGLEMDS \
8455                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8456                awk '/ldlm_cancel/ {print $2}')
8457         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8458                awk '/ldlm_bl_callback/ {print $2}')
8459         touch $DIR/$tdir/f1
8460         can2=$(do_facet $SINGLEMDS \
8461                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8462                awk '/ldlm_cancel/ {print $2}')
8463         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8464                awk '/ldlm_bl_callback/ {print $2}')
8465         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
8466         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
8467         lru_resize_enable mdc
8468         lru_resize_enable osc
8469 }
8470 run_test 120b "Early Lock Cancel: create test"
8471
8472 test_120c() {
8473         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8474         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8475         test_mkdir -c1 $DIR/$tdir
8476         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
8477                 { skip "no early lock cancel on server"; return 0; }
8478         lru_resize_disable mdc
8479         lru_resize_disable osc
8480         test_mkdir -c1 $DIR/$tdir/d1
8481         test_mkdir -c1 $DIR/$tdir/d2
8482         touch $DIR/$tdir/d1/f1
8483         cancel_lru_locks mdc
8484         stat $DIR/$tdir/d1 $DIR/$tdir/d2 $DIR/$tdir/d1/f1 > /dev/null
8485         can1=$(do_facet $SINGLEMDS \
8486                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8487                awk '/ldlm_cancel/ {print $2}')
8488         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8489                awk '/ldlm_bl_callback/ {print $2}')
8490         ln $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2
8491         can2=$(do_facet $SINGLEMDS \
8492                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8493                awk '/ldlm_cancel/ {print $2}')
8494         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8495                awk '/ldlm_bl_callback/ {print $2}')
8496         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
8497         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
8498         lru_resize_enable mdc
8499         lru_resize_enable osc
8500 }
8501 run_test 120c "Early Lock Cancel: link test"
8502
8503 test_120d() {
8504         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8505         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8506         test_mkdir -c1 $DIR/$tdir
8507         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
8508                 { skip "no early lock cancel on server"; return 0; }
8509         lru_resize_disable mdc
8510         lru_resize_disable osc
8511         touch $DIR/$tdir
8512         cancel_lru_locks mdc
8513         stat $DIR/$tdir > /dev/null
8514         can1=$(do_facet $SINGLEMDS \
8515                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8516                awk '/ldlm_cancel/ {print $2}')
8517         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8518                awk '/ldlm_bl_callback/ {print $2}')
8519         chmod a+x $DIR/$tdir
8520         can2=$(do_facet $SINGLEMDS \
8521                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8522                awk '/ldlm_cancel/ {print $2}')
8523         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8524                awk '/ldlm_bl_callback/ {print $2}')
8525         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
8526         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
8527         lru_resize_enable mdc
8528         lru_resize_enable osc
8529 }
8530 run_test 120d "Early Lock Cancel: setattr test"
8531
8532 test_120e() {
8533         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8534         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
8535                 { skip "no early lock cancel on server"; return 0; }
8536         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8537         local dlmtrace_set=false
8538
8539         test_mkdir -c1 $DIR/$tdir
8540         lru_resize_disable mdc
8541         lru_resize_disable osc
8542         ! $LCTL get_param debug | grep -q dlmtrace &&
8543                 $LCTL set_param debug=+dlmtrace && dlmtrace_set=true
8544         dd if=/dev/zero of=$DIR/$tdir/f1 count=1
8545         cancel_lru_locks mdc
8546         cancel_lru_locks osc
8547         dd if=$DIR/$tdir/f1 of=/dev/null
8548         stat $DIR/$tdir $DIR/$tdir/f1 > /dev/null
8549         # XXX client can not do early lock cancel of OST lock
8550         # during unlink (LU-4206), so cancel osc lock now.
8551         sleep 2
8552         cancel_lru_locks osc
8553         can1=$(do_facet $SINGLEMDS \
8554                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8555                awk '/ldlm_cancel/ {print $2}')
8556         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8557                awk '/ldlm_bl_callback/ {print $2}')
8558         unlink $DIR/$tdir/f1
8559         sleep 5
8560         can2=$(do_facet $SINGLEMDS \
8561                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8562                awk '/ldlm_cancel/ {print $2}')
8563         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8564                awk '/ldlm_bl_callback/ {print $2}')
8565         [ $can1 -ne $can2 ] && error "$((can2 - can1)) cancel RPC occured" &&
8566                 $LCTL dk $TMP/cancel.debug.txt
8567         [ $blk1 -ne $blk2 ] && error "$((blk2 - blk1)) blocking RPC occured" &&
8568                 $LCTL dk $TMP/blocking.debug.txt
8569         $dlmtrace_set && $LCTL set_param debug=-dlmtrace
8570         lru_resize_enable mdc
8571         lru_resize_enable osc
8572 }
8573 run_test 120e "Early Lock Cancel: unlink test"
8574
8575 test_120f() {
8576         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8577         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
8578                 { skip "no early lock cancel on server"; return 0; }
8579         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8580         test_mkdir $DIR/$tdir
8581         lru_resize_disable mdc
8582         lru_resize_disable osc
8583         test_mkdir $DIR/$tdir/d1
8584         test_mkdir $DIR/$tdir/d2
8585         dd if=/dev/zero of=$DIR/$tdir/d1/f1 count=1
8586         dd if=/dev/zero of=$DIR/$tdir/d2/f2 count=1
8587         cancel_lru_locks mdc
8588         cancel_lru_locks osc
8589         dd if=$DIR/$tdir/d1/f1 of=/dev/null
8590         dd if=$DIR/$tdir/d2/f2 of=/dev/null
8591         stat $DIR/$tdir/d1 $DIR/$tdir/d2 $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2 > /dev/null
8592         # XXX client can not do early lock cancel of OST lock
8593         # during rename (LU-4206), so cancel osc lock now.
8594         sleep 2
8595         cancel_lru_locks osc
8596         can1=$(do_facet $SINGLEMDS \
8597                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8598                awk '/ldlm_cancel/ {print $2}')
8599         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8600                awk '/ldlm_bl_callback/ {print $2}')
8601         mrename $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2
8602         sleep 5
8603         can2=$(do_facet $SINGLEMDS \
8604                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8605                awk '/ldlm_cancel/ {print $2}')
8606         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8607                awk '/ldlm_bl_callback/ {print $2}')
8608         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
8609         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
8610         lru_resize_enable mdc
8611         lru_resize_enable osc
8612 }
8613 run_test 120f "Early Lock Cancel: rename test"
8614
8615 test_120g() {
8616         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8617         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
8618                 { skip "no early lock cancel on server"; return 0; }
8619         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8620         lru_resize_disable mdc
8621         lru_resize_disable osc
8622         count=10000
8623         echo create $count files
8624         test_mkdir $DIR/$tdir
8625         cancel_lru_locks mdc
8626         cancel_lru_locks osc
8627         t0=$(date +%s)
8628
8629         can0=$(do_facet $SINGLEMDS \
8630                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8631                awk '/ldlm_cancel/ {print $2}')
8632         blk0=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8633                awk '/ldlm_bl_callback/ {print $2}')
8634         createmany -o $DIR/$tdir/f $count
8635         sync
8636         can1=$(do_facet $SINGLEMDS \
8637                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8638                awk '/ldlm_cancel/ {print $2}')
8639         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8640                awk '/ldlm_bl_callback/ {print $2}')
8641         t1=$(date +%s)
8642         echo total: $((can1-can0)) cancels, $((blk1-blk0)) blockings
8643         echo rm $count files
8644         rm -r $DIR/$tdir
8645         sync
8646         can2=$(do_facet $SINGLEMDS \
8647                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8648                awk '/ldlm_cancel/ {print $2}')
8649         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8650                awk '/ldlm_bl_callback/ {print $2}')
8651         t2=$(date +%s)
8652         echo total: $count removes in $((t2-t1))
8653         echo total: $((can2-can1)) cancels, $((blk2-blk1)) blockings
8654         sleep 2
8655         # wait for commitment of removal
8656         lru_resize_enable mdc
8657         lru_resize_enable osc
8658 }
8659 run_test 120g "Early Lock Cancel: performance test"
8660
8661 test_121() { #bug #10589
8662         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8663         rm -rf $DIR/$tfile
8664         writes=$(LANG=C dd if=/dev/zero of=$DIR/$tfile count=1 2>&1 | awk -F '+' '/out$/ {print $1}')
8665 #define OBD_FAIL_LDLM_CANCEL_RACE        0x310
8666         lctl set_param fail_loc=0x310
8667         cancel_lru_locks osc > /dev/null
8668         reads=$(LANG=C dd if=$DIR/$tfile of=/dev/null 2>&1 | awk -F '+' '/in$/ {print $1}')
8669         lctl set_param fail_loc=0
8670         [[ $reads -eq $writes ]] ||
8671                 error "read $reads blocks, must be $writes blocks"
8672 }
8673 run_test 121 "read cancel race ========="
8674
8675 test_123a() { # was test 123, statahead(bug 11401)
8676         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8677         SLOWOK=0
8678         if ! grep -q "processor.*: 1" /proc/cpuinfo; then
8679                 log "testing UP system. Performance may be lower than expected."
8680                 SLOWOK=1
8681         fi
8682
8683         rm -rf $DIR/$tdir
8684         test_mkdir $DIR/$tdir
8685         NUMFREE=$(df -i -P $DIR | tail -n 1 | awk '{ print $4 }')
8686         [[ $NUMFREE -gt 100000 ]] && NUMFREE=100000 || NUMFREE=$((NUMFREE-1000))
8687         MULT=10
8688         for ((i=100, j=0; i<=$NUMFREE; j=$i, i=$((i * MULT)) )); do
8689                 createmany -o $DIR/$tdir/$tfile $j $((i - j))
8690
8691                 max=`lctl get_param -n llite.*.statahead_max | head -n 1`
8692                 lctl set_param -n llite.*.statahead_max 0
8693                 lctl get_param llite.*.statahead_max
8694                 cancel_lru_locks mdc
8695                 cancel_lru_locks osc
8696                 stime=`date +%s`
8697                 time ls -l $DIR/$tdir | wc -l
8698                 etime=`date +%s`
8699                 delta=$((etime - stime))
8700                 log "ls $i files without statahead: $delta sec"
8701                 lctl set_param llite.*.statahead_max=$max
8702
8703                 swrong=`lctl get_param -n llite.*.statahead_stats | grep "statahead wrong:" | awk '{print $3}'`
8704                 lctl get_param -n llite.*.statahead_max | grep '[0-9]'
8705                 cancel_lru_locks mdc
8706                 cancel_lru_locks osc
8707                 stime=`date +%s`
8708                 time ls -l $DIR/$tdir | wc -l
8709                 etime=`date +%s`
8710                 delta_sa=$((etime - stime))
8711                 log "ls $i files with statahead: $delta_sa sec"
8712                 lctl get_param -n llite.*.statahead_stats
8713                 ewrong=`lctl get_param -n llite.*.statahead_stats | grep "statahead wrong:" | awk '{print $3}'`
8714
8715                 [[ $swrong -lt $ewrong ]] &&
8716                         log "statahead was stopped, maybe too many locks held!"
8717                 [[ $delta -eq 0 || $delta_sa -eq 0 ]] && continue
8718
8719                 if [ $((delta_sa * 100)) -gt $((delta * 105)) -a $delta_sa -gt $((delta + 2)) ]; then
8720                     max=`lctl get_param -n llite.*.statahead_max | head -n 1`
8721                     lctl set_param -n llite.*.statahead_max 0
8722                     lctl get_param llite.*.statahead_max
8723                     cancel_lru_locks mdc
8724                     cancel_lru_locks osc
8725                     stime=`date +%s`
8726                     time ls -l $DIR/$tdir | wc -l
8727                     etime=`date +%s`
8728                     delta=$((etime - stime))
8729                     log "ls $i files again without statahead: $delta sec"
8730                     lctl set_param llite.*.statahead_max=$max
8731                     if [ $((delta_sa * 100)) -gt $((delta * 105)) -a $delta_sa -gt $((delta + 2)) ]; then
8732                         if [  $SLOWOK -eq 0 ]; then
8733                                 error "ls $i files is slower with statahead!"
8734                         else
8735                                 log "ls $i files is slower with statahead!"
8736                         fi
8737                         break
8738                     fi
8739                 fi
8740
8741                 [ $delta -gt 20 ] && break
8742                 [ $delta -gt 8 ] && MULT=$((50 / delta))
8743                 [ "$SLOW" = "no" -a $delta -gt 5 ] && break
8744         done
8745         log "ls done"
8746
8747         stime=`date +%s`
8748         rm -r $DIR/$tdir
8749         sync
8750         etime=`date +%s`
8751         delta=$((etime - stime))
8752         log "rm -r $DIR/$tdir/: $delta seconds"
8753         log "rm done"
8754         lctl get_param -n llite.*.statahead_stats
8755 }
8756 run_test 123a "verify statahead work"
8757
8758 test_123b () { # statahead(bug 15027)
8759         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8760         test_mkdir $DIR/$tdir
8761         createmany -o $DIR/$tdir/$tfile-%d 1000
8762
8763         cancel_lru_locks mdc
8764         cancel_lru_locks osc
8765
8766 #define OBD_FAIL_MDC_GETATTR_ENQUEUE     0x803
8767         lctl set_param fail_loc=0x80000803
8768         ls -lR $DIR/$tdir > /dev/null
8769         log "ls done"
8770         lctl set_param fail_loc=0x0
8771         lctl get_param -n llite.*.statahead_stats
8772         rm -r $DIR/$tdir
8773         sync
8774
8775 }
8776 run_test 123b "not panic with network error in statahead enqueue (bug 15027)"
8777
8778 test_124a() {
8779         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8780         $LCTL get_param -n mdc.*.connect_flags | grep -q lru_resize ||
8781                 { skip "no lru resize on server"; return 0; }
8782         local NR=2000
8783         test_mkdir $DIR/$tdir
8784
8785         log "create $NR files at $DIR/$tdir"
8786         createmany -o $DIR/$tdir/f $NR ||
8787                 error "failed to create $NR files in $DIR/$tdir"
8788
8789         cancel_lru_locks mdc
8790         ls -l $DIR/$tdir > /dev/null
8791
8792         local NSDIR=""
8793         local LRU_SIZE=0
8794         for VALUE in $($LCTL get_param ldlm.namespaces.*mdc-*.lru_size); do
8795                 local PARAM=$(echo ${VALUE[0]} | cut -d "=" -f1)
8796                 LRU_SIZE=$($LCTL get_param -n $PARAM)
8797                 if [[ $LRU_SIZE -gt $(default_lru_size) ]]; then
8798                         NSDIR=$(echo $PARAM | cut -d "." -f1-3)
8799                         log "NSDIR=$NSDIR"
8800                         log "NS=$(basename $NSDIR)"
8801                         break
8802                 fi
8803         done
8804
8805         if [[ -z "$NSDIR" || $LRU_SIZE -lt $(default_lru_size) ]]; then
8806                 skip "Not enough cached locks created!"
8807                 return 0
8808         fi
8809         log "LRU=$LRU_SIZE"
8810
8811         local SLEEP=30
8812
8813         # We know that lru resize allows one client to hold $LIMIT locks
8814         # for 10h. After that locks begin to be killed by client.
8815         local MAX_HRS=10
8816         local LIMIT=$($LCTL get_param -n $NSDIR.pool.limit)
8817         log "LIMIT=$LIMIT"
8818         if [ $LIMIT -lt $LRU_SIZE ]; then
8819             skip "Limit is too small $LIMIT"
8820             return 0
8821         fi
8822
8823         # Make LVF so higher that sleeping for $SLEEP is enough to _start_
8824         # killing locks. Some time was spent for creating locks. This means
8825         # that up to the moment of sleep finish we must have killed some of
8826         # them (10-100 locks). This depends on how fast ther were created.
8827         # Many of them were touched in almost the same moment and thus will
8828         # be killed in groups.
8829         local LVF=$(($MAX_HRS * 60 * 60 / $SLEEP * $LIMIT / $LRU_SIZE))
8830
8831         # Use $LRU_SIZE_B here to take into account real number of locks
8832         # created in the case of CMD, LRU_SIZE_B != $NR in most of cases
8833         local LRU_SIZE_B=$LRU_SIZE
8834         log "LVF=$LVF"
8835         local OLD_LVF=$($LCTL get_param -n $NSDIR.pool.lock_volume_factor)
8836         log "OLD_LVF=$OLD_LVF"
8837         $LCTL set_param -n $NSDIR.pool.lock_volume_factor $LVF
8838
8839         # Let's make sure that we really have some margin. Client checks
8840         # cached locks every 10 sec.
8841         SLEEP=$((SLEEP+20))
8842         log "Sleep ${SLEEP} sec"
8843         local SEC=0
8844         while ((SEC<$SLEEP)); do
8845                 echo -n "..."
8846                 sleep 5
8847                 SEC=$((SEC+5))
8848                 LRU_SIZE=$($LCTL get_param -n $NSDIR/lru_size)
8849                 echo -n "$LRU_SIZE"
8850         done
8851         echo ""
8852         $LCTL set_param -n $NSDIR.pool.lock_volume_factor $OLD_LVF
8853         local LRU_SIZE_A=$($LCTL get_param -n $NSDIR.lru_size)
8854
8855         [[ $LRU_SIZE_B -gt $LRU_SIZE_A ]] || {
8856                 error "No locks dropped in ${SLEEP}s. LRU size: $LRU_SIZE_A"
8857                 unlinkmany $DIR/$tdir/f $NR
8858                 return
8859         }
8860
8861         log "Dropped "$((LRU_SIZE_B-LRU_SIZE_A))" locks in ${SLEEP}s"
8862         log "unlink $NR files at $DIR/$tdir"
8863         unlinkmany $DIR/$tdir/f $NR
8864 }
8865 run_test 124a "lru resize ======================================="
8866
8867 get_max_pool_limit()
8868 {
8869         local limit=$($LCTL get_param \
8870                       -n ldlm.namespaces.*-MDT0000-mdc-*.pool.limit)
8871         local max=0
8872         for l in $limit; do
8873                 if [[ $l -gt $max ]]; then
8874                         max=$l
8875                 fi
8876         done
8877         echo $max
8878 }
8879
8880 test_124b() {
8881         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8882         $LCTL get_param -n mdc.*.connect_flags | grep -q lru_resize ||
8883                 { skip "no lru resize on server"; return 0; }
8884
8885         LIMIT=$(get_max_pool_limit)
8886
8887         NR=$(($(default_lru_size)*20))
8888         if [[ $NR -gt $LIMIT ]]; then
8889                 log "Limit lock number by $LIMIT locks"
8890                 NR=$LIMIT
8891         fi
8892
8893         IFree=$(mdsrate_inodes_available)
8894         if [ $IFree -lt $NR ]; then
8895                 log "Limit lock number by $IFree inodes"
8896                 NR=$IFree
8897         fi
8898
8899         lru_resize_disable mdc
8900         test_mkdir -p $DIR/$tdir/disable_lru_resize
8901
8902         createmany -o $DIR/$tdir/disable_lru_resize/f $NR
8903         log "doing ls -la $DIR/$tdir/disable_lru_resize 3 times"
8904         cancel_lru_locks mdc
8905         stime=`date +%s`
8906         PID=""
8907         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
8908         PID="$PID $!"
8909         sleep 2
8910         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
8911         PID="$PID $!"
8912         sleep 2
8913         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
8914         PID="$PID $!"
8915         wait $PID
8916         etime=`date +%s`
8917         nolruresize_delta=$((etime-stime))
8918         log "ls -la time: $nolruresize_delta seconds"
8919         log "lru_size = $(lctl get_param -n ldlm.namespaces.*mdc*.lru_size)"
8920         unlinkmany $DIR/$tdir/disable_lru_resize/f $NR
8921
8922         lru_resize_enable mdc
8923         test_mkdir -p $DIR/$tdir/enable_lru_resize
8924
8925         createmany -o $DIR/$tdir/enable_lru_resize/f $NR
8926         log "doing ls -la $DIR/$tdir/enable_lru_resize 3 times"
8927         cancel_lru_locks mdc
8928         stime=`date +%s`
8929         PID=""
8930         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
8931         PID="$PID $!"
8932         sleep 2
8933         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
8934         PID="$PID $!"
8935         sleep 2
8936         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
8937         PID="$PID $!"
8938         wait $PID
8939         etime=`date +%s`
8940         lruresize_delta=$((etime-stime))
8941         log "ls -la time: $lruresize_delta seconds"
8942         log "lru_size = $(lctl get_param -n ldlm.namespaces.*mdc*.lru_size)"
8943
8944         if [ $lruresize_delta -gt $nolruresize_delta ]; then
8945                 log "ls -la is $(((lruresize_delta - $nolruresize_delta) * 100 / $nolruresize_delta))% slower with lru resize enabled"
8946         elif [ $nolruresize_delta -gt $lruresize_delta ]; then
8947                 log "ls -la is $(((nolruresize_delta - $lruresize_delta) * 100 / $nolruresize_delta))% faster with lru resize enabled"
8948         else
8949                 log "lru resize performs the same with no lru resize"
8950         fi
8951         unlinkmany $DIR/$tdir/enable_lru_resize/f $NR
8952 }
8953 run_test 124b "lru resize (performance test) ======================="
8954
8955 test_124c() {
8956         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8957         $LCTL get_param -n mdc.*.connect_flags | grep -q lru_resize ||
8958                 { skip "no lru resize on server"; return 0; }
8959
8960         # cache ununsed locks on client
8961         local nr=100
8962         cancel_lru_locks mdc
8963         test_mkdir $DIR/$tdir
8964         createmany -o $DIR/$tdir/f $nr ||
8965                 error "failed to create $nr files in $DIR/$tdir"
8966         ls -l $DIR/$tdir > /dev/null
8967
8968         local nsdir="ldlm.namespaces.*-MDT0000-mdc-*"
8969         local unused=$($LCTL get_param -n $nsdir.lock_unused_count)
8970         local max_age=$($LCTL get_param -n $nsdir.lru_max_age)
8971         local recalc_p=$($LCTL get_param -n $nsdir.pool.recalc_period)
8972         echo "unused=$unused, max_age=$max_age, recalc_p=$recalc_p"
8973
8974         # set lru_max_age to 1 sec
8975         $LCTL set_param $nsdir.lru_max_age=1000 # milliseconds
8976         echo "sleep $((recalc_p * 2)) seconds..."
8977         sleep $((recalc_p * 2))
8978
8979         local remaining=$($LCTL get_param -n $nsdir.lock_unused_count)
8980         # restore lru_max_age
8981         $LCTL set_param -n $nsdir.lru_max_age $max_age
8982         [ $remaining -eq 0 ] || error "$remaining locks are not canceled"
8983         unlinkmany $DIR/$tdir/f $nr
8984 }
8985 run_test 124c "LRUR cancel very aged locks"
8986
8987 test_125() { # 13358
8988         $LCTL get_param -n llite.*.client_type | grep -q local ||
8989                 { skip "must run as local client"; return; }
8990         $LCTL get_param -n mdc.*-mdc-*.connect_flags | grep -q acl ||
8991                 { skip "must have acl enabled"; return; }
8992         [ -z "$(which setfacl)" ] && skip "must have setfacl tool" && return
8993         test_mkdir $DIR/$tdir
8994         $LFS setstripe -S 65536 -c -1 $DIR/$tdir || error "setstripe failed"
8995         setfacl -R -m u:bin:rwx $DIR/$tdir || error "setfacl $DIR/$tdir failed"
8996         ls -ld $DIR/$tdir || error "cannot access $DIR/$tdir"
8997 }
8998 run_test 125 "don't return EPROTO when a dir has a non-default striping and ACLs"
8999
9000 test_126() { # bug 12829/13455
9001         $LCTL get_param -n llite.*.client_type | grep -q local ||
9002                 { skip "must run as local client"; return; }
9003         [ "$UID" != 0 ] && skip_env "$TESTNAME (must run as root)" && return
9004         $GSS && skip "must run as gss disabled" && return
9005
9006         $RUNAS -u 0 -g 1 touch $DIR/$tfile || error "touch failed"
9007         gid=`ls -n $DIR/$tfile | awk '{print $4}'`
9008         rm -f $DIR/$tfile
9009         [ $gid -eq "1" ] || error "gid is set to" $gid "instead of 1"
9010 }
9011 run_test 126 "check that the fsgid provided by the client is taken into account"
9012
9013 test_127a() { # bug 15521
9014         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9015         $SETSTRIPE -i 0 -c 1 $DIR/$tfile || error "setstripe failed"
9016         $LCTL set_param osc.*.stats=0
9017         FSIZE=$((2048 * 1024))
9018         dd if=/dev/zero of=$DIR/$tfile bs=$FSIZE count=1
9019         cancel_lru_locks osc
9020         dd if=$DIR/$tfile of=/dev/null bs=$FSIZE
9021
9022         $LCTL get_param osc.*0000-osc-*.stats | grep samples > $DIR/${tfile}.tmp
9023         while read NAME COUNT SAMP UNIT MIN MAX SUM SUMSQ; do
9024                 echo "got $COUNT $NAME"
9025                 [ ! $MIN ] && error "Missing min value for $NAME proc entry"
9026                 eval $NAME=$COUNT || error "Wrong proc format"
9027
9028                 case $NAME in
9029                         read_bytes|write_bytes)
9030                         [ $MIN -lt 4096 ] && error "min is too small: $MIN"
9031                         [ $MIN -gt $FSIZE ] && error "min is too big: $MIN"
9032                         [ $MAX -lt 4096 ] && error "max is too small: $MAX"
9033                         [ $MAX -gt $FSIZE ] && error "max is too big: $MAX"
9034                         [ $SUM -ne $FSIZE ] && error "sum is wrong: $SUM"
9035                         [ $SUMSQ -lt $(((FSIZE /4096) * (4096 * 4096))) ] &&
9036                                 error "sumsquare is too small: $SUMSQ"
9037                         [ $SUMSQ -gt $((FSIZE * FSIZE)) ] &&
9038                                 error "sumsquare is too big: $SUMSQ"
9039                         ;;
9040                         *) ;;
9041                 esac
9042         done < $DIR/${tfile}.tmp
9043
9044         #check that we actually got some stats
9045         [ "$read_bytes" ] || error "Missing read_bytes stats"
9046         [ "$write_bytes" ] || error "Missing write_bytes stats"
9047         [ "$read_bytes" != 0 ] || error "no read done"
9048         [ "$write_bytes" != 0 ] || error "no write done"
9049 }
9050 run_test 127a "verify the client stats are sane"
9051
9052 test_127b() { # bug LU-333
9053         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9054         $LCTL set_param llite.*.stats=0
9055         FSIZE=65536 # sized fixed to match PAGE_SIZE for most clients
9056         # perform 2 reads and writes so MAX is different from SUM.
9057         dd if=/dev/zero of=$DIR/$tfile bs=$FSIZE count=1
9058         dd if=/dev/zero of=$DIR/$tfile bs=$FSIZE count=1
9059         cancel_lru_locks osc
9060         dd if=$DIR/$tfile of=/dev/null bs=$FSIZE count=1
9061         dd if=$DIR/$tfile of=/dev/null bs=$FSIZE count=1
9062
9063         $LCTL get_param llite.*.stats | grep samples > $TMP/${tfile}.tmp
9064         while read NAME COUNT SAMP UNIT MIN MAX SUM SUMSQ; do
9065                 echo "got $COUNT $NAME"
9066                 eval $NAME=$COUNT || error "Wrong proc format"
9067
9068         case $NAME in
9069                 read_bytes)
9070                         [ $COUNT -ne 2 ] && error "count is not 2: $COUNT"
9071                         [ $MIN -ne $FSIZE ] && error "min is not $FSIZE: $MIN"
9072                         [ $MAX -ne $FSIZE ] && error "max is incorrect: $MAX"
9073                         [ $SUM -ne $((FSIZE * 2)) ] && error "sum is wrong: $SUM"
9074                         ;;
9075                 write_bytes)
9076                         [ $COUNT -ne 2 ] && error "count is not 2: $COUNT"
9077                         [ $MIN -ne $FSIZE ] && error "min is not $FSIZE: $MIN"
9078                         [ $MAX -ne $FSIZE ] && error "max is incorrect: $MAX"
9079                         [ $SUM -ne $((FSIZE * 2)) ] && error "sum is wrong: $SUM"
9080                         ;;
9081                         *) ;;
9082                 esac
9083         done < $TMP/${tfile}.tmp
9084
9085         #check that we actually got some stats
9086         [ "$read_bytes" ] || error "Missing read_bytes stats"
9087         [ "$write_bytes" ] || error "Missing write_bytes stats"
9088         [ "$read_bytes" != 0 ] || error "no read done"
9089         [ "$write_bytes" != 0 ] || error "no write done"
9090
9091         rm -f $TMP/${tfile}.tmp
9092 }
9093 run_test 127b "verify the llite client stats are sane"
9094
9095 test_128() { # bug 15212
9096         touch $DIR/$tfile
9097         $LFS 2>&1 <<-EOF | tee $TMP/$tfile.log
9098                 find $DIR/$tfile
9099                 find $DIR/$tfile
9100         EOF
9101
9102         result=$(grep error $TMP/$tfile.log)
9103         rm -f $DIR/$tfile $TMP/$tfile.log
9104         [ -z "$result" ] ||
9105                 error "consecutive find's under interactive lfs failed"
9106 }
9107 run_test 128 "interactive lfs for 2 consecutive find's"
9108
9109 set_dir_limits () {
9110         local mntdev
9111         local canondev
9112         local node
9113
9114         local ldproc=/proc/fs/ldiskfs
9115         local facets=$(get_facets MDS)
9116
9117         for facet in ${facets//,/ }; do
9118                 canondev=$(ldiskfs_canon \
9119                            *.$(convert_facet2label $facet).mntdev $facet)
9120                 do_facet $facet "test -e $ldproc/$canondev/max_dir_size" ||
9121                         ldproc=/sys/fs/ldiskfs
9122                 do_facet $facet "echo $1 >$ldproc/$canondev/max_dir_size"
9123                 do_facet $facet "echo $2 >$ldproc/$canondev/warning_dir_size"
9124         done
9125 }
9126
9127 check_mds_dmesg() {
9128         local facets=$(get_facets MDS)
9129         for facet in ${facets//,/ }; do
9130                 do_facet $facet "dmesg | tail -3 | grep -q $1" && return 0
9131         done
9132         return 1
9133 }
9134
9135 test_129() {
9136         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.5.56) ]] ||
9137                 { skip "Need MDS version with at least 2.5.56"; return 0; }
9138
9139         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9140         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
9141                 skip "ldiskfs only test"
9142                 return
9143         fi
9144         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9145         local ENOSPC=28
9146         local EFBIG=27
9147         local has_warning=false
9148
9149         rm -rf $DIR/$tdir
9150         mkdir -p $DIR/$tdir
9151
9152         # block size of mds1
9153         local maxsize=$(($($LCTL get_param -n mdc.*MDT0000*.blocksize) * 5))
9154         set_dir_limits $maxsize $maxsize
9155         local dirsize=$(stat -c%s "$DIR/$tdir")
9156         local nfiles=0
9157         while [[ $dirsize -le $maxsize ]]; do
9158                 $MULTIOP $DIR/$tdir/file_base_$nfiles Oc
9159                 rc=$?
9160                 if ! $has_warning; then
9161                         check_mds_dmesg '"is approaching"' && has_warning=true
9162                 fi
9163                 # check two errors:
9164                 # ENOSPC for new ext4 max_dir_size (kernel commit df981d03ee)
9165                 # EFBIG for previous versions included in ldiskfs series
9166                 if [ $rc -eq $EFBIG -o $rc -eq $ENOSPC ]; then
9167                         set_dir_limits 0 0
9168                         echo "return code $rc received as expected"
9169
9170                         createmany -o $DIR/$tdir/file_extra_$nfiles. 5 ||
9171                                 error_exit "create failed w/o dir size limit"
9172
9173                         check_mds_dmesg '"has reached"' ||
9174                                 error_exit "reached message should be output"
9175
9176                         [ $has_warning -eq 0 ] &&
9177                                 error_exit "warning message should be output"
9178
9179                         dirsize=$(stat -c%s "$DIR/$tdir")
9180
9181                         [[ $dirsize -ge $maxsize ]] && return 0
9182                         error_exit "current dir size $dirsize, " \
9183                                    "previous limit $maxsize"
9184                 elif [ $rc -ne 0 ]; then
9185                         set_dir_limits 0 0
9186                         error_exit "return $rc received instead of expected " \
9187                                    "$EFBIG or $ENOSPC, files in dir $dirsize"
9188                 fi
9189                 nfiles=$((nfiles + 1))
9190                 dirsize=$(stat -c%s "$DIR/$tdir")
9191         done
9192
9193         set_dir_limits 0 0
9194         error "exceeded dir size limit $maxsize($MDSCOUNT) : $dirsize bytes"
9195 }
9196 run_test 129 "test directory size limit ========================"
9197
9198 OLDIFS="$IFS"
9199 cleanup_130() {
9200         trap 0
9201         IFS="$OLDIFS"
9202 }
9203
9204 test_130a() {
9205         local filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
9206         [ -n "$filefrag_op" ] && skip_env "filefrag does not support FIEMAP" &&
9207                 return
9208
9209         trap cleanup_130 EXIT RETURN
9210
9211         local fm_file=$DIR/$tfile
9212         $SETSTRIPE -S 65536 -c 1 $fm_file || error "setstripe on $fm_file"
9213         dd if=/dev/zero of=$fm_file bs=65536 count=1 ||
9214                 error "dd failed for $fm_file"
9215
9216         # LU-1795: test filefrag/FIEMAP once, even if unsupported
9217         filefrag -ves $fm_file
9218         RC=$?
9219         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
9220                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
9221         [ $RC != 0 ] && error "filefrag $fm_file failed"
9222
9223         filefrag_op=$(filefrag -ve $fm_file |
9224                         sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
9225         lun=$($GETSTRIPE -i $fm_file)
9226
9227         start_blk=`echo $filefrag_op | cut -d: -f2 | cut -d. -f1`
9228         IFS=$'\n'
9229         tot_len=0
9230         for line in $filefrag_op
9231         do
9232                 frag_lun=`echo $line | cut -d: -f5`
9233                 ext_len=`echo $line | cut -d: -f4`
9234                 if (( $frag_lun != $lun )); then
9235                         cleanup_130
9236                         error "FIEMAP on 1-stripe file($fm_file) failed"
9237                         return
9238                 fi
9239                 (( tot_len += ext_len ))
9240         done
9241
9242         if (( lun != frag_lun || start_blk != 0 || tot_len != 64 )); then
9243                 cleanup_130
9244                 error "FIEMAP on 1-stripe file($fm_file) failed;"
9245                 return
9246         fi
9247
9248         cleanup_130
9249
9250         echo "FIEMAP on single striped file succeeded"
9251 }
9252 run_test 130a "FIEMAP (1-stripe file)"
9253
9254 test_130b() {
9255         [ "$OSTCOUNT" -lt "2" ] && skip_env "needs >= 2 OSTs" && return
9256
9257         local filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
9258         [ -n "$filefrag_op" ] && skip_env "filefrag does not support FIEMAP" &&
9259                 return
9260
9261         trap cleanup_130 EXIT RETURN
9262
9263         local fm_file=$DIR/$tfile
9264         $SETSTRIPE -S 65536 -c $OSTCOUNT $fm_file ||
9265                         error "setstripe on $fm_file"
9266         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
9267                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
9268
9269         dd if=/dev/zero of=$fm_file bs=1M count=$OSTCOUNT ||
9270                 error "dd failed on $fm_file"
9271
9272         filefrag -ves $fm_file || error "filefrag $fm_file failed"
9273         filefrag_op=$(filefrag -ve $fm_file |
9274                         sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
9275
9276         last_lun=$(echo $filefrag_op | cut -d: -f5 |
9277                 sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
9278
9279         IFS=$'\n'
9280         tot_len=0
9281         num_luns=1
9282         for line in $filefrag_op
9283         do
9284                 frag_lun=$(echo $line | cut -d: -f5 |
9285                         sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
9286                 ext_len=$(echo $line | cut -d: -f4)
9287                 if (( $frag_lun != $last_lun )); then
9288                         if (( tot_len != 1024 )); then
9289                                 cleanup_130
9290                                 error "FIEMAP on $fm_file failed; returned " \
9291                                 "len $tot_len for OST $last_lun instead of 1024"
9292                                 return
9293                         else
9294                                 (( num_luns += 1 ))
9295                                 tot_len=0
9296                         fi
9297                 fi
9298                 (( tot_len += ext_len ))
9299                 last_lun=$frag_lun
9300         done
9301         if (( num_luns != $OSTCOUNT || tot_len != 1024 )); then
9302                 cleanup_130
9303                 error "FIEMAP on $fm_file failed; returned wrong number of " \
9304                         "luns or wrong len for OST $last_lun"
9305                 return
9306         fi
9307
9308         cleanup_130
9309
9310         echo "FIEMAP on $OSTCOUNT-stripe file succeeded"
9311 }
9312 run_test 130b "FIEMAP ($OSTCOUNT-stripe file)"
9313
9314 test_130c() {
9315         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
9316
9317         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
9318         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP" &&
9319                 return
9320
9321         trap cleanup_130 EXIT RETURN
9322
9323         local fm_file=$DIR/$tfile
9324         $SETSTRIPE -S 65536 -c 2 $fm_file || error "setstripe on $fm_file"
9325         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
9326                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
9327
9328         dd if=/dev/zero of=$fm_file seek=1 bs=1M count=1 ||
9329                         error "dd failed on $fm_file"
9330
9331         filefrag -ves $fm_file || error "filefrag $fm_file failed"
9332         filefrag_op=$(filefrag -ve $fm_file |
9333                 sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
9334
9335         last_lun=$(echo $filefrag_op | cut -d: -f5 |
9336                 sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
9337
9338         IFS=$'\n'
9339         tot_len=0
9340         num_luns=1
9341         for line in $filefrag_op
9342         do
9343                 frag_lun=$(echo $line | cut -d: -f5 |
9344                         sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
9345                 ext_len=$(echo $line | cut -d: -f4)
9346                 if (( $frag_lun != $last_lun )); then
9347                         logical=`echo $line | cut -d: -f2 | cut -d. -f1`
9348                         if (( logical != 512 )); then
9349                                 cleanup_130
9350                                 error "FIEMAP on $fm_file failed; returned " \
9351                                 "logical start for lun $logical instead of 512"
9352                                 return
9353                         fi
9354                         if (( tot_len != 512 )); then
9355                                 cleanup_130
9356                                 error "FIEMAP on $fm_file failed; returned " \
9357                                 "len $tot_len for OST $last_lun instead of 1024"
9358                                 return
9359                         else
9360                                 (( num_luns += 1 ))
9361                                 tot_len=0
9362                         fi
9363                 fi
9364                 (( tot_len += ext_len ))
9365                 last_lun=$frag_lun
9366         done
9367         if (( num_luns != 2 || tot_len != 512 )); then
9368                 cleanup_130
9369                 error "FIEMAP on $fm_file failed; returned wrong number of " \
9370                         "luns or wrong len for OST $last_lun"
9371                 return
9372         fi
9373
9374         cleanup_130
9375
9376         echo "FIEMAP on 2-stripe file with hole succeeded"
9377 }
9378 run_test 130c "FIEMAP (2-stripe file with hole)"
9379
9380 test_130d() {
9381         [[ $OSTCOUNT -lt 3 ]] && skip_env "needs >= 3 OSTs" && return
9382
9383         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
9384         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP" &&
9385                 return
9386
9387         trap cleanup_130 EXIT RETURN
9388
9389         local fm_file=$DIR/$tfile
9390         $SETSTRIPE -S 65536 -c $OSTCOUNT $fm_file ||
9391                         error "setstripe on $fm_file"
9392         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
9393                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
9394
9395         local actual_stripe_count=$($GETSTRIPE -c $fm_file)
9396         dd if=/dev/zero of=$fm_file bs=1M count=$actual_stripe_count ||
9397                 error "dd failed on $fm_file"
9398
9399         filefrag -ves $fm_file || error "filefrag $fm_file failed"
9400         filefrag_op=$(filefrag -ve $fm_file |
9401                         sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
9402
9403         last_lun=$(echo $filefrag_op | cut -d: -f5 |
9404                 sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
9405
9406         IFS=$'\n'
9407         tot_len=0
9408         num_luns=1
9409         for line in $filefrag_op
9410         do
9411                 frag_lun=$(echo $line | cut -d: -f5 |
9412                         sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
9413                 ext_len=$(echo $line | cut -d: -f4)
9414                 if (( $frag_lun != $last_lun )); then
9415                         if (( tot_len != 1024 )); then
9416                                 cleanup_130
9417                                 error "FIEMAP on $fm_file failed; returned " \
9418                                 "len $tot_len for OST $last_lun instead of 1024"
9419                                 return
9420                         else
9421                                 (( num_luns += 1 ))
9422                                 tot_len=0
9423                         fi
9424                 fi
9425                 (( tot_len += ext_len ))
9426                 last_lun=$frag_lun
9427         done
9428         if (( num_luns != actual_stripe_count || tot_len != 1024 )); then
9429                 cleanup_130
9430                 error "FIEMAP on $fm_file failed; returned wrong number of " \
9431                         "luns or wrong len for OST $last_lun"
9432                 return
9433         fi
9434
9435         cleanup_130
9436
9437         echo "FIEMAP on N-stripe file succeeded"
9438 }
9439 run_test 130d "FIEMAP (N-stripe file)"
9440
9441 test_130e() {
9442         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
9443
9444         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
9445         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP" && return
9446
9447         trap cleanup_130 EXIT RETURN
9448
9449         local fm_file=$DIR/$tfile
9450         $SETSTRIPE -S 131072 -c 2 $fm_file || error "setstripe on $fm_file"
9451         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
9452                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
9453
9454         NUM_BLKS=512
9455         EXPECTED_LEN=$(( (NUM_BLKS / 2) * 64 ))
9456         for ((i = 0; i < $NUM_BLKS; i++))
9457         do
9458                 dd if=/dev/zero of=$fm_file count=1 bs=64k seek=$((2*$i)) conv=notrunc > /dev/null 2>&1
9459         done
9460
9461         filefrag -ves $fm_file || error "filefrag $fm_file failed"
9462         filefrag_op=$(filefrag -ve $fm_file |
9463                         sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
9464
9465         last_lun=$(echo $filefrag_op | cut -d: -f5 |
9466                 sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
9467
9468         IFS=$'\n'
9469         tot_len=0
9470         num_luns=1
9471         for line in $filefrag_op
9472         do
9473                 frag_lun=$(echo $line | cut -d: -f5 |
9474                         sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
9475                 ext_len=$(echo $line | cut -d: -f4)
9476                 if (( $frag_lun != $last_lun )); then
9477                         if (( tot_len != $EXPECTED_LEN )); then
9478                                 cleanup_130
9479                                 error "FIEMAP on $fm_file failed; returned " \
9480                                 "len $tot_len for OST $last_lun instead " \
9481                                 "of $EXPECTED_LEN"
9482                                 return
9483                         else
9484                                 (( num_luns += 1 ))
9485                                 tot_len=0
9486                         fi
9487                 fi
9488                 (( tot_len += ext_len ))
9489                 last_lun=$frag_lun
9490         done
9491         if (( num_luns != 2 || tot_len != $EXPECTED_LEN )); then
9492                 cleanup_130
9493                 error "FIEMAP on $fm_file failed; returned wrong number " \
9494                         "of luns or wrong len for OST $last_lun"
9495                 return
9496         fi
9497
9498         cleanup_130
9499
9500         echo "FIEMAP with continuation calls succeeded"
9501 }
9502 run_test 130e "FIEMAP (test continuation FIEMAP calls)"
9503
9504 # Test for writev/readv
9505 test_131a() {
9506         rwv -f $DIR/$tfile -w -n 3 524288 1048576 1572864 ||
9507                 error "writev test failed"
9508         rwv -f $DIR/$tfile -r -v -n 2 1572864 1048576 ||
9509                 error "readv failed"
9510         rm -f $DIR/$tfile
9511 }
9512 run_test 131a "test iov's crossing stripe boundary for writev/readv"
9513
9514 test_131b() {
9515         local fsize=$((524288 + 1048576 + 1572864))
9516         rwv -f $DIR/$tfile -w -a -n 3 524288 1048576 1572864 &&
9517                 $CHECKSTAT -t file $DIR/$tfile -s $fsize ||
9518                         error "append writev test failed"
9519
9520         ((fsize += 1572864 + 1048576))
9521         rwv -f $DIR/$tfile -w -a -n 2 1572864 1048576 &&
9522                 $CHECKSTAT -t file $DIR/$tfile -s $fsize ||
9523                         error "append writev test failed"
9524         rm -f $DIR/$tfile
9525 }
9526 run_test 131b "test append writev"
9527
9528 test_131c() {
9529         rwv -f $DIR/$tfile -w -d -n 1 1048576 || return 0
9530         error "NOT PASS"
9531 }
9532 run_test 131c "test read/write on file w/o objects"
9533
9534 test_131d() {
9535         rwv -f $DIR/$tfile -w -n 1 1572864
9536         NOB=`rwv -f $DIR/$tfile -r -n 3 524288 524288 1048576 | awk '/error/ {print $6}'`
9537         if [ "$NOB" != 1572864 ]; then
9538                 error "Short read filed: read $NOB bytes instead of 1572864"
9539         fi
9540         rm -f $DIR/$tfile
9541 }
9542 run_test 131d "test short read"
9543
9544 test_131e() {
9545         rwv -f $DIR/$tfile -w -s 1048576 -n 1 1048576
9546         rwv -f $DIR/$tfile -r -z -s 0 -n 1 524288 || \
9547         error "read hitting hole failed"
9548         rm -f $DIR/$tfile
9549 }
9550 run_test 131e "test read hitting hole"
9551
9552 check_stats() {
9553         local facet=$1
9554         local op=$2
9555         local want=${3:-0}
9556         local res
9557
9558         case $facet in
9559         mds*) res=$(do_facet $facet \
9560                    $LCTL get_param mdt.$FSNAME-MDT0000.md_stats | grep "$op")
9561                  ;;
9562         ost*) res=$(do_facet $facet \
9563                    $LCTL get_param obdfilter.$FSNAME-OST0000.stats | grep "$op")
9564                  ;;
9565         *) error "Wrong facet '$facet'" ;;
9566         esac
9567         echo $res
9568         [ "$res" ] || error "The counter for $op on $facet was not incremented"
9569         # if the argument $3 is zero, it means any stat increment is ok.
9570         if [[ $want -gt 0 ]]; then
9571                 local count=$(echo $res | awk '{ print $2 }')
9572                 [[ $count -ne $want ]] &&
9573                         error "The $op counter on $facet is $count, not $want"
9574         fi
9575 }
9576
9577 test_133a() {
9578         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9579         remote_ost_nodsh && skip "remote OST with nodsh" && return
9580         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9581
9582         do_facet $SINGLEMDS $LCTL list_param mdt.*.rename_stats ||
9583                 { skip "MDS doesn't support rename stats"; return; }
9584         local testdir=$DIR/${tdir}/stats_testdir
9585         mkdir -p $DIR/${tdir}
9586
9587         # clear stats.
9588         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
9589         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
9590
9591         # verify mdt stats first.
9592         mkdir ${testdir} || error "mkdir failed"
9593         check_stats $SINGLEMDS "mkdir" 1
9594         touch ${testdir}/${tfile} || error "touch failed"
9595         check_stats $SINGLEMDS "open" 1
9596         check_stats $SINGLEMDS "close" 1
9597         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.8.54) ] && {
9598                 mknod ${testdir}/${tfile}-pipe p || error "mknod failed"
9599                 check_stats $SINGLEMDS "mknod" 2
9600         }
9601         rm -f ${testdir}/${tfile}-pipe || error "pipe remove failed"
9602         check_stats $SINGLEMDS "unlink" 1
9603         rm -f ${testdir}/${tfile} || error "file remove failed"
9604         check_stats $SINGLEMDS "unlink" 2
9605
9606         # remove working dir and check mdt stats again.
9607         rmdir ${testdir} || error "rmdir failed"
9608         check_stats $SINGLEMDS "rmdir" 1
9609
9610         local testdir1=$DIR/${tdir}/stats_testdir1
9611         mkdir -p ${testdir}
9612         mkdir -p ${testdir1}
9613         touch ${testdir1}/test1
9614         mv ${testdir1}/test1 ${testdir} || error "file crossdir rename"
9615         check_stats $SINGLEMDS "crossdir_rename" 1
9616
9617         mv ${testdir}/test1 ${testdir}/test0 || error "file samedir rename"
9618         check_stats $SINGLEMDS "samedir_rename" 1
9619
9620         rm -rf $DIR/${tdir}
9621 }
9622 run_test 133a "Verifying MDT stats ========================================"
9623
9624 test_133b() {
9625         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9626         remote_ost_nodsh && skip "remote OST with nodsh" && return
9627         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9628         local testdir=$DIR/${tdir}/stats_testdir
9629         mkdir -p ${testdir} || error "mkdir failed"
9630         touch ${testdir}/${tfile} || error "touch failed"
9631         cancel_lru_locks mdc
9632
9633         # clear stats.
9634         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
9635         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
9636
9637         # extra mdt stats verification.
9638         chmod 444 ${testdir}/${tfile} || error "chmod failed"
9639         check_stats $SINGLEMDS "setattr" 1
9640         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
9641         if [ $(lustre_version_code $SINGLEMDS) -ne $(version_code 2.2.0) ]
9642         then            # LU-1740
9643                 ls -l ${testdir}/${tfile} > /dev/null|| error "ls failed"
9644                 check_stats $SINGLEMDS "getattr" 1
9645         fi
9646         $LFS df || error "lfs failed"
9647         check_stats $SINGLEMDS "statfs" 1
9648
9649         rm -rf $DIR/${tdir}
9650 }
9651 run_test 133b "Verifying extra MDT stats =================================="
9652
9653 test_133c() {
9654         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9655         remote_ost_nodsh && skip "remote OST with nodsh" && return
9656         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9657         local testdir=$DIR/$tdir/stats_testdir
9658         test_mkdir -p $testdir
9659
9660         # verify obdfilter stats.
9661         $SETSTRIPE -c 1 -i 0 $testdir/$tfile
9662         sync
9663         cancel_lru_locks osc
9664         wait_delete_completed
9665
9666         # clear stats.
9667         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
9668         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
9669
9670         dd if=/dev/zero of=$testdir/$tfile conv=notrunc bs=512k count=1 ||
9671                 error "dd failed"
9672         sync
9673         cancel_lru_locks osc
9674         check_stats ost1 "write" 1
9675
9676         dd if=$testdir/$tfile of=/dev/null bs=1k count=1 || error "dd failed"
9677         check_stats ost1 "read" 1
9678
9679         > $testdir/$tfile || error "truncate failed"
9680         check_stats ost1 "punch" 1
9681
9682         rm -f $testdir/$tfile || error "file remove failed"
9683         wait_delete_completed
9684         check_stats ost1 "destroy" 1
9685
9686         rm -rf $DIR/$tdir
9687 }
9688 run_test 133c "Verifying OST stats ========================================"
9689
9690 order_2() {
9691         local value=$1
9692         local orig=$value
9693         local order=1
9694
9695         while [ $value -ge 2 ]; do
9696                 order=$((order*2))
9697                 value=$((value/2))
9698         done
9699
9700         if [ $orig -gt $order ]; then
9701                 order=$((order*2))
9702         fi
9703         echo $order
9704 }
9705
9706 size_in_KMGT() {
9707     local value=$1
9708     local size=('K' 'M' 'G' 'T');
9709     local i=0
9710     local size_string=$value
9711
9712     while [ $value -ge 1024 ]; do
9713         if [ $i -gt 3 ]; then
9714             #T is the biggest unit we get here, if that is bigger,
9715             #just return XXXT
9716             size_string=${value}T
9717             break
9718         fi
9719         value=$((value >> 10))
9720         if [ $value -lt 1024 ]; then
9721             size_string=${value}${size[$i]}
9722             break
9723         fi
9724         i=$((i + 1))
9725     done
9726
9727     echo $size_string
9728 }
9729
9730 get_rename_size() {
9731     local size=$1
9732     local context=${2:-.}
9733     local sample=$(do_facet $SINGLEMDS $LCTL get_param mdt.*.rename_stats |
9734                 grep -A1 $context |
9735                 awk '/ '${size}'/ {print $4}' | sed -e "s/,//g")
9736     echo $sample
9737 }
9738
9739 test_133d() {
9740         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9741         remote_ost_nodsh && skip "remote OST with nodsh" && return
9742         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9743         do_facet $SINGLEMDS $LCTL list_param mdt.*.rename_stats ||
9744         { skip "MDS doesn't support rename stats"; return; }
9745
9746         local testdir1=$DIR/${tdir}/stats_testdir1
9747         local testdir2=$DIR/${tdir}/stats_testdir2
9748
9749         do_facet $SINGLEMDS $LCTL set_param mdt.*.rename_stats=clear
9750
9751         mkdir -p ${testdir1} || error "mkdir failed"
9752         mkdir -p ${testdir2} || error "mkdir failed"
9753
9754         createmany -o $testdir1/test 512 || error "createmany failed"
9755
9756         # check samedir rename size
9757         mv ${testdir1}/test0 ${testdir1}/test_0
9758
9759         local testdir1_size=$(ls -l $DIR/${tdir} |
9760                 awk '/stats_testdir1/ {print $5}')
9761         local testdir2_size=$(ls -l $DIR/${tdir} |
9762                 awk '/stats_testdir2/ {print $5}')
9763
9764         testdir1_size=$(order_2 $testdir1_size)
9765         testdir2_size=$(order_2 $testdir2_size)
9766
9767         testdir1_size=$(size_in_KMGT $testdir1_size)
9768         testdir2_size=$(size_in_KMGT $testdir2_size)
9769
9770         echo "source rename dir size: ${testdir1_size}"
9771         echo "target rename dir size: ${testdir2_size}"
9772
9773         local cmd="do_facet $SINGLEMDS $LCTL get_param mdt.*.rename_stats"
9774         eval $cmd || error "$cmd failed"
9775         local samedir=$($cmd | grep 'same_dir')
9776         local same_sample=$(get_rename_size $testdir1_size)
9777         [ -z "$samedir" ] && error "samedir_rename_size count error"
9778         [[ $same_sample -eq 1 ]] ||
9779                 error "samedir_rename_size error $same_sample"
9780         echo "Check same dir rename stats success"
9781
9782         do_facet $SINGLEMDS $LCTL set_param mdt.*.rename_stats=clear
9783
9784         # check crossdir rename size
9785         mv ${testdir1}/test_0 ${testdir2}/test_0
9786
9787         testdir1_size=$(ls -l $DIR/${tdir} |
9788                 awk '/stats_testdir1/ {print $5}')
9789         testdir2_size=$(ls -l $DIR/${tdir} |
9790                 awk '/stats_testdir2/ {print $5}')
9791
9792         testdir1_size=$(order_2 $testdir1_size)
9793         testdir2_size=$(order_2 $testdir2_size)
9794
9795         testdir1_size=$(size_in_KMGT $testdir1_size)
9796         testdir2_size=$(size_in_KMGT $testdir2_size)
9797
9798         echo "source rename dir size: ${testdir1_size}"
9799         echo "target rename dir size: ${testdir2_size}"
9800
9801         eval $cmd || error "$cmd failed"
9802         local crossdir=$($cmd | grep 'crossdir')
9803         local src_sample=$(get_rename_size $testdir1_size crossdir_src)
9804         local tgt_sample=$(get_rename_size $testdir2_size crossdir_tgt)
9805         [ -z "$crossdir" ] && error "crossdir_rename_size count error"
9806         [[ $src_sample -eq 1 ]] ||
9807                 error "crossdir_rename_size error $src_sample"
9808         [[ $tgt_sample -eq 1 ]] ||
9809                 error "crossdir_rename_size error $tgt_sample"
9810         echo "Check cross dir rename stats success"
9811         rm -rf $DIR/${tdir}
9812 }
9813 run_test 133d "Verifying rename_stats ========================================"
9814
9815 test_133e() {
9816         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9817         remote_ost_nodsh && skip "remote OST with nodsh" && return
9818         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9819         local testdir=$DIR/${tdir}/stats_testdir
9820         local ctr f0 f1 bs=32768 count=42 sum
9821
9822         mkdir -p ${testdir} || error "mkdir failed"
9823
9824         $SETSTRIPE -c 1 -i 0 ${testdir}/${tfile}
9825
9826         for ctr in {write,read}_bytes; do
9827                 sync
9828                 cancel_lru_locks osc
9829
9830                 do_facet ost1 $LCTL set_param -n \
9831                         "obdfilter.*.exports.clear=clear"
9832
9833                 if [ $ctr = write_bytes ]; then
9834                         f0=/dev/zero
9835                         f1=${testdir}/${tfile}
9836                 else
9837                         f0=${testdir}/${tfile}
9838                         f1=/dev/null
9839                 fi
9840
9841                 dd if=$f0 of=$f1 conv=notrunc bs=$bs count=$count || \
9842                         error "dd failed"
9843                 sync
9844                 cancel_lru_locks osc
9845
9846                 sum=$(do_facet ost1 $LCTL get_param \
9847                         "obdfilter.*.exports.*.stats" |
9848                         awk -v ctr=$ctr 'BEGIN { sum = 0 }
9849                                 $1 == ctr { sum += $7 }
9850                                 END { printf("%0.0f", sum) }')
9851
9852                 if ((sum != bs * count)); then
9853                         error "Bad $ctr sum, expected $((bs * count)), got $sum"
9854                 fi
9855         done
9856
9857         rm -rf $DIR/${tdir}
9858 }
9859 run_test 133e "Verifying OST {read,write}_bytes nid stats ================="
9860
9861 proc_regexp="/{proc,sys}/{fs,sys,kernel/debug}/{lustre,lnet}/"
9862
9863 test_133f() {
9864         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9865         remote_ost_nodsh && skip "remote OST with nodsh" && return
9866         # First without trusting modes.
9867         local proc_dirs=$(eval \ls -d $proc_regexp 2>/dev/null)
9868         echo "proc_dirs='$proc_dirs'"
9869         [ -n "$proc_dirs" ] || error "no proc_dirs on $HOSTNAME"
9870         find $proc_dirs -exec cat '{}' \; &> /dev/null
9871
9872         # Second verifying readability.
9873         $LCTL get_param -R '*' &> /dev/null || error "proc file read failed"
9874
9875         # eventually, this can also be replaced with "lctl get_param -R",
9876         # but not until that option is always available on the server
9877         local facet
9878         for facet in mds1 ost1; do
9879                 local facet_proc_dirs=$(do_facet $facet \
9880                                         \\\ls -d $proc_regexp 2>/dev/null)
9881                 echo "${facet}_proc_dirs='$facet_proc_dirs'"
9882                 [ -z "$facet_proc_dirs" ] && error "no proc_dirs on $facet"
9883                 do_facet $facet find $facet_proc_dirs \
9884                         ! -name req_history \
9885                         -exec cat '{}' \\\; &> /dev/null
9886
9887                 do_facet $facet find $facet_proc_dirs \
9888                         ! -name req_history \
9889                         -type f \
9890                         -exec cat '{}' \\\; &> /dev/null ||
9891                                 error "proc file read failed"
9892         done
9893 }
9894 run_test 133f "Check for LBUGs/Oopses/unreadable files in /proc"
9895
9896 test_133g() {
9897         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9898         remote_ost_nodsh && skip "remote OST with nodsh" && return
9899         # Second verifying writability.
9900         local proc_dirs=$(eval \ls -d $proc_regexp 2>/dev/null)
9901         echo "proc_dirs='$proc_dirs'"
9902         [ -n "$proc_dirs" ] || error "no proc_dirs on $HOSTNAME"
9903         find $proc_dirs \
9904                 -type f \
9905                 -not -name force_lbug \
9906                 -not -name changelog_mask \
9907                 -exec badarea_io '{}' \; &> /dev/null ||
9908                 error "find $proc_dirs failed"
9909
9910         local facet
9911         for facet in mds1 ost1; do
9912                 [ $(lustre_version_code $facet) -le $(version_code 2.5.54) ] &&
9913                         skip "Too old lustre on $facet" && continue
9914                 local facet_proc_dirs=$(do_facet $facet \
9915                                         \\\ls -d $proc_regexp 2> /dev/null)
9916                 echo "${facet}_proc_dirs='$facet_proc_dirs'"
9917                 [ -z "$facet_proc_dirs" ] && error "no proc_dirs on $facet"
9918                 do_facet $facet find $facet_proc_dirs \
9919                         -type f \
9920                         -not -name force_lbug \
9921                         -not -name changelog_mask \
9922                         -exec badarea_io '{}' \\\; &> /dev/null ||
9923                                 error "$facet find $facet_proc_dirs failed"
9924         done
9925
9926         # remount the FS in case writes/reads /proc break the FS
9927         cleanup || error "failed to unmount"
9928         setup || error "failed to setup"
9929         true
9930 }
9931 run_test 133g "Check for Oopses on bad io area writes/reads in /proc"
9932
9933 test_133h() {
9934         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9935         remote_ost_nodsh && skip "remote OST with nodsh" && return
9936         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.9.54) ]] &&
9937                 skip "Need MDS version at least 2.9.54" && return
9938
9939         local facet
9940         for facet in client mds1 ost1; do
9941                 local facet_proc_dirs=$(do_facet $facet \
9942                                         \\\ls -d $proc_regexp 2> /dev/null)
9943                 [ -z "$facet_proc_dirs" ] && error "no proc_dirs on $facet"
9944                 echo "${facet}_proc_dirs='$facet_proc_dirs'"
9945                 # Get the list of files that are missing the terminating newline
9946                 local missing=($(do_facet $facet \
9947                         find ${facet_proc_dirs} -type f \|              \
9948                                 while read F\; do                       \
9949                                         awk -v FS='\v' -v RS='\v\v'     \
9950                                         "'END { if(NR>0 &&              \
9951                                         \\\$NF !~ /.*\\\n\$/)           \
9952                                                 print FILENAME}'"       \
9953                                         '\$F'\;                         \
9954                                 done 2>/dev/null))
9955                 [ ${#missing[*]} -eq 0 ] ||
9956                         error "files do not end with newline: ${missing[*]}"
9957         done
9958 }
9959 run_test 133h "Proc files should end with newlines"
9960
9961 test_134a() {
9962         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9963         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.54) ]] &&
9964                 skip "Need MDS version at least 2.7.54" && return
9965
9966         mkdir -p $DIR/$tdir || error "failed to create $DIR/$tdir"
9967         cancel_lru_locks mdc
9968
9969         local nsdir="ldlm.namespaces.*-MDT0000-mdc-*"
9970         local unused=$($LCTL get_param -n $nsdir.lock_unused_count)
9971         [ $unused -eq 0 ] || error "$unused locks are not cleared"
9972
9973         local nr=1000
9974         createmany -o $DIR/$tdir/f $nr ||
9975                 error "failed to create $nr files in $DIR/$tdir"
9976         unused=$($LCTL get_param -n $nsdir.lock_unused_count)
9977
9978         #define OBD_FAIL_LDLM_WATERMARK_LOW     0x327
9979         do_facet mds1 $LCTL set_param fail_loc=0x327
9980         do_facet mds1 $LCTL set_param fail_val=500
9981         touch $DIR/$tdir/m
9982
9983         echo "sleep 10 seconds ..."
9984         sleep 10
9985         local lck_cnt=$($LCTL get_param -n $nsdir.lock_unused_count)
9986
9987         do_facet mds1 $LCTL set_param fail_loc=0
9988         do_facet mds1 $LCTL set_param fail_val=0
9989         [ $lck_cnt -lt $unused ] ||
9990                 error "No locks reclaimed, before:$unused, after:$lck_cnt"
9991
9992         rm $DIR/$tdir/m
9993         unlinkmany $DIR/$tdir/f $nr
9994 }
9995 run_test 134a "Server reclaims locks when reaching lock_reclaim_threshold"
9996
9997 test_134b() {
9998         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9999         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.54) ]] &&
10000                 skip "Need MDS version at least 2.7.54" && return
10001
10002         mkdir -p $DIR/$tdir || error "failed to create $DIR/$tdir"
10003         cancel_lru_locks mdc
10004
10005         local low_wm=$(do_facet mds1 $LCTL get_param -n \
10006                         ldlm.lock_reclaim_threshold_mb)
10007         # disable reclaim temporarily
10008         do_facet mds1 $LCTL set_param ldlm.lock_reclaim_threshold_mb=0
10009
10010         #define OBD_FAIL_LDLM_WATERMARK_HIGH     0x328
10011         do_facet mds1 $LCTL set_param fail_loc=0x328
10012         do_facet mds1 $LCTL set_param fail_val=500
10013
10014         $LCTL set_param debug=+trace
10015
10016         local nr=600
10017         createmany -o $DIR/$tdir/f $nr &
10018         local create_pid=$!
10019
10020         echo "Sleep $TIMEOUT seconds ..."
10021         sleep $TIMEOUT
10022         if ! ps -p $create_pid  > /dev/null 2>&1; then
10023                 do_facet mds1 $LCTL set_param fail_loc=0
10024                 do_facet mds1 $LCTL set_param fail_val=0
10025                 do_facet mds1 $LCTL set_param \
10026                         ldlm.lock_reclaim_threshold_mb=${low_wm}m
10027                 error "createmany finished incorrectly!"
10028         fi
10029         do_facet mds1 $LCTL set_param fail_loc=0
10030         do_facet mds1 $LCTL set_param fail_val=0
10031         do_facet mds1 $LCTL set_param ldlm.lock_reclaim_threshold_mb=${low_wm}m
10032         wait $create_pid || return 1
10033
10034         unlinkmany $DIR/$tdir/f $nr
10035 }
10036 run_test 134b "Server rejects lock request when reaching lock_limit_mb"
10037
10038 test_140() { #bug-17379
10039         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10040         test_mkdir $DIR/$tdir
10041         cd $DIR/$tdir || error "Changing to $DIR/$tdir"
10042         cp $(which stat) . || error "Copying stat to $DIR/$tdir"
10043
10044         # VFS limits max symlink depth to 5(4KSTACK) or 7(8KSTACK) or 8
10045         # For kernel > 3.5, bellow only tests consecutive symlink (MAX 40)
10046         local i=0
10047         while i=$((i + 1)); do
10048                 test_mkdir $i
10049                 cd $i || error "Changing to $i"
10050                 ln -s ../stat stat || error "Creating stat symlink"
10051                 # Read the symlink until ELOOP present,
10052                 # not LBUGing the system is considered success,
10053                 # we didn't overrun the stack.
10054                 $OPENFILE -f O_RDONLY stat >/dev/null 2>&1; ret=$?
10055                 if [ $ret -ne 0 ]; then
10056                         if [ $ret -eq 40 ]; then
10057                                 break  # -ELOOP
10058                         else
10059                                 error "Open stat symlink"
10060                                         return
10061                         fi
10062                 fi
10063         done
10064         i=$((i - 1))
10065         echo "The symlink depth = $i"
10066         [ $i -eq 5 -o $i -eq 7 -o $i -eq 8 -o $i -eq 40 ] ||
10067                                         error "Invalid symlink depth"
10068
10069         # Test recursive symlink
10070         ln -s symlink_self symlink_self
10071         $OPENFILE -f O_RDONLY symlink_self >/dev/null 2>&1; ret=$?
10072         echo "open symlink_self returns $ret"
10073         [ $ret -eq 40 ] || error "recursive symlink doesn't return -ELOOP"
10074 }
10075 run_test 140 "Check reasonable stack depth (shouldn't LBUG) ===="
10076
10077 test_150() {
10078         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10079         local TF="$TMP/$tfile"
10080
10081         dd if=/dev/urandom of=$TF bs=6096 count=1 || error "dd failed"
10082         cp $TF $DIR/$tfile
10083         cancel_lru_locks osc
10084         cmp $TF $DIR/$tfile || error "$TMP/$tfile $DIR/$tfile differ"
10085         remount_client $MOUNT
10086         df -P $MOUNT
10087         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (remount)"
10088
10089         $TRUNCATE $TF 6000
10090         $TRUNCATE $DIR/$tfile 6000
10091         cancel_lru_locks osc
10092         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (truncate1)"
10093
10094         echo "12345" >>$TF
10095         echo "12345" >>$DIR/$tfile
10096         cancel_lru_locks osc
10097         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (append1)"
10098
10099         echo "12345" >>$TF
10100         echo "12345" >>$DIR/$tfile
10101         cancel_lru_locks osc
10102         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (append2)"
10103
10104         rm -f $TF
10105         true
10106 }
10107 run_test 150 "truncate/append tests"
10108
10109 #LU-2902 roc_hit was not able to read all values from lproc
10110 function roc_hit_init() {
10111         local list=$(comma_list $(osts_nodes))
10112         local dir=$DIR/$tdir-check
10113         local file=$dir/$tfile
10114         local BEFORE
10115         local AFTER
10116         local idx
10117
10118         test_mkdir $dir
10119         #use setstripe to do a write to every ost
10120         for i in $(seq 0 $((OSTCOUNT-1))); do
10121                 $SETSTRIPE -c 1 -i $i $dir || error "$SETSTRIPE $file failed"
10122                 dd if=/dev/urandom of=$file bs=4k count=4 2>&1 > /dev/null
10123                 idx=$(printf %04x $i)
10124                 BEFORE=$(get_osd_param $list *OST*$idx stats |
10125                         awk '$1 == "cache_access" {sum += $7}
10126                                 END { printf("%0.0f", sum) }')
10127
10128                 cancel_lru_locks osc
10129                 cat $file >/dev/null
10130
10131                 AFTER=$(get_osd_param $list *OST*$idx stats |
10132                         awk '$1 == "cache_access" {sum += $7}
10133                                 END { printf("%0.0f", sum) }')
10134
10135                 echo BEFORE:$BEFORE AFTER:$AFTER
10136                 if ! let "AFTER - BEFORE == 4"; then
10137                         rm -rf $dir
10138                         error "roc_hit is not safe to use"
10139                 fi
10140                 rm $file
10141         done
10142
10143         rm -rf $dir
10144 }
10145
10146 function roc_hit() {
10147         local list=$(comma_list $(osts_nodes))
10148         echo $(get_osd_param $list '' stats |
10149                 awk '$1 == "cache_hit" {sum += $7}
10150                         END { printf("%0.0f", sum) }')
10151 }
10152
10153 function set_cache() {
10154         local on=1
10155
10156         if [ "$2" == "off" ]; then
10157                 on=0;
10158         fi
10159         local list=$(comma_list $(osts_nodes))
10160         set_osd_param $list '' $1_cache_enable $on
10161
10162         cancel_lru_locks osc
10163 }
10164
10165 test_151() {
10166         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10167         remote_ost_nodsh && skip "remote OST with nodsh" && return
10168
10169         local CPAGES=3
10170         local list=$(comma_list $(osts_nodes))
10171
10172         # check whether obdfilter is cache capable at all
10173         if ! get_osd_param $list '' read_cache_enable >/dev/null; then
10174                 echo "not cache-capable obdfilter"
10175                 return 0
10176         fi
10177
10178         # check cache is enabled on all obdfilters
10179         if get_osd_param $list '' read_cache_enable | grep 0; then
10180                 echo "oss cache is disabled"
10181                 return 0
10182         fi
10183
10184         set_osd_param $list '' writethrough_cache_enable 1
10185
10186         # check write cache is enabled on all obdfilters
10187         if get_osd_param $list '' writethrough_cache_enable | grep 0; then
10188                 echo "oss write cache is NOT enabled"
10189                 return 0
10190         fi
10191
10192         roc_hit_init
10193
10194         #define OBD_FAIL_OBD_NO_LRU  0x609
10195         do_nodes $list $LCTL set_param fail_loc=0x609
10196
10197         # pages should be in the case right after write
10198         dd if=/dev/urandom of=$DIR/$tfile bs=4k count=$CPAGES ||
10199                 error "dd failed"
10200
10201         local BEFORE=$(roc_hit)
10202         cancel_lru_locks osc
10203         cat $DIR/$tfile >/dev/null
10204         local AFTER=$(roc_hit)
10205
10206         do_nodes $list $LCTL set_param fail_loc=0
10207
10208         if ! let "AFTER - BEFORE == CPAGES"; then
10209                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
10210         fi
10211
10212         # the following read invalidates the cache
10213         cancel_lru_locks osc
10214         set_osd_param $list '' read_cache_enable 0
10215         cat $DIR/$tfile >/dev/null
10216
10217         # now data shouldn't be found in the cache
10218         BEFORE=$(roc_hit)
10219         cancel_lru_locks osc
10220         cat $DIR/$tfile >/dev/null
10221         AFTER=$(roc_hit)
10222         if let "AFTER - BEFORE != 0"; then
10223                 error "IN CACHE: before: $BEFORE, after: $AFTER"
10224         fi
10225
10226         set_osd_param $list '' read_cache_enable 1
10227         rm -f $DIR/$tfile
10228 }
10229 run_test 151 "test cache on oss and controls ==============================="
10230
10231 test_152() {
10232         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10233         local TF="$TMP/$tfile"
10234
10235         # simulate ENOMEM during write
10236 #define OBD_FAIL_OST_NOMEM      0x226
10237         lctl set_param fail_loc=0x80000226
10238         dd if=/dev/urandom of=$TF bs=6096 count=1 || error "dd failed"
10239         cp $TF $DIR/$tfile
10240         sync || error "sync failed"
10241         lctl set_param fail_loc=0
10242
10243         # discard client's cache
10244         cancel_lru_locks osc
10245
10246         # simulate ENOMEM during read
10247         lctl set_param fail_loc=0x80000226
10248         cmp $TF $DIR/$tfile || error "cmp failed"
10249         lctl set_param fail_loc=0
10250
10251         rm -f $TF
10252 }
10253 run_test 152 "test read/write with enomem ============================"
10254
10255 test_153() {
10256         $MULTIOP $DIR/$tfile Ow4096Ycu || error "multiop failed"
10257 }
10258 run_test 153 "test if fdatasync does not crash ======================="
10259
10260 dot_lustre_fid_permission_check() {
10261         local fid=$1
10262         local ffid=$MOUNT/.lustre/fid/$fid
10263         local test_dir=$2
10264
10265         echo "stat fid $fid"
10266         stat $ffid > /dev/null || error "stat $ffid failed."
10267         echo "touch fid $fid"
10268         touch $ffid || error "touch $ffid failed."
10269         echo "write to fid $fid"
10270         cat /etc/hosts > $ffid || error "write $ffid failed."
10271         echo "read fid $fid"
10272         diff /etc/hosts $ffid || error "read $ffid failed."
10273         echo "append write to fid $fid"
10274         cat /etc/hosts >> $ffid || error "append write $ffid failed."
10275         echo "rename fid $fid"
10276         mv $ffid $test_dir/$tfile.1 &&
10277                 error "rename $ffid to $tfile.1 should fail."
10278         touch $test_dir/$tfile.1
10279         mv $test_dir/$tfile.1 $ffid &&
10280                 error "rename $tfile.1 to $ffid should fail."
10281         rm -f $test_dir/$tfile.1
10282         echo "truncate fid $fid"
10283         $TRUNCATE $ffid 777 || error "truncate $ffid failed."
10284         if [ $MDSCOUNT -lt 2 ]; then #FIXME when cross-MDT hard link is working
10285                 echo "link fid $fid"
10286                 ln -f $ffid $test_dir/tfile.lnk || error "link $ffid failed."
10287         fi
10288         if [ -n $(lctl get_param -n mdc.*-mdc-*.connect_flags | grep acl) ]; then
10289                 echo "setfacl fid $fid"
10290                 setfacl -R -m u:bin:rwx $ffid || error "setfacl $ffid failed."
10291                 echo "getfacl fid $fid"
10292                 getfacl $ffid >/dev/null || error "getfacl $ffid failed."
10293         fi
10294         echo "unlink fid $fid"
10295         unlink $MOUNT/.lustre/fid/$fid && error "unlink $ffid should fail."
10296         echo "mknod fid $fid"
10297         mknod $ffid c 1 3 && error "mknod $ffid should fail."
10298
10299         fid=[0xf00000400:0x1:0x0]
10300         ffid=$MOUNT/.lustre/fid/$fid
10301
10302         echo "stat non-exist fid $fid"
10303         stat $ffid > /dev/null && error "stat non-exist $ffid should fail."
10304         echo "write to non-exist fid $fid"
10305         cat /etc/hosts > $ffid && error "write non-exist $ffid should fail."
10306         echo "link new fid $fid"
10307         ln $test_dir/$tfile $ffid && error "link $ffid should fail."
10308
10309         mkdir -p $test_dir/$tdir
10310         touch $test_dir/$tdir/$tfile
10311         fid=$($LFS path2fid $test_dir/$tdir)
10312         rc=$?
10313         [ $rc -ne 0 ] &&
10314                 error "error: could not get fid for $test_dir/$dir/$tfile."
10315
10316         ffid=$MOUNT/.lustre/fid/$fid
10317
10318         echo "ls $fid"
10319         ls $ffid > /dev/null || error "ls $ffid failed."
10320         echo "touch $fid/$tfile.1"
10321         touch $ffid/$tfile.1 || error "touch $ffid/$tfile.1 failed."
10322
10323         echo "touch $MOUNT/.lustre/fid/$tfile"
10324         touch $MOUNT/.lustre/fid/$tfile && \
10325                 error "touch $MOUNT/.lustre/fid/$tfile should fail."
10326
10327         echo "setxattr to $MOUNT/.lustre/fid"
10328         setfattr -n trusted.name1 -v value1 $MOUNT/.lustre/fid
10329
10330         echo "listxattr for $MOUNT/.lustre/fid"
10331         getfattr -d -m "^trusted" $MOUNT/.lustre/fid
10332
10333         echo "delxattr from $MOUNT/.lustre/fid"
10334         setfattr -x trusted.name1 $MOUNT/.lustre/fid
10335
10336         echo "touch invalid fid: $MOUNT/.lustre/fid/[0x200000400:0x2:0x3]"
10337         touch $MOUNT/.lustre/fid/[0x200000400:0x2:0x3] &&
10338                 error "touch invalid fid should fail."
10339
10340         echo "touch non-normal fid: $MOUNT/.lustre/fid/[0x1:0x2:0x0]"
10341         touch $MOUNT/.lustre/fid/[0x1:0x2:0x0] &&
10342                 error "touch non-normal fid should fail."
10343
10344         echo "rename $tdir to $MOUNT/.lustre/fid"
10345         mrename $test_dir/$tdir $MOUNT/.lustre/fid &&
10346                 error "rename to $MOUNT/.lustre/fid should fail."
10347
10348         if [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.51) ]
10349         then            # LU-3547
10350                 local old_obf_mode=$(stat --format="%a" $DIR/.lustre/fid)
10351                 local new_obf_mode=777
10352
10353                 echo "change mode of $DIR/.lustre/fid to $new_obf_mode"
10354                 chmod $new_obf_mode $DIR/.lustre/fid ||
10355                         error "chmod $new_obf_mode $DIR/.lustre/fid failed"
10356
10357                 local obf_mode=$(stat --format=%a $DIR/.lustre/fid)
10358                 [ $obf_mode -eq $new_obf_mode ] ||
10359                         error "stat $DIR/.lustre/fid returned wrong mode $obf_mode"
10360
10361                 echo "restore mode of $DIR/.lustre/fid to $old_obf_mode"
10362                 chmod $old_obf_mode $DIR/.lustre/fid ||
10363                         error "chmod $old_obf_mode $DIR/.lustre/fid failed"
10364         fi
10365
10366         $OPENFILE -f O_LOV_DELAY_CREATE:O_CREAT $test_dir/$tfile-2
10367         fid=$($LFS path2fid $test_dir/$tfile-2)
10368
10369         if [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.50) ]
10370         then # LU-5424
10371                 echo "cp /etc/passwd $MOUNT/.lustre/fid/$fid"
10372                 cp /etc/passwd $MOUNT/.lustre/fid/$fid ||
10373                         error "create lov data thru .lustre failed"
10374         fi
10375         echo "cp /etc/passwd $test_dir/$tfile-2"
10376         cp /etc/passwd $test_dir/$tfile-2 ||
10377                 error "copy to $test_dir/$tfile-2 failed."
10378         echo "diff /etc/passwd $MOUNT/.lustre/fid/$fid"
10379         diff /etc/passwd $MOUNT/.lustre/fid/$fid ||
10380                 error "diff /etc/passwd $MOUNT/.lustre/fid/$fid failed."
10381
10382         rm -rf $test_dir/tfile.lnk
10383         rm -rf $test_dir/$tfile-2
10384 }
10385
10386 test_154A() {
10387         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.1) ]] &&
10388                 skip "Need MDS version at least 2.4.1" && return
10389
10390         local tf=$DIR/$tfile
10391         touch $tf
10392
10393         local fid=$($LFS path2fid $tf)
10394         [ -z "$fid" ] && error "path2fid unable to get $tf FID"
10395
10396         # check that we get the same pathname back
10397         local found=$($LFS fid2path $MOUNT "$fid")
10398         [ -z "$found" ] && error "fid2path unable to get '$fid' path"
10399         [ "$found" == "$tf" ] ||
10400                 error "fid2path($fid=path2fid($tf)) = $found != $tf"
10401 }
10402 run_test 154A "lfs path2fid and fid2path basic checks"
10403
10404 test_154B() {
10405         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.1) ]] &&
10406                 skip "Need MDS version at least 2.4.1" && return
10407
10408         mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
10409         touch $DIR/$tdir/$tfile || error "touch $DIR/$tdir/$tfile failed"
10410         local linkea=$($LL_DECODE_LINKEA $DIR/$tdir/$tfile | grep 'pfid')
10411         [ -z "$linkea" ] && error "decode linkea $DIR/$tdir/$tfile failed"
10412
10413         local name=$(echo $linkea | awk '/pfid/ {print $5}' | sed -e "s/'//g")
10414         local PFID=$(echo $linkea | awk '/pfid/ {print $3}' | sed -e "s/,//g")
10415
10416         # check that we get the same pathname
10417         echo "PFID: $PFID, name: $name"
10418         local FOUND=$($LFS fid2path $MOUNT "$PFID")
10419         [ -z "$FOUND" ] && error "fid2path unable to get $PFID path"
10420         [ "$FOUND/$name" != "$DIR/$tdir/$tfile" ] &&
10421                 error "ll_decode_linkea has $FOUND/$name != $DIR/$tdir/$tfile"
10422
10423         rm -rf $DIR/$tdir || error "Can not delete directory $DIR/$tdir"
10424 }
10425 run_test 154B "verify the ll_decode_linkea tool"
10426
10427 test_154a() {
10428         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10429         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ]] ||
10430                 { skip "Need MDS version at least 2.2.51"; return 0; }
10431         [ -z "$(which setfacl)" ] && skip "must have setfacl tool" && return
10432         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
10433
10434         cp /etc/hosts $DIR/$tfile
10435
10436         fid=$($LFS path2fid $DIR/$tfile)
10437         rc=$?
10438         [ $rc -ne 0 ] && error "error: could not get fid for $DIR/$tfile."
10439
10440         dot_lustre_fid_permission_check "$fid" $DIR ||
10441                 error "dot lustre permission check $fid failed"
10442
10443         rm -rf $MOUNT/.lustre && error ".lustre is not allowed to be unlinked"
10444
10445         touch $MOUNT/.lustre/file &&
10446                 error "creation is not allowed under .lustre"
10447
10448         mkdir $MOUNT/.lustre/dir &&
10449                 error "mkdir is not allowed under .lustre"
10450
10451         rm -rf $DIR/$tfile
10452 }
10453 run_test 154a "Open-by-FID"
10454
10455 test_154b() {
10456         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10457         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ]] ||
10458                 { skip "Need MDS version at least 2.2.51"; return 0; }
10459         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
10460
10461         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
10462
10463         local remote_dir=$DIR/$tdir/remote_dir
10464         local MDTIDX=1
10465         local rc=0
10466
10467         mkdir -p $DIR/$tdir
10468         $LFS mkdir -i $MDTIDX $remote_dir ||
10469                 error "create remote directory failed"
10470
10471         cp /etc/hosts $remote_dir/$tfile
10472
10473         fid=$($LFS path2fid $remote_dir/$tfile)
10474         rc=$?
10475         [ $rc -ne 0 ] && error "error: could not get fid for $remote_dir/$tfile"
10476
10477         dot_lustre_fid_permission_check "$fid" $remote_dir ||
10478                 error "dot lustre permission check $fid failed"
10479         rm -rf $DIR/$tdir
10480 }
10481 run_test 154b "Open-by-FID for remote directory"
10482
10483 test_154c() {
10484         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.1) ]] &&
10485                 skip "Need MDS version at least 2.4.1" && return
10486
10487         touch $DIR/$tfile.1 $DIR/$tfile.2 $DIR/$tfile.3
10488         local FID1=$($LFS path2fid $DIR/$tfile.1)
10489         local FID2=$($LFS path2fid $DIR/$tfile.2)
10490         local FID3=$($LFS path2fid $DIR/$tfile.3)
10491
10492         local N=1
10493         $LFS path2fid $DIR/$tfile.[123] | while read PATHNAME FID; do
10494                 [ "$PATHNAME" = "$DIR/$tfile.$N:" ] ||
10495                         error "path2fid pathname $PATHNAME != $DIR/$tfile.$N:"
10496                 local want=FID$N
10497                 [ "$FID" = "${!want}" ] ||
10498                         error "path2fid $PATHNAME FID $FID != FID$N ${!want}"
10499                 N=$((N + 1))
10500         done
10501
10502         $LFS fid2path $MOUNT "$FID1" "$FID2" "$FID3" | while read PATHNAME;
10503         do
10504                 [ "$PATHNAME" = "$DIR/$tfile.$N" ] ||
10505                         error "fid2path pathname $PATHNAME != $DIR/$tfile.$N:"
10506                 N=$((N + 1))
10507         done
10508 }
10509 run_test 154c "lfs path2fid and fid2path multiple arguments"
10510
10511 test_154d() {
10512         remote_mds_nodsh && skip "remote MDS with nodsh" && return
10513         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.5.53) ]] &&
10514                 skip "Need MDS version at least 2.5.53" && return
10515
10516         if remote_mds; then
10517                 nid=$($LCTL list_nids | sed  "s/\./\\\./g")
10518         else
10519                 nid="0@lo"
10520         fi
10521         local proc_ofile="mdt.*.exports.'$nid'.open_files"
10522         local fd
10523         local cmd
10524
10525         rm -f $DIR/$tfile
10526         touch $DIR/$tfile
10527
10528         local fid=$($LFS path2fid $DIR/$tfile)
10529         # Open the file
10530         fd=$(free_fd)
10531         cmd="exec $fd<$DIR/$tfile"
10532         eval $cmd
10533         local fid_list=$(do_facet $SINGLEMDS $LCTL get_param $proc_ofile)
10534         echo "$fid_list" | grep "$fid"
10535         rc=$?
10536
10537         cmd="exec $fd>/dev/null"
10538         eval $cmd
10539         if [ $rc -ne 0 ]; then
10540                 error "FID $fid not found in open files list $fid_list"
10541         fi
10542 }
10543 run_test 154d "Verify open file fid"
10544
10545 test_154e()
10546 {
10547         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.6.50) ]] &&
10548                 skip "Need MDS version at least 2.6.50" && return
10549
10550         if ls -a $MOUNT | grep -q '^\.lustre$'; then
10551                 error ".lustre returned by readdir"
10552         fi
10553 }
10554 run_test 154e ".lustre is not returned by readdir"
10555
10556 test_154f() {
10557         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
10558         # create parent directory on a single MDT to avoid cross-MDT hardlinks
10559         test_mkdir -p -c1 $DIR/$tdir/d
10560         # test dirs inherit from its stripe
10561         mkdir -p $DIR/$tdir/d/foo1 || error "mkdir error"
10562         mkdir -p $DIR/$tdir/d/foo2 || error "mkdir error"
10563         cp /etc/hosts $DIR/$tdir/d/foo1/$tfile
10564         ln $DIR/$tdir/d/foo1/$tfile $DIR/$tdir/d/foo2/link
10565         touch $DIR/f
10566
10567         # get fid of parents
10568         local FID0=$($LFS path2fid $DIR/$tdir/d)
10569         local FID1=$($LFS path2fid $DIR/$tdir/d/foo1)
10570         local FID2=$($LFS path2fid $DIR/$tdir/d/foo2)
10571         local FID3=$($LFS path2fid $DIR)
10572
10573         # check that path2fid --parents returns expected <parent_fid>/name
10574         # 1) test for a directory (single parent)
10575         local parent=$($LFS path2fid --parents $DIR/$tdir/d/foo1)
10576         [ "$parent" == "$FID0/foo1" ] ||
10577                 error "expected parent: $FID0/foo1, got: $parent"
10578
10579         # 2) test for a file with nlink > 1 (multiple parents)
10580         parent=$($LFS path2fid --parents $DIR/$tdir/d/foo1/$tfile)
10581         echo "$parent" | grep -F "$FID1/$tfile" ||
10582                 error "$FID1/$tfile not returned in parent list"
10583         echo "$parent" | grep -F "$FID2/link" ||
10584                 error "$FID2/link not returned in parent list"
10585
10586         # 3) get parent by fid
10587         local file_fid=$($LFS path2fid $DIR/$tdir/d/foo1/$tfile)
10588         parent=$($LFS path2fid --parents $MOUNT/.lustre/fid/$file_fid)
10589         echo "$parent" | grep -F "$FID1/$tfile" ||
10590                 error "$FID1/$tfile not returned in parent list (by fid)"
10591         echo "$parent" | grep -F "$FID2/link" ||
10592                 error "$FID2/link not returned in parent list (by fid)"
10593
10594         # 4) test for entry in root directory
10595         parent=$($LFS path2fid --parents $DIR/f)
10596         echo "$parent" | grep -F "$FID3/f" ||
10597                 error "$FID3/f not returned in parent list"
10598
10599         # 5) test it on root directory
10600         [ -z "$($LFS path2fid --parents $MOUNT 2>/dev/null)" ] ||
10601                 error "$MOUNT should not have parents"
10602
10603         # enable xattr caching and check that linkea is correctly updated
10604         local save="$TMP/$TESTSUITE-$TESTNAME.parameters"
10605         save_lustre_params client "llite.*.xattr_cache" > $save
10606         lctl set_param llite.*.xattr_cache 1
10607
10608         # 6.1) linkea update on rename
10609         mv $DIR/$tdir/d/foo1/$tfile $DIR/$tdir/d/foo2/$tfile.moved
10610
10611         # get parents by fid
10612         parent=$($LFS path2fid --parents $MOUNT/.lustre/fid/$file_fid)
10613         # foo1 should no longer be returned in parent list
10614         echo "$parent" | grep -F "$FID1" &&
10615                 error "$FID1 should no longer be in parent list"
10616         # the new path should appear
10617         echo "$parent" | grep -F "$FID2/$tfile.moved" ||
10618                 error "$FID2/$tfile.moved is not in parent list"
10619
10620         # 6.2) linkea update on unlink
10621         rm -f $DIR/$tdir/d/foo2/link
10622         parent=$($LFS path2fid --parents $MOUNT/.lustre/fid/$file_fid)
10623         # foo2/link should no longer be returned in parent list
10624         echo "$parent" | grep -F "$FID2/link" &&
10625                 error "$FID2/link should no longer be in parent list"
10626         true
10627
10628         rm -f $DIR/f
10629         restore_lustre_params < $save
10630         rm -f $save
10631 }
10632 run_test 154f "get parent fids by reading link ea"
10633
10634 test_154g()
10635 {
10636         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.92) && \
10637            $(lustre_version_code client) -gt $(version_code 2.6.99) ]] ||
10638                 { skip "Need MDS version at least 2.6.92"; return 0; }
10639         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
10640
10641         mkdir -p $DIR/$tdir
10642         llapi_fid_test -d $DIR/$tdir
10643 }
10644 run_test 154g "various llapi FID tests"
10645
10646 test_155_small_load() {
10647     local temp=$TMP/$tfile
10648     local file=$DIR/$tfile
10649
10650     dd if=/dev/urandom of=$temp bs=6096 count=1 || \
10651         error "dd of=$temp bs=6096 count=1 failed"
10652     cp $temp $file
10653     cancel_lru_locks osc
10654     cmp $temp $file || error "$temp $file differ"
10655
10656     $TRUNCATE $temp 6000
10657     $TRUNCATE $file 6000
10658     cmp $temp $file || error "$temp $file differ (truncate1)"
10659
10660     echo "12345" >>$temp
10661     echo "12345" >>$file
10662     cmp $temp $file || error "$temp $file differ (append1)"
10663
10664     echo "12345" >>$temp
10665     echo "12345" >>$file
10666     cmp $temp $file || error "$temp $file differ (append2)"
10667
10668     rm -f $temp $file
10669     true
10670 }
10671
10672 test_155_big_load() {
10673     remote_ost_nodsh && skip "remote OST with nodsh" && return
10674     local temp=$TMP/$tfile
10675     local file=$DIR/$tfile
10676
10677     free_min_max
10678     local cache_size=$(do_facet ost$((MAXI+1)) \
10679         "awk '/cache/ {sum+=\\\$4} END {print sum}' /proc/cpuinfo")
10680     local large_file_size=$((cache_size * 2))
10681
10682     echo "OSS cache size: $cache_size KB"
10683     echo "Large file size: $large_file_size KB"
10684
10685     [ $MAXV -le $large_file_size ] && \
10686         skip_env "max available OST size needs > $large_file_size KB" && \
10687         return 0
10688
10689     $SETSTRIPE $file -c 1 -i $MAXI || error "$SETSTRIPE $file failed"
10690
10691     dd if=/dev/urandom of=$temp bs=$large_file_size count=1k || \
10692         error "dd of=$temp bs=$large_file_size count=1k failed"
10693     cp $temp $file
10694     ls -lh $temp $file
10695     cancel_lru_locks osc
10696     cmp $temp $file || error "$temp $file differ"
10697
10698     rm -f $temp $file
10699     true
10700 }
10701
10702 save_writethrough() {
10703         local facets=$(get_facets OST)
10704
10705         save_lustre_params $facets "obdfilter.*.writethrough_cache_enable" > $1
10706         save_lustre_params $facets "osd-*.*.writethrough_cache_enable" >> $1
10707 }
10708
10709 test_155a() {
10710         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10711         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
10712         save_writethrough $p
10713
10714         set_cache read on
10715         set_cache writethrough on
10716         test_155_small_load
10717         restore_lustre_params < $p
10718         rm -f $p
10719 }
10720 run_test 155a "Verify small file correctness: read cache:on write_cache:on"
10721
10722 test_155b() {
10723         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10724         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
10725         save_writethrough $p
10726
10727         set_cache read on
10728         set_cache writethrough off
10729         test_155_small_load
10730         restore_lustre_params < $p
10731         rm -f $p
10732 }
10733 run_test 155b "Verify small file correctness: read cache:on write_cache:off"
10734
10735 test_155c() {
10736         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10737         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
10738         save_writethrough $p
10739
10740         set_cache read off
10741         set_cache writethrough on
10742         test_155_small_load
10743         restore_lustre_params < $p
10744         rm -f $p
10745 }
10746 run_test 155c "Verify small file correctness: read cache:off write_cache:on"
10747
10748 test_155d() {
10749         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10750         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
10751         save_writethrough $p
10752
10753         set_cache read off
10754         set_cache writethrough off
10755         test_155_small_load
10756         restore_lustre_params < $p
10757         rm -f $p
10758 }
10759 run_test 155d "Verify small file correctness: read cache:off write_cache:off"
10760
10761 test_155e() {
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_big_load
10769         restore_lustre_params < $p
10770         rm -f $p
10771 }
10772 run_test 155e "Verify big file correctness: read cache:on write_cache:on"
10773
10774 test_155f() {
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_big_load
10782         restore_lustre_params < $p
10783         rm -f $p
10784 }
10785 run_test 155f "Verify big file correctness: read cache:on write_cache:off"
10786
10787 test_155g() {
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_big_load
10795         restore_lustre_params < $p
10796         rm -f $p
10797 }
10798 run_test 155g "Verify big file correctness: read cache:off write_cache:on"
10799
10800 test_155h() {
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_big_load
10808         restore_lustre_params < $p
10809         rm -f $p
10810 }
10811 run_test 155h "Verify big file correctness: read cache:off write_cache:off"
10812
10813 test_156() {
10814         remote_ost_nodsh && skip "remote OST with nodsh" && return
10815         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10816         local CPAGES=3
10817         local BEFORE
10818         local AFTER
10819         local file="$DIR/$tfile"
10820         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
10821
10822         [ "$(facet_fstype ost1)" = "zfs" -a \
10823            $(lustre_version_code ost1 -lt $(version_code 2.6.93)) ] &&
10824                 skip "LU-1956/LU-2261: stats not implemented on OSD ZFS" &&
10825                 return
10826
10827         save_writethrough $p
10828         roc_hit_init
10829
10830         log "Turn on read and write cache"
10831         set_cache read on
10832         set_cache writethrough on
10833
10834         log "Write data and read it back."
10835         log "Read should be satisfied from the cache."
10836         dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
10837         BEFORE=$(roc_hit)
10838         cancel_lru_locks osc
10839         cat $file >/dev/null
10840         AFTER=$(roc_hit)
10841         if ! let "AFTER - BEFORE == CPAGES"; then
10842                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
10843         else
10844                 log "cache hits:: before: $BEFORE, after: $AFTER"
10845         fi
10846
10847         log "Read again; it should be satisfied from the cache."
10848         BEFORE=$AFTER
10849         cancel_lru_locks osc
10850         cat $file >/dev/null
10851         AFTER=$(roc_hit)
10852         if ! let "AFTER - BEFORE == CPAGES"; then
10853                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
10854         else
10855                 log "cache hits:: before: $BEFORE, after: $AFTER"
10856         fi
10857
10858         log "Turn off the read cache and turn on the write cache"
10859         set_cache read off
10860         set_cache writethrough on
10861
10862         log "Read again; it should be satisfied from the cache."
10863         BEFORE=$(roc_hit)
10864         cancel_lru_locks osc
10865         cat $file >/dev/null
10866         AFTER=$(roc_hit)
10867         if ! let "AFTER - BEFORE == CPAGES"; then
10868                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
10869         else
10870                 log "cache hits:: before: $BEFORE, after: $AFTER"
10871         fi
10872
10873         log "Read again; it should not be satisfied from the cache."
10874         BEFORE=$AFTER
10875         cancel_lru_locks osc
10876         cat $file >/dev/null
10877         AFTER=$(roc_hit)
10878         if ! let "AFTER - BEFORE == 0"; then
10879                 error "IN CACHE: before: $BEFORE, after: $AFTER"
10880         else
10881                 log "cache hits:: before: $BEFORE, after: $AFTER"
10882         fi
10883
10884         log "Write data and read it back."
10885         log "Read should be satisfied from the cache."
10886         dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
10887         BEFORE=$(roc_hit)
10888         cancel_lru_locks osc
10889         cat $file >/dev/null
10890         AFTER=$(roc_hit)
10891         if ! let "AFTER - BEFORE == CPAGES"; then
10892                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
10893         else
10894                 log "cache hits:: before: $BEFORE, after: $AFTER"
10895         fi
10896
10897         log "Read again; it should not be satisfied from the cache."
10898         BEFORE=$AFTER
10899         cancel_lru_locks osc
10900         cat $file >/dev/null
10901         AFTER=$(roc_hit)
10902         if ! let "AFTER - BEFORE == 0"; then
10903                 error "IN CACHE: before: $BEFORE, after: $AFTER"
10904         else
10905                 log "cache hits:: before: $BEFORE, after: $AFTER"
10906         fi
10907
10908         log "Turn off read and write cache"
10909         set_cache read off
10910         set_cache writethrough off
10911
10912         log "Write data and read it back"
10913         log "It should not be satisfied from the cache."
10914         rm -f $file
10915         dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
10916         cancel_lru_locks osc
10917         BEFORE=$(roc_hit)
10918         cat $file >/dev/null
10919         AFTER=$(roc_hit)
10920         if ! let "AFTER - BEFORE == 0"; then
10921                 error_ignore bz20762 "IN CACHE: before: $BEFORE, after: $AFTER"
10922         else
10923                 log "cache hits:: before: $BEFORE, after: $AFTER"
10924         fi
10925
10926         log "Turn on the read cache and turn off the write cache"
10927         set_cache read on
10928         set_cache writethrough off
10929
10930         log "Write data and read it back"
10931         log "It should not be satisfied from the cache."
10932         rm -f $file
10933         dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
10934         BEFORE=$(roc_hit)
10935         cancel_lru_locks osc
10936         cat $file >/dev/null
10937         AFTER=$(roc_hit)
10938         if ! let "AFTER - BEFORE == 0"; then
10939                 error_ignore bz20762 "IN CACHE: before: $BEFORE, after: $AFTER"
10940         else
10941                 log "cache hits:: before: $BEFORE, after: $AFTER"
10942         fi
10943
10944         log "Read again; it should be satisfied from the cache."
10945         BEFORE=$(roc_hit)
10946         cancel_lru_locks osc
10947         cat $file >/dev/null
10948         AFTER=$(roc_hit)
10949         if ! let "AFTER - BEFORE == CPAGES"; then
10950                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
10951         else
10952                 log "cache hits:: before: $BEFORE, after: $AFTER"
10953         fi
10954
10955         rm -f $file
10956         restore_lustre_params < $p
10957         rm -f $p
10958 }
10959 run_test 156 "Verification of tunables"
10960
10961 #Changelogs
10962 cleanup_changelog () {
10963         trap 0
10964         echo "Deregistering changelog client $CL_USER"
10965         do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister $CL_USER
10966 }
10967
10968 err17935 () {
10969         if [[ $MDSCOUNT -gt 1 ]]; then
10970                 error_ignore bz17935 $*
10971         else
10972                 error $*
10973         fi
10974 }
10975
10976 changelog_chmask()
10977 {
10978         local CL_MASK_PARAM="mdd.$MDT0.changelog_mask"
10979
10980         MASK=$(do_facet $SINGLEMDS $LCTL get_param $CL_MASK_PARAM| grep -c "$1")
10981
10982         if [ $MASK -eq 1 ]; then
10983                 do_facet $SINGLEMDS $LCTL set_param $CL_MASK_PARAM="-$1"
10984         else
10985                 do_facet $SINGLEMDS $LCTL set_param $CL_MASK_PARAM="+$1"
10986         fi
10987 }
10988
10989 changelog_extract_field() {
10990         local mdt=$1
10991         local cltype=$2
10992         local file=$3
10993         local identifier=$4
10994
10995         $LFS changelog $mdt | gawk "/$cltype.*$file$/ {
10996                 print gensub(/^.* "$identifier'(\[[^\]]*\]).*$/,"\\1",1)}' |
10997                 tail -1
10998 }
10999
11000 test_160a() {
11001         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11002         remote_mds_nodsh && skip "remote MDS with nodsh" && return
11003         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] ||
11004                 { skip "Need MDS version at least 2.2.0"; return; }
11005
11006         local CL_USERS="mdd.$MDT0.changelog_users"
11007         local GET_CL_USERS="do_facet $SINGLEMDS $LCTL get_param -n $CL_USERS"
11008         CL_USER=$(do_facet $SINGLEMDS $LCTL --device $MDT0 \
11009                 changelog_register -n)
11010         echo "Registered as changelog user $CL_USER"
11011         trap cleanup_changelog EXIT
11012         $GET_CL_USERS | grep -q $CL_USER ||
11013                 error "User $CL_USER not found in changelog_users"
11014
11015         # change something
11016         test_mkdir -p $DIR/$tdir/pics/2008/zachy
11017         touch $DIR/$tdir/pics/2008/zachy/timestamp
11018         cp /etc/hosts $DIR/$tdir/pics/2008/zachy/pic1.jpg
11019         mv $DIR/$tdir/pics/2008/zachy $DIR/$tdir/pics/zach
11020         ln $DIR/$tdir/pics/zach/pic1.jpg $DIR/$tdir/pics/2008/portland.jpg
11021         ln -s $DIR/$tdir/pics/2008/portland.jpg $DIR/$tdir/pics/desktop.jpg
11022         rm $DIR/$tdir/pics/desktop.jpg
11023
11024         $LFS changelog $MDT0 | tail -5
11025
11026         echo "verifying changelog mask"
11027         changelog_chmask "MKDIR"
11028         changelog_chmask "CLOSE"
11029
11030         test_mkdir -p $DIR/$tdir/pics/zach/sofia
11031         echo "zzzzzz" > $DIR/$tdir/pics/zach/file
11032
11033         changelog_chmask "MKDIR"
11034         changelog_chmask "CLOSE"
11035
11036         test_mkdir -p $DIR/$tdir/pics/2008/sofia
11037         echo "zzzzzz" > $DIR/$tdir/pics/zach/file
11038
11039         $LFS changelog $MDT0
11040         MKDIRS=$($LFS changelog $MDT0 | tail -5 | grep -c "MKDIR")
11041         CLOSES=$($LFS changelog $MDT0 | tail -5 | grep -c "CLOSE")
11042         [ $MKDIRS -eq 1 ] || err17935 "MKDIR changelog mask count $DIRS != 1"
11043         [ $CLOSES -eq 1 ] || err17935 "CLOSE changelog mask count $DIRS != 1"
11044
11045         # verify contents
11046         echo "verifying target fid"
11047         fidc=$(changelog_extract_field $MDT0 "CREAT" "timestamp" "t=")
11048         fidf=$($LFS path2fid $DIR/$tdir/pics/zach/timestamp)
11049         [ "$fidc" == "$fidf" ] ||
11050                 err17935 "fid in changelog $fidc != file fid $fidf"
11051         echo "verifying parent fid"
11052         fidc=$(changelog_extract_field $MDT0 "CREAT" "timestamp" "p=")
11053         fidf=$($LFS path2fid $DIR/$tdir/pics/zach)
11054         [ "$fidc" == "$fidf" ] ||
11055                 err17935 "pfid in changelog $fidc != dir fid $fidf"
11056
11057         USER_REC1=$($GET_CL_USERS | awk "\$1 == \"$CL_USER\" {print \$2}")
11058         $LFS changelog_clear $MDT0 $CL_USER $(($USER_REC1 + 5))
11059         USER_REC2=$($GET_CL_USERS | awk "\$1 == \"$CL_USER\" {print \$2}")
11060         echo "verifying user clear: $(( $USER_REC1 + 5 )) == $USER_REC2"
11061         [ $USER_REC2 == $(($USER_REC1 + 5)) ] ||
11062                 err17935 "user index expected $(($USER_REC1 + 5)) is $USER_REC2"
11063
11064         MIN_REC=$($GET_CL_USERS |
11065                 awk 'min == "" || $2 < min {min = $2}; END {print min}')
11066         FIRST_REC=$($LFS changelog $MDT0 | head -n1 | awk '{print $1}')
11067         echo "verifying min purge: $(( $MIN_REC + 1 )) == $FIRST_REC"
11068         [ $FIRST_REC == $(($MIN_REC + 1)) ] ||
11069                 err17935 "first index should be $(($MIN_REC + 1)) is $FIRST_REC"
11070
11071         # LU-3446 changelog index reset on MDT restart
11072         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
11073         CUR_REC1=$($GET_CL_USERS | head -n1 | cut -f3 -d' ')
11074         $LFS changelog_clear $MDT0 $CL_USER 0
11075         stop $SINGLEMDS || error "Fail to stop MDT."
11076         start $SINGLEMDS $MDT_DEV $MDS_MOUNT_OPTS || error "Fail to start MDT."
11077         CUR_REC2=$($GET_CL_USERS | head -n1 | cut -f3 -d' ')
11078         echo "verifying index survives MDT restart: $CUR_REC1 == $CUR_REC2"
11079         [ $CUR_REC1 == $CUR_REC2 ] ||
11080                 err17935 "current index should be $CUR_REC1 is $CUR_REC2"
11081
11082         echo "verifying user deregister"
11083         cleanup_changelog
11084         $GET_CL_USERS | grep -q $CL_USER &&
11085                 error "User $CL_USER still in changelog_users"
11086
11087         USERS=$(( $($GET_CL_USERS | wc -l) - 2 ))
11088         if [ $CL_USER -eq 0 ]; then
11089                 LAST_REC1=$($GET_CL_USERS | head -n1 | cut -f3 -d' ')
11090                 touch $DIR/$tdir/chloe
11091                 LAST_REC2=$($GET_CL_USERS | head -n1 | cut -f3 -d' ')
11092                 echo "verify changelogs are off: $LAST_REC1 == $LAST_REC2"
11093                 [ $LAST_REC1 == $LAST_REC2 ] || error "changelogs not off"
11094         else
11095                 echo "$CL_USER other changelog users; can't verify off"
11096         fi
11097 }
11098 run_test 160a "changelog sanity"
11099
11100 test_160b() { # LU-3587
11101         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11102         remote_mds_nodsh && skip "remote MDS with nodsh" && return
11103         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] ||
11104                 { skip "Need MDS version at least 2.2.0"; return; }
11105
11106         local CL_USERS="mdd.$MDT0.changelog_users"
11107         local GET_CL_USERS="do_facet $SINGLEMDS $LCTL get_param -n $CL_USERS"
11108         CL_USER=$(do_facet $SINGLEMDS $LCTL --device $MDT0 \
11109                 changelog_register -n)
11110         echo "Registered as changelog user $CL_USER"
11111         trap cleanup_changelog EXIT
11112         $GET_CL_USERS | grep -q $CL_USER ||
11113                 error "User $CL_USER not found in changelog_users"
11114
11115         local LONGNAME1=$(str_repeat a 255)
11116         local LONGNAME2=$(str_repeat b 255)
11117
11118         cd $DIR
11119         echo "creating very long named file"
11120         touch $LONGNAME1 || error "create of $LONGNAME1 failed"
11121         echo "moving very long named file"
11122         mv $LONGNAME1 $LONGNAME2
11123
11124         $LFS changelog $MDT0 | grep RENME
11125         rm -f $LONGNAME2
11126         cleanup_changelog
11127 }
11128 run_test 160b "Verify that very long rename doesn't crash in changelog"
11129
11130 test_160c() {
11131         remote_mds_nodsh && skip "remote MDS with nodsh" && return
11132
11133         local rc=0
11134         local server_version=$(lustre_version_code $SINGLEMDS)
11135
11136         [[ $server_version -gt $(version_code 2.5.57) ]] ||
11137                 [[ $server_version -gt $(version_code 2.5.1) &&
11138                    $server_version -lt $(version_code 2.5.50) ]] ||
11139                 { skip "Need MDS version at least 2.5.58 or 2.5.2+"; return; }
11140         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11141
11142         # Registration step
11143         CL_USER=$(do_facet $SINGLEMDS $LCTL --device $MDT0 \
11144                 changelog_register -n)
11145         trap cleanup_changelog EXIT
11146
11147         rm -rf $DIR/$tdir
11148         mkdir -p $DIR/$tdir
11149         $MCREATE $DIR/$tdir/foo_160c
11150         changelog_chmask "TRUNC"
11151         $TRUNCATE $DIR/$tdir/foo_160c 200
11152         changelog_chmask "TRUNC"
11153         $TRUNCATE $DIR/$tdir/foo_160c 199
11154         $LFS changelog $MDT0
11155         TRUNCS=$($LFS changelog $MDT0 | tail -5 | grep -c "TRUNC")
11156         [ $TRUNCS -eq 1 ] || err17935 "TRUNC changelog mask count $TRUNCS != 1"
11157         $LFS changelog_clear $MDT0 $CL_USER 0
11158
11159         # Deregistration step
11160         cleanup_changelog
11161 }
11162 run_test 160c "verify that changelog log catch the truncate event"
11163
11164 test_160d() {
11165         remote_mds_nodsh && skip "remote MDS with nodsh" && return
11166         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
11167
11168         local server_version=$(lustre_version_code mds1)
11169         local CL_MASK_PARAM="mdd.$MDT0.changelog_mask"
11170
11171         [[ $server_version -ge $(version_code 2.7.60) ]] ||
11172                 { skip "Need MDS version at least 2.7.60+"; return; }
11173         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11174
11175         # Registration step
11176         CL_USER=$(do_facet mds1 $LCTL --device $MDT0 \
11177                 changelog_register -n)
11178
11179         trap cleanup_changelog EXIT
11180         mkdir -p $DIR/$tdir/migrate_dir
11181         $LFS changelog_clear $MDT0 $CL_USER 0
11182
11183         $LFS migrate -m 1 $DIR/$tdir/migrate_dir || error "migrate fails"
11184         $LFS changelog $MDT0
11185         MIGRATES=$($LFS changelog $MDT0 | tail -5 | grep -c "MIGRT")
11186         $LFS changelog_clear $MDT0 $CL_USER 0
11187         [ $MIGRATES -eq 1 ] ||
11188                 error "MIGRATE changelog mask count $MIGRATES != 1"
11189
11190         # Deregistration step
11191         cleanup_changelog
11192 }
11193 run_test 160d "verify that changelog log catch the migrate event"
11194
11195 test_160e() {
11196         remote_mds_nodsh && skip "remote MDS with nodsh" && return
11197
11198         # Create a user
11199         CL_USER=$(do_facet $SINGLEMDS $LCTL --device $MDT0 \
11200                 changelog_register -n)
11201         echo "Registered as changelog user $CL_USER"
11202         trap cleanup_changelog EXIT
11203
11204         # Delete a future user (expect fail)
11205         do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister cl77
11206         local rc=$?
11207
11208         if [ $rc -eq 0 ]; then
11209                 error "Deleted non-existant user cl77"
11210         elif [ $rc -ne 2 ]; then
11211                 error "changelog_deregister failed with $rc, " \
11212                         "expected 2 (ENOENT)"
11213         fi
11214
11215         # Clear to a bad index (1 billion should be safe)
11216         $LFS changelog_clear $MDT0 $CL_USER 1000000000
11217         rc=$?
11218
11219         if [ $rc -eq 0 ]; then
11220                 error "Successfully cleared to invalid CL index"
11221         elif [ $rc -ne 22 ]; then
11222                 error "changelog_clear failed with $rc, expected 22 (EINVAL)"
11223         fi
11224 }
11225 run_test 160e "changelog negative testing"
11226
11227 test_161a() {
11228         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11229         test_mkdir -c1 $DIR/$tdir
11230         cp /etc/hosts $DIR/$tdir/$tfile
11231         test_mkdir -c1 $DIR/$tdir/foo1
11232         test_mkdir -c1 $DIR/$tdir/foo2
11233         ln $DIR/$tdir/$tfile $DIR/$tdir/foo1/sofia
11234         ln $DIR/$tdir/$tfile $DIR/$tdir/foo2/zachary
11235         ln $DIR/$tdir/$tfile $DIR/$tdir/foo1/luna
11236         ln $DIR/$tdir/$tfile $DIR/$tdir/foo2/thor
11237         local FID=$($LFS path2fid $DIR/$tdir/$tfile | tr -d '[]')
11238         if [ "$($LFS fid2path $DIR $FID | wc -l)" != "5" ]; then
11239                 $LFS fid2path $DIR $FID
11240                 err17935 "bad link ea"
11241         fi
11242     # middle
11243     rm $DIR/$tdir/foo2/zachary
11244     # last
11245     rm $DIR/$tdir/foo2/thor
11246     # first
11247     rm $DIR/$tdir/$tfile
11248     # rename
11249     mv $DIR/$tdir/foo1/sofia $DIR/$tdir/foo2/maggie
11250     if [ "$($LFS fid2path $FSNAME --link 1 $FID)" != "$tdir/foo2/maggie" ]
11251         then
11252         $LFS fid2path $DIR $FID
11253         err17935 "bad link rename"
11254     fi
11255     rm $DIR/$tdir/foo2/maggie
11256
11257         # overflow the EA
11258         local longname=filename_avg_len_is_thirty_two_
11259         createmany -l$DIR/$tdir/foo1/luna $DIR/$tdir/foo2/$longname 1000 ||
11260                 error "failed to hardlink many files"
11261         links=$($LFS fid2path $DIR $FID | wc -l)
11262         echo -n "${links}/1000 links in link EA"
11263         [[ $links -gt 60 ]] ||
11264                 err17935 "expected at least 60 links in link EA"
11265         unlinkmany $DIR/$tdir/foo2/$longname 1000 ||
11266                 error "failed to unlink many hardlinks"
11267 }
11268 run_test 161a "link ea sanity"
11269
11270 test_161b() {
11271         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11272         [ $MDSCOUNT -lt 2 ] && skip "skipping remote directory test" && return
11273         local MDTIDX=1
11274         local remote_dir=$DIR/$tdir/remote_dir
11275
11276         mkdir -p $DIR/$tdir
11277         $LFS mkdir -i $MDTIDX $remote_dir ||
11278                 error "create remote directory failed"
11279
11280         cp /etc/hosts $remote_dir/$tfile
11281         mkdir -p $remote_dir/foo1
11282         mkdir -p $remote_dir/foo2
11283         ln $remote_dir/$tfile $remote_dir/foo1/sofia
11284         ln $remote_dir/$tfile $remote_dir/foo2/zachary
11285         ln $remote_dir/$tfile $remote_dir/foo1/luna
11286         ln $remote_dir/$tfile $remote_dir/foo2/thor
11287
11288         local FID=$($LFS path2fid $remote_dir/$tfile | tr -d '[' |
11289                      tr -d ']')
11290         if [ "$($LFS fid2path $DIR $FID | wc -l)" != "5" ]; then
11291                 $LFS fid2path $DIR $FID
11292                 err17935 "bad link ea"
11293         fi
11294         # middle
11295         rm $remote_dir/foo2/zachary
11296         # last
11297         rm $remote_dir/foo2/thor
11298         # first
11299         rm $remote_dir/$tfile
11300         # rename
11301         mv $remote_dir/foo1/sofia $remote_dir/foo2/maggie
11302         local link_path=$($LFS fid2path $FSNAME --link 1 $FID)
11303         if [ "$DIR/$link_path" != "$remote_dir/foo2/maggie" ]; then
11304                 $LFS fid2path $DIR $FID
11305                 err17935 "bad link rename"
11306         fi
11307         rm $remote_dir/foo2/maggie
11308
11309         # overflow the EA
11310         local longname=filename_avg_len_is_thirty_two_
11311         createmany -l$remote_dir/foo1/luna $remote_dir/foo2/$longname 1000 ||
11312                 error "failed to hardlink many files"
11313         links=$($LFS fid2path $DIR $FID | wc -l)
11314         echo -n "${links}/1000 links in link EA"
11315         [[ ${links} -gt 60 ]] ||
11316                 err17935 "expected at least 60 links in link EA"
11317         unlinkmany $remote_dir/foo2/$longname 1000 ||
11318         error "failed to unlink many hardlinks"
11319 }
11320 run_test 161b "link ea sanity under remote directory"
11321
11322 test_161c() {
11323         remote_mds_nodsh && skip "remote MDS with nodsh" && return
11324         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11325         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.1.5) ]] &&
11326                 skip "Need MDS version at least 2.1.5" && return
11327
11328         # define CLF_RENAME_LAST 0x0001
11329         # rename overwrite a target having nlink = 1 (changelog flag 0x1)
11330         CL_USER=$(do_facet $SINGLEMDS $LCTL --device $MDT0 \
11331                 changelog_register -n)
11332
11333         trap cleanup_changelog EXIT
11334         rm -rf $DIR/$tdir
11335         mkdir -p $DIR/$tdir
11336         touch $DIR/$tdir/foo_161c
11337         touch $DIR/$tdir/bar_161c
11338         mv -f $DIR/$tdir/foo_161c $DIR/$tdir/bar_161c
11339         $LFS changelog $MDT0 | grep RENME
11340         local flags=$($LFS changelog $MDT0 | grep RENME | tail -1 | \
11341                 cut -f5 -d' ')
11342         $LFS changelog_clear $MDT0 $CL_USER 0
11343         if [ x$flags != "x0x1" ]; then
11344                 error "flag $flags is not 0x1"
11345         fi
11346         echo "rename overwrite a target having nlink = 1," \
11347                 "changelog record has flags of $flags"
11348
11349         # rename overwrite a target having nlink > 1 (changelog flag 0x0)
11350         touch $DIR/$tdir/foo_161c
11351         touch $DIR/$tdir/bar_161c
11352         ln $DIR/$tdir/bar_161c $DIR/$tdir/foobar_161c
11353         mv -f $DIR/$tdir/foo_161c $DIR/$tdir/bar_161c
11354         $LFS changelog $MDT0 | grep RENME
11355         flags=$($LFS changelog $MDT0 | grep RENME | tail -1 | cut -f5 -d' ')
11356         $LFS changelog_clear $MDT0 $CL_USER 0
11357         if [ x$flags != "x0x0" ]; then
11358                 error "flag $flags is not 0x0"
11359         fi
11360         echo "rename overwrite a target having nlink > 1," \
11361                 "changelog record has flags of $flags"
11362
11363         # rename doesn't overwrite a target (changelog flag 0x0)
11364         touch $DIR/$tdir/foo_161c
11365         mv -f $DIR/$tdir/foo_161c $DIR/$tdir/foo2_161c
11366         $LFS changelog $MDT0 | grep RENME
11367         flags=$($LFS changelog $MDT0 | grep RENME | tail -1 | cut -f5 -d' ')
11368         $LFS changelog_clear $MDT0 $CL_USER 0
11369         if [ x$flags != "x0x0" ]; then
11370                 error "flag $flags is not 0x0"
11371         fi
11372         echo "rename doesn't overwrite a target," \
11373                 "changelog record has flags of $flags"
11374
11375         # define CLF_UNLINK_LAST 0x0001
11376         # unlink a file having nlink = 1 (changelog flag 0x1)
11377         rm -f $DIR/$tdir/foo2_161c
11378         $LFS changelog $MDT0 | grep UNLNK
11379         flags=$($LFS changelog $MDT0 | grep UNLNK | tail -1 | cut -f5 -d' ')
11380         $LFS changelog_clear $MDT0 $CL_USER 0
11381         if [ x$flags != "x0x1" ]; then
11382                 error "flag $flags is not 0x1"
11383         fi
11384         echo "unlink a file having nlink = 1," \
11385                 "changelog record has flags of $flags"
11386
11387         # unlink a file having nlink > 1 (changelog flag 0x0)
11388         ln -f $DIR/$tdir/bar_161c $DIR/$tdir/foobar_161c
11389         rm -f $DIR/$tdir/foobar_161c
11390         $LFS changelog $MDT0 | grep UNLNK
11391         flags=$($LFS changelog $MDT0 | grep UNLNK | tail -1 | cut -f5 -d' ')
11392         $LFS changelog_clear $MDT0 $CL_USER 0
11393         if [ x$flags != "x0x0" ]; then
11394                 error "flag $flags is not 0x0"
11395         fi
11396         echo "unlink a file having nlink > 1," \
11397                 "changelog record has flags of $flags"
11398         cleanup_changelog
11399 }
11400 run_test 161c "check CL_RENME[UNLINK] changelog record flags"
11401
11402 test_161d() {
11403         local user
11404         local pid
11405         local fid
11406
11407         # cleanup previous run
11408         rm -rf $DIR/$tdir/$tfile
11409
11410         user=$(do_facet $SINGLEMDS $LCTL --device $MDT0 \
11411                 changelog_register -n)
11412         [[ $? -eq 0 ]] || error "changelog_register failed"
11413
11414         # work in a standalone dir to avoid locking on $DIR/$MOUNT to
11415         # interfer with $MOUNT/.lustre/fid/ access
11416         mkdir $DIR/$tdir
11417         [[ $? -eq 0 ]] || error "mkdir failed"
11418
11419         #define OBD_FAIL_LLITE_CREATE_NODE_PAUSE 0x140c | OBD_FAIL_ONCE
11420         $LCTL set_param fail_loc=0x8000140c
11421         # 5s pause
11422         $LCTL set_param fail_val=5
11423
11424         # create file
11425         echo foofoo > $DIR/$tdir/$tfile &
11426         pid=$!
11427
11428         # wait for create to be delayed
11429         sleep 2
11430
11431         ps -p $pid
11432         [[ $? -eq 0 ]] || error "create should be blocked"
11433
11434         local tempfile=$(mktemp)
11435         fid=$(changelog_extract_field $MDT0 "CREAT" "$tfile" "t=")
11436         cat $MOUNT/.lustre/fid/$fid 2>/dev/null >$tempfile || error "cat failed"
11437         # some delay may occur during ChangeLog publishing and file read just
11438         # above, that could allow file write to happen finally
11439         [[ -s $tempfile ]] && echo "file should be empty"
11440
11441         $LCTL set_param fail_loc=0
11442
11443         wait $pid
11444         [[ $? -eq 0 ]] || error "create failed"
11445
11446         $LFS changelog_clear $MDT0 $user 0
11447         do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister $user
11448 }
11449 run_test 161d "create with concurrent .lustre/fid access"
11450
11451 check_path() {
11452     local expected=$1
11453     shift
11454     local fid=$2
11455
11456     local path=$(${LFS} fid2path $*)
11457     # Remove the '//' indicating a remote directory
11458     path=$(echo $path | sed 's#//#/#g')
11459     RC=$?
11460
11461     if [ $RC -ne 0 ]; then
11462         err17935 "path looked up of $expected failed. Error $RC"
11463         return $RC
11464     elif [ "${path}" != "${expected}" ]; then
11465         err17935 "path looked up \"${path}\" instead of \"${expected}\""
11466         return 2
11467     fi
11468     echo "fid $fid resolves to path $path (expected $expected)"
11469 }
11470
11471 test_162a() { # was test_162
11472         # Make changes to filesystem
11473         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11474         test_mkdir -p -c1 $DIR/$tdir/d2
11475         touch $DIR/$tdir/d2/$tfile
11476         touch $DIR/$tdir/d2/x1
11477         touch $DIR/$tdir/d2/x2
11478         test_mkdir -p -c1 $DIR/$tdir/d2/a/b/c
11479         test_mkdir -p -c1 $DIR/$tdir/d2/p/q/r
11480         # regular file
11481         FID=$($LFS path2fid $DIR/$tdir/d2/$tfile | tr -d '[]')
11482         check_path "$tdir/d2/$tfile" $FSNAME $FID --link 0 ||
11483                 error "check path $tdir/d2/$tfile failed"
11484
11485         # softlink
11486         ln -s $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/p/q/r/slink
11487         FID=$($LFS path2fid $DIR/$tdir/d2/p/q/r/slink | tr -d '[]')
11488         check_path "$tdir/d2/p/q/r/slink" $FSNAME $FID --link 0 ||
11489                 error "check path $tdir/d2/p/q/r/slink failed"
11490
11491         # softlink to wrong file
11492         ln -s /this/is/garbage $DIR/$tdir/d2/p/q/r/slink.wrong
11493         FID=$($LFS path2fid $DIR/$tdir/d2/p/q/r/slink.wrong | tr -d '[]')
11494         check_path "$tdir/d2/p/q/r/slink.wrong" $FSNAME $FID --link 0 ||
11495                 error "check path $tdir/d2/p/q/r/slink.wrong failed"
11496
11497         # hardlink
11498         ln $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/p/q/r/hlink
11499         mv $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/a/b/c/new_file
11500         FID=$($LFS path2fid $DIR/$tdir/d2/a/b/c/new_file | tr -d '[]')
11501         # fid2path dir/fsname should both work
11502         check_path "$tdir/d2/a/b/c/new_file" $FSNAME $FID --link 1 ||
11503                 error "check path $tdir/d2/a/b/c/new_file failed"
11504         check_path "$DIR/$tdir/d2/p/q/r/hlink" $DIR $FID --link 0 ||
11505                 error "check path $DIR/$tdir/d2/p/q/r/hlink failed"
11506
11507         # hardlink count: check that there are 2 links
11508         # Doesnt work with CMD yet: 17935
11509         ${LFS} fid2path $DIR $FID | wc -l | grep -q 2 || \
11510                 err17935 "expected 2 links"
11511
11512         # hardlink indexing: remove the first link
11513         rm $DIR/$tdir/d2/p/q/r/hlink
11514         check_path "$tdir/d2/a/b/c/new_file" $FSNAME $FID --link 0 ||
11515                 error "check path $DIR/$tdir/d2/a/b/c/new_file failed"
11516
11517         return 0
11518 }
11519 run_test 162a "path lookup sanity"
11520
11521 test_162b() {
11522         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11523         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
11524
11525         mkdir $DIR/$tdir
11526         $LFS setdirstripe -i0 -c$MDSCOUNT -t all_char $DIR/$tdir/striped_dir ||
11527                                 error "create striped dir failed"
11528
11529         local FID=$($LFS getdirstripe $DIR/$tdir/striped_dir |
11530                                         tail -n 1 | awk '{print $2}')
11531         stat $MOUNT/.lustre/fid/$FID && error "sub_stripe can be accessed"
11532
11533         touch $DIR/$tdir/striped_dir/f{0..4} || error "touch f0..4 failed"
11534         mkdir $DIR/$tdir/striped_dir/d{0..4} || error "mkdir d0..4 failed"
11535
11536         # regular file
11537         for ((i=0;i<5;i++)); do
11538                 FID=$($LFS path2fid $DIR/$tdir/striped_dir/f$i | tr -d '[]') ||
11539                         error "get fid for f$i failed"
11540                 check_path "$tdir/striped_dir/f$i" $FSNAME $FID --link 0 ||
11541                         error "check path $tdir/striped_dir/f$i failed"
11542
11543                 FID=$($LFS path2fid $DIR/$tdir/striped_dir/d$i | tr -d '[]') ||
11544                         error "get fid for d$i failed"
11545                 check_path "$tdir/striped_dir/d$i" $FSNAME $FID --link 0 ||
11546                         error "check path $tdir/striped_dir/d$i failed"
11547         done
11548
11549         return 0
11550 }
11551 run_test 162b "striped directory path lookup sanity"
11552
11553 # LU-4239: Verify fid2path works with paths 100 or more directories deep
11554 test_162c() {
11555         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.51) ]] &&
11556                 skip "Need MDS version at least 2.7.51" && return
11557         test_mkdir $DIR/$tdir.local
11558         test_mkdir $DIR/$tdir.remote
11559         local lpath=$tdir.local
11560         local rpath=$tdir.remote
11561
11562         for ((i = 0; i <= 101; i++)); do
11563                 lpath="$lpath/$i"
11564                 mkdir $DIR/$lpath
11565                 FID=$($LFS path2fid $DIR/$lpath | tr -d '[]') ||
11566                         error "get fid for local directory $DIR/$lpath failed"
11567                 check_path "$DIR/$lpath" $MOUNT $FID --link 0 ||
11568                         error "check path for local directory $DIR/$lpath failed"
11569
11570                 rpath="$rpath/$i"
11571                 test_mkdir $DIR/$rpath
11572                 FID=$($LFS path2fid $DIR/$rpath | tr -d '[]') ||
11573                         error "get fid for remote directory $DIR/$rpath failed"
11574                 check_path "$DIR/$rpath" $MOUNT $FID --link 0 ||
11575                         error "check path for remote directory $DIR/$rpath failed"
11576         done
11577
11578         return 0
11579 }
11580 run_test 162c "fid2path works with paths 100 or more directories deep"
11581
11582 test_169() {
11583         # do directio so as not to populate the page cache
11584         log "creating a 10 Mb file"
11585         $MULTIOP $DIR/$tfile oO_CREAT:O_DIRECT:O_RDWR:w$((10*1048576))c || error "multiop failed while creating a file"
11586         log "starting reads"
11587         dd if=$DIR/$tfile of=/dev/null bs=4096 &
11588         log "truncating the file"
11589         $MULTIOP $DIR/$tfile oO_TRUNC:c || error "multiop failed while truncating the file"
11590         log "killing dd"
11591         kill %+ || true # reads might have finished
11592         echo "wait until dd is finished"
11593         wait
11594         log "removing the temporary file"
11595         rm -rf $DIR/$tfile || error "tmp file removal failed"
11596 }
11597 run_test 169 "parallel read and truncate should not deadlock"
11598
11599 test_170() {
11600         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11601         $LCTL clear     # bug 18514
11602         $LCTL debug_daemon start $TMP/${tfile}_log_good
11603         touch $DIR/$tfile
11604         $LCTL debug_daemon stop
11605         sed -e "s/^...../a/g" $TMP/${tfile}_log_good > $TMP/${tfile}_log_bad ||
11606                error "sed failed to read log_good"
11607
11608         $LCTL debug_daemon start $TMP/${tfile}_log_good
11609         rm -rf $DIR/$tfile
11610         $LCTL debug_daemon stop
11611
11612         $LCTL df $TMP/${tfile}_log_bad > $TMP/${tfile}_log_bad.out 2>&1 ||
11613                error "lctl df log_bad failed"
11614
11615         local bad_line=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $9}')
11616         local good_line1=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $5}')
11617
11618         $LCTL df $TMP/${tfile}_log_good > $TMP/${tfile}_log_good.out 2>&1
11619         local good_line2=$(tail -n 1 $TMP/${tfile}_log_good.out | awk '{print $5}')
11620
11621         [ "$bad_line" ] && [ "$good_line1" ] && [ "$good_line2" ] ||
11622                 error "bad_line good_line1 good_line2 are empty"
11623
11624         cat $TMP/${tfile}_log_good >> $TMP/${tfile}_logs_corrupt
11625         cat $TMP/${tfile}_log_bad >> $TMP/${tfile}_logs_corrupt
11626         cat $TMP/${tfile}_log_good >> $TMP/${tfile}_logs_corrupt
11627
11628         $LCTL df $TMP/${tfile}_logs_corrupt > $TMP/${tfile}_log_bad.out 2>&1
11629         local bad_line_new=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $9}')
11630         local good_line_new=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $5}')
11631
11632         [ "$bad_line_new" ] && [ "$good_line_new" ] ||
11633                 error "bad_line_new good_line_new are empty"
11634
11635         local expected_good=$((good_line1 + good_line2*2))
11636
11637         rm -f $TMP/${tfile}*
11638         # LU-231, short malformed line may not be counted into bad lines
11639         if [ $bad_line -ne $bad_line_new ] &&
11640                    [ $bad_line -ne $((bad_line_new - 1)) ]; then
11641                 error "expected $bad_line bad lines, but got $bad_line_new"
11642                 return 1
11643         fi
11644
11645         if [ $expected_good -ne $good_line_new ]; then
11646                 error "expected $expected_good good lines, but got $good_line_new"
11647                 return 2
11648         fi
11649         true
11650 }
11651 run_test 170 "test lctl df to handle corrupted log ====================="
11652
11653 test_171() { # bug20592
11654         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11655 #define OBD_FAIL_PTLRPC_DUMP_LOG         0x50e
11656         $LCTL set_param fail_loc=0x50e
11657         $LCTL set_param fail_val=3000
11658         multiop_bg_pause $DIR/$tfile O_s || true
11659         local MULTIPID=$!
11660         kill -USR1 $MULTIPID
11661         # cause log dump
11662         sleep 3
11663         wait $MULTIPID
11664         if dmesg | grep "recursive fault"; then
11665                 error "caught a recursive fault"
11666         fi
11667         $LCTL set_param fail_loc=0
11668         true
11669 }
11670 run_test 171 "test libcfs_debug_dumplog_thread stuck in do_exit() ======"
11671
11672 # it would be good to share it with obdfilter-survey/iokit-libecho code
11673 setup_obdecho_osc () {
11674         local rc=0
11675         local ost_nid=$1
11676         local obdfilter_name=$2
11677         echo "Creating new osc for $obdfilter_name on $ost_nid"
11678         # make sure we can find loopback nid
11679         $LCTL add_uuid $ost_nid $ost_nid >/dev/null 2>&1
11680
11681         [ $rc -eq 0 ] && { $LCTL attach osc ${obdfilter_name}_osc     \
11682                            ${obdfilter_name}_osc_UUID || rc=2; }
11683         [ $rc -eq 0 ] && { $LCTL --device ${obdfilter_name}_osc setup \
11684                            ${obdfilter_name}_UUID  $ost_nid || rc=3; }
11685         return $rc
11686 }
11687
11688 cleanup_obdecho_osc () {
11689         local obdfilter_name=$1
11690         $LCTL --device ${obdfilter_name}_osc cleanup >/dev/null
11691         $LCTL --device ${obdfilter_name}_osc detach  >/dev/null
11692         return 0
11693 }
11694
11695 obdecho_test() {
11696         local OBD=$1
11697         local node=$2
11698         local pages=${3:-64}
11699         local rc=0
11700         local id
11701
11702         local count=10
11703         local obd_size=$(get_obd_size $node $OBD)
11704         local page_size=$(get_page_size $node)
11705         if [[ -n "$obd_size" ]]; then
11706                 local new_count=$((obd_size / (pages * page_size / 1024)))
11707                 [[ $new_count -ge $count ]] || count=$new_count
11708         fi
11709
11710         do_facet $node "$LCTL attach echo_client ec ec_uuid" || rc=1
11711         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec setup $OBD" ||
11712                            rc=2; }
11713         if [ $rc -eq 0 ]; then
11714             id=$(do_facet $node "$LCTL --device ec create 1"  | awk '/object id/ {print $6}')
11715             [ ${PIPESTATUS[0]} -eq 0 -a -n "$id" ] || rc=3
11716         fi
11717         echo "New object id is $id"
11718         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec getattr $id" ||
11719                            rc=4; }
11720         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec "                 \
11721                            "test_brw $count w v $pages $id" || rc=4; }
11722         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec destroy $id 1" ||
11723                            rc=4; }
11724         [ $rc -eq 0 -o $rc -gt 2 ] && { do_facet $node "$LCTL --device ec "    \
11725                                         "cleanup" || rc=5; }
11726         [ $rc -eq 0 -o $rc -gt 1 ] && { do_facet $node "$LCTL --device ec "    \
11727                                         "detach" || rc=6; }
11728         [ $rc -ne 0 ] && echo "obecho_create_test failed: $rc"
11729         return $rc
11730 }
11731
11732 test_180a() {
11733         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11734         remote_ost_nodsh && skip "remote OST with nodsh" && return
11735         local rc=0
11736         local rmmod_local=0
11737
11738         if ! module_loaded obdecho; then
11739             load_module obdecho/obdecho
11740             rmmod_local=1
11741         fi
11742
11743         local osc=$($LCTL dl | grep -v mdt | awk '$3 == "osc" {print $4; exit}')
11744         local host=$(lctl get_param -n osc.$osc.import |
11745                              awk '/current_connection:/ {print $2}' )
11746         local target=$(lctl get_param -n osc.$osc.import |
11747                              awk '/target:/ {print $2}' )
11748         target=${target%_UUID}
11749
11750         [[ -n $target ]]  && { setup_obdecho_osc $host $target || rc=1; } || rc=1
11751         [ $rc -eq 0 ] && { obdecho_test ${target}_osc client || rc=2; }
11752         [[ -n $target ]] && cleanup_obdecho_osc $target
11753         [ $rmmod_local -eq 1 ] && rmmod obdecho
11754         return $rc
11755 }
11756 run_test 180a "test obdecho on osc"
11757
11758 test_180b() {
11759         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11760         remote_ost_nodsh && skip "remote OST with nodsh" && return
11761         local rc=0
11762         local rmmod_remote=0
11763
11764         do_rpc_nodes $(facet_active_host ost1) load_module obdecho/obdecho &&
11765                 rmmod_remote=true || error "failed to load module obdecho"
11766         target=$(do_facet ost1 $LCTL dl | awk '/obdfilter/ {print $4;exit}')
11767         [[ -n $target ]] && { obdecho_test $target ost1 || rc=1; }
11768         $rmmod_remote && do_facet ost1 "rmmod obdecho"
11769         return $rc
11770 }
11771 run_test 180b "test obdecho directly on obdfilter"
11772
11773 test_180c() { # LU-2598
11774         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11775         remote_ost_nodsh && skip "remote OST with nodsh" && return
11776         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.0) ]] &&
11777                 skip "Need MDS version at least 2.4.0" && return
11778
11779         local rc=0
11780         local rmmod_remote=false
11781         local pages=16384 # 64MB bulk I/O RPC size
11782         local target
11783
11784         do_rpc_nodes $(facet_active_host ost1) load_module obdecho/obdecho &&
11785                 rmmod_remote=true || error "failed to load module obdecho"
11786
11787         target=$(do_facet ost1 $LCTL dl | awk '/obdfilter/ { print $4 }' |
11788                 head -n1)
11789         if [ -n "$target" ]; then
11790                 obdecho_test "$target" ost1 "$pages" || rc=${PIPESTATUS[0]}
11791         else
11792                 echo "there is no obdfilter target on ost1"
11793                 rc=2
11794         fi
11795         $rmmod_remote && do_facet ost1 "rmmod obdecho" || true
11796         return $rc
11797 }
11798 run_test 180c "test huge bulk I/O size on obdfilter, don't LASSERT"
11799
11800 test_181() { # bug 22177
11801         test_mkdir $DIR/$tdir
11802         # create enough files to index the directory
11803         createmany -o $DIR/$tdir/foobar 4000
11804         # print attributes for debug purpose
11805         lsattr -d .
11806         # open dir
11807         multiop_bg_pause $DIR/$tdir D_Sc || return 1
11808         MULTIPID=$!
11809         # remove the files & current working dir
11810         unlinkmany $DIR/$tdir/foobar 4000
11811         rmdir $DIR/$tdir
11812         kill -USR1 $MULTIPID
11813         wait $MULTIPID
11814         stat $DIR/$tdir && error "open-unlinked dir was not removed!"
11815         return 0
11816 }
11817 run_test 181 "Test open-unlinked dir ========================"
11818
11819 test_182() {
11820         local fcount=1000
11821         local tcount=10
11822
11823         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
11824
11825         $LCTL set_param mdc.*.rpc_stats=clear
11826
11827         for (( i = 0; i < $tcount; i++ )) ; do
11828                 mkdir $DIR/$tdir/$i
11829         done
11830
11831         for (( i = 0; i < $tcount; i++ )) ; do
11832                 createmany -o $DIR/$tdir/$i/f- $fcount &
11833         done
11834         wait
11835
11836         for (( i = 0; i < $tcount; i++ )) ; do
11837                 unlinkmany $DIR/$tdir/$i/f- $fcount &
11838         done
11839         wait
11840
11841         $LCTL get_param mdc.*.rpc_stats
11842
11843         rm -rf $DIR/$tdir
11844 }
11845 run_test 182 "Test parallel modify metadata operations ================"
11846
11847 test_183() { # LU-2275
11848         remote_mds_nodsh && skip "remote MDS with nodsh" && return
11849         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.56) ]] &&
11850                 skip "Need MDS version at least 2.3.56" && return
11851
11852         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11853         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
11854         echo aaa > $DIR/$tdir/$tfile
11855
11856 #define OBD_FAIL_MDS_NEGATIVE_POSITIVE  0x148
11857         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x148
11858
11859         ls -l $DIR/$tdir && error "ls succeeded, should have failed"
11860         cat $DIR/$tdir/$tfile && error "cat succeeded, should have failed"
11861
11862         do_facet $SINGLEMDS $LCTL set_param fail_loc=0
11863
11864         # Flush negative dentry cache
11865         touch $DIR/$tdir/$tfile
11866
11867         # We are not checking for any leaked references here, they'll
11868         # become evident next time we do cleanup with module unload.
11869         rm -rf $DIR/$tdir
11870 }
11871 run_test 183 "No crash or request leak in case of strange dispositions ========"
11872
11873 # test suite 184 is for LU-2016, LU-2017
11874 test_184a() {
11875         check_swap_layouts_support && return 0
11876
11877         dir0=$DIR/$tdir/$testnum
11878         test_mkdir -p -c1 $dir0
11879         ref1=/etc/passwd
11880         ref2=/etc/group
11881         file1=$dir0/f1
11882         file2=$dir0/f2
11883         $SETSTRIPE -c1 $file1
11884         cp $ref1 $file1
11885         $SETSTRIPE -c2 $file2
11886         cp $ref2 $file2
11887         gen1=$($GETSTRIPE -g $file1)
11888         gen2=$($GETSTRIPE -g $file2)
11889
11890         $LFS swap_layouts $file1 $file2 || error "swap of file layout failed"
11891         gen=$($GETSTRIPE -g $file1)
11892         [[ $gen1 != $gen ]] ||
11893                 "Layout generation on $file1 does not change"
11894         gen=$($GETSTRIPE -g $file2)
11895         [[ $gen2 != $gen ]] ||
11896                 "Layout generation on $file2 does not change"
11897
11898         cmp $ref1 $file2 || error "content compare failed ($ref1 != $file2)"
11899         cmp $ref2 $file1 || error "content compare failed ($ref2 != $file1)"
11900 }
11901 run_test 184a "Basic layout swap"
11902
11903 test_184b() {
11904         check_swap_layouts_support && return 0
11905
11906         dir0=$DIR/$tdir/$testnum
11907         mkdir -p $dir0 || error "creating dir $dir0"
11908         file1=$dir0/f1
11909         file2=$dir0/f2
11910         file3=$dir0/f3
11911         dir1=$dir0/d1
11912         dir2=$dir0/d2
11913         mkdir $dir1 $dir2
11914         $SETSTRIPE -c1 $file1
11915         $SETSTRIPE -c2 $file2
11916         $SETSTRIPE -c1 $file3
11917         chown $RUNAS_ID $file3
11918         gen1=$($GETSTRIPE -g $file1)
11919         gen2=$($GETSTRIPE -g $file2)
11920
11921         $LFS swap_layouts $dir1 $dir2 &&
11922                 error "swap of directories layouts should fail"
11923         $LFS swap_layouts $dir1 $file1 &&
11924                 error "swap of directory and file layouts should fail"
11925         $RUNAS $LFS swap_layouts $file1 $file2 &&
11926                 error "swap of file we cannot write should fail"
11927         $LFS swap_layouts $file1 $file3 &&
11928                 error "swap of file with different owner should fail"
11929         /bin/true # to clear error code
11930 }
11931 run_test 184b "Forbidden layout swap (will generate errors)"
11932
11933 test_184c() {
11934         local cmpn_arg=$(cmp -n 2>&1 | grep "invalid option")
11935         [ -n "$cmpn_arg" ] && skip_env "cmp does not support -n" && return
11936         check_swap_layouts_support && return 0
11937
11938         local dir0=$DIR/$tdir/$testnum
11939         mkdir -p $dir0 || error "creating dir $dir0"
11940
11941         local ref1=$dir0/ref1
11942         local ref2=$dir0/ref2
11943         local file1=$dir0/file1
11944         local file2=$dir0/file2
11945         # create a file large enough for the concurrent test
11946         dd if=/dev/urandom of=$ref1 bs=1M count=$((RANDOM % 50 + 20))
11947         dd if=/dev/urandom of=$ref2 bs=1M count=$((RANDOM % 50 + 20))
11948         echo "ref file size: ref1($(stat -c %s $ref1))," \
11949              "ref2($(stat -c %s $ref2))"
11950
11951         cp $ref2 $file2
11952         dd if=$ref1 of=$file1 bs=16k &
11953         local DD_PID=$!
11954
11955         # Make sure dd starts to copy file
11956         while [ ! -f $file1 ]; do sleep 0.1; done
11957
11958         $LFS swap_layouts $file1 $file2
11959         local rc=$?
11960         wait $DD_PID
11961         [[ $? == 0 ]] || error "concurrent write on $file1 failed"
11962         [[ $rc == 0 ]] || error "swap of $file1 and $file2 failed"
11963
11964         # how many bytes copied before swapping layout
11965         local copied=$(stat -c %s $file2)
11966         local remaining=$(stat -c %s $ref1)
11967         remaining=$((remaining - copied))
11968         echo "Copied $copied bytes before swapping layout..."
11969
11970         cmp -n $copied $file1 $ref2 | grep differ &&
11971                 error "Content mismatch [0, $copied) of ref2 and file1"
11972         cmp -n $copied $file2 $ref1 ||
11973                 error "Content mismatch [0, $copied) of ref1 and file2"
11974         cmp -i $copied:$copied -n $remaining $file1 $ref1 ||
11975                 error "Content mismatch [$copied, EOF) of ref1 and file1"
11976
11977         # clean up
11978         rm -f $ref1 $ref2 $file1 $file2
11979 }
11980 run_test 184c "Concurrent write and layout swap"
11981
11982 test_184d() {
11983         check_swap_layouts_support && return 0
11984         [ -z "$(which getfattr 2>/dev/null)" ] &&
11985                 skip "no getfattr command" && return 0
11986
11987         local file1=$DIR/$tdir/$tfile-1
11988         local file2=$DIR/$tdir/$tfile-2
11989         local file3=$DIR/$tdir/$tfile-3
11990         local lovea1
11991         local lovea2
11992
11993         mkdir -p $DIR/$tdir
11994         touch $file1 || error "create $file1 failed"
11995         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file2 ||
11996                 error "create $file2 failed"
11997         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file3 ||
11998                 error "create $file3 failed"
11999         lovea1=$(get_layout_param $file1)
12000
12001         $LFS swap_layouts $file2 $file3 ||
12002                 error "swap $file2 $file3 layouts failed"
12003         $LFS swap_layouts $file1 $file2 ||
12004                 error "swap $file1 $file2 layouts failed"
12005
12006         lovea2=$(get_layout_param $file2)
12007         echo "$lovea1"
12008         echo "$lovea2"
12009         [ "$lovea1" == "$lovea2" ] || error "lovea $lovea1 != $lovea2"
12010
12011         lovea1=$(getfattr -n trusted.lov $file1 | grep ^trusted)
12012         [[ -z "$lovea1" ]] || error "$file1 shouldn't have lovea"
12013 }
12014 run_test 184d "allow stripeless layouts swap"
12015
12016 test_184e() {
12017         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.94) ]] ||
12018                 { skip "Need MDS version at least 2.6.94"; return 0; }
12019         check_swap_layouts_support && return 0
12020         [ -z "$(which getfattr 2>/dev/null)" ] &&
12021                 skip "no getfattr command" && return 0
12022
12023         local file1=$DIR/$tdir/$tfile-1
12024         local file2=$DIR/$tdir/$tfile-2
12025         local file3=$DIR/$tdir/$tfile-3
12026         local lovea
12027
12028         mkdir -p $DIR/$tdir
12029         touch $file1 || error "create $file1 failed"
12030         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file2 ||
12031                 error "create $file2 failed"
12032         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file3 ||
12033                 error "create $file3 failed"
12034
12035         $LFS swap_layouts $file1 $file2 ||
12036                 error "swap $file1 $file2 layouts failed"
12037
12038         lovea=$(getfattr -n trusted.lov $file1 | grep ^trusted)
12039         [[ -z "$lovea" ]] || error "$file1 shouldn't have lovea"
12040
12041         echo 123 > $file1 || error "Should be able to write into $file1"
12042
12043         $LFS swap_layouts $file1 $file3 ||
12044                 error "swap $file1 $file3 layouts failed"
12045
12046         echo 123 > $file1 || error "Should be able to write into $file1"
12047
12048         rm -rf $file1 $file2 $file3
12049 }
12050 run_test 184e "Recreate layout after stripeless layout swaps"
12051
12052 test_185() { # LU-2441
12053         # LU-3553 - no volatile file support in old servers
12054         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.60) ]] ||
12055                 { skip "Need MDS version at least 2.3.60"; return 0; }
12056
12057         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
12058         touch $DIR/$tdir/spoo
12059         local mtime1=$(stat -c "%Y" $DIR/$tdir)
12060         local fid=$($MULTIOP $DIR/$tdir VFw4096c) ||
12061                 error "cannot create/write a volatile file"
12062         [ "$FILESET" == "" ] &&
12063         $CHECKSTAT -t file $MOUNT/.lustre/fid/$fid 2>/dev/null &&
12064                 error "FID is still valid after close"
12065
12066         multiop_bg_pause $DIR/$tdir vVw4096_c
12067         local multi_pid=$!
12068
12069         local OLD_IFS=$IFS
12070         IFS=":"
12071         local fidv=($fid)
12072         IFS=$OLD_IFS
12073         # assume that the next FID for this client is sequential, since stdout
12074         # is unfortunately eaten by multiop_bg_pause
12075         local n=$((${fidv[1]} + 1))
12076         local next_fid="${fidv[0]}:$(printf "0x%x" $n):${fidv[2]}"
12077         if [ "$FILESET" == "" ]; then
12078                 $CHECKSTAT -t file $MOUNT/.lustre/fid/$next_fid ||
12079                         error "FID is missing before close"
12080         fi
12081         kill -USR1 $multi_pid
12082         # 1 second delay, so if mtime change we will see it
12083         sleep 1
12084         local mtime2=$(stat -c "%Y" $DIR/$tdir)
12085         [[ $mtime1 == $mtime2 ]] || error "mtime has changed"
12086 }
12087 run_test 185 "Volatile file support"
12088
12089 test_187a() {
12090         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12091         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.0) ] &&
12092                 skip "Need MDS version at least 2.3.0" && return
12093
12094         local dir0=$DIR/$tdir/$testnum
12095         mkdir -p $dir0 || error "creating dir $dir0"
12096
12097         local file=$dir0/file1
12098         dd if=/dev/urandom of=$file count=10 bs=1M conv=fsync
12099         local dv1=$($LFS data_version $file)
12100         dd if=/dev/urandom of=$file seek=10 count=1 bs=1M conv=fsync
12101         local dv2=$($LFS data_version $file)
12102         [[ $dv1 != $dv2 ]] ||
12103                 error "data version did not change on write $dv1 == $dv2"
12104
12105         # clean up
12106         rm -f $file1
12107 }
12108 run_test 187a "Test data version change"
12109
12110 test_187b() {
12111         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12112         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.0) ] &&
12113                 skip "Need MDS version at least 2.3.0" && return
12114
12115         local dir0=$DIR/$tdir/$testnum
12116         mkdir -p $dir0 || error "creating dir $dir0"
12117
12118         declare -a DV=$($MULTIOP $dir0 Vw1000xYw1000xY | cut -f3 -d" ")
12119         [[ ${DV[0]} != ${DV[1]} ]] ||
12120                 error "data version did not change on write"\
12121                       " ${DV[0]} == ${DV[1]}"
12122
12123         # clean up
12124         rm -f $file1
12125 }
12126 run_test 187b "Test data version change on volatile file"
12127
12128 test_200() {
12129         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12130         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
12131         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
12132
12133         local POOL=${POOL:-cea1}
12134         local POOL_ROOT=${POOL_ROOT:-$DIR/d200.pools}
12135         local POOL_DIR_NAME=${POOL_DIR_NAME:-dir_tst}
12136         # Pool OST targets
12137         local first_ost=0
12138         local last_ost=$(($OSTCOUNT - 1))
12139         local ost_step=2
12140         local ost_list=$(seq $first_ost $ost_step $last_ost)
12141         local ost_range="$first_ost $last_ost $ost_step"
12142         local test_path=$POOL_ROOT/$POOL_DIR_NAME
12143         local file_dir=$POOL_ROOT/file_tst
12144         local subdir=$test_path/subdir
12145
12146         local rc=0
12147         while : ; do
12148                 # former test_200a test_200b
12149                 pool_add $POOL                          || { rc=$? ; break; }
12150                 pool_add_targets  $POOL $ost_range      || { rc=$? ; break; }
12151                 # former test_200c test_200d
12152                 mkdir -p $test_path
12153                 pool_set_dir      $POOL $test_path      || { rc=$? ; break; }
12154                 pool_check_dir    $POOL $test_path      || { rc=$? ; break; }
12155                 mkdir -p $subdir
12156                 pool_check_dir    $POOL $subdir         || { rc=$? ; break; }
12157                 pool_dir_rel_path $POOL $POOL_DIR_NAME $POOL_ROOT \
12158                                                         || { rc=$? ; break; }
12159                 # former test_200e test_200f
12160                 local files=$((OSTCOUNT*3))
12161                 pool_alloc_files  $POOL $test_path $files "$ost_list" \
12162                                                         || { rc=$? ; break; }
12163                 pool_create_files $POOL $file_dir $files "$ost_list" \
12164                                                         || { rc=$? ; break; }
12165                 # former test_200g test_200h
12166                 pool_lfs_df $POOL                       || { rc=$? ; break; }
12167                 pool_file_rel_path $POOL $test_path     || { rc=$? ; break; }
12168
12169                 # former test_201a test_201b test_201c
12170                 pool_remove_first_target $POOL          || { rc=$? ; break; }
12171
12172                 local f=$test_path/$tfile
12173                 pool_remove_all_targets $POOL $f        || { rc=$? ; break; }
12174                 pool_remove $POOL $f                    || { rc=$? ; break; }
12175                 break
12176         done
12177
12178         destroy_test_pools
12179         return $rc
12180 }
12181 run_test 200 "OST pools"
12182
12183 # usage: default_attr <count | size | offset>
12184 default_attr() {
12185         $LCTL get_param -n lov.$FSNAME-clilov-\*.stripe${1}
12186 }
12187
12188 # usage: check_default_stripe_attr
12189 check_default_stripe_attr() {
12190         ACTUAL=$($GETSTRIPE $* $DIR/$tdir)
12191         case $1 in
12192         --stripe-count|-c)
12193                 [ -n "$2" ] && EXPECTED=0 || EXPECTED=$(default_attr count);;
12194         --stripe-size|-S)
12195                 [ -n "$2" ] && EXPECTED=0 || EXPECTED=$(default_attr size);;
12196         --stripe-index|-i)
12197                 EXPECTED=-1;;
12198         *)
12199                 error "unknown getstripe attr '$1'"
12200         esac
12201
12202         [ $ACTUAL == $EXPECTED ] ||
12203                 error "$DIR/$tdir has $1 '$ACTUAL', not '$EXPECTED'"
12204 }
12205
12206 test_204a() {
12207         test_mkdir $DIR/$tdir
12208         $SETSTRIPE --stripe-count 0 --stripe-size 0 --stripe-index -1 $DIR/$tdir
12209
12210         check_default_stripe_attr --stripe-count
12211         check_default_stripe_attr --stripe-size
12212         check_default_stripe_attr --stripe-index
12213 }
12214 run_test 204a "Print default stripe attributes"
12215
12216 test_204b() {
12217         test_mkdir $DIR/$tdir
12218         $SETSTRIPE --stripe-count 1 $DIR/$tdir
12219
12220         check_default_stripe_attr --stripe-size
12221         check_default_stripe_attr --stripe-index
12222 }
12223 run_test 204b "Print default stripe size and offset"
12224
12225 test_204c() {
12226         test_mkdir $DIR/$tdir
12227         $SETSTRIPE --stripe-size 65536 $DIR/$tdir
12228
12229         check_default_stripe_attr --stripe-count
12230         check_default_stripe_attr --stripe-index
12231 }
12232 run_test 204c "Print default stripe count and offset"
12233
12234 test_204d() {
12235         test_mkdir $DIR/$tdir
12236         $SETSTRIPE --stripe-index 0 $DIR/$tdir
12237
12238         check_default_stripe_attr --stripe-count
12239         check_default_stripe_attr --stripe-size
12240 }
12241 run_test 204d "Print default stripe count and size"
12242
12243 test_204e() {
12244         test_mkdir $DIR/$tdir
12245         $SETSTRIPE -d $DIR/$tdir
12246
12247         check_default_stripe_attr --stripe-count --raw
12248         check_default_stripe_attr --stripe-size --raw
12249         check_default_stripe_attr --stripe-index --raw
12250 }
12251 run_test 204e "Print raw stripe attributes"
12252
12253 test_204f() {
12254         test_mkdir $DIR/$tdir
12255         $SETSTRIPE --stripe-count 1 $DIR/$tdir
12256
12257         check_default_stripe_attr --stripe-size --raw
12258         check_default_stripe_attr --stripe-index --raw
12259 }
12260 run_test 204f "Print raw stripe size and offset"
12261
12262 test_204g() {
12263         test_mkdir $DIR/$tdir
12264         $SETSTRIPE --stripe-size 65536 $DIR/$tdir
12265
12266         check_default_stripe_attr --stripe-count --raw
12267         check_default_stripe_attr --stripe-index --raw
12268 }
12269 run_test 204g "Print raw stripe count and offset"
12270
12271 test_204h() {
12272         test_mkdir $DIR/$tdir
12273         $SETSTRIPE --stripe-index 0 $DIR/$tdir
12274
12275         check_default_stripe_attr --stripe-count --raw
12276         check_default_stripe_attr --stripe-size --raw
12277 }
12278 run_test 204h "Print raw stripe count and size"
12279
12280 # Figure out which job scheduler is being used, if any,
12281 # or use a fake one
12282 if [ -n "$SLURM_JOB_ID" ]; then # SLURM
12283         JOBENV=SLURM_JOB_ID
12284 elif [ -n "$LSB_JOBID" ]; then # Load Sharing Facility
12285         JOBENV=LSB_JOBID
12286 elif [ -n "$PBS_JOBID" ]; then # PBS/Maui/Moab
12287         JOBENV=PBS_JOBID
12288 elif [ -n "$LOADL_STEPID" ]; then # LoadLeveller
12289         JOBENV=LOADL_STEP_ID
12290 elif [ -n "$JOB_ID" ]; then # Sun Grid Engine
12291         JOBENV=JOB_ID
12292 else
12293         $LCTL list_param jobid_name > /dev/null 2>&1
12294         if [ $? -eq 0 ]; then
12295                 JOBENV=nodelocal
12296         else
12297                 JOBENV=FAKE_JOBID
12298         fi
12299 fi
12300
12301 verify_jobstats() {
12302         local cmd=($1)
12303         shift
12304         local facets="$@"
12305
12306 # we don't really need to clear the stats for this test to work, since each
12307 # command has a unique jobid, but it makes debugging easier if needed.
12308 #       for facet in $facets; do
12309 #               local dev=$(convert_facet2label $facet)
12310 #               # clear old jobstats
12311 #               do_facet $facet lctl set_param *.$dev.job_stats="clear"
12312 #       done
12313
12314         # use a new JobID for each test, or we might see an old one
12315         [ "$JOBENV" = "FAKE_JOBID" ] &&
12316                 FAKE_JOBID=id.$testnum.$(basename ${cmd[0]}).$RANDOM
12317
12318         JOBVAL=${!JOBENV}
12319
12320         [ "$JOBENV" = "nodelocal" ] && {
12321                 FAKE_JOBID=id.$testnum.$(basename ${cmd[0]}).$RANDOM
12322                 $LCTL set_param jobid_name=$FAKE_JOBID
12323                 JOBVAL=$FAKE_JOBID
12324         }
12325
12326         log "Test: ${cmd[*]}"
12327         log "Using JobID environment variable $JOBENV=$JOBVAL"
12328
12329         if [ $JOBENV = "FAKE_JOBID" ]; then
12330                 FAKE_JOBID=$JOBVAL ${cmd[*]}
12331         else
12332                 ${cmd[*]}
12333         fi
12334
12335         # all files are created on OST0000
12336         for facet in $facets; do
12337                 local stats="*.$(convert_facet2label $facet).job_stats"
12338                 if [ $(do_facet $facet lctl get_param $stats |
12339                        grep -c $JOBVAL) -ne 1 ]; then
12340                         do_facet $facet lctl get_param $stats
12341                         error "No jobstats for $JOBVAL found on $facet::$stats"
12342                 fi
12343         done
12344 }
12345
12346 jobstats_set() {
12347         trap 0
12348         NEW_JOBENV=${1:-$OLD_JOBENV}
12349         do_facet mgs $LCTL conf_param $FSNAME.sys.jobid_var=$NEW_JOBENV
12350         wait_update $HOSTNAME "$LCTL get_param -n jobid_var" $NEW_JOBENV
12351 }
12352
12353 cleanup_205() {
12354         trap 0
12355         do_facet $SINGLEMDS \
12356                 $LCTL set_param mdt.*.job_cleanup_interval=$OLD_INTERVAL
12357         [ $OLD_JOBENV != $JOBENV ] && jobstats_set $OLD_JOBENV
12358         cleanup_changelog
12359 }
12360
12361 test_205() { # Job stats
12362         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.7.1) ]] ||
12363                 { skip "Need MDS version with at least 2.7.1"; return 0; }
12364
12365         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12366         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
12367         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12368         remote_ost_nodsh && skip "remote OST with nodsh" && return
12369
12370         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep jobstats)" ] &&
12371                 skip "Server doesn't support jobstats" && return 0
12372         [[ $JOBID_VAR = disable ]] && skip "jobstats is disabled" && return
12373
12374         OLD_JOBENV=$($LCTL get_param -n jobid_var)
12375         if [ $OLD_JOBENV != $JOBENV ]; then
12376                 jobstats_set $JOBENV
12377                 trap cleanup_205 EXIT
12378         fi
12379
12380         CL_USER=$(do_facet $SINGLEMDS lctl --device $MDT0 changelog_register -n)
12381         echo "Registered as changelog user $CL_USER"
12382
12383         OLD_INTERVAL=$(do_facet $SINGLEMDS \
12384                        lctl get_param -n mdt.*.job_cleanup_interval)
12385         local interval_new=5
12386         do_facet $SINGLEMDS \
12387                 $LCTL set_param mdt.*.job_cleanup_interval=$interval_new
12388         local start=$SECONDS
12389
12390         local cmd
12391         # mkdir
12392         cmd="mkdir $DIR/$tdir"
12393         verify_jobstats "$cmd" "$SINGLEMDS"
12394         # rmdir
12395         cmd="rmdir $DIR/$tdir"
12396         verify_jobstats "$cmd" "$SINGLEMDS"
12397         # mkdir on secondary MDT
12398         if [ $MDSCOUNT -gt 1 ]; then
12399                 cmd="lfs mkdir -i 1 $DIR/$tdir.remote"
12400                 verify_jobstats "$cmd" "mds2"
12401         fi
12402         # mknod
12403         cmd="mknod $DIR/$tfile c 1 3"
12404         verify_jobstats "$cmd" "$SINGLEMDS"
12405         # unlink
12406         cmd="rm -f $DIR/$tfile"
12407         verify_jobstats "$cmd" "$SINGLEMDS"
12408         # create all files on OST0000 so verify_jobstats can find OST stats
12409         # open & close
12410         cmd="$SETSTRIPE -i 0 -c 1 $DIR/$tfile"
12411         verify_jobstats "$cmd" "$SINGLEMDS"
12412         # setattr
12413         cmd="touch $DIR/$tfile"
12414         verify_jobstats "$cmd" "$SINGLEMDS ost1"
12415         # write
12416         cmd="dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 oflag=sync"
12417         verify_jobstats "$cmd" "ost1"
12418         # read
12419         cancel_lru_locks osc
12420         cmd="dd if=$DIR/$tfile of=/dev/null bs=1M count=1 iflag=direct"
12421         verify_jobstats "$cmd" "ost1"
12422         # truncate
12423         cmd="$TRUNCATE $DIR/$tfile 0"
12424         verify_jobstats "$cmd" "$SINGLEMDS ost1"
12425         # rename
12426         cmd="mv -f $DIR/$tfile $DIR/$tdir.rename"
12427         verify_jobstats "$cmd" "$SINGLEMDS"
12428         # jobstats expiry - sleep until old stats should be expired
12429         local left=$((interval_new + 5 - (SECONDS - start)))
12430         [ $left -ge 0 ] && wait_update_facet $SINGLEMDS \
12431                 "lctl get_param *.*.job_stats | grep -c 'job_id.*mkdir'" \
12432                         "0" $left
12433         cmd="mkdir $DIR/$tdir.expire"
12434         verify_jobstats "$cmd" "$SINGLEMDS"
12435         [ $(do_facet $SINGLEMDS lctl get_param *.*.job_stats |
12436             grep -c "job_id.*mkdir") -gt 1 ] && error "old jobstats not expired"
12437
12438         # Ensure that jobid are present in changelog (if supported by MDS)
12439         if [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.52) ]
12440         then
12441                 $LFS changelog $MDT0 | tail -9
12442                 jobids=$($LFS changelog $MDT0 | tail -9 | grep -c "j=")
12443                 [ $jobids -eq 9 ] ||
12444                         error "Wrong changelog jobid count $jobids != 9"
12445
12446                 # LU-5862
12447                 JOBENV="disable"
12448                 jobstats_set $JOBENV
12449                 touch $DIR/$tfile
12450                 $LFS changelog $MDT0 | tail -1
12451                 jobids=$($LFS changelog $MDT0 | tail -1 | grep -c "j=")
12452                 [ $jobids -eq 0 ] ||
12453                         error "Unexpected jobids when jobid_var=$JOBENV"
12454         fi
12455
12456         cleanup_205
12457 }
12458 run_test 205 "Verify job stats"
12459
12460 # LU-1480, LU-1773 and LU-1657
12461 test_206() {
12462         mkdir -p $DIR/$tdir
12463         $SETSTRIPE -c -1 $DIR/$tdir
12464 #define OBD_FAIL_LOV_INIT 0x1403
12465         $LCTL set_param fail_loc=0xa0001403
12466         $LCTL set_param fail_val=1
12467         touch $DIR/$tdir/$tfile || true
12468 }
12469 run_test 206 "fail lov_init_raid0() doesn't lbug"
12470
12471 test_207a() {
12472         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((RANDOM%10+1))
12473         local fsz=`stat -c %s $DIR/$tfile`
12474         cancel_lru_locks mdc
12475
12476         # do not return layout in getattr intent
12477 #define OBD_FAIL_MDS_NO_LL_GETATTR 0x170
12478         $LCTL set_param fail_loc=0x170
12479         local sz=`stat -c %s $DIR/$tfile`
12480
12481         [ $fsz -eq $sz ] || error "file size expected $fsz, actual $sz"
12482
12483         rm -rf $DIR/$tfile
12484 }
12485 run_test 207a "can refresh layout at glimpse"
12486
12487 test_207b() {
12488         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((RANDOM%10+1))
12489         local cksum=`md5sum $DIR/$tfile`
12490         local fsz=`stat -c %s $DIR/$tfile`
12491         cancel_lru_locks mdc
12492         cancel_lru_locks osc
12493
12494         # do not return layout in getattr intent
12495 #define OBD_FAIL_MDS_NO_LL_OPEN 0x171
12496         $LCTL set_param fail_loc=0x171
12497
12498         # it will refresh layout after the file is opened but before read issues
12499         echo checksum is "$cksum"
12500         echo "$cksum" |md5sum -c --quiet || error "file differs"
12501
12502         rm -rf $DIR/$tfile
12503 }
12504 run_test 207b "can refresh layout at open"
12505
12506 test_208() {
12507         # FIXME: in this test suite, only RD lease is used. This is okay
12508         # for now as only exclusive open is supported. After generic lease
12509         # is done, this test suite should be revised. - Jinshan
12510
12511         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12512         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.4.52) ]] ||
12513                 { skip "Need MDS version at least 2.4.52"; return 0; }
12514
12515         echo "==== test 1: verify get lease work"
12516         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:eRE+eU || error "get lease error"
12517
12518         echo "==== test 2: verify lease can be broken by upcoming open"
12519         $MULTIOP $DIR/$tfile oO_RDONLY:eR_E-eUc &
12520         local PID=$!
12521         sleep 1
12522
12523         $MULTIOP $DIR/$tfile oO_RDONLY:c
12524         kill -USR1 $PID && wait $PID || error "break lease error"
12525
12526         echo "==== test 3: verify lease can't be granted if an open already exists"
12527         $MULTIOP $DIR/$tfile oO_RDONLY:_c &
12528         local PID=$!
12529         sleep 1
12530
12531         $MULTIOP $DIR/$tfile oO_RDONLY:eReUc && error "apply lease should fail"
12532         kill -USR1 $PID && wait $PID || error "open file error"
12533
12534         echo "==== test 4: lease can sustain over recovery"
12535         $MULTIOP $DIR/$tfile oO_RDONLY:eR_E+eUc &
12536         PID=$!
12537         sleep 1
12538
12539         fail mds1
12540
12541         kill -USR1 $PID && wait $PID || error "lease broken over recovery"
12542
12543         echo "==== test 5: lease broken can't be regained by replay"
12544         $MULTIOP $DIR/$tfile oO_RDONLY:eR_E-eUc &
12545         PID=$!
12546         sleep 1
12547
12548         # open file to break lease and then recovery
12549         $MULTIOP $DIR/$tfile oO_RDWR:c || error "open file error"
12550         fail mds1
12551
12552         kill -USR1 $PID && wait $PID || error "lease not broken over recovery"
12553
12554         rm -f $DIR/$tfile
12555 }
12556 run_test 208 "Exclusive open"
12557
12558 test_209() {
12559         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep disp_stripe)" ] &&
12560                 skip_env "must have disp_stripe" && return
12561
12562         touch $DIR/$tfile
12563         sync; sleep 5; sync;
12564
12565         echo 3 > /proc/sys/vm/drop_caches
12566         req_before=$(awk '/ptlrpc_cache / { print $2 }' /proc/slabinfo)
12567
12568         # open/close 500 times
12569         for i in $(seq 500); do
12570                 cat $DIR/$tfile
12571         done
12572
12573         echo 3 > /proc/sys/vm/drop_caches
12574         req_after=$(awk '/ptlrpc_cache / { print $2 }' /proc/slabinfo)
12575
12576         echo "before: $req_before, after: $req_after"
12577         [ $((req_after - req_before)) -ge 300 ] &&
12578                 error "open/close requests are not freed"
12579         return 0
12580 }
12581 run_test 209 "read-only open/close requests should be freed promptly"
12582
12583 test_212() {
12584         size=`date +%s`
12585         size=$((size % 8192 + 1))
12586         dd if=/dev/urandom of=$DIR/f212 bs=1k count=$size
12587         sendfile $DIR/f212 $DIR/f212.xyz || error "sendfile wrong"
12588         rm -f $DIR/f212 $DIR/f212.xyz
12589 }
12590 run_test 212 "Sendfile test ============================================"
12591
12592 test_213() {
12593         dd if=/dev/zero of=$DIR/$tfile bs=4k count=4
12594         cancel_lru_locks osc
12595         lctl set_param fail_loc=0x8000040f
12596         # generate a read lock
12597         cat $DIR/$tfile > /dev/null
12598         # write to the file, it will try to cancel the above read lock.
12599         cat /etc/hosts >> $DIR/$tfile
12600 }
12601 run_test 213 "OSC lock completion and cancel race don't crash - bug 18829"
12602
12603 test_214() { # for bug 20133
12604         mkdir -p $DIR/$tdir/d214c || error "mkdir $DIR/$tdir/d214c failed"
12605         for (( i=0; i < 340; i++ )) ; do
12606                 touch $DIR/$tdir/d214c/a$i
12607         done
12608
12609         ls -l $DIR/$tdir || error "ls -l $DIR/d214p failed"
12610         mv $DIR/$tdir/d214c $DIR/ || error "mv $DIR/d214p/d214c $DIR/ failed"
12611         ls $DIR/d214c || error "ls $DIR/d214c failed"
12612         rm -rf $DIR/$tdir || error "rm -rf $DIR/d214* failed"
12613         rm -rf $DIR/d214* || error "rm -rf $DIR/d214* failed"
12614 }
12615 run_test 214 "hash-indexed directory test - bug 20133"
12616
12617 # having "abc" as 1st arg, creates $TMP/lnet_abc.out and $TMP/lnet_abc.sys
12618 create_lnet_proc_files() {
12619         lctl get_param -n $1 >$TMP/lnet_$1.out || error "cannot read lnet.$1"
12620         sysctl lnet.$1 >$TMP/lnet_$1.sys_tmp || error "cannot read lnet.$1"
12621
12622         sed "s/^lnet.$1\ =\ //g" "$TMP/lnet_$1.sys_tmp" >$TMP/lnet_$1.sys
12623         rm -f "$TMP/lnet_$1.sys_tmp"
12624 }
12625
12626 # counterpart of create_lnet_proc_files
12627 remove_lnet_proc_files() {
12628         rm -f $TMP/lnet_$1.out $TMP/lnet_$1.sys
12629 }
12630
12631 # uses 1st arg as trailing part of filename, 2nd arg as description for reports,
12632 # 3rd arg as regexp for body
12633 check_lnet_proc_stats() {
12634         local l=$(cat "$TMP/lnet_$1" |wc -l)
12635         [ $l = 1 ] || (cat "$TMP/lnet_$1" && error "$2 is not of 1 line: $l")
12636
12637         grep -E "$3" "$TMP/lnet_$1" || (cat "$TMP/lnet_$1" && error "$2 misformatted")
12638 }
12639
12640 # uses 1st arg as trailing part of filename, 2nd arg as description for reports,
12641 # 3rd arg as regexp for body, 4th arg as regexp for 1st line, 5th arg is
12642 # optional and can be regexp for 2nd line (lnet.routes case)
12643 check_lnet_proc_entry() {
12644         local blp=2          # blp stands for 'position of 1st line of body'
12645         [ -z "$5" ] || blp=3 # lnet.routes case
12646
12647         local l=$(cat "$TMP/lnet_$1" |wc -l)
12648         # subtracting one from $blp because the body can be empty
12649         [ "$l" -ge "$(($blp - 1))" ] || (cat "$TMP/lnet_$1" && error "$2 is too short: $l")
12650
12651         sed -n '1 p' "$TMP/lnet_$1" |grep -E "$4" >/dev/null ||
12652                 (cat "$TMP/lnet_$1" && error "1st line of $2 misformatted")
12653
12654         [ "$5" = "" ] || sed -n '2 p' "$TMP/lnet_$1" |grep -E "$5" >/dev/null ||
12655                 (cat "$TMP/lnet_$1" && error "2nd line of $2 misformatted")
12656
12657         # bail out if any unexpected line happened
12658         sed -n "$blp p" "$TMP/lnet_$1" | grep -Ev "$3"
12659         [ "$?" != 0 ] || error "$2 misformatted"
12660 }
12661
12662 test_215() { # for bugs 18102, 21079, 21517
12663         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12664         local N='(0|[1-9][0-9]*)'       # non-negative numeric
12665         local P='[1-9][0-9]*'           # positive numeric
12666         local I='(0|-?[1-9][0-9]*|NA)'  # any numeric (0 | >0 | <0) or NA if no value
12667         local NET='[a-z][a-z0-9]*'      # LNET net like o2ib2
12668         local ADDR='[0-9.]+'            # LNET addr like 10.0.0.1
12669         local NID="$ADDR@$NET"          # LNET nid like 10.0.0.1@o2ib2
12670
12671         local L1 # regexp for 1st line
12672         local L2 # regexp for 2nd line (optional)
12673         local BR # regexp for the rest (body)
12674
12675         # lnet.stats should look as 11 space-separated non-negative numerics
12676         BR="^$N $N $N $N $N $N $N $N $N $N $N$"
12677         create_lnet_proc_files "stats"
12678         check_lnet_proc_stats "stats.sys" "lnet.stats" "$BR"
12679         remove_lnet_proc_files "stats"
12680
12681         # lnet.routes should look like this:
12682         # Routing disabled/enabled
12683         # net hops priority state router
12684         # where net is a string like tcp0, hops > 0, priority >= 0,
12685         # state is up/down,
12686         # router is a string like 192.168.1.1@tcp2
12687         L1="^Routing (disabled|enabled)$"
12688         L2="^net +hops +priority +state +router$"
12689         BR="^$NET +$N +(0|1) +(up|down) +$NID$"
12690         create_lnet_proc_files "routes"
12691         check_lnet_proc_entry "routes.sys" "lnet.routes" "$BR" "$L1" "$L2"
12692         remove_lnet_proc_files "routes"
12693
12694         # lnet.routers should look like this:
12695         # ref rtr_ref alive_cnt state last_ping ping_sent deadline down_ni router
12696         # where ref > 0, rtr_ref > 0, alive_cnt >= 0, state is up/down,
12697         # last_ping >= 0, ping_sent is boolean (0/1), deadline and down_ni are
12698         # numeric (0 or >0 or <0), router is a string like 192.168.1.1@tcp2
12699         L1="^ref +rtr_ref +alive_cnt +state +last_ping +ping_sent +deadline +down_ni +router$"
12700         BR="^$P +$P +$N +(up|down) +$N +(0|1) +$I +$I +$NID$"
12701         create_lnet_proc_files "routers"
12702         check_lnet_proc_entry "routers.sys" "lnet.routers" "$BR" "$L1"
12703         remove_lnet_proc_files "routers"
12704
12705         # lnet.peers should look like this:
12706         # nid refs state last max rtr min tx min queue
12707         # where nid is a string like 192.168.1.1@tcp2, refs > 0,
12708         # state is up/down/NA, max >= 0. last, rtr, min, tx, min are
12709         # numeric (0 or >0 or <0), queue >= 0.
12710         L1="^nid +refs +state +last +max +rtr +min +tx +min +queue$"
12711         BR="^$NID +$P +(up|down|NA) +$I +$N +$I +$I +$I +$I +$N$"
12712         create_lnet_proc_files "peers"
12713         check_lnet_proc_entry "peers.sys" "lnet.peers" "$BR" "$L1"
12714         remove_lnet_proc_files "peers"
12715
12716         # lnet.buffers  should look like this:
12717         # pages count credits min
12718         # where pages >=0, count >=0, credits and min are numeric (0 or >0 or <0)
12719         L1="^pages +count +credits +min$"
12720         BR="^ +$N +$N +$I +$I$"
12721         create_lnet_proc_files "buffers"
12722         check_lnet_proc_entry "buffers.sys" "lnet.buffers" "$BR" "$L1"
12723         remove_lnet_proc_files "buffers"
12724
12725         # lnet.nis should look like this:
12726         # nid status alive refs peer rtr max tx min
12727         # where nid is a string like 192.168.1.1@tcp2, status is up/down,
12728         # alive is numeric (0 or >0 or <0), refs >= 0, peer >= 0,
12729         # rtr >= 0, max >=0, tx and min are numeric (0 or >0 or <0).
12730         L1="^nid +status +alive +refs +peer +rtr +max +tx +min$"
12731         BR="^$NID +(up|down) +$I +$N +$N +$N +$N +$I +$I$"
12732         create_lnet_proc_files "nis"
12733         check_lnet_proc_entry "nis.sys" "lnet.nis" "$BR" "$L1"
12734         remove_lnet_proc_files "nis"
12735
12736         # can we successfully write to lnet.stats?
12737         lctl set_param -n stats=0 || error "cannot write to lnet.stats"
12738         sysctl -w lnet.stats=0 || error "cannot write to lnet.stats"
12739 }
12740 run_test 215 "lnet exists and has proper content - bugs 18102, 21079, 21517"
12741
12742 test_216() { # bug 20317
12743         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12744         remote_ost_nodsh && skip "remote OST with nodsh" && return
12745
12746         local node
12747         local facets=$(get_facets OST)
12748         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
12749
12750         save_lustre_params client "osc.*.contention_seconds" > $p
12751         save_lustre_params $facets \
12752                 "ldlm.namespaces.filter-*.max_nolock_bytes" >> $p
12753         save_lustre_params $facets \
12754                 "ldlm.namespaces.filter-*.contended_locks" >> $p
12755         save_lustre_params $facets \
12756                 "ldlm.namespaces.filter-*.contention_seconds" >> $p
12757         clear_stats osc.*.osc_stats
12758
12759         # agressive lockless i/o settings
12760         do_nodes $(comma_list $(osts_nodes)) \
12761                 "lctl set_param -n ldlm.namespaces.*.max_nolock_bytes=2000000 \
12762                         ldlm.namespaces.filter-*.contended_locks=0 \
12763                         ldlm.namespaces.filter-*.contention_seconds=60"
12764         lctl set_param -n osc.*.contention_seconds=60
12765
12766         $DIRECTIO write $DIR/$tfile 0 10 4096
12767         $CHECKSTAT -s 40960 $DIR/$tfile
12768
12769         # disable lockless i/o
12770         do_nodes $(comma_list $(osts_nodes)) \
12771                 "lctl set_param -n ldlm.namespaces.filter-*.max_nolock_bytes=0 \
12772                         ldlm.namespaces.filter-*.contended_locks=32 \
12773                         ldlm.namespaces.filter-*.contention_seconds=0"
12774         lctl set_param -n osc.*.contention_seconds=0
12775         clear_stats osc.*.osc_stats
12776
12777         dd if=/dev/zero of=$DIR/$tfile count=0
12778         $CHECKSTAT -s 0 $DIR/$tfile
12779
12780         restore_lustre_params <$p
12781         rm -f $p
12782         rm $DIR/$tfile
12783 }
12784 run_test 216 "check lockless direct write updates file size and kms correctly"
12785
12786 test_217() { # bug 22430
12787         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12788         local node
12789         local nid
12790
12791         for node in $(nodes_list); do
12792                 nid=$(host_nids_address $node $NETTYPE)
12793                 if [[ $nid = *-* ]] ; then
12794                         echo "lctl ping $(h2nettype $nid)"
12795                         lctl ping $(h2nettype $nid)
12796                 else
12797                         echo "skipping $node (no hyphen detected)"
12798                 fi
12799         done
12800 }
12801 run_test 217 "check lctl ping for hostnames with hiphen ('-')"
12802
12803 test_218() {
12804        # do directio so as not to populate the page cache
12805        log "creating a 10 Mb file"
12806        $MULTIOP $DIR/$tfile oO_CREAT:O_DIRECT:O_RDWR:w$((10*1048576))c || error "multiop failed while creating a file"
12807        log "starting reads"
12808        dd if=$DIR/$tfile of=/dev/null bs=4096 &
12809        log "truncating the file"
12810        $MULTIOP $DIR/$tfile oO_TRUNC:c || error "multiop failed while truncating the file"
12811        log "killing dd"
12812        kill %+ || true # reads might have finished
12813        echo "wait until dd is finished"
12814        wait
12815        log "removing the temporary file"
12816        rm -rf $DIR/$tfile || error "tmp file removal failed"
12817 }
12818 run_test 218 "parallel read and truncate should not deadlock ======================="
12819
12820 test_219() {
12821         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12822         # write one partial page
12823         dd if=/dev/zero of=$DIR/$tfile bs=1024 count=1
12824         # set no grant so vvp_io_commit_write will do sync write
12825         $LCTL set_param fail_loc=0x411
12826         # write a full page at the end of file
12827         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 seek=1 conv=notrunc
12828
12829         $LCTL set_param fail_loc=0
12830         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 seek=3
12831         $LCTL set_param fail_loc=0x411
12832         dd if=/dev/zero of=$DIR/$tfile bs=1024 count=1 seek=2 conv=notrunc
12833
12834         # LU-4201
12835         dd if=/dev/zero of=$DIR/$tfile-2 bs=1024 count=1
12836         $CHECKSTAT -s 1024 $DIR/$tfile-2 || error "checkstat wrong size"
12837 }
12838 run_test 219 "LU-394: Write partial won't cause uncontiguous pages vec at LND"
12839
12840 test_220() { #LU-325
12841         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12842         remote_ost_nodsh && skip "remote OST with nodsh" && return
12843         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12844         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
12845         local OSTIDX=0
12846
12847         # create on MDT0000 so the last_id and next_id are correct
12848         mkdir $DIR/$tdir
12849         local OST=$($LFS df $DIR | awk '/OST:'$OSTIDX'/ { print $1 }')
12850         OST=${OST%_UUID}
12851
12852         # on the mdt's osc
12853         local mdtosc_proc1=$(get_mdtosc_proc_path $SINGLEMDS $OST)
12854         local last_id=$(do_facet $SINGLEMDS lctl get_param -n \
12855                         osc.$mdtosc_proc1.prealloc_last_id)
12856         local next_id=$(do_facet $SINGLEMDS lctl get_param -n \
12857                         osc.$mdtosc_proc1.prealloc_next_id)
12858
12859         $LFS df -i
12860
12861         do_facet ost$((OSTIDX + 1)) lctl set_param fail_val=-1
12862         #define OBD_FAIL_OST_ENOINO              0x229
12863         do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=0x229
12864         create_pool $FSNAME.$TESTNAME || return 1
12865         do_facet mgs $LCTL pool_add $FSNAME.$TESTNAME $OST || return 2
12866
12867         $SETSTRIPE $DIR/$tdir -i $OSTIDX -c 1 -p $FSNAME.$TESTNAME
12868
12869         MDSOBJS=$((last_id - next_id))
12870         echo "preallocated objects on MDS is $MDSOBJS" "($last_id - $next_id)"
12871
12872         blocks=$($LFS df $MOUNT | awk '($1 == '$OSTIDX') { print $4 }')
12873         echo "OST still has $count kbytes free"
12874
12875         echo "create $MDSOBJS files @next_id..."
12876         createmany -o $DIR/$tdir/f $MDSOBJS || return 3
12877
12878         local last_id2=$(do_facet mds${MDSIDX} lctl get_param -n \
12879                         osc.$mdtosc_proc1.prealloc_last_id)
12880         local next_id2=$(do_facet mds${MDSIDX} lctl get_param -n \
12881                         osc.$mdtosc_proc1.prealloc_next_id)
12882
12883         echo "after creation, last_id=$last_id2, next_id=$next_id2"
12884         $LFS df -i
12885
12886         echo "cleanup..."
12887
12888         do_facet ost$((OSTIDX + 1)) lctl set_param fail_val=0
12889         do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=0
12890
12891         do_facet mgs $LCTL pool_remove $FSNAME.$TESTNAME $OST || return 4
12892         do_facet mgs $LCTL pool_destroy $FSNAME.$TESTNAME || return 5
12893         echo "unlink $MDSOBJS files @$next_id..."
12894         unlinkmany $DIR/$tdir/f $MDSOBJS || return 6
12895 }
12896 run_test 220 "preallocated MDS objects still used if ENOSPC from OST"
12897
12898 test_221() {
12899         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12900         dd if=`which date` of=$MOUNT/date oflag=sync
12901         chmod +x $MOUNT/date
12902
12903         #define OBD_FAIL_LLITE_FAULT_TRUNC_RACE  0x1401
12904         $LCTL set_param fail_loc=0x80001401
12905
12906         $MOUNT/date > /dev/null
12907         rm -f $MOUNT/date
12908 }
12909 run_test 221 "make sure fault and truncate race to not cause OOM"
12910
12911 test_222a () {
12912         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12913         rm -rf $DIR/$tdir
12914         test_mkdir $DIR/$tdir
12915         $LFS setstripe -c 1 -i 0 $DIR/$tdir
12916         createmany -o $DIR/$tdir/$tfile 10
12917         cancel_lru_locks mdc
12918         cancel_lru_locks osc
12919         #define OBD_FAIL_LDLM_AGL_DELAY           0x31a
12920         $LCTL set_param fail_loc=0x31a
12921         ls -l $DIR/$tdir > /dev/null || error "AGL for ls failed"
12922         $LCTL set_param fail_loc=0
12923         rm -r $DIR/$tdir
12924 }
12925 run_test 222a "AGL for ls should not trigger CLIO lock failure"
12926
12927 test_222b () {
12928         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12929         rm -rf $DIR/$tdir
12930         test_mkdir $DIR/$tdir
12931         $LFS setstripe -c 1 -i 0 $DIR/$tdir
12932         createmany -o $DIR/$tdir/$tfile 10
12933         cancel_lru_locks mdc
12934         cancel_lru_locks osc
12935         #define OBD_FAIL_LDLM_AGL_DELAY           0x31a
12936         $LCTL set_param fail_loc=0x31a
12937         rm -r $DIR/$tdir || error "AGL for rmdir failed"
12938         $LCTL set_param fail_loc=0
12939 }
12940 run_test 222b "AGL for rmdir should not trigger CLIO lock failure"
12941
12942 test_223 () {
12943         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12944         rm -rf $DIR/$tdir
12945         test_mkdir $DIR/$tdir
12946         $LFS setstripe -c 1 -i 0 $DIR/$tdir
12947         createmany -o $DIR/$tdir/$tfile 10
12948         cancel_lru_locks mdc
12949         cancel_lru_locks osc
12950         #define OBD_FAIL_LDLM_AGL_NOLOCK          0x31b
12951         $LCTL set_param fail_loc=0x31b
12952         ls -l $DIR/$tdir > /dev/null || error "reenqueue failed"
12953         $LCTL set_param fail_loc=0
12954         rm -r $DIR/$tdir
12955 }
12956 run_test 223 "osc reenqueue if without AGL lock granted ======================="
12957
12958 test_224a() { # LU-1039, MRP-303
12959         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12960         #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB   0x508
12961         $LCTL set_param fail_loc=0x508
12962         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 conv=fsync
12963         $LCTL set_param fail_loc=0
12964         df $DIR
12965 }
12966 run_test 224a "Don't panic on bulk IO failure"
12967
12968 test_224b() { # LU-1039, MRP-303
12969         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12970         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1
12971         cancel_lru_locks osc
12972         #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB2   0x515
12973         $LCTL set_param fail_loc=0x515
12974         dd of=/dev/null if=$DIR/$tfile bs=4096 count=1
12975         $LCTL set_param fail_loc=0
12976         df $DIR
12977 }
12978 run_test 224b "Don't panic on bulk IO failure"
12979
12980 test_224c() { # LU-6441
12981         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12982         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12983
12984         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
12985         save_writethrough $p
12986         set_cache writethrough on
12987
12988         local pages_per_rpc=$($LCTL get_param \
12989                                 osc.*.max_pages_per_rpc)
12990         local at_max=$($LCTL get_param -n at_max)
12991         local timeout=$($LCTL get_param -n timeout)
12992         local test_at="$LCTL get_param -n at_max"
12993         local param_at="$FSNAME.sys.at_max"
12994         local test_timeout="$LCTL get_param -n timeout"
12995         local param_timeout="$FSNAME.sys.timeout"
12996
12997         $LCTL set_param -n osc.*.max_pages_per_rpc=1024
12998
12999         set_conf_param_and_check client "$test_at" "$param_at" 0 ||
13000                 error "conf_param at_max=0 failed"
13001         set_conf_param_and_check client "$test_timeout" "$param_timeout" 5 ||
13002                 error "conf_param timeout=5 failed"
13003
13004         #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB3   0x520
13005         do_facet ost1 $LCTL set_param fail_loc=0x520
13006         $LFS setstripe -c 1 -i 0 $DIR/$tfile
13007         dd if=/dev/zero of=$DIR/$tfile bs=8MB count=1
13008         sync
13009         do_facet ost1 $LCTL set_param fail_loc=0
13010
13011         set_conf_param_and_check client "$test_at" "$param_at" $at_max ||
13012                 error "conf_param at_max=$at_max failed"
13013         set_conf_param_and_check client "$test_timeout" "$param_timeout" \
13014                 $timeout || error "conf_param timeout=$timeout failed"
13015
13016         $LCTL set_param -n $pages_per_rpc
13017         restore_lustre_params < $p
13018         rm -f $p
13019 }
13020 run_test 224c "Don't hang if one of md lost during large bulk RPC"
13021
13022 MDSSURVEY=${MDSSURVEY:-$(which mds-survey 2>/dev/null || true)}
13023 test_225a () {
13024         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13025         remote_mds_nodsh && skip "remote MDS with nodsh" && return
13026         if [ -z ${MDSSURVEY} ]; then
13027               skip_env "mds-survey not found" && return
13028         fi
13029
13030         [ $MDSCOUNT -ge 2 ] &&
13031                 skip "skipping now for more than one MDT" && return
13032
13033        [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ] ||
13034             { skip "Need MDS version at least 2.2.51"; return; }
13035
13036        local mds=$(facet_host $SINGLEMDS)
13037        local target=$(do_nodes $mds 'lctl dl' | \
13038                       awk "{if (\$2 == \"UP\" && \$3 == \"mdt\") {print \$4}}")
13039
13040        local cmd1="file_count=1000 thrhi=4"
13041        local cmd2="dir_count=2 layer=mdd stripe_count=0"
13042        local cmd3="rslt_loc=${TMP} targets=\"$mds:$target\" $MDSSURVEY"
13043        local cmd="$cmd1 $cmd2 $cmd3"
13044
13045        rm -f ${TMP}/mds_survey*
13046        echo + $cmd
13047        eval $cmd || error "mds-survey with zero-stripe failed"
13048        cat ${TMP}/mds_survey*
13049        rm -f ${TMP}/mds_survey*
13050 }
13051 run_test 225a "Metadata survey sanity with zero-stripe"
13052
13053 test_225b () {
13054         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13055         remote_mds_nodsh && skip "remote MDS with nodsh" && return
13056         if [ -z ${MDSSURVEY} ]; then
13057               skip_env "mds-survey not found" && return
13058         fi
13059         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ] ||
13060             { skip "Need MDS version at least 2.2.51"; return; }
13061
13062         if [ $($LCTL dl | grep -c osc) -eq 0 ]; then
13063               skip_env "Need to mount OST to test" && return
13064         fi
13065
13066         [ $MDSCOUNT -ge 2 ] &&
13067                 skip "skipping now for more than one MDT" && return
13068        local mds=$(facet_host $SINGLEMDS)
13069        local target=$(do_nodes $mds 'lctl dl' | \
13070                       awk "{if (\$2 == \"UP\" && \$3 == \"mdt\") {print \$4}}")
13071
13072        local cmd1="file_count=1000 thrhi=4"
13073        local cmd2="dir_count=2 layer=mdd stripe_count=1"
13074        local cmd3="rslt_loc=${TMP} targets=\"$mds:$target\" $MDSSURVEY"
13075        local cmd="$cmd1 $cmd2 $cmd3"
13076
13077        rm -f ${TMP}/mds_survey*
13078        echo + $cmd
13079        eval $cmd || error "mds-survey with stripe_count failed"
13080        cat ${TMP}/mds_survey*
13081        rm -f ${TMP}/mds_survey*
13082 }
13083 run_test 225b "Metadata survey sanity with stripe_count = 1"
13084
13085 mcreate_path2fid () {
13086         local mode=$1
13087         local major=$2
13088         local minor=$3
13089         local name=$4
13090         local desc=$5
13091         local path=$DIR/$tdir/$name
13092         local fid
13093         local rc
13094         local fid_path
13095
13096         $MCREATE --mode=$1 --major=$2 --minor=$3 $path ||
13097                 error "cannot create $desc"
13098
13099         fid=$($LFS path2fid $path | tr -d '[' | tr -d ']')
13100         rc=$?
13101         [ $rc -ne 0 ] && error "cannot get fid of a $desc"
13102
13103         fid_path=$($LFS fid2path $MOUNT $fid)
13104         rc=$?
13105         [ $rc -ne 0 ] && error "cannot get path of $desc by $DIR $path $fid"
13106
13107         [ "$path" == "$fid_path" ] ||
13108                 error "fid2path returned $fid_path, expected $path"
13109
13110         echo "pass with $path and $fid"
13111 }
13112
13113 test_226a () {
13114         rm -rf $DIR/$tdir
13115         mkdir -p $DIR/$tdir
13116
13117         mcreate_path2fid 0010666 0 0 fifo "FIFO"
13118         mcreate_path2fid 0020666 1 3 null "character special file (null)"
13119         mcreate_path2fid 0020666 1 255 none "character special file (no device)"
13120         mcreate_path2fid 0040666 0 0 dir "directory"
13121         mcreate_path2fid 0060666 7 0 loop0 "block special file (loop)"
13122         mcreate_path2fid 0100666 0 0 file "regular file"
13123         mcreate_path2fid 0120666 0 0 link "symbolic link"
13124         mcreate_path2fid 0140666 0 0 sock "socket"
13125 }
13126 run_test 226a "call path2fid and fid2path on files of all type"
13127
13128 test_226b () {
13129         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13130         rm -rf $DIR/$tdir
13131         local MDTIDX=1
13132
13133         mkdir -p $DIR/$tdir
13134         $LFS setdirstripe -i $MDTIDX $DIR/$tdir/remote_dir ||
13135                 error "create remote directory failed"
13136         mcreate_path2fid 0010666 0 0 "remote_dir/fifo" "FIFO"
13137         mcreate_path2fid 0020666 1 3 "remote_dir/null" \
13138                                 "character special file (null)"
13139         mcreate_path2fid 0020666 1 255 "remote_dir/none" \
13140                                 "character special file (no device)"
13141         mcreate_path2fid 0040666 0 0 "remote_dir/dir" "directory"
13142         mcreate_path2fid 0060666 7 0 "remote_dir/loop0" \
13143                                 "block special file (loop)"
13144         mcreate_path2fid 0100666 0 0 "remote_dir/file" "regular file"
13145         mcreate_path2fid 0120666 0 0 "remote_dir/link" "symbolic link"
13146         mcreate_path2fid 0140666 0 0 "remote_dir/sock" "socket"
13147 }
13148 run_test 226b "call path2fid and fid2path on files of all type under remote dir"
13149
13150 # LU-1299 Executing or running ldd on a truncated executable does not
13151 # cause an out-of-memory condition.
13152 test_227() {
13153         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13154         [ -z "$(which ldd)" ] && skip "should have ldd tool" && return
13155         dd if=$(which date) of=$MOUNT/date bs=1k count=1
13156         chmod +x $MOUNT/date
13157
13158         $MOUNT/date > /dev/null
13159         ldd $MOUNT/date > /dev/null
13160         rm -f $MOUNT/date
13161 }
13162 run_test 227 "running truncated executable does not cause OOM"
13163
13164 # LU-1512 try to reuse idle OI blocks
13165 test_228a() {
13166         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13167         remote_mds_nodsh && skip "remote MDS with nodsh" && return
13168         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
13169                 skip "ldiskfs only test" && return
13170
13171         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
13172         local myDIR=$DIR/$tdir
13173
13174         mkdir -p $myDIR
13175         #define OBD_FAIL_SEQ_EXHAUST             0x1002
13176         $LCTL set_param fail_loc=0x80001002
13177         createmany -o $myDIR/t- 10000
13178         $LCTL set_param fail_loc=0
13179         # The guard is current the largest FID holder
13180         touch $myDIR/guard
13181         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
13182                     tr -d '[')
13183         local IDX=$(($SEQ % 64))
13184
13185         do_facet $SINGLEMDS sync
13186         # Make sure journal flushed.
13187         sleep 6
13188         local blk1=$(do_facet $SINGLEMDS \
13189                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
13190                      grep Blockcount | awk '{print $4}')
13191
13192         # Remove old files, some OI blocks will become idle.
13193         unlinkmany $myDIR/t- 10000
13194         # Create new files, idle OI blocks should be reused.
13195         createmany -o $myDIR/t- 2000
13196         do_facet $SINGLEMDS sync
13197         # Make sure journal flushed.
13198         sleep 6
13199         local blk2=$(do_facet $SINGLEMDS \
13200                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
13201                      grep Blockcount | awk '{print $4}')
13202
13203         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
13204 }
13205 run_test 228a "try to reuse idle OI blocks"
13206
13207 test_228b() {
13208         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13209         remote_mds_nodsh && skip "remote MDS with nodsh" && return
13210         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
13211                 skip "ldiskfs only test" && return
13212
13213         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
13214         local myDIR=$DIR/$tdir
13215
13216         mkdir -p $myDIR
13217         #define OBD_FAIL_SEQ_EXHAUST             0x1002
13218         $LCTL set_param fail_loc=0x80001002
13219         createmany -o $myDIR/t- 10000
13220         $LCTL set_param fail_loc=0
13221         # The guard is current the largest FID holder
13222         touch $myDIR/guard
13223         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
13224                     tr -d '[')
13225         local IDX=$(($SEQ % 64))
13226
13227         do_facet $SINGLEMDS sync
13228         # Make sure journal flushed.
13229         sleep 6
13230         local blk1=$(do_facet $SINGLEMDS \
13231                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
13232                      grep Blockcount | awk '{print $4}')
13233
13234         # Remove old files, some OI blocks will become idle.
13235         unlinkmany $myDIR/t- 10000
13236
13237         # stop the MDT
13238         stop $SINGLEMDS || error "Fail to stop MDT."
13239         # remount the MDT
13240         start $SINGLEMDS $MDT_DEV $MDS_MOUNT_OPTS || error "Fail to start MDT."
13241
13242         df $MOUNT || error "Fail to df."
13243         # Create new files, idle OI blocks should be reused.
13244         createmany -o $myDIR/t- 2000
13245         do_facet $SINGLEMDS sync
13246         # Make sure journal flushed.
13247         sleep 6
13248         local blk2=$(do_facet $SINGLEMDS \
13249                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
13250                      grep Blockcount | awk '{print $4}')
13251
13252         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
13253 }
13254 run_test 228b "idle OI blocks can be reused after MDT restart"
13255
13256 #LU-1881
13257 test_228c() {
13258         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13259         remote_mds_nodsh && skip "remote MDS with nodsh" && return
13260         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
13261                 skip "ldiskfs only test" && return
13262
13263         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
13264         local myDIR=$DIR/$tdir
13265
13266         mkdir -p $myDIR
13267         #define OBD_FAIL_SEQ_EXHAUST             0x1002
13268         $LCTL set_param fail_loc=0x80001002
13269         # 20000 files can guarantee there are index nodes in the OI file
13270         createmany -o $myDIR/t- 20000
13271         $LCTL set_param fail_loc=0
13272         # The guard is current the largest FID holder
13273         touch $myDIR/guard
13274         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
13275                     tr -d '[')
13276         local IDX=$(($SEQ % 64))
13277
13278         do_facet $SINGLEMDS sync
13279         # Make sure journal flushed.
13280         sleep 6
13281         local blk1=$(do_facet $SINGLEMDS \
13282                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
13283                      grep Blockcount | awk '{print $4}')
13284
13285         # Remove old files, some OI blocks will become idle.
13286         unlinkmany $myDIR/t- 20000
13287         rm -f $myDIR/guard
13288         # The OI file should become empty now
13289
13290         # Create new files, idle OI blocks should be reused.
13291         createmany -o $myDIR/t- 2000
13292         do_facet $SINGLEMDS sync
13293         # Make sure journal flushed.
13294         sleep 6
13295         local blk2=$(do_facet $SINGLEMDS \
13296                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
13297                      grep Blockcount | awk '{print $4}')
13298
13299         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
13300 }
13301 run_test 228c "NOT shrink the last entry in OI index node to recycle idle leaf"
13302
13303 test_229() { # LU-2482, LU-3448
13304         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.53) ] &&
13305                 skip "No HSM $(lustre_build_version $SINGLEMDS) MDS < 2.4.53" &&
13306                 return
13307         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13308         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
13309
13310         rm -f $DIR/$tfile
13311
13312         # Create a file with a released layout and stripe count 2.
13313         $MULTIOP $DIR/$tfile H2c ||
13314                 error "failed to create file with released layout"
13315
13316         $GETSTRIPE -v $DIR/$tfile
13317
13318         local pattern=$($GETSTRIPE -L $DIR/$tfile)
13319         [ X"$pattern" = X"80000001" ] || error "pattern error ($pattern)"
13320
13321         local stripe_count=$($GETSTRIPE -c $DIR/$tfile) || error "getstripe"
13322         [ $stripe_count -eq 2 ] || error "stripe count not 2 ($stripe_count)"
13323         stat $DIR/$tfile || error "failed to stat released file"
13324
13325         chown $RUNAS_ID $DIR/$tfile ||
13326                 error "chown $RUNAS_ID $DIR/$tfile failed"
13327
13328         chgrp $RUNAS_ID $DIR/$tfile ||
13329                 error "chgrp $RUNAS_ID $DIR/$tfile failed"
13330
13331         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
13332         rm $DIR/$tfile || error "failed to remove released file"
13333 }
13334 run_test 229 "getstripe/stat/rm/attr changes work on released files"
13335
13336 test_230a() {
13337         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13338         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13339         local MDTIDX=1
13340
13341         test_mkdir $DIR/$tdir
13342         test_mkdir -i0 -c1 $DIR/$tdir/test_230_local
13343         local mdt_idx=$($GETSTRIPE -M $DIR/$tdir/test_230_local)
13344         [ $mdt_idx -ne 0 ] &&
13345                 error "create local directory on wrong MDT $mdt_idx"
13346
13347         $LFS mkdir -i $MDTIDX $DIR/$tdir/test_230 ||
13348                         error "create remote directory failed"
13349         local mdt_idx=$($GETSTRIPE -M $DIR/$tdir/test_230)
13350         [ $mdt_idx -ne $MDTIDX ] &&
13351                 error "create remote directory on wrong MDT $mdt_idx"
13352
13353         createmany -o $DIR/$tdir/test_230/t- 10 ||
13354                 error "create files on remote directory failed"
13355         mdt_idx=$($GETSTRIPE -M $DIR/$tdir/test_230/t-0)
13356         [ $mdt_idx -ne $MDTIDX ] && error "create files on wrong MDT $mdt_idx"
13357         rm -r $DIR/$tdir || error "unlink remote directory failed"
13358 }
13359 run_test 230a "Create remote directory and files under the remote directory"
13360
13361 test_230b() {
13362         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13363         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13364         local MDTIDX=1
13365         local mdt_index
13366         local i
13367         local file
13368         local pid
13369         local stripe_count
13370         local migrate_dir=$DIR/$tdir/migrate_dir
13371         local other_dir=$DIR/$tdir/other_dir
13372
13373         test_mkdir $DIR/$tdir
13374         test_mkdir -i0 -c1 $migrate_dir
13375         test_mkdir -i0 -c1 $other_dir
13376         for ((i=0; i<10; i++)); do
13377                 mkdir -p $migrate_dir/dir_${i}
13378                 createmany -o $migrate_dir/dir_${i}/f 10 ||
13379                         error "create files under remote dir failed $i"
13380         done
13381
13382         cp /etc/passwd $migrate_dir/$tfile
13383         cp /etc/passwd $other_dir/$tfile
13384         chattr +SAD $migrate_dir
13385         chattr +SAD $migrate_dir/$tfile
13386
13387         local old_dir_flag=$(lsattr -a $migrate_dir | awk '/\/\.$/ {print $1}')
13388         local old_file_flag=$(lsattr $migrate_dir/$tfile | awk '{print $1}')
13389         local old_dir_mode=$(stat -c%f $migrate_dir)
13390         local old_file_mode=$(stat -c%f $migrate_dir/$tfile)
13391
13392         mkdir -p $migrate_dir/dir_default_stripe2
13393         $SETSTRIPE -c 2 $migrate_dir/dir_default_stripe2
13394         $SETSTRIPE -c 2 $migrate_dir/${tfile}_stripe2
13395
13396         mkdir -p $other_dir
13397         ln $migrate_dir/$tfile $other_dir/luna
13398         ln $migrate_dir/$tfile $migrate_dir/sofia
13399         ln $other_dir/$tfile $migrate_dir/david
13400         ln -s $migrate_dir/$tfile $other_dir/zachary
13401         ln -s $migrate_dir/$tfile $migrate_dir/${tfile}_ln
13402         ln -s $other_dir/$tfile $migrate_dir/${tfile}_ln_other
13403
13404         $LFS migrate -m $MDTIDX $migrate_dir ||
13405                 error "fails on migrating remote dir to MDT1"
13406
13407         echo "migratate to MDT1, then checking.."
13408         for ((i = 0; i < 10; i++)); do
13409                 for file in $(find $migrate_dir/dir_${i}); do
13410                         mdt_index=$($LFS getstripe -M $file)
13411                         [ $mdt_index == $MDTIDX ] ||
13412                                 error "$file is not on MDT${MDTIDX}"
13413                 done
13414         done
13415
13416         # the multiple link file should still in MDT0
13417         mdt_index=$($LFS getstripe -M $migrate_dir/$tfile)
13418         [ $mdt_index == 0 ] ||
13419                 error "$file is not on MDT${MDTIDX}"
13420
13421         local new_dir_flag=$(lsattr -a $migrate_dir | awk '/\/\.$/ {print $1}')
13422         [ "$old_dir_flag" = "$new_dir_flag" ] ||
13423                 error " expect $old_dir_flag get $new_dir_flag"
13424
13425         local new_file_flag=$(lsattr $migrate_dir/$tfile | awk '{print $1}')
13426         [ "$old_file_flag" = "$new_file_flag" ] ||
13427                 error " expect $old_file_flag get $new_file_flag"
13428
13429         local new_dir_mode=$(stat -c%f $migrate_dir)
13430         [ "$old_dir_mode" = "$new_dir_mode" ] ||
13431                 error "expect mode $old_dir_mode get $new_dir_mode"
13432
13433         local new_file_mode=$(stat -c%f $migrate_dir/$tfile)
13434         [ "$old_file_mode" = "$new_file_mode" ] ||
13435                 error "expect mode $old_file_mode get $new_file_mode"
13436
13437         diff /etc/passwd $migrate_dir/$tfile ||
13438                 error "$tfile different after migration"
13439
13440         diff /etc/passwd $other_dir/luna ||
13441                 error "luna different after migration"
13442
13443         diff /etc/passwd $migrate_dir/sofia ||
13444                 error "sofia different after migration"
13445
13446         diff /etc/passwd $migrate_dir/david ||
13447                 error "david different after migration"
13448
13449         diff /etc/passwd $other_dir/zachary ||
13450                 error "zachary different after migration"
13451
13452         diff /etc/passwd $migrate_dir/${tfile}_ln ||
13453                 error "${tfile}_ln different after migration"
13454
13455         diff /etc/passwd $migrate_dir/${tfile}_ln_other ||
13456                 error "${tfile}_ln_other different after migration"
13457
13458         stripe_count=$($LFS getstripe -c $migrate_dir/dir_default_stripe2)
13459         [ $stripe_count = 2 ] ||
13460                 error "dir strpe_count $d != 2 after migration."
13461
13462         stripe_count=$($LFS getstripe -c $migrate_dir/${tfile}_stripe2)
13463         [ $stripe_count = 2 ] ||
13464                 error "file strpe_count $d != 2 after migration."
13465
13466         #migrate back to MDT0
13467         MDTIDX=0
13468
13469         $LFS migrate -m $MDTIDX $migrate_dir ||
13470                 error "fails on migrating remote dir to MDT0"
13471
13472         echo "migrate back to MDT0, checking.."
13473         for file in $(find $migrate_dir); do
13474                 mdt_index=$($LFS getstripe -M $file)
13475                 [ $mdt_index == $MDTIDX ] ||
13476                         error "$file is not on MDT${MDTIDX}"
13477         done
13478
13479         local new_dir_flag=$(lsattr -a $migrate_dir | awk '/\/\.$/ {print $1}')
13480         [ "$old_dir_flag" = "$new_dir_flag" ] ||
13481                 error " expect $old_dir_flag get $new_dir_flag"
13482
13483         local new_file_flag=$(lsattr $migrate_dir/$tfile | awk '{print $1}')
13484         [ "$old_file_flag" = "$new_file_flag" ] ||
13485                 error " expect $old_file_flag get $new_file_flag"
13486
13487         local new_dir_mode=$(stat -c%f $migrate_dir)
13488         [ "$old_dir_mode" = "$new_dir_mode" ] ||
13489                 error "expect mode $old_dir_mode get $new_dir_mode"
13490
13491         local new_file_mode=$(stat -c%f $migrate_dir/$tfile)
13492         [ "$old_file_mode" = "$new_file_mode" ] ||
13493                 error "expect mode $old_file_mode get $new_file_mode"
13494
13495         diff /etc/passwd ${migrate_dir}/$tfile ||
13496                 error "$tfile different after migration"
13497
13498         diff /etc/passwd ${other_dir}/luna ||
13499                 error "luna different after migration"
13500
13501         diff /etc/passwd ${migrate_dir}/sofia ||
13502                 error "sofia different after migration"
13503
13504         diff /etc/passwd ${other_dir}/zachary ||
13505                 error "zachary different after migration"
13506
13507         diff /etc/passwd $migrate_dir/${tfile}_ln ||
13508                 error "${tfile}_ln different after migration"
13509
13510         diff /etc/passwd $migrate_dir/${tfile}_ln_other ||
13511                 error "${tfile}_ln_other different after migration"
13512
13513         stripe_count=$($LFS getstripe -c ${migrate_dir}/dir_default_stripe2)
13514         [ $stripe_count = 2 ] ||
13515                 error "dir strpe_count $d != 2 after migration."
13516
13517         stripe_count=$($LFS getstripe -c ${migrate_dir}/${tfile}_stripe2)
13518         [ $stripe_count = 2 ] ||
13519                 error "file strpe_count $d != 2 after migration."
13520
13521         rm -rf $DIR/$tdir || error "rm dir failed after migration"
13522 }
13523 run_test 230b "migrate directory"
13524
13525 test_230c() {
13526         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13527         remote_mds_nodsh && skip "remote MDS with nodsh" && return
13528         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13529         local MDTIDX=1
13530         local mdt_index
13531         local file
13532         local migrate_dir=$DIR/$tdir/migrate_dir
13533
13534         #If migrating directory fails in the middle, all entries of
13535         #the directory is still accessiable.
13536         test_mkdir $DIR/$tdir
13537         test_mkdir -i0 -c1 $migrate_dir
13538         stat $migrate_dir
13539         createmany -o $migrate_dir/f 10 ||
13540                 error "create files under ${migrate_dir} failed"
13541
13542         #failed after migrating 5 entries
13543         #OBD_FAIL_MIGRATE_ENTRIES       0x1801
13544         do_facet mds1 lctl set_param fail_loc=0x20001801
13545         do_facet mds1 lctl  set_param fail_val=5
13546         local t=$(ls $migrate_dir | wc -l)
13547         $LFS migrate --mdt-index $MDTIDX $migrate_dir &&
13548                 error "migrate should fail after 5 entries"
13549
13550         mkdir $migrate_dir/dir &&
13551                 error "mkdir succeeds under migrating directory"
13552         touch $migrate_dir/file &&
13553                 error "touch file succeeds under migrating directory"
13554
13555         local u=$(ls $migrate_dir | wc -l)
13556         [ "$u" == "$t" ] || error "$u != $t during migration"
13557
13558         for file in $(find $migrate_dir); do
13559                 stat $file || error "stat $file failed"
13560         done
13561
13562         do_facet mds1 lctl set_param fail_loc=0
13563         do_facet mds1 lctl set_param fail_val=0
13564
13565         $LFS migrate -m $MDTIDX $migrate_dir ||
13566                 error "migrate open files should failed with open files"
13567
13568         echo "Finish migration, then checking.."
13569         for file in $(find $migrate_dir); do
13570                 mdt_index=$($LFS getstripe -M $file)
13571                 [ $mdt_index == $MDTIDX ] ||
13572                         error "$file is not on MDT${MDTIDX}"
13573         done
13574
13575         rm -rf $DIR/$tdir || error "rm dir failed after migration"
13576 }
13577 run_test 230c "check directory accessiblity if migration is failed"
13578
13579 test_230d() {
13580         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13581         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13582         local MDTIDX=1
13583         local mdt_index
13584         local migrate_dir=$DIR/$tdir/migrate_dir
13585         local i
13586         local j
13587
13588         test_mkdir $DIR/$tdir
13589         test_mkdir -i0 -c1 $migrate_dir
13590
13591         for ((i=0; i<100; i++)); do
13592                 test_mkdir -i0 -c1 $migrate_dir/dir_${i}
13593                 createmany -o $migrate_dir/dir_${i}/f 100 ||
13594                         error "create files under remote dir failed $i"
13595         done
13596
13597         $LFS migrate -m $MDTIDX $migrate_dir ||
13598                 error "migrate remote dir error"
13599
13600         echo "Finish migration, then checking.."
13601         for file in $(find $migrate_dir); do
13602                 mdt_index=$($LFS getstripe -M $file)
13603                 [ $mdt_index == $MDTIDX ] ||
13604                         error "$file is not on MDT${MDTIDX}"
13605         done
13606
13607         rm -rf $DIR/$tdir || error "rm dir failed after migration"
13608 }
13609 run_test 230d "check migrate big directory"
13610
13611 test_230e() {
13612         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13613         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13614         local i
13615         local j
13616         local a_fid
13617         local b_fid
13618
13619         mkdir -p $DIR/$tdir
13620         mkdir $DIR/$tdir/migrate_dir
13621         mkdir $DIR/$tdir/other_dir
13622         touch $DIR/$tdir/migrate_dir/a
13623         ln $DIR/$tdir/migrate_dir/a $DIR/$tdir/other_dir/b
13624         ls $DIR/$tdir/other_dir
13625
13626         $LFS migrate -m 1 $DIR/$tdir/migrate_dir ||
13627                 error "migrate dir fails"
13628
13629         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir)
13630         [ $mdt_index == 1 ] || error "migrate_dir is not on MDT1"
13631
13632         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir/a)
13633         [ $mdt_index == 0 ] || error "a is not on MDT0"
13634
13635         $LFS migrate -m 1 $DIR/$tdir/other_dir ||
13636                 error "migrate dir fails"
13637
13638         mdt_index=$($LFS getstripe -M $DIR/$tdir/other_dir)
13639         [ $mdt_index == 1 ] || error "other_dir is not on MDT1"
13640
13641         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir/a)
13642         [ $mdt_index == 1 ] || error "a is not on MDT1"
13643
13644         mdt_index=$($LFS getstripe -M $DIR/$tdir/other_dir/b)
13645         [ $mdt_index == 1 ] || error "b is not on MDT1"
13646
13647         a_fid=$($LFS path2fid $DIR/$tdir/migrate_dir/a)
13648         b_fid=$($LFS path2fid $DIR/$tdir/other_dir/b)
13649
13650         [ "$a_fid" = "$b_fid" ] || error "different fid after migration"
13651
13652         rm -rf $DIR/$tdir || error "rm dir failed after migration"
13653 }
13654 run_test 230e "migrate mulitple local link files"
13655
13656 test_230f() {
13657         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13658         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13659         local a_fid
13660         local ln_fid
13661
13662         mkdir -p $DIR/$tdir
13663         mkdir $DIR/$tdir/migrate_dir
13664         $LFS mkdir -i1 $DIR/$tdir/other_dir
13665         touch $DIR/$tdir/migrate_dir/a
13666         ln $DIR/$tdir/migrate_dir/a $DIR/$tdir/other_dir/ln1
13667         ln $DIR/$tdir/migrate_dir/a $DIR/$tdir/other_dir/ln2
13668         ls $DIR/$tdir/other_dir
13669
13670         # a should be migrated to MDT1, since no other links on MDT0
13671         $LFS migrate -m 1 $DIR/$tdir/migrate_dir ||
13672                 error "#1 migrate dir fails"
13673         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir)
13674         [ $mdt_index == 1 ] || error "migrate_dir is not on MDT1"
13675         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir/a)
13676         [ $mdt_index == 1 ] || error "a is not on MDT1"
13677
13678         # a should stay on MDT1, because it is a mulitple link file
13679         $LFS migrate -m 0 $DIR/$tdir/migrate_dir ||
13680                 error "#2 migrate dir fails"
13681         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir/a)
13682         [ $mdt_index == 1 ] || error "a is not on MDT1"
13683
13684         $LFS migrate -m 1 $DIR/$tdir/migrate_dir ||
13685                 error "#3 migrate dir fails"
13686
13687         a_fid=$($LFS path2fid $DIR/$tdir/migrate_dir/a)
13688         ln_fid=$($LFS path2fid $DIR/$tdir/other_dir/ln1)
13689         [ "$a_fid" = "$ln_fid" ] || error "different fid after migrate to MDT1"
13690
13691         rm -rf $DIR/$tdir/other_dir/ln1 || error "unlink ln1 fails"
13692         rm -rf $DIR/$tdir/other_dir/ln2 || error "unlink ln2 fails"
13693
13694         # a should be migrated to MDT0, since no other links on MDT1
13695         $LFS migrate -m 0 $DIR/$tdir/migrate_dir ||
13696                 error "#4 migrate dir fails"
13697         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir/a)
13698         [ $mdt_index == 0 ] || error "a is not on MDT0"
13699
13700         rm -rf $DIR/$tdir || error "rm dir failed after migration"
13701 }
13702 run_test 230f "migrate mulitple remote link files"
13703
13704 test_230g() {
13705         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13706         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13707
13708         mkdir -p $DIR/$tdir/migrate_dir
13709
13710         $LFS migrate -m 1000 $DIR/$tdir/migrate_dir &&
13711                 error "migrating dir to non-exist MDT succeeds"
13712         true
13713 }
13714 run_test 230g "migrate dir to non-exist MDT"
13715
13716 test_230h() {
13717         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13718         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13719         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.64) ] &&
13720                 skip "Need MDS version at least 2.7.64" && return
13721         local mdt_index
13722
13723         mkdir -p $DIR/$tdir/migrate_dir
13724
13725         $LFS migrate -m1 $DIR &&
13726                 error "migrating mountpoint1 should fail"
13727
13728         $LFS migrate -m1 $DIR/$tdir/.. &&
13729                 error "migrating mountpoint2 should fail"
13730
13731         $LFS migrate -m1 $DIR/$tdir/migrate_dir/.. ||
13732                 error "migrating $tdir fail"
13733
13734         mdt_index=$($LFS getstripe -M $DIR/$tdir)
13735         [ $mdt_index == 1 ] || error "$mdt_index != 1 after migration"
13736
13737         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir)
13738         [ $mdt_index == 1 ] || error "$mdt_index != 1 after migration"
13739
13740 }
13741 run_test 230h "migrate .. and root"
13742
13743 test_230i() {
13744         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13745         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13746
13747         mkdir -p $DIR/$tdir/migrate_dir
13748
13749         $LFS migrate -m 1 $DIR/$tdir/migrate_dir/ ||
13750                 error "migration fails with a tailing slash"
13751
13752         $LFS migrate -m 0 $DIR/$tdir/migrate_dir// ||
13753                 error "migration fails with two tailing slashes"
13754 }
13755 run_test 230i "lfs migrate -m tolerates trailing slashes"
13756
13757 test_231a()
13758 {
13759         # For simplicity this test assumes that max_pages_per_rpc
13760         # is the same across all OSCs
13761         local max_pages=$($LCTL get_param -n osc.*.max_pages_per_rpc | head -n1)
13762         local bulk_size=$((max_pages * 4096))
13763         local brw_size=$(do_facet ost1 $LCTL get_param -n obdfilter.*.brw_size |
13764                                        head -n 1)
13765
13766         mkdir -p $DIR/$tdir
13767         $LFS setstripe -S ${brw_size}M $DIR/$tdir ||
13768                 error "failed to set stripe with -S ${brw_size}M option"
13769
13770         # clear the OSC stats
13771         $LCTL set_param osc.*.stats=0 &>/dev/null
13772         stop_writeback
13773
13774         # Client writes $bulk_size - there must be 1 rpc for $max_pages.
13775         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=$bulk_size count=1 \
13776                 oflag=direct &>/dev/null || error "dd failed"
13777
13778         sync; sleep 1; sync # just to be safe
13779         local nrpcs=$($LCTL get_param osc.*.stats |awk '/ost_write/ {print $2}')
13780         if [ x$nrpcs != "x1" ]; then
13781                 $LCTL get_param osc.*.stats
13782                 error "found $nrpcs ost_write RPCs, not 1 as expected"
13783         fi
13784
13785         start_writeback
13786         # Drop the OSC cache, otherwise we will read from it
13787         cancel_lru_locks osc
13788
13789         # clear the OSC stats
13790         $LCTL set_param osc.*.stats=0 &>/dev/null
13791
13792         # Client reads $bulk_size.
13793         dd if=$DIR/$tdir/$tfile of=/dev/null bs=$bulk_size count=1 \
13794                 iflag=direct &>/dev/null || error "dd failed"
13795
13796         nrpcs=$($LCTL get_param osc.*.stats | awk '/ost_read/ { print $2 }')
13797         if [ x$nrpcs != "x1" ]; then
13798                 $LCTL get_param osc.*.stats
13799                 error "found $nrpcs ost_read RPCs, not 1 as expected"
13800         fi
13801 }
13802 run_test 231a "checking that reading/writing of BRW RPC size results in one RPC"
13803
13804 test_231b() {
13805         mkdir -p $DIR/$tdir
13806         local i
13807         for i in {0..1023}; do
13808                 dd if=/dev/zero of=$DIR/$tdir/$tfile conv=notrunc \
13809                         seek=$((2 * i)) bs=4096 count=1 &>/dev/null ||
13810                         error "dd of=$DIR/$tdir/$tfile seek=$((2 * i)) failed"
13811         done
13812         sync
13813 }
13814 run_test 231b "must not assert on fully utilized OST request buffer"
13815
13816 test_232() {
13817         mkdir -p $DIR/$tdir
13818         #define OBD_FAIL_LDLM_OST_LVB            0x31c
13819         $LCTL set_param fail_loc=0x31c
13820
13821         # ignore dd failure
13822         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=1 || true
13823
13824         $LCTL set_param fail_loc=0
13825         umount_client $MOUNT || error "umount failed"
13826         mount_client $MOUNT || error "mount failed"
13827 }
13828 run_test 232 "failed lock should not block umount"
13829
13830 test_233a() {
13831         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.64) ] ||
13832         { skip "Need MDS version at least 2.3.64"; return; }
13833         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
13834
13835         local fid=$($LFS path2fid $MOUNT)
13836         stat $MOUNT/.lustre/fid/$fid > /dev/null ||
13837                 error "cannot access $MOUNT using its FID '$fid'"
13838 }
13839 run_test 233a "checking that OBF of the FS root succeeds"
13840
13841 test_233b() {
13842         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.5.90) ] ||
13843         { skip "Need MDS version at least 2.5.90"; return; }
13844         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
13845
13846         local fid=$($LFS path2fid $MOUNT/.lustre)
13847         stat $MOUNT/.lustre/fid/$fid > /dev/null ||
13848                 error "cannot access $MOUNT/.lustre using its FID '$fid'"
13849
13850         fid=$($LFS path2fid $MOUNT/.lustre/fid)
13851         stat $MOUNT/.lustre/fid/$fid > /dev/null ||
13852                 error "cannot access $MOUNT/.lustre/fid using its FID '$fid'"
13853 }
13854 run_test 233b "checking that OBF of the FS .lustre succeeds"
13855
13856 test_234() {
13857         local p="$TMP/sanityN-$TESTNAME.parameters"
13858         save_lustre_params client "llite.*.xattr_cache" > $p
13859         lctl set_param llite.*.xattr_cache 1 ||
13860                 { skip "xattr cache is not supported"; return 0; }
13861
13862         mkdir -p $DIR/$tdir || error "mkdir failed"
13863         touch $DIR/$tdir/$tfile || error "touch failed"
13864         # OBD_FAIL_LLITE_XATTR_ENOMEM
13865         $LCTL set_param fail_loc=0x1405
13866         # output of the form: attr 2 4 44 3 fc13 x86_64
13867         V=($(IFS=".-" rpm -q attr))
13868         if [[ ${V[1]} > 2 || ${V[2]} > 4 || ${V[3]} > 44 ||
13869               ${V[1]} = 2 && ${V[2]} = 4 && ${V[3]} = 44 && ${V[4]} > 6 ]]; then
13870                 # attr pre-2.4.44-7 had a bug with rc
13871                 # LU-3703 - SLES 11 and FC13 clients have older attr
13872                 getfattr -n user.attr $DIR/$tdir/$tfile &&
13873                         error "getfattr should have failed with ENOMEM"
13874         else
13875                 skip "LU-3703: attr version $(getfattr --version) too old"
13876         fi
13877         $LCTL set_param fail_loc=0x0
13878         rm -rf $DIR/$tdir
13879
13880         restore_lustre_params < $p
13881         rm -f $p
13882 }
13883 run_test 234 "xattr cache should not crash on ENOMEM"
13884
13885 test_235() {
13886         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.52) ] &&
13887                 skip "Need MDS version at least 2.4.52" && return
13888         flock_deadlock $DIR/$tfile
13889         local RC=$?
13890         case $RC in
13891                 0)
13892                 ;;
13893                 124) error "process hangs on a deadlock"
13894                 ;;
13895                 *) error "error executing flock_deadlock $DIR/$tfile"
13896                 ;;
13897         esac
13898 }
13899 run_test 235 "LU-1715: flock deadlock detection does not work properly"
13900
13901 #LU-2935
13902 test_236() {
13903         check_swap_layouts_support && return 0
13904         test_mkdir -c1 $DIR/$tdir
13905
13906         local ref1=/etc/passwd
13907         local ref2=/etc/group
13908         local file1=$DIR/$tdir/f1
13909         local file2=$DIR/$tdir/f2
13910
13911         $SETSTRIPE -c 1 $file1 || error "cannot setstripe on '$file1': rc = $?"
13912         cp $ref1 $file1 || error "cp $ref1 $file1 failed: rc = $?"
13913         $SETSTRIPE -c 2 $file2 || error "cannot setstripe on '$file2': rc = $?"
13914         cp $ref2 $file2 || error "cp $ref2 $file2 failed: rc = $?"
13915         local fd=$(free_fd)
13916         local cmd="exec $fd<>$file2"
13917         eval $cmd
13918         rm $file2
13919         $LFS swap_layouts $file1 /proc/self/fd/${fd} ||
13920                 error "cannot swap layouts of '$file1' and /proc/self/fd/${fd}"
13921         cmd="exec $fd>&-"
13922         eval $cmd
13923         cmp $ref2 $file1 || error "content compare failed ($ref2 != $file1)"
13924
13925         #cleanup
13926         rm -rf $DIR/$tdir
13927 }
13928 run_test 236 "Layout swap on open unlinked file"
13929
13930 # test to verify file handle related system calls
13931 # (name_to_handle_at/open_by_handle_at)
13932 # The new system calls are supported in glibc >= 2.14.
13933
13934 test_237() {
13935         echo "Test file_handle syscalls" > $DIR/$tfile ||
13936                 error "write failed"
13937         check_fhandle_syscalls $DIR/$tfile ||
13938                 error "check_fhandle_syscalls failed"
13939 }
13940 run_test 237 "Verify name_to_handle_at/open_by_handle_at syscalls"
13941
13942 # LU-4659 linkea consistency
13943 test_238() {
13944         local server_version=$(lustre_version_code $SINGLEMDS)
13945
13946         [[ $server_version -gt $(version_code 2.5.57) ]] ||
13947                 [[ $server_version -gt $(version_code 2.5.1) &&
13948                    $server_version -lt $(version_code 2.5.50) ]] ||
13949                 { skip "Need MDS version at least 2.5.58 or 2.5.2+"; return; }
13950
13951         touch $DIR/$tfile
13952         ln $DIR/$tfile $DIR/$tfile.lnk
13953         touch $DIR/$tfile.new
13954         mv $DIR/$tfile.new $DIR/$tfile
13955         local fid1=$($LFS path2fid $DIR/$tfile)
13956         local fid2=$($LFS path2fid $DIR/$tfile.lnk)
13957         local path1=$($LFS fid2path $FSNAME "$fid1")
13958         [ $tfile == $path1 ] || error "linkea inconsistent: $tfile $fid1 $path1"
13959         local path2=$($LFS fid2path $FSNAME "$fid2")
13960         [ $tfile.lnk == $path2 ] ||
13961                 error "linkea inconsistent: $tfile.lnk $fid2 $path2!"
13962         rm -f $DIR/$tfile*
13963 }
13964 run_test 238 "Verify linkea consistency"
13965
13966 test_239() {
13967         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.5.60) ] &&
13968                 skip "Need MDS version at least 2.5.60" && return
13969         local list=$(comma_list $(mdts_nodes))
13970
13971         mkdir -p $DIR/$tdir
13972         createmany -o $DIR/$tdir/f- 5000
13973         unlinkmany $DIR/$tdir/f- 5000
13974         do_nodes $list "lctl set_param -n osp*.*.sync_changes 1"
13975         changes=$(do_nodes $list "lctl get_param -n osc.*MDT*.sync_changes \
13976                         osc.*MDT*.sync_in_flight" | calc_sum)
13977         [ "$changes" -eq 0 ] || error "$changes not synced"
13978 }
13979 run_test 239 "osp_sync test"
13980
13981 test_239a() { #LU-5297
13982         remote_mds_nodsh && skip "remote MDS with nodsh" && return
13983         touch $DIR/$tfile
13984         #define OBD_FAIL_OSP_CHECK_INVALID_REC     0x2100
13985         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x2100
13986         chgrp $RUNAS_GID $DIR/$tfile
13987         wait_delete_completed
13988 }
13989 run_test 239a "process invalid osp sync record correctly"
13990
13991 test_239b() { #LU-5297
13992         remote_mds_nodsh && skip "remote MDS with nodsh" && return
13993         touch $DIR/$tfile1
13994         #define OBD_FAIL_OSP_CHECK_ENOMEM     0x2101
13995         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x2101
13996         chgrp $RUNAS_GID $DIR/$tfile1
13997         wait_delete_completed
13998         do_facet $SINGLEMDS $LCTL set_param fail_loc=0
13999         touch $DIR/$tfile2
14000         chgrp $RUNAS_GID $DIR/$tfile2
14001         wait_delete_completed
14002 }
14003 run_test 239b "process osp sync record with ENOMEM error correctly"
14004
14005 test_240() {
14006         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
14007         remote_mds_nodsh && skip "remote MDS with nodsh" && return
14008
14009         mkdir -p $DIR/$tdir
14010
14011         $LFS mkdir -i 0 $DIR/$tdir/d0 ||
14012                 error "failed to mkdir $DIR/$tdir/d0 on MDT0"
14013         $LFS mkdir -i 1 $DIR/$tdir/d0/d1 ||
14014                 error "failed to mkdir $DIR/$tdir/d0/d1 on MDT1"
14015
14016         umount_client $MOUNT || error "umount failed"
14017         #define OBD_FAIL_TGT_DELAY_CONDITIONAL   0x713
14018         do_facet mds2 lctl set_param fail_loc=0x713 fail_val=1
14019         mount_client $MOUNT || error "failed to mount client"
14020
14021         echo "stat $DIR/$tdir/d0/d1, should not fail/ASSERT"
14022         stat $DIR/$tdir/d0/d1 || error "fail to stat $DIR/$tdir/d0/d1"
14023 }
14024 run_test 240 "race between ldlm enqueue and the connection RPC (no ASSERT)"
14025
14026 test_241_bio() {
14027         for LOOP in $(seq $1); do
14028                 dd if=$DIR/$tfile of=/dev/null bs=40960 count=1 2>/dev/null
14029                 cancel_lru_locks osc || true
14030         done
14031 }
14032
14033 test_241_dio() {
14034         for LOOP in $(seq $1); do
14035                 dd if=$DIR/$tfile of=/dev/null bs=40960 count=1 \
14036                                                 iflag=direct 2>/dev/null
14037         done
14038 }
14039
14040 test_241a() { # was test_241
14041         dd if=/dev/zero of=$DIR/$tfile count=1 bs=40960
14042         ls -la $DIR/$tfile
14043         cancel_lru_locks osc
14044         test_241_bio 1000 &
14045         PID=$!
14046         test_241_dio 1000
14047         wait $PID
14048 }
14049 run_test 241a "bio vs dio"
14050
14051 test_241b() {
14052         dd if=/dev/zero of=$DIR/$tfile count=1 bs=40960
14053         ls -la $DIR/$tfile
14054         test_241_dio 1000 &
14055         PID=$!
14056         test_241_dio 1000
14057         wait $PID
14058 }
14059 run_test 241b "dio vs dio"
14060
14061 test_242() {
14062         remote_mds_nodsh && skip "remote MDS with nodsh" && return
14063         mkdir -p $DIR/$tdir
14064         touch $DIR/$tdir/$tfile
14065
14066         #define OBD_FAIL_MDS_READPAGE_PACK      0x105
14067         do_facet mds1 lctl set_param fail_loc=0x105
14068         /bin/ls $DIR/$tdir && error "ls $DIR/$tdir should fail"
14069
14070         do_facet mds1 lctl set_param fail_loc=0
14071         /bin/ls $DIR/$tdir || error "ls $DIR/$tdir failed"
14072 }
14073 run_test 242 "mdt_readpage failure should not cause directory unreadable"
14074
14075 test_243()
14076 {
14077         test_mkdir $DIR/$tdir
14078         group_lock_test -d $DIR/$tdir || error "A group lock test failed"
14079 }
14080 run_test 243 "various group lock tests"
14081
14082 test_244()
14083 {
14084         test_mkdir $DIR/$tdir
14085         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=35
14086         sendfile_grouplock $DIR/$tdir/$tfile || \
14087                 error "sendfile+grouplock failed"
14088         rm -rf $DIR/$tdir
14089 }
14090 run_test 244 "sendfile with group lock tests"
14091
14092 test_245() {
14093         local flagname="multi_mod_rpcs"
14094         local connect_data_name="max_mod_rpcs"
14095         local out
14096
14097         # check if multiple modify RPCs flag is set
14098         out=$($LCTL get_param mdc.$FSNAME-MDT0000-*.import |
14099                 grep "connect_flags:")
14100         echo "$out"
14101
14102         echo "$out" | grep -qw $flagname
14103         if [ $? -ne 0 ]; then
14104                 echo "connect flag $flagname is not set"
14105                 return
14106         fi
14107
14108         # check if multiple modify RPCs data is set
14109         out=$($LCTL get_param mdc.$FSNAME-MDT0000-*.import)
14110         echo "$out"
14111
14112         echo "$out" | grep -qw $connect_data_name ||
14113                 error "import should have connect data $connect_data_name"
14114 }
14115 run_test 245 "check mdc connection flag/data: multiple modify RPCs"
14116
14117 test_246() { # LU-7371
14118         remote_ost_nodsh && skip "remote OST with nodsh" && return
14119         [ $(lustre_version_code ost1) -lt $(version_code 2.7.62) ] &&
14120                 skip "Need OST version >= 2.7.62" && return 0
14121         do_facet ost1 $LCTL set_param fail_val=4095
14122 #define OBD_FAIL_OST_READ_SIZE          0x234
14123         do_facet ost1 $LCTL set_param fail_loc=0x234
14124         $LFS setstripe $DIR/$tfile -i 0 -c 1
14125         dd if=/dev/zero of=$DIR/$tfile bs=4095 count=1 > /dev/null 2>&1
14126         cancel_lru_locks $FSNAME-OST0000
14127         dd if=$DIR/$tfile of=/dev/null bs=1048576 || error "Read failed"
14128 }
14129 run_test 246 "Read file of size 4095 should return right length"
14130
14131 test_247a() {
14132         lctl get_param -n mdc.$FSNAME-MDT0000*.import |
14133                 grep -q subtree ||
14134                 { skip "Fileset feature is not supported"; return; }
14135
14136         local submount=${MOUNT}_$tdir
14137
14138         mkdir $MOUNT/$tdir
14139         mkdir -p $submount || error "mkdir $submount failed"
14140         FILESET="$FILESET/$tdir" mount_client $submount ||
14141                 error "mount $submount failed"
14142         echo foo > $submount/$tfile || error "write $submount/$tfile failed"
14143         [ $(cat $MOUNT/$tdir/$tfile) = "foo" ] ||
14144                 error "read $MOUNT/$tdir/$tfile failed"
14145         umount_client $submount || error "umount $submount failed"
14146         rmdir $submount
14147 }
14148 run_test 247a "mount subdir as fileset"
14149
14150 test_247b() {
14151         lctl get_param -n mdc.$FSNAME-MDT0000*.import | grep -q subtree ||
14152                 { skip "Fileset feature is not supported"; return; }
14153
14154         local submount=${MOUNT}_$tdir
14155
14156         rm -rf $MOUNT/$tdir
14157         mkdir -p $submount || error "mkdir $submount failed"
14158         SKIP_FILESET=1
14159         FILESET="$FILESET/$tdir" mount_client $submount &&
14160                 error "mount $submount should fail"
14161         rmdir $submount
14162 }
14163 run_test 247b "mount subdir that dose not exist"
14164
14165 test_247c() {
14166         lctl get_param -n mdc.$FSNAME-MDT0000*.import | grep -q subtree ||
14167                 { skip "Fileset feature is not supported"; return; }
14168
14169         local submount=${MOUNT}_$tdir
14170
14171         mkdir -p $MOUNT/$tdir/dir1
14172         mkdir -p $submount || error "mkdir $submount failed"
14173         FILESET="$FILESET/$tdir" mount_client $submount ||
14174                 error "mount $submount failed"
14175         local fid=$($LFS path2fid $MOUNT/)
14176         $LFS fid2path $submount $fid && error "fid2path should fail"
14177         umount_client $submount || error "umount $submount failed"
14178         rmdir $submount
14179 }
14180 run_test 247c "running fid2path outside root"
14181
14182 test_247d() {
14183         lctl get_param -n mdc.$FSNAME-MDT0000*.import | grep -q subtree ||
14184                 { skip "Fileset feature is not supported"; return; }
14185
14186         local submount=${MOUNT}_$tdir
14187
14188         mkdir -p $MOUNT/$tdir/dir1
14189         mkdir -p $submount || error "mkdir $submount failed"
14190         FILESET="$FILESET/$tdir" mount_client $submount ||
14191                 error "mount $submount failed"
14192         local fid=$($LFS path2fid $submount/dir1)
14193         $LFS fid2path $submount $fid || error "fid2path should succeed"
14194         umount_client $submount || error "umount $submount failed"
14195         rmdir $submount
14196 }
14197 run_test 247d "running fid2path inside root"
14198
14199 # LU-8037
14200 test_247e() {
14201         lctl get_param -n mdc.$FSNAME-MDT0000*.import |
14202                 grep -q subtree ||
14203                 { skip "Fileset feature is not supported"; return; }
14204
14205         local submount=${MOUNT}_$tdir
14206
14207         mkdir $MOUNT/$tdir
14208         mkdir -p $submount || error "mkdir $submount failed"
14209         FILESET="$FILESET/.." mount_client $submount &&
14210                 error "mount $submount should fail"
14211         rmdir $submount
14212 }
14213 run_test 247e "mount .. as fileset"
14214
14215 test_248() {
14216         local fast_read_sav=$($LCTL get_param -n llite.*.fast_read 2>/dev/null)
14217         [ -z "$fast_read_sav" ] && skip "no fast read support" && return
14218
14219         # create a large file for fast read verification
14220         dd if=/dev/zero of=$DIR/$tfile bs=1M count=128 > /dev/null 2>&1
14221
14222         # make sure the file is created correctly
14223         $CHECKSTAT -s $((128*1024*1024)) $DIR/$tfile ||
14224                 { rm -f $DIR/$tfile; skip "file creation error" && return; }
14225
14226         echo "Test 1: verify that fast read is 4 times faster on cache read"
14227
14228         # small read with fast read enabled
14229         $LCTL set_param -n llite.*.fast_read=1
14230         local t_fast=$(dd if=$DIR/$tfile of=/dev/null bs=4k 2>&1 |
14231                 awk '/copied/ { print $6 }')
14232
14233         # small read with fast read disabled
14234         $LCTL set_param -n llite.*.fast_read=0
14235         local t_slow=$(dd if=$DIR/$tfile of=/dev/null bs=4k 2>&1 |
14236                 awk '/copied/ { print $6 }')
14237
14238         # verify that fast read is 4 times faster for cache read
14239         [ $(bc <<< "4 * $t_fast < $t_slow") -eq 1 ] ||
14240                 error_not_in_vm "fast read was not 4 times faster: " \
14241                            "$t_fast vs $t_slow"
14242
14243         echo "Test 2: verify the performance between big and small read"
14244         $LCTL set_param -n llite.*.fast_read=1
14245
14246         # 1k non-cache read
14247         cancel_lru_locks osc
14248         local t_1k=$(dd if=$DIR/$tfile of=/dev/null bs=1k 2>&1 |
14249                 awk '/copied/ { print $6 }')
14250
14251         # 1M non-cache read
14252         cancel_lru_locks osc
14253         local t_1m=$(dd if=$DIR/$tfile of=/dev/null bs=1k 2>&1 |
14254                 awk '/copied/ { print $6 }')
14255
14256         # verify that big IO is not 4 times faster than small IO
14257         [ $(bc <<< "4 * $t_1k >= $t_1m") -eq 1 ] ||
14258                 error_not_in_vm "bigger IO is way too fast: $t_1k vs $t_1m"
14259
14260         $LCTL set_param -n llite.*.fast_read=$fast_read_sav
14261         rm -f $DIR/$tfile
14262 }
14263 run_test 248 "fast read verification"
14264
14265 test_249() { # LU-7890
14266         rm -f $DIR/$tfile
14267         $SETSTRIPE -c 1 $DIR/$tfile
14268
14269         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.53) ] &&
14270         skip "Need at least version 2.8.54"
14271
14272         # Offset 2T == 4k * 512M
14273         dd if=/dev/zero of=$DIR/$tfile bs=4k count=1 seek=512M ||
14274                 error "dd to 2T offset failed"
14275 }
14276 run_test 249 "Write above 2T file size"
14277
14278 test_250() {
14279         [ "$(facet_fstype ost$(($($GETSTRIPE -i $DIR/$tfile) + 1)))" = "zfs" ] \
14280          && skip "no 16TB file size limit on ZFS" && return
14281
14282         $SETSTRIPE -c 1 $DIR/$tfile
14283         # ldiskfs extent file size limit is (16TB - 4KB - 1) bytes
14284         local size=$((16 * 1024 * 1024 * 1024 * 1024 - 4096 - 1))
14285         $TRUNCATE $DIR/$tfile $size || error "truncate $tfile to $size failed"
14286         dd if=/dev/zero of=$DIR/$tfile bs=10 count=1 oflag=append \
14287                 conv=notrunc,fsync && error "append succeeded"
14288         return 0
14289 }
14290 run_test 250 "Write above 16T limit"
14291
14292 test_251() {
14293         $SETSTRIPE -c -1 -S 1048576 $DIR/$tfile
14294
14295         #define OBD_FAIL_LLITE_LOST_LAYOUT 0x1407
14296         #Skip once - writing the first stripe will succeed
14297         $LCTL set_param fail_loc=0xa0001407 fail_val=1
14298         $MULTIOP $DIR/$tfile o:O_RDWR:w2097152c 2>&1 | grep -q "short write" &&
14299                 error "short write happened"
14300
14301         $LCTL set_param fail_loc=0xa0001407 fail_val=1
14302         $MULTIOP $DIR/$tfile or2097152c 2>&1 | grep -q "short read" &&
14303                 error "short read happened"
14304
14305         rm -f $DIR/$tfile
14306 }
14307 run_test 251 "Handling short read and write correctly"
14308
14309 test_252() {
14310         local tgt
14311         local dev
14312         local out
14313         local uuid
14314         local num
14315         local gen
14316
14317         remote_mds_nodsh && skip "remote MDS with nodsh" && return
14318         remote_ost_nodsh && skip "remote OST with nodsh" && return
14319         if [ "$(facet_fstype ost1)" != "ldiskfs" -o \
14320              "$(facet_fstype mds1)" != "ldiskfs" ]; then
14321                 skip "ldiskfs only test"
14322                 return
14323         fi
14324
14325         # check lr_reader on OST0000
14326         tgt=ost1
14327         dev=$(facet_device $tgt)
14328         out=$(do_facet $tgt $LR_READER $dev)
14329         [ $? -eq 0 ] || error "$LR_READER failed on target $tgt device $dev"
14330         echo "$out"
14331         uuid=$(echo "$out" | grep -i uuid | awk '{ print $2 }')
14332         [ "$uuid" == "$(ostuuid_from_index 0)" ] ||
14333                 error "Invalid uuid returned by $LR_READER on target $tgt"
14334         echo -e "uuid returned by $LR_READER is '$uuid'\n"
14335
14336         # check lr_reader -c on MDT0000
14337         tgt=mds1
14338         dev=$(facet_device $tgt)
14339         if ! do_facet $tgt $LR_READER -h | grep -q OPTIONS; then
14340                 echo "$LR_READER does not support additional options"
14341                 return 0
14342         fi
14343         out=$(do_facet $tgt $LR_READER -c $dev)
14344         [ $? -eq 0 ] || error "$LR_READER failed on target $tgt device $dev"
14345         echo "$out"
14346         num=$(echo "$out" | grep -c "mdtlov")
14347         [ "$num" -eq $((MDSCOUNT - 1)) ] ||
14348                 error "Invalid number of mdtlov clients returned by $LR_READER"
14349         echo -e "Number of mdtlov clients returned by $LR_READER is '$num'\n"
14350
14351         # check lr_reader -cr on MDT0000
14352         out=$(do_facet $tgt $LR_READER -cr $dev)
14353         [ $? -eq 0 ] || error "$LR_READER failed on target $tgt device $dev"
14354         echo "$out"
14355         echo "$out" | grep -q "^reply_data:$" ||
14356                 error "$LR_READER should have returned 'reply_data' section"
14357         num=$(echo "$out" | grep -c "client_generation")
14358         echo -e "Number of reply data returned by $LR_READER is '$num'\n"
14359 }
14360 run_test 252 "check lr_reader tool"
14361
14362 test_253_fill_ost() {
14363         local size_mb #how many MB should we write to pass watermark
14364         local lwm=$3  #low watermark
14365         local free_10mb #10% of free space
14366
14367         free_kb=$($LFS df $MOUNT | grep $1 | awk '{ print $4 }')
14368         size_mb=$((free_kb / 1024 - lwm))
14369         free_10mb=$((free_kb / 10240))
14370         #If 10% of free space cross low watermark use it
14371         if (( free_10mb > size_mb )); then
14372                 size_mb=$free_10mb
14373         else
14374                 #At least we need to store 1.1 of difference between
14375                 #free space and low watermark
14376                 size_mb=$((size_mb + size_mb / 10))
14377         fi
14378         if (( lwm <= $((free_kb / 1024)) )) || [ ! -f $DIR/$tdir/1 ]; then
14379                 dd if=/dev/zero of=$DIR/$tdir/1 bs=1M count=$size_mb \
14380                          oflag=append conv=notrunc
14381         fi
14382
14383         sleep_maxage
14384
14385         free_kb=$($LFS df $MOUNT | grep $1 | awk '{ print $4 }')
14386         echo "OST still has $((free_kb / 1024)) mbytes free"
14387 }
14388
14389 test_253() {
14390         local ostidx=0
14391         local rc=0
14392
14393         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14394         remote_mds_nodsh && skip "remote MDS with nodsh" && return
14395         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
14396
14397         local ost_name=$($LFS osts |
14398                 sed -n 's/^'$ostidx': \(.*\)_UUID .*/\1/p')
14399         # on the mdt's osc
14400         local mdtosc_proc1=$(get_mdtosc_proc_path $SINGLEMDS $ost_name)
14401         do_facet $SINGLEMDS $LCTL get_param -n \
14402                 osp.$mdtosc_proc1.reserved_mb_high ||
14403                 { skip  "remote MDS does not support reserved_mb_high" &&
14404                   return; }
14405
14406         rm -rf $DIR/$tdir
14407         wait_mds_ost_sync
14408         wait_delete_completed
14409         mkdir $DIR/$tdir
14410
14411         local last_wm_h=$(do_facet $SINGLEMDS $LCTL get_param -n \
14412                         osp.$mdtosc_proc1.reserved_mb_high)
14413         local last_wm_l=$(do_facet $SINGLEMDS $LCTL get_param -n \
14414                         osp.$mdtosc_proc1.reserved_mb_low)
14415         echo "prev high watermark $last_wm_h, prev low watermark $last_wm_l"
14416
14417         create_pool $FSNAME.$TESTNAME || error "Pool creation failed"
14418         do_facet mgs $LCTL pool_add $FSNAME.$TESTNAME $ost_name ||
14419                 error "Adding $ost_name to pool failed"
14420
14421         # Wait for client to see a OST at pool
14422         wait_update $HOSTNAME "$LCTL get_param -n
14423                 lov.$FSNAME-*.pools.$TESTNAME | sort -u |
14424                 grep $ost_name" "$ost_name""_UUID" $((TIMEOUT/2)) ||
14425                 error "Client can not see the pool"
14426         $SETSTRIPE $DIR/$tdir -i $ostidx -c 1 -p $FSNAME.$TESTNAME ||
14427                 error "Setstripe failed"
14428
14429         dd if=/dev/zero of=$DIR/$tdir/0 bs=1M count=10
14430         local blocks=$($LFS df $MOUNT | grep $ost_name | awk '{ print $4 }')
14431         echo "OST still has $((blocks/1024)) mbytes free"
14432
14433         local new_lwm=$((blocks/1024-10))
14434         do_facet $SINGLEMDS $LCTL set_param \
14435                         osp.$mdtosc_proc1.reserved_mb_high=$((new_lwm+5))
14436         do_facet $SINGLEMDS $LCTL set_param \
14437                         osp.$mdtosc_proc1.reserved_mb_low=$new_lwm
14438
14439         test_253_fill_ost $ost_name $mdtosc_proc1 $new_lwm
14440
14441         #First enospc could execute orphan deletion so repeat.
14442         test_253_fill_ost $ost_name $mdtosc_proc1 $new_lwm
14443
14444         local oa_status=$(do_facet $SINGLEMDS $LCTL get_param -n \
14445                         osp.$mdtosc_proc1.prealloc_status)
14446         echo "prealloc_status $oa_status"
14447
14448         dd if=/dev/zero of=$DIR/$tdir/2 bs=1M count=1 &&
14449                 error "File creation should fail"
14450         #object allocation was stopped, but we still able to append files
14451         dd if=/dev/zero of=$DIR/$tdir/1 bs=1M seek=6 count=5 oflag=append ||
14452                 error "Append failed"
14453         rm -f $DIR/$tdir/1 $DIR/$tdir/0 $DIR/$tdir/r*
14454
14455         wait_delete_completed
14456
14457         sleep_maxage
14458
14459         for i in $(seq 10 12); do
14460                 dd if=/dev/zero of=$DIR/$tdir/$i bs=1M count=1 2>/dev/null ||
14461                         error "File creation failed after rm";
14462         done
14463
14464         oa_status=$(do_facet $SINGLEMDS $LCTL get_param -n \
14465                         osp.$mdtosc_proc1.prealloc_status)
14466         echo "prealloc_status $oa_status"
14467
14468         if (( oa_status != 0 )); then
14469                 error "Object allocation still disable after rm"
14470         fi
14471         do_facet $SINGLEMDS $LCTL set_param \
14472                         osp.$mdtosc_proc1.reserved_mb_high=$last_wm_h
14473         do_facet $SINGLEMDS $LCTL set_param \
14474                         osp.$mdtosc_proc1.reserved_mb_low=$last_wm_l
14475
14476
14477         do_facet mgs $LCTL pool_remove $FSNAME.$TESTNAME $ost_name ||
14478                 error "Remove $ost_name from pool failed"
14479         do_facet mgs $LCTL pool_destroy $FSNAME.$TESTNAME ||
14480                 error "Pool destroy fialed"
14481 }
14482 run_test 253 "Check object allocation limit"
14483
14484 test_254() {
14485         local cl_user
14486
14487         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14488         remote_mds_nodsh && skip "remote MDS with nodsh" && return
14489         do_facet mds1 $LCTL get_param -n mdd.$MDT0.changelog_size ||
14490                 { skip "MDS does not support changelog_size" && return; }
14491
14492         cl_user=$(do_facet mds1 $LCTL --device $MDT0 changelog_register -n)
14493         echo "Registered as changelog user $cl_user"
14494
14495         $LFS changelog_clear $MDT0 $cl_user 0
14496
14497         local size1=$(do_facet mds1 \
14498                       $LCTL get_param -n mdd.$MDT0.changelog_size)
14499         echo "Changelog size $size1"
14500
14501         rm -rf $DIR/$tdir
14502         $LFS mkdir -i 0 $DIR/$tdir
14503         # change something
14504         mkdir -p $DIR/$tdir/pics/2008/zachy
14505         touch $DIR/$tdir/pics/2008/zachy/timestamp
14506         cp /etc/hosts $DIR/$tdir/pics/2008/zachy/pic1.jpg
14507         mv $DIR/$tdir/pics/2008/zachy $DIR/$tdir/pics/zach
14508         ln $DIR/$tdir/pics/zach/pic1.jpg $DIR/$tdir/pics/2008/portland.jpg
14509         ln -s $DIR/$tdir/pics/2008/portland.jpg $DIR/$tdir/pics/desktop.jpg
14510         rm $DIR/$tdir/pics/desktop.jpg
14511
14512         local size2=$(do_facet mds1 \
14513                       $LCTL get_param -n mdd.$MDT0.changelog_size)
14514         echo "Changelog size after work $size2"
14515
14516         do_facet mds1 $LCTL --device $MDT0 changelog_deregister $cl_user
14517
14518         if (( size2 <= size1 )); then
14519                 error "Changelog size after work should be greater than original"
14520         fi
14521         return 0
14522 }
14523 run_test 254 "Check changelog size"
14524
14525 ladvise_no_type()
14526 {
14527         local type=$1
14528         local file=$2
14529
14530         lfs ladvise -a invalid $file 2>&1 | grep "Valid types" |
14531                 awk -F: '{print $2}' | grep $type > /dev/null
14532         if [ $? -ne 0 ]; then
14533                 return 0
14534         fi
14535         return 1
14536 }
14537
14538 ladvise_no_ioctl()
14539 {
14540         local file=$1
14541
14542         lfs ladvise -a willread $file > /dev/null 2>&1
14543         if [ $? -eq 0 ]; then
14544                 return 1
14545         fi
14546
14547         lfs ladvise -a willread $file 2>&1 |
14548                 grep "Inappropriate ioctl for device" > /dev/null
14549         if [ $? -eq 0 ]; then
14550                 return 0
14551         fi
14552         return 1
14553 }
14554
14555 percent() {
14556         bc <<<"scale=2; ($1 - $2) * 100 / $2"
14557 }
14558
14559 # run a random read IO workload
14560 # usage: random_read_iops <filename> <filesize> <iosize>
14561 random_read_iops() {
14562         local file=$1
14563         local fsize=$2
14564         local iosize=${3:-4096}
14565
14566         $READS -f $file -s $fsize -b $iosize -n $((fsize / iosize)) -t 60 |
14567                 sed -e '/^$/d' -e 's#.*s, ##' -e 's#MB/s##'
14568 }
14569
14570 drop_file_oss_cache() {
14571         local file="$1"
14572         local nodes="$2"
14573
14574         $LFS ladvise -a dontneed $file 2>/dev/null ||
14575                 do_nodes $nodes "echo 3 > /proc/sys/vm/drop_caches"
14576 }
14577
14578 ladvise_willread_performance()
14579 {
14580         local repeat=10
14581         local average_origin=0
14582         local average_cache=0
14583         local average_ladvise=0
14584
14585         for ((i = 1; i <= $repeat; i++)); do
14586                 echo "Iter $i/$repeat: reading without willread hint"
14587                 cancel_lru_locks osc
14588                 drop_file_oss_cache $DIR/$tfile $(comma_list $(osts_nodes))
14589                 local speed_origin=$(random_read_iops $DIR/$tfile $size)
14590                 echo "Iter $i/$repeat: uncached speed: $speed_origin"
14591                 average_origin=$(bc <<<"$average_origin + $speed_origin")
14592
14593                 cancel_lru_locks osc
14594                 local speed_cache=$(random_read_iops $DIR/$tfile $size)
14595                 echo "Iter $i/$repeat: OSS cache speed: $speed_cache"
14596                 average_cache=$(bc <<<"$average_cache + $speed_cache")
14597
14598                 cancel_lru_locks osc
14599                 drop_file_oss_cache $DIR/$tfile $(comma_list $(osts_nodes))
14600                 $LFS ladvise -a willread $DIR/$tfile || error "ladvise failed"
14601                 local speed_ladvise=$(random_read_iops $DIR/$tfile $size)
14602                 echo "Iter $i/$repeat: ladvise speed: $speed_ladvise"
14603                 average_ladvise=$(bc <<<"$average_ladvise + $speed_ladvise")
14604         done
14605         average_origin=$(bc <<<"scale=2; $average_origin / $repeat")
14606         average_cache=$(bc <<<"scale=2; $average_cache / $repeat")
14607         average_ladvise=$(bc <<<"scale=2; $average_ladvise / $repeat")
14608
14609         speedup_cache=$(percent $average_cache $average_origin)
14610         speedup_ladvise=$(percent $average_ladvise $average_origin)
14611
14612         echo "Average uncached read: $average_origin"
14613         echo "Average speedup with OSS cached read: " \
14614                 "$average_cache = +$speedup_cache%"
14615         echo "Average speedup with ladvise willread: " \
14616                 "$average_ladvise = +$speedup_ladvise%"
14617
14618         local lowest_speedup=20
14619         if [ ${average_cache%.*} -lt $lowest_speedup ]; then
14620                 echo "Speedup with OSS cached read less than $lowest_speedup%, "
14621                         "got $average_cache%. Skipping ladvise willread check."
14622                 return 0
14623         fi
14624
14625         # the test won't work on ZFS until it supports 'ladvise dontneed', but
14626         # it is still good to run until then to exercise 'ladvise willread'
14627         ! $LFS ladvise -a dontneed $DIR/$tfile &&
14628                 [ "$(facet_fstype ost1)" = "zfs" ] &&
14629                 echo "osd-zfs does not support dontneed or drop_caches" &&
14630                 return 0
14631
14632         lowest_speedup=$(bc <<<"scale=2; $average_cache / 2")
14633         [ ${average_ladvise%.*} -gt $lowest_speedup ] ||
14634                 error_not_in_vm "Speedup with willread is less than " \
14635                         "$lowest_speedup%, got $average_ladvise%"
14636 }
14637
14638 test_255a() {
14639         [ $(lustre_version_code ost1) -lt $(version_code 2.8.54) ] &&
14640                 skip "lustre < 2.8.54 does not support ladvise " && return
14641         remote_ost_nodsh && skip "remote OST with nodsh" && return
14642
14643         lfs setstripe -c -1 -i 0 $DIR/$tfile || error "$tfile failed"
14644
14645         ladvise_no_type willread $DIR/$tfile &&
14646                 skip "willread ladvise is not supported" && return
14647
14648         ladvise_no_ioctl $DIR/$tfile &&
14649                 skip "ladvise ioctl is not supported" && return
14650
14651         local size_mb=100
14652         local size=$((size_mb * 1048576))
14653         dd if=/dev/zero of=$DIR/$tfile bs=1048576 count=$size_mb ||
14654                 error "dd to $DIR/$tfile failed"
14655
14656         lfs ladvise -a willread $DIR/$tfile ||
14657                 error "Ladvise failed with no range argument"
14658
14659         lfs ladvise -a willread -s 0 $DIR/$tfile ||
14660                 error "Ladvise failed with no -l or -e argument"
14661
14662         lfs ladvise -a willread -e 1 $DIR/$tfile ||
14663                 error "Ladvise failed with only -e argument"
14664
14665         lfs ladvise -a willread -l 1 $DIR/$tfile ||
14666                 error "Ladvise failed with only -l argument"
14667
14668         lfs ladvise -a willread -s 2 -e 1 $DIR/$tfile &&
14669                 error "End offset should not be smaller than start offset"
14670
14671         lfs ladvise -a willread -s 2 -e 2 $DIR/$tfile &&
14672                 error "End offset should not be equal to start offset"
14673
14674         lfs ladvise -a willread -s $size -l 1 $DIR/$tfile ||
14675                 error "Ladvise failed with overflowing -s argument"
14676
14677         lfs ladvise -a willread -s 1 -e $((size + 1)) $DIR/$tfile ||
14678                 error "Ladvise failed with overflowing -e argument"
14679
14680         lfs ladvise -a willread -s 1 -l $size $DIR/$tfile ||
14681                 error "Ladvise failed with overflowing -l argument"
14682
14683         lfs ladvise -a willread -l 1 -e 2 $DIR/$tfile &&
14684                 error "Ladvise succeeded with conflicting -l and -e arguments"
14685
14686         echo "Synchronous ladvise should wait"
14687         local delay=4
14688 #define OBD_FAIL_OST_LADVISE_PAUSE       0x237
14689         do_nodes $(comma_list $(osts_nodes)) \
14690                 $LCTL set_param fail_val=$delay fail_loc=0x237
14691
14692         local start_ts=$SECONDS
14693         lfs ladvise -a willread $DIR/$tfile ||
14694                 error "Ladvise failed with no range argument"
14695         local end_ts=$SECONDS
14696         local inteval_ts=$((end_ts - start_ts))
14697
14698         if [ $inteval_ts -lt $(($delay - 1)) ]; then
14699                 error "Synchronous advice didn't wait reply"
14700         fi
14701
14702         echo "Asynchronous ladvise shouldn't wait"
14703         local start_ts=$SECONDS
14704         lfs ladvise -a willread -b $DIR/$tfile ||
14705                 error "Ladvise failed with no range argument"
14706         local end_ts=$SECONDS
14707         local inteval_ts=$((end_ts - start_ts))
14708
14709         if [ $inteval_ts -gt $(($delay / 2)) ]; then
14710                 error "Asynchronous advice blocked"
14711         fi
14712
14713         do_nodes $(comma_list $(osts_nodes)) $LCTL set_param fail_loc=0
14714         ladvise_willread_performance
14715 }
14716 run_test 255a "check 'lfs ladvise -a willread'"
14717
14718 facet_meminfo() {
14719         local facet=$1
14720         local info=$2
14721
14722         do_facet $facet "cat /proc/meminfo | grep ^${info}:" | awk '{print $2}'
14723 }
14724
14725 test_255b() {
14726         remote_ost_nodsh && skip "remote OST with nodsh" && return
14727
14728         lfs setstripe -c 1 -i 0 $DIR/$tfile
14729
14730         ladvise_no_type dontneed $DIR/$tfile &&
14731                 skip "dontneed ladvise is not supported" && return
14732
14733         ladvise_no_ioctl $DIR/$tfile &&
14734                 skip "ladvise ioctl is not supported" && return
14735
14736         [ $(lustre_version_code ost1) -lt $(version_code 2.8.54) ] &&
14737                 skip "lustre < 2.8.54 does not support ladvise" && return
14738
14739         ! $LFS ladvise -a dontneed $DIR/$tfile &&
14740                 [ "$(facet_fstype ost1)" = "zfs" ] &&
14741                 skip "zfs-osd does not support 'ladvise dontneed'" && return
14742
14743         local size_mb=100
14744         local size=$((size_mb * 1048576))
14745         # In order to prevent disturbance of other processes, only check 3/4
14746         # of the memory usage
14747         local kibibytes=$((size_mb * 1024 * 3 / 4))
14748
14749         dd if=/dev/zero of=$DIR/$tfile bs=1048576 count=$size_mb ||
14750                 error "dd to $DIR/$tfile failed"
14751
14752         local total=$(facet_meminfo ost1 MemTotal)
14753         echo "Total memory: $total KiB"
14754
14755         do_facet ost1 "sync && echo 3 > /proc/sys/vm/drop_caches"
14756         local before_read=$(facet_meminfo ost1 Cached)
14757         echo "Cache used before read: $before_read KiB"
14758
14759         lfs ladvise -a willread $DIR/$tfile ||
14760                 error "Ladvise willread failed"
14761         local after_read=$(facet_meminfo ost1 Cached)
14762         echo "Cache used after read: $after_read KiB"
14763
14764         lfs ladvise -a dontneed $DIR/$tfile ||
14765                 error "Ladvise dontneed again failed"
14766         local no_read=$(facet_meminfo ost1 Cached)
14767         echo "Cache used after dontneed ladvise: $no_read KiB"
14768
14769         if [ $total -lt $((before_read + kibibytes)) ]; then
14770                 echo "Memory is too small, abort checking"
14771                 return 0
14772         fi
14773
14774         if [ $((before_read + kibibytes)) -gt $after_read ]; then
14775                 error "Ladvise willread should use more memory" \
14776                         "than $kibibytes KiB"
14777         fi
14778
14779         if [ $((no_read + kibibytes)) -gt $after_read ]; then
14780                 error "Ladvise dontneed should release more memory" \
14781                         "than $kibibytes KiB"
14782         fi
14783 }
14784 run_test 255b "check 'lfs ladvise -a dontneed'"
14785
14786 test_255c() {
14787         local count
14788         local new_count
14789         local difference
14790         local i
14791         local rc
14792         test_mkdir -p $DIR/$tdir
14793         $SETSTRIPE -i 0 $DIR/$tdir
14794
14795         #test 10 returns only success/failure
14796         i=10
14797         lockahead_test -d $DIR/$tdir -t $i
14798         rc=$?
14799         if [ $rc -eq 255 ]; then
14800                 error "Ladvise test${i} failed, ${rc}"
14801         fi
14802
14803         #test 11 counts lock enqueue requests, all others count new locks
14804         i=11
14805         count=$(do_facet ost1 \
14806                 $LCTL get_param -n ost.OSS.ost.stats)
14807         count=$(echo "$count" | grep ldlm_extent_enqueue | awk '{ print $2 }')
14808
14809         lockahead_test -d $DIR/$tdir -t $i
14810         rc=$?
14811         if [ $rc -eq 255 ]; then
14812                 error "Ladvise test${i} failed, ${rc}"
14813         fi
14814
14815         new_count=$(do_facet ost1 \
14816                 $LCTL get_param -n ost.OSS.ost.stats)
14817         new_count=$(echo "$new_count" | grep ldlm_extent_enqueue | \
14818                    awk '{ print $2 }')
14819
14820         difference="$((new_count - count))"
14821         if [ $difference -ne $rc ]; then
14822                 error "Ladvise test${i}, bad enqueue count, returned " \
14823                       "${rc}, actual ${difference}"
14824         fi
14825
14826         for i in $(seq 12 21); do
14827                 # If we do not do this, we run the risk of having too many
14828                 # locks and starting lock cancellation while we are checking
14829                 # lock counts.
14830                 cancel_lru_locks osc
14831
14832                 count=$($LCTL get_param -n \
14833                        ldlm.namespaces.$FSNAME-OST0000*osc-f*.lock_unused_count)
14834
14835                 lockahead_test -d $DIR/$tdir -t $i
14836                 rc=$?
14837                 if [ $rc -eq 255 ]; then
14838                         error "Ladvise test ${i} failed, ${rc}"
14839                 fi
14840
14841                 new_count=$($LCTL get_param -n \
14842                        ldlm.namespaces.$FSNAME-OST0000*osc-f*.lock_unused_count)
14843                 difference="$((new_count - count))"
14844
14845                 # Test 15 output is divided by 1000 to map down to valid return
14846                 if [ $i -eq 15 ]; then
14847                         rc="$((rc * 1000))"
14848                 fi
14849
14850                 if [ $difference -ne $rc ]; then
14851                         error "Ladvise test ${i}, bad lock count, returned " \
14852                               "${rc}, actual ${difference}"
14853                 fi
14854         done
14855
14856         #test 22 returns only success/failure
14857         i=22
14858         lockahead_test -d $DIR/$tdir -t $i
14859         rc=$?
14860         if [ $rc -eq 255 ]; then
14861                 error "Ladvise test${i} failed, ${rc}"
14862         fi
14863
14864 }
14865 run_test 255c "suite of ladvise lockahead tests"
14866
14867 test_256() {
14868         local cl_user
14869         local cat_sl
14870         local mdt_dev
14871
14872         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14873         remote_mds_nodsh && skip "remote MDS with nodsh" && return
14874         [ "$(facet_fstype mds1)" != "ldiskfs" ] &&
14875                 skip "ldiskfs only test" && return
14876
14877         mdt_dev=$(mdsdevname 1)
14878         echo $mdt_dev
14879         cl_user=$(do_facet mds1 \
14880         "$LCTL get_param -n mdd.$MDT0.changelog_users | grep cl")
14881         if [[ -n $cl_user ]]; then
14882                 skip "active changelog user"
14883                 return
14884         fi
14885
14886         cl_user=$(do_facet mds1 $LCTL --device $MDT0 changelog_register -n)
14887         echo "Registered as changelog user $cl_user"
14888
14889         rm -rf $DIR/$tdir
14890         mkdir -p $DIR/$tdir
14891
14892         $LFS changelog_clear $MDT0 $cl_user 0
14893
14894         # change something
14895         touch $DIR/$tdir/{1..10}
14896
14897         # stop the MDT
14898         stop mds1 || error "Fail to stop MDT."
14899
14900         # remount the MDT
14901         start mds1 $mdt_dev $MDS_MOUNT_OPTS || error "Fail to start MDT."
14902
14903         #after mount new plainllog is used
14904         touch $DIR/$tdir/{11..19}
14905         local TEMP256FILE=$(mktemp TEMP256XXXXXX)
14906         cat_sl=$(do_facet mds1 \
14907         "$DEBUGFS -R \\\"dump changelog_catalog $TEMP256FILE\\\" $mdt_dev; \
14908          llog_reader $TEMP256FILE | grep \\\"type=1064553b\\\" | wc -l")
14909         rm $TEMP256FILE
14910
14911         if (( cat_sl != 2 )); then
14912                 do_facet mds1 $LCTL --device $MDT0 changelog_deregister $cl_user
14913                 error "Changelog catalog has wrong number of slots $cat_sl"
14914         fi
14915
14916         $LFS changelog_clear $MDT0 $cl_user 0
14917
14918         TEMP256FILE=$(mktemp TEMP256XXXXXX)
14919         cat_sl=$(do_facet mds1 \
14920         "$DEBUGFS -R \\\"dump changelog_catalog $TEMP256FILE\\\" $mdt_dev; \
14921          llog_reader $TEMP256FILE | grep \\\"type=1064553b\\\" | wc -l")
14922         rm $TEMP256FILE
14923
14924         do_facet mds1 $LCTL --device $MDT0 changelog_deregister $cl_user
14925
14926         if (( cat_sl == 2 )); then
14927                 error "Empty plain llog was not deleted from changelog catalog"
14928         fi
14929         if (( cat_sl != 1 )); then
14930                 error "Active plain llog shouldn\`t be deleted from catalog"
14931         fi
14932 }
14933 run_test 256 "Check llog delete for empty and not full state"
14934
14935 test_257() {
14936         remote_mds_nodsh && skip "remote MDS with nodsh" && return
14937         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.55) ]] &&
14938                 skip "Need MDS version at least 2.8.55" && return
14939
14940         test_mkdir $DIR/$tdir
14941
14942         setfattr -n trusted.name1 -v value1 $DIR/$tdir ||
14943                 error "setfattr -n trusted.name1=value1 $DIR/$tdir failed"
14944         stat $DIR/$tdir
14945
14946 #define OBD_FAIL_MDS_XATTR_REP                  0x161
14947         local mdtidx=$($LFS getstripe -M $DIR/$tdir)
14948         local facet=mds$((mdtidx + 1))
14949         set_nodes_failloc $(facet_active_host $facet) 0x80000161
14950         getfattr -n trusted.name1 $DIR/$tdir 2> /dev/null
14951
14952         stop $facet || error "stop MDS failed"
14953         start $facet $(mdsdevname $((mdtidx + 1))) $MDS_MOUNT_OPTS ||
14954                 error "start MDS fail"
14955 }
14956 run_test 257 "xattr locks are not lost"
14957
14958 # Verify we take the i_mutex when security requires it
14959 test_258a() {
14960 #define OBD_FAIL_IMUTEX_SEC 0x141c
14961         $LCTL set_param fail_loc=0x141c
14962         touch $DIR/$tfile
14963         chmod u+s $DIR/$tfile
14964         chmod a+rwx $DIR/$tfile
14965         $RUNAS dd if=/dev/zero of=$DIR/$tfile bs=4k count=1 oflag=append
14966         RC=$?
14967         if [ $RC -ne 0 ]; then
14968                 error "error, failed to take i_mutex, rc=$?"
14969         fi
14970         rm -f $DIR/$tfile
14971 }
14972 run_test 258a
14973
14974 # Verify we do NOT take the i_mutex in the normal case
14975 test_258b() {
14976 #define OBD_FAIL_IMUTEX_NOSEC 0x141d
14977         $LCTL set_param fail_loc=0x141d
14978         touch $DIR/$tfile
14979         chmod a+rwx $DIR
14980         chmod a+rw $DIR/$tfile
14981         $RUNAS dd if=/dev/zero of=$DIR/$tfile bs=4k count=1 oflag=append
14982         RC=$?
14983         if [ $RC -ne 0 ]; then
14984                 error "error, took i_mutex unnecessarily, rc=$?"
14985         fi
14986         rm -f $DIR/$tfile
14987
14988 }
14989 run_test 258b "verify i_mutex security behavior"
14990
14991 test_260() {
14992 #define OBD_FAIL_MDC_CLOSE               0x806
14993         $LCTL set_param fail_loc=0x80000806
14994         touch $DIR/$tfile
14995
14996 }
14997 run_test 260 "Check mdc_close fail"
14998
14999 cleanup_test_300() {
15000         trap 0
15001         umask $SAVE_UMASK
15002 }
15003 test_striped_dir() {
15004         local mdt_index=$1
15005         local stripe_count
15006         local stripe_index
15007
15008         mkdir -p $DIR/$tdir
15009
15010         SAVE_UMASK=$(umask)
15011         trap cleanup_test_300 RETURN EXIT
15012
15013         $LFS setdirstripe -i $mdt_index -c 2 -t all_char -m 755 \
15014                                                 $DIR/$tdir/striped_dir ||
15015                 error "set striped dir error"
15016
15017         local mode=$(stat -c%a $DIR/$tdir/striped_dir)
15018         [ "$mode" = "755" ] || error "expect 755 got $mode"
15019
15020         $LFS getdirstripe $DIR/$tdir/striped_dir > /dev/null 2>&1 ||
15021                 error "getdirstripe failed"
15022         stripe_count=$($LFS getdirstripe -c $DIR/$tdir/striped_dir)
15023         if [ "$stripe_count" != "2" ]; then
15024                 error "1:stripe_count is $stripe_count, expect 2"
15025         fi
15026         stripe_count=$($LFS getdirstripe -T $DIR/$tdir/striped_dir)
15027         if [ "$stripe_count" != "2" ]; then
15028                 error "2:stripe_count is $stripe_count, expect 2"
15029         fi
15030
15031         stripe_index=$($LFS getdirstripe -i $DIR/$tdir/striped_dir)
15032         if [ "$stripe_index" != "$mdt_index" ]; then
15033                 error "stripe_index is $stripe_index, expect $mdt_index"
15034         fi
15035
15036         [ $(stat -c%h $DIR/$tdir/striped_dir) == '2' ] ||
15037                 error "nlink error after create striped dir"
15038
15039         mkdir $DIR/$tdir/striped_dir/a
15040         mkdir $DIR/$tdir/striped_dir/b
15041
15042         stat $DIR/$tdir/striped_dir/a ||
15043                 error "create dir under striped dir failed"
15044         stat $DIR/$tdir/striped_dir/b ||
15045                 error "create dir under striped dir failed"
15046
15047         [ $(stat -c%h $DIR/$tdir/striped_dir) == '4' ] ||
15048                 error "nlink error after mkdir"
15049
15050         rmdir $DIR/$tdir/striped_dir/a
15051         [ $(stat -c%h $DIR/$tdir/striped_dir) == '3' ] ||
15052                 error "nlink error after rmdir"
15053
15054         rmdir $DIR/$tdir/striped_dir/b
15055         [ $(stat -c%h $DIR/$tdir/striped_dir) == '2' ] ||
15056                 error "nlink error after rmdir"
15057
15058         chattr +i $DIR/$tdir/striped_dir
15059         createmany -o $DIR/$tdir/striped_dir/f 10 &&
15060                 error "immutable flags not working under striped dir!"
15061         chattr -i $DIR/$tdir/striped_dir
15062
15063         rmdir $DIR/$tdir/striped_dir ||
15064                 error "rmdir striped dir error"
15065
15066         cleanup_test_300
15067
15068         true
15069 }
15070
15071 test_300a() {
15072         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.0) ] &&
15073                 skip "skipped for lustre < 2.7.0" && return
15074         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15075         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15076
15077         test_striped_dir 0 || error "failed on striped dir on MDT0"
15078         test_striped_dir 1 || error "failed on striped dir on MDT0"
15079 }
15080 run_test 300a "basic striped dir sanity test"
15081
15082 test_300b() {
15083         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.0) ] &&
15084                 skip "skipped for lustre < 2.7.0" && return
15085         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15086         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15087         local i
15088         local mtime1
15089         local mtime2
15090         local mtime3
15091
15092         test_mkdir $DIR/$tdir
15093         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir ||
15094                 error "set striped dir error"
15095         for ((i=0; i<10; i++)); do
15096                 mtime1=$(stat -c %Y $DIR/$tdir/striped_dir)
15097                 sleep 1
15098                 touch $DIR/$tdir/striped_dir/file_$i ||
15099                                         error "touch error $i"
15100                 mtime2=$(stat -c %Y $DIR/$tdir/striped_dir)
15101                 [ $mtime1 -eq $mtime2 ] &&
15102                         error "mtime not change after create"
15103                 sleep 1
15104                 rm -f $DIR/$tdir/striped_dir/file_$i ||
15105                                         error "unlink error $i"
15106                 mtime3=$(stat -c %Y $DIR/$tdir/striped_dir)
15107                 [ $mtime2 -eq $mtime3 ] &&
15108                         error "mtime did not change after unlink"
15109         done
15110         true
15111 }
15112 run_test 300b "check ctime/mtime for striped dir"
15113
15114 test_300c() {
15115         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.0) ] &&
15116                 skip "skipped for lustre < 2.7.0" && return
15117         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15118         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15119         local file_count
15120
15121         mkdir -p $DIR/$tdir
15122         $LFS setdirstripe -i 0 -c 2 $DIR/$tdir/striped_dir ||
15123                 error "set striped dir error"
15124
15125         chown $RUNAS_ID:$RUNAS_GID $DIR/$tdir/striped_dir ||
15126                 error "chown striped dir failed"
15127
15128         $RUNAS createmany -o $DIR/$tdir/striped_dir/f 5000 ||
15129                 error "create 5k files failed"
15130
15131         file_count=$(ls $DIR/$tdir/striped_dir | wc -l)
15132
15133         [ "$file_count" = 5000 ] || error "file count $file_count != 5000"
15134
15135         rm -rf $DIR/$tdir
15136 }
15137 run_test 300c "chown && check ls under striped directory"
15138
15139 test_300d() {
15140         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.0) ] &&
15141                 skip "skipped for lustre < 2.7.0" && return
15142         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15143         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15144         local stripe_count
15145         local file
15146
15147         mkdir -p $DIR/$tdir
15148         $SETSTRIPE -c 2 $DIR/$tdir
15149
15150         #local striped directory
15151         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir ||
15152                 error "set striped dir error"
15153         createmany -o $DIR/$tdir/striped_dir/f 10 ||
15154                 error "create 10 files failed"
15155
15156         #remote striped directory
15157         $LFS setdirstripe -i 1 -c 2 $DIR/$tdir/remote_striped_dir ||
15158                 error "set striped dir error"
15159         createmany -o $DIR/$tdir/remote_striped_dir/f 10 ||
15160                 error "create 10 files failed"
15161
15162         for file in $(find $DIR/$tdir); do
15163                 stripe_count=$($GETSTRIPE -c $file)
15164                 [ $stripe_count -eq 2 ] ||
15165                         error "wrong stripe $stripe_count for $file"
15166         done
15167
15168         rm -rf $DIR/$tdir
15169 }
15170 run_test 300d "check default stripe under striped directory"
15171
15172 test_300e() {
15173         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
15174                 skip "Need MDS version at least 2.7.55" && return
15175         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15176         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15177         local stripe_count
15178         local file
15179
15180         mkdir -p $DIR/$tdir
15181
15182         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir ||
15183                 error "set striped dir error"
15184
15185         touch $DIR/$tdir/striped_dir/a
15186         touch $DIR/$tdir/striped_dir/b
15187         touch $DIR/$tdir/striped_dir/c
15188
15189         mkdir $DIR/$tdir/striped_dir/dir_a
15190         mkdir $DIR/$tdir/striped_dir/dir_b
15191         mkdir $DIR/$tdir/striped_dir/dir_c
15192
15193         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir/stp_a ||
15194                 error "set striped adir under striped dir error"
15195
15196         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir/stp_b ||
15197                 error "set striped bdir under striped dir error"
15198
15199         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir/stp_c ||
15200                 error "set striped cdir under striped dir error"
15201
15202         mrename $DIR/$tdir/striped_dir/dir_a $DIR/$tdir/striped_dir/dir_b ||
15203                 error "rename dir under striped dir fails"
15204
15205         mrename $DIR/$tdir/striped_dir/stp_a $DIR/$tdir/striped_dir/stp_b ||
15206                 error "rename dir under different stripes fails"
15207
15208         mrename $DIR/$tdir/striped_dir/a $DIR/$tdir/striped_dir/c ||
15209                 error "rename file under striped dir should succeed"
15210
15211         mrename $DIR/$tdir/striped_dir/dir_b $DIR/$tdir/striped_dir/dir_c ||
15212                 error "rename dir under striped dir should succeed"
15213
15214         rm -rf $DIR/$tdir
15215 }
15216 run_test 300e "check rename under striped directory"
15217
15218 test_300f() {
15219         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
15220                 skip "Need MDS version at least 2.7.55" && return
15221         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15222         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15223         local stripe_count
15224         local file
15225
15226         rm -rf $DIR/$tdir
15227         mkdir -p $DIR/$tdir
15228
15229         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir ||
15230                 error "set striped dir error"
15231
15232         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir1 ||
15233                 error "set striped dir error"
15234
15235         touch $DIR/$tdir/striped_dir/a
15236         mkdir $DIR/$tdir/striped_dir/dir_a
15237         $LFS setdirstripe -i 0 -c 2 $DIR/$tdir/striped_dir/stp_a ||
15238                 error "create striped dir under striped dir fails"
15239
15240         touch $DIR/$tdir/striped_dir1/b
15241         mkdir $DIR/$tdir/striped_dir1/dir_b
15242         $LFS setdirstripe -i 0 -c 2 $DIR/$tdir/striped_dir/stp_b ||
15243                 error "create striped dir under striped dir fails"
15244
15245         mrename $DIR/$tdir/striped_dir/dir_a $DIR/$tdir/striped_dir1/dir_b ||
15246                 error "rename dir under different striped dir should fail"
15247
15248         mrename $DIR/$tdir/striped_dir/stp_a $DIR/$tdir/striped_dir1/stp_b ||
15249                 error "rename striped dir under diff striped dir should fail"
15250
15251         mrename $DIR/$tdir/striped_dir/a $DIR/$tdir/striped_dir1/a ||
15252                 error "rename file under diff striped dirs fails"
15253
15254         rm -rf $DIR/$tdir
15255 }
15256 run_test 300f "check rename cross striped directory"
15257
15258 test_300_check_default_striped_dir()
15259 {
15260         local dirname=$1
15261         local default_count=$2
15262         local default_index=$3
15263         local stripe_count
15264         local stripe_index
15265         local dir_stripe_index
15266         local dir
15267
15268         echo "checking $dirname $default_count $default_index"
15269         $LFS setdirstripe -D -c $default_count -i $default_index \
15270                                 -t all_char $DIR/$tdir/$dirname ||
15271                 error "set default stripe on striped dir error"
15272         stripe_count=$($LFS getdirstripe -D -c $DIR/$tdir/$dirname)
15273         [ $stripe_count -eq $default_count ] ||
15274                 error "expect $default_count get $stripe_count for $dirname"
15275
15276         stripe_index=$($LFS getdirstripe -D -i $DIR/$tdir/$dirname)
15277         [ $stripe_index -eq $default_index ] ||
15278                 error "expect $default_index get $stripe_index for $dirname"
15279
15280         mkdir $DIR/$tdir/$dirname/{test1,test2,test3,test4} ||
15281                                                 error "create dirs failed"
15282
15283         createmany -o $DIR/$tdir/$dirname/f- 10 || error "create files failed"
15284         unlinkmany $DIR/$tdir/$dirname/f- 10    || error "unlink files failed"
15285         for dir in $(find $DIR/$tdir/$dirname/*); do
15286                 stripe_count=$($LFS getdirstripe -c $dir)
15287                 [ $stripe_count -eq $default_count ] ||
15288                 [ $stripe_count -eq 0 -o $default_count -eq 1 ] ||
15289                 error "stripe count $default_count != $stripe_count for $dir"
15290
15291                 stripe_index=$($LFS getdirstripe -i $dir)
15292                 [ $default_index -eq -1 -o $stripe_index -eq $default_index ] ||
15293                         error "$stripe_index != $default_index for $dir"
15294
15295                 #check default stripe
15296                 stripe_count=$($LFS getdirstripe -D -c $dir)
15297                 [ $stripe_count -eq $default_count ] ||
15298                 error "default count $default_count != $stripe_count for $dir"
15299
15300                 stripe_index=$($LFS getdirstripe -D -i $dir)
15301                 [ $stripe_index -eq $default_index ] ||
15302                 error "default index $default_index != $stripe_index for $dir"
15303         done
15304         rmdir $DIR/$tdir/$dirname/* || error "rmdir failed"
15305 }
15306
15307 test_300g() {
15308         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
15309                 skip "Need MDS version at least 2.7.55" && return
15310         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15311         local dir
15312         local stripe_count
15313         local stripe_index
15314
15315         mkdir $DIR/$tdir
15316         mkdir $DIR/$tdir/normal_dir
15317
15318         #Checking when client cache stripe index
15319         $LFS setdirstripe -c$MDSCOUNT $DIR/$tdir/striped_dir
15320         $LFS setdirstripe -D -i1 $DIR/$tdir/striped_dir ||
15321                 error "create striped_dir failed"
15322
15323         mkdir $DIR/$tdir/striped_dir/dir1 ||
15324                 error "create dir1 fails"
15325         stripe_index=$($LFS getdirstripe -i $DIR/$tdir/striped_dir/dir1)
15326         [ $stripe_index -eq 1 ] ||
15327                 error "dir1 expect 1 got $stripe_index"
15328
15329         $LFS setdirstripe -i2 $DIR/$tdir/striped_dir/dir2 ||
15330                 error "create dir2 fails"
15331         stripe_index=$($LFS getdirstripe -i $DIR/$tdir/striped_dir/dir2)
15332         [ $stripe_index -eq 2 ] ||
15333                 error "dir2 expect 2 got $stripe_index"
15334
15335         #check default stripe count/stripe index
15336         test_300_check_default_striped_dir normal_dir $MDSCOUNT 1
15337         test_300_check_default_striped_dir normal_dir 1 0
15338         test_300_check_default_striped_dir normal_dir 2 1
15339         test_300_check_default_striped_dir normal_dir 2 -1
15340
15341         #delete default stripe information
15342         echo "delete default stripeEA"
15343         $LFS setdirstripe -d $DIR/$tdir/normal_dir ||
15344                 error "set default stripe on striped dir error"
15345
15346         mkdir -p $DIR/$tdir/normal_dir/{test1,test2,test3,test4}
15347         for dir in $(find $DIR/$tdir/normal_dir/*); do
15348                 stripe_count=$($LFS getdirstripe -c $dir)
15349                 [ $stripe_count -eq 0 ] ||
15350                         error "expect 1 get $stripe_count for $dir"
15351                 stripe_index=$($LFS getdirstripe -i $dir)
15352                 [ $stripe_index -eq 0 ] ||
15353                         error "expect 0 get $stripe_index for $dir"
15354         done
15355 }
15356 run_test 300g "check default striped directory for normal directory"
15357
15358 test_300h() {
15359         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
15360                 skip "Need MDS version at least 2.7.55" && return
15361         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15362         local dir
15363         local stripe_count
15364
15365         mkdir $DIR/$tdir
15366         $LFS setdirstripe -i 0 -c $MDSCOUNT -t all_char \
15367                                         $DIR/$tdir/striped_dir ||
15368                 error "set striped dir error"
15369
15370         test_300_check_default_striped_dir striped_dir $MDSCOUNT 1
15371         test_300_check_default_striped_dir striped_dir 1 0
15372         test_300_check_default_striped_dir striped_dir 2 1
15373         test_300_check_default_striped_dir striped_dir 2 -1
15374
15375         #delete default stripe information
15376         $LFS setdirstripe -d $DIR/$tdir/striped_dir ||
15377                 error "set default stripe on striped dir error"
15378
15379         mkdir -p $DIR/$tdir/striped_dir/{test1,test2,test3,test4}
15380         for dir in $(find $DIR/$tdir/striped_dir/*); do
15381                 stripe_count=$($LFS getdirstripe -c $dir)
15382                 [ $stripe_count -eq 0 ] ||
15383                         error "expect 1 get $stripe_count for $dir"
15384         done
15385 }
15386 run_test 300h "check default striped directory for striped directory"
15387
15388 test_300i() {
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         mkdir $DIR/$tdir
15397
15398         $LFS setdirstripe -i 0 -c$MDSCOUNT -t all_char $DIR/$tdir/striped_dir ||
15399                 error "set striped dir error"
15400
15401         createmany -o $DIR/$tdir/striped_dir/f- 10 ||
15402                 error "create files under striped dir failed"
15403
15404         $LFS setdirstripe -i0 -c$MDSCOUNT -H all_char $DIR/$tdir/hashdir ||
15405                 error "set striped hashdir error"
15406
15407         $LFS setdirstripe -i0 -c$MDSCOUNT -H all_char $DIR/$tdir/hashdir/d0 ||
15408                 error "create dir0 under hash dir failed"
15409         $LFS setdirstripe -i0 -c$MDSCOUNT -H fnv_1a_64 $DIR/$tdir/hashdir/d1 ||
15410                 error "create dir1 under hash dir failed"
15411
15412         # unfortunately, we need to umount to clear dir layout cache for now
15413         # once we fully implement dir layout, we can drop this
15414         umount_client $MOUNT || error "umount failed"
15415         mount_client $MOUNT || error "mount failed"
15416
15417         $LFS find -H fnv_1a_64 $DIR/$tdir/hashdir
15418         local dircnt=$($LFS find -H fnv_1a_64 $DIR/$tdir/hashdir | wc -l)
15419         [ $dircnt -eq 1 ] || error "lfs find striped dir got:$dircnt,except:1"
15420
15421         #set the stripe to be unknown hash type
15422         #define OBD_FAIL_UNKNOWN_LMV_STRIPE     0x1901
15423         $LCTL set_param fail_loc=0x1901
15424         for ((i = 0; i < 10; i++)); do
15425                 $CHECKSTAT -t file $DIR/$tdir/striped_dir/f-$i ||
15426                         error "stat f-$i failed"
15427                 rm $DIR/$tdir/striped_dir/f-$i || error "unlink f-$i failed"
15428         done
15429
15430         touch $DIR/$tdir/striped_dir/f0 &&
15431                 error "create under striped dir with unknown hash should fail"
15432
15433         $LCTL set_param fail_loc=0
15434
15435         umount_client $MOUNT || error "umount failed"
15436         mount_client $MOUNT || error "mount failed"
15437
15438         return 0
15439 }
15440 run_test 300i "client handle unknown hash type striped directory"
15441
15442 test_300j() {
15443         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15444         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
15445                 skip "Need MDS version at least 2.7.55" && return
15446         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15447         local stripe_count
15448         local file
15449
15450         mkdir $DIR/$tdir
15451
15452         #define OBD_FAIL_SPLIT_UPDATE_REC       0x1702
15453         $LCTL set_param fail_loc=0x1702
15454         $LFS setdirstripe -i 0 -c$MDSCOUNT -t all_char $DIR/$tdir/striped_dir ||
15455                 error "set striped dir error"
15456
15457         createmany -o $DIR/$tdir/striped_dir/f- 10 ||
15458                 error "create files under striped dir failed"
15459
15460         $LCTL set_param fail_loc=0
15461
15462         rm -rf $DIR/$tdir || error "unlink striped dir fails"
15463
15464         return 0
15465 }
15466 run_test 300j "test large update record"
15467
15468 test_300k() {
15469         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
15470                 skip "Need MDS version at least 2.7.55" && return
15471         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15472         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15473         local stripe_count
15474         local file
15475
15476         mkdir $DIR/$tdir
15477
15478         #define OBD_FAIL_LARGE_STRIPE   0x1703
15479         $LCTL set_param fail_loc=0x1703
15480         $LFS setdirstripe -i 0 -c512 $DIR/$tdir/striped_dir ||
15481                 error "set striped dir error"
15482         $LCTL set_param fail_loc=0
15483
15484         $LFS getdirstripe $DIR/$tdir/striped_dir ||
15485                 error "getstripeddir fails"
15486         rm -rf $DIR/$tdir/striped_dir ||
15487                 error "unlink striped dir fails"
15488
15489         return 0
15490 }
15491 run_test 300k "test large striped directory"
15492
15493 test_300l() {
15494         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
15495                 skip "Need MDS version at least 2.7.55" && return
15496         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15497         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15498         local stripe_index
15499
15500         test_mkdir -p $DIR/$tdir/striped_dir
15501         chown $RUNAS_ID $DIR/$tdir/striped_dir ||
15502                         error "chown $RUNAS_ID failed"
15503         $LFS setdirstripe -i 1 -D $DIR/$tdir/striped_dir ||
15504                 error "set default striped dir failed"
15505
15506         #define OBD_FAIL_MDS_STALE_DIR_LAYOUT    0x158
15507         $LCTL set_param fail_loc=0x80000158
15508         $RUNAS mkdir $DIR/$tdir/striped_dir/test_dir || error "create dir fails"
15509
15510         stripe_index=$($LFS getdirstripe -i $DIR/$tdir/striped_dir/test_dir)
15511         [ $stripe_index -eq 1 ] ||
15512                 error "expect 1 get $stripe_index for $dir"
15513 }
15514 run_test 300l "non-root user to create dir under striped dir with stale layout"
15515
15516 test_300m() {
15517         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
15518                 skip "Need MDS version at least 2.7.55" && return
15519         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15520         [ $MDSCOUNT -ge 2 ] && skip "Only for single MDT" && return
15521
15522         mkdir -p $DIR/$tdir/striped_dir
15523         $LFS setdirstripe -D -c 1 $DIR/$tdir/striped_dir ||
15524                 error "set default stripes dir error"
15525
15526         mkdir $DIR/$tdir/striped_dir/a || error "mkdir a fails"
15527
15528         stripe_count=$($LFS getdirstripe -c $DIR/$tdir/striped_dir/a)
15529         [ $stripe_count -eq 0 ] ||
15530                         error "expect 0 get $stripe_count for a"
15531
15532         $LFS setdirstripe -D -c 2 $DIR/$tdir/striped_dir ||
15533                 error "set default stripes dir error"
15534
15535         mkdir $DIR/$tdir/striped_dir/b || error "mkdir b fails"
15536
15537         stripe_count=$($LFS getdirstripe -c $DIR/$tdir/striped_dir/b)
15538         [ $stripe_count -eq 0 ] ||
15539                         error "expect 0 get $stripe_count for b"
15540
15541         $LFS setdirstripe -D -c1 -i2 $DIR/$tdir/striped_dir ||
15542                 error "set default stripes dir error"
15543
15544         mkdir $DIR/$tdir/striped_dir/c &&
15545                 error "default stripe_index is invalid, mkdir c should fails"
15546
15547         rm -rf $DIR/$tdir || error "rmdir fails"
15548 }
15549 run_test 300m "setstriped directory on single MDT FS"
15550
15551 cleanup_300n() {
15552         local list=$(comma_list $(mdts_nodes))
15553
15554         trap 0
15555         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=0
15556 }
15557
15558 test_300n() {
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         remote_mds_nodsh && skip "remote MDS with nodsh" && return
15564
15565         local stripe_index
15566         local list=$(comma_list $(mdts_nodes))
15567
15568         trap cleanup_300n RETURN EXIT
15569         mkdir -p $DIR/$tdir
15570         chmod 777 $DIR/$tdir
15571         $RUNAS $LFS setdirstripe -i0 -c$MDSCOUNT \
15572                                 $DIR/$tdir/striped_dir > /dev/null 2>&1 &&
15573                 error "create striped dir succeeds with gid=0"
15574
15575         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=-1
15576         $RUNAS $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/striped_dir ||
15577                 error "create striped dir fails with gid=-1"
15578
15579         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=0
15580         $RUNAS $LFS setdirstripe -i 1 -c$MDSCOUNT -D \
15581                                 $DIR/$tdir/striped_dir > /dev/null 2>&1 &&
15582                 error "set default striped dir succeeds with gid=0"
15583
15584
15585         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=-1
15586         $RUNAS $LFS setdirstripe -i 1 -c$MDSCOUNT -D $DIR/$tdir/striped_dir ||
15587                 error "set default striped dir fails with gid=-1"
15588
15589
15590         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=0
15591         $RUNAS mkdir $DIR/$tdir/striped_dir/test_dir ||
15592                                         error "create test_dir fails"
15593         $RUNAS mkdir $DIR/$tdir/striped_dir/test_dir1 ||
15594                                         error "create test_dir1 fails"
15595         $RUNAS mkdir $DIR/$tdir/striped_dir/test_dir2 ||
15596                                         error "create test_dir2 fails"
15597         cleanup_300n
15598 }
15599 run_test 300n "non-root user to create dir under striped dir with default EA"
15600
15601 test_300o() {
15602         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
15603                 skip "Need MDS version at least 2.7.55" && return
15604         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15605         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15606         local numfree1
15607         local numfree2
15608
15609         mkdir -p $DIR/$tdir
15610
15611         numfree1=$(lctl get_param -n mdc.*MDT0000*.filesfree)
15612         numfree2=$(lctl get_param -n mdc.*MDT0001*.filesfree)
15613         if [ $numfree1 -lt 66000 -o $numfree2 -lt 66000 ]; then
15614                 skip "not enough free inodes $numfree1 $numfree2"
15615                 return
15616         fi
15617
15618         numfree1=$(lctl get_param -n mdc.*MDT0000-mdc-*.kbytesfree)
15619         numfree2=$(lctl get_param -n mdc.*MDT0001-mdc-*.kbytesfree)
15620         if [ $numfree1 -lt 300000 -o $numfree2 -lt 300000 ]; then
15621                 skip "not enough free space $numfree1 $numfree2"
15622                 return
15623         fi
15624
15625         $LFS setdirstripe -c2 $DIR/$tdir/striped_dir ||
15626                 error "setdirstripe fails"
15627
15628         createmany -d $DIR/$tdir/striped_dir/d 131000 ||
15629                 error "create dirs fails"
15630
15631         $LCTL set_param ldlm.namespaces.*mdc-*.lru_size=0
15632         ls $DIR/$tdir/striped_dir > /dev/null ||
15633                 error "ls striped dir fails"
15634         unlinkmany -d $DIR/$tdir/striped_dir/d 131000 ||
15635                 error "unlink big striped dir fails"
15636 }
15637 run_test 300o "unlink big sub stripe(> 65000 subdirs)"
15638
15639 test_300p() {
15640         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15641         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15642         remote_mds_nodsh && skip "remote MDS with nodsh" && return
15643
15644         mkdir -p $DIR/$tdir
15645
15646         #define OBD_FAIL_OUT_ENOSPC     0x1704
15647         do_facet mds2 lctl set_param fail_loc=0x80001704
15648         $LFS setdirstripe -c2 $DIR/$tdir/bad_striped_dir > /dev/null 2>&1 &&
15649                         error "create striped directory should fail"
15650
15651         [ -e $DIR/$tdir/bad_striped_dir ] && error "striped dir exists"
15652
15653         $LFS setdirstripe -c2 $DIR/$tdir/bad_striped_dir
15654         true
15655 }
15656 run_test 300p "create striped directory without space"
15657
15658 test_300q() {
15659         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15660         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15661
15662         local fd=$(free_fd)
15663         local cmd="exec $fd<$tdir"
15664         cd $DIR
15665         $LFS mkdir -c $MDSCOUNT $tdir || error "create $tdir fails"
15666         eval $cmd
15667         cmd="exec $fd<&-"
15668         trap "eval $cmd" EXIT
15669         cd $tdir || error "cd $tdir fails"
15670         rmdir  ../$tdir || error "rmdir $tdir fails"
15671         mkdir local_dir && error "create dir succeeds"
15672         $LFS setdirstripe -i1 remote_dir && error "create remote dir succeeds"
15673         eval $cmd
15674         return 0
15675 }
15676 run_test 300q "create remote directory under orphan directory"
15677
15678 prepare_remote_file() {
15679         mkdir $DIR/$tdir/src_dir ||
15680                 error "create remote source failed"
15681
15682         cp /etc/hosts $DIR/$tdir/src_dir/a || error
15683         touch $DIR/$tdir/src_dir/a
15684
15685         $LFS mkdir -i 1 $DIR/$tdir/tgt_dir ||
15686                 error "create remote target dir failed"
15687
15688         touch $DIR/$tdir/tgt_dir/b
15689
15690         mrename $DIR/$tdir/src_dir/a $DIR/$tdir/tgt_dir/b ||
15691                 error "rename dir cross MDT failed!"
15692
15693         $CHECKSTAT -t file $DIR/$tdir/src_dir/a &&
15694                 error "src_child still exists after rename"
15695
15696         $CHECKSTAT -t file $DIR/$tdir/tgt_dir/b ||
15697                 error "missing file(a) after rename"
15698
15699         diff /etc/hosts $DIR/$tdir/tgt_dir/b ||
15700                 error "diff after rename"
15701 }
15702
15703 test_310a() {
15704         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 4 MDTs" && return
15705         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15706         local remote_file=$DIR/$tdir/tgt_dir/b
15707
15708         mkdir -p $DIR/$tdir
15709
15710         prepare_remote_file || error "prepare remote file failed"
15711
15712         #open-unlink file
15713         $OPENUNLINK $remote_file $remote_file || error
15714         $CHECKSTAT -a $remote_file || error
15715 }
15716 run_test 310a "open unlink remote file"
15717
15718 test_310b() {
15719         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 4 MDTs" && return
15720         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15721         local remote_file=$DIR/$tdir/tgt_dir/b
15722
15723         mkdir -p $DIR/$tdir
15724
15725         prepare_remote_file || error "prepare remote file failed"
15726
15727         ln $remote_file $DIR/$tfile || error "link failed for remote file"
15728         $MULTIOP $DIR/$tfile Ouc || error "mulitop failed"
15729         $CHECKSTAT -t file $remote_file || error "check file failed"
15730 }
15731 run_test 310b "unlink remote file with multiple links while open"
15732
15733 test_310c() {
15734         [[ $MDSCOUNT -lt 4 ]] && skip "needs >= 4 MDTs" && return
15735         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15736         local remote_file=$DIR/$tdir/tgt_dir/b
15737
15738         mkdir -p $DIR/$tdir
15739
15740         prepare_remote_file || error "prepare remote file failed"
15741
15742         ln $remote_file $DIR/$tfile || error "link failed for remote file"
15743         multiop_bg_pause $remote_file O_uc ||
15744                         error "mulitop failed for remote file"
15745         MULTIPID=$!
15746         $MULTIOP $DIR/$tfile Ouc
15747         kill -USR1 $MULTIPID
15748         wait $MULTIPID
15749 }
15750 run_test 310c "open-unlink remote file with multiple links"
15751
15752 #LU-4825
15753 test_311() {
15754         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.54) ] &&
15755                 skip "lustre < 2.8.54 does not contain LU-4825 fix" && return
15756         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15757         remote_mds_nodsh && skip "remote MDS with nodsh" && return
15758
15759         local old_iused=$($LFS df -i | grep OST0000 | awk '{ print $3 }')
15760
15761         mkdir -p $DIR/$tdir
15762         $SETSTRIPE -i 0 -c 1 $DIR/$tdir
15763         createmany -o $DIR/$tdir/$tfile. 1000
15764
15765         # statfs data is not real time, let's just calculate it
15766         old_iused=$((old_iused + 1000))
15767
15768         local count=$(do_facet $SINGLEMDS "lctl get_param -n \
15769                         osp.*OST0000*MDT0000.create_count")
15770         local max_count=$(do_facet $SINGLEMDS "lctl get_param -n \
15771                                 osp.*OST0000*MDT0000.max_create_count")
15772         for idx in $(seq $MDSCOUNT); do
15773                 do_facet mds$idx "lctl set_param -n \
15774                         osp.*OST0000*MDT000?.max_create_count=0"
15775         done
15776
15777         $SETSTRIPE -i 0 $DIR/$tdir/$tfile || error "setstripe failed"
15778         local index=$($GETSTRIPE -i $DIR/$tdir/$tfile)
15779         [ $index -ne 0 ] || error "$tfile stripe index is 0"
15780
15781         unlinkmany $DIR/$tdir/$tfile. 1000
15782
15783         for idx in $(seq $MDSCOUNT); do
15784                 do_facet mds$idx "lctl set_param -n \
15785                         osp.*OST0000*MDT000?.max_create_count=$max_count"
15786                 do_facet mds$idx "lctl set_param -n \
15787                         osp.*OST0000*MDT000?.create_count=$count"
15788         done
15789
15790         local new_iused
15791         for i in $(seq 120); do
15792                 new_iused=$($LFS df -i | grep OST0000 | awk '{ print $3 }')
15793                 # system may be too busy to destroy all objs in time, use
15794                 # a somewhat small value to not fail autotest
15795                 [ $((old_iused - new_iused)) -gt 400 ] && break
15796                 sleep 1
15797         done
15798
15799         echo "waited $i sec, old Iused $old_iused, new Iused $new_iused"
15800         [ $((old_iused - new_iused)) -gt 400 ] ||
15801                 error "objs not destroyed after unlink"
15802 }
15803 run_test 311 "disable OSP precreate, and unlink should destroy objs"
15804
15805 zfs_oid_to_objid()
15806 {
15807         local ost=$1
15808         local objid=$2
15809
15810         local vdevdir=$(dirname $(facet_vdevice $ost))
15811         local cmd="$ZDB -e -p $vdevdir -ddddd $(facet_device $ost)"
15812         local zfs_zapid=$(do_facet $ost $cmd |
15813                           grep -w "/O/0/d$((objid%32))" -C 5 |
15814                           awk '/Object/{getline; print $1}')
15815         local zfs_objid=$(do_facet $ost $cmd $zfs_zapid |
15816                           awk "/$objid = /"'{printf $3}')
15817
15818         echo $zfs_objid
15819 }
15820
15821 zfs_object_blksz() {
15822         local ost=$1
15823         local objid=$2
15824
15825         local vdevdir=$(dirname $(facet_vdevice $ost))
15826         local cmd="$ZDB -e -p $vdevdir -dddd $(facet_device $ost)"
15827         local blksz=$(do_facet $ost $cmd $objid |
15828                       awk '/dblk/{getline; printf $4}')
15829
15830         case "${blksz: -1}" in
15831                 k|K) blksz=$((${blksz:0:$((${#blksz} - 1))}*1024)) ;;
15832                 m|M) blksz=$((${blksz:0:$((${#blksz} - 1))}*1024*1024)) ;;
15833                 *) ;;
15834         esac
15835
15836         echo $blksz
15837 }
15838
15839 test_312() { # LU-4856
15840         remote_ost_nodsh && skip "remote OST with nodsh" && return
15841
15842         [ $(facet_fstype ost1) = "zfs" ] ||
15843                 { skip "the test only applies to zfs" && return; }
15844
15845         local max_blksz=$(do_facet ost1 \
15846                           $ZFS get -p recordsize $(facet_device ost1) |
15847                           awk '!/VALUE/{print $3}')
15848         local min_blksz=$(getconf PAGE_SIZE)
15849
15850         # to make life a little bit easier
15851         $LFS mkdir -c 1 -i 0 $DIR/$tdir
15852         $LFS setstripe -c 1 -i 0 $DIR/$tdir
15853
15854         local tf=$DIR/$tdir/$tfile
15855         touch $tf
15856         local oid=$($LFS getstripe $tf | awk '/obdidx/{getline; print $2}')
15857
15858         # Get ZFS object id
15859         local zfs_objid=$(zfs_oid_to_objid ost1 $oid)
15860
15861         # block size change by sequential over write
15862         local blksz
15863         for ((bs=$min_blksz; bs <= max_blksz; bs <<= 2)); do
15864                 dd if=/dev/zero of=$tf bs=$bs count=1 oflag=sync conv=notrunc
15865
15866                 blksz=$(zfs_object_blksz ost1 $zfs_objid)
15867                 [ $blksz -eq $bs ] || error "blksz error: $blksz, expected: $bs"
15868         done
15869         rm -f $tf
15870
15871         # block size change by sequential append write
15872         dd if=/dev/zero of=$tf bs=$min_blksz count=1 oflag=sync conv=notrunc
15873         oid=$($LFS getstripe $tf | awk '/obdidx/{getline; print $2}')
15874         zfs_objid=$(zfs_oid_to_objid ost1 $oid)
15875
15876         for ((count = 1; count < $((max_blksz / min_blksz)); count *= 2)); do
15877                 dd if=/dev/zero of=$tf bs=$min_blksz count=$count seek=$count \
15878                         oflag=sync conv=notrunc
15879
15880                 blksz=$(zfs_object_blksz ost1 $zfs_objid)
15881                 [ $blksz -eq $((2 * count * min_blksz)) ] ||
15882                         error "blksz error, actual $blksz, "    \
15883                                 "expected: 2 * $count * $min_blksz"
15884         done
15885         rm -f $tf
15886
15887         # random write
15888         touch $tf
15889         oid=$($LFS getstripe $tf | awk '/obdidx/{getline; print $2}')
15890         zfs_objid=$(zfs_oid_to_objid ost1 $oid)
15891
15892         dd if=/dev/zero of=$tf bs=1K count=1 oflag=sync conv=notrunc
15893         blksz=$(zfs_object_blksz ost1 $zfs_objid)
15894         [ $blksz -eq $min_blksz ] ||
15895                 error "blksz error: $blksz, expected: $min_blksz"
15896
15897         dd if=/dev/zero of=$tf bs=64K count=1 oflag=sync conv=notrunc seek=128
15898         blksz=$(zfs_object_blksz ost1 $zfs_objid)
15899         [ $blksz -eq 65536 ] || error "blksz error: $blksz, expected: 64k"
15900
15901         dd if=/dev/zero of=$tf bs=1M count=1 oflag=sync conv=notrunc
15902         blksz=$(zfs_object_blksz ost1 $zfs_objid)
15903         [ $blksz -eq 65536 ] || error "rewrite error: $blksz, expected: 64k"
15904 }
15905 run_test 312 "make sure ZFS adjusts its block size by write pattern"
15906
15907 test_313() {
15908         remote_ost_nodsh && skip "remote OST with nodsh" && return
15909
15910         local file=$DIR/$tfile
15911         rm -f $file
15912         $SETSTRIPE -c 1 -i 0 $file || error "setstripe failed"
15913
15914         # define OBD_FAIL_TGT_RCVD_EIO           0x720
15915         do_facet ost1 "$LCTL set_param fail_loc=0x720"
15916         dd if=/dev/zero of=$file bs=4096 oflag=direct count=1 &&
15917                 error "write should failed"
15918         do_facet ost1 "$LCTL set_param fail_loc=0"
15919         rm -f $file
15920 }
15921 run_test 313 "io should fail after last_rcvd update fail"
15922
15923 test_fake_rw() {
15924         local read_write=$1
15925         if [ "$read_write" = "write" ]; then
15926                 local dd_cmd="dd if=/dev/zero of=$DIR/$tfile"
15927         elif [ "$read_write" = "read" ]; then
15928                 local dd_cmd="dd of=/dev/null if=$DIR/$tfile"
15929         else
15930                 error "argument error"
15931         fi
15932
15933         # turn off debug for performance testing
15934         local saved_debug=$($LCTL get_param -n debug)
15935         $LCTL set_param debug=0
15936
15937         $SETSTRIPE -c 1 -i 0 $DIR/$tfile
15938
15939         # get ost1 size - lustre-OST0000
15940         local ost1_avail_size=$($LFS df | awk /${ost1_svc}/'{ print $4 }')
15941         local blocks=$((ost1_avail_size/2/1024)) # half avail space by megabytes
15942         [ $blocks -gt 1000 ] && blocks=1000 # 1G in maximum
15943
15944         if [ "$read_write" = "read" ]; then
15945                 truncate -s $(expr 1048576 \* $blocks) $DIR/$tfile
15946         fi
15947
15948         local start_time=$(date +%s.%N)
15949         $dd_cmd bs=1M count=$blocks oflag=sync ||
15950                 error "real dd $read_write error"
15951         local duration=$(bc <<< "$(date +%s.%N) - $start_time")
15952
15953         if [ "$read_write" = "write" ]; then
15954                 rm -f $DIR/$tfile
15955         fi
15956
15957         # define OBD_FAIL_OST_FAKE_RW           0x238
15958         do_facet ost1 $LCTL set_param fail_loc=0x238
15959
15960         local start_time=$(date +%s.%N)
15961         $dd_cmd bs=1M count=$blocks oflag=sync ||
15962                 error "fake dd $read_write error"
15963         local duration_fake=$(bc <<< "$(date +%s.%N) - $start_time")
15964
15965         if [ "$read_write" = "write" ]; then
15966                 # verify file size
15967                 cancel_lru_locks osc
15968                 $CHECKSTAT -t file -s $((blocks * 1024 * 1024)) $DIR/$tfile ||
15969                         error "$tfile size not $blocks MB"
15970         fi
15971         do_facet ost1 $LCTL set_param fail_loc=0
15972
15973         echo "fake $read_write $duration_fake vs. normal $read_write" \
15974                 "$duration in seconds"
15975         [ $(bc <<< "$duration_fake < $duration") -eq 1 ] ||
15976                 error_not_in_vm "fake write is slower"
15977
15978         $LCTL set_param -n debug="$saved_debug"
15979         rm -f $DIR/$tfile
15980 }
15981 test_399a() { # LU-7655 for OST fake write
15982         remote_ost_nodsh && skip "remote OST with nodsh" && return
15983
15984         test_fake_rw write
15985 }
15986 run_test 399a "fake write should not be slower than normal write"
15987
15988 test_399b() { # LU-8726 for OST fake read
15989         remote_ost_nodsh && skip "remote OST with nodsh" && return
15990
15991         if [ "$(facet_fstype ost1)" != "ldiskfs" ]; then
15992                 skip "ldiskfs only test" && return 0
15993         fi
15994         test_fake_rw read
15995 }
15996 run_test 399b "fake read should not be slower than normal read"
15997
15998 test_400a() { # LU-1606, was conf-sanity test_74
15999         local extra_flags=''
16000         local out=$TMP/$tfile
16001         local prefix=/usr/include/lustre
16002         local prog
16003
16004         if ! which $CC > /dev/null 2>&1; then
16005                 skip_env "$CC is not installed"
16006                 return 0
16007         fi
16008
16009         if ! [[ -d $prefix ]]; then
16010                 # Assume we're running in tree and fixup the include path.
16011                 extra_flags+=" -I$LUSTRE/include"
16012                 extra_flags+=" -L$LUSTRE/utils"
16013         fi
16014
16015         for prog in $LUSTRE_TESTS_API_DIR/*.c; do
16016                 $CC -Wall -Werror $extra_flags -llustreapi -o $out $prog ||
16017                         error "client api broken"
16018         done
16019         rm -f $out
16020 }
16021 run_test 400a "Lustre client api program can compile and link"
16022
16023 test_400b() { # LU-1606, LU-5011
16024         local header
16025         local out=$TMP/$tfile
16026         local prefix=/usr/include/linux/lustre
16027
16028         # We use a hard coded prefix so that this test will not fail
16029         # when run in tree. There are headers in lustre/include/lustre/
16030         # that are not packaged (like lustre_idl.h) and have more
16031         # complicated include dependencies (like config.h and lnet/types.h).
16032         # Since this test about correct packaging we just skip them when
16033         # they don't exist (see below) rather than try to fixup cppflags.
16034
16035         if ! which $CC > /dev/null 2>&1; then
16036                 skip_env "$CC is not installed"
16037                 return 0
16038         fi
16039
16040         for header in $prefix/*.h; do
16041                 if ! [[ -f "$header" ]]; then
16042                         continue
16043                 fi
16044
16045                 if [[ "$(basename $header)" == lustre_ioctl.h ]]; then
16046                         continue # lustre_ioctl.h is internal header
16047                 fi
16048
16049                 $CC -Wall -Werror -include $header -c -x c /dev/null -o $out ||
16050                         error "cannot compile '$header'"
16051         done
16052         rm -f $out
16053 }
16054 run_test 400b "packaged headers can be compiled"
16055
16056 test_401a() { #LU-7437
16057         local printf_arg=$(find -printf 2>&1 | grep "unrecognized:")
16058         [ -n "$printf_arg" ] && skip_env "find does not support -printf" &&
16059                 return
16060         #count the number of parameters by "list_param -R"
16061         local params=$($LCTL list_param -R '*' 2>/dev/null | wc -l)
16062         #count the number of parameters by listing proc files
16063         local proc_dirs=$(eval \ls -d $proc_regexp 2>/dev/null)
16064         echo "proc_dirs='$proc_dirs'"
16065         [ -n "$proc_dirs" ] || error "no proc_dirs on $HOSTNAME"
16066         local procs=$(find -L $proc_dirs -mindepth 1 -printf '%P\n' 2>/dev/null|
16067                       sort -u | wc -l)
16068
16069         [ $params -eq $procs ] ||
16070                 error "found $params parameters vs. $procs proc files"
16071
16072         # test the list_param -D option only returns directories
16073         params=$($LCTL list_param -R -D '*' 2>/dev/null | wc -l)
16074         #count the number of parameters by listing proc directories
16075         procs=$(find -L $proc_dirs -mindepth 1 -type d -printf '%P\n' 2>/dev/null |
16076                 sort -u | wc -l)
16077
16078         [ $params -eq $procs ] ||
16079                 error "found $params parameters vs. $procs proc files"
16080 }
16081 run_test 401a "Verify if 'lctl list_param -R' can list parameters recursively"
16082
16083 test_401b() {
16084         local save=$($LCTL get_param -n jobid_var)
16085         local tmp=testing
16086
16087         $LCTL set_param foo=bar jobid_var=$tmp bar=baz &&
16088                 error "no error returned when setting bad parameters"
16089
16090         local jobid_new=$($LCTL get_param -n foe jobid_var baz)
16091         [[ "$jobid_new" == "$tmp" ]] || error "jobid tmp $jobid_new != $tmp"
16092
16093         $LCTL set_param -n fog=bam jobid_var=$save bat=fog
16094         local jobid_old=$($LCTL get_param -n foe jobid_var bag)
16095         [[ "$jobid_old" == "$save" ]] || error "jobid new $jobid_old != $save"
16096 }
16097 run_test 401b "Verify 'lctl {get,set}_param' continue after error"
16098
16099 test_401c() {
16100         local jobid_var_old=$($LCTL get_param -n jobid_var)
16101         local jobid_var_new
16102
16103         $LCTL set_param jobid_var= &&
16104                 error "no error returned for 'set_param a='"
16105
16106         jobid_var_new=$($LCTL get_param -n jobid_var)
16107         [[ "$jobid_var_old" == "$jobid_var_new" ]] ||
16108                 error "jobid_var was changed by setting without value"
16109
16110         $LCTL set_param jobid_var &&
16111                 error "no error returned for 'set_param a'"
16112
16113         jobid_var_new=$($LCTL get_param -n jobid_var)
16114         [[ "$jobid_var_old" == "$jobid_var_new" ]] ||
16115                 error "jobid_var was changed by setting without value"
16116 }
16117 run_test 401c "Verify 'lctl set_param' without value fails in either format."
16118
16119 test_401d() {
16120         local jobid_var_old=$($LCTL get_param -n jobid_var)
16121         local jobid_var_new
16122         local new_value="foo=bar"
16123
16124         $LCTL set_param jobid_var=$new_value ||
16125                 error "'set_param a=b' did not accept a value containing '='"
16126
16127         jobid_var_new=$($LCTL get_param -n jobid_var)
16128         [[ "$jobid_var_new" == "$new_value" ]] ||
16129                 error "'set_param a=b' failed on a value containing '='"
16130
16131         # Reset the jobid_var to test the other format
16132         $LCTL set_param jobid_var=$jobid_var_old
16133         jobid_var_new=$($LCTL get_param -n jobid_var)
16134         [[ "$jobid_var_new" == "$jobid_var_old" ]] ||
16135                 error "failed to reset jobid_var"
16136
16137         $LCTL set_param jobid_var $new_value ||
16138                 error "'set_param a b' did not accept a value containing '='"
16139
16140         jobid_var_new=$($LCTL get_param -n jobid_var)
16141         [[ "$jobid_var_new" == "$new_value" ]] ||
16142                 error "'set_param a b' failed on a value containing '='"
16143
16144         $LCTL set_param jobid_var $jobid_var_old
16145         jobid_var_new=$($LCTL get_param -n jobid_var)
16146         [[ "$jobid_var_new" == "$jobid_var_old" ]] ||
16147                 error "failed to reset jobid_var"
16148 }
16149 run_test 401d "Verify 'lctl set_param' accepts values containing '='"
16150
16151 test_402() {
16152         local server_version=$(lustre_version_code $SINGLEMDS)
16153         [[ $server_version -ge $(version_code 2.7.66) ]] ||
16154         [[ $server_version -ge $(version_code 2.7.18.4) &&
16155                 $server_version -lt $(version_code 2.7.50) ]] ||
16156         [[ $server_version -ge $(version_code 2.7.2) &&
16157                 $server_version -lt $(version_code 2.7.11) ]] ||
16158                 { skip "Need MDS version 2.7.2+ or 2.7.18.4+ or 2.7.66+";
16159                         return; }
16160         remote_mds_nodsh && skip "remote MDS with nodsh" && return
16161         $LFS setdirstripe -i 0 $DIR/$tdir || error "setdirstripe -i 0 failed"
16162 #define OBD_FAIL_MDS_FLD_LOOKUP 0x15c
16163         do_facet mds1 "lctl set_param fail_loc=0x8000015c"
16164         touch $DIR/$tdir/$tfile && error "touch should fail with ENOENT" ||
16165                 echo "Touch failed - OK"
16166 }
16167 run_test 402 "Return ENOENT to lod_generate_and_set_lovea"
16168
16169 test_403() {
16170         local file1=$DIR/$tfile.1
16171         local file2=$DIR/$tfile.2
16172         local tfile=$TMP/$tfile
16173
16174         rm -f $file1 $file2 $tfile
16175
16176         touch $file1
16177         ln $file1 $file2
16178
16179         # 30 sec OBD_TIMEOUT in ll_getattr()
16180         # right before populating st_nlink
16181         $LCTL set_param fail_loc=0x80001409
16182         stat -c %h $file1 > $tfile &
16183
16184         # create an alias, drop all locks and reclaim the dentry
16185         < $file2
16186         cancel_lru_locks mdc
16187         cancel_lru_locks osc
16188         sysctl -w vm.drop_caches=2
16189
16190         wait
16191
16192         [ `cat $tfile` -gt 0 ] || error "wrong nlink count: `cat $tfile`"
16193
16194         rm -f $tfile $file1 $file2
16195 }
16196 run_test 403 "i_nlink should not drop to zero due to aliasing"
16197
16198 test_404() { # LU-6601
16199         local server_version=$(lustre_version_code $SINGLEMDS)
16200         [[ $server_version -ge $(version_code 2.8.53) ]] ||
16201                 { skip "Need server version newer than 2.8.52"; return 0; }
16202
16203         remote_mds_nodsh && skip "remote MDS with nodsh" && return
16204         local mosps=$(do_facet $SINGLEMDS $LCTL dl |
16205                 awk '/osp .*-osc-MDT/ { print $4}')
16206
16207         local osp
16208         for osp in $mosps; do
16209                 echo "Deactivate: " $osp
16210                 do_facet $SINGLEMDS $LCTL --device %$osp deactivate
16211                 local stat=$(do_facet $SINGLEMDS $LCTL dl |
16212                         awk -vp=$osp '$4 == p { print $2 }')
16213                 [ $stat = IN ] || {
16214                         do_facet $SINGLEMDS $LCTL dl | grep -w $osp
16215                         error "deactivate error"
16216                 }
16217                 echo "Activate: " $osp
16218                 do_facet $SINGLEMDS $LCTL --device %$osp activate
16219                 local stat=$(do_facet $SINGLEMDS $LCTL dl |
16220                         awk -vp=$osp '$4 == p { print $2 }')
16221                 [ $stat = UP ] || {
16222                         do_facet $SINGLEMDS $LCTL dl | grep -w $osp
16223                         error "activate error"
16224                 }
16225         done
16226 }
16227 run_test 404 "validate manual {de}activated works properly for OSPs"
16228
16229 test_405() {
16230         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.6.92) -o \
16231         [ $(lustre_version_code client) -lt $(version_code 2.6.99) ] &&
16232                 skip "Layout swap lock is not supported" && return
16233
16234         check_swap_layouts_support && return 0
16235
16236         test_mkdir $DIR/$tdir
16237         swap_lock_test -d $DIR/$tdir ||
16238                 error "One layout swap locked test failed"
16239 }
16240 run_test 405 "Various layout swap lock tests"
16241
16242 test_406() {
16243         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
16244         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
16245         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
16246         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
16247         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.50) ] &&
16248                 skip "Need MDS version at least 2.8.50" && return
16249
16250         local def_stripe_count=$($GETSTRIPE -c $MOUNT)
16251         local def_stripe_size=$($GETSTRIPE -S $MOUNT)
16252         local def_stripe_offset=$($GETSTRIPE -i $MOUNT)
16253         local def_pool=$($GETSTRIPE -p $MOUNT)
16254
16255         local test_pool=$TESTNAME
16256         pool_add $test_pool || error "pool_add failed"
16257         pool_add_targets $test_pool 0 $(($OSTCOUNT - 1)) 1 ||
16258                 error "pool_add_targets failed"
16259
16260         # parent set default stripe count only, child will stripe from both
16261         # parent and fs default
16262         $SETSTRIPE -c 1 -i 1 -S $((def_stripe_size * 2)) -p $test_pool $MOUNT ||
16263                 error "setstripe $MOUNT failed"
16264         $LFS mkdir -c $MDSCOUNT $DIR/$tdir || error "mkdir $tdir failed"
16265         $SETSTRIPE -c $OSTCOUNT $DIR/$tdir || error "setstripe $tdir failed"
16266         for i in $(seq 10); do
16267                 local f=$DIR/$tdir/$tfile.$i
16268                 touch $f || error "touch failed"
16269                 local count=$($GETSTRIPE -c $f)
16270                 [ $count -eq $OSTCOUNT ] ||
16271                         error "$f stripe count $count != $OSTCOUNT"
16272                 local offset=$($GETSTRIPE -i $f)
16273                 [ $offset -eq 1 ] || error "$f stripe offset $offset != 1"
16274                 local size=$($GETSTRIPE -S $f)
16275                 [ $size -eq $((def_stripe_size * 2)) ] ||
16276                         error "$f stripe size $size != $((def_stripe_size * 2))"
16277                 local pool=$($GETSTRIPE -p $f)
16278                 [ $pool == $test_pool ] || error "$f pool $pool != $test_pool"
16279         done
16280
16281         # change fs default striping, delete parent default striping, now child
16282         # will stripe from new fs default striping only
16283         $SETSTRIPE -c 1 -S $def_stripe_size -i 0 $MOUNT ||
16284                 error "change $MOUNT default stripe failed"
16285         $SETSTRIPE -c 0 $DIR/$tdir || error "delete $tdir default stripe failed"
16286         for i in $(seq 11 20); do
16287                 local f=$DIR/$tdir/$tfile.$i
16288                 touch $f || error "touch $f failed"
16289                 local count=$($GETSTRIPE -c $f)
16290                 [ $count -eq 1 ] || error "$f stripe count $count != 1"
16291                 local offset=$($GETSTRIPE -i $f)
16292                 [ $offset -eq 0 ] || error "$f stripe offset $offset != 0"
16293                 local size=$($GETSTRIPE -S $f)
16294                 [ $size -eq $def_stripe_size ] ||
16295                         error "$f stripe size $size != $def_stripe_size"
16296                 local pool=$($GETSTRIPE -p $f)
16297                 [ "#$pool" == "#" ] || error "$f pool $pool is set"
16298
16299         done
16300
16301         unlinkmany $DIR/$tdir/$tfile. 1 20
16302
16303         # restore FS default striping
16304         if [ -z $def_pool ]; then
16305                 $SETSTRIPE -c $def_stripe_count -S $def_stripe_size \
16306                         -i $def_stripe_offset $MOUNT ||
16307                         error "restore default striping failed"
16308         else
16309                 $SETSTRIPE -c $def_stripe_count -S $def_stripe_size \
16310                         -i $def_stripe_offset -p $def_pool $MOUNT ||
16311                         error "restore default striping with $def_pool failed"
16312         fi
16313
16314         local f=$DIR/$tdir/$tfile
16315         pool_remove_all_targets $test_pool $f
16316         pool_remove $test_pool $f
16317 }
16318 run_test 406 "DNE support fs default striping"
16319
16320 test_407() {
16321         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
16322         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.55) ]] &&
16323                 skip "Need MDS version at least 2.8.55" && return
16324         remote_mds_nodsh && skip "remote MDS with nodsh" && return
16325
16326         $LFS mkdir -i 0 -c 1 $DIR/$tdir.0 ||
16327                 error "$LFS mkdir -i 0 -c 1 $tdir.0 failed"
16328         $LFS mkdir -i 1 -c 1 $DIR/$tdir.1 ||
16329                 error "$LFS mkdir -i 1 -c 1 $tdir.1 failed"
16330         touch $DIR/$tdir.0/$tfile.0 || error "touch $tdir.0/$tfile.0 failed"
16331
16332         #define OBD_FAIL_DT_TXN_STOP    0x2019
16333         for idx in $(seq $MDSCOUNT); do
16334                 do_facet mds$idx "lctl set_param fail_loc=0x2019"
16335         done
16336         $LFS mkdir -c 2 $DIR/$tdir && error "$LFS mkdir -c 2 $tdir should fail"
16337         mv $DIR/$tdir.0/$tfile.0 $DIR/$tdir.1/$tfile.1 &&
16338                 error "mv $tdir.0/$tfile.0 $tdir.1/$tfile.1 should fail"
16339         true
16340 }
16341 run_test 407 "transaction fail should cause operation fail"
16342
16343 test_408() {
16344         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 oflag=direct
16345
16346         #define OBD_FAIL_OSC_BRW_PREP_REQ2        0x40a
16347         lctl set_param fail_loc=0x8000040a
16348         # let ll_prepare_partial_page() fail
16349         dd if=/dev/zero of=$DIR/$tfile bs=2048 count=1 conv=notrunc || true
16350
16351         rm -f $DIR/$tfile
16352
16353         # create at least 100 unused inodes so that
16354         # shrink_icache_memory(0) should not return 0
16355         touch $DIR/$tfile-{0..100}
16356         rm -f $DIR/$tfile-{0..100}
16357         sync
16358
16359         echo 2 > /proc/sys/vm/drop_caches
16360 }
16361 run_test 408 "drop_caches should not hang due to page leaks"
16362
16363 test_409()
16364 {
16365         [ $MDSCOUNT -lt 2 ] &&
16366                 skip "We need at least 2 MDTs for this test" && return
16367
16368         check_mount_and_prep
16369
16370         mkdir -p $DIR/$tdir || error "(0) Fail to mkdir"
16371         $LFS mkdir -i 1 -c 2 $DIR/$tdir/foo || error "(1) Fail to mkdir"
16372         touch $DIR/$tdir/guard || error "(2) Fail to create"
16373
16374         local PREFIX=$(str_repeat 'A' 128)
16375         echo "Create 1K hard links start at $(date)"
16376         createmany -l $DIR/$tdir/guard $DIR/$tdir/foo/${PREFIX}_ 1000 ||
16377                 error "(3) Fail to hard link"
16378
16379         echo "Links count should be right although linkEA overflow"
16380         stat $DIR/$tdir/guard || error "(4) Fail to stat"
16381         local linkcount=$(stat --format=%h $DIR/$tdir/guard)
16382         [ $linkcount -eq 1001 ] ||
16383                 error "(5) Unexpected hard links count: $linkcount"
16384
16385         echo "List all links start at $(date)"
16386         ls -l $DIR/$tdir/foo > /dev/null ||
16387                 error "(6) Fail to list $DIR/$tdir/foo"
16388
16389         echo "Unlink hard links start at $(date)"
16390         unlinkmany $DIR/$tdir/foo/${PREFIX}_ 1000 ||
16391                 error "(7) Fail to unlink"
16392 }
16393 run_test 409 "Large amount of cross-MDTs hard links on the same file"
16394
16395 test_410()
16396 {
16397         [[ $(lustre_version_code client) -lt $(version_code 2.9.59) ]] &&
16398                 skip "Need client version at least 2.9.59" && return
16399
16400         # Create a file, and stat it from the kernel
16401         local testfile=$DIR/$tfile
16402         touch $testfile
16403
16404         local run_id=$RANDOM
16405         local my_ino=$(stat --format "%i" $testfile)
16406
16407         # Try to insert the module. This will always fail as the
16408         # module is designed to not be inserted.
16409         insmod $LUSTRE/tests/kernel/kinode.ko run_id=$run_id fname=$testfile \
16410             &> /dev/null
16411
16412         # Anything but success is a test failure
16413         dmesg | grep -q \
16414             "lustre_kinode_$run_id: inode numbers are identical: $my_ino" ||
16415             error "no inode match"
16416 }
16417 run_test 410 "Test inode number returned from kernel thread"
16418
16419 cleanup_test411_cgroup() {
16420         trap 0
16421         rmdir "$1"
16422 }
16423
16424 test_411() {
16425         local cg_basedir=/sys/fs/cgroup/memory
16426         # LU-9966
16427         test -f "$cg_basedir/memory.kmem.limit_in_bytes" ||
16428                 { skip "no setup for cgroup"; return; }
16429
16430         dd if=/dev/zero of=$DIR/$tfile bs=1M count=100 conv=fsync ||
16431                 error "test file creation failed"
16432         cancel_lru_locks osc
16433
16434         # Create a very small memory cgroup to force a slab allocation error
16435         local cgdir=$cg_basedir/osc_slab_alloc
16436         mkdir $cgdir || error "cgroup mkdir '$cgdir' failed"
16437         trap "cleanup_test411_cgroup $cgdir" EXIT
16438         echo 2M > $cgdir/memory.kmem.limit_in_bytes
16439         echo 1M > $cgdir/memory.limit_in_bytes
16440
16441         # Should not LBUG, just be killed by oom-killer
16442         sh -c "echo \$$ > $cgdir/tasks && dd if=$DIR/$tfile of=/dev/null" &&
16443                 error "fail to trigger a memory allocation error"
16444
16445         cleanup_test411_cgroup $cgdir
16446
16447         return 0
16448 }
16449 run_test 411 "Slab allocation error with cgroup does not LBUG"
16450
16451 prep_801() {
16452         [[ $(lustre_version_code mds1) -lt $(version_code 2.9.55) ]] ||
16453         [[ $(lustre_version_code ost1) -lt $(version_code 2.9.55) ]] &&
16454                 skip "Need server version at least 2.9.55" & exit 0
16455         start_full_debug_logging
16456 }
16457
16458 post_801() {
16459         stop_full_debug_logging
16460 }
16461
16462 barrier_stat() {
16463         if [ $(lustre_version_code mgs) -le $(version_code 2.10.0) ]; then
16464                 local st=$(do_facet mgs $LCTL barrier_stat $FSNAME |
16465                            awk '/The barrier for/ { print $7 }')
16466                 echo $st
16467         else
16468                 local st=$(do_facet mgs $LCTL barrier_stat -s $FSNAME)
16469                 echo \'$st\'
16470         fi
16471 }
16472
16473 barrier_expired() {
16474         local expired
16475
16476         if [ $(lustre_version_code mgs) -le $(version_code 2.10.0) ]; then
16477                 expired=$(do_facet mgs $LCTL barrier_stat $FSNAME |
16478                           awk '/will be expired/ { print $7 }')
16479         else
16480                 expired=$(do_facet mgs $LCTL barrier_stat -t $FSNAME)
16481         fi
16482
16483         echo $expired
16484 }
16485
16486 test_801a() {
16487         prep_801
16488
16489         echo "Start barrier_freeze at: $(date)"
16490         #define OBD_FAIL_BARRIER_DELAY          0x2202
16491         do_facet mgs $LCTL set_param fail_val=5 fail_loc=0x2202
16492         do_facet mgs $LCTL barrier_freeze $FSNAME 10 &
16493
16494         sleep 2
16495         local b_status=$(barrier_stat)
16496         echo "Got barrier status at: $(date)"
16497         [ "$b_status" = "'freezing_p1'" ] ||
16498                 error "(1) unexpected barrier status $b_status"
16499
16500         do_facet mgs $LCTL set_param fail_val=0 fail_loc=0
16501         wait
16502         b_status=$(barrier_stat)
16503         [ "$b_status" = "'frozen'" ] ||
16504                 error "(2) unexpected barrier status $b_status"
16505
16506         local expired=$(barrier_expired)
16507         echo "sleep $((expired + 3)) seconds, then the barrier will be expired"
16508         sleep $((expired + 3))
16509
16510         b_status=$(barrier_stat)
16511         [ "$b_status" = "'expired'" ] ||
16512                 error "(3) unexpected barrier status $b_status"
16513
16514         do_facet mgs $LCTL barrier_freeze $FSNAME 10 ||
16515                 error "(4) fail to freeze barrier"
16516
16517         b_status=$(barrier_stat)
16518         [ "$b_status" = "'frozen'" ] ||
16519                 error "(5) unexpected barrier status $b_status"
16520
16521         echo "Start barrier_thaw at: $(date)"
16522         #define OBD_FAIL_BARRIER_DELAY          0x2202
16523         do_facet mgs $LCTL set_param fail_val=5 fail_loc=0x2202
16524         do_facet mgs $LCTL barrier_thaw $FSNAME &
16525
16526         sleep 2
16527         b_status=$(barrier_stat)
16528         echo "Got barrier status at: $(date)"
16529         [ "$b_status" = "'thawing'" ] ||
16530                 error "(6) unexpected barrier status $b_status"
16531
16532         do_facet mgs $LCTL set_param fail_val=0 fail_loc=0
16533         wait
16534         b_status=$(barrier_stat)
16535         [ "$b_status" = "'thawed'" ] ||
16536                 error "(7) unexpected barrier status $b_status"
16537
16538         #define OBD_FAIL_BARRIER_FAILURE        0x2203
16539         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x2203
16540         do_facet mgs $LCTL barrier_freeze $FSNAME
16541
16542         b_status=$(barrier_stat)
16543         [ "$b_status" = "'failed'" ] ||
16544                 error "(8) unexpected barrier status $b_status"
16545
16546         do_facet $SINGLEMDS $LCTL set_param fail_loc=0
16547         do_facet mgs $LCTL barrier_thaw $FSNAME
16548
16549         post_801
16550 }
16551 run_test 801a "write barrier user interfaces and stat machine"
16552
16553 test_801b() {
16554         prep_801
16555
16556         mkdir $DIR/$tdir || error "(1) fail to mkdir"
16557         createmany -d $DIR/$tdir/d 6 || "(2) fail to mkdir"
16558         touch $DIR/$tdir/d2/f10 || error "(3) fail to touch"
16559         touch $DIR/$tdir/d3/f11 || error "(4) fail to touch"
16560         touch $DIR/$tdir/d4/f12 || error "(5) fail to touch"
16561
16562         cancel_lru_locks mdc
16563
16564         # 180 seconds should be long enough
16565         do_facet mgs $LCTL barrier_freeze $FSNAME 180
16566
16567         local b_status=$(barrier_stat)
16568         [ "$b_status" = "'frozen'" ] ||
16569                 error "(6) unexpected barrier status $b_status"
16570
16571         mkdir $DIR/$tdir/d0/d10 &
16572         mkdir_pid=$!
16573
16574         touch $DIR/$tdir/d1/f13 &
16575         touch_pid=$!
16576
16577         ln $DIR/$tdir/d2/f10 $DIR/$tdir/d2/f14 &
16578         ln_pid=$!
16579
16580         mv $DIR/$tdir/d3/f11 $DIR/$tdir/d3/f15 &
16581         mv_pid=$!
16582
16583         rm -f $DIR/$tdir/d4/f12 &
16584         rm_pid=$!
16585
16586         stat $DIR/$tdir/d5 || error "(7) stat should succeed"
16587
16588         # To guarantee taht the 'stat' is not blocked
16589         b_status=$(barrier_stat)
16590         [ "$b_status" = "'frozen'" ] ||
16591                 error "(8) unexpected barrier status $b_status"
16592
16593         # let above commands to run at background
16594         sleep 5
16595
16596         ps -p $mkdir_pid || error "(9) mkdir should be blocked"
16597         ps -p $touch_pid || error "(10) touch should be blocked"
16598         ps -p $ln_pid || error "(11) link should be blocked"
16599         ps -p $mv_pid || error "(12) rename should be blocked"
16600         ps -p $rm_pid || error "(13) unlink should be blocked"
16601
16602         b_status=$(barrier_stat)
16603         [ "$b_status" = "'frozen'" ] ||
16604                 error "(14) unexpected barrier status $b_status"
16605
16606         do_facet mgs $LCTL barrier_thaw $FSNAME
16607         b_status=$(barrier_stat)
16608         [ "$b_status" = "'thawed'" ] ||
16609                 error "(15) unexpected barrier status $b_status"
16610
16611         wait $mkdir_pid || error "(16) mkdir should succeed"
16612         wait $touch_pid || error "(17) touch should succeed"
16613         wait $ln_pid || error "(18) link should succeed"
16614         wait $mv_pid || error "(19) rename should succeed"
16615         wait $rm_pid || error "(20) unlink should succeed"
16616
16617         post_801
16618 }
16619 run_test 801b "modification will be blocked by write barrier"
16620
16621 test_801c() {
16622         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 2 MDTs" && return
16623
16624         prep_801
16625
16626         stop mds2 || error "(1) Fail to stop mds2"
16627
16628         do_facet mgs $LCTL barrier_freeze $FSNAME 30
16629
16630         local b_status=$(barrier_stat)
16631         [ "$b_status" = "'expired'" -o "$b_status" = "'failed'" ] || {
16632                 do_facet mgs $LCTL barrier_thaw $FSNAME
16633                 error "(2) unexpected barrier status $b_status"
16634         }
16635
16636         do_facet mgs $LCTL barrier_rescan $FSNAME ||
16637                 error "(3) Fail to rescan barrier bitmap"
16638
16639         do_facet mgs $LCTL barrier_freeze $FSNAME 10
16640
16641         b_status=$(barrier_stat)
16642         [ "$b_status" = "'frozen'" ] ||
16643                 error "(4) unexpected barrier status $b_status"
16644
16645         do_facet mgs $LCTL barrier_thaw $FSNAME
16646         b_status=$(barrier_stat)
16647         [ "$b_status" = "'thawed'" ] ||
16648                 error "(5) unexpected barrier status $b_status"
16649
16650         local devname=$(mdsdevname 2)
16651
16652         start mds2 $devname $MDS_MOUNT_OPTS || error "(6) Fail to start mds2"
16653
16654         do_facet mgs $LCTL barrier_rescan $FSNAME ||
16655                 error "(7) Fail to rescan barrier bitmap"
16656
16657         post_801
16658 }
16659 run_test 801c "rescan barrier bitmap"
16660
16661 saved_MGS_MOUNT_OPTS=$MGS_MOUNT_OPTS
16662 saved_MDS_MOUNT_OPTS=$MDS_MOUNT_OPTS
16663 saved_OST_MOUNT_OPTS=$OST_MOUNT_OPTS
16664
16665 cleanup_802() {
16666         trap 0
16667
16668         stopall
16669         MGS_MOUNT_OPTS=$saved_MGS_MOUNT_OPTS
16670         MDS_MOUNT_OPTS=$saved_MDS_MOUNT_OPTS
16671         OST_MOUNT_OPTS=$saved_OST_MOUNT_OPTS
16672         setupall
16673 }
16674
16675 test_802() {
16676
16677         [[ $(lustre_version_code mds1) -lt $(version_code 2.9.55) ]] ||
16678         [[ $(lustre_version_code ost1) -lt $(version_code 2.9.55) ]] &&
16679                 skip "Need server version at least 2.9.55" & exit 0
16680
16681         mkdir $DIR/$tdir || error "(1) fail to mkdir"
16682
16683         cp $LUSTRE/tests/test-framework.sh $DIR/$tdir/ ||
16684                 error "(2) Fail to copy"
16685
16686         trap cleanup_802 EXIT
16687
16688         # sync by force before remount as readonly
16689         sync; sync_all_data; sleep 3; sync_all_data
16690
16691         stopall
16692
16693         MGS_MOUNT_OPTS=$(csa_add "$MGS_MOUNT_OPTS" -o rdonly_dev)
16694         MDS_MOUNT_OPTS=$(csa_add "$MDS_MOUNT_OPTS" -o rdonly_dev)
16695         OST_MOUNT_OPTS=$(csa_add "$OST_MOUNT_OPTS" -o rdonly_dev)
16696
16697         echo "Mount the server as read only"
16698         setupall server_only || error "(3) Fail to start servers"
16699
16700         echo "Mount client without ro should fail"
16701         mount_client $MOUNT &&
16702                 error "(4) Mount client without 'ro' should fail"
16703
16704         echo "Mount client with ro should succeed"
16705         mount_client $MOUNT ro ||
16706                 error "(5) Mount client with 'ro' should succeed"
16707
16708         echo "Modify should be refused"
16709         touch $DIR/$tdir/guard && error "(6) Touch should fail under ro mode"
16710
16711         echo "Read should be allowed"
16712         diff $LUSTRE/tests/test-framework.sh $DIR/$tdir/test-framework.sh ||
16713                 error "(7) Read should succeed under ro mode"
16714
16715         cleanup_802
16716 }
16717 run_test 802 "simulate readonly device"
16718
16719 #
16720 # tests that do cleanup/setup should be run at the end
16721 #
16722
16723 test_900() {
16724         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
16725         local ls
16726         #define OBD_FAIL_MGC_PAUSE_PROCESS_LOG   0x903
16727         $LCTL set_param fail_loc=0x903
16728
16729         cancel_lru_locks MGC
16730
16731         FAIL_ON_ERROR=true cleanup
16732         FAIL_ON_ERROR=true setup
16733 }
16734 run_test 900 "umount should not race with any mgc requeue thread"
16735
16736 complete $SECONDS
16737 [ -f $EXT2_DEV ] && rm $EXT2_DEV || true
16738 check_and_cleanup_lustre
16739 if [ "$I_MOUNTED" != "yes" ]; then
16740         lctl set_param debug="$OLDDEBUG" 2> /dev/null || true
16741 fi
16742 exit_status