Whamcloud - gitweb
LU-7251 osp: do not assign commit callback to every thandle
[fs/lustre-release.git] / lustre / tests / sanity.sh
1 #!/bin/bash
2 # -*- tab-width: 8; indent-tabs-mode: t; -*-
3 #
4 # Run select tests by setting ONLY, or as arguments to the script.
5 # Skip specific tests by setting EXCEPT.
6 #
7 # e.g. ONLY="22 23" or ONLY="`seq 32 39`" or EXCEPT="31"
8 set -e
9
10 ONLY=${ONLY:-"$*"}
11 # bug number for skipped test: LU-9693 LU-6493 LU-9693 3561 5188
12 ALWAYS_EXCEPT="                42a    42b      42c     45   68b $SANITY_EXCEPT"
13 # UPDATE THE COMMENT ABOVE WITH BUG NUMBERS WHEN CHANGING ALWAYS_EXCEPT!
14
15 # skipped tests: LU-8411 LU-9096 LU-9054
16 ALWAYS_EXCEPT="  407     253     312 $ALWAYS_EXCEPT"
17
18 # Check Grants after these tests
19 GRANT_CHECK_LIST="$GRANT_CHECK_LIST 42a 42b 42c 42d 42e 63a 63b 64a 64b 64c"
20
21 is_sles11()                                             # LU-4341
22 {
23         if [ -r /etc/SuSE-release ]
24         then
25                 local vers=$(grep VERSION /etc/SuSE-release | awk '{print $3}')
26                 local patchlev=$(grep PATCHLEVEL /etc/SuSE-release |
27                         awk '{ print $3 }')
28                 if [ $vers -eq 11 ] && [ $patchlev -ge 3 ]; then
29                         return 0
30                 fi
31         fi
32         return 1
33 }
34
35 if is_sles11; then                                      # LU-4341
36         ALWAYS_EXCEPT="$ALWAYS_EXCEPT 170"
37 fi
38
39 SRCDIR=$(cd $(dirname $0); echo $PWD)
40 export PATH=$PATH:/sbin
41
42 TMP=${TMP:-/tmp}
43
44 CC=${CC:-cc}
45 CHECKSTAT=${CHECKSTAT:-"checkstat -v"}
46 CREATETEST=${CREATETEST:-createtest}
47 LFS=${LFS:-lfs}
48 LFIND=${LFIND:-"$LFS find"}
49 LVERIFY=${LVERIFY:-ll_dirstripe_verify}
50 LCTL=${LCTL:-lctl}
51 OPENFILE=${OPENFILE:-openfile}
52 OPENUNLINK=${OPENUNLINK:-openunlink}
53 export MULTIOP=${MULTIOP:-multiop}
54 READS=${READS:-"reads"}
55 MUNLINK=${MUNLINK:-munlink}
56 SOCKETSERVER=${SOCKETSERVER:-socketserver}
57 SOCKETCLIENT=${SOCKETCLIENT:-socketclient}
58 MEMHOG=${MEMHOG:-memhog}
59 DIRECTIO=${DIRECTIO:-directio}
60 ACCEPTOR_PORT=${ACCEPTOR_PORT:-988}
61 STRIPES_PER_OBJ=-1
62 CHECK_GRANT=${CHECK_GRANT:-"yes"}
63 GRANT_CHECK_LIST=${GRANT_CHECK_LIST:-""}
64 export PARALLEL=${PARALLEL:-"no"}
65
66 export NAME=${NAME:-local}
67
68 SAVE_PWD=$PWD
69
70 CLEANUP=${CLEANUP:-:}
71 SETUP=${SETUP:-:}
72 TRACE=${TRACE:-""}
73 LUSTRE=${LUSTRE:-$(cd $(dirname $0)/..; echo $PWD)}
74 LUSTRE_TESTS_API_DIR=${LUSTRE_TESTS_API_DIR:-${LUSTRE}/tests/clientapi}
75 . $LUSTRE/tests/test-framework.sh
76 init_test_env $@
77 . ${CONFIG:=$LUSTRE/tests/cfg/${NAME}.sh}
78 init_logging
79
80 #                                  5          12          (min)"
81 [ "$SLOW" = "no" ] && EXCEPT_SLOW="27m 64b 68 71 115 300o"
82
83 if [ $(facet_fstype $SINGLEMDS) = "zfs" ]; then
84         # bug number for skipped test: LU-1957
85         ALWAYS_EXCEPT="$ALWAYS_EXCEPT  180"
86         #                                               13    (min)"
87         [ "$SLOW" = "no" ] && EXCEPT_SLOW="$EXCEPT_SLOW 51b"
88 fi
89
90 FAIL_ON_ERROR=false
91
92 cleanup() {
93         echo -n "cln.."
94         pgrep ll_sa > /dev/null && { echo "There are ll_sa thread not exit!"; exit 20; }
95         cleanupall ${FORCE} $* || { echo "FAILed to clean up"; exit 20; }
96 }
97 setup() {
98         echo -n "mnt.."
99         load_modules
100         setupall || exit 10
101         echo "done"
102 }
103
104 check_swap_layouts_support()
105 {
106         $LCTL get_param -n llite.*.sbi_flags | grep -q layout ||
107                 { skip "Does not support layout lock."; return 0; }
108         return 1
109 }
110
111 check_and_setup_lustre
112 DIR=${DIR:-$MOUNT}
113 assert_DIR
114
115 MDT0=$($LCTL get_param -n mdc.*.mds_server_uuid |
116         awk '{ gsub(/_UUID/,""); print $1 }' | head -n1)
117 MAXFREE=${MAXFREE:-$((200000 * $OSTCOUNT))}
118
119 [ -f $DIR/d52a/foo ] && chattr -a $DIR/d52a/foo
120 [ -f $DIR/d52b/foo ] && chattr -i $DIR/d52b/foo
121 rm -rf $DIR/[Rdfs][0-9]*
122
123 # $RUNAS_ID may get set incorrectly somewhere else
124 [ $UID -eq 0 -a $RUNAS_ID -eq 0 ] && error "\$RUNAS_ID set to 0, but \$UID is also 0!"
125
126 check_runas_id $RUNAS_ID $RUNAS_GID $RUNAS
127
128 build_test_filter
129
130 if [ "${ONLY}" = "MOUNT" ] ; then
131         echo "Lustre is up, please go on"
132         exit
133 fi
134
135 echo "preparing for tests involving mounts"
136 EXT2_DEV=${EXT2_DEV:-$TMP/SANITY.LOOP}
137 touch $EXT2_DEV
138 mke2fs -j -F $EXT2_DEV 8000 > /dev/null
139 echo # add a newline after mke2fs.
140
141 umask 077
142
143 OLDDEBUG=$(lctl get_param -n debug 2> /dev/null)
144 lctl set_param debug=-1 2> /dev/null || true
145 test_0a() {
146         touch $DIR/$tfile
147         $CHECKSTAT -t file $DIR/$tfile || error "$tfile is not a file"
148         rm $DIR/$tfile
149         $CHECKSTAT -a $DIR/$tfile || error "$tfile was not removed"
150 }
151 run_test 0a "touch; rm ====================="
152
153 test_0b() {
154         chmod 0755 $DIR || error "chmod 0755 $DIR failed"
155         $CHECKSTAT -p 0755 $DIR || error "$DIR permission is not 0755"
156 }
157 run_test 0b "chmod 0755 $DIR ============================="
158
159 test_0c() {
160         $LCTL get_param mdc.*.import | grep "state: FULL" ||
161                 error "import not FULL"
162         $LCTL get_param mdc.*.import | grep "target: $FSNAME-MDT" ||
163                 error "bad target"
164 }
165 run_test 0c "check import proc"
166
167 test_1() {
168         test_mkdir $DIR/$tdir
169         test_mkdir $DIR/$tdir/d2
170         mkdir $DIR/$tdir/d2 && error "we expect EEXIST, but not returned"
171         $CHECKSTAT -t dir $DIR/$tdir/d2 || error "$tdir/d2 is not a dir"
172         rmdir $DIR/$tdir/d2
173         rmdir $DIR/$tdir
174         $CHECKSTAT -a $DIR/$tdir || error "$tdir was not removed"
175 }
176 run_test 1 "mkdir; remkdir; rmdir"
177
178 test_2() {
179         test_mkdir $DIR/$tdir
180         touch $DIR/$tdir/$tfile || error "touch $tdir/$tfile failed"
181         $CHECKSTAT -t file $DIR/$tdir/$tfile || error "$tdir/$tfile not a file"
182         rm -r $DIR/$tdir
183         $CHECKSTAT -a $DIR/$tdir/$tfile || error "$tdir/$file is not removed"
184 }
185 run_test 2 "mkdir; touch; rmdir; check file"
186
187 test_3() {
188         test_mkdir $DIR/$tdir
189         $CHECKSTAT -t dir $DIR/$tdir || error "$tdir is not a directory"
190         touch $DIR/$tdir/$tfile
191         $CHECKSTAT -t file $DIR/$tdir/$tfile || error "$tdir/$tfile not a file"
192         rm -r $DIR/$tdir
193         $CHECKSTAT -a $DIR/$tdir || error "$tdir is not removed"
194 }
195 run_test 3 "mkdir; touch; rmdir; check dir"
196
197 # LU-4471 - failed rmdir on remote directories still removes directory on MDT0
198 test_4() {
199         test_mkdir -i 1 $DIR/$tdir
200
201         touch $DIR/$tdir/$tfile ||
202                 error "Create file under remote directory failed"
203
204         rmdir $DIR/$tdir &&
205                 error "Expect error removing in-use dir $DIR/$tdir"
206
207         test -d $DIR/$tdir || error "Remote directory disappeared"
208
209         rm -rf $DIR/$tdir || error "remove remote dir error"
210 }
211 run_test 4 "mkdir; touch dir/file; rmdir; checkdir (expect error)"
212
213 test_5() {
214         test_mkdir $DIR/$tdir
215         test_mkdir $DIR/$tdir/d2
216         chmod 0707 $DIR/$tdir/d2 || error "chmod 0707 $tdir/d2 failed"
217         $CHECKSTAT -t dir -p 0707 $DIR/$tdir/d2 || error "$tdir/d2 not mode 707"
218         $CHECKSTAT -t dir $DIR/$tdir/d2 || error "$tdir/d2 is not a directory"
219 }
220 run_test 5 "mkdir .../d5 .../d5/d2; chmod .../d5/d2"
221
222 test_6a() {
223         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
224         chmod 0666 $DIR/$tfile || error "chmod 0666 $tfile failed"
225         $CHECKSTAT -t file -p 0666 -u \#$UID $DIR/$tfile ||
226                 error "$tfile does not have perm 0666 or UID $UID"
227         $RUNAS chmod 0444 $DIR/$tfile && error "chmod $tfile worked on UID $UID"
228         $CHECKSTAT -t file -p 0666 -u \#$UID $DIR/$tfile ||
229                 error "$tfile should be 0666 and owned by UID $UID"
230 }
231 run_test 6a "touch f6a; chmod f6a; $RUNAS chmod f6a (should return error) =="
232
233 test_6c() {
234         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID" && return
235         touch $DIR/$tfile
236         chown $RUNAS_ID $DIR/$tfile || error "chown $RUNAS_ID $file failed"
237         $CHECKSTAT -t file -u \#$RUNAS_ID $DIR/$tfile ||
238                 error "$tfile should be owned by UID $RUNAS_ID"
239         $RUNAS chown $UID $DIR/$tfile && error "chown $UID $file succeeded"
240         $CHECKSTAT -t file -u \#$RUNAS_ID $DIR/$tfile ||
241                 error "$tfile should be owned by UID $RUNAS_ID"
242 }
243 run_test 6c "touch f6c; chown f6c; $RUNAS chown f6c (should return error) =="
244
245 test_6e() {
246         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID" && return
247         touch $DIR/$tfile
248         chgrp $RUNAS_ID $DIR/$tfile || error "chgrp $RUNAS_ID $file failed"
249         $CHECKSTAT -t file -u \#$UID -g \#$RUNAS_ID $DIR/$tfile ||
250                 error "$tfile should be owned by GID $UID"
251         $RUNAS chgrp $UID $DIR/$tfile && error "chgrp $UID $file succeeded"
252         $CHECKSTAT -t file -u \#$UID -g \#$RUNAS_ID $DIR/$tfile ||
253                 error "$tfile should be owned by UID $UID and GID $RUNAS_ID"
254 }
255 run_test 6e "touch+chgrp $tfile; $RUNAS chgrp $tfile (should return error)"
256
257 test_6g() {
258         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID" && return
259         test_mkdir $DIR/$tdir
260         chmod 777 $DIR/$tdir || error "chmod 0777 $tdir failed"
261         $RUNAS mkdir $DIR/$tdir/d || error "mkdir $tdir/d failed"
262         chmod g+s $DIR/$tdir/d || error "chmod g+s $tdir/d failed"
263         test_mkdir $DIR/$tdir/d/subdir
264         $CHECKSTAT -g \#$RUNAS_GID $DIR/$tdir/d/subdir ||
265                 error "$tdir/d/subdir should be GID $RUNAS_GID"
266         if [[ $MDSCOUNT -gt 1 ]]; then
267                 # check remote dir sgid inherite
268                 $LFS mkdir -i 0 $DIR/$tdir.local ||
269                         error "mkdir $tdir.local failed"
270                 chmod g+s $DIR/$tdir.local ||
271                         error "chmod $tdir.local failed"
272                 chgrp $RUNAS_GID $DIR/$tdir.local ||
273                         error "chgrp $tdir.local failed"
274                 $LFS mkdir -i 1 $DIR/$tdir.local/$tdir.remote ||
275                         error "mkdir $tdir.remote failed"
276                 $CHECKSTAT -g \#$RUNAS_GID $DIR/$tdir.local/$tdir.remote ||
277                         error "$tdir.remote should be owned by $UID.$RUNAS_ID"
278                 $CHECKSTAT -p 02755 $DIR/$tdir.local/$tdir.remote ||
279                         error "$tdir.remote should be mode 02755"
280         fi
281 }
282 run_test 6g "verify new dir in sgid dir inherits group"
283
284 test_6h() { # bug 7331
285         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID" && return
286         touch $DIR/$tfile || error "touch failed"
287         chown $RUNAS_ID:$RUNAS_GID $DIR/$tfile || error "initial chown failed"
288         $RUNAS -G$RUNAS_GID chown $RUNAS_ID:0 $DIR/$tfile &&
289                 error "chown $RUNAS_ID:0 $tfile worked as GID $RUNAS_GID"
290         $CHECKSTAT -t file -u \#$RUNAS_ID -g \#$RUNAS_GID $DIR/$tfile ||
291                 error "$tdir/$tfile should be UID $RUNAS_UID GID $RUNAS_GID"
292 }
293 run_test 6h "$RUNAS chown RUNAS_ID.0 .../$tfile (should return error)"
294
295 test_7a() {
296         test_mkdir $DIR/$tdir
297         $MCREATE $DIR/$tdir/$tfile
298         chmod 0666 $DIR/$tdir/$tfile
299         $CHECKSTAT -t file -p 0666 $DIR/$tdir/$tfile ||
300                 error "$tdir/$tfile should be mode 0666"
301 }
302 run_test 7a "mkdir .../d7; mcreate .../d7/f; chmod .../d7/f ===="
303
304 test_7b() {
305         if [ ! -d $DIR/$tdir ]; then
306                 test_mkdir $DIR/$tdir
307         fi
308         $MCREATE $DIR/$tdir/$tfile
309         echo -n foo > $DIR/$tdir/$tfile
310         [ "$(cat $DIR/$tdir/$tfile)" = "foo" ] || error "$tdir/$tfile not 'foo'"
311         $CHECKSTAT -t file -s 3 $DIR/$tdir/$tfile || error "$tfile size not 3"
312 }
313 run_test 7b "mkdir .../d7; mcreate d7/f2; echo foo > d7/f2 ====="
314
315 test_8() {
316         test_mkdir $DIR/$tdir
317         touch $DIR/$tdir/$tfile
318         chmod 0666 $DIR/$tdir/$tfile
319         $CHECKSTAT -t file -p 0666 $DIR/$tdir/$tfile ||
320                 error "$tfile mode not 0666"
321 }
322 run_test 8 "mkdir .../d8; touch .../d8/f; chmod .../d8/f ======="
323
324 test_9() {
325         test_mkdir $DIR/$tdir
326         test_mkdir $DIR/$tdir/d2
327         test_mkdir $DIR/$tdir/d2/d3
328         $CHECKSTAT -t dir $DIR/$tdir/d2/d3 || error "$tdir/d2/d3 not a dir"
329 }
330 run_test 9 "mkdir .../d9 .../d9/d2 .../d9/d2/d3 ================"
331
332 test_10() {
333         test_mkdir $DIR/$tdir
334         test_mkdir $DIR/$tdir/d2
335         touch $DIR/$tdir/d2/$tfile
336         $CHECKSTAT -t file $DIR/$tdir/d2/$tfile ||
337                 error "$tdir/d2/$tfile not a file"
338 }
339 run_test 10 "mkdir .../d10 .../d10/d2; touch .../d10/d2/f ======"
340
341 test_11() {
342         test_mkdir $DIR/$tdir
343         test_mkdir $DIR/$tdir/d2
344         chmod 0666 $DIR/$tdir/d2
345         chmod 0705 $DIR/$tdir/d2
346         $CHECKSTAT -t dir -p 0705 $DIR/$tdir/d2 ||
347                 error "$tdir/d2 mode not 0705"
348 }
349 run_test 11 "mkdir .../d11 d11/d2; chmod .../d11/d2 ============"
350
351 test_12() {
352         test_mkdir $DIR/$tdir
353         touch $DIR/$tdir/$tfile
354         chmod 0666 $DIR/$tdir/$tfile
355         chmod 0654 $DIR/$tdir/$tfile
356         $CHECKSTAT -t file -p 0654 $DIR/$tdir/$tfile ||
357                 error "$tdir/d2 mode not 0654"
358 }
359 run_test 12 "touch .../d12/f; chmod .../d12/f .../d12/f ========"
360
361 test_13() {
362         test_mkdir $DIR/$tdir
363         dd if=/dev/zero of=$DIR/$tdir/$tfile count=10
364         >  $DIR/$tdir/$tfile
365         $CHECKSTAT -t file -s 0 $DIR/$tdir/$tfile ||
366                 error "$tdir/$tfile size not 0 after truncate"
367 }
368 run_test 13 "creat .../d13/f; dd .../d13/f; > .../d13/f ========"
369
370 test_14() {
371         test_mkdir $DIR/$tdir
372         touch $DIR/$tdir/$tfile
373         rm $DIR/$tdir/$tfile
374         $CHECKSTAT -a $DIR/$tdir/$tfile || error "$tdir/$tfile not removed"
375 }
376 run_test 14 "touch .../d14/f; rm .../d14/f; rm .../d14/f ======="
377
378 test_15() {
379         test_mkdir $DIR/$tdir
380         touch $DIR/$tdir/$tfile
381         mv $DIR/$tdir/$tfile $DIR/$tdir/${tfile}_2
382         $CHECKSTAT -t file $DIR/$tdir/${tfile}_2 ||
383                 error "$tdir/${tfile_2} not a file after rename"
384         rm $DIR/$tdir/${tfile}_2 || error "unlink failed after rename"
385 }
386 run_test 15 "touch .../d15/f; mv .../d15/f .../d15/f2 =========="
387
388 test_16() {
389         test_mkdir $DIR/$tdir
390         touch $DIR/$tdir/$tfile
391         rm -rf $DIR/$tdir/$tfile
392         $CHECKSTAT -a $DIR/$tdir/$tfile || error "$tdir/$tfile not removed"
393 }
394 run_test 16 "touch .../d16/f; rm -rf .../d16/f"
395
396 test_17a() {
397         test_mkdir $DIR/$tdir
398         touch $DIR/$tdir/$tfile
399         ln -s $DIR/$tdir/$tfile $DIR/$tdir/l-exist
400         ls -l $DIR/$tdir
401         $CHECKSTAT -l $DIR/$tdir/$tfile $DIR/$tdir/l-exist ||
402                 error "$tdir/l-exist not a symlink"
403         $CHECKSTAT -f -t f $DIR/$tdir/l-exist ||
404                 error "$tdir/l-exist not referencing a file"
405         rm -f $DIR/$tdir/l-exist
406         $CHECKSTAT -a $DIR/$tdir/l-exist || error "$tdir/l-exist not removed"
407 }
408 run_test 17a "symlinks: create, remove (real)"
409
410 test_17b() {
411         test_mkdir $DIR/$tdir
412         ln -s no-such-file $DIR/$tdir/l-dangle
413         ls -l $DIR/$tdir
414         $CHECKSTAT -l no-such-file $DIR/$tdir/l-dangle ||
415                 error "$tdir/l-dangle not referencing no-such-file"
416         $CHECKSTAT -fa $DIR/$tdir/l-dangle ||
417                 error "$tdir/l-dangle not referencing non-existent file"
418         rm -f $DIR/$tdir/l-dangle
419         $CHECKSTAT -a $DIR/$tdir/l-dangle || error "$tdir/l-dangle not removed"
420 }
421 run_test 17b "symlinks: create, remove (dangling)"
422
423 test_17c() { # bug 3440 - don't save failed open RPC for replay
424         test_mkdir $DIR/$tdir
425         ln -s foo $DIR/$tdir/$tfile
426         cat $DIR/$tdir/$tfile && error "opened non-existent symlink" || true
427 }
428 run_test 17c "symlinks: open dangling (should return error)"
429
430 test_17d() {
431         test_mkdir $DIR/$tdir
432         ln -s foo $DIR/$tdir/$tfile
433         touch $DIR/$tdir/$tfile || error "creating to new symlink"
434 }
435 run_test 17d "symlinks: create dangling"
436
437 test_17e() {
438         test_mkdir $DIR/$tdir
439         local foo=$DIR/$tdir/$tfile
440         ln -s $foo $foo || error "create symlink failed"
441         ls -l $foo || error "ls -l failed"
442         ls $foo && error "ls not failed" || true
443 }
444 run_test 17e "symlinks: create recursive symlink (should return error)"
445
446 test_17f() {
447         test_mkdir $DIR/$tdir
448         ln -s 1234567890/2234567890/3234567890/4234567890 $DIR/$tdir/111
449         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890 $DIR/$tdir/222
450         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890 $DIR/$tdir/333
451         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890/9234567890/a234567890/b234567890 $DIR/$tdir/444
452         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890/9234567890/a234567890/b234567890/c234567890/d234567890/f234567890 $DIR/$tdir/555
453         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890/9234567890/a234567890/b234567890/c234567890/d234567890/f234567890/aaaaaaaaaa/bbbbbbbbbb/cccccccccc/dddddddddd/eeeeeeeeee/ffffffffff/ $DIR/$tdir/666
454         ls -l  $DIR/$tdir
455 }
456 run_test 17f "symlinks: long and very long symlink name"
457
458 # str_repeat(S, N) generate a string that is string S repeated N times
459 str_repeat() {
460         local s=$1
461         local n=$2
462         local ret=''
463         while [ $((n -= 1)) -ge 0 ]; do
464                 ret=$ret$s
465         done
466         echo $ret
467 }
468
469 # Long symlinks and LU-2241
470 test_17g() {
471         test_mkdir $DIR/$tdir
472         local TESTS="59 60 61 4094 4095"
473
474         # Fix for inode size boundary in 2.1.4
475         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.1.4) ] &&
476                 TESTS="4094 4095"
477
478         # Patch not applied to 2.2 or 2.3 branches
479         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] &&
480         [ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.3.55) ] &&
481                 TESTS="4094 4095"
482
483         # skip long symlink name for rhel6.5.
484         # rhel6.5 has a limit (PATH_MAX - sizeof(struct filename))
485         grep -q '6.5' /etc/redhat-release &>/dev/null &&
486                 TESTS="59 60 61 4062 4063"
487
488         for i in $TESTS; do
489                 local SYMNAME=$(str_repeat 'x' $i)
490                 ln -s $SYMNAME $DIR/$tdir/f$i || error "failed $i-char symlink"
491                 readlink $DIR/$tdir/f$i || error "failed $i-char readlink"
492         done
493 }
494 run_test 17g "symlinks: really long symlink name and inode boundaries"
495
496 test_17h() { #bug 17378
497         remote_mds_nodsh && skip "remote MDS with nodsh" && return
498         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
499         local mdt_idx
500         test_mkdir $DIR/$tdir
501         if [[ $MDSCOUNT -gt 1 ]]; then
502                 mdt_idx=$($LFS getdirstripe -i $DIR/$tdir)
503         else
504                 mdt_idx=0
505         fi
506         $LFS setstripe -c -1 $DIR/$tdir
507         #define OBD_FAIL_MDS_LOV_PREP_CREATE 0x141
508         do_facet mds$((mdt_idx + 1)) lctl set_param fail_loc=0x80000141
509         touch $DIR/$tdir/$tfile || true
510 }
511 run_test 17h "create objects: lov_free_memmd() doesn't lbug"
512
513 test_17i() { #bug 20018
514         remote_mds_nodsh && skip "remote MDS with nodsh" && return
515         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
516         test_mkdir -c1 $DIR/$tdir
517         local foo=$DIR/$tdir/$tfile
518         local mdt_idx
519         if [[ $MDSCOUNT -gt 1 ]]; then
520                 mdt_idx=$($LFS getdirstripe -i $DIR/$tdir)
521         else
522                 mdt_idx=0
523         fi
524         ln -s $foo $foo || error "create symlink failed"
525 #define OBD_FAIL_MDS_READLINK_EPROTO     0x143
526         do_facet mds$((mdt_idx + 1)) lctl set_param fail_loc=0x80000143
527         ls -l $foo && error "error not detected"
528         return 0
529 }
530 run_test 17i "don't panic on short symlink"
531
532 test_17k() { #bug 22301
533         [[ -z "$(which rsync 2>/dev/null)" ]] &&
534                 skip "no rsync command" && return 0
535         rsync --help | grep -q xattr ||
536                 skip_env "$(rsync --version | head -n1) does not support xattrs"
537         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return 0
538         test_mkdir $DIR/$tdir
539         test_mkdir $DIR/$tdir.new
540         touch $DIR/$tdir/$tfile
541         ln -s $DIR/$tdir/$tfile $DIR/$tdir/$tfile.lnk
542         rsync -av -X $DIR/$tdir/ $DIR/$tdir.new ||
543                 error "rsync failed with xattrs enabled"
544 }
545 run_test 17k "symlinks: rsync with xattrs enabled"
546
547 test_17l() { # LU-279
548         [[ -z "$(which getfattr 2>/dev/null)" ]] &&
549                 skip "no getfattr command" && return 0
550         test_mkdir $DIR/$tdir
551         touch $DIR/$tdir/$tfile
552         ln -s $DIR/$tdir/$tfile $DIR/$tdir/$tfile.lnk
553         for path in "$DIR/$tdir" "$DIR/$tdir/$tfile" "$DIR/$tdir/$tfile.lnk"; do
554                 # -h to not follow symlinks. -m '' to list all the xattrs.
555                 # grep to remove first line: '# file: $path'.
556                 for xattr in `getfattr -hm '' $path 2>/dev/null | grep -v '^#'`;
557                 do
558                         lgetxattr_size_check $path $xattr ||
559                                 error "lgetxattr_size_check $path $xattr failed"
560                 done
561         done
562 }
563 run_test 17l "Ensure lgetxattr's returned xattr size is consistent"
564
565 # LU-1540
566 test_17m() {
567         local short_sym="0123456789"
568         local wdir=$DIR/$tdir
569         local i
570
571         remote_mds_nodsh && skip "remote MDS with nodsh" && return
572         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] &&
573         [ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.2.93) ] &&
574                 skip "MDS 2.2.0-2.2.93 do not NUL-terminate symlinks" && return
575
576         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
577                 skip "ldiskfs only test" && return 0
578
579         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
580
581         test_mkdir $wdir
582         long_sym=$short_sym
583         # create a long symlink file
584         for ((i = 0; i < 4; ++i)); do
585                 long_sym=${long_sym}${long_sym}
586         done
587
588         echo "create 512 short and long symlink files under $wdir"
589         for ((i = 0; i < 256; ++i)); do
590                 ln -sf ${long_sym}"a5a5" $wdir/long-$i
591                 ln -sf ${short_sym}"a5a5" $wdir/short-$i
592         done
593
594         echo "erase them"
595         rm -f $wdir/*
596         sync
597         wait_delete_completed
598
599         echo "recreate the 512 symlink files with a shorter string"
600         for ((i = 0; i < 512; ++i)); do
601                 # rewrite the symlink file with a shorter string
602                 ln -sf ${long_sym} $wdir/long-$i || error "long_sym failed"
603                 ln -sf ${short_sym} $wdir/short-$i || error "short_sym failed"
604         done
605
606         local mds_index=$(($($LFS getstripe -M $wdir) + 1))
607         local devname=$(mdsdevname $mds_index)
608
609         echo "stop and checking mds${mds_index}:"
610         # e2fsck should not return error
611         stop mds${mds_index}
612         run_e2fsck $(facet_active_host mds${mds_index}) $devname -n
613         rc=$?
614
615         start mds${mds_index} $devname $MDS_MOUNT_OPTS ||
616                 error "start mds${mds_index} failed"
617         df $MOUNT > /dev/null 2>&1
618         [ $rc -eq 0 ] ||
619                 error "e2fsck detected error for short/long symlink: rc=$rc"
620 }
621 run_test 17m "run e2fsck against MDT which contains short/long symlink"
622
623 check_fs_consistency_17n() {
624         local mdt_index
625         local rc=0
626
627         # create/unlink in 17n only change 2 MDTs(MDT1/MDT2),
628         # so it only check MDT1/MDT2 instead of all of MDTs.
629         for mdt_index in 1 2; do
630                 local devname=$(mdsdevname $mdt_index)
631                 # e2fsck should not return error
632                 stop mds${mdt_index}
633                 run_e2fsck $(facet_active_host mds$mdt_index) $devname -n ||
634                         rc=$((rc + $?))
635
636                 start mds${mdt_index} $devname $MDS_MOUNT_OPTS ||
637                         error "mount mds$mdt_index failed"
638                 df $MOUNT > /dev/null 2>&1
639         done
640         return $rc
641 }
642
643 test_17n() {
644         local i
645
646         remote_mds_nodsh && skip "remote MDS with nodsh" && return
647         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] &&
648         [ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.2.93) ] &&
649                 skip "MDS 2.2.0-2.2.93 do not NUL-terminate symlinks" && return
650
651         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
652                 skip "ldiskfs only test" && return 0
653
654         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 2 MDTs" && return
655
656         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
657
658         test_mkdir $DIR/$tdir
659         for ((i=0; i<10; i++)); do
660                 $LFS mkdir -i1 -c2 $DIR/$tdir/remote_dir_${i} ||
661                         error "create remote dir error $i"
662                 createmany -o $DIR/$tdir/remote_dir_${i}/f 10 ||
663                         error "create files under remote dir failed $i"
664         done
665
666         check_fs_consistency_17n ||
667                 error "e2fsck report error after create files under remote dir"
668
669         for ((i = 0; i < 10; i++)); do
670                 rm -rf $DIR/$tdir/remote_dir_${i} ||
671                         error "destroy remote dir error $i"
672         done
673
674         check_fs_consistency_17n ||
675                 error "e2fsck report error after unlink files under remote dir"
676
677         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.50) ] &&
678                 skip "lustre < 2.4.50 does not support migrate mv " && return
679
680         for ((i = 0; i < 10; i++)); do
681                 mkdir -p $DIR/$tdir/remote_dir_${i}
682                 createmany -o $DIR/$tdir/remote_dir_${i}/f 10 ||
683                         error "create files under remote dir failed $i"
684                 $LFS migrate --mdt-index 1 $DIR/$tdir/remote_dir_${i} ||
685                         error "migrate remote dir error $i"
686         done
687         check_fs_consistency_17n || error "e2fsck report error after migration"
688
689         for ((i = 0; i < 10; i++)); do
690                 rm -rf $DIR/$tdir/remote_dir_${i} ||
691                         error "destroy remote dir error $i"
692         done
693
694         check_fs_consistency_17n || error "e2fsck report error after unlink"
695 }
696 run_test 17n "run e2fsck against master/slave MDT which contains remote dir"
697
698 test_17o() {
699         remote_mds_nodsh && skip "remote MDS with nodsh" && return
700         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.64) ] &&
701                 skip "Need MDS version at least 2.3.64" && return
702
703         local wdir=$DIR/${tdir}o
704         local mdt_index
705         local rc=0
706
707         test_mkdir $wdir
708         touch $wdir/$tfile
709         mdt_index=$($LFS getstripe -M $wdir/$tfile)
710         mdt_index=$((mdt_index + 1))
711
712         cancel_lru_locks mdc
713         #fail mds will wait the failover finish then set
714         #following fail_loc to avoid interfer the recovery process.
715         fail mds${mdt_index}
716
717         #define OBD_FAIL_OSD_LMA_INCOMPAT 0x194
718         do_facet mds${mdt_index} lctl set_param fail_loc=0x194
719         ls -l $wdir/$tfile && rc=1
720         do_facet mds${mdt_index} lctl set_param fail_loc=0
721         [[ $rc -eq 0 ]] || error "stat file should fail"
722 }
723 run_test 17o "stat file with incompat LMA feature"
724
725 test_18() {
726         touch $DIR/$tfile || error "Failed to touch $DIR/$tfile: $?"
727         ls $DIR || error "Failed to ls $DIR: $?"
728 }
729 run_test 18 "touch .../f ; ls ... =============================="
730
731 test_19a() {
732         touch $DIR/$tfile
733         ls -l $DIR
734         rm $DIR/$tfile
735         $CHECKSTAT -a $DIR/$tfile || error "$tfile was not removed"
736 }
737 run_test 19a "touch .../f19 ; ls -l ... ; rm .../f19 ==========="
738
739 test_19b() {
740         ls -l $DIR/$tfile && error "ls -l $tfile failed"|| true
741 }
742 run_test 19b "ls -l .../f19 (should return error) =============="
743
744 test_19c() {
745         [ $RUNAS_ID -eq $UID ] &&
746                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
747         $RUNAS touch $DIR/$tfile && error "create non-root file failed" || true
748 }
749 run_test 19c "$RUNAS touch .../f19 (should return error) =="
750
751 test_19d() {
752         cat $DIR/f19 && error || true
753 }
754 run_test 19d "cat .../f19 (should return error) =============="
755
756 test_20() {
757         touch $DIR/$tfile
758         rm $DIR/$tfile
759         touch $DIR/$tfile
760         rm $DIR/$tfile
761         touch $DIR/$tfile
762         rm $DIR/$tfile
763         $CHECKSTAT -a $DIR/$tfile || error "$tfile was not removed"
764 }
765 run_test 20 "touch .../f ; ls -l ..."
766
767 test_21() {
768         test_mkdir $DIR/$tdir
769         [ -f $DIR/$tdir/dangle ] && rm -f $DIR/$tdir/dangle
770         ln -s dangle $DIR/$tdir/link
771         echo foo >> $DIR/$tdir/link
772         cat $DIR/$tdir/dangle
773         $CHECKSTAT -t link $DIR/$tdir/link || error "$tdir/link not a link"
774         $CHECKSTAT -f -t file $DIR/$tdir/link ||
775                 error "$tdir/link not linked to a file"
776 }
777 run_test 21 "write to dangling link"
778
779 test_22() {
780         local wdir=$DIR/$tdir
781         test_mkdir $wdir
782         chown $RUNAS_ID:$RUNAS_GID $wdir
783         (cd $wdir || error "cd $wdir failed";
784                 $RUNAS tar cf - /etc/hosts /etc/sysconfig/network |
785                 $RUNAS tar xf -)
786         ls -lR $wdir/etc || error "ls -lR $wdir/etc failed"
787         $CHECKSTAT -t dir $wdir/etc || error "checkstat -t dir failed"
788         $CHECKSTAT -u \#$RUNAS_ID -g \#$RUNAS_GID $wdir/etc ||
789                 error "checkstat -u failed"
790 }
791 run_test 22 "unpack tar archive as non-root user"
792
793 # was test_23
794 test_23a() {
795         test_mkdir $DIR/$tdir
796         local file=$DIR/$tdir/$tfile
797
798         openfile -f O_CREAT:O_EXCL $file || error "$file create failed"
799         openfile -f O_CREAT:O_EXCL $file &&
800                 error "$file recreate succeeded" || true
801 }
802 run_test 23a "O_CREAT|O_EXCL in subdir"
803
804 test_23b() { # bug 18988
805         test_mkdir $DIR/$tdir
806         local file=$DIR/$tdir/$tfile
807
808         rm -f $file
809         echo foo > $file || error "write filed"
810         echo bar >> $file || error "append filed"
811         $CHECKSTAT -s 8 $file || error "wrong size"
812         rm $file
813 }
814 run_test 23b "O_APPEND check"
815
816 # rename sanity
817 test_24a() {
818         echo '-- same directory rename'
819         test_mkdir $DIR/$tdir
820         touch $DIR/$tdir/$tfile.1
821         mv $DIR/$tdir/$tfile.1 $DIR/$tdir/$tfile.2
822         $CHECKSTAT -t file $DIR/$tdir/$tfile.2 || error "$tfile.2 not a file"
823 }
824 run_test 24a "rename file to non-existent target"
825
826 test_24b() {
827         test_mkdir $DIR/$tdir
828         touch $DIR/$tdir/$tfile.{1,2}
829         mv $DIR/$tdir/$tfile.1 $DIR/$tdir/$tfile.2
830         $CHECKSTAT -a $DIR/$tdir/$tfile.1 || error "$tfile.1 exists"
831         $CHECKSTAT -t file $DIR/$tdir/$tfile.2 || error "$tfile.2 not a file"
832 }
833 run_test 24b "rename file to existing target"
834
835 test_24c() {
836         test_mkdir $DIR/$tdir
837         test_mkdir $DIR/$tdir/d$testnum.1
838         mv $DIR/$tdir/d$testnum.1 $DIR/$tdir/d$testnum.2
839         $CHECKSTAT -a $DIR/$tdir/d$testnum.1 || error "d$testnum.1 exists"
840         $CHECKSTAT -t dir $DIR/$tdir/d$testnum.2 || error "d$testnum.2 not dir"
841 }
842 run_test 24c "rename directory to non-existent target"
843
844 test_24d() {
845         test_mkdir -c1 $DIR/$tdir
846         test_mkdir -c1 $DIR/$tdir/d$testnum.1
847         test_mkdir -c1 $DIR/$tdir/d$testnum.2
848         mrename $DIR/$tdir/d$testnum.1 $DIR/$tdir/d$testnum.2
849         $CHECKSTAT -a $DIR/$tdir/d$testnum.1 || error "d$testnum.1 exists"
850         $CHECKSTAT -t dir $DIR/$tdir/d$testnum.2 || error "d$testnum.2 not dir"
851 }
852 run_test 24d "rename directory to existing target"
853
854 test_24e() {
855         echo '-- cross directory renames --'
856         test_mkdir $DIR/R5a
857         test_mkdir $DIR/R5b
858         touch $DIR/R5a/f
859         mv $DIR/R5a/f $DIR/R5b/g
860         $CHECKSTAT -a $DIR/R5a/f || error
861         $CHECKSTAT -t file $DIR/R5b/g || error
862 }
863 run_test 24e "touch .../R5a/f; rename .../R5a/f .../R5b/g ======"
864
865 test_24f() {
866         test_mkdir $DIR/R6a
867         test_mkdir $DIR/R6b
868         touch $DIR/R6a/f $DIR/R6b/g
869         mv $DIR/R6a/f $DIR/R6b/g
870         $CHECKSTAT -a $DIR/R6a/f || error
871         $CHECKSTAT -t file $DIR/R6b/g || error
872 }
873 run_test 24f "touch .../R6a/f R6b/g; mv .../R6a/f .../R6b/g ===="
874
875 test_24g() {
876         test_mkdir $DIR/R7a
877         test_mkdir $DIR/R7b
878         test_mkdir $DIR/R7a/d
879         mv $DIR/R7a/d $DIR/R7b/e
880         $CHECKSTAT -a $DIR/R7a/d || error
881         $CHECKSTAT -t dir $DIR/R7b/e || error
882 }
883 run_test 24g "mkdir .../R7{a,b}/d; mv .../R7a/d .../R7b/e ======"
884
885 test_24h() {
886         test_mkdir -c1 $DIR/R8a
887         test_mkdir -c1 $DIR/R8b
888         test_mkdir -c1 $DIR/R8a/d
889         test_mkdir -c1 $DIR/R8b/e
890         mrename $DIR/R8a/d $DIR/R8b/e
891         $CHECKSTAT -a $DIR/R8a/d || error
892         $CHECKSTAT -t dir $DIR/R8b/e || error
893 }
894 run_test 24h "mkdir .../R8{a,b}/{d,e}; rename .../R8a/d .../R8b/e"
895
896 test_24i() {
897         echo "-- rename error cases"
898         test_mkdir $DIR/R9
899         test_mkdir $DIR/R9/a
900         touch $DIR/R9/f
901         mrename $DIR/R9/f $DIR/R9/a
902         $CHECKSTAT -t file $DIR/R9/f || error
903         $CHECKSTAT -t dir  $DIR/R9/a || error
904         $CHECKSTAT -a $DIR/R9/a/f || error
905 }
906 run_test 24i "rename file to dir error: touch f ; mkdir a ; rename f a"
907
908 test_24j() {
909         test_mkdir $DIR/R10
910         mrename $DIR/R10/f $DIR/R10/g
911         $CHECKSTAT -t dir $DIR/R10 || error
912         $CHECKSTAT -a $DIR/R10/f || error
913         $CHECKSTAT -a $DIR/R10/g || error
914 }
915 run_test 24j "source does not exist ============================"
916
917 test_24k() {
918         test_mkdir $DIR/R11a
919         test_mkdir $DIR/R11a/d
920         touch $DIR/R11a/f
921         mv $DIR/R11a/f $DIR/R11a/d
922         $CHECKSTAT -a $DIR/R11a/f || error
923         $CHECKSTAT -t file $DIR/R11a/d/f || error
924 }
925 run_test 24k "touch .../R11a/f; mv .../R11a/f .../R11a/d ======="
926
927 # bug 2429 - rename foo foo foo creates invalid file
928 test_24l() {
929         f="$DIR/f24l"
930         $MULTIOP $f OcNs || error
931 }
932 run_test 24l "Renaming a file to itself ========================"
933
934 test_24m() {
935         f="$DIR/f24m"
936         $MULTIOP $f OcLN ${f}2 ${f}2 || error "link ${f}2 ${f}2 failed"
937         # on ext3 this does not remove either the source or target files
938         # though the "expected" operation would be to remove the source
939         $CHECKSTAT -t file ${f} || error "${f} missing"
940         $CHECKSTAT -t file ${f}2 || error "${f}2 missing"
941 }
942 run_test 24m "Renaming a file to a hard link to itself ========="
943
944 test_24n() {
945     f="$DIR/f24n"
946     # this stats the old file after it was renamed, so it should fail
947     touch ${f}
948     $CHECKSTAT ${f}
949     mv ${f} ${f}.rename
950     $CHECKSTAT ${f}.rename
951     $CHECKSTAT -a ${f}
952 }
953 run_test 24n "Statting the old file after renaming (Posix rename 2)"
954
955 test_24o() {
956         test_mkdir $DIR/$tdir
957         rename_many -s random -v -n 10 $DIR/$tdir
958 }
959 run_test 24o "rename of files during htree split"
960
961 test_24p() {
962         test_mkdir $DIR/R12a
963         test_mkdir $DIR/R12b
964         DIRINO=`ls -lid $DIR/R12a | awk '{ print $1 }'`
965         mrename $DIR/R12a $DIR/R12b
966         $CHECKSTAT -a $DIR/R12a || error
967         $CHECKSTAT -t dir $DIR/R12b || error
968         DIRINO2=`ls -lid $DIR/R12b | awk '{ print $1 }'`
969         [ "$DIRINO" = "$DIRINO2" ] || error "R12a $DIRINO != R12b $DIRINO2"
970 }
971 run_test 24p "mkdir .../R12{a,b}; rename .../R12a .../R12b"
972
973 cleanup_multiop_pause() {
974         trap 0
975         kill -USR1 $MULTIPID
976 }
977
978 test_24q() {
979         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
980         test_mkdir $DIR/R13a
981         test_mkdir $DIR/R13b
982         local DIRINO=$(ls -lid $DIR/R13a | awk '{ print $1 }')
983         multiop_bg_pause $DIR/R13b D_c || error "multiop failed to start"
984         MULTIPID=$!
985
986         trap cleanup_multiop_pause EXIT
987         mrename $DIR/R13a $DIR/R13b
988         $CHECKSTAT -a $DIR/R13a || error "R13a still exists"
989         $CHECKSTAT -t dir $DIR/R13b || error "R13b does not exist"
990         local DIRINO2=$(ls -lid $DIR/R13b | awk '{ print $1 }')
991         [ "$DIRINO" = "$DIRINO2" ] || error "R13a $DIRINO != R13b $DIRINO2"
992         cleanup_multiop_pause
993         wait $MULTIPID || error "multiop close failed"
994 }
995 run_test 24q "mkdir .../R13{a,b}; open R13b rename R13a R13b ==="
996
997 test_24r() { #bug 3789
998         test_mkdir $DIR/R14a
999         test_mkdir $DIR/R14a/b
1000         mrename $DIR/R14a $DIR/R14a/b && error "rename to subdir worked!"
1001         $CHECKSTAT -t dir $DIR/R14a || error "$DIR/R14a missing"
1002         $CHECKSTAT -t dir $DIR/R14a/b || error "$DIR/R14a/b missing"
1003 }
1004 run_test 24r "mkdir .../R14a/b; rename .../R14a .../R14a/b ====="
1005
1006 test_24s() {
1007         test_mkdir $DIR/R15a
1008         test_mkdir $DIR/R15a/b
1009         test_mkdir $DIR/R15a/b/c
1010         mrename $DIR/R15a $DIR/R15a/b/c && error "rename to sub-subdir worked!"
1011         $CHECKSTAT -t dir $DIR/R15a || error "$DIR/R15a missing"
1012         $CHECKSTAT -t dir $DIR/R15a/b/c || error "$DIR/R15a/b/c missing"
1013 }
1014 run_test 24s "mkdir .../R15a/b/c; rename .../R15a .../R15a/b/c ="
1015 test_24t() {
1016         test_mkdir $DIR/R16a
1017         test_mkdir $DIR/R16a/b
1018         test_mkdir $DIR/R16a/b/c
1019         mrename $DIR/R16a/b/c $DIR/R16a && error "rename to sub-subdir worked!"
1020         $CHECKSTAT -t dir $DIR/R16a || error "$DIR/R16a missing"
1021         $CHECKSTAT -t dir $DIR/R16a/b/c || error "$DIR/R16a/b/c missing"
1022 }
1023 run_test 24t "mkdir .../R16a/b/c; rename .../R16a/b/c .../R16a ="
1024
1025 test_24u() { # bug12192
1026         $MULTIOP $DIR/$tfile C2w$((2048 * 1024))c || error
1027         $CHECKSTAT -s $((2048 * 1024)) $DIR/$tfile || error "wrong file size"
1028 }
1029 run_test 24u "create stripe file"
1030
1031 page_size() {
1032         local size
1033         size=$(getconf PAGE_SIZE 2>/dev/null)
1034         echo -n ${size:-4096}
1035 }
1036
1037 simple_cleanup_common() {
1038         local rc=0
1039         trap 0
1040         [ -z "$DIR" -o -z "$tdir" ] && return 0
1041
1042         local start=$SECONDS
1043         rm -rf $DIR/$tdir
1044         rc=$?
1045         wait_delete_completed
1046         echo "cleanup time $((SECONDS - start))"
1047         return $rc
1048 }
1049
1050 max_pages_per_rpc() {
1051         local mdtname="$(printf "MDT%04x" ${1:-0})"
1052         $LCTL get_param -n mdc.*$mdtname*.max_pages_per_rpc
1053 }
1054
1055 test_24v() {
1056         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1057         local nrfiles=${COUNT:-100000}
1058         # Performance issue on ZFS see LU-4072 (c.f. LU-2887)
1059         [ $(facet_fstype $SINGLEMDS) = "zfs" ] && nrfiles=${COUNT:-10000}
1060
1061         local fname="$DIR/$tdir/$tfile"
1062         test_mkdir "$(dirname $fname)"
1063         # assume MDT0000 has the fewest inodes
1064         local stripes=$($LFS getdirstripe -c $(dirname $fname))
1065         local free_inodes=$(($(mdt_free_inodes 0) * stripes))
1066         [[ $free_inodes -lt $nrfiles ]] && nrfiles=$free_inodes
1067
1068         trap simple_cleanup_common EXIT
1069
1070         createmany -m "$fname" $nrfiles
1071
1072         cancel_lru_locks mdc
1073         lctl set_param mdc.*.stats clear
1074
1075         # was previously test_24D: LU-6101
1076         # readdir() returns correct number of entries after cursor reload
1077         local num_ls=$(ls $DIR/$tdir | wc -l)
1078         local num_uniq=$(ls $DIR/$tdir | sort -u | wc -l)
1079         local num_all=$(ls -a $DIR/$tdir | wc -l)
1080         if [ $num_ls -ne $nrfiles -o $num_uniq -ne $nrfiles -o \
1081              $num_all -ne $((nrfiles + 2)) ]; then
1082                 error "Expected $nrfiles files, got $num_ls " \
1083                         "($num_uniq unique $num_all .&..)"
1084         fi
1085         # LU-5 large readdir
1086         # dirent_size = 32 bytes for sizeof(struct lu_dirent) +
1087         #               N bytes for name (len($nrfiles) rounded to 8 bytes) +
1088         #               8 bytes for luda_type (4 bytes rounded to 8 bytes)
1089         # take into account of overhead in lu_dirpage header and end mark in
1090         # each page, plus one in rpc_num calculation.
1091         local dirent_size=$((32 + (${#tfile} | 7) + 1 + 8))
1092         local page_entries=$((($(page_size) - 24) / dirent_size))
1093         local mdt_idx=$($LFS getdirstripe -i $(dirname $fname))
1094         local rpc_pages=$(max_pages_per_rpc $mdt_idx)
1095         local rpc_max=$((nrfiles / (page_entries * rpc_pages) + stripes))
1096         local mds_readpage=$(calc_stats mdc.*.stats mds_readpage)
1097         echo "readpages: $mds_readpage rpc_max: $rpc_max"
1098         (( $mds_readpage < $rpc_max - 2 || $mds_readpage > $rpc_max + 1)) &&
1099                 error "large readdir doesn't take effect: " \
1100                       "$mds_readpage should be about $rpc_max"
1101
1102         simple_cleanup_common
1103 }
1104 run_test 24v "list large directory (test hash collision, b=17560)"
1105
1106 test_24w() { # bug21506
1107         SZ1=234852
1108         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=4096 || return 1
1109         dd if=/dev/zero bs=$SZ1 count=1 >> $DIR/$tfile || return 2
1110         dd if=$DIR/$tfile of=$DIR/${tfile}_left bs=1M skip=4097 || return 3
1111         SZ2=`ls -l $DIR/${tfile}_left | awk '{print $5}'`
1112         [[ "$SZ1" -eq "$SZ2" ]] ||
1113                 error "Error reading at the end of the file $tfile"
1114 }
1115 run_test 24w "Reading a file larger than 4Gb"
1116
1117 test_24x() {
1118         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 2 MDTs" && return
1119
1120         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.56) ]] &&
1121                 skip "Need MDS version at least 2.7.56" && return
1122
1123         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1124         local MDTIDX=1
1125         local remote_dir=$DIR/$tdir/remote_dir
1126
1127         test_mkdir $DIR/$tdir
1128         $LFS mkdir -i $MDTIDX $remote_dir ||
1129                 error "create remote directory failed"
1130
1131         test_mkdir $DIR/$tdir/src_dir
1132         touch $DIR/$tdir/src_file
1133         test_mkdir $remote_dir/tgt_dir
1134         touch $remote_dir/tgt_file
1135
1136         mrename $DIR/$tdir/src_dir $remote_dir/tgt_dir ||
1137                 error "rename dir cross MDT failed!"
1138
1139         mrename $DIR/$tdir/src_file $remote_dir/tgt_file ||
1140                 error "rename file cross MDT failed!"
1141
1142         touch $DIR/$tdir/ln_file
1143         ln $DIR/$tdir/ln_file $remote_dir/ln_name ||
1144                 error "ln file cross MDT failed"
1145
1146         rm -rf $DIR/$tdir || error "Can not delete directories"
1147 }
1148 run_test 24x "cross MDT rename/link"
1149
1150 test_24y() {
1151         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 2 MDTs" && return
1152         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1153         local remote_dir=$DIR/$tdir/remote_dir
1154         local mdtidx=1
1155
1156         test_mkdir $DIR/$tdir
1157         $LFS mkdir -i $mdtidx $remote_dir ||
1158                    error "create remote directory failed"
1159
1160         test_mkdir $remote_dir/src_dir
1161         touch $remote_dir/src_file
1162         test_mkdir $remote_dir/tgt_dir
1163         touch $remote_dir/tgt_file
1164
1165         mrename $remote_dir/src_dir $remote_dir/tgt_dir ||
1166                 error "rename subdir in the same remote dir failed!"
1167
1168         mrename $remote_dir/src_file $remote_dir/tgt_file ||
1169                 error "rename files in the same remote dir failed!"
1170
1171         ln $remote_dir/tgt_file $remote_dir/tgt_file1 ||
1172                 error "link files in the same remote dir failed!"
1173
1174         rm -rf $DIR/$tdir || error "Can not delete directories"
1175 }
1176 run_test 24y "rename/link on the same dir should succeed"
1177
1178 test_24A() { # LU-3182
1179         local NFILES=5000
1180
1181         rm -rf $DIR/$tdir
1182         test_mkdir $DIR/$tdir
1183         trap simple_cleanup_common EXIT
1184         createmany -m $DIR/$tdir/$tfile $NFILES
1185         local t=$(ls $DIR/$tdir | wc -l)
1186         local u=$(ls $DIR/$tdir | sort -u | wc -l)
1187         local v=$(ls -ai $DIR/$tdir | sort -u | wc -l)
1188         if [ $t -ne $NFILES -o $u -ne $NFILES -o $v -ne $((NFILES + 2)) ] ; then
1189                 error "Expected $NFILES files, got $t ($u unique $v .&..)"
1190         fi
1191
1192         simple_cleanup_common || error "Can not delete directories"
1193 }
1194 run_test 24A "readdir() returns correct number of entries."
1195
1196 test_24B() { # LU-4805
1197         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
1198         local count
1199
1200         test_mkdir $DIR/$tdir
1201         $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/striped_dir ||
1202                 error "create striped dir failed"
1203
1204         count=$(ls -ai $DIR/$tdir/striped_dir | wc -l)
1205         [ $count -eq 2 ] || error "Expected 2, got $count"
1206
1207         touch $DIR/$tdir/striped_dir/a
1208
1209         count=$(ls -ai $DIR/$tdir/striped_dir | wc -l)
1210         [ $count -eq 3 ] || error "Expected 3, got $count"
1211
1212         touch $DIR/$tdir/striped_dir/.f
1213
1214         count=$(ls -ai $DIR/$tdir/striped_dir | wc -l)
1215         [ $count -eq 4 ] || error "Expected 4, got $count"
1216
1217         rm -rf $DIR/$tdir || error "Can not delete directories"
1218 }
1219 run_test 24B "readdir for striped dir return correct number of entries"
1220
1221 test_24C() {
1222         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
1223
1224         mkdir $DIR/$tdir
1225         mkdir $DIR/$tdir/d0
1226         mkdir $DIR/$tdir/d1
1227
1228         $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/d0/striped_dir ||
1229                 error "create striped dir failed"
1230
1231         cd $DIR/$tdir/d0/striped_dir
1232
1233         local d0_ino=$(ls -i -l -a $DIR/$tdir | grep "d0" | awk '{print $1}')
1234         local d1_ino=$(ls -i -l -a $DIR/$tdir | grep "d1" | awk '{print $1}')
1235         local parent_ino=$(ls -i -l -a | grep "\.\." | awk '{print $1}')
1236
1237         [ "$d0_ino" = "$parent_ino" ] ||
1238                 error ".. wrong, expect $d0_ino, get $parent_ino"
1239
1240         mv $DIR/$tdir/d0/striped_dir $DIR/$tdir/d1/ ||
1241                 error "mv striped dir failed"
1242
1243         parent_ino=$(ls -i -l -a | grep "\.\." | awk '{print $1}')
1244
1245         [ "$d1_ino" = "$parent_ino" ] ||
1246                 error ".. wrong after mv, expect $d1_ino, get $parent_ino"
1247 }
1248 run_test 24C "check .. in striped dir"
1249
1250 test_24E() {
1251         [[ $MDSCOUNT -lt 4 ]] && skip "needs >= 4 MDTs" && return
1252         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1253
1254         mkdir -p $DIR/$tdir
1255         mkdir $DIR/$tdir/src_dir
1256         $LFS mkdir -i 1 $DIR/$tdir/src_dir/src_child ||
1257                 error "create remote source failed"
1258
1259         touch $DIR/$tdir/src_dir/src_child/a
1260
1261         $LFS mkdir -i 2 $DIR/$tdir/tgt_dir ||
1262                 error "create remote target dir failed"
1263
1264         $LFS mkdir -i 3 $DIR/$tdir/tgt_dir/tgt_child ||
1265                 error "create remote target child failed"
1266
1267         mrename $DIR/$tdir/src_dir/src_child $DIR/$tdir/tgt_dir/tgt_child ||
1268                 error "rename dir cross MDT failed!"
1269
1270         find $DIR/$tdir
1271
1272         $CHECKSTAT -t dir $DIR/$tdir/src_dir/src_child &&
1273                 error "src_child still exists after rename"
1274
1275         $CHECKSTAT -t file $DIR/$tdir/tgt_dir/tgt_child/a ||
1276                 error "missing file(a) after rename"
1277
1278         rm -rf $DIR/$tdir || error "Can not delete directories"
1279 }
1280 run_test 24E "cross MDT rename/link"
1281
1282 test_25a() {
1283         echo '== symlink sanity ============================================='
1284
1285         test_mkdir $DIR/d25
1286         ln -s d25 $DIR/s25
1287         touch $DIR/s25/foo || error
1288 }
1289 run_test 25a "create file in symlinked directory ==============="
1290
1291 test_25b() {
1292         [ ! -d $DIR/d25 ] && test_25a
1293         $CHECKSTAT -t file $DIR/s25/foo || error
1294 }
1295 run_test 25b "lookup file in symlinked directory ==============="
1296
1297 test_26a() {
1298         test_mkdir $DIR/d26
1299         test_mkdir $DIR/d26/d26-2
1300         ln -s d26/d26-2 $DIR/s26
1301         touch $DIR/s26/foo || error
1302 }
1303 run_test 26a "multiple component symlink ======================="
1304
1305 test_26b() {
1306         test_mkdir -p $DIR/$tdir/d26-2
1307         ln -s $tdir/d26-2/foo $DIR/s26-2
1308         touch $DIR/s26-2 || error
1309 }
1310 run_test 26b "multiple component symlink at end of lookup ======"
1311
1312 test_26c() {
1313         test_mkdir $DIR/d26.2
1314         touch $DIR/d26.2/foo
1315         ln -s d26.2 $DIR/s26.2-1
1316         ln -s s26.2-1 $DIR/s26.2-2
1317         ln -s s26.2-2 $DIR/s26.2-3
1318         chmod 0666 $DIR/s26.2-3/foo
1319 }
1320 run_test 26c "chain of symlinks"
1321
1322 # recursive symlinks (bug 439)
1323 test_26d() {
1324         ln -s d26-3/foo $DIR/d26-3
1325 }
1326 run_test 26d "create multiple component recursive symlink"
1327
1328 test_26e() {
1329         [ ! -h $DIR/d26-3 ] && test_26d
1330         rm $DIR/d26-3
1331 }
1332 run_test 26e "unlink multiple component recursive symlink"
1333
1334 # recursive symlinks (bug 7022)
1335 test_26f() {
1336         test_mkdir $DIR/$tdir
1337         test_mkdir $DIR/$tdir/$tfile
1338         cd $DIR/$tdir/$tfile           || error "cd $DIR/$tdir/$tfile failed"
1339         test_mkdir -p lndir/bar1
1340         test_mkdir $DIR/$tdir/$tfile/$tfile
1341         cd $tfile                || error "cd $tfile failed"
1342         ln -s .. dotdot          || error "ln dotdot failed"
1343         ln -s dotdot/lndir lndir || error "ln lndir failed"
1344         cd $DIR/$tdir                 || error "cd $DIR/$tdir failed"
1345         output=`ls $tfile/$tfile/lndir/bar1`
1346         [ "$output" = bar1 ] && error "unexpected output"
1347         rm -r $tfile             || error "rm $tfile failed"
1348         $CHECKSTAT -a $DIR/$tfile || error "$tfile not gone"
1349 }
1350 run_test 26f "rm -r of a directory which has recursive symlink"
1351
1352 test_27a() {
1353         test_mkdir $DIR/$tdir
1354         $LFS getstripe $DIR/$tdir
1355         $LFS setstripe -c 1 $DIR/$tdir/$tfile || error "setstripe failed"
1356         $CHECKSTAT -t file $DIR/$tdir/$tfile || error "checkstat failed"
1357         cp /etc/hosts $DIR/$tdir/$tfile || error
1358 }
1359 run_test 27a "one stripe file"
1360
1361 test_27b() {
1362         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
1363         test_mkdir $DIR/$tdir
1364         $LFS setstripe -c 2 $DIR/$tdir/$tfile || error "setstripe failed"
1365         $LFS getstripe -c $DIR/$tdir/$tfile
1366         [ $($LFS getstripe -c $DIR/$tdir/$tfile) -eq 2 ] ||
1367                 error "two-stripe file doesn't have two stripes"
1368
1369         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=4k count=4 || error "dd failed"
1370 }
1371 run_test 27b "create and write to two stripe file"
1372
1373 test_27d() {
1374         test_mkdir $DIR/$tdir
1375         $LFS setstripe -c 0 -i -1 -S 0 $DIR/$tdir/$tfile ||
1376                 error "setstripe failed"
1377         $CHECKSTAT -t file $DIR/$tdir/$tfile || error "checkstat failed"
1378         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=4k count=4 || error "dd failed"
1379 }
1380 run_test 27d "create file with default settings"
1381
1382 test_27e() {
1383         # LU-5839 adds check for existed layout before setting it
1384         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.56) ]] &&
1385                 skip "Need MDS version at least 2.7.56" && return
1386         test_mkdir $DIR/$tdir
1387         $LFS setstripe -c 2 $DIR/$tdir/$tfile || error "setstripe failed"
1388         $LFS setstripe -c 2 $DIR/$tdir/$tfile && error "setstripe worked twice"
1389         $CHECKSTAT -t file $DIR/$tdir/$tfile || error "checkstat failed"
1390 }
1391 run_test 27e "setstripe existing file (should return error)"
1392
1393 test_27f() {
1394         test_mkdir $DIR/$tdir
1395         $LFS setstripe -S 100 -i 0 -c 1 $DIR/$tdir/$tfile &&
1396                 error "$SETSTRIPE $DIR/$tdir/$tfile failed"
1397         $CHECKSTAT -t file $DIR/$tdir/$tfile &&
1398                 error "$CHECKSTAT -t file $DIR/$tdir/$tfile should fail"
1399         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=4k count=4 || error "dd failed"
1400         $LFS getstripe $DIR/$tdir/$tfile || error "$LFS getstripe failed"
1401 }
1402 run_test 27f "setstripe with bad stripe size (should return error)"
1403
1404 test_27g() {
1405         test_mkdir $DIR/$tdir
1406         $MCREATE $DIR/$tdir/$tfile || error "mcreate failed"
1407         $LFS getstripe $DIR/$tdir/$tfile 2>&1 | grep "no stripe info" ||
1408                 error "$DIR/$tdir/$tfile has object"
1409 }
1410 run_test 27g "$LFS getstripe with no objects"
1411
1412 test_27i() {
1413         test_mkdir $DIR/$tdir
1414         touch $DIR/$tdir/$tfile || error "touch failed"
1415         [[ $($LFS getstripe -c $DIR/$tdir/$tfile) -gt 0 ]] ||
1416                 error "missing objects"
1417 }
1418 run_test 27i "$LFS getstripe with some objects"
1419
1420 test_27j() {
1421         test_mkdir $DIR/$tdir
1422         $LFS setstripe -i $OSTCOUNT $DIR/$tdir/$tfile &&
1423                 error "setstripe failed" || true
1424 }
1425 run_test 27j "setstripe with bad stripe offset (should return error)"
1426
1427 test_27k() { # bug 2844
1428         test_mkdir $DIR/$tdir
1429         local file=$DIR/$tdir/$tfile
1430         local ll_max_blksize=$((4 * 1024 * 1024))
1431         $LFS setstripe -S 67108864 $file || error "setstripe failed"
1432         local blksize=$(stat $file | awk '/IO Block:/ { print $7 }')
1433         [ $blksize -le $ll_max_blksize ] || error "1:$blksize > $ll_max_blksize"
1434         dd if=/dev/zero of=$file bs=4k count=1
1435         blksize=$(stat $file | awk '/IO Block:/ { print $7 }')
1436         [ $blksize -le $ll_max_blksize ] || error "2:$blksize > $ll_max_blksize"
1437 }
1438 run_test 27k "limit i_blksize for broken user apps"
1439
1440 test_27l() {
1441         mcreate $DIR/$tfile || error "creating file"
1442         $RUNAS $LFS setstripe -c 1 $DIR/$tfile &&
1443                 error "setstripe should have failed" || true
1444 }
1445 run_test 27l "check setstripe permissions (should return error)"
1446
1447 test_27m() {
1448         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
1449
1450         ORIGFREE=$($LCTL get_param -n lov.$FSNAME-clilov-*.kbytesavail |
1451                    head -n1)
1452         if [[ $ORIGFREE -gt $MAXFREE ]]; then
1453                 skip "$ORIGFREE > $MAXFREE skipping out-of-space test on OST0"
1454                 return
1455         fi
1456         trap simple_cleanup_common EXIT
1457         test_mkdir $DIR/$tdir
1458         $LFS setstripe -i 0 -c 1 $DIR/$tdir/$tfile.1
1459         dd if=/dev/zero of=$DIR/$tdir/$tfile.1 bs=1024 count=$MAXFREE &&
1460                 error "dd should fill OST0"
1461         i=2
1462         while $LFS setstripe -i 0 -c 1 $DIR/$tdir/$tfile.$i; do
1463                 i=$((i + 1))
1464                 [ $i -gt 256 ] && break
1465         done
1466         i=$((i + 1))
1467         touch $DIR/$tdir/$tfile.$i
1468         [ $($LFS getstripe $DIR/$tdir/$tfile.$i | grep -A 10 obdidx |
1469             awk '{print $1}'| grep -w "0") ] &&
1470                 error "OST0 was full but new created file still use it"
1471         i=$((i + 1))
1472         touch $DIR/$tdir/$tfile.$i
1473         [ $($LFS getstripe $DIR/$tdir/$tfile.$i | grep -A 10 obdidx |
1474             awk '{print $1}'| grep -w "0") ] &&
1475                 error "OST0 was full but new created file still use it"
1476         simple_cleanup_common
1477 }
1478 run_test 27m "create file while OST0 was full"
1479
1480 sleep_maxage() {
1481         local delay=$(do_facet $SINGLEMDS lctl get_param -n lov.*.qos_maxage |
1482                       head -n 1 | awk '{ print $1 * 2 }')
1483         sleep $delay
1484 }
1485
1486 # OSCs keep a NOSPC flag that will be reset after ~5s (qos_maxage)
1487 # if the OST isn't full anymore.
1488 reset_enospc() {
1489         local OSTIDX=${1:-""}
1490
1491         local list=$(comma_list $(osts_nodes))
1492         [ "$OSTIDX" ] && list=$(facet_host ost$((OSTIDX + 1)))
1493
1494         do_nodes $list lctl set_param fail_loc=0
1495         sync    # initiate all OST_DESTROYs from MDS to OST
1496         sleep_maxage
1497 }
1498
1499 exhaust_precreations() {
1500         local OSTIDX=$1
1501         local FAILLOC=$2
1502         local FAILIDX=${3:-$OSTIDX}
1503         local ofacet=ost$((OSTIDX + 1))
1504
1505         test_mkdir -p -c1 $DIR/$tdir
1506         local mdtidx=$($LFS getstripe -M $DIR/$tdir)
1507         local mfacet=mds$((mdtidx + 1))
1508         echo OSTIDX=$OSTIDX MDTIDX=$mdtidx
1509
1510         local OST=$(ostname_from_index $OSTIDX)
1511
1512         # on the mdt's osc
1513         local mdtosc_proc1=$(get_mdtosc_proc_path $mfacet $OST)
1514         local last_id=$(do_facet $mfacet lctl get_param -n \
1515                         osc.$mdtosc_proc1.prealloc_last_id)
1516         local next_id=$(do_facet $mfacet lctl get_param -n \
1517                         osc.$mdtosc_proc1.prealloc_next_id)
1518
1519         local mdtosc_proc2=$(get_mdtosc_proc_path $mfacet)
1520         do_facet $mfacet lctl get_param osc.$mdtosc_proc2.prealloc*
1521
1522         test_mkdir -p $DIR/$tdir/${OST}
1523         $SETSTRIPE -i $OSTIDX -c 1 $DIR/$tdir/${OST}
1524 #define OBD_FAIL_OST_ENOSPC              0x215
1525         do_facet $ofacet lctl set_param fail_val=$FAILIDX fail_loc=0x215
1526         echo "Creating to objid $last_id on ost $OST..."
1527         createmany -o $DIR/$tdir/${OST}/f $next_id $((last_id - next_id + 2))
1528         do_facet $mfacet lctl get_param osc.$mdtosc_proc2.prealloc*
1529         do_facet $ofacet lctl set_param fail_loc=$FAILLOC
1530         sleep_maxage
1531 }
1532
1533 exhaust_all_precreations() {
1534         local i
1535         for (( i=0; i < OSTCOUNT; i++ )) ; do
1536                 exhaust_precreations $i $1 -1
1537         done
1538 }
1539
1540 test_27n() {
1541         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
1542         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1543         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1544         remote_ost_nodsh && skip "remote OST with nodsh" && return
1545
1546         reset_enospc
1547         rm -f $DIR/$tdir/$tfile
1548         exhaust_precreations 0 0x80000215
1549         $LFS setstripe -c -1 $DIR/$tdir
1550         touch $DIR/$tdir/$tfile || error
1551         $LFS getstripe $DIR/$tdir/$tfile
1552         reset_enospc
1553 }
1554 run_test 27n "create file with some full OSTs"
1555
1556 test_27o() {
1557         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
1558         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1559         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1560         remote_ost_nodsh && skip "remote OST with nodsh" && return
1561
1562         reset_enospc
1563         rm -f $DIR/$tdir/$tfile
1564         exhaust_all_precreations 0x215
1565
1566         touch $DIR/$tdir/$tfile && error "able to create $DIR/$tdir/$tfile"
1567
1568         reset_enospc
1569         rm -rf $DIR/$tdir/*
1570 }
1571 run_test 27o "create file with all full OSTs (should error)"
1572
1573 test_27p() {
1574         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
1575         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1576         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1577         remote_ost_nodsh && skip "remote OST with nodsh" && return
1578
1579         reset_enospc
1580         rm -f $DIR/$tdir/$tfile
1581         test_mkdir $DIR/$tdir
1582
1583         $MCREATE $DIR/$tdir/$tfile || error "mcreate failed"
1584         $TRUNCATE $DIR/$tdir/$tfile 80000000 || error "truncate failed"
1585         $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat failed"
1586
1587         exhaust_precreations 0 0x80000215
1588         echo foo >> $DIR/$tdir/$tfile || error "append failed"
1589         $CHECKSTAT -s 80000004 $DIR/$tdir/$tfile || error "checkstat failed"
1590         $LFS getstripe $DIR/$tdir/$tfile
1591
1592         reset_enospc
1593 }
1594 run_test 27p "append to a truncated file with some full OSTs"
1595
1596 test_27q() {
1597         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
1598         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1599         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1600         remote_ost_nodsh && skip "remote OST with nodsh" && return
1601
1602         reset_enospc
1603         rm -f $DIR/$tdir/$tfile
1604
1605         test_mkdir $DIR/$tdir
1606         $MCREATE $DIR/$tdir/$tfile || error "mcreate $DIR/$tdir/$tfile failed"
1607         $TRUNCATE $DIR/$tdir/$tfile 80000000 ||
1608                 error "truncate $DIR/$tdir/$tfile failed"
1609         $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat failed"
1610
1611         exhaust_all_precreations 0x215
1612
1613         echo foo >> $DIR/$tdir/$tfile && error "append succeeded"
1614         $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat 2 failed"
1615
1616         reset_enospc
1617 }
1618 run_test 27q "append to truncated file with all OSTs full (should error)"
1619
1620 test_27r() {
1621         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
1622         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1623         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1624         remote_ost_nodsh && skip "remote OST with nodsh" && return
1625
1626         reset_enospc
1627         rm -f $DIR/$tdir/$tfile
1628         exhaust_precreations 0 0x80000215
1629
1630         $LFS setstripe -i 0 -c 2 $DIR/$tdir/$tfile # && error
1631
1632         reset_enospc
1633 }
1634 run_test 27r "stripe file with some full OSTs (shouldn't LBUG) ="
1635
1636 test_27s() { # bug 10725
1637         test_mkdir $DIR/$tdir
1638         local stripe_size=$((4096 * 1024 * 1024))       # 2^32
1639         local stripe_count=0
1640         [ $OSTCOUNT -eq 1 ] || stripe_count=2
1641         $LFS setstripe -S $stripe_size -c $stripe_count $DIR/$tdir &&
1642                 error "stripe width >= 2^32 succeeded" || true
1643
1644 }
1645 run_test 27s "lsm_xfersize overflow (should error) (bug 10725)"
1646
1647 test_27t() { # bug 10864
1648         WDIR=$(pwd)
1649         WLFS=$(which lfs)
1650         cd $DIR
1651         touch $tfile
1652         $WLFS getstripe $tfile
1653         cd $WDIR
1654 }
1655 run_test 27t "check that utils parse path correctly"
1656
1657 test_27u() { # bug 4900
1658         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
1659         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1660         local index
1661         local list=$(comma_list $(mdts_nodes))
1662
1663 #define OBD_FAIL_MDS_OSC_PRECREATE      0x139
1664         do_nodes $list $LCTL set_param fail_loc=0x139
1665         test_mkdir -p $DIR/$tdir
1666         trap simple_cleanup_common EXIT
1667         createmany -o $DIR/$tdir/t- 1000
1668         do_nodes $list $LCTL set_param fail_loc=0
1669
1670         TLOG=$TMP/$tfile.getstripe
1671         $LFS getstripe $DIR/$tdir > $TLOG
1672         OBJS=$(awk -vobj=0 '($1 == 0) { obj += 1 } END { print obj; }' $TLOG)
1673         unlinkmany $DIR/$tdir/t- 1000
1674         trap 0
1675         [[ $OBJS -gt 0 ]] &&
1676                 error "$OBJS objects created on OST-0. See $TLOG" || pass
1677 }
1678 run_test 27u "skip object creation on OSC w/o objects"
1679
1680 test_27v() { # bug 4900
1681         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
1682         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1683         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1684         remote_ost_nodsh && skip "remote OST with nodsh" && return
1685
1686         exhaust_all_precreations 0x215
1687         reset_enospc
1688
1689         $LFS setstripe -c 1 $DIR/$tdir         # 1 stripe / file
1690
1691         touch $DIR/$tdir/$tfile
1692         #define OBD_FAIL_TGT_DELAY_PRECREATE     0x705
1693         # all except ost1
1694         for (( i=1; i < OSTCOUNT; i++ )); do
1695                 do_facet ost$i lctl set_param fail_loc=0x705
1696         done
1697         local START=`date +%s`
1698         createmany -o $DIR/$tdir/$tfile 32
1699
1700         local FINISH=`date +%s`
1701         local TIMEOUT=`lctl get_param -n timeout`
1702         local PROCESS=$((FINISH - START))
1703         [ $PROCESS -ge $((TIMEOUT / 2)) ] && \
1704                error "$FINISH - $START >= $TIMEOUT / 2"
1705         sleep $((TIMEOUT / 2 - PROCESS))
1706         reset_enospc
1707 }
1708 run_test 27v "skip object creation on slow OST"
1709
1710 test_27w() { # bug 10997
1711         test_mkdir $DIR/$tdir
1712         $LFS setstripe -S 65536 $DIR/$tdir/f0 || error "setstripe failed"
1713         [ $($LFS getstripe -S $DIR/$tdir/f0) -ne 65536 ] &&
1714                 error "stripe size $size != 65536" || true
1715         [ $($LFS getstripe -d $DIR/$tdir | grep -c "stripe_count") -eq 0 ] &&
1716                 error "$LFS getstripe -d $DIR/$tdir no 'stripe_count'" || true
1717 }
1718 run_test 27w "check $LFS setstripe -S and getstrip -d options"
1719
1720 test_27wa() {
1721         [[ $OSTCOUNT -lt 2 ]] &&
1722                 skip_env "skipping multiple stripe count/offset test" && return
1723
1724         test_mkdir $DIR/$tdir
1725         for i in $(seq 1 $OSTCOUNT); do
1726                 offset=$((i - 1))
1727                 $LFS setstripe -c $i -i $offset $DIR/$tdir/f$i ||
1728                         error "setstripe -c $i -i $offset failed"
1729                 count=$($LFS getstripe -c $DIR/$tdir/f$i)
1730                 index=$($LFS getstripe -i $DIR/$tdir/f$i)
1731                 [ $count -ne $i ] && error "stripe count $count != $i" || true
1732                 [ $index -ne $offset ] &&
1733                         error "stripe offset $index != $offset" || true
1734         done
1735 }
1736 run_test 27wa "check $LFS setstripe -c -i options"
1737
1738 test_27x() {
1739         remote_ost_nodsh && skip "remote OST with nodsh" && return
1740         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
1741         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1742         OFFSET=$(($OSTCOUNT - 1))
1743         OSTIDX=0
1744         local OST=$(ostname_from_index $OSTIDX)
1745
1746         test_mkdir $DIR/$tdir
1747         $LFS setstripe -c 1 $DIR/$tdir  # 1 stripe per file
1748         do_facet ost$((OSTIDX + 1)) lctl set_param -n obdfilter.$OST.degraded 1
1749         sleep_maxage
1750         createmany -o $DIR/$tdir/$tfile $OSTCOUNT
1751         for i in $(seq 0 $OFFSET); do
1752                 [ $($LFS getstripe $DIR/$tdir/$tfile$i | grep -A 10 obdidx |
1753                         awk '{print $1}' | grep -w "$OSTIDX") ] &&
1754                 error "OST0 was degraded but new created file still use it"
1755         done
1756         do_facet ost$((OSTIDX + 1)) lctl set_param -n obdfilter.$OST.degraded 0
1757 }
1758 run_test 27x "create files while OST0 is degraded"
1759
1760 test_27y() {
1761         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
1762         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1763         remote_ost_nodsh && skip "remote OST with nodsh" && return
1764         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1765
1766         local mdtosc=$(get_mdtosc_proc_path $SINGLEMDS $FSNAME-OST0000)
1767         local last_id=$(do_facet $SINGLEMDS lctl get_param -n \
1768                 osc.$mdtosc.prealloc_last_id)
1769         local next_id=$(do_facet $SINGLEMDS lctl get_param -n \
1770                 osc.$mdtosc.prealloc_next_id)
1771         local fcount=$((last_id - next_id))
1772         [[ $fcount -eq 0 ]] && skip "not enough space on OST0" && return
1773         [[ $fcount -gt $OSTCOUNT ]] && fcount=$OSTCOUNT
1774
1775         local MDS_OSCS=$(do_facet $SINGLEMDS lctl dl |
1776                          awk '/[oO][sS][cC].*md[ts]/ { print $4 }')
1777         local OST_DEACTIVE_IDX=-1
1778         local OSC
1779         local OSTIDX
1780         local OST
1781
1782         for OSC in $MDS_OSCS; do
1783                 OST=$(osc_to_ost $OSC)
1784                 OSTIDX=$(index_from_ostuuid $OST)
1785                 if [ $OST_DEACTIVE_IDX == -1 ]; then
1786                         OST_DEACTIVE_IDX=$OSTIDX
1787                 fi
1788                 if [ $OSTIDX != $OST_DEACTIVE_IDX ]; then
1789                         echo $OSC "is Deactivated:"
1790                         do_facet $SINGLEMDS lctl --device  %$OSC deactivate
1791                 fi
1792         done
1793
1794         OSTIDX=$(index_from_ostuuid $OST)
1795         test_mkdir $DIR/$tdir
1796         $LFS setstripe -c 1 $DIR/$tdir      # 1 stripe / file
1797
1798         for OSC in $MDS_OSCS; do
1799                 OST=$(osc_to_ost $OSC)
1800                 OSTIDX=$(index_from_ostuuid $OST)
1801                 if [ $OSTIDX == $OST_DEACTIVE_IDX ]; then
1802                         echo $OST "is degraded:"
1803                         do_facet ost$((OSTIDX+1)) lctl set_param -n \
1804                                                 obdfilter.$OST.degraded=1
1805                 fi
1806         done
1807
1808         sleep_maxage
1809         createmany -o $DIR/$tdir/$tfile $fcount
1810
1811         for OSC in $MDS_OSCS; do
1812                 OST=$(osc_to_ost $OSC)
1813                 OSTIDX=$(index_from_ostuuid $OST)
1814                 if [ $OSTIDX == $OST_DEACTIVE_IDX ]; then
1815                         echo $OST "is recovered from degraded:"
1816                         do_facet ost$((OSTIDX+1)) lctl set_param -n \
1817                                                 obdfilter.$OST.degraded=0
1818                 else
1819                         do_facet $SINGLEMDS lctl --device %$OSC activate
1820                 fi
1821         done
1822
1823         # all osp devices get activated, hence -1 stripe count restored
1824         local stripe_count=0
1825
1826         # sleep 2*lod_qos_maxage seconds waiting for lod qos to notice osp
1827         # devices get activated.
1828         sleep_maxage
1829         $LFS setstripe -c -1 $DIR/$tfile
1830         stripe_count=$($LFS getstripe -c $DIR/$tfile)
1831         rm -f $DIR/$tfile
1832         [ $stripe_count -ne $OSTCOUNT ] &&
1833                 error "Of $OSTCOUNT OSTs, only $stripe_count is available"
1834         return 0
1835 }
1836 run_test 27y "create files while OST0 is degraded and the rest inactive"
1837
1838 check_seq_oid()
1839 {
1840         log "check file $1"
1841
1842         lmm_count=$($GETSTRIPE -c $1)
1843         lmm_seq=$($GETSTRIPE -v $1 | awk '/lmm_seq/ { print $2 }')
1844         lmm_oid=$($GETSTRIPE -v $1 | awk '/lmm_object_id/ { print $2 }')
1845
1846         local old_ifs="$IFS"
1847         IFS=$'[:]'
1848         fid=($($LFS path2fid $1))
1849         IFS="$old_ifs"
1850
1851         log "FID seq ${fid[1]}, oid ${fid[2]} ver ${fid[3]}"
1852         log "LOV seq $lmm_seq, oid $lmm_oid, count: $lmm_count"
1853
1854         # compare lmm_seq and lu_fid->f_seq
1855         [ $lmm_seq = ${fid[1]} ] || { error "SEQ mismatch"; return 1; }
1856         # compare lmm_object_id and lu_fid->oid
1857         [ $lmm_oid = ${fid[2]} ] || { error "OID mismatch"; return 2; }
1858
1859         # check the trusted.fid attribute of the OST objects of the file
1860         local have_obdidx=false
1861         local stripe_nr=0
1862         $GETSTRIPE $1 | while read obdidx oid hex seq; do
1863                 # skip lines up to and including "obdidx"
1864                 [ -z "$obdidx" ] && break
1865                 [ "$obdidx" = "obdidx" ] && have_obdidx=true && continue
1866                 $have_obdidx || continue
1867
1868                 local ost=$((obdidx + 1))
1869                 local dev=$(ostdevname $ost)
1870                 local oid_hex
1871
1872                 log "want: stripe:$stripe_nr ost:$obdidx oid:$oid/$hex seq:$seq"
1873
1874                 seq=$(echo $seq | sed -e "s/^0x//g")
1875                 if [ $seq == 0 ] || [ $(facet_fstype ost$ost) == zfs ]; then
1876                         oid_hex=$(echo $oid)
1877                 else
1878                         oid_hex=$(echo $hex | sed -e "s/^0x//g")
1879                 fi
1880                 local obj_file="O/$seq/d$((oid %32))/$oid_hex"
1881
1882                 local ff=""
1883                 #
1884                 # Don't unmount/remount the OSTs if we don't need to do that.
1885                 # LU-2577 changes filter_fid to be smaller, so debugfs needs
1886                 # update too, until that use mount/ll_decode_filter_fid/mount.
1887                 # Re-enable when debugfs will understand new filter_fid.
1888                 #
1889                 if [ $(facet_fstype ost$ost) == ldiskfs ]; then
1890                         ff=$(do_facet ost$ost "$DEBUGFS -c -R 'stat $obj_file' \
1891                                 $dev 2>/dev/null" | grep "parent=")
1892                 fi
1893                 if [ -z "$ff" ]; then
1894                         stop ost$ost
1895                         mount_fstype ost$ost
1896                         ff=$(do_facet ost$ost $LL_DECODE_FILTER_FID \
1897                                 $(facet_mntpt ost$ost)/$obj_file)
1898                         unmount_fstype ost$ost
1899                         start ost$ost $dev $OST_MOUNT_OPTS
1900                         clients_up
1901                 fi
1902
1903                 [ -z "$ff" ] && error "$obj_file: no filter_fid info"
1904
1905                 echo "$ff" | sed -e 's#.*objid=#got: objid=#'
1906
1907                 # /mnt/O/0/d23/23: objid=23 seq=0 parent=[0x200000400:0x1e:0x1]
1908                 # fid: objid=23 seq=0 parent=[0x200000400:0x1e:0x0] stripe=1
1909                 #
1910                 # fid: parent=[0x200000400:0x1e:0x0] stripe=1 stripe_count=2 \
1911                 #       stripe_size=1048576 component_id=1 component_start=0 \
1912                 #       component_end=33554432
1913                 local ff_parent=$(sed -e 's/.*parent=.//' <<<$ff)
1914                 local ff_pseq=$(cut -d: -f1 <<<$ff_parent)
1915                 local ff_poid=$(cut -d: -f2 <<<$ff_parent)
1916                 local ff_pstripe
1917                 if grep -q 'stripe=' <<<$ff; then
1918                         ff_pstripe=$(sed -e 's/.*stripe=//' -e 's/ .*//' <<<$ff)
1919                 else
1920                         # $LL_DECODE_FILTER_FID does not print "stripe="; look
1921                         # into f_ver in this case.  See comment on ff_parent.
1922                         ff_pstripe=$(cut -d: -f3 <<<$ff_parent | sed -e 's/]//')
1923                 fi
1924
1925                 # compare lmm_seq and filter_fid->ff_parent.f_seq
1926                 [ $ff_pseq = $lmm_seq ] ||
1927                         error "FF parent SEQ $ff_pseq != $lmm_seq"
1928                 # compare lmm_object_id and filter_fid->ff_parent.f_oid
1929                 [ $ff_poid = $lmm_oid ] ||
1930                         error "FF parent OID $ff_poid != $lmm_oid"
1931                 (($ff_pstripe == $stripe_nr)) ||
1932                         error "FF stripe $ff_pstripe != $stripe_nr"
1933
1934                 stripe_nr=$((stripe_nr + 1))
1935                 [ $(lustre_version_code client) -lt $(version_code 2.9.55) ] &&
1936                         continue
1937                 if grep -q 'stripe_count=' <<<$ff; then
1938                         local ff_scnt=$(sed -e 's/.*stripe_count=//' \
1939                                             -e 's/ .*//' <<<$ff)
1940                         [ $lmm_count = $ff_scnt ] ||
1941                                 error "FF stripe count $lmm_count != $ff_scnt"
1942                 fi
1943         done
1944 }
1945
1946 test_27z() {
1947         remote_ost_nodsh && skip "remote OST with nodsh" && return
1948         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1949         test_mkdir $DIR/$tdir
1950
1951         $LFS setstripe -c 1 -i 0 -S 64k $DIR/$tdir/$tfile-1 ||
1952                 { error "setstripe -c -1 failed"; return 1; }
1953         # We need to send a write to every object to get parent FID info set.
1954         # This _should_ also work for setattr, but does not currently.
1955         # touch $DIR/$tdir/$tfile-1 ||
1956         dd if=/dev/zero of=$DIR/$tdir/$tfile-1 bs=1M count=1 ||
1957                 { error "dd $tfile-1 failed"; return 2; }
1958         $LFS setstripe -c -1 -i $((OSTCOUNT - 1)) -S 1M $DIR/$tdir/$tfile-2 ||
1959                 { error "setstripe -c -1 failed"; return 3; }
1960         dd if=/dev/zero of=$DIR/$tdir/$tfile-2 bs=1M count=$OSTCOUNT ||
1961                 { error "dd $tfile-2 failed"; return 4; }
1962
1963         # make sure write RPCs have been sent to OSTs
1964         sync; sleep 5; sync
1965
1966         check_seq_oid $DIR/$tdir/$tfile-1 || return 5
1967         check_seq_oid $DIR/$tdir/$tfile-2 || return 6
1968 }
1969 run_test 27z "check SEQ/OID on the MDT and OST filesystems"
1970
1971 test_27A() { # b=19102
1972         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1973         local restore_size=$($GETSTRIPE -S $MOUNT)
1974         local restore_count=$($GETSTRIPE -c $MOUNT)
1975         local restore_offset=$($GETSTRIPE -i $MOUNT)
1976         $SETSTRIPE -c 0 -i -1 -S 0 $MOUNT
1977         wait_update $HOSTNAME "$GETSTRIPE -c $MOUNT | sed 's/  *//g'" "1" 20 ||
1978                 error "stripe count $($GETSTRIPE -c $MOUNT) != 1"
1979         local default_size=$($GETSTRIPE -S $MOUNT)
1980         local default_offset=$($GETSTRIPE -i $MOUNT)
1981         local dsize=$((1024 * 1024))
1982         [ $default_size -eq $dsize ] ||
1983                 error "stripe size $default_size != $dsize"
1984         [ $default_offset -eq -1 ] ||error "stripe offset $default_offset != -1"
1985         $SETSTRIPE -c $restore_count -i $restore_offset -S $restore_size $MOUNT
1986 }
1987 run_test 27A "check filesystem-wide default LOV EA values"
1988
1989 test_27B() { # LU-2523
1990         test_mkdir $DIR/$tdir
1991         rm -f $DIR/$tdir/f0 $DIR/$tdir/f1
1992         touch $DIR/$tdir/f0
1993         # open f1 with O_LOV_DELAY_CREATE
1994         # rename f0 onto f1
1995         # call setstripe ioctl on open file descriptor for f1
1996         # close
1997         multiop $DIR/$tdir/f1 oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:nB1c \
1998                 $DIR/$tdir/f0
1999
2000         rm -f $DIR/$tdir/f1
2001         # open f1 with O_LOV_DELAY_CREATE
2002         # unlink f1
2003         # call setstripe ioctl on open file descriptor for f1
2004         # close
2005         multiop $DIR/$tdir/f1 oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:uB1c
2006
2007         # Allow multiop to fail in imitation of NFS's busted semantics.
2008         true
2009 }
2010 run_test 27B "call setstripe on open unlinked file/rename victim"
2011
2012 test_27C() { #LU-2871
2013         [[ $OSTCOUNT -lt 2 ]] && skip "needs >= 2 OSTs" && return
2014
2015         declare -a ost_idx
2016         local index
2017         local found
2018         local i
2019         local j
2020
2021         test_mkdir $DIR/$tdir
2022         cd $DIR/$tdir
2023         for i in $(seq 0 $((OSTCOUNT - 1))); do
2024                 # set stripe across all OSTs starting from OST$i
2025                 $SETSTRIPE -i $i -c -1 $tfile$i
2026                 # get striping information
2027                 ost_idx=($($GETSTRIPE $tfile$i |
2028                          tail -n $((OSTCOUNT + 1)) | awk '{print $1}'))
2029                 echo ${ost_idx[@]}
2030
2031                 # check the layout
2032                 [ ${#ost_idx[@]} -eq $OSTCOUNT ] ||
2033                         error "${#ost_idx[@]} != $OSTCOUNT"
2034
2035                 for index in $(seq 0 $((OSTCOUNT - 1))); do
2036                         found=0
2037                         for j in $(echo ${ost_idx[@]}); do
2038                                 if [ $index -eq $j ]; then
2039                                         found=1
2040                                         break
2041                                 fi
2042                         done
2043                         [ $found = 1 ] ||
2044                                 error "Can not find $index in ${ost_idx[@]}"
2045                 done
2046         done
2047 }
2048 run_test 27C "check full striping across all OSTs"
2049
2050 test_27D() {
2051         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
2052         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
2053         remote_mds_nodsh && skip "remote MDS with nodsh" && return
2054         local POOL=${POOL:-testpool}
2055         local first_ost=0
2056         local last_ost=$(($OSTCOUNT - 1))
2057         local ost_step=1
2058         local ost_list=$(seq $first_ost $ost_step $last_ost)
2059         local ost_range="$first_ost $last_ost $ost_step"
2060
2061         test_mkdir $DIR/$tdir
2062         pool_add $POOL || error "pool_add failed"
2063         pool_add_targets $POOL $ost_range || error "pool_add_targets failed"
2064
2065         local skip27D
2066         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.55) ] &&
2067                 skip27D += "-s 29"
2068         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.9.55) -o \
2069           $(lustre_version_code client) -lt $(version_code 2.9.55) ] &&
2070                 skip27D += "-s 30,31"
2071         llapi_layout_test -d$DIR/$tdir -p$POOL -o$OSTCOUNT $skip27D ||
2072                 error "llapi_layout_test failed"
2073
2074         destroy_test_pools || error "destroy test pools failed"
2075 }
2076 run_test 27D "validate llapi_layout API"
2077
2078 # Verify that default_easize is increased from its initial value after
2079 # accessing a widely striped file.
2080 test_27E() {
2081         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
2082         [ $(lustre_version_code client) -lt $(version_code 2.5.57) ] &&
2083                 skip "client does not have LU-3338 fix" && return
2084
2085         # 72 bytes is the minimum space required to store striping
2086         # information for a file striped across one OST:
2087         # (sizeof(struct lov_user_md_v3) +
2088         #  sizeof(struct lov_user_ost_data_v1))
2089         local min_easize=72
2090         $LCTL set_param -n llite.*.default_easize $min_easize ||
2091                 error "lctl set_param failed"
2092         local easize=$($LCTL get_param -n llite.*.default_easize)
2093
2094         [ $easize -eq $min_easize ] ||
2095                 error "failed to set default_easize"
2096
2097         $LFS setstripe -c $OSTCOUNT $DIR/$tfile ||
2098                 error "setstripe failed"
2099         cat $DIR/$tfile
2100         rm $DIR/$tfile
2101
2102         easize=$($LCTL get_param -n llite.*.default_easize)
2103
2104         [ $easize -gt $min_easize ] ||
2105                 error "default_easize not updated"
2106 }
2107 run_test 27E "check that default extended attribute size properly increases"
2108
2109 test_27F() { # LU-5346/LU-7975
2110         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2111         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.51) ]] &&
2112                 skip "Need MDS version at least 2.8.51" && return
2113         remote_ost_nodsh && skip "remote OST with nodsh" && return
2114
2115         test_mkdir $DIR/$tdir
2116         rm -f $DIR/$tdir/f0
2117         $SETSTRIPE -c 2 $DIR/$tdir
2118
2119         # stop all OSTs to reproduce situation for LU-7975 ticket
2120         for num in $(seq $OSTCOUNT); do
2121                 stop ost$num
2122         done
2123
2124         # open/create f0 with O_LOV_DELAY_CREATE
2125         # truncate f0 to a non-0 size
2126         # close
2127         multiop $DIR/$tdir/f0 oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:T1050000c
2128
2129         $CHECKSTAT -s 1050000 $DIR/$tdir/f0 || error "checkstat failed"
2130         # open/write it again to force delayed layout creation
2131         cat /etc/hosts > $DIR/$tdir/f0 &
2132         catpid=$!
2133
2134         # restart OSTs
2135         for num in $(seq $OSTCOUNT); do
2136                 start ost$num $(ostdevname $num) $OST_MOUNT_OPTS ||
2137                         error "ost$num failed to start"
2138         done
2139
2140         wait $catpid || error "cat failed"
2141
2142         cmp /etc/hosts $DIR/$tdir/f0 || error "cmp failed"
2143         [[ $($GETSTRIPE -c $DIR/$tdir/f0) == 2 ]] || error "wrong stripecount"
2144
2145 }
2146 run_test 27F "Client resend delayed layout creation with non-zero size"
2147
2148 # createtest also checks that device nodes are created and
2149 # then visible correctly (#2091)
2150 test_28() { # bug 2091
2151         test_mkdir $DIR/d28
2152         $CREATETEST $DIR/d28/ct || error
2153 }
2154 run_test 28 "create/mknod/mkdir with bad file types ============"
2155
2156 test_29() {
2157         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return 0
2158         sync; sleep 1; sync # flush out any dirty pages from previous tests
2159         cancel_lru_locks
2160         test_mkdir $DIR/d29
2161         touch $DIR/d29/foo
2162         log 'first d29'
2163         ls -l $DIR/d29
2164
2165         declare -i LOCKCOUNTORIG=0
2166         for lock_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_count); do
2167                 let LOCKCOUNTORIG=$LOCKCOUNTORIG+$lock_count
2168         done
2169         [ $LOCKCOUNTORIG -eq 0 ] && error "No mdc lock count" && return 1
2170
2171         declare -i LOCKUNUSEDCOUNTORIG=0
2172         for unused_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_unused_count); do
2173                 let LOCKUNUSEDCOUNTORIG=$LOCKUNUSEDCOUNTORIG+$unused_count
2174         done
2175
2176         log 'second d29'
2177         ls -l $DIR/d29
2178         log 'done'
2179
2180         declare -i LOCKCOUNTCURRENT=0
2181         for lock_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_count); do
2182                 let LOCKCOUNTCURRENT=$LOCKCOUNTCURRENT+$lock_count
2183         done
2184
2185         declare -i LOCKUNUSEDCOUNTCURRENT=0
2186         for unused_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_unused_count); do
2187                 let LOCKUNUSEDCOUNTCURRENT=$LOCKUNUSEDCOUNTCURRENT+$unused_count
2188         done
2189
2190         if [[ $LOCKCOUNTCURRENT -gt $LOCKCOUNTORIG ]]; then
2191                 $LCTL set_param -n ldlm.dump_namespaces ""
2192                 error "CURRENT: $LOCKCOUNTCURRENT > $LOCKCOUNTORIG"
2193                 $LCTL dk | sort -k4 -t: > $TMP/test_29.dk
2194                 log "dumped log to $TMP/test_29.dk (bug 5793)"
2195                 return 2
2196         fi
2197         if [[ $LOCKUNUSEDCOUNTCURRENT -gt $LOCKUNUSEDCOUNTORIG ]]; then
2198                 error "UNUSED: $LOCKUNUSEDCOUNTCURRENT > $LOCKUNUSEDCOUNTORIG"
2199                 $LCTL dk | sort -k4 -t: > $TMP/test_29.dk
2200                 log "dumped log to $TMP/test_29.dk (bug 5793)"
2201                 return 3
2202         fi
2203 }
2204 run_test 29 "IT_GETATTR regression  ============================"
2205
2206 test_30a() { # was test_30
2207         cp $(which ls) $DIR || cp /bin/ls $DIR
2208         $DIR/ls / || error
2209         rm $DIR/ls
2210 }
2211 run_test 30a "execute binary from Lustre (execve) =============="
2212
2213 test_30b() {
2214         cp `which ls` $DIR || cp /bin/ls $DIR
2215         chmod go+rx $DIR/ls
2216         $RUNAS $DIR/ls / || error
2217         rm $DIR/ls
2218 }
2219 run_test 30b "execute binary from Lustre as non-root ==========="
2220
2221 test_30c() { # b=22376
2222         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2223         cp `which ls` $DIR || cp /bin/ls $DIR
2224         chmod a-rw $DIR/ls
2225         cancel_lru_locks mdc
2226         cancel_lru_locks osc
2227         $RUNAS $DIR/ls / || error
2228         rm -f $DIR/ls
2229 }
2230 run_test 30c "execute binary from Lustre without read perms ===="
2231
2232 test_31a() {
2233         $OPENUNLINK $DIR/f31 $DIR/f31 || error
2234         $CHECKSTAT -a $DIR/f31 || error
2235 }
2236 run_test 31a "open-unlink file =================================="
2237
2238 test_31b() {
2239         touch $DIR/f31 || error
2240         ln $DIR/f31 $DIR/f31b || error
2241         $MULTIOP $DIR/f31b Ouc || error
2242         $CHECKSTAT -t file $DIR/f31 || error
2243 }
2244 run_test 31b "unlink file with multiple links while open ======="
2245
2246 test_31c() {
2247         touch $DIR/f31 || error
2248         ln $DIR/f31 $DIR/f31c || error
2249         multiop_bg_pause $DIR/f31 O_uc || return 1
2250         MULTIPID=$!
2251         $MULTIOP $DIR/f31c Ouc
2252         kill -USR1 $MULTIPID
2253         wait $MULTIPID
2254 }
2255 run_test 31c "open-unlink file with multiple links ============="
2256
2257 test_31d() {
2258         opendirunlink $DIR/d31d $DIR/d31d || error
2259         $CHECKSTAT -a $DIR/d31d || error
2260 }
2261 run_test 31d "remove of open directory ========================="
2262
2263 test_31e() { # bug 2904
2264         openfilleddirunlink $DIR/d31e || error
2265 }
2266 run_test 31e "remove of open non-empty directory ==============="
2267
2268 test_31f() { # bug 4554
2269         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2270         set -vx
2271         test_mkdir $DIR/d31f
2272         $SETSTRIPE -S 1048576 -c 1 $DIR/d31f
2273         cp /etc/hosts $DIR/d31f
2274         ls -l $DIR/d31f
2275         $GETSTRIPE $DIR/d31f/hosts
2276         multiop_bg_pause $DIR/d31f D_c || return 1
2277         MULTIPID=$!
2278
2279         rm -rv $DIR/d31f || error "first of $DIR/d31f"
2280         test_mkdir $DIR/d31f
2281         $SETSTRIPE -S 1048576 -c 1 $DIR/d31f
2282         cp /etc/hosts $DIR/d31f
2283         ls -l $DIR/d31f
2284         $GETSTRIPE $DIR/d31f/hosts
2285         multiop_bg_pause $DIR/d31f D_c || return 1
2286         MULTIPID2=$!
2287
2288         kill -USR1 $MULTIPID || error "first opendir $MULTIPID not running"
2289         wait $MULTIPID || error "first opendir $MULTIPID failed"
2290
2291         sleep 6
2292
2293         kill -USR1 $MULTIPID2 || error "second opendir $MULTIPID not running"
2294         wait $MULTIPID2 || error "second opendir $MULTIPID2 failed"
2295         set +vx
2296 }
2297 run_test 31f "remove of open directory with open-unlink file ==="
2298
2299 test_31g() {
2300         echo "-- cross directory link --"
2301         test_mkdir -c1 $DIR/${tdir}ga
2302         test_mkdir -c1 $DIR/${tdir}gb
2303         touch $DIR/${tdir}ga/f
2304         ln $DIR/${tdir}ga/f $DIR/${tdir}gb/g
2305         $CHECKSTAT -t file $DIR/${tdir}ga/f || error "source"
2306         [ `stat -c%h $DIR/${tdir}ga/f` == '2' ] || error "source nlink"
2307         $CHECKSTAT -t file $DIR/${tdir}gb/g || error "target"
2308         [ `stat -c%h $DIR/${tdir}gb/g` == '2' ] || error "target nlink"
2309 }
2310 run_test 31g "cross directory link==============="
2311
2312 test_31h() {
2313         echo "-- cross directory link --"
2314         test_mkdir -c1 $DIR/${tdir}
2315         test_mkdir -c1 $DIR/${tdir}/dir
2316         touch $DIR/${tdir}/f
2317         ln $DIR/${tdir}/f $DIR/${tdir}/dir/g
2318         $CHECKSTAT -t file $DIR/${tdir}/f || error "source"
2319         [ `stat -c%h $DIR/${tdir}/f` == '2' ] || error "source nlink"
2320         $CHECKSTAT -t file $DIR/${tdir}/dir/g || error "target"
2321         [ `stat -c%h $DIR/${tdir}/dir/g` == '2' ] || error "target nlink"
2322 }
2323 run_test 31h "cross directory link under child==============="
2324
2325 test_31i() {
2326         echo "-- cross directory link --"
2327         test_mkdir -c1 $DIR/$tdir
2328         test_mkdir -c1 $DIR/$tdir/dir
2329         touch $DIR/$tdir/dir/f
2330         ln $DIR/$tdir/dir/f $DIR/$tdir/g
2331         $CHECKSTAT -t file $DIR/$tdir/dir/f || error "source"
2332         [ `stat -c%h $DIR/$tdir/dir/f` == '2' ] || error "source nlink"
2333         $CHECKSTAT -t file $DIR/$tdir/g || error "target"
2334         [ `stat -c%h $DIR/$tdir/g` == '2' ] || error "target nlink"
2335 }
2336 run_test 31i "cross directory link under parent==============="
2337
2338 test_31j() {
2339         test_mkdir -c1 -p $DIR/$tdir
2340         test_mkdir -c1 -p $DIR/$tdir/dir1
2341         ln $DIR/$tdir/dir1 $DIR/$tdir/dir2 && error "ln for dir"
2342         link $DIR/$tdir/dir1 $DIR/$tdir/dir3 && error "link for dir"
2343         mlink $DIR/$tdir/dir1 $DIR/$tdir/dir4 && error "mlink for dir"
2344         mlink $DIR/$tdir/dir1 $DIR/$tdir/dir1 && error "mlink to the same dir"
2345         return 0
2346 }
2347 run_test 31j "link for directory==============="
2348
2349 test_31k() {
2350         test_mkdir -c1 -p $DIR/$tdir
2351         touch $DIR/$tdir/s
2352         touch $DIR/$tdir/exist
2353         mlink $DIR/$tdir/s $DIR/$tdir/t || error "mlink"
2354         mlink $DIR/$tdir/s $DIR/$tdir/exist && error "mlink to exist file"
2355         mlink $DIR/$tdir/s $DIR/$tdir/s && error "mlink to the same file"
2356         mlink $DIR/$tdir/s $DIR/$tdir && error "mlink to parent dir"
2357         mlink $DIR/$tdir $DIR/$tdir/s && error "mlink parent dir to target"
2358         mlink $DIR/$tdir/not-exist $DIR/$tdir/foo && error "mlink non-existing to new"
2359         mlink $DIR/$tdir/not-exist $DIR/$tdir/s && error "mlink non-existing to exist"
2360         return 0
2361 }
2362 run_test 31k "link to file: the same, non-existing, dir==============="
2363
2364 test_31m() {
2365         mkdir $DIR/d31m
2366         touch $DIR/d31m/s
2367         mkdir $DIR/d31m2
2368         touch $DIR/d31m2/exist
2369         mlink $DIR/d31m/s $DIR/d31m2/t || error "mlink"
2370         mlink $DIR/d31m/s $DIR/d31m2/exist && error "mlink to exist file"
2371         mlink $DIR/d31m/s $DIR/d31m2 && error "mlink to parent dir"
2372         mlink $DIR/d31m2 $DIR/d31m/s && error "mlink parent dir to target"
2373         mlink $DIR/d31m/not-exist $DIR/d31m2/foo && error "mlink non-existing to new"
2374         mlink $DIR/d31m/not-exist $DIR/d31m2/s && error "mlink non-existing to exist"
2375         return 0
2376 }
2377 run_test 31m "link to file: the same, non-existing, dir==============="
2378
2379 test_31n() {
2380         touch $DIR/$tfile || error "cannot create '$DIR/$tfile'"
2381         nlink=$(stat --format=%h $DIR/$tfile)
2382         [ ${nlink:--1} -eq 1 ] || error "nlink is $nlink, expected 1"
2383         local fd=$(free_fd)
2384         local cmd="exec $fd<$DIR/$tfile"
2385         eval $cmd
2386         cmd="exec $fd<&-"
2387         trap "eval $cmd" EXIT
2388         nlink=$(stat --dereference --format=%h /proc/self/fd/$fd)
2389         [ ${nlink:--1} -eq 1 ] || error "nlink is $nlink, expected 1"
2390         rm $DIR/$tfile || error "cannot remove '$DIR/$tfile'"
2391         nlink=$(stat --dereference --format=%h /proc/self/fd/$fd)
2392         [ ${nlink:--1} -eq 0 ] || error "nlink is $nlink, expected 0"
2393         eval $cmd
2394 }
2395 run_test 31n "check link count of unlinked file"
2396
2397 link_one() {
2398         local TEMPNAME=$(mktemp $1_XXXXXX)
2399         mlink $TEMPNAME $1 2> /dev/null &&
2400                 echo "$BASHPID: link $TEMPNAME to $1 succeeded"
2401         munlink $TEMPNAME
2402 }
2403
2404 test_31o() { # LU-2901
2405         test_mkdir $DIR/$tdir
2406         for LOOP in $(seq 100); do
2407                 rm -f $DIR/$tdir/$tfile*
2408                 for THREAD in $(seq 8); do
2409                         link_one $DIR/$tdir/$tfile.$LOOP &
2410                 done
2411                 wait
2412                 local LINKS=$(ls -1 $DIR/$tdir | grep -c $tfile.$LOOP)
2413                 [[ $LINKS -gt 1 ]] && ls $DIR/$tdir &&
2414                         error "$LINKS duplicate links to $tfile.$LOOP" &&
2415                         break || true
2416         done
2417 }
2418 run_test 31o "duplicate hard links with same filename"
2419
2420 test_31p() {
2421         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
2422
2423         test_mkdir $DIR/$tdir
2424         $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
2425         $LFS setdirstripe -D -c2 -t all_char $DIR/$tdir/striped_dir
2426
2427         opendirunlink $DIR/$tdir/striped_dir/test1 ||
2428                 error "open unlink test1 failed"
2429         opendirunlink $DIR/$tdir/striped_dir/test2 ||
2430                 error "open unlink test2 failed"
2431
2432         $CHECKSTAT -a $DIR/$tdir/striped_dir/test1 ||
2433                 error "test1 still exists"
2434         $CHECKSTAT -a $DIR/$tdir/striped_dir/test2 ||
2435                 error "test2 still exists"
2436 }
2437 run_test 31p "remove of open striped directory"
2438
2439 cleanup_test32_mount() {
2440         local rc=0
2441         trap 0
2442         local loopdev=$(losetup -a | grep $EXT2_DEV | sed -ne 's/:.*$//p')
2443         $UMOUNT $DIR/$tdir/ext2-mountpoint || rc=$?
2444         losetup -d $loopdev || true
2445         rm -rf $DIR/$tdir
2446         return $rc
2447 }
2448
2449 test_32a() {
2450         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2451         echo "== more mountpoints and symlinks ================="
2452         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2453         trap cleanup_test32_mount EXIT
2454         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2455         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2456         $CHECKSTAT -t dir $DIR/$tdir/ext2-mountpoint/.. || error
2457         cleanup_test32_mount
2458 }
2459 run_test 32a "stat d32a/ext2-mountpoint/.. ====================="
2460
2461 test_32b() {
2462         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2463         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2464         trap cleanup_test32_mount EXIT
2465         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2466         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2467         ls -al $DIR/$tdir/ext2-mountpoint/.. || error
2468         cleanup_test32_mount
2469 }
2470 run_test 32b "open d32b/ext2-mountpoint/.. ====================="
2471
2472 test_32c() {
2473         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2474         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2475         trap cleanup_test32_mount EXIT
2476         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2477         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2478         test_mkdir -p $DIR/$tdir/d2/test_dir
2479         $CHECKSTAT -t dir $DIR/$tdir/ext2-mountpoint/../d2/test_dir || error
2480         cleanup_test32_mount
2481 }
2482 run_test 32c "stat d32c/ext2-mountpoint/../d2/test_dir ========="
2483
2484 test_32d() {
2485         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2486         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2487         trap cleanup_test32_mount EXIT
2488         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2489         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2490         test_mkdir -p $DIR/$tdir/d2/test_dir
2491         ls -al $DIR/$tdir/ext2-mountpoint/../d2/test_dir || error
2492         cleanup_test32_mount
2493 }
2494 run_test 32d "open d32d/ext2-mountpoint/../d2/test_dir"
2495
2496 test_32e() {
2497         rm -fr $DIR/$tdir
2498         test_mkdir -p $DIR/$tdir/tmp
2499         local tmp_dir=$DIR/$tdir/tmp
2500         ln -s $DIR/$tdir $tmp_dir/symlink11
2501         ln -s $tmp_dir/symlink11 $tmp_dir/../symlink01
2502         $CHECKSTAT -t link $DIR/$tdir/tmp/symlink11 || error "symlink11 bad"
2503         $CHECKSTAT -t link $DIR/$tdir/symlink01 || error "symlink01 bad"
2504 }
2505 run_test 32e "stat d32e/symlink->tmp/symlink->lustre-subdir"
2506
2507 test_32f() {
2508         rm -fr $DIR/$tdir
2509         test_mkdir -p $DIR/$tdir/tmp
2510         local tmp_dir=$DIR/$tdir/tmp
2511         ln -s $DIR/$tdir $tmp_dir/symlink11
2512         ln -s $tmp_dir/symlink11 $tmp_dir/../symlink01
2513         ls $DIR/$tdir/tmp/symlink11  || error "symlink11 bad"
2514         ls $DIR/$tdir/symlink01 || error "symlink01 bad"
2515 }
2516 run_test 32f "open d32f/symlink->tmp/symlink->lustre-subdir"
2517
2518 test_32g() {
2519         local tmp_dir=$DIR/$tdir/tmp
2520         test_mkdir -p $tmp_dir
2521         test_mkdir $DIR/${tdir}2
2522         ln -s $DIR/${tdir}2 $tmp_dir/symlink12
2523         ln -s $tmp_dir/symlink12 $tmp_dir/../symlink02
2524         $CHECKSTAT -t link $tmp_dir/symlink12 || error "symlink12 not a link"
2525         $CHECKSTAT -t link $DIR/$tdir/symlink02 || error "symlink02 not a link"
2526         $CHECKSTAT -t dir -f $tmp_dir/symlink12 || error "symlink12 not a dir"
2527         $CHECKSTAT -t dir -f $DIR/$tdir/symlink02 || error "symlink12 not a dir"
2528 }
2529 run_test 32g "stat d32g/symlink->tmp/symlink->lustre-subdir/${tdir}2"
2530
2531 test_32h() {
2532         rm -fr $DIR/$tdir $DIR/${tdir}2
2533         tmp_dir=$DIR/$tdir/tmp
2534         test_mkdir -p $tmp_dir
2535         test_mkdir $DIR/${tdir}2
2536         ln -s $DIR/${tdir}2 $tmp_dir/symlink12
2537         ln -s $tmp_dir/symlink12 $tmp_dir/../symlink02
2538         ls $tmp_dir/symlink12 || error "listing symlink12"
2539         ls $DIR/$tdir/symlink02  || error "listing symlink02"
2540 }
2541 run_test 32h "open d32h/symlink->tmp/symlink->lustre-subdir/${tdir}2"
2542
2543 test_32i() {
2544         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2545         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2546         trap cleanup_test32_mount EXIT
2547         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2548         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2549         touch $DIR/$tdir/test_file
2550         $CHECKSTAT -t file $DIR/$tdir/ext2-mountpoint/../test_file || error
2551         cleanup_test32_mount
2552 }
2553 run_test 32i "stat d32i/ext2-mountpoint/../test_file ==========="
2554
2555 test_32j() {
2556         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2557         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2558         trap cleanup_test32_mount EXIT
2559         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2560         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2561         touch $DIR/$tdir/test_file
2562         cat $DIR/$tdir/ext2-mountpoint/../test_file || error
2563         cleanup_test32_mount
2564 }
2565 run_test 32j "open d32j/ext2-mountpoint/../test_file ==========="
2566
2567 test_32k() {
2568         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2569         rm -fr $DIR/$tdir
2570         trap cleanup_test32_mount EXIT
2571         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2572         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint
2573         test_mkdir -p $DIR/$tdir/d2
2574         touch $DIR/$tdir/d2/test_file || error
2575         $CHECKSTAT -t file $DIR/$tdir/ext2-mountpoint/../d2/test_file || error
2576         cleanup_test32_mount
2577 }
2578 run_test 32k "stat d32k/ext2-mountpoint/../d2/test_file ========"
2579
2580 test_32l() {
2581         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2582         rm -fr $DIR/$tdir
2583         trap cleanup_test32_mount EXIT
2584         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2585         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2586         test_mkdir -p $DIR/$tdir/d2
2587         touch $DIR/$tdir/d2/test_file
2588         cat  $DIR/$tdir/ext2-mountpoint/../d2/test_file || error
2589         cleanup_test32_mount
2590 }
2591 run_test 32l "open d32l/ext2-mountpoint/../d2/test_file ========"
2592
2593 test_32m() {
2594         rm -fr $DIR/d32m
2595         test_mkdir -p $DIR/d32m/tmp
2596         TMP_DIR=$DIR/d32m/tmp
2597         ln -s $DIR $TMP_DIR/symlink11
2598         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2599         $CHECKSTAT -t link $DIR/d32m/tmp/symlink11 || error
2600         $CHECKSTAT -t link $DIR/d32m/symlink01 || error
2601 }
2602 run_test 32m "stat d32m/symlink->tmp/symlink->lustre-root ======"
2603
2604 test_32n() {
2605         rm -fr $DIR/d32n
2606         test_mkdir -p $DIR/d32n/tmp
2607         TMP_DIR=$DIR/d32n/tmp
2608         ln -s $DIR $TMP_DIR/symlink11
2609         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2610         ls -l $DIR/d32n/tmp/symlink11  || error
2611         ls -l $DIR/d32n/symlink01 || error
2612 }
2613 run_test 32n "open d32n/symlink->tmp/symlink->lustre-root ======"
2614
2615 test_32o() {
2616         touch $DIR/$tfile
2617         test_mkdir -p $DIR/d32o/tmp
2618         TMP_DIR=$DIR/d32o/tmp
2619         ln -s $DIR/$tfile $TMP_DIR/symlink12
2620         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2621         $CHECKSTAT -t link $DIR/d32o/tmp/symlink12 || error
2622         $CHECKSTAT -t link $DIR/d32o/symlink02 || error
2623         $CHECKSTAT -t file -f $DIR/d32o/tmp/symlink12 || error
2624         $CHECKSTAT -t file -f $DIR/d32o/symlink02 || error
2625 }
2626 run_test 32o "stat d32o/symlink->tmp/symlink->lustre-root/$tfile"
2627
2628 test_32p() {
2629         log 32p_1
2630         rm -fr $DIR/d32p
2631         log 32p_2
2632         rm -f $DIR/$tfile
2633         log 32p_3
2634         touch $DIR/$tfile
2635         log 32p_4
2636         test_mkdir -p $DIR/d32p/tmp
2637         log 32p_5
2638         TMP_DIR=$DIR/d32p/tmp
2639         log 32p_6
2640         ln -s $DIR/$tfile $TMP_DIR/symlink12
2641         log 32p_7
2642         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2643         log 32p_8
2644         cat $DIR/d32p/tmp/symlink12 || error
2645         log 32p_9
2646         cat $DIR/d32p/symlink02 || error
2647         log 32p_10
2648 }
2649 run_test 32p "open d32p/symlink->tmp/symlink->lustre-root/$tfile"
2650
2651 test_32q() {
2652         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2653         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2654         trap cleanup_test32_mount EXIT
2655         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2656         touch $DIR/$tdir/ext2-mountpoint/under_the_mount
2657         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint
2658         ls $DIR/$tdir/ext2-mountpoint | grep "\<under_the_mount\>" && error
2659         cleanup_test32_mount
2660 }
2661 run_test 32q "stat follows mountpoints in Lustre (should return error)"
2662
2663 test_32r() {
2664         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2665         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2666         trap cleanup_test32_mount EXIT
2667         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2668         touch $DIR/$tdir/ext2-mountpoint/under_the_mount
2669         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint
2670         ls $DIR/$tdir/ext2-mountpoint | grep -q under_the_mount && error || true
2671         cleanup_test32_mount
2672 }
2673 run_test 32r "opendir follows mountpoints in Lustre (should return error)"
2674
2675 test_33aa() {
2676         rm -f $DIR/$tfile
2677         touch $DIR/$tfile
2678         chmod 444 $DIR/$tfile
2679         chown $RUNAS_ID $DIR/$tfile
2680         log 33_1
2681         $RUNAS $OPENFILE -f O_RDWR $DIR/$tfile && error || true
2682         log 33_2
2683 }
2684 run_test 33aa "write file with mode 444 (should return error)"
2685
2686 test_33a() {
2687         rm -fr $DIR/$tdir
2688         test_mkdir $DIR/$tdir
2689         chown $RUNAS_ID $DIR/$tdir
2690         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $DIR/$tdir/$tfile ||
2691                 error "$RUNAS create $tdir/$tfile failed"
2692         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $DIR/$tdir/$tfile &&
2693                 error "open RDWR" || true
2694 }
2695 run_test 33a "test open file(mode=0444) with O_RDWR (should return error)"
2696
2697 test_33b() {
2698         rm -fr $DIR/$tdir
2699         test_mkdir $DIR/$tdir
2700         chown $RUNAS_ID $DIR/$tdir
2701         $RUNAS $OPENFILE -f 1286739555 $DIR/$tdir/$tfile || true
2702 }
2703 run_test 33b "test open file with malformed flags (No panic)"
2704
2705 test_33c() {
2706         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2707         local ostnum
2708         local ostname
2709         local write_bytes
2710         local all_zeros
2711
2712         remote_ost_nodsh && skip "remote OST with nodsh" && return
2713         all_zeros=:
2714         rm -fr $DIR/$tdir
2715         test_mkdir $DIR/$tdir
2716         # Read: 0, Write: 4, create/destroy: 2/0, stat: 1, punch: 0
2717
2718         sync
2719         for ostnum in $(seq $OSTCOUNT); do
2720                 # test-framework's OST numbering is one-based, while Lustre's
2721                 # is zero-based
2722                 ostname=$(printf "$FSNAME-OST%.4x" $((ostnum - 1)))
2723                 # Parsing llobdstat's output sucks; we could grep the /proc
2724                 # path, but that's likely to not be as portable as using the
2725                 # llobdstat utility.  So we parse lctl output instead.
2726                 write_bytes=$(do_facet ost$ostnum lctl get_param -n \
2727                         obdfilter/$ostname/stats |
2728                         awk '/^write_bytes/ {print $7}' )
2729                 echo "baseline_write_bytes@$OSTnum/$ostname=$write_bytes"
2730                 if (( ${write_bytes:-0} > 0 ))
2731                 then
2732                         all_zeros=false
2733                         break;
2734                 fi
2735         done
2736
2737         $all_zeros || return 0
2738
2739         # Write four bytes
2740         echo foo > $DIR/$tdir/bar
2741         # Really write them
2742         sync
2743
2744         # Total up write_bytes after writing.  We'd better find non-zeros.
2745         for ostnum in $(seq $OSTCOUNT); do
2746                 ostname=$(printf "$FSNAME-OST%.4x" $((ostnum - 1)))
2747                 write_bytes=$(do_facet ost$ostnum lctl get_param -n \
2748                         obdfilter/$ostname/stats |
2749                         awk '/^write_bytes/ {print $7}' )
2750                 echo "write_bytes@$OSTnum/$ostname=$write_bytes"
2751                 if (( ${write_bytes:-0} > 0 ))
2752                 then
2753                         all_zeros=false
2754                         break;
2755                 fi
2756         done
2757
2758         if $all_zeros
2759         then
2760                 for ostnum in $(seq $OSTCOUNT); do
2761                         ostname=$(printf "$FSNAME-OST%.4x" $((ostnum - 1)))
2762                         echo "Check that write_bytes is present in obdfilter/*/stats:"
2763                         do_facet ost$ostnum lctl get_param -n \
2764                                 obdfilter/$ostname/stats
2765                 done
2766                 error "OST not keeping write_bytes stats (b22312)"
2767         fi
2768 }
2769 run_test 33c "test llobdstat and write_bytes"
2770
2771 test_33d() {
2772         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 2 MDTs" && return
2773         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2774         local MDTIDX=1
2775         local remote_dir=$DIR/$tdir/remote_dir
2776
2777         test_mkdir $DIR/$tdir
2778         $LFS mkdir -i $MDTIDX $remote_dir ||
2779                 error "create remote directory failed"
2780
2781         touch $remote_dir/$tfile
2782         chmod 444 $remote_dir/$tfile
2783         chown $RUNAS_ID $remote_dir/$tfile
2784
2785         $RUNAS $OPENFILE -f O_RDWR $DIR/$tfile && error || true
2786
2787         chown $RUNAS_ID $remote_dir
2788         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $remote_dir/f33 ||
2789                                         error "create" || true
2790         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $remote_dir/f33 &&
2791                                     error "open RDWR" || true
2792         $RUNAS $OPENFILE -f 1286739555 $remote_dir/f33 || true
2793 }
2794 run_test 33d "openfile with 444 modes and malformed flags under remote dir"
2795
2796 test_33e() {
2797         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
2798
2799         mkdir $DIR/$tdir
2800
2801         $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
2802         $LFS setdirstripe -i1 -c2 $DIR/$tdir/striped_dir1
2803         mkdir $DIR/$tdir/local_dir
2804
2805         local s0_mode=$(stat -c%f $DIR/$tdir/striped_dir)
2806         local s1_mode=$(stat -c%f $DIR/$tdir/striped_dir1)
2807         local l_mode=$(stat -c%f $DIR/$tdir/local_dir)
2808
2809         [ "$l_mode" = "$s0_mode" -a "$l_mode" = "$s1_mode" ] ||
2810                 error "mkdir $l_mode striped0 $s0_mode striped1 $s1_mode"
2811
2812         rmdir $DIR/$tdir/* || error "rmdir failed"
2813
2814         umask 777
2815         $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
2816         $LFS setdirstripe -i1 -c2 $DIR/$tdir/striped_dir1
2817         mkdir $DIR/$tdir/local_dir
2818
2819         s0_mode=$(stat -c%f $DIR/$tdir/striped_dir)
2820         s1_mode=$(stat -c%f $DIR/$tdir/striped_dir1)
2821         l_mode=$(stat -c%f $DIR/$tdir/local_dir)
2822
2823         [ "$l_mode" = "$s0_mode" -a "$l_mode" = "$s1_mode" ] ||
2824                 error "mkdir $l_mode striped0 $s0_mode striped1 $s1_mode 777"
2825
2826         rmdir $DIR/$tdir/* || error "rmdir(umask 777) failed"
2827
2828         umask 000
2829         $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
2830         $LFS setdirstripe -i1 -c2 $DIR/$tdir/striped_dir1
2831         mkdir $DIR/$tdir/local_dir
2832
2833         s0_mode=$(stat -c%f $DIR/$tdir/striped_dir)
2834         s1_mode=$(stat -c%f $DIR/$tdir/striped_dir1)
2835         l_mode=$(stat -c%f $DIR/$tdir/local_dir)
2836
2837         [ "$l_mode" = "$s0_mode" -a "$l_mode" = "$s1_mode" ] ||
2838                 error "mkdir $l_mode striped0 $s0_mode striped1 $s1_mode 0"
2839 }
2840 run_test 33e "mkdir and striped directory should have same mode"
2841
2842 cleanup_33f() {
2843         trap 0
2844         do_facet $SINGLEMDS $LCTL set_param mdt.*.enable_remote_dir_gid=0
2845 }
2846
2847 test_33f() {
2848         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
2849         remote_mds_nodsh && skip "remote MDS with nodsh" && return
2850
2851         mkdir $DIR/$tdir
2852         chmod go+rwx $DIR/$tdir
2853         do_facet $SINGLEMDS $LCTL set_param mdt.*.enable_remote_dir_gid=-1
2854         trap cleanup_33f EXIT
2855
2856         $RUNAS lfs mkdir -c$MDSCOUNT $DIR/$tdir/striped_dir ||
2857                 error "cannot create striped directory"
2858
2859         $RUNAS touch $DIR/$tdir/striped_dir/{0..16} ||
2860                 error "cannot create files in striped directory"
2861
2862         $RUNAS rm $DIR/$tdir/striped_dir/{0..16} ||
2863                 error "cannot remove files in striped directory"
2864
2865         $RUNAS rmdir $DIR/$tdir/striped_dir ||
2866                 error "cannot remove striped directory"
2867
2868         cleanup_33f
2869 }
2870 run_test 33f "nonroot user can create, access, and remove a striped directory"
2871
2872 test_33g() {
2873         mkdir -p $DIR/$tdir/dir2
2874
2875         local err=$($RUNAS mkdir $DIR/$tdir/dir2 2>&1)
2876         echo $err
2877         [[ $err =~ "exists" ]] || error "Not exists error"
2878 }
2879 run_test 33g "nonroot user create already existing root created file"
2880
2881 TEST_34_SIZE=${TEST_34_SIZE:-2000000000000}
2882 test_34a() {
2883         rm -f $DIR/f34
2884         $MCREATE $DIR/f34 || error
2885         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" || error
2886         $TRUNCATE $DIR/f34 $TEST_34_SIZE || error
2887         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" || error
2888         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2889 }
2890 run_test 34a "truncate file that has not been opened ==========="
2891
2892 test_34b() {
2893         [ ! -f $DIR/f34 ] && test_34a
2894         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2895         $OPENFILE -f O_RDONLY $DIR/f34
2896         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" || error
2897         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2898 }
2899 run_test 34b "O_RDONLY opening file doesn't create objects ====="
2900
2901 test_34c() {
2902         [ ! -f $DIR/f34 ] && test_34a
2903         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2904         $OPENFILE -f O_RDWR $DIR/f34
2905         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" && error
2906         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2907 }
2908 run_test 34c "O_RDWR opening file-with-size works =============="
2909
2910 test_34d() {
2911         [ ! -f $DIR/f34 ] && test_34a
2912         dd if=/dev/zero of=$DIR/f34 conv=notrunc bs=4k count=1 || error
2913         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2914         rm $DIR/f34
2915 }
2916 run_test 34d "write to sparse file ============================="
2917
2918 test_34e() {
2919         rm -f $DIR/f34e
2920         $MCREATE $DIR/f34e || error
2921         $TRUNCATE $DIR/f34e 1000 || error
2922         $CHECKSTAT -s 1000 $DIR/f34e || error
2923         $OPENFILE -f O_RDWR $DIR/f34e
2924         $CHECKSTAT -s 1000 $DIR/f34e || error
2925 }
2926 run_test 34e "create objects, some with size and some without =="
2927
2928 test_34f() { # bug 6242, 6243
2929         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2930         SIZE34F=48000
2931         rm -f $DIR/f34f
2932         $MCREATE $DIR/f34f || error
2933         $TRUNCATE $DIR/f34f $SIZE34F || error "truncating $DIR/f3f to $SIZE34F"
2934         dd if=$DIR/f34f of=$TMP/f34f
2935         $CHECKSTAT -s $SIZE34F $TMP/f34f || error "$TMP/f34f not $SIZE34F bytes"
2936         dd if=/dev/zero of=$TMP/f34fzero bs=$SIZE34F count=1
2937         cmp $DIR/f34f $TMP/f34fzero || error "$DIR/f34f not all zero"
2938         cmp $TMP/f34f $TMP/f34fzero || error "$TMP/f34f not all zero"
2939         rm $TMP/f34f $TMP/f34fzero $DIR/f34f
2940 }
2941 run_test 34f "read from a file with no objects until EOF ======="
2942
2943 test_34g() {
2944         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2945         dd if=/dev/zero of=$DIR/$tfile bs=1 count=100 seek=$TEST_34_SIZE || error
2946         $TRUNCATE $DIR/$tfile $((TEST_34_SIZE / 2))|| error
2947         $CHECKSTAT -s $((TEST_34_SIZE / 2)) $DIR/$tfile || error "truncate failed"
2948         cancel_lru_locks osc
2949         $CHECKSTAT -s $((TEST_34_SIZE / 2)) $DIR/$tfile || \
2950                 error "wrong size after lock cancel"
2951
2952         $TRUNCATE $DIR/$tfile $TEST_34_SIZE || error
2953         $CHECKSTAT -s $TEST_34_SIZE $DIR/$tfile || \
2954                 error "expanding truncate failed"
2955         cancel_lru_locks osc
2956         $CHECKSTAT -s $TEST_34_SIZE $DIR/$tfile || \
2957                 error "wrong expanded size after lock cancel"
2958 }
2959 run_test 34g "truncate long file ==============================="
2960
2961 test_34h() {
2962         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2963         local gid=10
2964         local sz=1000
2965
2966         dd if=/dev/zero of=$DIR/$tfile bs=1M count=10 || error
2967         sync # Flush the cache so that multiop below does not block on cache
2968              # flush when getting the group lock
2969         $MULTIOP $DIR/$tfile OG${gid}T${sz}g${gid}c &
2970         MULTIPID=$!
2971
2972         # Since just timed wait is not good enough, let's do a sync write
2973         # that way we are sure enough time for a roundtrip + processing
2974         # passed + 2 seconds of extra margin.
2975         dd if=/dev/zero of=$DIR/${tfile}-1 bs=4096 oflag=direct count=1
2976         rm $DIR/${tfile}-1
2977         sleep 2
2978
2979         if [[ `ps h -o comm -p $MULTIPID` == "multiop" ]]; then
2980                 error "Multiop blocked on ftruncate, pid=$MULTIPID"
2981                 kill -9 $MULTIPID
2982         fi
2983         wait $MULTIPID
2984         local nsz=`stat -c %s $DIR/$tfile`
2985         [[ $nsz == $sz ]] || error "New size wrong $nsz != $sz"
2986 }
2987 run_test 34h "ftruncate file under grouplock should not block"
2988
2989 test_35a() {
2990         cp /bin/sh $DIR/f35a
2991         chmod 444 $DIR/f35a
2992         chown $RUNAS_ID $DIR/f35a
2993         $RUNAS $DIR/f35a && error || true
2994         rm $DIR/f35a
2995 }
2996 run_test 35a "exec file with mode 444 (should return and not leak)"
2997
2998 test_36a() {
2999         rm -f $DIR/f36
3000         utime $DIR/f36 || error
3001 }
3002 run_test 36a "MDS utime check (mknod, utime)"
3003
3004 test_36b() {
3005         echo "" > $DIR/f36
3006         utime $DIR/f36 || error
3007 }
3008 run_test 36b "OST utime check (open, utime)"
3009
3010 test_36c() {
3011         rm -f $DIR/d36/f36
3012         test_mkdir $DIR/d36
3013         chown $RUNAS_ID $DIR/d36
3014         $RUNAS utime $DIR/d36/f36 || error
3015 }
3016 run_test 36c "non-root MDS utime check (mknod, utime)"
3017
3018 test_36d() {
3019         [ ! -d $DIR/d36 ] && test_36c
3020         echo "" > $DIR/d36/f36
3021         $RUNAS utime $DIR/d36/f36 || error
3022 }
3023 run_test 36d "non-root OST utime check (open, utime)"
3024
3025 test_36e() {
3026         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID -- skipping" && return
3027         test_mkdir $DIR/$tdir
3028         touch $DIR/$tdir/$tfile
3029         $RUNAS utime $DIR/$tdir/$tfile &&
3030                 error "utime worked, expected failure" || true
3031 }
3032 run_test 36e "utime on non-owned file (should return error)"
3033
3034 subr_36fh() {
3035         local fl="$1"
3036         local LANG_SAVE=$LANG
3037         local LC_LANG_SAVE=$LC_LANG
3038         export LANG=C LC_LANG=C # for date language
3039
3040         DATESTR="Dec 20  2000"
3041         test_mkdir $DIR/$tdir
3042         lctl set_param fail_loc=$fl
3043         date; date +%s
3044         cp /etc/hosts $DIR/$tdir/$tfile
3045         sync & # write RPC generated with "current" inode timestamp, but delayed
3046         sleep 1
3047         touch --date="$DATESTR" $DIR/$tdir/$tfile # setattr timestamp in past
3048         LS_BEFORE="`ls -l $DIR/$tdir/$tfile`" # old timestamp from client cache
3049         cancel_lru_locks osc
3050         LS_AFTER="`ls -l $DIR/$tdir/$tfile`"  # timestamp from OST object
3051         date; date +%s
3052         [ "$LS_BEFORE" != "$LS_AFTER" ] && \
3053                 echo "BEFORE: $LS_BEFORE" && \
3054                 echo "AFTER : $LS_AFTER" && \
3055                 echo "WANT  : $DATESTR" && \
3056                 error "$DIR/$tdir/$tfile timestamps changed" || true
3057
3058         export LANG=$LANG_SAVE LC_LANG=$LC_LANG_SAVE
3059 }
3060
3061 test_36f() {
3062         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3063         #define OBD_FAIL_OST_BRW_PAUSE_BULK 0x214
3064         subr_36fh "0x80000214"
3065 }
3066 run_test 36f "utime on file racing with OST BRW write =========="
3067
3068 test_36g() {
3069         remote_ost_nodsh && skip "remote OST with nodsh" && return
3070         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3071         local fmd_max_age
3072         local fmd_before
3073         local fmd_after
3074
3075         test_mkdir $DIR/$tdir
3076         fmd_max_age=$(do_facet ost1 \
3077                 "lctl get_param -n obdfilter.*.client_cache_seconds 2> /dev/null | \
3078                 head -n 1")
3079
3080         fmd_before=$(do_facet ost1 \
3081                 "awk '/ll_fmd_cache/ {print \\\$2}' /proc/slabinfo")
3082         touch $DIR/$tdir/$tfile
3083         sleep $((fmd_max_age + 12))
3084         fmd_after=$(do_facet ost1 \
3085                 "awk '/ll_fmd_cache/ {print \\\$2}' /proc/slabinfo")
3086
3087         echo "fmd_before: $fmd_before"
3088         echo "fmd_after: $fmd_after"
3089         [[ $fmd_after -gt $fmd_before ]] &&
3090                 echo "AFTER: $fmd_after > BEFORE: $fmd_before" &&
3091                 error "fmd didn't expire after ping" || true
3092 }
3093 run_test 36g "filter mod data cache expiry ====================="
3094
3095 test_36h() {
3096         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3097         #define OBD_FAIL_OST_BRW_PAUSE_BULK2 0x227
3098         subr_36fh "0x80000227"
3099 }
3100 run_test 36h "utime on file racing with OST BRW write =========="
3101
3102 test_36i() {
3103         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
3104
3105         test_mkdir $DIR/$tdir
3106         $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/striped_dir
3107
3108         local mtime=$(stat -c%Y $DIR/$tdir/striped_dir)
3109         local new_mtime=$((mtime + 200))
3110
3111         #change Modify time of striped dir
3112         touch -m -d @$new_mtime $DIR/$tdir/striped_dir ||
3113                         error "change mtime failed"
3114
3115         local got=$(stat -c%Y $DIR/$tdir/striped_dir)
3116
3117         [ "$new_mtime" = "$got" ] || error "expect $new_mtime got $got"
3118 }
3119 run_test 36i "change mtime on striped directory"
3120
3121 # test_37 - duplicate with tests 32q 32r
3122
3123 test_38() {
3124         local file=$DIR/$tfile
3125         touch $file
3126         openfile -f O_DIRECTORY $file
3127         local RC=$?
3128         local ENOTDIR=20
3129         [ $RC -eq 0 ] && error "opened file $file with O_DIRECTORY" || true
3130         [ $RC -eq $ENOTDIR ] || error "error $RC should be ENOTDIR ($ENOTDIR)"
3131 }
3132 run_test 38 "open a regular file with O_DIRECTORY should return -ENOTDIR ==="
3133
3134 test_39a() { # was test_39
3135         touch $DIR/$tfile
3136         touch $DIR/${tfile}2
3137 #       ls -l  $DIR/$tfile $DIR/${tfile}2
3138 #       ls -lu  $DIR/$tfile $DIR/${tfile}2
3139 #       ls -lc  $DIR/$tfile $DIR/${tfile}2
3140         sleep 2
3141         $OPENFILE -f O_CREAT:O_TRUNC:O_WRONLY $DIR/${tfile}2
3142         if [ ! $DIR/${tfile}2 -nt $DIR/$tfile ]; then
3143                 echo "mtime"
3144                 ls -l --full-time $DIR/$tfile $DIR/${tfile}2
3145                 echo "atime"
3146                 ls -lu --full-time $DIR/$tfile $DIR/${tfile}2
3147                 echo "ctime"
3148                 ls -lc --full-time $DIR/$tfile $DIR/${tfile}2
3149                 error "O_TRUNC didn't change timestamps"
3150         fi
3151 }
3152 run_test 39a "mtime changed on create"
3153
3154 test_39b() {
3155         test_mkdir -c1 $DIR/$tdir
3156         cp -p /etc/passwd $DIR/$tdir/fopen
3157         cp -p /etc/passwd $DIR/$tdir/flink
3158         cp -p /etc/passwd $DIR/$tdir/funlink
3159         cp -p /etc/passwd $DIR/$tdir/frename
3160         ln $DIR/$tdir/funlink $DIR/$tdir/funlink2
3161
3162         sleep 1
3163         echo "aaaaaa" >> $DIR/$tdir/fopen
3164         echo "aaaaaa" >> $DIR/$tdir/flink
3165         echo "aaaaaa" >> $DIR/$tdir/funlink
3166         echo "aaaaaa" >> $DIR/$tdir/frename
3167
3168         local open_new=`stat -c %Y $DIR/$tdir/fopen`
3169         local link_new=`stat -c %Y $DIR/$tdir/flink`
3170         local unlink_new=`stat -c %Y $DIR/$tdir/funlink`
3171         local rename_new=`stat -c %Y $DIR/$tdir/frename`
3172
3173         cat $DIR/$tdir/fopen > /dev/null
3174         ln $DIR/$tdir/flink $DIR/$tdir/flink2
3175         rm -f $DIR/$tdir/funlink2
3176         mv -f $DIR/$tdir/frename $DIR/$tdir/frename2
3177
3178         for (( i=0; i < 2; i++ )) ; do
3179                 local open_new2=`stat -c %Y $DIR/$tdir/fopen`
3180                 local link_new2=`stat -c %Y $DIR/$tdir/flink`
3181                 local unlink_new2=`stat -c %Y $DIR/$tdir/funlink`
3182                 local rename_new2=`stat -c %Y $DIR/$tdir/frename2`
3183
3184                 [ $open_new2 -eq $open_new ] || error "open file reverses mtime"
3185                 [ $link_new2 -eq $link_new ] || error "link file reverses mtime"
3186                 [ $unlink_new2 -eq $unlink_new ] || error "unlink file reverses mtime"
3187                 [ $rename_new2 -eq $rename_new ] || error "rename file reverses mtime"
3188
3189                 cancel_lru_locks osc
3190                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3191         done
3192 }
3193 run_test 39b "mtime change on open, link, unlink, rename  ======"
3194
3195 # this should be set to past
3196 TEST_39_MTIME=`date -d "1 year ago" +%s`
3197
3198 # bug 11063
3199 test_39c() {
3200         touch $DIR1/$tfile
3201         sleep 2
3202         local mtime0=`stat -c %Y $DIR1/$tfile`
3203
3204         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3205         local mtime1=`stat -c %Y $DIR1/$tfile`
3206         [ "$mtime1" = $TEST_39_MTIME ] || \
3207                 error "mtime is not set to past: $mtime1, should be $TEST_39_MTIME"
3208
3209         local d1=`date +%s`
3210         echo hello >> $DIR1/$tfile
3211         local d2=`date +%s`
3212         local mtime2=`stat -c %Y $DIR1/$tfile`
3213         [ "$mtime2" -ge "$d1" ] && [ "$mtime2" -le "$d2" ] || \
3214                 error "mtime is not updated on write: $d1 <= $mtime2 <= $d2"
3215
3216         mv $DIR1/$tfile $DIR1/$tfile-1
3217
3218         for (( i=0; i < 2; i++ )) ; do
3219                 local mtime3=`stat -c %Y $DIR1/$tfile-1`
3220                 [ "$mtime2" = "$mtime3" ] || \
3221                         error "mtime ($mtime2) changed (to $mtime3) on rename"
3222
3223                 cancel_lru_locks osc
3224                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3225         done
3226 }
3227 run_test 39c "mtime change on rename ==========================="
3228
3229 # bug 21114
3230 test_39d() {
3231         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3232         touch $DIR1/$tfile
3233
3234         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3235
3236         for (( i=0; i < 2; i++ )) ; do
3237                 local mtime=`stat -c %Y $DIR1/$tfile`
3238                 [ $mtime = $TEST_39_MTIME ] || \
3239                         error "mtime($mtime) is not set to $TEST_39_MTIME"
3240
3241                 cancel_lru_locks osc
3242                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3243         done
3244 }
3245 run_test 39d "create, utime, stat =============================="
3246
3247 # bug 21114
3248 test_39e() {
3249         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3250         touch $DIR1/$tfile
3251         local mtime1=`stat -c %Y $DIR1/$tfile`
3252
3253         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3254
3255         for (( i=0; i < 2; i++ )) ; do
3256                 local mtime2=`stat -c %Y $DIR1/$tfile`
3257                 [ $mtime2 = $TEST_39_MTIME ] || \
3258                         error "mtime($mtime2) is not set to $TEST_39_MTIME"
3259
3260                 cancel_lru_locks osc
3261                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3262         done
3263 }
3264 run_test 39e "create, stat, utime, stat ========================"
3265
3266 # bug 21114
3267 test_39f() {
3268         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3269         touch $DIR1/$tfile
3270         mtime1=`stat -c %Y $DIR1/$tfile`
3271
3272         sleep 2
3273         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3274
3275         for (( i=0; i < 2; i++ )) ; do
3276                 local mtime2=`stat -c %Y $DIR1/$tfile`
3277                 [ $mtime2 = $TEST_39_MTIME ] || \
3278                         error "mtime($mtime2) is not set to $TEST_39_MTIME"
3279
3280                 cancel_lru_locks osc
3281                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3282         done
3283 }
3284 run_test 39f "create, stat, sleep, utime, stat ================="
3285
3286 # bug 11063
3287 test_39g() {
3288         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3289         echo hello >> $DIR1/$tfile
3290         local mtime1=`stat -c %Y $DIR1/$tfile`
3291
3292         sleep 2
3293         chmod o+r $DIR1/$tfile
3294
3295         for (( i=0; i < 2; i++ )) ; do
3296                 local mtime2=`stat -c %Y $DIR1/$tfile`
3297                 [ "$mtime1" = "$mtime2" ] || \
3298                         error "lost mtime: $mtime2, should be $mtime1"
3299
3300                 cancel_lru_locks osc
3301                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3302         done
3303 }
3304 run_test 39g "write, chmod, stat ==============================="
3305
3306 # bug 11063
3307 test_39h() {
3308         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3309         touch $DIR1/$tfile
3310         sleep 1
3311
3312         local d1=`date`
3313         echo hello >> $DIR1/$tfile
3314         local mtime1=`stat -c %Y $DIR1/$tfile`
3315
3316         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3317         local d2=`date`
3318         if [ "$d1" != "$d2" ]; then
3319                 echo "write and touch not within one second"
3320         else
3321                 for (( i=0; i < 2; i++ )) ; do
3322                         local mtime2=`stat -c %Y $DIR1/$tfile`
3323                         [ "$mtime2" = $TEST_39_MTIME ] || \
3324                                 error "lost mtime: $mtime2, should be $TEST_39_MTIME"
3325
3326                         cancel_lru_locks osc
3327                         if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3328                 done
3329         fi
3330 }
3331 run_test 39h "write, utime within one second, stat ============="
3332
3333 test_39i() {
3334         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3335         touch $DIR1/$tfile
3336         sleep 1
3337
3338         echo hello >> $DIR1/$tfile
3339         local mtime1=`stat -c %Y $DIR1/$tfile`
3340
3341         mv $DIR1/$tfile $DIR1/$tfile-1
3342
3343         for (( i=0; i < 2; i++ )) ; do
3344                 local mtime2=`stat -c %Y $DIR1/$tfile-1`
3345
3346                 [ "$mtime1" = "$mtime2" ] || \
3347                         error "lost mtime: $mtime2, should be $mtime1"
3348
3349                 cancel_lru_locks osc
3350                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3351         done
3352 }
3353 run_test 39i "write, rename, stat =============================="
3354
3355 test_39j() {
3356         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3357         start_full_debug_logging
3358         touch $DIR1/$tfile
3359         sleep 1
3360
3361         #define OBD_FAIL_OSC_DELAY_SETTIME       0x412
3362         lctl set_param fail_loc=0x80000412
3363         multiop_bg_pause $DIR1/$tfile oO_RDWR:w2097152_c ||
3364                 error "multiop failed"
3365         local multipid=$!
3366         local mtime1=`stat -c %Y $DIR1/$tfile`
3367
3368         mv $DIR1/$tfile $DIR1/$tfile-1
3369
3370         kill -USR1 $multipid
3371         wait $multipid || error "multiop close failed"
3372
3373         for (( i=0; i < 2; i++ )) ; do
3374                 local mtime2=`stat -c %Y $DIR1/$tfile-1`
3375                 [ "$mtime1" = "$mtime2" ] ||
3376                         error "mtime is lost on close: $mtime2, " \
3377                               "should be $mtime1"
3378
3379                 cancel_lru_locks osc
3380                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3381         done
3382         lctl set_param fail_loc=0
3383         stop_full_debug_logging
3384 }
3385 run_test 39j "write, rename, close, stat ======================="
3386
3387 test_39k() {
3388         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3389         touch $DIR1/$tfile
3390         sleep 1
3391
3392         multiop_bg_pause $DIR1/$tfile oO_RDWR:w2097152_c || error "multiop failed"
3393         local multipid=$!
3394         local mtime1=`stat -c %Y $DIR1/$tfile`
3395
3396         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3397
3398         kill -USR1 $multipid
3399         wait $multipid || error "multiop close failed"
3400
3401         for (( i=0; i < 2; i++ )) ; do
3402                 local mtime2=`stat -c %Y $DIR1/$tfile`
3403
3404                 [ "$mtime2" = $TEST_39_MTIME ] || \
3405                         error "mtime is lost on close: $mtime2, should be $TEST_39_MTIME"
3406
3407                 cancel_lru_locks osc
3408                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3409         done
3410 }
3411 run_test 39k "write, utime, close, stat ========================"
3412
3413 # this should be set to future
3414 TEST_39_ATIME=`date -d "1 year" +%s`
3415
3416 test_39l() {
3417         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3418         remote_mds_nodsh && skip "remote MDS with nodsh" && return
3419         local atime_diff=$(do_facet $SINGLEMDS \
3420                                 lctl get_param -n mdd.*MDT0000*.atime_diff)
3421         rm -rf $DIR/$tdir
3422         mkdir -p $DIR/$tdir
3423
3424         # test setting directory atime to future
3425         touch -a -d @$TEST_39_ATIME $DIR/$tdir
3426         local atime=$(stat -c %X $DIR/$tdir)
3427         [ "$atime" = $TEST_39_ATIME ] ||
3428                 error "atime is not set to future: $atime, $TEST_39_ATIME"
3429
3430         # test setting directory atime from future to now
3431         local now=$(date +%s)
3432         touch -a -d @$now $DIR/$tdir
3433
3434         atime=$(stat -c %X $DIR/$tdir)
3435         [ "$atime" -eq "$now"  ] ||
3436                 error "atime is not updated from future: $atime, $now"
3437
3438         do_facet $SINGLEMDS lctl set_param -n mdd.*MDT0000*.atime_diff=2
3439         sleep 3
3440
3441         # test setting directory atime when now > dir atime + atime_diff
3442         local d1=$(date +%s)
3443         ls $DIR/$tdir
3444         local d2=$(date +%s)
3445         cancel_lru_locks mdc
3446         atime=$(stat -c %X $DIR/$tdir)
3447         [ "$atime" -ge "$d1" -a "$atime" -le "$d2" ] ||
3448                 error "atime is not updated  : $atime, should be $d2"
3449
3450         do_facet $SINGLEMDS lctl set_param -n mdd.*MDT0000*.atime_diff=60
3451         sleep 3
3452
3453         # test not setting directory atime when now < dir atime + atime_diff
3454         ls $DIR/$tdir
3455         cancel_lru_locks mdc
3456         atime=$(stat -c %X $DIR/$tdir)
3457         [ "$atime" -ge "$d1" -a "$atime" -le "$d2" ] ||
3458                 error "atime is updated to $atime, should remain $d1<atime<$d2"
3459
3460         do_facet $SINGLEMDS \
3461                 lctl set_param -n mdd.*MDT0000*.atime_diff=$atime_diff
3462 }
3463 run_test 39l "directory atime update ==========================="
3464
3465 test_39m() {
3466         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3467         touch $DIR1/$tfile
3468         sleep 2
3469         local far_past_mtime=$(date -d "May 29 1953" +%s)
3470         local far_past_atime=$(date -d "Dec 17 1903" +%s)
3471
3472         touch -m -d @$far_past_mtime $DIR1/$tfile
3473         touch -a -d @$far_past_atime $DIR1/$tfile
3474
3475         for (( i=0; i < 2; i++ )) ; do
3476                 local timestamps=$(stat -c "%X %Y" $DIR1/$tfile)
3477                 [ "$timestamps" = "$far_past_atime $far_past_mtime" ] || \
3478                         error "atime or mtime set incorrectly"
3479
3480                 cancel_lru_locks osc
3481                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3482         done
3483 }
3484 run_test 39m "test atime and mtime before 1970"
3485
3486 test_39n() { # LU-3832
3487         remote_mds_nodsh && skip "remote MDS with nodsh" && return
3488         local atime_diff=$(do_facet $SINGLEMDS \
3489                 lctl get_param -n mdd.*MDT0000*.atime_diff)
3490         local atime0
3491         local atime1
3492         local atime2
3493
3494         do_facet $SINGLEMDS lctl set_param -n mdd.*MDT0000*.atime_diff=1
3495
3496         rm -rf $DIR/$tfile
3497         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 status=noxfer
3498         atime0=$(stat -c %X $DIR/$tfile)
3499
3500         sleep 5
3501         $MULTIOP $DIR/$tfile oO_RDONLY:O_NOATIME:r4096c
3502         atime1=$(stat -c %X $DIR/$tfile)
3503
3504         sleep 5
3505         cancel_lru_locks mdc
3506         cancel_lru_locks osc
3507         $MULTIOP $DIR/$tfile oO_RDONLY:O_NOATIME:r4096c
3508         atime2=$(stat -c %X $DIR/$tfile)
3509
3510         do_facet $SINGLEMDS \
3511                 lctl set_param -n mdd.*MDT0000*.atime_diff=$atime_diff
3512
3513         [ "$atime0" -eq "$atime1" ] || error "atime0 $atime0 != atime1 $atime1"
3514         [ "$atime1" -eq "$atime2" ] || error "atime0 $atime0 != atime1 $atime1"
3515 }
3516 run_test 39n "check that O_NOATIME is honored"
3517
3518 test_39o() {
3519         TESTDIR=$DIR/$tdir/$tfile
3520         [ -e $TESTDIR ] && rm -rf $TESTDIR
3521         mkdir -p $TESTDIR
3522         cd $TESTDIR
3523         links1=2
3524         ls
3525         mkdir a b
3526         ls
3527         links2=$(stat -c %h .)
3528         [ $(($links1 + 2)) != $links2 ] &&
3529                 error "wrong links count $(($links1 + 2)) != $links2"
3530         rmdir b
3531         links3=$(stat -c %h .)
3532         [ $(($links1 + 1)) != $links3 ] &&
3533                 error "wrong links count $links1 != $links3"
3534         return 0
3535 }
3536 run_test 39o "directory cached attributes updated after create"
3537
3538 test_39p() {
3539         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 2 MDTs" && return
3540         local MDTIDX=1
3541         TESTDIR=$DIR/$tdir/$tdir
3542         [ -e $TESTDIR ] && rm -rf $TESTDIR
3543         test_mkdir -p $TESTDIR
3544         cd $TESTDIR
3545         links1=2
3546         ls
3547         test_mkdir -i $MDTIDX $TESTDIR/remote_dir1
3548         test_mkdir -i $MDTIDX $TESTDIR/remote_dir2
3549         ls
3550         links2=$(stat -c %h .)
3551         [ $(($links1 + 2)) != $links2 ] &&
3552                 error "wrong links count $(($links1 + 2)) != $links2"
3553         rmdir remote_dir2
3554         links3=$(stat -c %h .)
3555         [ $(($links1 + 1)) != $links3 ] &&
3556                 error "wrong links count $links1 != $links3"
3557         return 0
3558 }
3559 run_test 39p "remote directory cached attributes updated after create ========"
3560
3561
3562 test_39q() { # LU-8041
3563         local testdir=$DIR/$tdir
3564         mkdir -p $testdir
3565         multiop_bg_pause $testdir D_c || error "multiop failed"
3566         local multipid=$!
3567         cancel_lru_locks mdc
3568         kill -USR1 $multipid
3569         local atime=$(stat -c %X $testdir)
3570         [ "$atime" -ne 0 ] || error "atime is zero"
3571 }
3572 run_test 39q "close won't zero out atime"
3573
3574 test_40() {
3575         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1
3576         $RUNAS $OPENFILE -f O_WRONLY:O_TRUNC $DIR/$tfile &&
3577                 error "openfile O_WRONLY:O_TRUNC $tfile failed"
3578         $CHECKSTAT -t file -s 4096 $DIR/$tfile ||
3579                 error "$tfile is not 4096 bytes in size"
3580 }
3581 run_test 40 "failed open(O_TRUNC) doesn't truncate ============="
3582
3583 test_41() {
3584         # bug 1553
3585         small_write $DIR/f41 18
3586 }
3587 run_test 41 "test small file write + fstat ====================="
3588
3589 count_ost_writes() {
3590         lctl get_param -n osc.*.stats |
3591                 awk -vwrites=0 '/ost_write/ { writes += $2 } \
3592                         END { printf("%0.0f", writes) }'
3593 }
3594
3595 # decent default
3596 WRITEBACK_SAVE=500
3597 DIRTY_RATIO_SAVE=40
3598 MAX_DIRTY_RATIO=50
3599 BG_DIRTY_RATIO_SAVE=10
3600 MAX_BG_DIRTY_RATIO=25
3601
3602 start_writeback() {
3603         trap 0
3604         # in 2.6, restore /proc/sys/vm/dirty_writeback_centisecs,
3605         # dirty_ratio, dirty_background_ratio
3606         if [ -f /proc/sys/vm/dirty_writeback_centisecs ]; then
3607                 sysctl -w vm.dirty_writeback_centisecs=$WRITEBACK_SAVE
3608                 sysctl -w vm.dirty_background_ratio=$BG_DIRTY_RATIO_SAVE
3609                 sysctl -w vm.dirty_ratio=$DIRTY_RATIO_SAVE
3610         else
3611                 # if file not here, we are a 2.4 kernel
3612                 kill -CONT `pidof kupdated`
3613         fi
3614 }
3615
3616 stop_writeback() {
3617         # setup the trap first, so someone cannot exit the test at the
3618         # exact wrong time and mess up a machine
3619         trap start_writeback EXIT
3620         # in 2.6, save and 0 /proc/sys/vm/dirty_writeback_centisecs
3621         if [ -f /proc/sys/vm/dirty_writeback_centisecs ]; then
3622                 WRITEBACK_SAVE=`sysctl -n vm.dirty_writeback_centisecs`
3623                 sysctl -w vm.dirty_writeback_centisecs=0
3624                 sysctl -w vm.dirty_writeback_centisecs=0
3625                 # save and increase /proc/sys/vm/dirty_ratio
3626                 DIRTY_RATIO_SAVE=`sysctl -n vm.dirty_ratio`
3627                 sysctl -w vm.dirty_ratio=$MAX_DIRTY_RATIO
3628                 # save and increase /proc/sys/vm/dirty_background_ratio
3629                 BG_DIRTY_RATIO_SAVE=`sysctl -n vm.dirty_background_ratio`
3630                 sysctl -w vm.dirty_background_ratio=$MAX_BG_DIRTY_RATIO
3631         else
3632                 # if file not here, we are a 2.4 kernel
3633                 kill -STOP `pidof kupdated`
3634         fi
3635 }
3636
3637 # ensure that all stripes have some grant before we test client-side cache
3638 setup_test42() {
3639         for i in `seq -f $DIR/f42-%g 1 $OSTCOUNT`; do
3640                 dd if=/dev/zero of=$i bs=4k count=1
3641                 rm $i
3642         done
3643 }
3644
3645 # Tests 42* verify that our behaviour is correct WRT caching, file closure,
3646 # file truncation, and file removal.
3647 test_42a() {
3648         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3649         setup_test42
3650         cancel_lru_locks osc
3651         stop_writeback
3652         sync; sleep 1; sync # just to be safe
3653         BEFOREWRITES=`count_ost_writes`
3654         lctl get_param -n osc.*[oO][sS][cC][_-]*.cur_grant_bytes | grep "[0-9]"
3655         dd if=/dev/zero of=$DIR/f42a bs=1024 count=100
3656         AFTERWRITES=`count_ost_writes`
3657         [ $BEFOREWRITES -eq $AFTERWRITES ] || \
3658                 error "$BEFOREWRITES < $AFTERWRITES"
3659         start_writeback
3660 }
3661 run_test 42a "ensure that we don't flush on close"
3662
3663 test_42b() {
3664         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3665         setup_test42
3666         cancel_lru_locks osc
3667         stop_writeback
3668         sync
3669         dd if=/dev/zero of=$DIR/f42b bs=1024 count=100
3670         BEFOREWRITES=$(count_ost_writes)
3671         $MUNLINK $DIR/f42b || error "$MUNLINK $DIR/f42b: $?"
3672         AFTERWRITES=$(count_ost_writes)
3673         if [[ $BEFOREWRITES -lt $AFTERWRITES ]]; then
3674                 error "$BEFOREWRITES < $AFTERWRITES on unlink"
3675         fi
3676         BEFOREWRITES=$(count_ost_writes)
3677         sync || error "sync: $?"
3678         AFTERWRITES=$(count_ost_writes)
3679         if [[ $BEFOREWRITES -lt $AFTERWRITES ]]; then
3680                 error "$BEFOREWRITES < $AFTERWRITES on sync"
3681         fi
3682         dmesg | grep 'error from obd_brw_async' && error 'error writing back'
3683         start_writeback
3684         return 0
3685 }
3686 run_test 42b "test destroy of file with cached dirty data ======"
3687
3688 # if these tests just want to test the effect of truncation,
3689 # they have to be very careful.  consider:
3690 # - the first open gets a {0,EOF}PR lock
3691 # - the first write conflicts and gets a {0, count-1}PW
3692 # - the rest of the writes are under {count,EOF}PW
3693 # - the open for truncate tries to match a {0,EOF}PR
3694 #   for the filesize and cancels the PWs.
3695 # any number of fixes (don't get {0,EOF} on open, match
3696 # composite locks, do smarter file size management) fix
3697 # this, but for now we want these tests to verify that
3698 # the cancellation with truncate intent works, so we
3699 # start the file with a full-file pw lock to match against
3700 # until the truncate.
3701 trunc_test() {
3702         test=$1
3703         file=$DIR/$test
3704         offset=$2
3705         cancel_lru_locks osc
3706         stop_writeback
3707         # prime the file with 0,EOF PW to match
3708         touch $file
3709         $TRUNCATE $file 0
3710         sync; sync
3711         # now the real test..
3712         dd if=/dev/zero of=$file bs=1024 count=100
3713         BEFOREWRITES=`count_ost_writes`
3714         $TRUNCATE $file $offset
3715         cancel_lru_locks osc
3716         AFTERWRITES=`count_ost_writes`
3717         start_writeback
3718 }
3719
3720 test_42c() {
3721         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3722         trunc_test 42c 1024
3723         [ $BEFOREWRITES -eq $AFTERWRITES ] && \
3724             error "beforewrites $BEFOREWRITES == afterwrites $AFTERWRITES on truncate"
3725         rm $file
3726 }
3727 run_test 42c "test partial truncate of file with cached dirty data"
3728
3729 test_42d() {
3730         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3731         trunc_test 42d 0
3732         [ $BEFOREWRITES -eq $AFTERWRITES ] || \
3733             error "beforewrites $BEFOREWRITES != afterwrites $AFTERWRITES on truncate"
3734         rm $file
3735 }
3736 run_test 42d "test complete truncate of file with cached dirty data"
3737
3738 test_42e() { # bug22074
3739         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3740         local TDIR=$DIR/${tdir}e
3741         local pagesz=$(page_size)
3742         local pages=16 # hardcoded 16 pages, don't change it.
3743         local files=$((OSTCOUNT * 500)) # hopefully 500 files on each OST
3744         local proc_osc0="osc.${FSNAME}-OST0000-osc-[^MDT]*"
3745         local max_dirty_mb
3746         local warmup_files
3747
3748         test_mkdir $DIR/${tdir}e
3749         $SETSTRIPE -c 1 $TDIR
3750         createmany -o $TDIR/f $files
3751
3752         max_dirty_mb=$($LCTL get_param -n $proc_osc0/max_dirty_mb)
3753
3754         # we assume that with $OSTCOUNT files, at least one of them will
3755         # be allocated on OST0.
3756         warmup_files=$((OSTCOUNT * max_dirty_mb))
3757         createmany -o $TDIR/w $warmup_files
3758
3759         # write a large amount of data into one file and sync, to get good
3760         # avail_grant number from OST.
3761         for ((i=0; i<$warmup_files; i++)); do
3762                 idx=$($GETSTRIPE -i $TDIR/w$i)
3763                 [ $idx -ne 0 ] && continue
3764                 dd if=/dev/zero of=$TDIR/w$i bs="$max_dirty_mb"M count=1
3765                 break
3766         done
3767         [[ $i -gt $warmup_files ]] && error "OST0 is still cold"
3768         sync
3769         $LCTL get_param $proc_osc0/cur_dirty_bytes
3770         $LCTL get_param $proc_osc0/cur_grant_bytes
3771
3772         # create as much dirty pages as we can while not to trigger the actual
3773         # RPCs directly. but depends on the env, VFS may trigger flush during this
3774         # period, hopefully we are good.
3775         for ((i=0; i<$warmup_files; i++)); do
3776                 idx=$($GETSTRIPE -i $TDIR/w$i)
3777                 [ $idx -ne 0 ] && continue
3778                 dd if=/dev/zero of=$TDIR/w$i bs=1M count=1 2>/dev/null
3779         done
3780         $LCTL get_param $proc_osc0/cur_dirty_bytes
3781         $LCTL get_param $proc_osc0/cur_grant_bytes
3782
3783         # perform the real test
3784         $LCTL set_param $proc_osc0/rpc_stats 0
3785         for ((;i<$files; i++)); do
3786                 [ $($GETSTRIPE -i $TDIR/f$i) -eq 0 ] || continue
3787                 dd if=/dev/zero of=$TDIR/f$i bs=$pagesz count=$pages 2>/dev/null
3788         done
3789         sync
3790         $LCTL get_param $proc_osc0/rpc_stats
3791
3792         local percent=0
3793         local have_ppr=false
3794         $LCTL get_param $proc_osc0/rpc_stats |
3795                 while read PPR RRPC RPCT RCUM BAR WRPC WPCT WCUM; do
3796                         # skip lines until we are at the RPC histogram data
3797                         [ "$PPR" == "pages" ] && have_ppr=true && continue
3798                         $have_ppr || continue
3799
3800                         # we only want the percent stat for < 16 pages
3801                         [[ $(echo $PPR | tr -d ':') -ge $pages ]] && break
3802
3803                         percent=$((percent + WPCT))
3804                         if [[ $percent -gt 15 ]]; then
3805                                 error "less than 16-pages write RPCs" \
3806                                       "$percent% > 15%"
3807                                 break
3808                         fi
3809                 done
3810         rm -rf $TDIR
3811 }
3812 run_test 42e "verify sub-RPC writes are not done synchronously"
3813
3814 test_43A() { # was test_43
3815         test_mkdir $DIR/$tdir
3816         cp -p /bin/ls $DIR/$tdir/$tfile
3817         $MULTIOP $DIR/$tdir/$tfile Ow_c &
3818         pid=$!
3819         # give multiop a chance to open
3820         sleep 1
3821
3822         $DIR/$tdir/$tfile && error "execute $DIR/$tdir/$tfile succeeded" || true
3823         kill -USR1 $pid
3824 }
3825 run_test 43A "execution of file opened for write should return -ETXTBSY"
3826
3827 test_43a() {
3828         test_mkdir $DIR/$tdir
3829         cp -p $(which $MULTIOP) $DIR/$tdir/multiop ||
3830                 cp -p multiop $DIR/$tdir/multiop
3831         MULTIOP_PROG=$DIR/$tdir/multiop multiop_bg_pause $TMP/$tfile.junk O_c ||
3832                 error "multiop open $TMP/$tfile.junk failed"
3833         MULTIOP_PID=$!
3834         $MULTIOP $DIR/$tdir/multiop Oc && error "expected error, got success"
3835         kill -USR1 $MULTIOP_PID || error "kill -USR1 PID $MULTIOP_PID failed"
3836         wait $MULTIOP_PID || error "wait PID $MULTIOP_PID failed"
3837 }
3838 run_test 43a "open(RDWR) of file being executed should return -ETXTBSY"
3839
3840 test_43b() {
3841         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3842         test_mkdir $DIR/$tdir
3843         cp -p $(which $MULTIOP) $DIR/$tdir/multiop ||
3844                 cp -p multiop $DIR/$tdir/multiop
3845         MULTIOP_PROG=$DIR/$tdir/multiop multiop_bg_pause $TMP/$tfile.junk O_c ||
3846                 error "multiop open $TMP/$tfile.junk failed"
3847         MULTIOP_PID=$!
3848         $TRUNCATE $DIR/$tdir/multiop 0 && error "expected error, got success"
3849         kill -USR1 $MULTIOP_PID || error "kill -USR1 PID $MULTIOP_PID failed"
3850         wait $MULTIOP_PID || error "wait PID $MULTIOP_PID failed"
3851 }
3852 run_test 43b "truncate of file being executed should return -ETXTBSY"
3853
3854 test_43c() {
3855         local testdir="$DIR/$tdir"
3856         test_mkdir $testdir
3857         cp $SHELL $testdir/
3858         ( cd $(dirname $SHELL) && md5sum $(basename $SHELL) ) |
3859                 ( cd $testdir && md5sum -c )
3860 }
3861 run_test 43c "md5sum of copy into lustre"
3862
3863 test_44A() { # was test_44
3864         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
3865         dd if=/dev/zero of=$DIR/f1 bs=4k count=1 seek=1023
3866         dd if=$DIR/f1 bs=4k count=1 > /dev/null
3867 }
3868 run_test 44A "zero length read from a sparse stripe"
3869
3870 test_44a() {
3871         local nstripe=$($LCTL lov_getconfig $DIR | grep default_stripe_count: |
3872                 awk '{ print $2 }')
3873         [ -z "$nstripe" ] && skip "can't get stripe info" && return
3874         [[ $nstripe -gt $OSTCOUNT ]] &&
3875             skip "Wrong default_stripe_count: $nstripe (OSTCOUNT: $OSTCOUNT)" &&
3876             return
3877         local stride=$($LCTL lov_getconfig $DIR | grep default_stripe_size: |
3878                 awk '{ print $2 }')
3879         if [[ $nstripe -eq 0 || $nstripe -eq -1 ]]; then
3880                 nstripe=$($LCTL lov_getconfig $DIR | grep obd_count: |
3881                         awk '{ print $2 }')
3882         fi
3883
3884         OFFSETS="0 $((stride/2)) $((stride-1))"
3885         for offset in $OFFSETS; do
3886                 for i in $(seq 0 $((nstripe-1))); do
3887                         local GLOBALOFFSETS=""
3888                         # size in Bytes
3889                         local size=$((((i + 2 * $nstripe )*$stride + $offset)))
3890                         local myfn=$DIR/d44a-$size
3891                         echo "--------writing $myfn at $size"
3892                         ll_sparseness_write $myfn $size ||
3893                                 error "ll_sparseness_write"
3894                         GLOBALOFFSETS="$GLOBALOFFSETS $size"
3895                         ll_sparseness_verify $myfn $GLOBALOFFSETS ||
3896                                 error "ll_sparseness_verify $GLOBALOFFSETS"
3897
3898                         for j in $(seq 0 $((nstripe-1))); do
3899                                 # size in Bytes
3900                                 size=$((((j + $nstripe )*$stride + $offset)))
3901                                 ll_sparseness_write $myfn $size ||
3902                                         error "ll_sparseness_write"
3903                                 GLOBALOFFSETS="$GLOBALOFFSETS $size"
3904                         done
3905                         ll_sparseness_verify $myfn $GLOBALOFFSETS ||
3906                                 error "ll_sparseness_verify $GLOBALOFFSETS"
3907                         rm -f $myfn
3908                 done
3909         done
3910 }
3911 run_test 44a "test sparse pwrite ==============================="
3912
3913 dirty_osc_total() {
3914         tot=0
3915         for d in `lctl get_param -n osc.*.cur_dirty_bytes`; do
3916                 tot=$(($tot + $d))
3917         done
3918         echo $tot
3919 }
3920 do_dirty_record() {
3921         before=`dirty_osc_total`
3922         echo executing "\"$*\""
3923         eval $*
3924         after=`dirty_osc_total`
3925         echo before $before, after $after
3926 }
3927 test_45() {
3928         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3929         f="$DIR/f45"
3930         # Obtain grants from OST if it supports it
3931         echo blah > ${f}_grant
3932         stop_writeback
3933         sync
3934         do_dirty_record "echo blah > $f"
3935         [[ $before -eq $after ]] && error "write wasn't cached"
3936         do_dirty_record "> $f"
3937         [[ $before -gt $after ]] || error "truncate didn't lower dirty count"
3938         do_dirty_record "echo blah > $f"
3939         [[ $before -eq $after ]] && error "write wasn't cached"
3940         do_dirty_record "sync"
3941         [[ $before -gt $after ]] || error "writeback didn't lower dirty count"
3942         do_dirty_record "echo blah > $f"
3943         [[ $before -eq $after ]] && error "write wasn't cached"
3944         do_dirty_record "cancel_lru_locks osc"
3945         [[ $before -gt $after ]] ||
3946                 error "lock cancellation didn't lower dirty count"
3947         start_writeback
3948 }
3949 run_test 45 "osc io page accounting ============================"
3950
3951 # in a 2 stripe file (lov.sh), page 1023 maps to page 511 in its object.  this
3952 # test tickles a bug where re-dirtying a page was failing to be mapped to the
3953 # objects offset and an assert hit when an rpc was built with 1023's mapped
3954 # offset 511 and 511's raw 511 offset. it also found general redirtying bugs.
3955 test_46() {
3956         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3957         f="$DIR/f46"
3958         stop_writeback
3959         sync
3960         dd if=/dev/zero of=$f bs=`page_size` seek=511 count=1
3961         sync
3962         dd conv=notrunc if=/dev/zero of=$f bs=`page_size` seek=1023 count=1
3963         dd conv=notrunc if=/dev/zero of=$f bs=`page_size` seek=511 count=1
3964         sync
3965         start_writeback
3966 }
3967 run_test 46 "dirtying a previously written page ================"
3968
3969 # test_47 is removed "Device nodes check" is moved to test_28
3970
3971 test_48a() { # bug 2399
3972         [ $(facet_fstype $SINGLEMDS) = "zfs" ] &&
3973         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.63) ] &&
3974                 skip "MDS prior to 2.3.63 handle ZFS dir .. incorrectly" &&
3975                 return
3976         test_mkdir $DIR/$tdir
3977         cd $DIR/$tdir
3978         mv $DIR/$tdir $DIR/$tdir.new || error "move directory failed"
3979         test_mkdir $DIR/$tdir
3980         touch foo || error "'touch foo' failed after recreating cwd"
3981         test_mkdir bar
3982         touch .foo || error "'touch .foo' failed after recreating cwd"
3983         test_mkdir .bar
3984         ls . > /dev/null || error "'ls .' failed after recreating cwd"
3985         ls .. > /dev/null || error "'ls ..' failed after removing cwd"
3986         cd . || error "'cd .' failed after recreating cwd"
3987         mkdir . && error "'mkdir .' worked after recreating cwd"
3988         rmdir . && error "'rmdir .' worked after recreating cwd"
3989         ln -s . baz || error "'ln -s .' failed after recreating cwd"
3990         cd .. || error "'cd ..' failed after recreating cwd"
3991 }
3992 run_test 48a "Access renamed working dir (should return errors)="
3993
3994 test_48b() { # bug 2399
3995         rm -rf $DIR/$tdir
3996         test_mkdir $DIR/$tdir
3997         cd $DIR/$tdir
3998         rmdir $DIR/$tdir || error "remove cwd $DIR/$tdir failed"
3999         touch foo && error "'touch foo' worked after removing cwd"
4000         mkdir foo && error "'mkdir foo' worked after removing cwd"
4001         touch .foo && error "'touch .foo' worked after removing cwd"
4002         mkdir .foo && error "'mkdir .foo' worked after removing cwd"
4003         ls . > /dev/null && error "'ls .' worked after removing cwd"
4004         ls .. > /dev/null || error "'ls ..' failed after removing cwd"
4005         mkdir . && error "'mkdir .' worked after removing cwd"
4006         rmdir . && error "'rmdir .' worked after removing cwd"
4007         ln -s . foo && error "'ln -s .' worked after removing cwd"
4008         cd .. || echo "'cd ..' failed after removing cwd `pwd`"  #bug 3517
4009 }
4010 run_test 48b "Access removed working dir (should return errors)="
4011
4012 test_48c() { # bug 2350
4013         #lctl set_param debug=-1
4014         #set -vx
4015         rm -rf $DIR/$tdir
4016         test_mkdir -p $DIR/$tdir/dir
4017         cd $DIR/$tdir/dir
4018         $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
4019         $TRACE touch foo && error "touch foo worked after removing cwd"
4020         $TRACE mkdir foo && error "'mkdir foo' worked after removing cwd"
4021         touch .foo && error "touch .foo worked after removing cwd"
4022         mkdir .foo && error "mkdir .foo worked after removing cwd"
4023         $TRACE ls . && error "'ls .' worked after removing cwd"
4024         $TRACE ls .. || error "'ls ..' failed after removing cwd"
4025         $TRACE mkdir . && error "'mkdir .' worked after removing cwd"
4026         $TRACE rmdir . && error "'rmdir .' worked after removing cwd"
4027         $TRACE ln -s . foo && error "'ln -s .' worked after removing cwd"
4028         $TRACE cd .. || echo "'cd ..' failed after removing cwd `pwd`" #bug 3415
4029 }
4030 run_test 48c "Access removed working subdir (should return errors)"
4031
4032 test_48d() { # bug 2350
4033         #lctl set_param debug=-1
4034         #set -vx
4035         rm -rf $DIR/$tdir
4036         test_mkdir -p $DIR/$tdir/dir
4037         cd $DIR/$tdir/dir
4038         $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
4039         $TRACE rmdir $DIR/$tdir || error "remove parent $DIR/$tdir failed"
4040         $TRACE touch foo && error "'touch foo' worked after removing parent"
4041         $TRACE mkdir foo && error "mkdir foo worked after removing parent"
4042         touch .foo && error "'touch .foo' worked after removing parent"
4043         mkdir .foo && error "mkdir .foo worked after removing parent"
4044         $TRACE ls . && error "'ls .' worked after removing parent"
4045         $TRACE ls .. && error "'ls ..' worked after removing parent"
4046         $TRACE mkdir . && error "'mkdir .' worked after removing parent"
4047         $TRACE rmdir . && error "'rmdir .' worked after removing parent"
4048         $TRACE ln -s . foo && error "'ln -s .' worked after removing parent"
4049         true
4050 }
4051 run_test 48d "Access removed parent subdir (should return errors)"
4052
4053 test_48e() { # bug 4134
4054         #lctl set_param debug=-1
4055         #set -vx
4056         rm -rf $DIR/$tdir
4057         test_mkdir -p $DIR/$tdir/dir
4058         cd $DIR/$tdir/dir
4059         $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
4060         $TRACE rmdir $DIR/$tdir || error "remove parent $DIR/$tdir failed"
4061         $TRACE touch $DIR/$tdir || error "'touch $DIR/$tdir' failed"
4062         $TRACE chmod +x $DIR/$tdir || error "'chmod +x $DIR/$tdir' failed"
4063         # On a buggy kernel addition of "touch foo" after cd .. will
4064         # produce kernel oops in lookup_hash_it
4065         touch ../foo && error "'cd ..' worked after recreate parent"
4066         cd $DIR
4067         $TRACE rm $DIR/$tdir || error "rm '$DIR/$tdir' failed"
4068 }
4069 run_test 48e "Access to recreated parent subdir (should return errors)"
4070
4071 test_49() { # LU-1030
4072         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4073         remote_ost_nodsh && skip "remote OST with nodsh" && return
4074         # get ost1 size - lustre-OST0000
4075         ost1_size=$(do_facet ost1 $LFS df | grep ${ost1_svc} |
4076                 awk '{ print $4 }')
4077         # write 800M at maximum
4078         [[ $ost1_size -lt 2 ]] && ost1_size=2
4079         [[ $ost1_size -gt 819200 ]] && ost1_size=819200
4080
4081         $SETSTRIPE -c 1 -i 0 $DIR/$tfile
4082         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((ost1_size >> 2)) &
4083         local dd_pid=$!
4084
4085         # change max_pages_per_rpc while writing the file
4086         local osc1_mppc=osc.$(get_osc_import_name client ost1).max_pages_per_rpc
4087         local orig_mppc=$($LCTL get_param -n $osc1_mppc)
4088         # loop until dd process exits
4089         while ps ax -opid | grep -wq $dd_pid; do
4090                 $LCTL set_param $osc1_mppc=$((RANDOM % 256 + 1))
4091                 sleep $((RANDOM % 5 + 1))
4092         done
4093         # restore original max_pages_per_rpc
4094         $LCTL set_param $osc1_mppc=$orig_mppc
4095         rm $DIR/$tfile || error "rm $DIR/$tfile failed"
4096 }
4097 run_test 49 "Change max_pages_per_rpc won't break osc extent"
4098
4099 test_50() {
4100         # bug 1485
4101         test_mkdir $DIR/$tdir
4102         cd $DIR/$tdir
4103         ls /proc/$$/cwd || error "ls /proc/$$/cwd failed"
4104 }
4105 run_test 50 "special situations: /proc symlinks  ==============="
4106
4107 test_51a() {    # was test_51
4108         # bug 1516 - create an empty entry right after ".." then split dir
4109         test_mkdir -c1 $DIR/$tdir
4110         touch $DIR/$tdir/foo
4111         $MCREATE $DIR/$tdir/bar
4112         rm $DIR/$tdir/foo
4113         createmany -m $DIR/$tdir/longfile 201
4114         FNUM=202
4115         while [[ $(ls -sd $DIR/$tdir | awk '{ print $1 }') -eq 4 ]]; do
4116                 $MCREATE $DIR/$tdir/longfile$FNUM
4117                 FNUM=$(($FNUM + 1))
4118                 echo -n "+"
4119         done
4120         echo
4121         ls -l $DIR/$tdir > /dev/null || error "ls -l $DIR/$tdir failed"
4122 }
4123 run_test 51a "special situations: split htree with empty entry =="
4124
4125 cleanup_print_lfs_df () {
4126         trap 0
4127         $LFS df
4128         $LFS df -i
4129 }
4130
4131 test_51b() {
4132         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4133         local dir=$DIR/$tdir
4134
4135         local nrdirs=$((65536 + 100))
4136
4137         # cleanup the directory
4138         rm -fr $dir
4139
4140         test_mkdir -c1 $dir
4141
4142         $LFS df
4143         $LFS df -i
4144         local mdtidx=$(printf "%04x" $($LFS getstripe -M $dir))
4145         local numfree=$(lctl get_param -n mdc.$FSNAME-MDT$mdtidx*.filesfree)
4146         [[ $numfree -lt $nrdirs ]] &&
4147                 skip "not enough free inodes ($numfree) on MDT$mdtidx" &&
4148                 return
4149
4150         # need to check free space for the directories as well
4151         local blkfree=$(lctl get_param -n mdc.$FSNAME-MDT$mdtidx*.kbytesavail)
4152         numfree=$(( blkfree / $(fs_inode_ksize) ))
4153         [[ $numfree -lt $nrdirs ]] && skip "not enough blocks ($numfree)" &&
4154                 return
4155
4156         trap cleanup_print_lfsdf EXIT
4157
4158         # create files
4159         createmany -d $dir/d $nrdirs ||
4160                 error "failed to create $nrdirs subdirs in MDT$mdtidx:$dir"
4161
4162         # really created :
4163         nrdirs=$(ls -U $dir | wc -l)
4164
4165         # unlink all but 100 subdirectories, then check it still works
4166         local left=100
4167         local delete=$((nrdirs - left))
4168
4169         $LFS df
4170         $LFS df -i
4171
4172         # for ldiskfs the nlink count should be 1, but this is OSD specific
4173         # and so this is listed for informational purposes only
4174         echo "nlink before: $(stat -c %h $dir), created before: $nrdirs"
4175         unlinkmany -d $dir/d $delete ||
4176                 error "unlink of first $delete subdirs failed"
4177
4178         echo "nlink between: $(stat -c %h $dir)"
4179         local found=$(ls -U $dir | wc -l)
4180         [ $found -ne $left ] &&
4181                 error "can't find subdirs: found only $found, expected $left"
4182
4183         unlinkmany -d $dir/d $delete $left ||
4184                 error "unlink of second $left subdirs failed"
4185         # regardless of whether the backing filesystem tracks nlink accurately
4186         # or not, the nlink count shouldn't be more than "." and ".." here
4187         local after=$(stat -c %h $dir)
4188         [[ $after -gt 2 ]] && error "nlink after: $after > 2" ||
4189                 echo "nlink after: $after"
4190
4191         cleanup_print_lfs_df
4192 }
4193 run_test 51b "exceed 64k subdirectory nlink limit on create, verify unlink"
4194
4195 test_51d() {
4196         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4197         [[ $OSTCOUNT -lt 3 ]] && skip_env "needs >= 3 OSTs" && return
4198         test_mkdir $DIR/$tdir
4199         createmany -o $DIR/$tdir/t- 1000
4200         $LFS getstripe $DIR/$tdir > $TMP/$tfile
4201         for N in $(seq 0 $((OSTCOUNT - 1))); do
4202                 OBJS[$N]=$(awk -vobjs=0 '($1 == '$N') { objs += 1 } \
4203                         END { printf("%0.0f", objs) }' $TMP/$tfile)
4204                 OBJS0[$N]=$(grep -A 1 idx $TMP/$tfile | awk -vobjs=0 \
4205                         '($1 == '$N') { objs += 1 } \
4206                         END { printf("%0.0f", objs) }')
4207                 log "OST$N has ${OBJS[$N]} objects, ${OBJS0[$N]} are index 0"
4208         done
4209         unlinkmany $DIR/$tdir/t- 1000
4210
4211         NLAST=0
4212         for N in $(seq 1 $((OSTCOUNT - 1))); do
4213                 [[ ${OBJS[$N]} -lt $((${OBJS[$NLAST]} - 20)) ]] &&
4214                         error "OST $N has less objects vs OST $NLAST" \
4215                               " (${OBJS[$N]} < ${OBJS[$NLAST]}"
4216                 [[ ${OBJS[$N]} -gt $((${OBJS[$NLAST]} + 20)) ]] &&
4217                         error "OST $N has less objects vs OST $NLAST" \
4218                               " (${OBJS[$N]} < ${OBJS[$NLAST]}"
4219
4220                 [[ ${OBJS0[$N]} -lt $((${OBJS0[$NLAST]} - 20)) ]] &&
4221                         error "OST $N has less #0 objects vs OST $NLAST" \
4222                               " (${OBJS0[$N]} < ${OBJS0[$NLAST]}"
4223                 [[ ${OBJS0[$N]} -gt $((${OBJS0[$NLAST]} + 20)) ]] &&
4224                         error "OST $N has less #0 objects vs OST $NLAST" \
4225                               " (${OBJS0[$N]} < ${OBJS0[$NLAST]}"
4226                 NLAST=$N
4227         done
4228         rm -f $TMP/$tfile
4229 }
4230 run_test 51d "check object distribution"
4231
4232 test_51e() {
4233         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
4234                 skip "ldiskfs only test"
4235                 return
4236         fi
4237
4238         test_mkdir -c1 $DIR/$tdir
4239         test_mkdir -c1 $DIR/$tdir/d0
4240
4241         touch $DIR/$tdir/d0/foo
4242         createmany -l $DIR/$tdir/d0/foo $DIR/$tdir/d0/f- 65001 &&
4243                 error "file exceed 65000 nlink limit!"
4244         unlinkmany $DIR/$tdir/d0/f- 65001
4245         return 0
4246 }
4247 run_test 51e "check file nlink limit"
4248
4249 test_51f() {
4250         test_mkdir $DIR/$tdir
4251
4252         local max=100000
4253         local ulimit_old=$(ulimit -n)
4254         local spare=20 # number of spare fd's for scripts/libraries, etc.
4255         local mdt=$(lfs getstripe -M $DIR/$tdir)
4256         local numfree=$(lfs df -i $DIR/$tdir | awk '/MDT:'$mdt'/ { print $4 }')
4257
4258         echo "MDT$mdt numfree=$numfree, max=$max"
4259         [[ $numfree -gt $max ]] && numfree=$max || numfree=$((numfree * 7 / 8))
4260         if [ $((numfree + spare)) -gt $ulimit_old ]; then
4261                 while ! ulimit -n $((numfree + spare)); do
4262                         numfree=$((numfree * 3 / 4))
4263                 done
4264                 echo "changed ulimit from $ulimit_old to $((numfree + spare))"
4265         else
4266                 echo "left ulimit at $ulimit_old"
4267         fi
4268
4269         createmany -o -k -t 120 $DIR/$tdir/f $numfree ||
4270                 error "create+open $numfree files in $DIR/$tdir failed"
4271         ulimit -n $ulimit_old
4272
4273         # if createmany exits at 120s there will be fewer than $numfree files
4274         unlinkmany $DIR/$tdir/f $numfree || true
4275 }
4276 run_test 51f "check many open files limit"
4277
4278 test_52a() {
4279         [ -f $DIR/$tdir/foo ] && chattr -a $DIR/$tdir/foo
4280         test_mkdir $DIR/$tdir
4281         touch $DIR/$tdir/foo
4282         chattr +a $DIR/$tdir/foo || error "chattr +a failed"
4283         echo bar >> $DIR/$tdir/foo || error "append bar failed"
4284         cp /etc/hosts $DIR/$tdir/foo && error "cp worked"
4285         rm -f $DIR/$tdir/foo 2>/dev/null && error "rm worked"
4286         link $DIR/$tdir/foo $DIR/$tdir/foo_link 2>/dev/null &&
4287                                         error "link worked"
4288         echo foo >> $DIR/$tdir/foo || error "append foo failed"
4289         mrename $DIR/$tdir/foo $DIR/$tdir/foo_ren && error "rename worked"
4290         lsattr $DIR/$tdir/foo | egrep -q "^-+a[-e]+ $DIR/$tdir/foo" ||
4291                                                      error "lsattr"
4292         chattr -a $DIR/$tdir/foo || error "chattr -a failed"
4293         cp -r $DIR/$tdir $TMP/
4294         rm -fr $DIR/$tdir $TMP/$tdir || error "cleanup rm failed"
4295 }
4296 run_test 52a "append-only flag test (should return errors)"
4297
4298 test_52b() {
4299         [ -f $DIR/$tdir/foo ] && chattr -i $DIR/$tdir/foo
4300         test_mkdir $DIR/$tdir
4301         touch $DIR/$tdir/foo
4302         chattr +i $DIR/$tdir/foo || error "chattr +i failed"
4303         cat test > $DIR/$tdir/foo && error "cat test worked"
4304         cp /etc/hosts $DIR/$tdir/foo && error "cp worked"
4305         rm -f $DIR/$tdir/foo 2>/dev/null && error "rm worked"
4306         link $DIR/$tdir/foo $DIR/$tdir/foo_link 2>/dev/null &&
4307                                         error "link worked"
4308         echo foo >> $DIR/$tdir/foo && error "echo worked"
4309         mrename $DIR/$tdir/foo $DIR/$tdir/foo_ren && error "rename worked"
4310         [ -f $DIR/$tdir/foo ] || error "$tdir/foo is not a file"
4311         [ -f $DIR/$tdir/foo_ren ] && error "$tdir/foo_ren is not a file"
4312         lsattr $DIR/$tdir/foo | egrep -q "^-+i[-e]+ $DIR/$tdir/foo" ||
4313                                                         error "lsattr"
4314         chattr -i $DIR/$tdir/foo || error "chattr failed"
4315
4316         rm -fr $DIR/$tdir || error "unable to remove $DIR/$tdir"
4317 }
4318 run_test 52b "immutable flag test (should return errors) ======="
4319
4320 test_53() {
4321         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4322         remote_mds_nodsh && skip "remote MDS with nodsh" && return
4323         remote_ost_nodsh && skip "remote OST with nodsh" && return
4324
4325         local param
4326         local param_seq
4327         local ostname
4328         local mds_last
4329         local mds_last_seq
4330         local ost_last
4331         local ost_last_seq
4332         local ost_last_id
4333         local ostnum
4334         local node
4335         local found=false
4336         local support_last_seq=true
4337
4338         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.60) ]] ||
4339                 support_last_seq=false
4340
4341         # only test MDT0000
4342         local mdtosc=$(get_mdtosc_proc_path $SINGLEMDS)
4343         local value
4344         for value in $(do_facet $SINGLEMDS \
4345                        $LCTL get_param osc.$mdtosc.prealloc_last_id) ; do
4346                 param=$(echo ${value[0]} | cut -d "=" -f1)
4347                 ostname=$(echo $param | cut -d "." -f2 | cut -d - -f 1-2)
4348
4349                 if $support_last_seq; then
4350                         param_seq=$(echo $param |
4351                                 sed -e s/prealloc_last_id/prealloc_last_seq/g)
4352                         mds_last_seq=$(do_facet $SINGLEMDS \
4353                                        $LCTL get_param -n $param_seq)
4354                 fi
4355                 mds_last=$(do_facet $SINGLEMDS $LCTL get_param -n $param)
4356
4357                 ostnum=$(index_from_ostuuid ${ostname}_UUID)
4358                 node=$(facet_active_host ost$((ostnum+1)))
4359                 param="obdfilter.$ostname.last_id"
4360                 for ost_last in $(do_node $node $LCTL get_param -n $param) ; do
4361                         echo "$ostname.last_id=$ost_last; MDS.last_id=$mds_last"
4362                         ost_last_id=$ost_last
4363
4364                         if $support_last_seq; then
4365                                 ost_last_id=$(echo $ost_last |
4366                                               awk -F':' '{print $2}' |
4367                                               sed -e "s/^0x//g")
4368                                 ost_last_seq=$(echo $ost_last |
4369                                                awk -F':' '{print $1}')
4370                                 [[ $ost_last_seq = $mds_last_seq ]] || continue
4371                         fi
4372
4373                         if [[ $ost_last_id != $mds_last ]]; then
4374                                 error "$ost_last_id != $mds_last"
4375                         else
4376                                 found=true
4377                                 break
4378                         fi
4379                 done
4380         done
4381         $found || error "can not match last_seq/last_id for $mdtosc"
4382         return 0
4383 }
4384 run_test 53 "verify that MDS and OSTs agree on pre-creation ===="
4385
4386 test_54a() {
4387         perl -MSocket -e ';' || { skip "no Socket perl module installed" && return; }
4388
4389         $SOCKETSERVER $DIR/socket ||
4390                 error "$SOCKETSERVER $DIR/socket failed: $?"
4391         $SOCKETCLIENT $DIR/socket ||
4392                 error "$SOCKETCLIENT $DIR/socket failed: $?"
4393         $MUNLINK $DIR/socket || error "$MUNLINK $DIR/socket failed: $?"
4394 }
4395 run_test 54a "unix domain socket test =========================="
4396
4397 test_54b() {
4398         f="$DIR/f54b"
4399         mknod $f c 1 3
4400         chmod 0666 $f
4401         dd if=/dev/zero of=$f bs=$(page_size) count=1
4402 }
4403 run_test 54b "char device works in lustre ======================"
4404
4405 find_loop_dev() {
4406         [ -b /dev/loop/0 ] && LOOPBASE=/dev/loop/
4407         [ -b /dev/loop0 ] && LOOPBASE=/dev/loop
4408         [ -z "$LOOPBASE" ] && echo "/dev/loop/0 and /dev/loop0 gone?" && return
4409
4410         for i in $(seq 3 7); do
4411                 losetup $LOOPBASE$i > /dev/null 2>&1 && continue
4412                 LOOPDEV=$LOOPBASE$i
4413                 LOOPNUM=$i
4414                 break
4415         done
4416 }
4417
4418 cleanup_54c() {
4419         local rc=0
4420         loopdev="$DIR/loop54c"
4421
4422         trap 0
4423         $UMOUNT $DIR/$tdir || rc=$?
4424         losetup -d $loopdev || true
4425         losetup -d $LOOPDEV || true
4426         rm -rf $loopdev $DIR/$tfile $DIR/$tdir
4427         return $rc
4428 }
4429
4430 test_54c() {
4431         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4432         loopdev="$DIR/loop54c"
4433
4434         find_loop_dev
4435         [ -z "$LOOPNUM" ] && echo "couldn't find empty loop device" && return
4436         trap cleanup_54c EXIT
4437         mknod $loopdev b 7 $LOOPNUM
4438         echo "make a loop file system with $DIR/$tfile on $loopdev ($LOOPNUM)."
4439         dd if=/dev/zero of=$DIR/$tfile bs=$(get_page_size client) seek=1024 count=1 > /dev/null
4440         losetup $loopdev $DIR/$tfile ||
4441                 error "can't set up $loopdev for $DIR/$tfile"
4442         mkfs.ext2 $loopdev || error "mke2fs on $loopdev"
4443         test_mkdir $DIR/$tdir
4444         mount -t ext2 $loopdev $DIR/$tdir ||
4445                 error "error mounting $loopdev on $DIR/$tdir"
4446         dd if=/dev/zero of=$DIR/$tdir/tmp bs=$(get_page_size client) count=30 ||
4447                 error "dd write"
4448         df $DIR/$tdir
4449         dd if=$DIR/$tdir/tmp of=/dev/zero bs=$(get_page_size client) count=30 ||
4450                 error "dd read"
4451         cleanup_54c
4452 }
4453 run_test 54c "block device works in lustre ====================="
4454
4455 test_54d() {
4456         f="$DIR/f54d"
4457         string="aaaaaa"
4458         mknod $f p
4459         [ "$string" = $(echo $string > $f | cat $f) ] || error "$f != $string"
4460 }
4461 run_test 54d "fifo device works in lustre ======================"
4462
4463 test_54e() {
4464         f="$DIR/f54e"
4465         string="aaaaaa"
4466         cp -aL /dev/console $f
4467         echo $string > $f || error "echo $string to $f failed"
4468 }
4469 run_test 54e "console/tty device works in lustre ======================"
4470
4471 #The test_55 used to be iopen test and it was removed by bz#24037.
4472 #run_test 55 "check iopen_connect_dentry() ======================"
4473
4474 test_56a() {    # was test_56
4475         rm -rf $DIR/$tdir
4476         $SETSTRIPE -d $DIR
4477         test_mkdir -p $DIR/$tdir/dir
4478         NUMFILES=3
4479         NUMFILESx2=$(($NUMFILES * 2))
4480         for i in $(seq 1 $NUMFILES); do
4481                 touch $DIR/$tdir/file$i
4482                 touch $DIR/$tdir/dir/file$i
4483         done
4484
4485         # test lfs getstripe with --recursive
4486         FILENUM=$($GETSTRIPE --recursive $DIR/$tdir | grep -c obdidx)
4487         [[ $FILENUM -eq $NUMFILESx2 ]] ||
4488                 error "$GETSTRIPE --recursive: found $FILENUM, not $NUMFILESx2"
4489         FILENUM=$($GETSTRIPE $DIR/$tdir | grep -c obdidx)
4490         [[ $FILENUM -eq $NUMFILES ]] ||
4491                 error "$GETSTRIPE $DIR/$tdir: found $FILENUM, not $NUMFILES"
4492         echo "$GETSTRIPE --recursive passed."
4493
4494         # test lfs getstripe with file instead of dir
4495         FILENUM=$($GETSTRIPE $DIR/$tdir/file1 | grep -c obdidx)
4496         [[ $FILENUM -eq 1 ]] ||
4497                 error "$GETSTRIPE $DIR/$tdir/file1: found $FILENUM, not 1"
4498         echo "$GETSTRIPE file1 passed."
4499
4500         #test lfs getstripe with --verbose
4501         [[ $($GETSTRIPE --verbose $DIR/$tdir |
4502                 grep -c lmm_magic) -eq $NUMFILES ]] ||
4503                 error "$GETSTRIPE --verbose $DIR/$tdir: want $NUMFILES"
4504         [[ $($GETSTRIPE $DIR/$tdir | grep -c lmm_magic) -eq 0 ]] ||
4505                 error "$GETSTRIPE $DIR/$tdir: showed lmm_magic"
4506
4507         #test lfs getstripe with -v prints lmm_fid
4508         [[ $($GETSTRIPE -v $DIR/$tdir | grep -c lmm_fid) -eq $NUMFILES ]] ||
4509                 error "$GETSTRIPE -v $DIR/$tdir: want $NUMFILES lmm_fid: lines"
4510         [[ $($GETSTRIPE $DIR/$tdir | grep -c lmm_fid) -eq 0 ]] ||
4511                 error "$GETSTRIPE $DIR/$tdir: showed lmm_fid"
4512         echo "$GETSTRIPE --verbose passed."
4513
4514         #check for FID information
4515         local fid1=$($GETSTRIPE --fid $DIR/$tdir/file1)
4516         local fid2=$($GETSTRIPE --verbose $DIR/$tdir/file1 |
4517                        awk '/lmm_fid: / { print $2 }')
4518         local fid3=$($LFS path2fid $DIR/$tdir/file1)
4519         [ "$fid1" != "$fid2" ] &&
4520                 error "getstripe --fid $fid1 != getstripe --verbose $fid2"
4521         [ "$fid1" != "$fid3" ] &&
4522                 error "getstripe --fid $fid1 != lfs path2fid $fid3"
4523         echo "$GETSTRIPE --fid passed."
4524
4525         #test lfs getstripe with --obd
4526         $GETSTRIPE --obd wrong_uuid $DIR/$tdir 2>&1 |
4527                 grep -q "unknown obduuid" ||
4528                 error "$GETSTRIPE --obd wrong_uuid should return error message"
4529
4530         [[ $OSTCOUNT -lt 2 ]] &&
4531                 skip_env "skipping other $GETSTRIPE --obd test" && return
4532
4533         OSTIDX=1
4534         OBDUUID=$(ostuuid_from_index $OSTIDX)
4535         FILENUM=$($GETSTRIPE -ir $DIR/$tdir | grep "^$OSTIDX\$" | wc -l)
4536         FOUND=$($GETSTRIPE -r --obd $OBDUUID $DIR/$tdir | grep obdidx | wc -l)
4537         [[ $FOUND -eq $FILENUM ]] ||
4538                 error "$GETSTRIPE --obd wrong: found $FOUND, expected $FILENUM"
4539         [[ $($GETSTRIPE -r -v --obd $OBDUUID $DIR/$tdir |
4540                 sed '/^[         ]*'${OSTIDX}'[  ]/d' |
4541                 sed -n '/^[      ]*[0-9][0-9]*[  ]/p' | wc -l) -eq 0 ]] ||
4542                 error "$GETSTRIPE --obd: should not show file on other obd"
4543         echo "$GETSTRIPE --obd passed"
4544 }
4545 run_test 56a "check $GETSTRIPE"
4546
4547 test_56b() {
4548         test_mkdir $DIR/$tdir
4549         NUMDIRS=3
4550         for i in $(seq 1 $NUMDIRS); do
4551                 test_mkdir $DIR/$tdir/dir$i
4552         done
4553
4554         # test lfs getdirstripe default mode is non-recursion, which is
4555         # different from lfs getstripe
4556         dircnt=$($LFS getdirstripe $DIR/$tdir | grep -c lmv_stripe_count)
4557         [[ $dircnt -eq 1 ]] ||
4558                 error "$LFS getdirstripe: found $dircnt, not 1"
4559         dircnt=$($LFS getdirstripe --recursive $DIR/$tdir |
4560                 grep -c lmv_stripe_count)
4561         [[ $dircnt -eq $((NUMDIRS + 1)) ]] ||
4562                 error "$LFS getdirstripe --recursive: found $dircnt, \
4563                         not $((NUMDIRS + 1))"
4564 }
4565 run_test 56b "check $LFS getdirstripe"
4566
4567 test_56c() {
4568         local ost_idx=0
4569         local ost_name=$(ostname_from_index $ost_idx)
4570
4571         local old_status=$(ost_dev_status $ost_idx)
4572         [[ -z "$old_status" ]] ||
4573                 { skip_env "OST $ost_name is in $old_status status"; return 0; }
4574
4575         do_facet ost1 $LCTL set_param -n obdfilter.$ost_name.degraded=1
4576         sleep_maxage
4577
4578         local new_status=$(ost_dev_status $ost_idx)
4579         [[ "$new_status" = "D" ]] ||
4580                 error "OST $ost_name is in status of '$new_status', not 'D'"
4581
4582         do_facet ost1 $LCTL set_param -n obdfilter.$ost_name.degraded=0
4583         sleep_maxage
4584
4585         new_status=$(ost_dev_status $ost_idx)
4586         [[ -z "$new_status" ]] ||
4587                 error "OST $ost_name is in status of '$new_status', not ''"
4588 }
4589 run_test 56c "check 'lfs df' showing device status"
4590
4591 NUMFILES=3
4592 NUMDIRS=3
4593 setup_56() {
4594         local LOCAL_NUMFILES="$1"
4595         local LOCAL_NUMDIRS="$2"
4596         local MKDIR_PARAMS="$3"
4597         local DIR_STRIPE_PARAMS="$4"
4598
4599         if [ ! -d "$TDIR" ] ; then
4600                 test_mkdir -p $DIR_STRIPE_PARAMS $TDIR
4601                 [ "$MKDIR_PARAMS" ] && $SETSTRIPE $MKDIR_PARAMS $TDIR
4602                 for i in `seq 1 $LOCAL_NUMFILES` ; do
4603                         touch $TDIR/file$i
4604                 done
4605                 for i in `seq 1 $LOCAL_NUMDIRS` ; do
4606                         test_mkdir $DIR_STRIPE_PARAMS $TDIR/dir$i
4607                         for j in `seq 1 $LOCAL_NUMFILES` ; do
4608                                 touch $TDIR/dir$i/file$j
4609                         done
4610                 done
4611         fi
4612 }
4613
4614 setup_56_special() {
4615         LOCAL_NUMFILES=$1
4616         LOCAL_NUMDIRS=$2
4617         setup_56 $1 $2
4618         if [ ! -e "$TDIR/loop1b" ] ; then
4619                 for i in `seq 1 $LOCAL_NUMFILES` ; do
4620                         mknod $TDIR/loop${i}b b 7 $i
4621                         mknod $TDIR/null${i}c c 1 3
4622                         ln -s $TDIR/file1 $TDIR/link${i}l
4623                 done
4624                 for i in `seq 1 $LOCAL_NUMDIRS` ; do
4625                         mknod $TDIR/dir$i/loop${i}b b 7 $i
4626                         mknod $TDIR/dir$i/null${i}c c 1 3
4627                         ln -s $TDIR/dir$i/file1 $TDIR/dir$i/link${i}l
4628                 done
4629         fi
4630 }
4631
4632 test_56g() {
4633         $SETSTRIPE -d $DIR
4634
4635         TDIR=$DIR/${tdir}g
4636         setup_56 $NUMFILES $NUMDIRS
4637
4638         EXPECTED=$(($NUMDIRS + 2))
4639         # test lfs find with -name
4640         for i in $(seq 1 $NUMFILES) ; do
4641                 NUMS=$($LFIND -name "*$i" $TDIR | wc -l)
4642                 [ $NUMS -eq $EXPECTED ] ||
4643                         error "lfs find -name \"*$i\" $TDIR wrong: "\
4644                               "found $NUMS, expected $EXPECTED"
4645         done
4646 }
4647 run_test 56g "check lfs find -name ============================="
4648
4649 test_56h() {
4650         $SETSTRIPE -d $DIR
4651
4652         TDIR=$DIR/${tdir}g
4653         setup_56 $NUMFILES $NUMDIRS
4654
4655         EXPECTED=$(((NUMDIRS + 1) * (NUMFILES - 1) + NUMFILES))
4656         # test lfs find with ! -name
4657         for i in $(seq 1 $NUMFILES) ; do
4658                 NUMS=$($LFIND ! -name "*$i" $TDIR | wc -l)
4659                 [ $NUMS -eq $EXPECTED ] ||
4660                         error "lfs find ! -name \"*$i\" $TDIR wrong: "\
4661                               "found $NUMS, expected $EXPECTED"
4662         done
4663 }
4664 run_test 56h "check lfs find ! -name"
4665
4666 test_56i() {
4667         tdir=${tdir}i
4668         test_mkdir $DIR/$tdir
4669         UUID=$(ostuuid_from_index 0 $DIR/$tdir)
4670         CMD="$LFIND -ost $UUID $DIR/$tdir"
4671         OUT=$($CMD)
4672         [ -z "$OUT" ] || error "'$CMD' returned directory '$OUT'"
4673 }
4674 run_test 56i "check 'lfs find -ost UUID' skips directories"
4675
4676 test_56j() {
4677         TDIR=$DIR/${tdir}g
4678         setup_56_special $NUMFILES $NUMDIRS
4679
4680         EXPECTED=$((NUMDIRS + 1))
4681         CMD="$LFIND -type d $TDIR"
4682         NUMS=$($CMD | wc -l)
4683         [ $NUMS -eq $EXPECTED ] ||
4684                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4685 }
4686 run_test 56j "check lfs find -type d ============================="
4687
4688 test_56k() {
4689         TDIR=$DIR/${tdir}g
4690         setup_56_special $NUMFILES $NUMDIRS
4691
4692         EXPECTED=$(((NUMDIRS + 1) * NUMFILES))
4693         CMD="$LFIND -type f $TDIR"
4694         NUMS=$($CMD | wc -l)
4695         [ $NUMS -eq $EXPECTED ] ||
4696                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4697 }
4698 run_test 56k "check lfs find -type f ============================="
4699
4700 test_56l() {
4701         TDIR=$DIR/${tdir}g
4702         setup_56_special $NUMFILES $NUMDIRS
4703
4704         EXPECTED=$((NUMDIRS + NUMFILES))
4705         CMD="$LFIND -type b $TDIR"
4706         NUMS=$($CMD | wc -l)
4707         [ $NUMS -eq $EXPECTED ] ||
4708                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4709 }
4710 run_test 56l "check lfs find -type b ============================="
4711
4712 test_56m() {
4713         TDIR=$DIR/${tdir}g
4714         setup_56_special $NUMFILES $NUMDIRS
4715
4716         EXPECTED=$((NUMDIRS + NUMFILES))
4717         CMD="$LFIND -type c $TDIR"
4718         NUMS=$($CMD | wc -l)
4719         [ $NUMS -eq $EXPECTED ] ||
4720                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4721 }
4722 run_test 56m "check lfs find -type c ============================="
4723
4724 test_56n() {
4725         TDIR=$DIR/${tdir}g
4726         setup_56_special $NUMFILES $NUMDIRS
4727
4728         EXPECTED=$((NUMDIRS + NUMFILES))
4729         CMD="$LFIND -type l $TDIR"
4730         NUMS=$($CMD | wc -l)
4731         [ $NUMS -eq $EXPECTED ] ||
4732                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4733 }
4734 run_test 56n "check lfs find -type l ============================="
4735
4736 test_56o() {
4737         TDIR=$DIR/${tdir}o
4738         setup_56 $NUMFILES $NUMDIRS
4739         utime $TDIR/file1 > /dev/null || error "utime (1)"
4740         utime $TDIR/file2 > /dev/null || error "utime (2)"
4741         utime $TDIR/dir1 > /dev/null || error "utime (3)"
4742         utime $TDIR/dir2 > /dev/null || error "utime (4)"
4743         utime $TDIR/dir1/file1 > /dev/null || error "utime (5)"
4744         dd if=/dev/zero count=1 >> $TDIR/dir1/file1 && sync
4745
4746         EXPECTED=4
4747         NUMS=`$LFIND -mtime +0 $TDIR | wc -l`
4748         [ $NUMS -eq $EXPECTED ] || \
4749                 error "lfs find -mtime +0 $TDIR wrong: found $NUMS, expected $EXPECTED"
4750
4751         EXPECTED=12
4752         CMD="$LFIND -mtime 0 $TDIR"
4753         NUMS=$($CMD | wc -l)
4754         [ $NUMS -eq $EXPECTED ] ||
4755                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4756 }
4757 run_test 56o "check lfs find -mtime for old files =========================="
4758
4759 test_56p() {
4760         [ $RUNAS_ID -eq $UID ] &&
4761                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
4762
4763         TDIR=$DIR/${tdir}p
4764         setup_56 $NUMFILES $NUMDIRS
4765
4766         chown $RUNAS_ID $TDIR/file* || error "chown $DIR/${tdir}g/file$i failed"
4767         EXPECTED=$NUMFILES
4768         CMD="$LFIND -uid $RUNAS_ID $TDIR"
4769         NUMS=$($CMD | wc -l)
4770         [ $NUMS -eq $EXPECTED ] || \
4771                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4772
4773         EXPECTED=$(((NUMFILES + 1) * NUMDIRS + 1))
4774         CMD="$LFIND ! -uid $RUNAS_ID $TDIR"
4775         NUMS=$($CMD | wc -l)
4776         [ $NUMS -eq $EXPECTED ] || \
4777                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4778 }
4779 run_test 56p "check lfs find -uid and ! -uid ==============================="
4780
4781 test_56q() {
4782         [ $RUNAS_ID -eq $UID ] &&
4783                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
4784
4785         TDIR=$DIR/${tdir}q
4786         setup_56 $NUMFILES $NUMDIRS
4787
4788         chgrp $RUNAS_GID $TDIR/file* || error "chown $TDIR/file$i failed"
4789
4790         EXPECTED=$NUMFILES
4791         CMD="$LFIND -gid $RUNAS_GID $TDIR"
4792         NUMS=$($CMD | wc -l)
4793         [ $NUMS -eq $EXPECTED ] ||
4794                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4795
4796         EXPECTED=$(( ($NUMFILES+1) * $NUMDIRS + 1))
4797         CMD="$LFIND ! -gid $RUNAS_GID $TDIR"
4798         NUMS=$($CMD | wc -l)
4799         [ $NUMS -eq $EXPECTED ] ||
4800                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4801 }
4802 run_test 56q "check lfs find -gid and ! -gid ==============================="
4803
4804 test_56r() {
4805         TDIR=$DIR/${tdir}r
4806         setup_56 $NUMFILES $NUMDIRS
4807
4808         EXPECTED=12
4809         CMD="$LFIND -size 0 -type f $TDIR"
4810         NUMS=$($CMD | wc -l)
4811         [ $NUMS -eq $EXPECTED ] ||
4812                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4813         EXPECTED=0
4814         CMD="$LFIND ! -size 0 -type f $TDIR"
4815         NUMS=$($CMD | wc -l)
4816         [ $NUMS -eq $EXPECTED ] ||
4817                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4818         echo "test" > $TDIR/$tfile
4819         echo "test2" > $TDIR/$tfile.2 && sync
4820         EXPECTED=1
4821         CMD="$LFIND -size 5 -type f $TDIR"
4822         NUMS=$($CMD | wc -l)
4823         [ $NUMS -eq $EXPECTED ] ||
4824                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4825         EXPECTED=1
4826         CMD="$LFIND -size +5 -type f $TDIR"
4827         NUMS=$($CMD | wc -l)
4828         [ $NUMS -eq $EXPECTED ] ||
4829                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4830         EXPECTED=2
4831         CMD="$LFIND -size +0 -type f $TDIR"
4832         NUMS=$($CMD | wc -l)
4833         [ $NUMS -eq $EXPECTED ] ||
4834                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4835         EXPECTED=2
4836         CMD="$LFIND ! -size -5 -type f $TDIR"
4837         NUMS=$($CMD | wc -l)
4838         [ $NUMS -eq $EXPECTED ] ||
4839                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4840         EXPECTED=12
4841         CMD="$LFIND -size -5 -type f $TDIR"
4842         NUMS=$($CMD | wc -l)
4843         [ $NUMS -eq $EXPECTED ] ||
4844                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4845 }
4846 run_test 56r "check lfs find -size works =========================="
4847
4848 test_56s() { # LU-611
4849         TDIR=$DIR/${tdir}s
4850
4851         #LU-9369
4852         setup_56 0 $NUMDIRS
4853         for i in $(seq 1 $NUMDIRS); do
4854                 $SETSTRIPE -c $((OSTCOUNT + 1)) $TDIR/dir$i/$tfile
4855         done
4856         EXPECTED=$NUMDIRS
4857         CMD="$LFIND -c $OSTCOUNT $TDIR"
4858         NUMS=$($CMD | wc -l)
4859         [ $NUMS -eq $EXPECTED ] || {
4860                 $GETSTRIPE -R $TDIR
4861                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4862         }
4863         rm -rf $TDIR
4864
4865         setup_56 $NUMFILES $NUMDIRS "-c $OSTCOUNT"
4866         if [[ $OSTCOUNT -gt 1 ]]; then
4867                 $SETSTRIPE -c 1 $TDIR/$tfile.{0,1,2,3}
4868                 ONESTRIPE=4
4869                 EXTRA=4
4870         else
4871                 ONESTRIPE=$(((NUMDIRS + 1) * NUMFILES))
4872                 EXTRA=0
4873         fi
4874
4875         EXPECTED=$(((NUMDIRS + 1) * NUMFILES))
4876         CMD="$LFIND -stripe-count $OSTCOUNT -type f $TDIR"
4877         NUMS=$($CMD | wc -l)
4878         [ $NUMS -eq $EXPECTED ] || {
4879                 $GETSTRIPE -R $TDIR
4880                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4881         }
4882
4883         EXPECTED=$(((NUMDIRS + 1) * NUMFILES + EXTRA))
4884         CMD="$LFIND -stripe-count +0 -type f $TDIR"
4885         NUMS=$($CMD | wc -l)
4886         [ $NUMS -eq $EXPECTED ] || {
4887                 $GETSTRIPE -R $TDIR
4888                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4889         }
4890
4891         EXPECTED=$ONESTRIPE
4892         CMD="$LFIND -stripe-count 1 -type f $TDIR"
4893         NUMS=$($CMD | wc -l)
4894         [ $NUMS -eq $EXPECTED ] || {
4895                 $GETSTRIPE -R $TDIR
4896                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4897         }
4898
4899         CMD="$LFIND -stripe-count -2 -type f $TDIR"
4900         NUMS=$($CMD | wc -l)
4901         [ $NUMS -eq $EXPECTED ] || {
4902                 $GETSTRIPE -R $TDIR
4903                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4904         }
4905
4906         EXPECTED=0
4907         CMD="$LFIND -stripe-count $((OSTCOUNT + 1)) -type f $TDIR"
4908         NUMS=$($CMD | wc -l)
4909         [ $NUMS -eq $EXPECTED ] || {
4910                 $GETSTRIPE -R $TDIR
4911                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4912         }
4913 }
4914 run_test 56s "check lfs find -stripe-count works"
4915
4916 test_56t() { # LU-611
4917         TDIR=$DIR/${tdir}t
4918
4919         #LU-9369
4920         setup_56 0 $NUMDIRS
4921         for i in $(seq 1 $NUMDIRS); do
4922                 $SETSTRIPE -S 4M $TDIR/dir$i/$tfile
4923         done
4924         EXPECTED=$NUMDIRS
4925         CMD="$LFIND -S 4M $TDIR"
4926         NUMS=$($CMD | wc -l)
4927         [ $NUMS -eq $EXPECTED ] || {
4928                 $GETSTRIPE -R $TDIR
4929                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4930         }
4931         rm -rf $TDIR
4932
4933         setup_56 $NUMFILES $NUMDIRS "--stripe-size 512k"
4934
4935         $SETSTRIPE -S 256k $TDIR/$tfile.{0,1,2,3}
4936
4937         EXPECTED=$(((NUMDIRS + 1) * NUMFILES))
4938         CMD="$LFIND -stripe-size 512k -type f $TDIR"
4939         NUMS=$($CMD | wc -l)
4940         [ $NUMS -eq $EXPECTED ] ||
4941                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4942
4943         CMD="$LFIND -stripe-size +320k -type f $TDIR"
4944         NUMS=$($CMD | wc -l)
4945         [ $NUMS -eq $EXPECTED ] ||
4946                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4947
4948         EXPECTED=$(((NUMDIRS + 1) * NUMFILES + 4))
4949         CMD="$LFIND -stripe-size +200k -type f $TDIR"
4950         NUMS=$($CMD | wc -l)
4951         [ $NUMS -eq $EXPECTED ] ||
4952                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4953
4954         CMD="$LFIND -stripe-size -640k -type f $TDIR"
4955         NUMS=$($CMD | wc -l)
4956         [ $NUMS -eq $EXPECTED ] ||
4957                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4958
4959         EXPECTED=4
4960         CMD="$LFIND -stripe-size 256k -type f $TDIR"
4961         NUMS=$($CMD | wc -l)
4962         [ $NUMS -eq $EXPECTED ] ||
4963                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4964
4965         CMD="$LFIND -stripe-size -320k -type f $TDIR"
4966         NUMS=$($CMD | wc -l)
4967         [ $NUMS -eq $EXPECTED ] ||
4968                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4969
4970         EXPECTED=0
4971         CMD="$LFIND -stripe-size 1024k -type f $TDIR"
4972         NUMS=$($CMD | wc -l)
4973         [ $NUMS -eq $EXPECTED ] ||
4974                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4975 }
4976 run_test 56t "check lfs find -stripe-size works"
4977
4978 test_56u() { # LU-611
4979         TDIR=$DIR/${tdir}u
4980         setup_56 $NUMFILES $NUMDIRS "-i 0"
4981
4982         if [[ $OSTCOUNT -gt 1 ]]; then
4983                 $SETSTRIPE -i 1 $TDIR/$tfile.{0,1,2,3}
4984                 ONESTRIPE=4
4985         else
4986                 ONESTRIPE=0
4987         fi
4988
4989         EXPECTED=$(((NUMDIRS + 1) * NUMFILES))
4990         CMD="$LFIND -stripe-index 0 -type f $TDIR"
4991         NUMS=$($CMD | wc -l)
4992         [ $NUMS -eq $EXPECTED ] ||
4993                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4994
4995         EXPECTED=$ONESTRIPE
4996         CMD="$LFIND -stripe-index 1 -type f $TDIR"
4997         NUMS=$($CMD | wc -l)
4998         [ $NUMS -eq $EXPECTED ] ||
4999                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
5000
5001         CMD="$LFIND ! -stripe-index 0 -type f $TDIR"
5002         NUMS=$($CMD | wc -l)
5003         [ $NUMS -eq $EXPECTED ] ||
5004                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
5005
5006         EXPECTED=0
5007         # This should produce an error and not return any files
5008         CMD="$LFIND -stripe-index $OSTCOUNT -type f $TDIR"
5009         NUMS=$($CMD 2>/dev/null | wc -l)
5010         [ $NUMS -eq $EXPECTED ] ||
5011                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
5012
5013         if [[ $OSTCOUNT -gt 1 ]]; then
5014                 EXPECTED=$(((NUMDIRS + 1) * NUMFILES + ONESTRIPE))
5015                 CMD="$LFIND -stripe-index 0,1 -type f $TDIR"
5016                 NUMS=$($CMD | wc -l)
5017                 [ $NUMS -eq $EXPECTED ] ||
5018                         error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
5019         fi
5020 }
5021 run_test 56u "check lfs find -stripe-index works"
5022
5023 test_56v() {
5024     local MDT_IDX=0
5025
5026     TDIR=$DIR/${tdir}v
5027     rm -rf $TDIR
5028     setup_56 $NUMFILES $NUMDIRS
5029
5030     UUID=$(mdtuuid_from_index $MDT_IDX $TDIR)
5031     [ -z "$UUID" ] && error "mdtuuid_from_index cannot find MDT index $MDT_IDX"
5032
5033     for file in $($LFIND -mdt $UUID $TDIR); do
5034         file_mdt_idx=$($GETSTRIPE -M $file)
5035         [ $file_mdt_idx -eq $MDT_IDX ] ||
5036             error "'lfind -mdt $UUID' != 'getstripe -M' ($file_mdt_idx)"
5037     done
5038 }
5039 run_test 56v "check 'lfs find -mdt match with lfs getstripe -M' ======="
5040
5041 test_56w() {
5042         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
5043         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5044         TDIR=$DIR/${tdir}w
5045
5046         rm -rf $TDIR || error "remove $TDIR failed"
5047         setup_56 $NUMFILES $NUMDIRS "-c $OSTCOUNT" "-c1"
5048
5049         local stripe_size
5050         stripe_size=$($GETSTRIPE -S -d $TDIR) ||
5051                 error "$GETSTRIPE -S -d $TDIR failed"
5052         stripe_size=${stripe_size%% *}
5053
5054         local file_size=$((stripe_size * OSTCOUNT))
5055         local file_num=$((NUMDIRS * NUMFILES + NUMFILES))
5056         local required_space=$((file_num * file_size))
5057
5058         local free_space=$($LCTL get_param -n lov.$FSNAME-clilov-*.kbytesavail |
5059                            head -n1)
5060         [[ $free_space -le $((required_space / 1024)) ]] &&
5061                 skip_env "need $required_space bytes, have $free_space KB" &&
5062                 return
5063
5064         local dd_bs=65536
5065         local dd_count=$((file_size / dd_bs))
5066
5067         # write data into the files
5068         local i
5069         local j
5070         local file
5071         for i in $(seq 1 $NUMFILES); do
5072                 file=$TDIR/file$i
5073                 yes | dd bs=$dd_bs count=$dd_count of=$file &>/dev/null ||
5074                         error "write data into $file failed"
5075         done
5076         for i in $(seq 1 $NUMDIRS); do
5077                 for j in $(seq 1 $NUMFILES); do
5078                         file=$TDIR/dir$i/file$j
5079                         yes|dd bs=$dd_bs count=$dd_count of=$file &>/dev/null ||
5080                                 error "write data into $file failed"
5081                 done
5082         done
5083
5084         # $LFS_MIGRATE will fail if hard link migration is unsupported
5085         if [[ $(lustre_version_code mds1) -gt $(version_code 2.5.55) ]]; then
5086                 createmany -l$TDIR/dir1/file1 $TDIR/dir1/link 200 ||
5087                         error "creating links to $TDIR/dir1/file1 failed"
5088         fi
5089
5090         local expected=-1
5091         [[ $OSTCOUNT -gt 1 ]] && expected=$((OSTCOUNT - 1))
5092
5093         # lfs_migrate file
5094         local cmd="$LFS_MIGRATE -y -c $expected $TDIR/file1"
5095         echo "$cmd"
5096         eval $cmd || error "$cmd failed"
5097
5098         check_stripe_count $TDIR/file1 $expected
5099
5100         if [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.90) ];
5101         then
5102                 # lfs_migrate file onto OST 0 if it is on OST 1, or onto
5103                 # OST 1 if it is on OST 0. This file is small enough to
5104                 # be on only one stripe.
5105                 file=$TDIR/migr_1_ost
5106                 dd bs=$dd_bs count=1 if=/dev/urandom of=$file >/dev/null 2>&1 ||
5107                         error "write data into $file failed"
5108                 local obdidx=$($LFS getstripe -i $file)
5109                 local oldmd5=$(md5sum $file)
5110                 local newobdidx=0
5111                 [[ $obdidx -eq 0 ]] && newobdidx=1
5112                 cmd="$LFS migrate -i $newobdidx $file"
5113                 echo $cmd
5114                 eval $cmd || error "$cmd failed"
5115                 local realobdix=$($LFS getstripe -i $file)
5116                 local newmd5=$(md5sum $file)
5117                 [[ $newobdidx -ne $realobdix ]] &&
5118                         error "new OST is different (was=$obdidx, wanted=$newobdidx, got=$realobdix)"
5119                 [[ "$oldmd5" != "$newmd5" ]] &&
5120                         error "md5sum differ: $oldmd5, $newmd5"
5121         fi
5122
5123     # lfs_migrate dir
5124     cmd="$LFS_MIGRATE -y -c $expected $TDIR/dir1"
5125     echo "$cmd"
5126     eval $cmd || error "$cmd failed"
5127
5128     for j in $(seq 1 $NUMFILES); do
5129         check_stripe_count $TDIR/dir1/file$j $expected
5130     done
5131
5132     # lfs_migrate works with lfs find
5133     cmd="$LFIND -stripe_count $OSTCOUNT -type f $TDIR |
5134          $LFS_MIGRATE -y -c $expected"
5135     echo "$cmd"
5136     eval $cmd || error "$cmd failed"
5137
5138     for i in $(seq 2 $NUMFILES); do
5139         check_stripe_count $TDIR/file$i $expected
5140     done
5141     for i in $(seq 2 $NUMDIRS); do
5142         for j in $(seq 1 $NUMFILES); do
5143             check_stripe_count $TDIR/dir$i/file$j $expected
5144         done
5145     done
5146 }
5147 run_test 56w "check lfs_migrate -c stripe_count works"
5148
5149 test_56x() {
5150         check_swap_layouts_support && return 0
5151         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
5152
5153         local dir0=$DIR/$tdir/$testnum
5154         test_mkdir -p $dir0
5155
5156         local ref1=/etc/passwd
5157         local file1=$dir0/file1
5158
5159         $SETSTRIPE -c 2 $file1
5160         cp $ref1 $file1
5161         $LFS migrate -c 1 $file1 || error "migrate failed rc = $?"
5162         stripe=$($GETSTRIPE -c $file1)
5163         [[ $stripe == 1 ]] || error "stripe of $file1 is $stripe != 1"
5164         cmp $file1 $ref1 || error "content mismatch $file1 differs from $ref1"
5165
5166         # clean up
5167         rm -f $file1
5168 }
5169 run_test 56x "lfs migration support"
5170
5171 test_56xa() {
5172         check_swap_layouts_support && return 0
5173         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
5174
5175         local dir0=$DIR/$tdir/$testnum
5176         test_mkdir -p $dir0
5177
5178         local ref1=/etc/passwd
5179         local file1=$dir0/file1
5180
5181         $SETSTRIPE -c 2 $file1
5182         cp $ref1 $file1
5183         $LFS migrate --block -c 1 $file1 || error "migrate failed rc = $?"
5184         local stripe=$($GETSTRIPE -c $file1)
5185         [[ $stripe == 1 ]] || error "stripe of $file1 is $stripe != 1"
5186         cmp $file1 $ref1 || error "content mismatch $file1 differs from $ref1"
5187
5188         # clean up
5189         rm -f $file1
5190 }
5191 run_test 56xa "lfs migration --block support"
5192
5193 test_56y() {
5194         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.53) ] &&
5195                 skip "No HSM $(lustre_build_version $SINGLEMDS) MDS < 2.4.53" &&
5196                 return
5197
5198         local res=""
5199         local dir0=$DIR/$tdir/$testnum
5200         test_mkdir -p $dir0
5201         local f1=$dir0/file1
5202         local f2=$dir0/file2
5203
5204         touch $f1 || error "creating std file $f1"
5205         $MULTIOP $f2 H2c || error "creating released file $f2"
5206
5207         # a directory can be raid0, so ask only for files
5208         res=$($LFIND $dir0 -L raid0 -type f | wc -l)
5209         [[ $res == 2 ]] || error "search raid0: found $res files != 2"
5210
5211         res=$($LFIND $dir0 \! -L raid0 -type f | wc -l)
5212         [[ $res == 0 ]] || error "search !raid0: found $res files != 0"
5213
5214         # only files can be released, so no need to force file search
5215         res=$($LFIND $dir0 -L released)
5216         [[ $res == $f2 ]] || error "search released: found $res != $f2"
5217
5218         res=$($LFIND $dir0 \! -L released)
5219         [[ $res == $f1 ]] || error "search !released: found $res != $f1"
5220
5221 }
5222 run_test 56y "lfs find -L raid0|released"
5223
5224 test_56z() { # LU-4824
5225         # This checks to make sure 'lfs find' continues after errors
5226         # There are two classes of errors that should be caught:
5227         # - If multiple paths are provided, all should be searched even if one
5228         #   errors out
5229         # - If errors are encountered during the search, it should not terminate
5230         #   early
5231         local i
5232         test_mkdir $DIR/$tdir
5233         for i in d{0..9}; do
5234                 test_mkdir $DIR/$tdir/$i
5235         done
5236         touch $DIR/$tdir/d{0..9}/$tfile
5237         $LFS find $DIR/non_existent_dir $DIR/$tdir &&
5238                 error "$LFS find did not return an error"
5239         # Make a directory unsearchable. This should NOT be the last entry in
5240         # directory order.  Arbitrarily pick the 6th entry
5241         chmod 700 $($LFS find $DIR/$tdir -type d | sed '6!d')
5242         local count=$($RUNAS $LFS find $DIR/non_existent $DIR/$tdir | wc -l)
5243         # The user should be able to see 10 directories and 9 files
5244         [ $count == 19 ] || error "$LFS find did not continue after error"
5245 }
5246 run_test 56z "lfs find should continue after an error"
5247
5248 test_56aa() { # LU-5937
5249         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
5250
5251         mkdir $DIR/$tdir
5252         $LFS setdirstripe -c$MDSCOUNT $DIR/$tdir/striped_dir
5253
5254         createmany -o $DIR/$tdir/striped_dir/${tfile}- 1024
5255         local dirs=$(lfs find --size +8k $DIR/$tdir/)
5256
5257         [ -n "$dirs" ] || error "lfs find --size wrong under striped dir"
5258 }
5259 run_test 56aa "lfs find --size under striped dir"
5260
5261 test_57a() {
5262         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5263         # note test will not do anything if MDS is not local
5264         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
5265                 skip "ldiskfs only test"
5266                 return
5267         fi
5268
5269         remote_mds_nodsh && skip "remote MDS with nodsh" && return
5270         local MNTDEV="osd*.*MDT*.mntdev"
5271         DEV=$(do_facet $SINGLEMDS lctl get_param -n $MNTDEV)
5272         [ -z "$DEV" ] && error "can't access $MNTDEV"
5273         for DEV in $(do_facet $SINGLEMDS lctl get_param -n $MNTDEV); do
5274                 do_facet $SINGLEMDS $DUMPE2FS -h $DEV > $TMP/t57a.dump ||
5275                         error "can't access $DEV"
5276                 DEVISIZE=$(awk '/Inode size:/ { print $3 }' $TMP/t57a.dump)
5277                 [[ $DEVISIZE -gt 128 ]] || error "inode size $DEVISIZE"
5278                 rm $TMP/t57a.dump
5279         done
5280 }
5281 run_test 57a "verify MDS filesystem created with large inodes =="
5282
5283 test_57b() {
5284         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5285         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
5286                 skip "ldiskfs only test"
5287                 return
5288         fi
5289
5290         remote_mds_nodsh && skip "remote MDS with nodsh" && return
5291         local dir=$DIR/$tdir
5292
5293         local FILECOUNT=100
5294         local FILE1=$dir/f1
5295         local FILEN=$dir/f$FILECOUNT
5296
5297         rm -rf $dir || error "removing $dir"
5298         test_mkdir -c1 $dir
5299         local mdtidx=$($LFS getstripe -M $dir)
5300         local mdtname=MDT$(printf %04x $mdtidx)
5301         local facet=mds$((mdtidx + 1))
5302
5303         echo "mcreating $FILECOUNT files"
5304         createmany -m $dir/f 1 $FILECOUNT || \
5305                 error "creating files in $dir"
5306
5307         # verify that files do not have EAs yet
5308         $GETSTRIPE $FILE1 2>&1 | grep -q "no stripe" || error "$FILE1 has an EA"
5309         $GETSTRIPE $FILEN 2>&1 | grep -q "no stripe" || error "$FILEN has an EA"
5310
5311         sync
5312         sleep 1
5313         df $dir  #make sure we get new statfs data
5314         local MDSFREE=$(do_facet $facet \
5315                 lctl get_param -n osd*.*$mdtname.kbytesfree)
5316         local MDCFREE=$(lctl get_param -n mdc.*$mdtname-mdc-*.kbytesfree)
5317         echo "opening files to create objects/EAs"
5318         local FILE
5319         for FILE in `seq -f $dir/f%g 1 $FILECOUNT`; do
5320                 $OPENFILE -f O_RDWR $FILE > /dev/null 2>&1 || error "opening $FILE"
5321         done
5322
5323         # verify that files have EAs now
5324         $GETSTRIPE $FILE1 | grep -q "obdidx" || error "$FILE1 missing EA"
5325         $GETSTRIPE $FILEN | grep -q "obdidx" || error "$FILEN missing EA"
5326
5327         sleep 1  #make sure we get new statfs data
5328         df $dir
5329         local MDSFREE2=$(do_facet $facet \
5330                 lctl get_param -n osd*.*$mdtname.kbytesfree)
5331         local MDCFREE2=$(lctl get_param -n mdc.*$mdtname-mdc-*.kbytesfree)
5332         if [[ $MDCFREE2 -lt $((MDCFREE - 16)) ]]; then
5333                 if [ "$MDSFREE" != "$MDSFREE2" ]; then
5334                         error "MDC before $MDCFREE != after $MDCFREE2"
5335                 else
5336                         echo "MDC before $MDCFREE != after $MDCFREE2"
5337                         echo "unable to confirm if MDS has large inodes"
5338                 fi
5339         fi
5340         rm -rf $dir
5341 }
5342 run_test 57b "default LOV EAs are stored inside large inodes ==="
5343
5344 test_58() {
5345         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5346         [ -z "$(which wiretest 2>/dev/null)" ] &&
5347                         skip_env "could not find wiretest" && return
5348         wiretest
5349 }
5350 run_test 58 "verify cross-platform wire constants =============="
5351
5352 test_59() {
5353         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5354         echo "touch 130 files"
5355         createmany -o $DIR/f59- 130
5356         echo "rm 130 files"
5357         unlinkmany $DIR/f59- 130
5358         sync
5359         # wait for commitment of removal
5360         wait_delete_completed
5361 }
5362 run_test 59 "verify cancellation of llog records async ========="
5363
5364 TEST60_HEAD="test_60 run $RANDOM"
5365 test_60a() {
5366         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5367         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
5368         do_facet mgs "! which run-llog.sh &> /dev/null" &&
5369                 do_facet mgs "! ls run-llog.sh &> /dev/null" &&
5370                         skip_env "missing subtest run-llog.sh" && return
5371
5372         log "$TEST60_HEAD - from kernel mode"
5373         do_facet mgs "$LCTL set_param debug=warning; $LCTL dk > /dev/null"
5374         do_facet mgs "sh run-llog.sh" || error "run-llog.sh failed"
5375         do_facet mgs $LCTL dk > $TMP/$tfile
5376
5377         # LU-6388: test llog_reader
5378         local llog_reader=$(do_facet mgs "which llog_reader 2> /dev/null")
5379         llog_reader=${llog_reader:-$LUSTRE/utils/llog_reader}
5380         [ -z $(do_facet mgs ls -d $llog_reader 2> /dev/null) ] &&
5381                         skip_env "missing llog_reader" && return
5382         local fstype=$(facet_fstype mgs)
5383         [ $fstype != ldiskfs -a $fstype != zfs ] &&
5384                 skip_env "Only for ldiskfs or zfs type mgs" && return
5385
5386         local mntpt=$(facet_mntpt mgs)
5387         local mgsdev=$(mgsdevname 1)
5388         local fid_list
5389         local fid
5390         local rec_list
5391         local rec
5392         local rec_type
5393         local obj_file
5394         local path
5395         local seq
5396         local oid
5397         local pass=true
5398
5399         #get fid and record list
5400         fid_list=($(awk '/9_sub.*record/ { print $NF }' /$TMP/$tfile |
5401                 tail -n 4))
5402         rec_list=($(awk '/9_sub.*record/ { print $((NF-3)) }' /$TMP/$tfile |
5403                 tail -n 4))
5404         #remount mgs as ldiskfs or zfs type
5405         stop mgs || error "stop mgs failed"
5406         mount_fstype mgs || error "remount mgs failed"
5407         for ((i = 0; i < ${#fid_list[@]}; i++)); do
5408                 fid=${fid_list[i]}
5409                 rec=${rec_list[i]}
5410                 seq=$(echo $fid | awk -F ':' '{ print $1 }' | sed -e "s/^0x//g")
5411                 oid=$(echo $fid | awk -F ':' '{ print $2 }' | sed -e "s/^0x//g")
5412                 oid=$((16#$oid))
5413
5414                 case $fstype in
5415                         ldiskfs )
5416                                 obj_file=$mntpt/O/$seq/d$((oid%32))/$oid ;;
5417                         zfs )
5418                                 obj_file=$mntpt/oi.$(($((16#$seq))&127))/$fid ;;
5419                 esac
5420                 echo "obj_file is $obj_file"
5421                 do_facet mgs $llog_reader $obj_file
5422
5423                 rec_type=$(do_facet mgs $llog_reader $obj_file | grep "type=" |
5424                         awk '{ print $3 }' | sed -e "s/^type=//g")
5425                 if [ $rec_type != $rec ]; then
5426                         echo "FAILED test_60a wrong record type $rec_type," \
5427                               "should be $rec"
5428                         pass=false
5429                         break
5430                 fi
5431
5432                 #check obj path if record type is LLOG_LOGID_MAGIC
5433                 if [ "$rec" == "1064553b" ]; then
5434                         path=$(do_facet mgs $llog_reader $obj_file |
5435                                 grep "path=" | awk '{ print $NF }' |
5436                                 sed -e "s/^path=//g")
5437                         if [ $obj_file != $mntpt/$path ]; then
5438                                 echo "FAILED test_60a wrong obj path" \
5439                                       "$montpt/$path, should be $obj_file"
5440                                 pass=false
5441                                 break
5442                         fi
5443                 fi
5444         done
5445         rm -f $TMP/$tfile
5446         #restart mgs before "error", otherwise it will block the next test
5447         stop mgs || error "stop mgs failed"
5448         start mgs $(mgsdevname) $MGS_MOUNT_OPTS || error "start mgs failed"
5449         $pass || error "test failed, see FAILED test_60a messages for specifics"
5450 }
5451 run_test 60a "llog_test run from kernel module and test llog_reader"
5452
5453 test_60aa() {
5454         # test old logid format
5455         if [ $(lustre_version_code mgs) -le $(version_code 3.1.53) ]; then
5456                 do_facet mgs $LCTL dl | grep MGS
5457                 do_facet mgs "$LCTL --device %MGS llog_print \\\\\\\$$FSNAME-client" ||
5458                         error "old llog_print failed"
5459         fi
5460
5461         # test new logid format
5462         if [ $(lustre_version_code mgs) -ge $(version_code 2.9.53) ]; then
5463                 do_facet mgs "$LCTL --device MGS llog_print $FSNAME-client" ||
5464                         error "new llog_print failed"
5465         fi
5466 }
5467 run_test 60aa "llog_print works with FIDs and simple names"
5468
5469 test_60b() { # bug 6411
5470         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5471         dmesg > $DIR/$tfile
5472         LLOG_COUNT=$(dmesg | awk "/$TEST60_HEAD/ { marker = 1; from_marker = 0; }
5473                                 /llog.test/ {
5474                                         if (marker)
5475                                                 from_marker++
5476                                         from_begin++
5477                                 }
5478                                 END {
5479                                         if (marker)
5480                                                 print from_marker
5481                                         else
5482                                                 print from_begin
5483                                 }")
5484         [[ $LLOG_COUNT -gt 100 ]] &&
5485                 error "CDEBUG_LIMIT not limiting messages ($LLOG_COUNT)" || true
5486 }
5487 run_test 60b "limit repeated messages from CERROR/CWARN ========"
5488
5489 test_60c() {
5490         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5491         echo "create 5000 files"
5492         createmany -o $DIR/f60c- 5000
5493 #define OBD_FAIL_MDS_LLOG_CREATE_FAILED  0x137
5494         lctl set_param fail_loc=0x80000137
5495         unlinkmany $DIR/f60c- 5000
5496         lctl set_param fail_loc=0
5497 }
5498 run_test 60c "unlink file when mds full"
5499
5500 test_60d() {
5501         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5502         SAVEPRINTK=$(lctl get_param -n printk)
5503
5504         # verify "lctl mark" is even working"
5505         MESSAGE="test message ID $RANDOM $$"
5506         $LCTL mark "$MESSAGE" || error "$LCTL mark failed"
5507         dmesg | grep -q "$MESSAGE" || error "didn't find debug marker in log"
5508
5509         lctl set_param printk=0 || error "set lnet.printk failed"
5510         lctl get_param -n printk | grep emerg || error "lnet.printk dropped emerg"
5511         MESSAGE="new test message ID $RANDOM $$"
5512         # Assume here that libcfs_debug_mark_buffer() uses D_WARNING
5513         $LCTL mark "$MESSAGE" || error "$LCTL mark failed"
5514         dmesg | grep -q "$MESSAGE" && error "D_WARNING wasn't masked" || true
5515
5516         lctl set_param -n printk="$SAVEPRINTK"
5517 }
5518 run_test 60d "test printk console message masking"
5519
5520 test_60e() {
5521         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5522         remote_mds_nodsh && skip "remote MDS with nodsh" && return
5523         touch $DIR/$tfile
5524 #define OBD_FAIL_MDS_LLOG_CREATE_FAILED2  0x15b
5525         do_facet mds1 lctl set_param fail_loc=0x15b
5526         rm $DIR/$tfile
5527 }
5528 run_test 60e "no space while new llog is being created"
5529
5530 test_61() {
5531         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5532         f="$DIR/f61"
5533         dd if=/dev/zero of=$f bs=$(page_size) count=1 || error "dd $f failed"
5534         cancel_lru_locks osc
5535         $MULTIOP $f OSMWUc || error "$MULTIOP $f failed"
5536         sync
5537 }
5538 run_test 61 "mmap() writes don't make sync hang ================"
5539
5540 # bug 2330 - insufficient obd_match error checking causes LBUG
5541 test_62() {
5542         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5543         f="$DIR/f62"
5544         echo foo > $f
5545         cancel_lru_locks osc
5546         lctl set_param fail_loc=0x405
5547         cat $f && error "cat succeeded, expect -EIO"
5548         lctl set_param fail_loc=0
5549 }
5550 # This test is now irrelevant (as of bug 10718 inclusion), we no longer
5551 # match every page all of the time.
5552 #run_test 62 "verify obd_match failure doesn't LBUG (should -EIO)"
5553
5554 # bug 2319 - oig_wait() interrupted causes crash because of invalid waitq.
5555 # Though this test is irrelevant anymore, it helped to reveal some
5556 # other grant bugs (LU-4482), let's keep it.
5557 test_63a() {   # was test_63
5558         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5559         MAX_DIRTY_MB=`lctl get_param -n osc.*.max_dirty_mb | head -n 1`
5560         for i in `seq 10` ; do
5561                 dd if=/dev/zero of=$DIR/f63 bs=8k &
5562                 sleep 5
5563                 kill $!
5564                 sleep 1
5565         done
5566
5567         rm -f $DIR/f63 || true
5568 }
5569 run_test 63a "Verify oig_wait interruption does not crash ======="
5570
5571 # bug 2248 - async write errors didn't return to application on sync
5572 # bug 3677 - async write errors left page locked
5573 test_63b() {
5574         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5575         debugsave
5576         lctl set_param debug=-1
5577
5578         # ensure we have a grant to do async writes
5579         dd if=/dev/zero of=$DIR/$tfile bs=4k count=1
5580         rm $DIR/$tfile
5581
5582         sync    # sync lest earlier test intercept the fail_loc
5583
5584         #define OBD_FAIL_OSC_BRW_PREP_REQ        0x406
5585         lctl set_param fail_loc=0x80000406
5586         $MULTIOP $DIR/$tfile Owy && \
5587                 error "sync didn't return ENOMEM"
5588         sync; sleep 2; sync     # do a real sync this time to flush page
5589         lctl get_param -n llite.*.dump_page_cache | grep locked && \
5590                 error "locked page left in cache after async error" || true
5591         debugrestore
5592 }
5593 run_test 63b "async write errors should be returned to fsync ==="
5594
5595 test_64a () {
5596         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5597         df $DIR
5598         lctl get_param -n osc.*[oO][sS][cC][_-]*.cur* | grep "[0-9]"
5599 }
5600 run_test 64a "verify filter grant calculations (in kernel) ====="
5601
5602 test_64b () {
5603         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5604         sh oos.sh $MOUNT || error "oos.sh failed: $?"
5605 }
5606 run_test 64b "check out-of-space detection on client"
5607
5608 test_64c() {
5609         $LCTL set_param osc.*OST0000-osc-[^mM]*.cur_grant_bytes=0
5610 }
5611 run_test 64c "verify grant shrink"
5612
5613 # bug 1414 - set/get directories' stripe info
5614 test_65a() {
5615         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5616         test_mkdir $DIR/$tdir
5617         touch $DIR/$tdir/f1
5618         $LVERIFY $DIR/$tdir $DIR/$tdir/f1 || error "lverify failed"
5619 }
5620 run_test 65a "directory with no stripe info"
5621
5622 test_65b() {
5623         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5624         test_mkdir $DIR/$tdir
5625         local STRIPESIZE=$($GETSTRIPE -S $DIR/$tdir)
5626
5627         $SETSTRIPE -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
5628                                                 error "setstripe"
5629         touch $DIR/$tdir/f2
5630         $LVERIFY $DIR/$tdir $DIR/$tdir/f2 || error "lverify failed"
5631 }
5632 run_test 65b "directory setstripe -S stripe_size*2 -i 0 -c 1"
5633
5634 test_65c() {
5635         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5636         [ $OSTCOUNT -lt 2 ] && skip "need at least 2 OSTs" && return
5637         test_mkdir $DIR/$tdir
5638         local stripesize=$($GETSTRIPE -S $DIR/$tdir)
5639
5640         $LFS setstripe -S $((stripesize * 4)) -i 1 \
5641                 -c $((OSTCOUNT - 1)) $DIR/$tdir || error "setstripe"
5642         touch $DIR/$tdir/f3
5643         $LVERIFY $DIR/$tdir $DIR/$tdir/f3 || error "lverify failed"
5644 }
5645 run_test 65c "directory setstripe -S stripe_size*4 -i 1 -c $((OSTCOUNT-1))"
5646
5647 test_65d() {
5648         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5649         test_mkdir $DIR/$tdir
5650         local STRIPECOUNT=$($GETSTRIPE -c $DIR/$tdir)
5651         local STRIPESIZE=$($GETSTRIPE -S $DIR/$tdir)
5652
5653         if [[ $STRIPECOUNT -le 0 ]]; then
5654                 sc=1
5655         elif [[ $STRIPECOUNT -gt 2000 ]]; then
5656 #LOV_MAX_STRIPE_COUNT is 2000
5657                 [[ $OSTCOUNT -gt 2000 ]] && sc=2000 || sc=$(($OSTCOUNT - 1))
5658         else
5659                 sc=$(($STRIPECOUNT - 1))
5660         fi
5661         $SETSTRIPE -S $STRIPESIZE -c $sc $DIR/$tdir || error "setstripe"
5662         touch $DIR/$tdir/f4 $DIR/$tdir/f5
5663         $LVERIFY $DIR/$tdir $DIR/$tdir/f4 $DIR/$tdir/f5 ||
5664                 error "lverify failed"
5665 }
5666 run_test 65d "directory setstripe -S stripe_size -c stripe_count"
5667
5668 test_65e() {
5669         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5670         test_mkdir $DIR/$tdir
5671
5672         $SETSTRIPE $DIR/$tdir || error "setstripe"
5673         $GETSTRIPE -v $DIR/$tdir | grep "Default" ||
5674                                         error "no stripe info failed"
5675         touch $DIR/$tdir/f6
5676         $LVERIFY $DIR/$tdir $DIR/$tdir/f6 || error "lverify failed"
5677 }
5678 run_test 65e "directory setstripe defaults"
5679
5680 test_65f() {
5681         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5682         test_mkdir $DIR/${tdir}f
5683         $RUNAS $SETSTRIPE $DIR/${tdir}f && error "setstripe succeeded" || true
5684 }
5685 run_test 65f "dir setstripe permission (should return error) ==="
5686
5687 test_65g() {
5688         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5689         test_mkdir $DIR/$tdir
5690         local STRIPESIZE=$($GETSTRIPE -S $DIR/$tdir)
5691
5692         $LFS setstripe -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
5693                 error "setstripe -S failed"
5694         $LFS setstripe -d $DIR/$tdir || error "setstripe -d failed"
5695         $LFS getstripe -v $DIR/$tdir | grep "Default" ||
5696                 error "delete default stripe failed"
5697 }
5698 run_test 65g "directory setstripe -d"
5699
5700 test_65h() {
5701         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5702         test_mkdir $DIR/$tdir
5703         local STRIPESIZE=$($GETSTRIPE -S $DIR/$tdir)
5704
5705         $LFS setstripe -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
5706                 error "setstripe -S failed"
5707         test_mkdir $DIR/$tdir/dd1
5708         [ $($LFS getstripe -c $DIR/$tdir) = $($GETSTRIPE -c $DIR/$tdir/dd1) ] ||
5709                 error "stripe info inherit failed"
5710 }
5711 run_test 65h "directory stripe info inherit ===================="
5712
5713 test_65i() { # bug6367
5714         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5715         $SETSTRIPE -S 65536 -c -1 $MOUNT
5716 }
5717 run_test 65i "set non-default striping on root directory (bug 6367)="
5718
5719 test_65ia() { # bug12836
5720         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5721         $GETSTRIPE $MOUNT || error "getstripe $MOUNT failed"
5722 }
5723 run_test 65ia "getstripe on -1 default directory striping"
5724
5725 test_65ib() { # bug12836
5726         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5727         $GETSTRIPE -v $MOUNT || error "getstripe -v $MOUNT failed"
5728 }
5729 run_test 65ib "getstripe -v on -1 default directory striping"
5730
5731 test_65ic() { # bug12836
5732         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5733         $LFS find -mtime -1 $MOUNT > /dev/null || error "find $MOUNT failed"
5734 }
5735 run_test 65ic "new find on -1 default directory striping"
5736
5737 test_65j() { # bug6367
5738         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5739         sync; sleep 1
5740         # if we aren't already remounting for each test, do so for this test
5741         if [ "$CLEANUP" = ":" -a "$I_MOUNTED" = "yes" ]; then
5742                 cleanup || error "failed to unmount"
5743                 setup
5744         fi
5745         $SETSTRIPE -d $MOUNT || error "setstripe failed"
5746 }
5747 run_test 65j "set default striping on root directory (bug 6367)="
5748
5749 test_65k() { # bug11679
5750         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5751         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
5752         remote_mds_nodsh && skip "remote MDS with nodsh" && return
5753
5754         local disable_precreate=true
5755         [ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.8.54) ] &&
5756                 disable_precreate=false
5757
5758         echo "Check OST status: "
5759         local MDS_OSCS=$(do_facet $SINGLEMDS lctl dl |
5760                 awk '/[oO][sS][cC].*md[ts]/ { print $4 }')
5761
5762         for OSC in $MDS_OSCS; do
5763                 echo $OSC "is active"
5764                 do_facet $SINGLEMDS lctl --device %$OSC activate
5765         done
5766
5767         for INACTIVE_OSC in $MDS_OSCS; do
5768                 local ost=$(osc_to_ost $INACTIVE_OSC)
5769                 local ostnum=$(do_facet $SINGLEMDS lctl get_param -n \
5770                                lov.*md*.target_obd |
5771                                awk -F: /$ost/'{ print $1 }' | head -n 1)
5772
5773                 mkdir -p $DIR/$tdir
5774                 $SETSTRIPE -i $ostnum -c 1 $DIR/$tdir
5775                 createmany -o $DIR/$tdir/$tfile.$ostnum. 1000
5776
5777                 echo "Deactivate: " $INACTIVE_OSC
5778                 do_facet $SINGLEMDS lctl --device %$INACTIVE_OSC deactivate
5779
5780                 local count=$(do_facet $SINGLEMDS "lctl get_param -n \
5781                               osp.$ost*MDT0000.create_count")
5782                 local max_count=$(do_facet $SINGLEMDS "lctl get_param -n \
5783                                   osp.$ost*MDT0000.max_create_count")
5784                 $disable_precreate &&
5785                         do_facet $SINGLEMDS "lctl set_param -n \
5786                                 osp.$ost*MDT0000.max_create_count=0"
5787
5788                 for idx in $(seq 0 $((OSTCOUNT - 1))); do
5789                         [ -f $DIR/$tdir/$idx ] && continue
5790                         echo "$SETSTRIPE -i $idx -c 1 $DIR/$tdir/$idx"
5791                         $SETSTRIPE -i $idx -c 1 $DIR/$tdir/$idx ||
5792                                 error "setstripe $idx should succeed"
5793                         rm -f $DIR/$tdir/$idx || error "rm $idx failed"
5794                 done
5795                 unlinkmany $DIR/$tdir/$tfile.$ostnum. 1000
5796                 rmdir $DIR/$tdir
5797
5798                 do_facet $SINGLEMDS "lctl set_param -n \
5799                         osp.$ost*MDT0000.max_create_count=$max_count"
5800                 do_facet $SINGLEMDS "lctl set_param -n \
5801                         osp.$ost*MDT0000.create_count=$count"
5802                 do_facet $SINGLEMDS lctl --device  %$INACTIVE_OSC activate
5803                 echo $INACTIVE_OSC "is Activate"
5804
5805                 wait_osc_import_state mds ost$ostnum FULL
5806         done
5807 }
5808 run_test 65k "validate manual striping works properly with deactivated OSCs"
5809
5810 test_65l() { # bug 12836
5811         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5812         test_mkdir -p $DIR/$tdir/test_dir
5813         $SETSTRIPE -c -1 $DIR/$tdir/test_dir
5814         $LFS find -mtime -1 $DIR/$tdir >/dev/null
5815 }
5816 run_test 65l "lfs find on -1 stripe dir ========================"
5817
5818 test_65m() {
5819         $RUNAS $SETSTRIPE -c 2 $MOUNT && error "setstripe should fail"
5820         true
5821 }
5822 run_test 65m "normal user can't set filesystem default stripe"
5823
5824 # bug 2543 - update blocks count on client
5825 test_66() {
5826         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5827         COUNT=${COUNT:-8}
5828         dd if=/dev/zero of=$DIR/f66 bs=1k count=$COUNT
5829         sync; sync_all_data; sync; sync_all_data
5830         cancel_lru_locks osc
5831         BLOCKS=`ls -s $DIR/f66 | awk '{ print $1 }'`
5832         [ $BLOCKS -ge $COUNT ] || error "$DIR/f66 blocks $BLOCKS < $COUNT"
5833 }
5834 run_test 66 "update inode blocks count on client ==============="
5835
5836 meminfo() {
5837         awk '($1 == "'$1':") { print $2 }' /proc/meminfo
5838 }
5839
5840 swap_used() {
5841         swapon -s | awk '($1 == "'$1'") { print $4 }'
5842 }
5843
5844 # bug5265, obdfilter oa2dentry return -ENOENT
5845 # #define OBD_FAIL_SRV_ENOENT 0x217
5846 test_69() {
5847         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5848         remote_ost_nodsh && skip "remote OST with nodsh" && return
5849
5850         f="$DIR/$tfile"
5851         $SETSTRIPE -c 1 -i 0 $f
5852
5853         $DIRECTIO write ${f}.2 0 1 || error "directio write error"
5854
5855         do_facet ost1 lctl set_param fail_loc=0x217
5856         $TRUNCATE $f 1 # vmtruncate() will ignore truncate() error.
5857         $DIRECTIO write $f 0 2 && error "write succeeded, expect -ENOENT"
5858
5859         do_facet ost1 lctl set_param fail_loc=0
5860         $DIRECTIO write $f 0 2 || error "write error"
5861
5862         cancel_lru_locks osc
5863         $DIRECTIO read $f 0 1 || error "read error"
5864
5865         do_facet ost1 lctl set_param fail_loc=0x217
5866         $DIRECTIO read $f 1 1 && error "read succeeded, expect -ENOENT"
5867
5868         do_facet ost1 lctl set_param fail_loc=0
5869         rm -f $f
5870 }
5871 run_test 69 "verify oa2dentry return -ENOENT doesn't LBUG ======"
5872
5873 test_71() {
5874         test_mkdir $DIR/$tdir
5875         $LFS setdirstripe -D -c$MDSCOUNT $DIR/$tdir
5876         sh rundbench -C -D $DIR/$tdir 2 || error "dbench failed!"
5877 }
5878 run_test 71 "Running dbench on lustre (don't segment fault) ===="
5879
5880 test_72a() { # bug 5695 - Test that on 2.6 remove_suid works properly
5881         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5882         [ "$RUNAS_ID" = "$UID" ] &&
5883                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
5884
5885         # Check that testing environment is properly set up. Skip if not
5886         FAIL_ON_ERROR=false check_runas_id_ret $RUNAS_ID $RUNAS_GID $RUNAS || {
5887                 skip_env "User $RUNAS_ID does not exist - skipping"
5888                 return 0
5889         }
5890         touch $DIR/$tfile
5891         chmod 777 $DIR/$tfile
5892         chmod ug+s $DIR/$tfile
5893         $RUNAS dd if=/dev/zero of=$DIR/$tfile bs=512 count=1 ||
5894                 error "$RUNAS dd $DIR/$tfile failed"
5895         # See if we are still setuid/sgid
5896         test -u $DIR/$tfile -o -g $DIR/$tfile &&
5897                 error "S/gid is not dropped on write"
5898         # Now test that MDS is updated too
5899         cancel_lru_locks mdc
5900         test -u $DIR/$tfile -o -g $DIR/$tfile &&
5901                 error "S/gid is not dropped on MDS"
5902         rm -f $DIR/$tfile
5903 }
5904 run_test 72a "Test that remove suid works properly (bug5695) ===="
5905
5906 test_72b() { # bug 24226 -- keep mode setting when size is not changing
5907         local perm
5908
5909         [ "$RUNAS_ID" = "$UID" ] && \
5910                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
5911         [ "$RUNAS_ID" -eq 0 ] && \
5912                 skip_env "RUNAS_ID = 0 -- skipping" && return
5913
5914         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5915         # Check that testing environment is properly set up. Skip if not
5916         FAIL_ON_ERROR=false check_runas_id_ret $RUNAS_ID $RUNAS_ID $RUNAS || {
5917                 skip_env "User $RUNAS_ID does not exist - skipping"
5918                 return 0
5919         }
5920         touch $DIR/${tfile}-f{g,u}
5921         test_mkdir $DIR/${tfile}-dg
5922         test_mkdir $DIR/${tfile}-du
5923         chmod 770 $DIR/${tfile}-{f,d}{g,u}
5924         chmod g+s $DIR/${tfile}-{f,d}g
5925         chmod u+s $DIR/${tfile}-{f,d}u
5926         for perm in 777 2777 4777; do
5927                 $RUNAS chmod $perm $DIR/${tfile}-fg && error "S/gid file allowed improper chmod to $perm"
5928                 $RUNAS chmod $perm $DIR/${tfile}-fu && error "S/uid file allowed improper chmod to $perm"
5929                 $RUNAS chmod $perm $DIR/${tfile}-dg && error "S/gid dir allowed improper chmod to $perm"
5930                 $RUNAS chmod $perm $DIR/${tfile}-du && error "S/uid dir allowed improper chmod to $perm"
5931         done
5932         true
5933 }
5934 run_test 72b "Test that we keep mode setting if without file data changed (bug 24226)"
5935
5936 # bug 3462 - multiple simultaneous MDC requests
5937 test_73() {
5938         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5939         test_mkdir $DIR/d73-1
5940         test_mkdir $DIR/d73-2
5941         multiop_bg_pause $DIR/d73-1/f73-1 O_c || return 1
5942         pid1=$!
5943
5944         lctl set_param fail_loc=0x80000129
5945         $MULTIOP $DIR/d73-1/f73-2 Oc &
5946         sleep 1
5947         lctl set_param fail_loc=0
5948
5949         $MULTIOP $DIR/d73-2/f73-3 Oc &
5950         pid3=$!
5951
5952         kill -USR1 $pid1
5953         wait $pid1 || return 1
5954
5955         sleep 25
5956
5957         $CHECKSTAT -t file $DIR/d73-1/f73-1 || return 4
5958         $CHECKSTAT -t file $DIR/d73-1/f73-2 || return 5
5959         $CHECKSTAT -t file $DIR/d73-2/f73-3 || return 6
5960
5961         rm -rf $DIR/d73-*
5962 }
5963 run_test 73 "multiple MDC requests (should not deadlock)"
5964
5965 test_74a() { # bug 6149, 6184
5966         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5967         #define OBD_FAIL_LDLM_ENQUEUE_OLD_EXPORT 0x30e
5968         #
5969         # very important to OR with OBD_FAIL_ONCE (0x80000000) -- otherwise it
5970         # will spin in a tight reconnection loop
5971         touch $DIR/f74a
5972         $LCTL set_param fail_loc=0x8000030e
5973         # get any lock that won't be difficult - lookup works.
5974         ls $DIR/f74a
5975         $LCTL set_param fail_loc=0
5976         rm -f $DIR/f74a
5977         true
5978 }
5979 run_test 74a "ldlm_enqueue freed-export error path, ls (shouldn't LBUG)"
5980
5981 test_74b() { # bug 13310
5982         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5983         #define OBD_FAIL_LDLM_ENQUEUE_OLD_EXPORT 0x30e
5984         #
5985         # very important to OR with OBD_FAIL_ONCE (0x80000000) -- otherwise it
5986         # will spin in a tight reconnection loop
5987         $LCTL set_param fail_loc=0x8000030e
5988         # get a "difficult" lock
5989         touch $DIR/f74b
5990         $LCTL set_param fail_loc=0
5991         rm -f $DIR/f74b
5992         true
5993 }
5994 run_test 74b "ldlm_enqueue freed-export error path, touch (shouldn't LBUG)"
5995
5996 test_74c() {
5997         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5998         #define OBD_FAIL_LDLM_NEW_LOCK
5999         $LCTL set_param fail_loc=0x319
6000         touch $DIR/$tfile && error "touch successful"
6001         $LCTL set_param fail_loc=0
6002         true
6003 }
6004 run_test 74c "ldlm_lock_create error path, (shouldn't LBUG)"
6005
6006 num_inodes() {
6007         awk '/lustre_inode_cache/ {print $2; exit}' /proc/slabinfo
6008 }
6009
6010 test_76() { # Now for bug 20433, added originally in bug 1443
6011         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6012         local CPUS=$(getconf _NPROCESSORS_ONLN 2>/dev/null)
6013         cancel_lru_locks osc
6014         BEFORE_INODES=$(num_inodes)
6015         echo "before inodes: $BEFORE_INODES"
6016         local COUNT=1000
6017         [ "$SLOW" = "no" ] && COUNT=100
6018         for i in $(seq $COUNT); do
6019                 touch $DIR/$tfile
6020                 rm -f $DIR/$tfile
6021         done
6022         cancel_lru_locks osc
6023         AFTER_INODES=$(num_inodes)
6024         echo "after inodes: $AFTER_INODES"
6025         local wait=0
6026         while [[ $((AFTER_INODES-1*${CPUS:-1})) -gt $BEFORE_INODES ]]; do
6027                 sleep 2
6028                 AFTER_INODES=$(num_inodes)
6029                 wait=$((wait+2))
6030                 echo "wait $wait seconds inodes: $AFTER_INODES"
6031                 if [ $wait -gt 30 ]; then
6032                         error "inode slab grew from $BEFORE_INODES to $AFTER_INODES"
6033                 fi
6034         done
6035 }
6036 run_test 76 "confirm clients recycle inodes properly ===="
6037
6038
6039 export ORIG_CSUM=""
6040 set_checksums()
6041 {
6042         # Note: in sptlrpc modes which enable its own bulk checksum, the
6043         # original crc32_le bulk checksum will be automatically disabled,
6044         # and the OBD_FAIL_OSC_CHECKSUM_SEND/OBD_FAIL_OSC_CHECKSUM_RECEIVE
6045         # will be checked by sptlrpc code against sptlrpc bulk checksum.
6046         # In this case set_checksums() will not be no-op, because sptlrpc
6047         # bulk checksum will be enabled all through the test.
6048
6049         [ "$ORIG_CSUM" ] || ORIG_CSUM=`lctl get_param -n osc.*.checksums | head -n1`
6050         lctl set_param -n osc.*.checksums $1
6051         return 0
6052 }
6053
6054 export ORIG_CSUM_TYPE="`lctl get_param -n osc.*osc-[^mM]*.checksum_type |
6055                         sed 's/.*\[\(.*\)\].*/\1/g' | head -n1`"
6056 CKSUM_TYPES=${CKSUM_TYPES:-"crc32 adler"}
6057 [ "$ORIG_CSUM_TYPE" = "crc32c" ] && CKSUM_TYPES="$CKSUM_TYPES crc32c"
6058 set_checksum_type()
6059 {
6060         lctl set_param -n osc.*osc-[^mM]*.checksum_type $1
6061         log "set checksum type to $1"
6062         return 0
6063 }
6064 F77_TMP=$TMP/f77-temp
6065 F77SZ=8
6066 setup_f77() {
6067         dd if=/dev/urandom of=$F77_TMP bs=1M count=$F77SZ || \
6068                 error "error writing to $F77_TMP"
6069 }
6070
6071 test_77a() { # bug 10889
6072         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6073         $GSS && skip "could not run with gss" && return
6074         [ ! -f $F77_TMP ] && setup_f77
6075         set_checksums 1
6076         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ || error "dd error"
6077         set_checksums 0
6078         rm -f $DIR/$tfile
6079 }
6080 run_test 77a "normal checksum read/write operation"
6081
6082 test_77b() { # bug 10889
6083         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6084         $GSS && skip "could not run with gss" && return
6085         [ ! -f $F77_TMP ] && setup_f77
6086         #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
6087         $LCTL set_param fail_loc=0x80000409
6088         set_checksums 1
6089
6090         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ conv=sync ||
6091                 error "dd error: $?"
6092         $LCTL set_param fail_loc=0
6093
6094         for algo in $CKSUM_TYPES; do
6095                 cancel_lru_locks osc
6096                 set_checksum_type $algo
6097                 #define OBD_FAIL_OSC_CHECKSUM_RECEIVE    0x408
6098                 $LCTL set_param fail_loc=0x80000408
6099                 cmp $F77_TMP $DIR/$tfile || error "file compare failed"
6100                 $LCTL set_param fail_loc=0
6101         done
6102         set_checksums 0
6103         set_checksum_type $ORIG_CSUM_TYPE
6104         rm -f $DIR/$tfile
6105 }
6106 run_test 77b "checksum error on client write, read"
6107
6108 cleanup_77c() {
6109         trap 0
6110         set_checksums 0
6111         $LCTL set_param osc.*osc-[^mM]*.checksum_dump=0
6112         $check_ost &&
6113                 do_facet ost1 $LCTL set_param obdfilter.*-OST*.checksum_dump=0
6114         [ -n $osc_file_prefix ] && rm -f ${osc_file_prefix}*
6115         $check_ost && [ -n $ost_file_prefix ] &&
6116                 do_facet ost1 rm -f ${ost_file_prefix}\*
6117 }
6118
6119 test_77c() {
6120         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6121         $GSS && skip "could not run with gss" && return
6122
6123         local bad1
6124         local osc_file_prefix
6125         local osc_file
6126         local check_ost=false
6127         local ost_file_prefix
6128         local ost_file
6129         local orig_cksum
6130         local dump_cksum
6131         local fid
6132
6133         # ensure corruption will occur on first OSS/OST
6134         $LFS setstripe -i 0 $DIR/$tfile
6135
6136         [ ! -f $F77_TMP ] && setup_f77
6137         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ conv=sync ||
6138                 error "dd write error: $?"
6139         fid=$($LFS path2fid $DIR/$tfile)
6140
6141         if [ $(lustre_version_code ost1) -ge $(version_code 2.9.57) ]
6142         then
6143                 check_ost=true
6144                 ost_file_prefix=$(do_facet ost1 $LCTL get_param -n debug_path)
6145                 ost_file_prefix=${ost_file_prefix}-checksum_dump-ost-\\${fid}
6146         else
6147                 echo "OSS do not support bulk pages dump upon error"
6148         fi
6149
6150         osc_file_prefix=$($LCTL get_param -n debug_path)
6151         osc_file_prefix=${osc_file_prefix}-checksum_dump-osc-\\${fid}
6152
6153         trap cleanup_77c EXIT
6154
6155         set_checksums 1
6156         # enable bulk pages dump upon error on Client
6157         $LCTL set_param osc.*osc-[^mM]*.checksum_dump=1
6158         # enable bulk pages dump upon error on OSS
6159         $check_ost &&
6160                 do_facet ost1 $LCTL set_param obdfilter.*-OST*.checksum_dump=1
6161
6162         # flush Client cache to allow next read to reach OSS
6163         cancel_lru_locks osc
6164
6165         #define OBD_FAIL_OSC_CHECKSUM_RECEIVE       0x408
6166         $LCTL set_param fail_loc=0x80000408
6167         dd if=$DIR/$tfile of=/dev/null bs=1M || error "dd read error: $?"
6168         $LCTL set_param fail_loc=0
6169
6170         rm -f $DIR/$tfile
6171
6172         # check cksum dump on Client
6173         osc_file=$(ls ${osc_file_prefix}*)
6174         [ -n "$osc_file" ] || error "no checksum dump file on Client"
6175         # OBD_FAIL_OSC_CHECKSUM_RECEIVE corrupts with "bad1" at start of file
6176         bad1=$(dd if=$osc_file bs=1 count=4 2>/dev/null) || error "dd error: $?"
6177         [ $bad1 == "bad1" ] || error "unexpected corrupt pattern"
6178         orig_cksum=$(dd if=$F77_TMP bs=1 skip=4 count=1048572 2>/dev/null |
6179                      cksum)
6180         dump_cksum=$(dd if=$osc_file bs=1 skip=4 2>/dev/null | cksum)
6181         [[ "$orig_cksum" == "$dump_cksum" ]] ||
6182                 error "dump content does not match on Client"
6183
6184         $check_ost || skip "No need to check cksum dump on OSS"
6185
6186         # check cksum dump on OSS
6187         ost_file=$(do_facet ost1 ls ${ost_file_prefix}\*)
6188         [ -n "$ost_file" ] || error "no checksum dump file on OSS"
6189         orig_cksum=$(dd if=$F77_TMP bs=1048576 count=1 2>/dev/null | cksum)
6190         dump_cksum=$(do_facet ost1 dd if=$ost_file 2>/dev/null \| cksum)
6191         [[ "$orig_cksum" == "$dump_cksum" ]] ||
6192                 error "dump content does not match on OSS"
6193
6194         cleanup_77c
6195 }
6196 run_test 77c "checksum error on client read with debug"
6197
6198 test_77d() { # bug 10889
6199         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6200         $GSS && skip "could not run with gss" && return
6201         #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
6202         $LCTL set_param fail_loc=0x80000409
6203         set_checksums 1
6204         $DIRECTIO write $DIR/$tfile 0 $F77SZ $((1024 * 1024)) ||
6205                 error "direct write: rc=$?"
6206         $LCTL set_param fail_loc=0
6207         set_checksums 0
6208
6209         #define OBD_FAIL_OSC_CHECKSUM_RECEIVE    0x408
6210         $LCTL set_param fail_loc=0x80000408
6211         set_checksums 1
6212         cancel_lru_locks osc
6213         $DIRECTIO read $DIR/$tfile 0 $F77SZ $((1024 * 1024)) ||
6214                 error "direct read: rc=$?"
6215         $LCTL set_param fail_loc=0
6216         set_checksums 0
6217 }
6218 run_test 77d "checksum error on OST direct write, read"
6219
6220 test_77f() { # bug 10889
6221         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6222         $GSS && skip "could not run with gss" && return
6223         set_checksums 1
6224         for algo in $CKSUM_TYPES; do
6225                 cancel_lru_locks osc
6226                 set_checksum_type $algo
6227                 #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
6228                 $LCTL set_param fail_loc=0x409
6229                 $DIRECTIO write $DIR/$tfile 0 $F77SZ $((1024 * 1024)) &&
6230                         error "direct write succeeded"
6231                 $LCTL set_param fail_loc=0
6232         done
6233         set_checksum_type $ORIG_CSUM_TYPE
6234         set_checksums 0
6235 }
6236 run_test 77f "repeat checksum error on write (expect error)"
6237
6238 test_77g() { # bug 10889
6239         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6240         $GSS && skip "could not run with gss" && return
6241         remote_ost_nodsh && skip "remote OST with nodsh" && return
6242
6243         [ ! -f $F77_TMP ] && setup_f77
6244
6245         $SETSTRIPE -c 1 -i 0 $DIR/$tfile
6246         #define OBD_FAIL_OST_CHECKSUM_RECEIVE       0x21a
6247         do_facet ost1 lctl set_param fail_loc=0x8000021a
6248         set_checksums 1
6249         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ ||
6250                 error "write error: rc=$?"
6251         do_facet ost1 lctl set_param fail_loc=0
6252         set_checksums 0
6253
6254         cancel_lru_locks osc
6255         #define OBD_FAIL_OST_CHECKSUM_SEND          0x21b
6256         do_facet ost1 lctl set_param fail_loc=0x8000021b
6257         set_checksums 1
6258         cmp $F77_TMP $DIR/$tfile || error "file compare failed"
6259         do_facet ost1 lctl set_param fail_loc=0
6260         set_checksums 0
6261 }
6262 run_test 77g "checksum error on OST write, read"
6263
6264 test_77j() { # bug 13805
6265         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6266         $GSS && skip "could not run with gss" && return
6267         #define OBD_FAIL_OSC_CKSUM_ADLER_ONLY    0x40c
6268         lctl set_param fail_loc=0x40c
6269         remount_client $MOUNT
6270         lctl set_param fail_loc=0
6271         # wait async osc connect to finish and reflect updated state value
6272         local i
6273         for (( i=0; i < OSTCOUNT; i++ )) ; do
6274                 wait_osc_import_state client ost$((i+1)) FULL
6275         done
6276
6277         for VALUE in $(lctl get_param osc.*osc-[^mM]*.checksum_type); do
6278                 PARAM=$(echo ${VALUE[0]} | cut -d "=" -f1)
6279                 algo=$(lctl get_param -n $PARAM | sed 's/.*\[\(.*\)\].*/\1/g')
6280                 [ "$algo" = "adler" ] || error "algo set to $algo instead of adler"
6281         done
6282         remount_client $MOUNT
6283 }
6284 run_test 77j "client only supporting ADLER32"
6285
6286 [ "$ORIG_CSUM" ] && set_checksums $ORIG_CSUM || true
6287 rm -f $F77_TMP
6288 unset F77_TMP
6289
6290 cleanup_test_78() {
6291         trap 0
6292         rm -f $DIR/$tfile
6293 }
6294
6295 test_78() { # bug 10901
6296         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6297         remote_ost || { skip_env "local OST" && return; }
6298
6299         NSEQ=5
6300         F78SIZE=$(($(awk '/MemFree:/ { print $2 }' /proc/meminfo) / 1024))
6301         echo "MemFree: $F78SIZE, Max file size: $MAXFREE"
6302         MEMTOTAL=$(($(awk '/MemTotal:/ { print $2 }' /proc/meminfo) / 1024))
6303         echo "MemTotal: $MEMTOTAL"
6304
6305         # reserve 256MB of memory for the kernel and other running processes,
6306         # and then take 1/2 of the remaining memory for the read/write buffers.
6307         if [ $MEMTOTAL -gt 512 ] ;then
6308                 MEMTOTAL=$(((MEMTOTAL - 256 ) / 2))
6309         else
6310                 # for those poor memory-starved high-end clusters...
6311                 MEMTOTAL=$((MEMTOTAL / 2))
6312         fi
6313         echo "Mem to use for directio: $MEMTOTAL"
6314
6315         [[ $F78SIZE -gt $MEMTOTAL ]] && F78SIZE=$MEMTOTAL
6316         [[ $F78SIZE -gt 512 ]] && F78SIZE=512
6317         [[ $F78SIZE -gt $((MAXFREE / 1024)) ]] && F78SIZE=$((MAXFREE / 1024))
6318         SMALLESTOST=$($LFS df $DIR | grep OST | awk '{ print $4 }' | sort -n |
6319                 head -n1)
6320         echo "Smallest OST: $SMALLESTOST"
6321         [[ $SMALLESTOST -lt 10240 ]] &&
6322                 skip "too small OSTSIZE, useless to run large O_DIRECT test" && return 0
6323
6324         trap cleanup_test_78 EXIT
6325
6326         [[ $F78SIZE -gt $((SMALLESTOST * $OSTCOUNT / 1024 - 80)) ]] &&
6327                 F78SIZE=$((SMALLESTOST * $OSTCOUNT / 1024 - 80))
6328
6329         [ "$SLOW" = "no" ] && NSEQ=1 && [ $F78SIZE -gt 32 ] && F78SIZE=32
6330         echo "File size: $F78SIZE"
6331         $SETSTRIPE -c $OSTCOUNT $DIR/$tfile || error "setstripe failed"
6332         for i in $(seq 1 $NSEQ); do
6333                 FSIZE=$(($F78SIZE / ($NSEQ - $i + 1)))
6334                 echo directIO rdwr round $i of $NSEQ
6335                 $DIRECTIO rdwr $DIR/$tfile 0 $FSIZE 1048576||error "rdwr failed"
6336         done
6337
6338         cleanup_test_78
6339 }
6340 run_test 78 "handle large O_DIRECT writes correctly ============"
6341
6342 test_79() { # bug 12743
6343         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6344         wait_delete_completed
6345
6346         BKTOTAL=$(calc_osc_kbytes kbytestotal)
6347         BKFREE=$(calc_osc_kbytes kbytesfree)
6348         BKAVAIL=$(calc_osc_kbytes kbytesavail)
6349
6350         STRING=`df -P $MOUNT | tail -n 1 | awk '{print $2","$3","$4}'`
6351         DFTOTAL=`echo $STRING | cut -d, -f1`
6352         DFUSED=`echo $STRING  | cut -d, -f2`
6353         DFAVAIL=`echo $STRING | cut -d, -f3`
6354         DFFREE=$(($DFTOTAL - $DFUSED))
6355
6356         ALLOWANCE=$((64 * $OSTCOUNT))
6357
6358         if [ $DFTOTAL -lt $(($BKTOTAL - $ALLOWANCE)) ] ||
6359            [ $DFTOTAL -gt $(($BKTOTAL + $ALLOWANCE)) ] ; then
6360                 error "df total($DFTOTAL) mismatch OST total($BKTOTAL)"
6361         fi
6362         if [ $DFFREE -lt $(($BKFREE - $ALLOWANCE)) ] ||
6363            [ $DFFREE -gt $(($BKFREE + $ALLOWANCE)) ] ; then
6364                 error "df free($DFFREE) mismatch OST free($BKFREE)"
6365         fi
6366         if [ $DFAVAIL -lt $(($BKAVAIL - $ALLOWANCE)) ] ||
6367            [ $DFAVAIL -gt $(($BKAVAIL + $ALLOWANCE)) ] ; then
6368                 error "df avail($DFAVAIL) mismatch OST avail($BKAVAIL)"
6369         fi
6370 }
6371 run_test 79 "df report consistency check ======================="
6372
6373 test_80() { # bug 10718
6374         remote_ost_nodsh && skip "remote OST with nodsh" && return
6375         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6376         # relax strong synchronous semantics for slow backends like ZFS
6377         local soc="obdfilter.*.sync_on_lock_cancel"
6378         local soc_old=$(do_facet ost1 lctl get_param -n $soc | head -n1)
6379         local hosts=
6380         if [ "$soc_old" != "never" -a "$(facet_fstype ost1)" != "ldiskfs" ]; then
6381                 hosts=$(for host in $(seq -f "ost%g" 1 $OSTCOUNT); do
6382                           facet_active_host $host; done | sort -u)
6383                 do_nodes $hosts lctl set_param $soc=never
6384         fi
6385
6386         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=1M
6387         sync; sleep 1; sync
6388         local BEFORE=`date +%s`
6389         cancel_lru_locks osc
6390         local AFTER=`date +%s`
6391         local DIFF=$((AFTER-BEFORE))
6392         if [ $DIFF -gt 1 ] ; then
6393                 error "elapsed for 1M@1T = $DIFF"
6394         fi
6395
6396         [ -n "$hosts" ] && do_nodes $hosts lctl set_param $soc=$soc_old
6397
6398         rm -f $DIR/$tfile
6399 }
6400 run_test 80 "Page eviction is equally fast at high offsets too  ===="
6401
6402 test_81a() { # LU-456
6403         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6404         remote_ost_nodsh && skip "remote OST with nodsh" && return
6405         # define OBD_FAIL_OST_MAPBLK_ENOSPC    0x228
6406         # MUST OR with the OBD_FAIL_ONCE (0x80000000)
6407         do_facet ost1 lctl set_param fail_loc=0x80000228
6408
6409         # write should trigger a retry and success
6410         $SETSTRIPE -i 0 -c 1 $DIR/$tfile
6411         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
6412         RC=$?
6413         if [ $RC -ne 0 ] ; then
6414                 error "write should success, but failed for $RC"
6415         fi
6416 }
6417 run_test 81a "OST should retry write when get -ENOSPC ==============="
6418
6419 test_81b() { # LU-456
6420         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6421         remote_ost_nodsh && skip "remote OST with nodsh" && return
6422         # define OBD_FAIL_OST_MAPBLK_ENOSPC    0x228
6423         # Don't OR with the OBD_FAIL_ONCE (0x80000000)
6424         do_facet ost1 lctl set_param fail_loc=0x228
6425
6426         # write should retry several times and return -ENOSPC finally
6427         $SETSTRIPE -i 0 -c 1 $DIR/$tfile
6428         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
6429         RC=$?
6430         ENOSPC=28
6431         if [ $RC -ne $ENOSPC ] ; then
6432                 error "dd should fail for -ENOSPC, but succeed."
6433         fi
6434 }
6435 run_test 81b "OST should return -ENOSPC when retry still fails ======="
6436
6437 test_82() { # LU-1031
6438         dd if=/dev/zero of=$DIR/$tfile bs=1M count=10
6439         local gid1=14091995
6440         local gid2=16022000
6441
6442         multiop_bg_pause $DIR/$tfile OG${gid1}_g${gid1}c || return 1
6443         local MULTIPID1=$!
6444         multiop_bg_pause $DIR/$tfile O_G${gid2}r10g${gid2}c || return 2
6445         local MULTIPID2=$!
6446         kill -USR1 $MULTIPID2
6447         sleep 2
6448         if [[ `ps h -o comm -p $MULTIPID2` == "" ]]; then
6449                 error "First grouplock does not block second one"
6450         else
6451                 echo "Second grouplock blocks first one"
6452         fi
6453         kill -USR1 $MULTIPID1
6454         wait $MULTIPID1
6455         wait $MULTIPID2
6456 }
6457 run_test 82 "Basic grouplock test"
6458
6459 test_83() {
6460         local sfile="/boot/System.map-$(uname -r)"
6461         # define OBD_FAIL_LLITE_PTASK_IO_FAIL 0x140d
6462         $LCTL set_param fail_loc=0x140d
6463         cp $sfile $DIR/$tfile || error "write failed"
6464         diff -c $sfile $DIR/$tfile || error "files are different"
6465         $LCTL set_param fail_loc=0
6466         rm -f $DIR/$tfile
6467 }
6468 run_test 83 "Short write in ptask ==============================="
6469
6470 test_99() {
6471         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" &&
6472                 return
6473         test_mkdir $DIR/$tdir.cvsroot
6474         chown $RUNAS_ID $DIR/$tdir.cvsroot
6475
6476         cd $TMP
6477         $RUNAS cvs -d $DIR/$tdir.cvsroot init || error "cvs init failed"
6478
6479         cd /etc/init.d
6480         # some versions of cvs import exit(1) when asked to import links or
6481         # files they can't read.  ignore those files.
6482         local toignore=$(find . -type l -printf '-I %f\n' -o \
6483                          ! -perm /4 -printf '-I %f\n')
6484         $RUNAS cvs -d $DIR/$tdir.cvsroot import -m "nomesg" $toignore \
6485                 $tdir.reposname vtag rtag
6486
6487         cd $DIR
6488         test_mkdir $DIR/$tdir.reposname
6489         chown $RUNAS_ID $DIR/$tdir.reposname
6490         $RUNAS cvs -d $DIR/$tdir.cvsroot co $tdir.reposname
6491
6492         cd $DIR/$tdir.reposname
6493         $RUNAS touch foo99
6494         $RUNAS cvs add -m 'addmsg' foo99
6495         $RUNAS cvs update
6496         $RUNAS cvs commit -m 'nomsg' foo99
6497         rm -fr $DIR/$tdir.cvsroot
6498 }
6499 run_test 99 "cvs strange file/directory operations"
6500
6501 test_100() {
6502         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6503         [[ "$NETTYPE" =~ tcp ]] ||
6504                 { skip "TCP secure port test, not useful for NETTYPE=$NETTYPE" &&
6505                         return ; }
6506
6507         remote_ost_nodsh && skip "remote OST with nodsh" && return
6508         remote_mds_nodsh && skip "remote MDS with nodsh" && return
6509         remote_servers ||
6510                 { skip "useless for local single node setup" && return; }
6511
6512         netstat -tna | ( rc=1; while read PROT SND RCV LOCAL REMOTE STAT; do
6513                 [ "$PROT" != "tcp" ] && continue
6514                 RPORT=$(echo $REMOTE | cut -d: -f2)
6515                 [ "$RPORT" != "$ACCEPTOR_PORT" ] && continue
6516
6517                 rc=0
6518                 LPORT=`echo $LOCAL | cut -d: -f2`
6519                 if [ $LPORT -ge 1024 ]; then
6520                         echo "bad: $PROT $SND $RCV $LOCAL $REMOTE $STAT"
6521                         netstat -tna
6522                         error_exit "local: $LPORT > 1024, remote: $RPORT"
6523                 fi
6524         done
6525         [ "$rc" = 0 ] || error_exit "privileged port not found" )
6526 }
6527 run_test 100 "check local port using privileged port ==========="
6528
6529 function get_named_value()
6530 {
6531     local tag
6532
6533     tag=$1
6534     while read ;do
6535         line=$REPLY
6536         case $line in
6537         $tag*)
6538             echo $line | sed "s/^$tag[ ]*//"
6539             break
6540             ;;
6541         esac
6542     done
6543 }
6544
6545 export CACHE_MAX=$($LCTL get_param -n llite.*.max_cached_mb |
6546                    awk '/^max_cached_mb/ { print $2 }')
6547
6548 cleanup_101a() {
6549         $LCTL set_param -n llite.*.max_cached_mb $CACHE_MAX
6550         trap 0
6551 }
6552
6553 test_101a() {
6554         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6555         [ $MDSCOUNT -ge 2 ] && skip "needs < 2 MDTs" && return #LU-4322
6556         local s
6557         local discard
6558         local nreads=10000
6559         local cache_limit=32
6560
6561         $LCTL set_param -n osc.*-osc*.rpc_stats 0
6562         trap cleanup_101a EXIT
6563         $LCTL set_param -n llite.*.read_ahead_stats 0
6564         $LCTL set_param -n llite.*.max_cached_mb $cache_limit
6565
6566         #
6567         # randomly read 10000 of 64K chunks from file 3x 32MB in size
6568         #
6569         echo "nreads: $nreads file size: $((cache_limit * 3))MB"
6570         $READS -f $DIR/$tfile -s$((cache_limit * 3192 * 1024)) -b65536 -C -n$nreads -t 180
6571
6572         discard=0
6573         for s in $($LCTL get_param -n llite.*.read_ahead_stats |
6574                 get_named_value 'read but discarded' | cut -d" " -f1); do
6575                         discard=$(($discard + $s))
6576         done
6577         cleanup_101a
6578
6579         if [[ $(($discard * 10)) -gt $nreads ]]; then
6580                 $LCTL get_param osc.*-osc*.rpc_stats
6581                 $LCTL get_param llite.*.read_ahead_stats
6582                 error "too many ($discard) discarded pages"
6583         fi
6584         rm -f $DIR/$tfile || true
6585 }
6586 run_test 101a "check read-ahead for random reads"
6587
6588 setup_test101bc() {
6589         test_mkdir $DIR/$tdir
6590         local STRIPE_SIZE=$1
6591         local FILE_LENGTH=$2
6592         STRIPE_OFFSET=0
6593
6594         local FILE_SIZE_MB=$((FILE_LENGTH / STRIPE_SIZE))
6595
6596         local list=$(comma_list $(osts_nodes))
6597         set_osd_param $list '' read_cache_enable 0
6598         set_osd_param $list '' writethrough_cache_enable 0
6599
6600         trap cleanup_test101bc EXIT
6601         # prepare the read-ahead file
6602         $SETSTRIPE -S $STRIPE_SIZE -i $STRIPE_OFFSET -c $OSTCOUNT $DIR/$tfile
6603
6604         dd if=/dev/zero of=$DIR/$tfile bs=$STRIPE_SIZE \
6605                                 count=$FILE_SIZE_MB 2> /dev/null
6606
6607 }
6608
6609 cleanup_test101bc() {
6610         trap 0
6611         rm -rf $DIR/$tdir
6612         rm -f $DIR/$tfile
6613
6614         local list=$(comma_list $(osts_nodes))
6615         set_osd_param $list '' read_cache_enable 1
6616         set_osd_param $list '' writethrough_cache_enable 1
6617 }
6618
6619 calc_total() {
6620         awk 'BEGIN{total=0}; {total+=$1}; END{print total}'
6621 }
6622
6623 ra_check_101() {
6624         local READ_SIZE=$1
6625         local STRIPE_SIZE=$2
6626         local FILE_LENGTH=$3
6627         local RA_INC=1048576
6628         local STRIDE_LENGTH=$((STRIPE_SIZE/READ_SIZE))
6629         local discard_limit=$((((STRIDE_LENGTH - 1)*3/(STRIDE_LENGTH*OSTCOUNT))* \
6630                              (STRIDE_LENGTH*OSTCOUNT - STRIDE_LENGTH)))
6631         DISCARD=$($LCTL get_param -n llite.*.read_ahead_stats |
6632                         get_named_value 'read but discarded' |
6633                         cut -d" " -f1 | calc_total)
6634         if [[ $DISCARD -gt $discard_limit ]]; then
6635                 $LCTL get_param llite.*.read_ahead_stats
6636                 error "Too many ($DISCARD) discarded pages with size (${READ_SIZE})"
6637         else
6638                 echo "Read-ahead success for size ${READ_SIZE}"
6639         fi
6640 }
6641
6642 test_101b() {
6643         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6644         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
6645         local STRIPE_SIZE=1048576
6646         local STRIDE_SIZE=$((STRIPE_SIZE*OSTCOUNT))
6647         if [ $SLOW == "yes" ]; then
6648                 local FILE_LENGTH=$((STRIDE_SIZE * 64))
6649         else
6650                 local FILE_LENGTH=$((STRIDE_SIZE * 8))
6651         fi
6652
6653         local ITERATION=$((FILE_LENGTH / STRIDE_SIZE))
6654
6655         # prepare the read-ahead file
6656         setup_test101bc $STRIPE_SIZE $FILE_LENGTH
6657         cancel_lru_locks osc
6658         for BIDX in 2 4 8 16 32 64 128 256
6659         do
6660                 local BSIZE=$((BIDX*4096))
6661                 local READ_COUNT=$((STRIPE_SIZE/BSIZE))
6662                 local STRIDE_LENGTH=$((STRIDE_SIZE/BSIZE))
6663                 local OFFSET=$((STRIPE_SIZE/BSIZE*(OSTCOUNT - 1)))
6664                 $LCTL set_param -n llite.*.read_ahead_stats 0
6665                 $READS -f $DIR/$tfile  -l $STRIDE_LENGTH -o $OFFSET \
6666                               -s $FILE_LENGTH -b $STRIPE_SIZE -a $READ_COUNT -n $ITERATION
6667                 cancel_lru_locks osc
6668                 ra_check_101 $BSIZE $STRIPE_SIZE $FILE_LENGTH
6669         done
6670         cleanup_test101bc
6671         true
6672 }
6673 run_test 101b "check stride-io mode read-ahead ================="
6674
6675 test_101c() {
6676         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6677         local STRIPE_SIZE=1048576
6678         local FILE_LENGTH=$((STRIPE_SIZE*100))
6679         local nreads=10000
6680         local osc_rpc_stats
6681
6682         setup_test101bc $STRIPE_SIZE $FILE_LENGTH
6683
6684         cancel_lru_locks osc
6685         $LCTL set_param osc.*.rpc_stats 0
6686         $READS -f $DIR/$tfile -s$FILE_LENGTH -b65536 -n$nreads -t 180
6687         for osc_rpc_stats in $($LCTL get_param -N osc.*.rpc_stats); do
6688                 local stats=$($LCTL get_param -n $osc_rpc_stats)
6689                 local lines=$(echo "$stats" | awk 'END {print NR;}')
6690                 local size
6691
6692                 if [ $lines -le 20 ]; then
6693                         continue
6694                 fi
6695                 for size in 1 2 4 8; do
6696                         local rpc=$(echo "$stats" |
6697                                     awk '($1 == "'$size':") {print $2; exit; }')
6698                         [ $rpc != 0 ] &&
6699                                 error "Small $((size*4))k read IO $rpc !"
6700                 done
6701                 echo "$osc_rpc_stats check passed!"
6702         done
6703         cleanup_test101bc
6704         true
6705 }
6706 run_test 101c "check stripe_size aligned read-ahead ================="
6707
6708 set_read_ahead() {
6709         $LCTL get_param -n llite.*.max_read_ahead_mb | head -n 1
6710         $LCTL set_param -n llite.*.max_read_ahead_mb $1 > /dev/null 2>&1
6711 }
6712
6713 test_101d() {
6714         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6715         local file=$DIR/$tfile
6716         local sz_MB=${FILESIZE_101d:-500}
6717         local ra_MB=${READAHEAD_MB:-40}
6718
6719         local free_MB=$(($(df -P $DIR | tail -n 1 | awk '{ print $4 }') / 1024))
6720         [ $free_MB -lt $sz_MB ] &&
6721                 skip "Need free space ${sz_MB}M, have ${free_MB}M" && return
6722
6723         echo "Create test file $file size ${sz_MB}M, ${free_MB}M free"
6724         $SETSTRIPE -c -1 $file || error "setstripe failed"
6725
6726         dd if=/dev/zero of=$file bs=1M count=$sz_MB || error "dd failed"
6727         echo Cancel LRU locks on lustre client to flush the client cache
6728         cancel_lru_locks osc
6729
6730         echo Disable read-ahead
6731         local old_READAHEAD=$(set_read_ahead 0)
6732
6733         echo Reading the test file $file with read-ahead disabled
6734         local raOFF=$(do_and_time "dd if=$file of=/dev/null bs=1M count=$sz_MB")
6735
6736         echo Cancel LRU locks on lustre client to flush the client cache
6737         cancel_lru_locks osc
6738         echo Enable read-ahead with ${ra_MB}MB
6739         set_read_ahead $ra_MB
6740
6741         echo Reading the test file $file with read-ahead enabled
6742         local raON=$(do_and_time "dd if=$file of=/dev/null bs=1M count=$sz_MB")
6743
6744         echo "read-ahead disabled time read $raOFF"
6745         echo "read-ahead enabled  time read $raON"
6746
6747         set_read_ahead $old_READAHEAD
6748         rm -f $file
6749         wait_delete_completed
6750
6751         [ $raOFF -le 1 -o $raON -lt $raOFF ] ||
6752                 error "readahead ${raON}s > no-readahead ${raOFF}s ${sz_MB}M"
6753 }
6754 run_test 101d "file read with and without read-ahead enabled"
6755
6756 test_101e() {
6757         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6758         local file=$DIR/$tfile
6759         local size_KB=500  #KB
6760         local count=100
6761         local bsize=1024
6762
6763         local free_KB=$(df -P $DIR | tail -n 1 | awk '{ print $4 }')
6764         local need_KB=$((count * size_KB))
6765         [[ $free_KB -le $need_KB ]] &&
6766                 skip_env "Need free space $need_KB, have $free_KB" && return
6767
6768         echo "Creating $count ${size_KB}K test files"
6769         for ((i = 0; i < $count; i++)); do
6770                 dd if=/dev/zero of=$file.$i bs=$bsize count=$size_KB 2>/dev/null
6771         done
6772
6773         echo "Cancel LRU locks on lustre client to flush the client cache"
6774         cancel_lru_locks osc
6775
6776         echo "Reset readahead stats"
6777         $LCTL set_param -n llite.*.read_ahead_stats 0
6778
6779         for ((i = 0; i < $count; i++)); do
6780                 dd if=$file.$i of=/dev/null bs=$bsize count=$size_KB 2>/dev/null
6781         done
6782
6783         local miss=$($LCTL get_param -n llite.*.read_ahead_stats |
6784                      get_named_value 'misses' | cut -d" " -f1 | calc_total)
6785
6786         for ((i = 0; i < $count; i++)); do
6787                 rm -rf $file.$i 2>/dev/null
6788         done
6789
6790         #10000 means 20% reads are missing in readahead
6791         [[ $miss -lt 10000 ]] ||  error "misses too much for small reads"
6792 }
6793 run_test 101e "check read-ahead for small read(1k) for small files(500k)"
6794
6795 test_101f() {
6796         which iozone || { skip "no iozone installed" && return; }
6797
6798         local old_debug=$($LCTL get_param debug)
6799         old_debug=${old_debug#*=}
6800         $LCTL set_param debug="reada mmap"
6801
6802         # create a test file
6803         iozone -i 0 -+n -r 1m -s 128m -w -f $DIR/$tfile > /dev/null 2>&1
6804
6805         echo Cancel LRU locks on lustre client to flush the client cache
6806         cancel_lru_locks osc
6807
6808         echo Reset readahead stats
6809         $LCTL set_param -n llite.*.read_ahead_stats 0
6810
6811         echo mmap read the file with small block size
6812         iozone -i 1 -u 1 -l 1 -+n -r 32k -s 128m -B -f $DIR/$tfile \
6813                 > /dev/null 2>&1
6814
6815         echo checking missing pages
6816         $LCTL get_param llite.*.read_ahead_stats
6817         local miss=$($LCTL get_param -n llite.*.read_ahead_stats |
6818                         get_named_value 'misses' | cut -d" " -f1 | calc_total)
6819
6820         $LCTL set_param debug="$old_debug"
6821         [ $miss -lt 3 ] || error "misses too much pages ('$miss')!"
6822         rm -f $DIR/$tfile
6823 }
6824 run_test 101f "check mmap read performance"
6825
6826 test_101g_brw_size_test() {
6827         local mb=$1
6828         local pages=$((mb * 1048576 / $(page_size)))
6829
6830         $LCTL set_param osc.*.max_pages_per_rpc=${mb}M ||
6831                 { error "unable to set max_pages_per_rpc=${mb}M"; return 1; }
6832         for mp in $($LCTL get_param -n osc.*.max_pages_per_rpc); do
6833                 [ $mp -ne $pages ] && error "max_pages_per_rpc $mp != $pages" &&
6834                         return 2
6835         done
6836
6837         $LCTL set_param -n osc.*.rpc_stats=0
6838
6839         # 10 RPCs should be enough for the test
6840         local count=10
6841         dd if=/dev/zero of=$DIR/$tfile bs=${mb}M count=$count ||
6842                 { error "dd write ${mb} MB blocks failed"; return 3; }
6843         cancel_lru_locks osc
6844         dd of=/dev/null if=$DIR/$tfile bs=${mb}M count=$count ||
6845                 { error "dd write ${mb} MB blocks failed"; return 4; }
6846
6847         # calculate number of full-sized read and write RPCs
6848         rpcs=($($LCTL get_param -n 'osc.*.rpc_stats' |
6849                 sed -n '/pages per rpc/,/^$/p' |
6850                 awk '/'$pages':/ { reads += $2; writes += $6 }; \
6851                 END { print reads,writes }'))
6852         [ ${rpcs[0]} -ne $count ] && error "${rpcs[0]} != $count read RPCs" &&
6853                 return 5
6854         [ ${rpcs[1]} -ne $count ] && error "${rpcs[1]} != $count write RPCs" &&
6855                 return 6
6856
6857         return 0
6858 }
6859
6860 test_101g() {
6861         local rpcs
6862         local osts=$(get_facets OST)
6863         local list=$(comma_list $(osts_nodes))
6864         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
6865         local brw_size="obdfilter.*.brw_size"
6866
6867         $LFS setstripe -i 0 -c 1 $DIR/$tfile
6868
6869         local orig_mb=$(do_facet ost1 $LCTL get_param -n $brw_size | head -n 1)
6870         if [ $(lustre_version_code ost1) -ge $(version_code 2.8.52) -a \
6871              $(lustre_version_code client) -ge $(version_code 2.8.52) ]; then
6872                 [ $(lustre_version_code ost1) -ge $(version_code 2.9.52) ] &&
6873                         suffix="M"
6874                 if [[ $orig_mb -lt 16 ]]; then
6875                         save_lustre_params $osts "$brw_size" > $p
6876                         do_nodes $list $LCTL set_param -n $brw_size=16$suffix ||
6877                                 error "set 16MB RPC size failed"
6878
6879                         echo "remount client to enable new RPC size"
6880                         remount_client $MOUNT || error "remount_client failed"
6881                 fi
6882
6883                 test_101g_brw_size_test 16 || error "16MB RPC test failed"
6884                 # should be able to set brw_size=12, but no rpc_stats for that
6885                 test_101g_brw_size_test 8 || error "8MB RPC test failed"
6886         fi
6887
6888         test_101g_brw_size_test 4 || error "4MB RPC test failed"
6889
6890         if [[ $orig_mb -lt 16 ]]; then
6891                 restore_lustre_params < $p
6892                 remount_client $MOUNT || error "remount_client restore failed"
6893         fi
6894
6895         rm -f $p $DIR/$tfile
6896 }
6897 run_test 101g "Big bulk(4/16 MiB) readahead"
6898
6899 setup_test102() {
6900         test_mkdir $DIR/$tdir
6901         chown $RUNAS_ID $DIR/$tdir
6902         STRIPE_SIZE=65536
6903         STRIPE_OFFSET=1
6904         STRIPE_COUNT=$OSTCOUNT
6905         [[ $OSTCOUNT -gt 4 ]] && STRIPE_COUNT=4
6906
6907         trap cleanup_test102 EXIT
6908         cd $DIR
6909         $1 $SETSTRIPE -S $STRIPE_SIZE -i $STRIPE_OFFSET -c $STRIPE_COUNT $tdir
6910         cd $DIR/$tdir
6911         for num in 1 2 3 4; do
6912                 for count in $(seq 1 $STRIPE_COUNT); do
6913                         for idx in $(seq 0 $[$STRIPE_COUNT - 1]); do
6914                                 local size=`expr $STRIPE_SIZE \* $num`
6915                                 local file=file"$num-$idx-$count"
6916                                 $1 $SETSTRIPE -S $size -i $idx -c $count $file
6917                         done
6918                 done
6919         done
6920
6921         cd $DIR
6922         $1 tar cf $TMP/f102.tar $tdir --xattrs
6923 }
6924
6925 cleanup_test102() {
6926         trap 0
6927         rm -f $TMP/f102.tar
6928         rm -rf $DIR/d0.sanity/d102
6929 }
6930
6931 test_102a() {
6932         local testfile=$DIR/$tfile
6933
6934         touch $testfile
6935
6936         [ "$UID" != 0 ] && skip_env "must run as root" && return
6937         [ -z "$(lctl get_param -n mdc.*-mdc-*.connect_flags | grep xattr)" ] &&
6938                 skip_env "must have user_xattr" && return
6939
6940         [ -z "$(which setfattr 2>/dev/null)" ] &&
6941                 skip_env "could not find setfattr" && return
6942
6943         echo "set/get xattr..."
6944         setfattr -n trusted.name1 -v value1 $testfile ||
6945                 error "setfattr -n trusted.name1=value1 $testfile failed"
6946         getfattr -n trusted.name1 $testfile 2> /dev/null |
6947           grep "trusted.name1=.value1" ||
6948                 error "$testfile missing trusted.name1=value1"
6949
6950         setfattr -n user.author1 -v author1 $testfile ||
6951                 error "setfattr -n user.author1=author1 $testfile failed"
6952         getfattr -n user.author1 $testfile 2> /dev/null |
6953           grep "user.author1=.author1" ||
6954                 error "$testfile missing trusted.author1=author1"
6955
6956         echo "listxattr..."
6957         setfattr -n trusted.name2 -v value2 $testfile ||
6958                 error "$testfile unable to set trusted.name2"
6959         setfattr -n trusted.name3 -v value3 $testfile ||
6960                 error "$testfile unable to set trusted.name3"
6961         [ $(getfattr -d -m "^trusted" $testfile 2> /dev/null |
6962             grep "trusted.name" | wc -l) -eq 3 ] ||
6963                 error "$testfile missing 3 trusted.name xattrs"
6964
6965         setfattr -n user.author2 -v author2 $testfile ||
6966                 error "$testfile unable to set user.author2"
6967         setfattr -n user.author3 -v author3 $testfile ||
6968                 error "$testfile unable to set user.author3"
6969         [ $(getfattr -d -m "^user" $testfile 2> /dev/null |
6970             grep "user.author" | wc -l) -eq 3 ] ||
6971                 error "$testfile missing 3 user.author xattrs"
6972
6973         echo "remove xattr..."
6974         setfattr -x trusted.name1 $testfile ||
6975                 error "$testfile error deleting trusted.name1"
6976         getfattr -d -m trusted $testfile 2> /dev/null | grep "trusted.name1" &&
6977                 error "$testfile did not delete trusted.name1 xattr"
6978
6979         setfattr -x user.author1 $testfile ||
6980                 error "$testfile error deleting user.author1"
6981         echo "set lustre special xattr ..."
6982         $LFS setstripe -c1 $testfile
6983         local lovea=$(getfattr -n "trusted.lov" -e hex $testfile |
6984                 awk -F "=" '/trusted.lov/ { print $2 }' )
6985         setfattr -n "trusted.lov" -v $lovea $testfile ||
6986                 error "$testfile doesn't ignore setting trusted.lov again"
6987         setfattr -n "trusted.lov" -v "invalid_value" $testfile &&
6988                 error "$testfile allow setting invalid trusted.lov"
6989         rm -f $testfile
6990 }
6991 run_test 102a "user xattr test =================================="
6992
6993 test_102b() {
6994         [ -z "$(which setfattr 2>/dev/null)" ] &&
6995                 skip_env "could not find setfattr" && return
6996
6997         # b10930: get/set/list trusted.lov xattr
6998         echo "get/set/list trusted.lov xattr ..."
6999         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
7000         local testfile=$DIR/$tfile
7001         $SETSTRIPE -S 65536 -i 1 -c $OSTCOUNT $testfile ||
7002                 error "setstripe failed"
7003         local STRIPECOUNT=$($GETSTRIPE -c $testfile) ||
7004                 error "getstripe failed"
7005         getfattr -d -m "^trusted" $testfile 2>/dev/null | grep "trusted.lov" ||
7006                 error "can't get trusted.lov from $testfile"
7007
7008         local testfile2=${testfile}2
7009         local value=$(getfattr -n trusted.lov $testfile 2>/dev/null |
7010                         grep "trusted.lov" | sed -e 's/[^=]\+=//')
7011
7012         $MCREATE $testfile2
7013         setfattr -n trusted.lov -v $value $testfile2
7014         local stripe_size=$($GETSTRIPE -S $testfile2)
7015         local stripe_count=$($GETSTRIPE -c $testfile2)
7016         [[ $stripe_size -eq 65536 ]] ||
7017                 error "stripe size $stripe_size != 65536"
7018         [[ $stripe_count -eq $STRIPECOUNT ]] ||
7019                 error "stripe count $stripe_count != $STRIPECOUNT"
7020         rm -f $DIR/$tfile
7021 }
7022 run_test 102b "getfattr/setfattr for trusted.lov EAs ============"
7023
7024 test_102c() {
7025         [ -z "$(which setfattr 2>/dev/null)" ] &&
7026                 skip_env "could not find setfattr" && return
7027
7028         # b10930: get/set/list lustre.lov xattr
7029         echo "get/set/list lustre.lov xattr ..."
7030         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
7031         test_mkdir $DIR/$tdir
7032         chown $RUNAS_ID $DIR/$tdir
7033         local testfile=$DIR/$tdir/$tfile
7034         $RUNAS $SETSTRIPE -S 65536 -i 1 -c $OSTCOUNT $testfile ||
7035                 error "setstripe failed"
7036         local STRIPECOUNT=$($RUNAS $GETSTRIPE -c $testfile) ||
7037                 error "getstripe failed"
7038         $RUNAS getfattr -d -m "^lustre" $testfile 2> /dev/null | \
7039         grep "lustre.lov" || error "can't get lustre.lov from $testfile"
7040
7041         local testfile2=${testfile}2
7042         local value=`getfattr -n lustre.lov $testfile 2> /dev/null | \
7043                      grep "lustre.lov" |sed -e 's/[^=]\+=//'  `
7044
7045         $RUNAS $MCREATE $testfile2
7046         $RUNAS setfattr -n lustre.lov -v $value $testfile2
7047         local stripe_size=$($RUNAS $GETSTRIPE -S $testfile2)
7048         local stripe_count=$($RUNAS $GETSTRIPE -c $testfile2)
7049         [ $stripe_size -eq 65536 ] || error "stripe size $stripe_size != 65536"
7050         [ $stripe_count -eq $STRIPECOUNT ] ||
7051                 error "stripe count $stripe_count != $STRIPECOUNT"
7052 }
7053 run_test 102c "non-root getfattr/setfattr for lustre.lov EAs ==========="
7054
7055 compare_stripe_info1() {
7056         local stripe_index_all_zero=true
7057
7058         for num in 1 2 3 4; do
7059                 for count in $(seq 1 $STRIPE_COUNT); do
7060                         for offset in $(seq 0 $[$STRIPE_COUNT - 1]); do
7061                                 local size=$((STRIPE_SIZE * num))
7062                                 local file=file"$num-$offset-$count"
7063                                 stripe_size=$($LFS getstripe -S $PWD/$file)
7064                                 [[ $stripe_size -ne $size ]] &&
7065                                     error "$file: size $stripe_size != $size"
7066                                 stripe_count=$($LFS getstripe -c $PWD/$file)
7067                                 # allow fewer stripes to be created, ORI-601
7068                                 [[ $stripe_count -lt $(((3 * count + 3) / 4)) ]] &&
7069                                     error "$file: count $stripe_count != $count"
7070                                 stripe_index=$($LFS getstripe -i $PWD/$file)
7071                                 [[ $stripe_index -ne 0 ]] &&
7072                                         stripe_index_all_zero=false
7073                         done
7074                 done
7075         done
7076         $stripe_index_all_zero &&
7077                 error "all files are being extracted starting from OST index 0"
7078         return 0
7079 }
7080
7081 have_xattrs_include() {
7082         tar --help | grep -q xattrs-include &&
7083                 echo --xattrs-include="lustre.*"
7084 }
7085
7086 test_102d() {
7087         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7088         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
7089         XINC=$(have_xattrs_include)
7090         setup_test102
7091         tar xf $TMP/f102.tar -C $DIR/$tdir --xattrs $XINC
7092         cd $DIR/$tdir/$tdir
7093         compare_stripe_info1
7094 }
7095 run_test 102d "tar restore stripe info from tarfile,not keep osts"
7096
7097 test_102f() {
7098         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7099         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
7100         XINC=$(have_xattrs_include)
7101         setup_test102
7102         test_mkdir $DIR/$tdir.restore
7103         cd $DIR
7104         tar cf - --xattrs $tdir | tar xf - \
7105                 -C $DIR/$tdir.restore --xattrs $XINC
7106         cd $DIR/$tdir.restore/$tdir
7107         compare_stripe_info1
7108 }
7109 run_test 102f "tar copy files, not keep osts"
7110
7111 grow_xattr() {
7112         local xsize=${1:-1024}  # in bytes
7113         local file=$DIR/$tfile
7114
7115         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep xattr)" ] &&
7116                 skip "must have user_xattr" && return 0
7117         [ -z "$(which setfattr 2>/dev/null)" ] &&
7118                 skip_env "could not find setfattr" && return 0
7119         [ -z "$(which getfattr 2>/dev/null)" ] &&
7120                 skip_env "could not find getfattr" && return 0
7121
7122         touch $file
7123
7124         local value="$(generate_string $xsize)"
7125
7126         local xbig=trusted.big
7127         log "save $xbig on $file"
7128         setfattr -n $xbig -v $value $file ||
7129                 error "saving $xbig on $file failed"
7130
7131         local orig=$(get_xattr_value $xbig $file)
7132         [[ "$orig" != "$value" ]] && error "$xbig different after saving $xbig"
7133
7134         local xsml=trusted.sml
7135         log "save $xsml on $file"
7136         setfattr -n $xsml -v val $file || error "saving $xsml on $file failed"
7137
7138         local new=$(get_xattr_value $xbig $file)
7139         [[ "$new" != "$orig" ]] && error "$xbig different after saving $xsml"
7140
7141         log "grow $xsml on $file"
7142         setfattr -n $xsml -v "$value" $file ||
7143                 error "growing $xsml on $file failed"
7144
7145         new=$(get_xattr_value $xbig $file)
7146         [[ "$new" != "$orig" ]] && error "$xbig different after growing $xsml"
7147         log "$xbig still valid after growing $xsml"
7148
7149         rm -f $file
7150 }
7151
7152 test_102h() { # bug 15777
7153         grow_xattr 1024
7154 }
7155 run_test 102h "grow xattr from inside inode to external block"
7156
7157 test_102ha() {
7158         large_xattr_enabled || { skip "large_xattr disabled" && return; }
7159         grow_xattr $(max_xattr_size)
7160 }
7161 run_test 102ha "grow xattr from inside inode to external inode"
7162
7163 test_102i() { # bug 17038
7164         [ -z "$(which getfattr 2>/dev/null)" ] &&
7165                 skip "could not find getfattr" && return
7166         touch $DIR/$tfile
7167         ln -s $DIR/$tfile $DIR/${tfile}link
7168         getfattr -n trusted.lov $DIR/$tfile ||
7169                 error "lgetxattr on $DIR/$tfile failed"
7170         getfattr -h -n trusted.lov $DIR/${tfile}link 2>&1 |
7171                 grep -i "no such attr" ||
7172                 error "error for lgetxattr on $DIR/${tfile}link is not ENODATA"
7173         rm -f $DIR/$tfile $DIR/${tfile}link
7174 }
7175 run_test 102i "lgetxattr test on symbolic link ============"
7176
7177 test_102j() {
7178         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7179         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
7180         XINC=$(have_xattrs_include)
7181         setup_test102 "$RUNAS"
7182         chown $RUNAS_ID $DIR/$tdir
7183         $RUNAS tar xf $TMP/f102.tar -C $DIR/$tdir --xattrs $XINC
7184         cd $DIR/$tdir/$tdir
7185         compare_stripe_info1 "$RUNAS"
7186 }
7187 run_test 102j "non-root tar restore stripe info from tarfile, not keep osts ==="
7188
7189 test_102k() {
7190         [ -z "$(which setfattr 2>/dev/null)" ] &&
7191                 skip "could not find setfattr" && return
7192         touch $DIR/$tfile
7193         # b22187 just check that does not crash for regular file.
7194         setfattr -n trusted.lov $DIR/$tfile
7195         # b22187 'setfattr -n trusted.lov' should remove LOV EA for directories
7196         local test_kdir=$DIR/$tdir
7197         test_mkdir $test_kdir
7198         local default_size=$($LFS getstripe -S $test_kdir)
7199         local default_count=$($LFS getstripe -c $test_kdir)
7200         local default_offset=$($LFS getstripe -i $test_kdir)
7201         $SETSTRIPE -S 65536 -i 0 -c $OSTCOUNT $test_kdir ||
7202                 error 'dir setstripe failed'
7203         setfattr -n trusted.lov $test_kdir
7204         local stripe_size=$($LFS getstripe -S $test_kdir)
7205         local stripe_count=$($LFS getstripe -c $test_kdir)
7206         local stripe_offset=$($LFS getstripe -i $test_kdir)
7207         [ $stripe_size -eq $default_size ] ||
7208                 error "stripe size $stripe_size != $default_size"
7209         [ $stripe_count -eq $default_count ] ||
7210                 error "stripe count $stripe_count != $default_count"
7211         [ $stripe_offset -eq $default_offset ] ||
7212                 error "stripe offset $stripe_offset != $default_offset"
7213         rm -rf $DIR/$tfile $test_kdir
7214 }
7215 run_test 102k "setfattr without parameter of value shouldn't cause a crash"
7216
7217 test_102l() {
7218         [ -z "$(which getfattr 2>/dev/null)" ] &&
7219                 skip "could not find getfattr" && return
7220
7221         # LU-532 trusted. xattr is invisible to non-root
7222         local testfile=$DIR/$tfile
7223
7224         touch $testfile
7225
7226         echo "listxattr as user..."
7227         chown $RUNAS_ID $testfile
7228         $RUNAS getfattr -d -m '.*' $testfile 2>&1 |
7229             grep -q "trusted" &&
7230                 error "$testfile trusted xattrs are user visible"
7231
7232         return 0;
7233 }
7234 run_test 102l "listxattr size test =================================="
7235
7236 test_102m() { # LU-3403 llite: error of listxattr when buffer is small
7237         local path=$DIR/$tfile
7238         touch $path
7239
7240         listxattr_size_check $path || error "listattr_size_check $path failed"
7241 }
7242 run_test 102m "Ensure listxattr fails on small bufffer ========"
7243
7244 cleanup_test102
7245
7246 getxattr() { # getxattr path name
7247         # Return the base64 encoding of the value of xattr name on path.
7248         local path=$1
7249         local name=$2
7250
7251         # # getfattr --absolute-names --encoding=base64 --name=trusted.lov $path
7252         # file: $path
7253         # trusted.lov=0s0AvRCwEAAAAGAAAAAAAAAAAEAAACAAAAAAAQAAEAA...AAAAAAAAA=
7254         #
7255         # We print just 0s0AvRCwEAAAAGAAAAAAAAAAAEAAACAAAAAAAQAAEAA...AAAAAAAAA=
7256
7257         getfattr --absolute-names --encoding=base64 --name=$name $path |
7258                 awk -F= -v name=$name '$1 == name {
7259                         print substr($0, index($0, "=") + 1);
7260         }'
7261 }
7262
7263 test_102n() { # LU-4101 mdt: protect internal xattrs
7264         [ -z "$(which setfattr 2>/dev/null)" ] &&
7265                 skip "could not find setfattr" && return
7266         if [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.5.50) ]
7267         then
7268                 skip "MDT < 2.5.50 allows setxattr on internal trusted xattrs"
7269                 return
7270         fi
7271
7272         local file0=$DIR/$tfile.0
7273         local file1=$DIR/$tfile.1
7274         local xattr0=$TMP/$tfile.0
7275         local xattr1=$TMP/$tfile.1
7276         local namelist="lov lma lmv link fid version som hsm"
7277         local name
7278         local value
7279
7280         rm -rf $file0 $file1 $xattr0 $xattr1
7281         touch $file0 $file1
7282
7283         # Get 'before' xattrs of $file1.
7284         getfattr --absolute-names --dump --match=- $file1 > $xattr0
7285
7286         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.53) ] &&
7287                 namelist+=" lfsck_namespace"
7288         for name in $namelist; do
7289                 # Try to copy xattr from $file0 to $file1.
7290                 value=$(getxattr $file0 trusted.$name 2> /dev/null)
7291
7292                 setfattr --name=trusted.$name --value="$value" $file1 ||
7293                         error "setxattr 'trusted.$name' failed"
7294
7295                 # Try to set a garbage xattr.
7296                 value=0sVGhlIHF1aWNrIGJyb3duIGZveCBqdW1wcyBvdmVyIGl0c2VsZi4=
7297
7298                 if [[ x$name == "xlov" ]]; then
7299                         setfattr --name=trusted.lov --value="$value" $file1 &&
7300                         error "setxattr invalid 'trusted.lov' success"
7301                 else
7302                         setfattr --name=trusted.$name --value="$value" $file1 ||
7303                                 error "setxattr invalid 'trusted.$name' failed"
7304                 fi
7305
7306                 # Try to remove the xattr from $file1. We don't care if this
7307                 # appears to succeed or fail, we just don't want there to be
7308                 # any changes or crashes.
7309                 setfattr --remove=$trusted.$name $file1 2> /dev/null
7310         done
7311
7312         if [ $(lustre_version_code $SINGLEMDS) -gt $(version_code 2.6.50) ]
7313         then
7314                 name="lfsck_ns"
7315                 # Try to copy xattr from $file0 to $file1.
7316                 value=$(getxattr $file0 trusted.$name 2> /dev/null)
7317
7318                 setfattr --name=trusted.$name --value="$value" $file1 ||
7319                         error "setxattr 'trusted.$name' failed"
7320
7321                 # Try to set a garbage xattr.
7322                 value=0sVGhlIHF1aWNrIGJyb3duIGZveCBqdW1wcyBvdmVyIGl0c2VsZi4=
7323
7324                 setfattr --name=trusted.$name --value="$value" $file1 ||
7325                         error "setxattr 'trusted.$name' failed"
7326
7327                 # Try to remove the xattr from $file1. We don't care if this
7328                 # appears to succeed or fail, we just don't want there to be
7329                 # any changes or crashes.
7330                 setfattr --remove=$trusted.$name $file1 2> /dev/null
7331         fi
7332
7333         # Get 'after' xattrs of file1.
7334         getfattr --absolute-names --dump --match=- $file1 > $xattr1
7335
7336         if ! diff $xattr0 $xattr1; then
7337                 error "before and after xattrs of '$file1' differ"
7338         fi
7339
7340         rm -rf $file0 $file1 $xattr0 $xattr1
7341
7342         return 0
7343 }
7344 run_test 102n "silently ignore setxattr on internal trusted xattrs"
7345
7346 test_102p() { # LU-4703 setxattr did not check ownership
7347         local testfile=$DIR/$tfile
7348
7349         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.5.56) ] &&
7350                 skip "MDS needs to be at least 2.5.56" && return
7351
7352         touch $testfile
7353
7354         echo "setfacl as user..."
7355         $RUNAS setfacl -m "u:$RUNAS_ID:rwx" $testfile
7356         [ $? -ne 0 ] || error "setfacl by $RUNAS_ID was allowed on $testfile"
7357
7358         echo "setfattr as user..."
7359         setfacl -m "u:$RUNAS_ID:---" $testfile
7360         $RUNAS setfattr -x system.posix_acl_access $testfile
7361         [ $? -ne 0 ] || error "setfattr by $RUNAS_ID was allowed on $testfile"
7362 }
7363 run_test 102p "check setxattr(2) correctly fails without permission"
7364
7365 test_102q() {
7366         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.6.92) ] &&
7367                 skip "MDS needs to be at least 2.6.92" && return
7368         orphan_linkea_check $DIR/$tfile || error "orphan_linkea_check"
7369 }
7370 run_test 102q "flistxattr should not return trusted.link EAs for orphans"
7371
7372 test_102r() {
7373         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.6.93) ] &&
7374                 skip "MDS needs to be at least 2.6.93" && return
7375         touch $DIR/$tfile || error "touch"
7376         setfattr -n user.$(basename $tfile) $DIR/$tfile || error "setfattr"
7377         getfattr -n user.$(basename $tfile) $DIR/$tfile || error "getfattr"
7378         rm $DIR/$tfile || error "rm"
7379
7380         #normal directory
7381         mkdir -p $DIR/$tdir || error "mkdir"
7382         setfattr -n user.$(basename $tdir) $DIR/$tdir || error "setfattr dir"
7383         getfattr -n user.$(basename $tdir) $DIR/$tdir || error "getfattr dir"
7384         setfattr -x user.$(basename $tdir) $DIR/$tdir ||
7385                 error "$testfile error deleting user.author1"
7386         getfattr -d -m user.$(basename $tdir) 2> /dev/null |
7387                 grep "user.$(basename $tdir)" &&
7388                 error "$tdir did not delete user.$(basename $tdir)"
7389         rmdir $DIR/$tdir || error "rmdir"
7390
7391         #striped directory
7392         test_mkdir $DIR/$tdir
7393         setfattr -n user.$(basename $tdir) $DIR/$tdir || error "setfattr dir"
7394         getfattr -n user.$(basename $tdir) $DIR/$tdir || error "getfattr dir"
7395         setfattr -x user.$(basename $tdir) $DIR/$tdir ||
7396                 error "$testfile error deleting user.author1"
7397         getfattr -d -m user.$(basename $tdir) 2> /dev/null |
7398                 grep "user.$(basename $tdir)" &&
7399                 error "$tdir did not delete user.$(basename $tdir)"
7400         rmdir $DIR/$tdir || error "rm striped dir"
7401 }
7402 run_test 102r "set EAs with empty values"
7403
7404 run_acl_subtest()
7405 {
7406     $LUSTRE/tests/acl/run $LUSTRE/tests/acl/$1.test
7407     return $?
7408 }
7409
7410 test_103a() {
7411         [ "$UID" != 0 ] && skip_env "must run as root" && return
7412         [ -z "$(lctl get_param -n mdc.*-mdc-*.connect_flags | grep acl)" ] &&
7413                 skip "must have acl enabled" && return
7414         [ -z "$(which setfacl 2>/dev/null)" ] &&
7415                 skip_env "could not find setfacl" && return
7416         $GSS && skip "could not run under gss" && return
7417         remote_mds_nodsh && skip "remote MDS with nodsh" && return
7418
7419         gpasswd -a daemon bin                           # LU-5641
7420         do_facet $SINGLEMDS gpasswd -a daemon bin       # LU-5641
7421
7422         declare -a identity_old
7423
7424         for num in $(seq $MDSCOUNT); do
7425                 switch_identity $num true || identity_old[$num]=$?
7426         done
7427
7428         SAVE_UMASK=$(umask)
7429         umask 0022
7430         mkdir -p $DIR/$tdir
7431         cd $DIR/$tdir
7432
7433         echo "performing cp ..."
7434         run_acl_subtest cp || error "run_acl_subtest cp failed"
7435         echo "performing getfacl-noacl..."
7436         run_acl_subtest getfacl-noacl || error "getfacl-noacl test failed"
7437         echo "performing misc..."
7438         run_acl_subtest misc || error  "misc test failed"
7439         echo "performing permissions..."
7440         run_acl_subtest permissions || error "permissions failed"
7441         # LU-1482 mdd: Setting xattr are properly checked with and without ACLs
7442         if [ $(lustre_version_code $SINGLEMDS) -gt $(version_code 2.8.55) -o \
7443              \( $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.6) -a \
7444              $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.5.29) \) ]
7445         then
7446                 echo "performing permissions xattr..."
7447                 run_acl_subtest permissions_xattr ||
7448                         error "permissions_xattr failed"
7449         fi
7450         echo "performing setfacl..."
7451         run_acl_subtest setfacl || error  "setfacl test failed"
7452
7453         # inheritance test got from HP
7454         echo "performing inheritance..."
7455         cp $LUSTRE/tests/acl/make-tree . || error "cannot copy make-tree"
7456         chmod +x make-tree || error "chmod +x failed"
7457         run_acl_subtest inheritance || error "inheritance test failed"
7458         rm -f make-tree
7459
7460         echo "LU-974 ignore umask when acl is enabled..."
7461         run_acl_subtest 974 || error "LU-974 umask test failed"
7462         if [ $MDSCOUNT -ge 2 ]; then
7463                 run_acl_subtest 974_remote ||
7464                         error "LU-974 umask test failed under remote dir"
7465         fi
7466
7467         echo "LU-2561 newly created file is same size as directory..."
7468         if [ $(facet_fstype $SINGLEMDS) != "zfs" ]; then
7469                 run_acl_subtest 2561 || error "LU-2561 test failed"
7470         else
7471                 run_acl_subtest 2561_zfs || error "LU-2561 zfs test failed"
7472         fi
7473
7474         run_acl_subtest 4924 || error "LU-4924 test failed"
7475
7476         cd $SAVE_PWD
7477         umask $SAVE_UMASK
7478
7479         for num in $(seq $MDSCOUNT); do
7480                 if [ "${identity_old[$num]}" = 1 ]; then
7481                         switch_identity $num false || identity_old[$num]=$?
7482                 fi
7483         done
7484 }
7485 run_test 103a "acl test ========================================="
7486
7487 test_103c() {
7488         mkdir -p $DIR/$tdir
7489         cp -rp $DIR/$tdir $DIR/$tdir.bak
7490
7491         [ -n "$(getfattr -d -m. $DIR/$tdir | grep posix_acl_default)" ] &&
7492                 error "$DIR/$tdir shouldn't contain default ACL"
7493         [ -n "$(getfattr -d -m. $DIR/$tdir.bak | grep posix_acl_default)" ] &&
7494                 error "$DIR/$tdir.bak shouldn't contain default ACL"
7495         true
7496 }
7497 run_test 103c "'cp -rp' won't set empty acl"
7498
7499 test_104a() {
7500         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7501         touch $DIR/$tfile
7502         lfs df || error "lfs df failed"
7503         lfs df -ih || error "lfs df -ih failed"
7504         lfs df -h $DIR || error "lfs df -h $DIR failed"
7505         lfs df -i $DIR || error "lfs df -i $DIR failed"
7506         lfs df $DIR/$tfile || error "lfs df $DIR/$tfile failed"
7507         lfs df -ih $DIR/$tfile || error "lfs df -ih $DIR/$tfile failed"
7508
7509         local OSC=$(lctl dl | grep OST0000-osc-[^M] | awk '{ print $4 }')
7510         lctl --device %$OSC deactivate
7511         lfs df || error "lfs df with deactivated OSC failed"
7512         lctl --device %$OSC activate
7513         # wait the osc back to normal
7514         wait_osc_import_state client ost FULL
7515
7516         lfs df || error "lfs df with reactivated OSC failed"
7517         rm -f $DIR/$tfile
7518 }
7519 run_test 104a "lfs df [-ih] [path] test ========================="
7520
7521 test_104b() {
7522         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7523         [ $RUNAS_ID -eq $UID ] &&
7524                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
7525         chmod 666 /dev/obd
7526         denied_cnt=$(($($RUNAS $LFS check servers 2>&1 |
7527                         grep "Permission denied" | wc -l)))
7528         if [ $denied_cnt -ne 0 ]; then
7529                 error "lfs check servers test failed"
7530         fi
7531 }
7532 run_test 104b "$RUNAS lfs check servers test ===================="
7533
7534 test_105a() {
7535         # doesn't work on 2.4 kernels
7536         touch $DIR/$tfile
7537         if $(flock_is_enabled); then
7538                 flocks_test 1 on -f $DIR/$tfile || error "fail flock on"
7539         else
7540                 flocks_test 1 off -f $DIR/$tfile || error "fail flock off"
7541         fi
7542         rm -f $DIR/$tfile
7543 }
7544 run_test 105a "flock when mounted without -o flock test ========"
7545
7546 test_105b() {
7547         touch $DIR/$tfile
7548         if $(flock_is_enabled); then
7549                 flocks_test 1 on -c $DIR/$tfile || error "fail flock on"
7550         else
7551                 flocks_test 1 off -c $DIR/$tfile || error "fail flock off"
7552         fi
7553         rm -f $DIR/$tfile
7554 }
7555 run_test 105b "fcntl when mounted without -o flock test ========"
7556
7557 test_105c() {
7558         touch $DIR/$tfile
7559         if $(flock_is_enabled); then
7560                 flocks_test 1 on -l $DIR/$tfile || error "fail flock on"
7561         else
7562                 flocks_test 1 off -l $DIR/$tfile || error "fail flock off"
7563         fi
7564         rm -f $DIR/$tfile
7565 }
7566 run_test 105c "lockf when mounted without -o flock test"
7567
7568 test_105d() { # bug 15924
7569         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7570         test_mkdir $DIR/$tdir
7571         flock_is_enabled || { skip "mount w/o flock enabled" && return; }
7572         #define OBD_FAIL_LDLM_CP_CB_WAIT  0x315
7573         $LCTL set_param fail_loc=0x80000315
7574         flocks_test 2 $DIR/$tdir
7575 }
7576 run_test 105d "flock race (should not freeze) ========"
7577
7578 test_105e() { # bug 22660 && 22040
7579         flock_is_enabled || { skip "mount w/o flock enabled" && return; }
7580         touch $DIR/$tfile
7581         flocks_test 3 $DIR/$tfile
7582 }
7583 run_test 105e "Two conflicting flocks from same process"
7584
7585 test_106() { #bug 10921
7586         test_mkdir $DIR/$tdir
7587         $DIR/$tdir && error "exec $DIR/$tdir succeeded"
7588         chmod 777 $DIR/$tdir || error "chmod $DIR/$tdir failed"
7589 }
7590 run_test 106 "attempt exec of dir followed by chown of that dir"
7591
7592 test_107() {
7593         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7594         CDIR=`pwd`
7595         cd $DIR
7596
7597         local file=core
7598         rm -f $file
7599
7600         local save_pattern=$(sysctl -n kernel.core_pattern)
7601         local save_uses_pid=$(sysctl -n kernel.core_uses_pid)
7602         sysctl -w kernel.core_pattern=$file
7603         sysctl -w kernel.core_uses_pid=0
7604
7605         ulimit -c unlimited
7606         sleep 60 &
7607         SLEEPPID=$!
7608
7609         sleep 1
7610
7611         kill -s 11 $SLEEPPID
7612         wait $SLEEPPID
7613         if [ -e $file ]; then
7614                 size=`stat -c%s $file`
7615                 [ $size -eq 0 ] && error "Fail to create core file $file"
7616         else
7617                 error "Fail to create core file $file"
7618         fi
7619         rm -f $file
7620         sysctl -w kernel.core_pattern=$save_pattern
7621         sysctl -w kernel.core_uses_pid=$save_uses_pid
7622         cd $CDIR
7623 }
7624 run_test 107 "Coredump on SIG"
7625
7626 test_110() {
7627         test_mkdir $DIR/$tdir
7628         test_mkdir $DIR/$tdir/$(str_repeat 'a' 255)
7629         $LFS mkdir -c $MDSCOUNT $DIR/$tdir/$(str_repeat 'b' 256) &&
7630                 error "mkdir with 256 char should fail, but did not"
7631         touch $DIR/$tdir/$(str_repeat 'x' 255) ||
7632                 error "create with 255 char failed"
7633         touch $DIR/$tdir/$(str_repeat 'y' 256) &&
7634                 error "create with 256 char should fail, but did not"
7635
7636         ls -l $DIR/$tdir
7637         rm -rf $DIR/$tdir
7638 }
7639 run_test 110 "filename length checking"
7640
7641 #
7642 # Purpose: To verify dynamic thread (OSS) creation.
7643 #
7644 test_115() {
7645         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7646         remote_ost_nodsh && skip "remote OST with nodsh" && return
7647
7648         # Lustre does not stop service threads once they are started.
7649         # Reset number of running threads to default.
7650         stopall
7651         setupall
7652
7653         local OSTIO_pre
7654         local save_params="$TMP/sanity-$TESTNAME.parameters"
7655
7656         # Get ll_ost_io count before I/O
7657         OSTIO_pre=$(do_facet ost1 \
7658                 "$LCTL get_param ost.OSS.ost_io.threads_started | cut -d= -f2")
7659         # Exit if lustre is not running (ll_ost_io not running).
7660         [ -z "$OSTIO_pre" ] && error "no OSS threads"
7661
7662         echo "Starting with $OSTIO_pre threads"
7663         local thread_max=$((OSTIO_pre * 2))
7664         local rpc_in_flight=$((thread_max * 2))
7665         # Number of I/O Process proposed to be started.
7666         local nfiles
7667         local facets=$(get_facets OST)
7668
7669         save_lustre_params client "osc.*OST*.max_rpcs_in_flight" > $save_params
7670         save_lustre_params $facets "ost.OSS.ost_io.threads_max" >> $save_params
7671
7672         # Set in_flight to $rpc_in_flight
7673         $LCTL set_param osc.*OST*.max_rpcs_in_flight=$rpc_in_flight ||
7674                 error "Failed to set max_rpcs_in_flight to $rpc_in_flight"
7675         nfiles=${rpc_in_flight}
7676         # Set ost thread_max to $thread_max
7677         do_facet ost1 "$LCTL set_param ost.OSS.ost_io.threads_max=$thread_max"
7678
7679         # 5 Minutes should be sufficient for max number of OSS
7680         # threads(thread_max) to be created.
7681         local timeout=300
7682
7683         # Start I/O.
7684         local WTL=${WTL:-"$LUSTRE/tests/write_time_limit"}
7685         test_mkdir $DIR/$tdir
7686         for i in $(seq $nfiles); do
7687                 local file=$DIR/$tdir/${tfile}-$i
7688                 $LFS setstripe -c -1 -i 0 $file
7689                 ($WTL $file $timeout)&
7690         done
7691
7692         # I/O Started - Wait for thread_started to reach thread_max or report
7693         # error if thread_started is more than thread_max.
7694         echo "Waiting for thread_started to reach thread_max"
7695         local thread_started=0
7696         local end_time=$((SECONDS + timeout))
7697
7698         while [ $SECONDS -le $end_time ] ; do
7699                 echo -n "."
7700                 # Get ost i/o thread_started count.
7701                 thread_started=$(do_facet ost1 \
7702                         "$LCTL get_param \
7703                         ost.OSS.ost_io.threads_started | cut -d= -f2")
7704                 # Break out if thread_started is equal/greater than thread_max
7705                 if [[ $thread_started -ge $thread_max ]]; then
7706                         echo ll_ost_io thread_started $thread_started, \
7707                                 equal/greater than thread_max $thread_max
7708                         break
7709                 fi
7710                 sleep 1
7711         done
7712
7713         # Cleanup - We have the numbers, Kill i/o jobs if running.
7714         jobcount=($(jobs -p))
7715         for i in $(seq 0 $((${#jobcount[@]}-1)))
7716         do
7717                 kill -9 ${jobcount[$i]}
7718                 if [ $? -ne 0 ] ; then
7719                         echo Warning: \
7720                         Failed to Kill \'WTL\(I/O\)\' with pid ${jobcount[$i]}
7721                 fi
7722         done
7723
7724         # Cleanup files left by WTL binary.
7725         for i in $(seq $nfiles); do
7726                 local file=$DIR/$tdir/${tfile}-$i
7727                 rm -rf $file
7728                 if [ $? -ne 0 ] ; then
7729                         echo "Warning: Failed to delete file $file"
7730                 fi
7731         done
7732
7733         restore_lustre_params <$save_params
7734         rm -f $save_params || echo "Warning: delete file '$save_params' failed"
7735
7736         # Error out if no new thread has started or Thread started is greater
7737         # than thread max.
7738         if [[ $thread_started -le $OSTIO_pre ||
7739                         $thread_started -gt $thread_max ]]; then
7740                 error "ll_ost_io: thread_started $thread_started" \
7741                       "OSTIO_pre $OSTIO_pre, thread_max $thread_max." \
7742                       "No new thread started or thread started greater " \
7743                       "than thread_max."
7744         fi
7745 }
7746 run_test 115 "verify dynamic thread creation===================="
7747
7748 free_min_max () {
7749         wait_delete_completed
7750         AVAIL=($(lctl get_param -n osc.*[oO][sS][cC]-[^M]*.kbytesavail))
7751         echo "OST kbytes available: ${AVAIL[@]}"
7752         MAXV=${AVAIL[0]}
7753         MAXI=0
7754         MINV=${AVAIL[0]}
7755         MINI=0
7756         for ((i = 0; i < ${#AVAIL[@]}; i++)); do
7757                 #echo OST $i: ${AVAIL[i]}kb
7758                 if [[ ${AVAIL[i]} -gt $MAXV ]]; then
7759                         MAXV=${AVAIL[i]}
7760                         MAXI=$i
7761                 fi
7762                 if [[ ${AVAIL[i]} -lt $MINV ]]; then
7763                         MINV=${AVAIL[i]}
7764                         MINI=$i
7765                 fi
7766         done
7767         echo "Min free space: OST $MINI: $MINV"
7768         echo "Max free space: OST $MAXI: $MAXV"
7769 }
7770
7771 test_116a() { # was previously test_116()
7772         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7773         remote_mds_nodsh && skip "remote MDS with nodsh" && return
7774
7775         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
7776
7777         echo -n "Free space priority "
7778         do_facet $SINGLEMDS lctl get_param -n lo*.*-mdtlov.qos_prio_free |
7779                 head -n1
7780         declare -a AVAIL
7781         free_min_max
7782
7783         [ $MINV -eq 0 ] && skip "no free space in OST$MINI, skip" && return
7784         [ $MINV -gt 10000000 ] && skip "too much free space in OST$MINI, skip" \
7785                 && return
7786         trap simple_cleanup_common EXIT
7787
7788
7789         # Check if we need to generate uneven OSTs
7790         test_mkdir -p $DIR/$tdir/OST${MINI}
7791         local FILL=$((MINV / 4))
7792         local DIFF=$((MAXV - MINV))
7793         local DIFF2=$((DIFF * 100 / MINV))
7794
7795         local threshold=$(do_facet $SINGLEMDS \
7796                 lctl get_param -n *.*MDT0000-mdtlov.qos_threshold_rr | head -n1)
7797         threshold=${threshold%%%}
7798         echo -n "Check for uneven OSTs: "
7799         echo -n "diff=${DIFF}KB (${DIFF2}%) must be > ${threshold}% ..."
7800
7801         if [[ $DIFF2 -gt $threshold ]]; then
7802                 echo "ok"
7803                 echo "Don't need to fill OST$MINI"
7804         else
7805                 # generate uneven OSTs. Write 2% over the QOS threshold value
7806                 echo "no"
7807                 DIFF=$((threshold - DIFF2 + 2))
7808                 DIFF2=$((MINV * DIFF / 100))
7809                 echo "Fill $DIFF% remaining space in OST$MINI with ${DIFF2}KB"
7810                 $SETSTRIPE -i $MINI -c 1 $DIR/$tdir/OST${MINI} ||
7811                         error "setstripe failed"
7812                 DIFF=$((DIFF2 / 2048))
7813                 i=0
7814                 while [ $i -lt $DIFF ]; do
7815                         i=$((i + 1))
7816                         dd if=/dev/zero of=$DIR/$tdir/OST${MINI}/$tfile-$i \
7817                                 bs=2M count=1 2>/dev/null
7818                         echo -n .
7819                 done
7820                 echo .
7821                 sync
7822                 sleep_maxage
7823                 free_min_max
7824         fi
7825
7826         DIFF=$((MAXV - MINV))
7827         DIFF2=$((DIFF * 100 / MINV))
7828         echo -n "diff=$DIFF=$DIFF2% must be > $threshold% for QOS mode..."
7829         if [ $DIFF2 -gt $threshold ]; then
7830                 echo "ok"
7831         else
7832                 echo "failed - QOS mode won't be used"
7833                 skip "QOS imbalance criteria not met"
7834                 simple_cleanup_common
7835                 return
7836         fi
7837
7838         MINI1=$MINI
7839         MINV1=$MINV
7840         MAXI1=$MAXI
7841         MAXV1=$MAXV
7842
7843         # now fill using QOS
7844         $SETSTRIPE -c 1 $DIR/$tdir
7845         FILL=$((FILL / 200))
7846         if [ $FILL -gt 600 ]; then
7847                 FILL=600
7848         fi
7849         echo "writing $FILL files to QOS-assigned OSTs"
7850         i=0
7851         while [ $i -lt $FILL ]; do
7852                 i=$((i + 1))
7853                 dd if=/dev/zero of=$DIR/$tdir/$tfile-$i bs=200k \
7854                         count=1 2>/dev/null
7855                 echo -n .
7856         done
7857         echo "wrote $i 200k files"
7858         sync
7859         sleep_maxage
7860
7861         echo "Note: free space may not be updated, so measurements might be off"
7862         free_min_max
7863         DIFF2=$((MAXV - MINV))
7864         echo "free space delta: orig $DIFF final $DIFF2"
7865         [ $DIFF2 -gt $DIFF ] && echo "delta got worse!"
7866         DIFF=$((MINV1 - ${AVAIL[$MINI1]}))
7867         echo "Wrote ${DIFF}KB to smaller OST $MINI1"
7868         DIFF2=$((MAXV1 - ${AVAIL[$MAXI1]}))
7869         echo "Wrote ${DIFF2}KB to larger OST $MAXI1"
7870         if [[ $DIFF -gt 0 ]]; then
7871                 FILL=$((DIFF2 * 100 / DIFF - 100))
7872                 echo "Wrote ${FILL}% more data to larger OST $MAXI1"
7873         fi
7874
7875         # Figure out which files were written where
7876         UUID=$(lctl get_param -n lov.${FSNAME}-clilov-*.target_obd |
7877                awk '/'$MINI1': / {print $2; exit}')
7878         echo $UUID
7879         MINC=$($GETSTRIPE --ost $UUID $DIR/$tdir | grep $DIR | wc -l)
7880         echo "$MINC files created on smaller OST $MINI1"
7881         UUID=$(lctl get_param -n lov.${FSNAME}-clilov-*.target_obd |
7882                awk '/'$MAXI1': / {print $2; exit}')
7883         echo $UUID
7884         MAXC=$($GETSTRIPE --ost $UUID $DIR/$tdir | grep $DIR | wc -l)
7885         echo "$MAXC files created on larger OST $MAXI1"
7886         if [[ $MINC -gt 0 ]]; then
7887                 FILL=$((MAXC * 100 / MINC - 100))
7888                 echo "Wrote ${FILL}% more files to larger OST $MAXI1"
7889         fi
7890         [[ $MAXC -gt $MINC ]] ||
7891                 error_ignore LU-9 "stripe QOS didn't balance free space"
7892         simple_cleanup_common
7893 }
7894 run_test 116a "stripe QOS: free space balance ==================="
7895
7896 test_116b() { # LU-2093
7897         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7898         remote_mds_nodsh && skip "remote MDS with nodsh" && return
7899
7900 #define OBD_FAIL_MDS_OSC_CREATE_FAIL     0x147
7901         local old_rr=$(do_facet $SINGLEMDS lctl get_param -n \
7902                        lo*.$FSNAME-MDT0000-mdtlov.qos_threshold_rr | head -1)
7903         [ -z "$old_rr" ] && skip "no QOS" && return 0
7904         do_facet $SINGLEMDS lctl set_param \
7905                 lo*.$FSNAME-MDT0000-mdtlov.qos_threshold_rr=0
7906         mkdir -p $DIR/$tdir
7907         do_facet $SINGLEMDS lctl set_param fail_loc=0x147
7908         createmany -o $DIR/$tdir/f- 20 || error "can't create"
7909         do_facet $SINGLEMDS lctl set_param fail_loc=0
7910         rm -rf $DIR/$tdir
7911         do_facet $SINGLEMDS lctl set_param \
7912                 lo*.$FSNAME-MDT0000-mdtlov.qos_threshold_rr=$old_rr
7913 }
7914 run_test 116b "QoS shouldn't LBUG if not enough OSTs found on the 2nd pass"
7915
7916 test_117() # bug 10891
7917 {
7918         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7919         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1
7920         #define OBD_FAIL_OST_SETATTR_CREDITS 0x21e
7921         lctl set_param fail_loc=0x21e
7922         > $DIR/$tfile || error "truncate failed"
7923         lctl set_param fail_loc=0
7924         echo "Truncate succeeded."
7925         rm -f $DIR/$tfile
7926 }
7927 run_test 117 "verify osd extend =========="
7928
7929 NO_SLOW_RESENDCOUNT=4
7930 export OLD_RESENDCOUNT=""
7931 set_resend_count () {
7932         local PROC_RESENDCOUNT="osc.${FSNAME}-OST*-osc-*.resend_count"
7933         OLD_RESENDCOUNT=$(lctl get_param -n $PROC_RESENDCOUNT | head -n1)
7934         lctl set_param -n $PROC_RESENDCOUNT $1
7935         echo resend_count is set to $(lctl get_param -n $PROC_RESENDCOUNT)
7936 }
7937
7938 # for reduce test_118* time (b=14842)
7939 [ "$SLOW" = "no" ] && set_resend_count $NO_SLOW_RESENDCOUNT
7940
7941 # Reset async IO behavior after error case
7942 reset_async() {
7943         FILE=$DIR/reset_async
7944
7945         # Ensure all OSCs are cleared
7946         $SETSTRIPE -c -1 $FILE
7947         dd if=/dev/zero of=$FILE bs=64k count=$OSTCOUNT
7948         sync
7949         rm $FILE
7950 }
7951
7952 test_118a() #bug 11710
7953 {
7954         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7955         reset_async
7956
7957         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
7958         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
7959         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
7960
7961         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
7962                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
7963                 return 1;
7964         fi
7965         rm -f $DIR/$tfile
7966 }
7967 run_test 118a "verify O_SYNC works =========="
7968
7969 test_118b()
7970 {
7971         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7972         remote_ost_nodsh && skip "remote OST with nodsh" && return
7973
7974         reset_async
7975
7976         #define OBD_FAIL_SRV_ENOENT 0x217
7977         set_nodes_failloc "$(osts_nodes)" 0x217
7978         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
7979         RC=$?
7980         set_nodes_failloc "$(osts_nodes)" 0
7981         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
7982         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
7983                     grep -c writeback)
7984
7985         if [[ $RC -eq 0 ]]; then
7986                 error "Must return error due to dropped pages, rc=$RC"
7987                 return 1;
7988         fi
7989
7990         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
7991                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
7992                 return 1;
7993         fi
7994
7995         echo "Dirty pages not leaked on ENOENT"
7996
7997         # Due to the above error the OSC will issue all RPCs syncronously
7998         # until a subsequent RPC completes successfully without error.
7999         $MULTIOP $DIR/$tfile Ow4096yc
8000         rm -f $DIR/$tfile
8001
8002         return 0
8003 }
8004 run_test 118b "Reclaim dirty pages on fatal error =========="
8005
8006 test_118c()
8007 {
8008         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8009
8010         # for 118c, restore the original resend count, LU-1940
8011         [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] &&
8012                                 set_resend_count $OLD_RESENDCOUNT
8013         remote_ost_nodsh && skip "remote OST with nodsh" && return
8014
8015         reset_async
8016
8017         #define OBD_FAIL_OST_EROFS               0x216
8018         set_nodes_failloc "$(osts_nodes)" 0x216
8019
8020         # multiop should block due to fsync until pages are written
8021         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
8022         MULTIPID=$!
8023         sleep 1
8024
8025         if [[ `ps h -o comm -p $MULTIPID` != "multiop" ]]; then
8026                 error "Multiop failed to block on fsync, pid=$MULTIPID"
8027         fi
8028
8029         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
8030                     grep -c writeback)
8031         if [[ $WRITEBACK -eq 0 ]]; then
8032                 error "No page in writeback, writeback=$WRITEBACK"
8033         fi
8034
8035         set_nodes_failloc "$(osts_nodes)" 0
8036         wait $MULTIPID
8037         RC=$?
8038         if [[ $RC -ne 0 ]]; then
8039                 error "Multiop fsync failed, rc=$RC"
8040         fi
8041
8042         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
8043         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
8044                     grep -c writeback)
8045         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
8046                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
8047         fi
8048
8049         rm -f $DIR/$tfile
8050         echo "Dirty pages flushed via fsync on EROFS"
8051         return 0
8052 }
8053 run_test 118c "Fsync blocks on EROFS until dirty pages are flushed =========="
8054
8055 # continue to use small resend count to reduce test_118* time (b=14842)
8056 [ "$SLOW" = "no" ] && set_resend_count $NO_SLOW_RESENDCOUNT
8057
8058 test_118d()
8059 {
8060         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8061         remote_ost_nodsh && skip "remote OST with nodsh" && return
8062
8063         reset_async
8064
8065         #define OBD_FAIL_OST_BRW_PAUSE_BULK
8066         set_nodes_failloc "$(osts_nodes)" 0x214
8067         # multiop should block due to fsync until pages are written
8068         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
8069         MULTIPID=$!
8070         sleep 1
8071
8072         if [[ `ps h -o comm -p $MULTIPID` != "multiop" ]]; then
8073                 error "Multiop failed to block on fsync, pid=$MULTIPID"
8074         fi
8075
8076         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
8077                     grep -c writeback)
8078         if [[ $WRITEBACK -eq 0 ]]; then
8079                 error "No page in writeback, writeback=$WRITEBACK"
8080         fi
8081
8082         wait $MULTIPID || error "Multiop fsync failed, rc=$?"
8083         set_nodes_failloc "$(osts_nodes)" 0
8084
8085         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
8086         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
8087                     grep -c writeback)
8088         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
8089                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
8090         fi
8091
8092         rm -f $DIR/$tfile
8093         echo "Dirty pages gaurenteed flushed via fsync"
8094         return 0
8095 }
8096 run_test 118d "Fsync validation inject a delay of the bulk =========="
8097
8098 test_118f() {
8099         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8100         reset_async
8101
8102         #define OBD_FAIL_OSC_BRW_PREP_REQ2        0x40a
8103         lctl set_param fail_loc=0x8000040a
8104
8105         # Should simulate EINVAL error which is fatal
8106         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
8107         RC=$?
8108         if [[ $RC -eq 0 ]]; then
8109                 error "Must return error due to dropped pages, rc=$RC"
8110         fi
8111
8112         lctl set_param fail_loc=0x0
8113
8114         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
8115         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
8116         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
8117                     grep -c writeback)
8118         if [[ $LOCKED -ne 0 ]]; then
8119                 error "Locked pages remain in cache, locked=$LOCKED"
8120         fi
8121
8122         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
8123                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
8124         fi
8125
8126         rm -f $DIR/$tfile
8127         echo "No pages locked after fsync"
8128
8129         reset_async
8130         return 0
8131 }
8132 run_test 118f "Simulate unrecoverable OSC side error =========="
8133
8134 test_118g() {
8135         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8136         reset_async
8137
8138         #define OBD_FAIL_OSC_BRW_PREP_REQ        0x406
8139         lctl set_param fail_loc=0x406
8140
8141         # simulate local -ENOMEM
8142         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
8143         RC=$?
8144
8145         lctl set_param fail_loc=0
8146         if [[ $RC -eq 0 ]]; then
8147                 error "Must return error due to dropped pages, rc=$RC"
8148         fi
8149
8150         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
8151         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
8152         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
8153                         grep -c writeback)
8154         if [[ $LOCKED -ne 0 ]]; then
8155                 error "Locked pages remain in cache, locked=$LOCKED"
8156         fi
8157
8158         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
8159                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
8160         fi
8161
8162         rm -f $DIR/$tfile
8163         echo "No pages locked after fsync"
8164
8165         reset_async
8166         return 0
8167 }
8168 run_test 118g "Don't stay in wait if we got local -ENOMEM  =========="
8169
8170 test_118h() {
8171         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8172         remote_ost_nodsh && skip "remote OST with nodsh" && return
8173
8174         reset_async
8175
8176         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
8177         set_nodes_failloc "$(osts_nodes)" 0x20e
8178         # Should simulate ENOMEM error which is recoverable and should be handled by timeout
8179         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
8180         RC=$?
8181
8182         set_nodes_failloc "$(osts_nodes)" 0
8183         if [[ $RC -eq 0 ]]; then
8184                 error "Must return error due to dropped pages, rc=$RC"
8185         fi
8186
8187         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
8188         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
8189         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
8190                     grep -c writeback)
8191         if [[ $LOCKED -ne 0 ]]; then
8192                 error "Locked pages remain in cache, locked=$LOCKED"
8193         fi
8194
8195         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
8196                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
8197         fi
8198
8199         rm -f $DIR/$tfile
8200         echo "No pages locked after fsync"
8201
8202         return 0
8203 }
8204 run_test 118h "Verify timeout in handling recoverables errors  =========="
8205
8206 [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] && set_resend_count $OLD_RESENDCOUNT
8207
8208 test_118i() {
8209         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8210         remote_ost_nodsh && skip "remote OST with nodsh" && return
8211
8212         reset_async
8213
8214         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
8215         set_nodes_failloc "$(osts_nodes)" 0x20e
8216
8217         # Should simulate ENOMEM error which is recoverable and should be handled by timeout
8218         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
8219         PID=$!
8220         sleep 5
8221         set_nodes_failloc "$(osts_nodes)" 0
8222
8223         wait $PID
8224         RC=$?
8225         if [[ $RC -ne 0 ]]; then
8226                 error "got error, but should be not, rc=$RC"
8227         fi
8228
8229         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
8230         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
8231         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
8232         if [[ $LOCKED -ne 0 ]]; then
8233                 error "Locked pages remain in cache, locked=$LOCKED"
8234         fi
8235
8236         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
8237                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
8238         fi
8239
8240         rm -f $DIR/$tfile
8241         echo "No pages locked after fsync"
8242
8243         return 0
8244 }
8245 run_test 118i "Fix error before timeout in recoverable error  =========="
8246
8247 [ "$SLOW" = "no" ] && set_resend_count 4
8248
8249 test_118j() {
8250         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8251         remote_ost_nodsh && skip "remote OST with nodsh" && return
8252
8253         reset_async
8254
8255         #define OBD_FAIL_OST_BRW_WRITE_BULK2     0x220
8256         set_nodes_failloc "$(osts_nodes)" 0x220
8257
8258         # return -EIO from OST
8259         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
8260         RC=$?
8261         set_nodes_failloc "$(osts_nodes)" 0x0
8262         if [[ $RC -eq 0 ]]; then
8263                 error "Must return error due to dropped pages, rc=$RC"
8264         fi
8265
8266         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
8267         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
8268         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
8269         if [[ $LOCKED -ne 0 ]]; then
8270                 error "Locked pages remain in cache, locked=$LOCKED"
8271         fi
8272
8273         # in recoverable error on OST we want resend and stay until it finished
8274         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
8275                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
8276         fi
8277
8278         rm -f $DIR/$tfile
8279         echo "No pages locked after fsync"
8280
8281         return 0
8282 }
8283 run_test 118j "Simulate unrecoverable OST side error =========="
8284
8285 test_118k()
8286 {
8287         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8288         remote_ost_nodsh && skip "remote OSTs with nodsh" && return
8289
8290         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
8291         set_nodes_failloc "$(osts_nodes)" 0x20e
8292         test_mkdir $DIR/$tdir
8293
8294         for ((i=0;i<10;i++)); do
8295                 (dd if=/dev/zero of=$DIR/$tdir/$tfile-$i bs=1M count=10 || \
8296                         error "dd to $DIR/$tdir/$tfile-$i failed" )&
8297                 SLEEPPID=$!
8298                 sleep 0.500s
8299                 kill $SLEEPPID
8300                 wait $SLEEPPID
8301         done
8302
8303         set_nodes_failloc "$(osts_nodes)" 0
8304         rm -rf $DIR/$tdir
8305 }
8306 run_test 118k "bio alloc -ENOMEM and IO TERM handling ========="
8307
8308 test_118l()
8309 {
8310         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8311         # LU-646
8312         test_mkdir $DIR/$tdir
8313         $MULTIOP $DIR/$tdir Dy || error "fsync dir failed"
8314         rm -rf $DIR/$tdir
8315 }
8316 run_test 118l "fsync dir"
8317
8318 test_118m() # LU-3066
8319 {
8320         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8321         test_mkdir $DIR/$tdir
8322         $MULTIOP $DIR/$tdir DY || error "fdatasync dir failed"
8323         rm -rf $DIR/$tdir
8324 }
8325 run_test 118m "fdatasync dir ========="
8326
8327 [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] && set_resend_count $OLD_RESENDCOUNT
8328
8329 test_119a() # bug 11737
8330 {
8331         BSIZE=$((512 * 1024))
8332         directio write $DIR/$tfile 0 1 $BSIZE
8333         # We ask to read two blocks, which is more than a file size.
8334         # directio will indicate an error when requested and actual
8335         # sizes aren't equeal (a normal situation in this case) and
8336         # print actual read amount.
8337         NOB=`directio read $DIR/$tfile 0 2 $BSIZE | awk '/error/ {print $6}'`
8338         if [ "$NOB" != "$BSIZE" ]; then
8339                 error "read $NOB bytes instead of $BSIZE"
8340         fi
8341         rm -f $DIR/$tfile
8342 }
8343 run_test 119a "Short directIO read must return actual read amount"
8344
8345 test_119b() # bug 11737
8346 {
8347         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
8348
8349         $SETSTRIPE -c 2 $DIR/$tfile || error "setstripe failed"
8350         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=1 || error "dd failed"
8351         sync
8352         $MULTIOP $DIR/$tfile oO_RDONLY:O_DIRECT:r$((2048 * 1024)) || \
8353                 error "direct read failed"
8354         rm -f $DIR/$tfile
8355 }
8356 run_test 119b "Sparse directIO read must return actual read amount"
8357
8358 test_119c() # bug 13099
8359 {
8360         BSIZE=1048576
8361         directio write $DIR/$tfile 3 1 $BSIZE || error "direct write failed"
8362         directio readhole $DIR/$tfile 0 2 $BSIZE || error "reading hole failed"
8363         rm -f $DIR/$tfile
8364 }
8365 run_test 119c "Testing for direct read hitting hole"
8366
8367 test_119d() # bug 15950
8368 {
8369         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8370         MAX_RPCS_IN_FLIGHT=`$LCTL get_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight`
8371         $LCTL set_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight 1
8372         BSIZE=1048576
8373         $SETSTRIPE $DIR/$tfile -i 0 -c 1 || error "setstripe failed"
8374         $DIRECTIO write $DIR/$tfile 0 1 $BSIZE || error "first directio failed"
8375         #define OBD_FAIL_OSC_DIO_PAUSE           0x40d
8376         lctl set_param fail_loc=0x40d
8377         $DIRECTIO write $DIR/$tfile 1 4 $BSIZE &
8378         pid_dio=$!
8379         sleep 1
8380         cat $DIR/$tfile > /dev/null &
8381         lctl set_param fail_loc=0
8382         pid_reads=$!
8383         wait $pid_dio
8384         log "the DIO writes have completed, now wait for the reads (should not block very long)"
8385         sleep 2
8386         [ -n "`ps h -p $pid_reads -o comm`" ] && \
8387         error "the read rpcs have not completed in 2s"
8388         rm -f $DIR/$tfile
8389         $LCTL set_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight $MAX_RPCS_IN_FLIGHT
8390 }
8391 run_test 119d "The DIO path should try to send a new rpc once one is completed"
8392
8393 test_120a() {
8394         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8395         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8396         test_mkdir $DIR/$tdir
8397         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
8398                 { skip "no early lock cancel on server"; return 0; }
8399
8400         lru_resize_disable mdc
8401         lru_resize_disable osc
8402         cancel_lru_locks mdc
8403         # asynchronous object destroy at MDT could cause bl ast to client
8404         cancel_lru_locks osc
8405
8406         stat $DIR/$tdir > /dev/null
8407         can1=$(do_facet $SINGLEMDS \
8408                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8409                awk '/ldlm_cancel/ {print $2}')
8410         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8411                awk '/ldlm_bl_callback/ {print $2}')
8412         test_mkdir -c1 $DIR/$tdir/d1
8413         can2=$(do_facet $SINGLEMDS \
8414                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8415                awk '/ldlm_cancel/ {print $2}')
8416         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8417                awk '/ldlm_bl_callback/ {print $2}')
8418         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
8419         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
8420         lru_resize_enable mdc
8421         lru_resize_enable osc
8422 }
8423 run_test 120a "Early Lock Cancel: mkdir test"
8424
8425 test_120b() {
8426         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8427         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8428         test_mkdir $DIR/$tdir
8429         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
8430                 { skip "no early lock cancel on server"; return 0; }
8431         lru_resize_disable mdc
8432         lru_resize_disable osc
8433         cancel_lru_locks mdc
8434         stat $DIR/$tdir > /dev/null
8435         can1=$(do_facet $SINGLEMDS \
8436                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8437                awk '/ldlm_cancel/ {print $2}')
8438         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8439                awk '/ldlm_bl_callback/ {print $2}')
8440         touch $DIR/$tdir/f1
8441         can2=$(do_facet $SINGLEMDS \
8442                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8443                awk '/ldlm_cancel/ {print $2}')
8444         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8445                awk '/ldlm_bl_callback/ {print $2}')
8446         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
8447         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
8448         lru_resize_enable mdc
8449         lru_resize_enable osc
8450 }
8451 run_test 120b "Early Lock Cancel: create test"
8452
8453 test_120c() {
8454         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8455         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8456         test_mkdir -c1 $DIR/$tdir
8457         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
8458                 { skip "no early lock cancel on server"; return 0; }
8459         lru_resize_disable mdc
8460         lru_resize_disable osc
8461         test_mkdir -c1 $DIR/$tdir/d1
8462         test_mkdir -c1 $DIR/$tdir/d2
8463         touch $DIR/$tdir/d1/f1
8464         cancel_lru_locks mdc
8465         stat $DIR/$tdir/d1 $DIR/$tdir/d2 $DIR/$tdir/d1/f1 > /dev/null
8466         can1=$(do_facet $SINGLEMDS \
8467                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8468                awk '/ldlm_cancel/ {print $2}')
8469         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8470                awk '/ldlm_bl_callback/ {print $2}')
8471         ln $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2
8472         can2=$(do_facet $SINGLEMDS \
8473                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8474                awk '/ldlm_cancel/ {print $2}')
8475         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8476                awk '/ldlm_bl_callback/ {print $2}')
8477         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
8478         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
8479         lru_resize_enable mdc
8480         lru_resize_enable osc
8481 }
8482 run_test 120c "Early Lock Cancel: link test"
8483
8484 test_120d() {
8485         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8486         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8487         test_mkdir -c1 $DIR/$tdir
8488         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
8489                 { skip "no early lock cancel on server"; return 0; }
8490         lru_resize_disable mdc
8491         lru_resize_disable osc
8492         touch $DIR/$tdir
8493         cancel_lru_locks mdc
8494         stat $DIR/$tdir > /dev/null
8495         can1=$(do_facet $SINGLEMDS \
8496                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8497                awk '/ldlm_cancel/ {print $2}')
8498         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8499                awk '/ldlm_bl_callback/ {print $2}')
8500         chmod a+x $DIR/$tdir
8501         can2=$(do_facet $SINGLEMDS \
8502                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8503                awk '/ldlm_cancel/ {print $2}')
8504         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8505                awk '/ldlm_bl_callback/ {print $2}')
8506         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
8507         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
8508         lru_resize_enable mdc
8509         lru_resize_enable osc
8510 }
8511 run_test 120d "Early Lock Cancel: setattr test"
8512
8513 test_120e() {
8514         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8515         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
8516                 { skip "no early lock cancel on server"; return 0; }
8517         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8518         local dlmtrace_set=false
8519
8520         test_mkdir -c1 $DIR/$tdir
8521         lru_resize_disable mdc
8522         lru_resize_disable osc
8523         ! $LCTL get_param debug | grep -q dlmtrace &&
8524                 $LCTL set_param debug=+dlmtrace && dlmtrace_set=true
8525         dd if=/dev/zero of=$DIR/$tdir/f1 count=1
8526         cancel_lru_locks mdc
8527         cancel_lru_locks osc
8528         dd if=$DIR/$tdir/f1 of=/dev/null
8529         stat $DIR/$tdir $DIR/$tdir/f1 > /dev/null
8530         # XXX client can not do early lock cancel of OST lock
8531         # during unlink (LU-4206), so cancel osc lock now.
8532         sleep 2
8533         cancel_lru_locks osc
8534         can1=$(do_facet $SINGLEMDS \
8535                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8536                awk '/ldlm_cancel/ {print $2}')
8537         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8538                awk '/ldlm_bl_callback/ {print $2}')
8539         unlink $DIR/$tdir/f1
8540         sleep 5
8541         can2=$(do_facet $SINGLEMDS \
8542                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8543                awk '/ldlm_cancel/ {print $2}')
8544         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8545                awk '/ldlm_bl_callback/ {print $2}')
8546         [ $can1 -ne $can2 ] && error "$((can2 - can1)) cancel RPC occured" &&
8547                 $LCTL dk $TMP/cancel.debug.txt
8548         [ $blk1 -ne $blk2 ] && error "$((blk2 - blk1)) blocking RPC occured" &&
8549                 $LCTL dk $TMP/blocking.debug.txt
8550         $dlmtrace_set && $LCTL set_param debug=-dlmtrace
8551         lru_resize_enable mdc
8552         lru_resize_enable osc
8553 }
8554 run_test 120e "Early Lock Cancel: unlink test"
8555
8556 test_120f() {
8557         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8558         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
8559                 { skip "no early lock cancel on server"; return 0; }
8560         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8561         test_mkdir -c1 $DIR/$tdir
8562         lru_resize_disable mdc
8563         lru_resize_disable osc
8564         test_mkdir -c1 $DIR/$tdir/d1
8565         test_mkdir -c1 $DIR/$tdir/d2
8566         dd if=/dev/zero of=$DIR/$tdir/d1/f1 count=1
8567         dd if=/dev/zero of=$DIR/$tdir/d2/f2 count=1
8568         cancel_lru_locks mdc
8569         cancel_lru_locks osc
8570         dd if=$DIR/$tdir/d1/f1 of=/dev/null
8571         dd if=$DIR/$tdir/d2/f2 of=/dev/null
8572         stat $DIR/$tdir/d1 $DIR/$tdir/d2 $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2 > /dev/null
8573         # XXX client can not do early lock cancel of OST lock
8574         # during rename (LU-4206), so cancel osc lock now.
8575         sleep 2
8576         cancel_lru_locks osc
8577         can1=$(do_facet $SINGLEMDS \
8578                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8579                awk '/ldlm_cancel/ {print $2}')
8580         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8581                awk '/ldlm_bl_callback/ {print $2}')
8582         mrename $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2
8583         sleep 5
8584         can2=$(do_facet $SINGLEMDS \
8585                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8586                awk '/ldlm_cancel/ {print $2}')
8587         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8588                awk '/ldlm_bl_callback/ {print $2}')
8589         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
8590         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
8591         lru_resize_enable mdc
8592         lru_resize_enable osc
8593 }
8594 run_test 120f "Early Lock Cancel: rename test"
8595
8596 test_120g() {
8597         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8598         $LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_cancel ||
8599                 { skip "no early lock cancel on server"; return 0; }
8600         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8601         lru_resize_disable mdc
8602         lru_resize_disable osc
8603         count=10000
8604         echo create $count files
8605         test_mkdir $DIR/$tdir
8606         cancel_lru_locks mdc
8607         cancel_lru_locks osc
8608         t0=$(date +%s)
8609
8610         can0=$(do_facet $SINGLEMDS \
8611                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8612                awk '/ldlm_cancel/ {print $2}')
8613         blk0=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8614                awk '/ldlm_bl_callback/ {print $2}')
8615         createmany -o $DIR/$tdir/f $count
8616         sync
8617         can1=$(do_facet $SINGLEMDS \
8618                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8619                awk '/ldlm_cancel/ {print $2}')
8620         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8621                awk '/ldlm_bl_callback/ {print $2}')
8622         t1=$(date +%s)
8623         echo total: $((can1-can0)) cancels, $((blk1-blk0)) blockings
8624         echo rm $count files
8625         rm -r $DIR/$tdir
8626         sync
8627         can2=$(do_facet $SINGLEMDS \
8628                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8629                awk '/ldlm_cancel/ {print $2}')
8630         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8631                awk '/ldlm_bl_callback/ {print $2}')
8632         t2=$(date +%s)
8633         echo total: $count removes in $((t2-t1))
8634         echo total: $((can2-can1)) cancels, $((blk2-blk1)) blockings
8635         sleep 2
8636         # wait for commitment of removal
8637         lru_resize_enable mdc
8638         lru_resize_enable osc
8639 }
8640 run_test 120g "Early Lock Cancel: performance test"
8641
8642 test_121() { #bug #10589
8643         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8644         rm -rf $DIR/$tfile
8645         writes=$(LANG=C dd if=/dev/zero of=$DIR/$tfile count=1 2>&1 | awk -F '+' '/out$/ {print $1}')
8646 #define OBD_FAIL_LDLM_CANCEL_RACE        0x310
8647         lctl set_param fail_loc=0x310
8648         cancel_lru_locks osc > /dev/null
8649         reads=$(LANG=C dd if=$DIR/$tfile of=/dev/null 2>&1 | awk -F '+' '/in$/ {print $1}')
8650         lctl set_param fail_loc=0
8651         [[ $reads -eq $writes ]] ||
8652                 error "read $reads blocks, must be $writes blocks"
8653 }
8654 run_test 121 "read cancel race ========="
8655
8656 test_123a() { # was test 123, statahead(bug 11401)
8657         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8658         SLOWOK=0
8659         if ! grep -q "processor.*: 1" /proc/cpuinfo; then
8660                 log "testing UP system. Performance may be lower than expected."
8661                 SLOWOK=1
8662         fi
8663
8664         rm -rf $DIR/$tdir
8665         test_mkdir $DIR/$tdir
8666         NUMFREE=$(df -i -P $DIR | tail -n 1 | awk '{ print $4 }')
8667         [[ $NUMFREE -gt 100000 ]] && NUMFREE=100000 || NUMFREE=$((NUMFREE-1000))
8668         MULT=10
8669         for ((i=100, j=0; i<=$NUMFREE; j=$i, i=$((i * MULT)) )); do
8670                 createmany -o $DIR/$tdir/$tfile $j $((i - j))
8671
8672                 max=`lctl get_param -n llite.*.statahead_max | head -n 1`
8673                 lctl set_param -n llite.*.statahead_max 0
8674                 lctl get_param llite.*.statahead_max
8675                 cancel_lru_locks mdc
8676                 cancel_lru_locks osc
8677                 stime=`date +%s`
8678                 time ls -l $DIR/$tdir | wc -l
8679                 etime=`date +%s`
8680                 delta=$((etime - stime))
8681                 log "ls $i files without statahead: $delta sec"
8682                 lctl set_param llite.*.statahead_max=$max
8683
8684                 swrong=`lctl get_param -n llite.*.statahead_stats | grep "statahead wrong:" | awk '{print $3}'`
8685                 lctl get_param -n llite.*.statahead_max | grep '[0-9]'
8686                 cancel_lru_locks mdc
8687                 cancel_lru_locks osc
8688                 stime=`date +%s`
8689                 time ls -l $DIR/$tdir | wc -l
8690                 etime=`date +%s`
8691                 delta_sa=$((etime - stime))
8692                 log "ls $i files with statahead: $delta_sa sec"
8693                 lctl get_param -n llite.*.statahead_stats
8694                 ewrong=`lctl get_param -n llite.*.statahead_stats | grep "statahead wrong:" | awk '{print $3}'`
8695
8696                 [[ $swrong -lt $ewrong ]] &&
8697                         log "statahead was stopped, maybe too many locks held!"
8698                 [[ $delta -eq 0 || $delta_sa -eq 0 ]] && continue
8699
8700                 if [ $((delta_sa * 100)) -gt $((delta * 105)) -a $delta_sa -gt $((delta + 2)) ]; then
8701                     max=`lctl get_param -n llite.*.statahead_max | head -n 1`
8702                     lctl set_param -n llite.*.statahead_max 0
8703                     lctl get_param llite.*.statahead_max
8704                     cancel_lru_locks mdc
8705                     cancel_lru_locks osc
8706                     stime=`date +%s`
8707                     time ls -l $DIR/$tdir | wc -l
8708                     etime=`date +%s`
8709                     delta=$((etime - stime))
8710                     log "ls $i files again without statahead: $delta sec"
8711                     lctl set_param llite.*.statahead_max=$max
8712                     if [ $((delta_sa * 100)) -gt $((delta * 105)) -a $delta_sa -gt $((delta + 2)) ]; then
8713                         if [  $SLOWOK -eq 0 ]; then
8714                                 error "ls $i files is slower with statahead!"
8715                         else
8716                                 log "ls $i files is slower with statahead!"
8717                         fi
8718                         break
8719                     fi
8720                 fi
8721
8722                 [ $delta -gt 20 ] && break
8723                 [ $delta -gt 8 ] && MULT=$((50 / delta))
8724                 [ "$SLOW" = "no" -a $delta -gt 5 ] && break
8725         done
8726         log "ls done"
8727
8728         stime=`date +%s`
8729         rm -r $DIR/$tdir
8730         sync
8731         etime=`date +%s`
8732         delta=$((etime - stime))
8733         log "rm -r $DIR/$tdir/: $delta seconds"
8734         log "rm done"
8735         lctl get_param -n llite.*.statahead_stats
8736 }
8737 run_test 123a "verify statahead work"
8738
8739 test_123b () { # statahead(bug 15027)
8740         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8741         test_mkdir $DIR/$tdir
8742         createmany -o $DIR/$tdir/$tfile-%d 1000
8743
8744         cancel_lru_locks mdc
8745         cancel_lru_locks osc
8746
8747 #define OBD_FAIL_MDC_GETATTR_ENQUEUE     0x803
8748         lctl set_param fail_loc=0x80000803
8749         ls -lR $DIR/$tdir > /dev/null
8750         log "ls done"
8751         lctl set_param fail_loc=0x0
8752         lctl get_param -n llite.*.statahead_stats
8753         rm -r $DIR/$tdir
8754         sync
8755
8756 }
8757 run_test 123b "not panic with network error in statahead enqueue (bug 15027)"
8758
8759 test_124a() {
8760         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8761         $LCTL get_param -n mdc.*.connect_flags | grep -q lru_resize ||
8762                 { skip "no lru resize on server"; return 0; }
8763         local NR=2000
8764         test_mkdir $DIR/$tdir
8765
8766         log "create $NR files at $DIR/$tdir"
8767         createmany -o $DIR/$tdir/f $NR ||
8768                 error "failed to create $NR files in $DIR/$tdir"
8769
8770         cancel_lru_locks mdc
8771         ls -l $DIR/$tdir > /dev/null
8772
8773         local NSDIR=""
8774         local LRU_SIZE=0
8775         for VALUE in $($LCTL get_param ldlm.namespaces.*mdc-*.lru_size); do
8776                 local PARAM=$(echo ${VALUE[0]} | cut -d "=" -f1)
8777                 LRU_SIZE=$($LCTL get_param -n $PARAM)
8778                 if [[ $LRU_SIZE -gt $(default_lru_size) ]]; then
8779                         NSDIR=$(echo $PARAM | cut -d "." -f1-3)
8780                         log "NSDIR=$NSDIR"
8781                         log "NS=$(basename $NSDIR)"
8782                         break
8783                 fi
8784         done
8785
8786         if [[ -z "$NSDIR" || $LRU_SIZE -lt $(default_lru_size) ]]; then
8787                 skip "Not enough cached locks created!"
8788                 return 0
8789         fi
8790         log "LRU=$LRU_SIZE"
8791
8792         local SLEEP=30
8793
8794         # We know that lru resize allows one client to hold $LIMIT locks
8795         # for 10h. After that locks begin to be killed by client.
8796         local MAX_HRS=10
8797         local LIMIT=$($LCTL get_param -n $NSDIR.pool.limit)
8798         log "LIMIT=$LIMIT"
8799         if [ $LIMIT -lt $LRU_SIZE ]; then
8800             skip "Limit is too small $LIMIT"
8801             return 0
8802         fi
8803
8804         # Make LVF so higher that sleeping for $SLEEP is enough to _start_
8805         # killing locks. Some time was spent for creating locks. This means
8806         # that up to the moment of sleep finish we must have killed some of
8807         # them (10-100 locks). This depends on how fast ther were created.
8808         # Many of them were touched in almost the same moment and thus will
8809         # be killed in groups.
8810         local LVF=$(($MAX_HRS * 60 * 60 / $SLEEP * $LIMIT / $LRU_SIZE))
8811
8812         # Use $LRU_SIZE_B here to take into account real number of locks
8813         # created in the case of CMD, LRU_SIZE_B != $NR in most of cases
8814         local LRU_SIZE_B=$LRU_SIZE
8815         log "LVF=$LVF"
8816         local OLD_LVF=$($LCTL get_param -n $NSDIR.pool.lock_volume_factor)
8817         log "OLD_LVF=$OLD_LVF"
8818         $LCTL set_param -n $NSDIR.pool.lock_volume_factor $LVF
8819
8820         # Let's make sure that we really have some margin. Client checks
8821         # cached locks every 10 sec.
8822         SLEEP=$((SLEEP+20))
8823         log "Sleep ${SLEEP} sec"
8824         local SEC=0
8825         while ((SEC<$SLEEP)); do
8826                 echo -n "..."
8827                 sleep 5
8828                 SEC=$((SEC+5))
8829                 LRU_SIZE=$($LCTL get_param -n $NSDIR/lru_size)
8830                 echo -n "$LRU_SIZE"
8831         done
8832         echo ""
8833         $LCTL set_param -n $NSDIR.pool.lock_volume_factor $OLD_LVF
8834         local LRU_SIZE_A=$($LCTL get_param -n $NSDIR.lru_size)
8835
8836         [[ $LRU_SIZE_B -gt $LRU_SIZE_A ]] || {
8837                 error "No locks dropped in ${SLEEP}s. LRU size: $LRU_SIZE_A"
8838                 unlinkmany $DIR/$tdir/f $NR
8839                 return
8840         }
8841
8842         log "Dropped "$((LRU_SIZE_B-LRU_SIZE_A))" locks in ${SLEEP}s"
8843         log "unlink $NR files at $DIR/$tdir"
8844         unlinkmany $DIR/$tdir/f $NR
8845 }
8846 run_test 124a "lru resize ======================================="
8847
8848 get_max_pool_limit()
8849 {
8850         local limit=$($LCTL get_param \
8851                       -n ldlm.namespaces.*-MDT0000-mdc-*.pool.limit)
8852         local max=0
8853         for l in $limit; do
8854                 if [[ $l -gt $max ]]; then
8855                         max=$l
8856                 fi
8857         done
8858         echo $max
8859 }
8860
8861 test_124b() {
8862         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8863         $LCTL get_param -n mdc.*.connect_flags | grep -q lru_resize ||
8864                 { skip "no lru resize on server"; return 0; }
8865
8866         LIMIT=$(get_max_pool_limit)
8867
8868         NR=$(($(default_lru_size)*20))
8869         if [[ $NR -gt $LIMIT ]]; then
8870                 log "Limit lock number by $LIMIT locks"
8871                 NR=$LIMIT
8872         fi
8873
8874         IFree=$(mdsrate_inodes_available)
8875         if [ $IFree -lt $NR ]; then
8876                 log "Limit lock number by $IFree inodes"
8877                 NR=$IFree
8878         fi
8879
8880         lru_resize_disable mdc
8881         test_mkdir -p $DIR/$tdir/disable_lru_resize
8882
8883         createmany -o $DIR/$tdir/disable_lru_resize/f $NR
8884         log "doing ls -la $DIR/$tdir/disable_lru_resize 3 times"
8885         cancel_lru_locks mdc
8886         stime=`date +%s`
8887         PID=""
8888         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
8889         PID="$PID $!"
8890         sleep 2
8891         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
8892         PID="$PID $!"
8893         sleep 2
8894         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
8895         PID="$PID $!"
8896         wait $PID
8897         etime=`date +%s`
8898         nolruresize_delta=$((etime-stime))
8899         log "ls -la time: $nolruresize_delta seconds"
8900         log "lru_size = $(lctl get_param -n ldlm.namespaces.*mdc*.lru_size)"
8901         unlinkmany $DIR/$tdir/disable_lru_resize/f $NR
8902
8903         lru_resize_enable mdc
8904         test_mkdir -p $DIR/$tdir/enable_lru_resize
8905
8906         createmany -o $DIR/$tdir/enable_lru_resize/f $NR
8907         log "doing ls -la $DIR/$tdir/enable_lru_resize 3 times"
8908         cancel_lru_locks mdc
8909         stime=`date +%s`
8910         PID=""
8911         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
8912         PID="$PID $!"
8913         sleep 2
8914         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
8915         PID="$PID $!"
8916         sleep 2
8917         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
8918         PID="$PID $!"
8919         wait $PID
8920         etime=`date +%s`
8921         lruresize_delta=$((etime-stime))
8922         log "ls -la time: $lruresize_delta seconds"
8923         log "lru_size = $(lctl get_param -n ldlm.namespaces.*mdc*.lru_size)"
8924
8925         if [ $lruresize_delta -gt $nolruresize_delta ]; then
8926                 log "ls -la is $(((lruresize_delta - $nolruresize_delta) * 100 / $nolruresize_delta))% slower with lru resize enabled"
8927         elif [ $nolruresize_delta -gt $lruresize_delta ]; then
8928                 log "ls -la is $(((nolruresize_delta - $lruresize_delta) * 100 / $nolruresize_delta))% faster with lru resize enabled"
8929         else
8930                 log "lru resize performs the same with no lru resize"
8931         fi
8932         unlinkmany $DIR/$tdir/enable_lru_resize/f $NR
8933 }
8934 run_test 124b "lru resize (performance test) ======================="
8935
8936 test_124c() {
8937         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8938         $LCTL get_param -n mdc.*.connect_flags | grep -q lru_resize ||
8939                 { skip "no lru resize on server"; return 0; }
8940
8941         # cache ununsed locks on client
8942         local nr=100
8943         cancel_lru_locks mdc
8944         test_mkdir $DIR/$tdir
8945         createmany -o $DIR/$tdir/f $nr ||
8946                 error "failed to create $nr files in $DIR/$tdir"
8947         ls -l $DIR/$tdir > /dev/null
8948
8949         local nsdir="ldlm.namespaces.*-MDT0000-mdc-*"
8950         local unused=$($LCTL get_param -n $nsdir.lock_unused_count)
8951         local max_age=$($LCTL get_param -n $nsdir.lru_max_age)
8952         local recalc_p=$($LCTL get_param -n $nsdir.pool.recalc_period)
8953         echo "unused=$unused, max_age=$max_age, recalc_p=$recalc_p"
8954
8955         # set lru_max_age to 1 sec
8956         $LCTL set_param $nsdir.lru_max_age=1000 # milliseconds
8957         echo "sleep $((recalc_p * 2)) seconds..."
8958         sleep $((recalc_p * 2))
8959
8960         local remaining=$($LCTL get_param -n $nsdir.lock_unused_count)
8961         # restore lru_max_age
8962         $LCTL set_param -n $nsdir.lru_max_age $max_age
8963         [ $remaining -eq 0 ] || error "$remaining locks are not canceled"
8964         unlinkmany $DIR/$tdir/f $nr
8965 }
8966 run_test 124c "LRUR cancel very aged locks"
8967
8968 test_125() { # 13358
8969         $LCTL get_param -n llite.*.client_type | grep -q local ||
8970                 { skip "must run as local client"; return; }
8971         $LCTL get_param -n mdc.*-mdc-*.connect_flags | grep -q acl ||
8972                 { skip "must have acl enabled"; return; }
8973         [ -z "$(which setfacl)" ] && skip "must have setfacl tool" && return
8974         test_mkdir $DIR/$tdir
8975         $LFS setstripe -S 65536 -c -1 $DIR/$tdir || error "setstripe failed"
8976         setfacl -R -m u:bin:rwx $DIR/$tdir || error "setfacl $DIR/$tdir failed"
8977         ls -ld $DIR/$tdir || error "cannot access $DIR/$tdir"
8978 }
8979 run_test 125 "don't return EPROTO when a dir has a non-default striping and ACLs"
8980
8981 test_126() { # bug 12829/13455
8982         $LCTL get_param -n llite.*.client_type | grep -q local ||
8983                 { skip "must run as local client"; return; }
8984         [ "$UID" != 0 ] && skip_env "$TESTNAME (must run as root)" && return
8985         $GSS && skip "must run as gss disabled" && return
8986
8987         $RUNAS -u 0 -g 1 touch $DIR/$tfile || error "touch failed"
8988         gid=`ls -n $DIR/$tfile | awk '{print $4}'`
8989         rm -f $DIR/$tfile
8990         [ $gid -eq "1" ] || error "gid is set to" $gid "instead of 1"
8991 }
8992 run_test 126 "check that the fsgid provided by the client is taken into account"
8993
8994 test_127a() { # bug 15521
8995         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8996         $SETSTRIPE -i 0 -c 1 $DIR/$tfile || error "setstripe failed"
8997         $LCTL set_param osc.*.stats=0
8998         FSIZE=$((2048 * 1024))
8999         dd if=/dev/zero of=$DIR/$tfile bs=$FSIZE count=1
9000         cancel_lru_locks osc
9001         dd if=$DIR/$tfile of=/dev/null bs=$FSIZE
9002
9003         $LCTL get_param osc.*0000-osc-*.stats | grep samples > $DIR/${tfile}.tmp
9004         while read NAME COUNT SAMP UNIT MIN MAX SUM SUMSQ; do
9005                 echo "got $COUNT $NAME"
9006                 [ ! $MIN ] && error "Missing min value for $NAME proc entry"
9007                 eval $NAME=$COUNT || error "Wrong proc format"
9008
9009                 case $NAME in
9010                         read_bytes|write_bytes)
9011                         [ $MIN -lt 4096 ] && error "min is too small: $MIN"
9012                         [ $MIN -gt $FSIZE ] && error "min is too big: $MIN"
9013                         [ $MAX -lt 4096 ] && error "max is too small: $MAX"
9014                         [ $MAX -gt $FSIZE ] && error "max is too big: $MAX"
9015                         [ $SUM -ne $FSIZE ] && error "sum is wrong: $SUM"
9016                         [ $SUMSQ -lt $(((FSIZE /4096) * (4096 * 4096))) ] &&
9017                                 error "sumsquare is too small: $SUMSQ"
9018                         [ $SUMSQ -gt $((FSIZE * FSIZE)) ] &&
9019                                 error "sumsquare is too big: $SUMSQ"
9020                         ;;
9021                         *) ;;
9022                 esac
9023         done < $DIR/${tfile}.tmp
9024
9025         #check that we actually got some stats
9026         [ "$read_bytes" ] || error "Missing read_bytes stats"
9027         [ "$write_bytes" ] || error "Missing write_bytes stats"
9028         [ "$read_bytes" != 0 ] || error "no read done"
9029         [ "$write_bytes" != 0 ] || error "no write done"
9030 }
9031 run_test 127a "verify the client stats are sane"
9032
9033 test_127b() { # bug LU-333
9034         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9035         $LCTL set_param llite.*.stats=0
9036         FSIZE=65536 # sized fixed to match PAGE_SIZE for most clients
9037         # perform 2 reads and writes so MAX is different from SUM.
9038         dd if=/dev/zero of=$DIR/$tfile bs=$FSIZE count=1
9039         dd if=/dev/zero of=$DIR/$tfile bs=$FSIZE count=1
9040         cancel_lru_locks osc
9041         dd if=$DIR/$tfile of=/dev/null bs=$FSIZE count=1
9042         dd if=$DIR/$tfile of=/dev/null bs=$FSIZE count=1
9043
9044         $LCTL get_param llite.*.stats | grep samples > $TMP/${tfile}.tmp
9045         while read NAME COUNT SAMP UNIT MIN MAX SUM SUMSQ; do
9046                 echo "got $COUNT $NAME"
9047                 eval $NAME=$COUNT || error "Wrong proc format"
9048
9049         case $NAME in
9050                 read_bytes)
9051                         [ $COUNT -ne 2 ] && error "count is not 2: $COUNT"
9052                         [ $MIN -ne $FSIZE ] && error "min is not $FSIZE: $MIN"
9053                         [ $MAX -ne $FSIZE ] && error "max is incorrect: $MAX"
9054                         [ $SUM -ne $((FSIZE * 2)) ] && error "sum is wrong: $SUM"
9055                         ;;
9056                 write_bytes)
9057                         [ $COUNT -ne 2 ] && error "count is not 2: $COUNT"
9058                         [ $MIN -ne $FSIZE ] && error "min is not $FSIZE: $MIN"
9059                         [ $MAX -ne $FSIZE ] && error "max is incorrect: $MAX"
9060                         [ $SUM -ne $((FSIZE * 2)) ] && error "sum is wrong: $SUM"
9061                         ;;
9062                         *) ;;
9063                 esac
9064         done < $TMP/${tfile}.tmp
9065
9066         #check that we actually got some stats
9067         [ "$read_bytes" ] || error "Missing read_bytes stats"
9068         [ "$write_bytes" ] || error "Missing write_bytes stats"
9069         [ "$read_bytes" != 0 ] || error "no read done"
9070         [ "$write_bytes" != 0 ] || error "no write done"
9071
9072         rm -f $TMP/${tfile}.tmp
9073 }
9074 run_test 127b "verify the llite client stats are sane"
9075
9076 test_128() { # bug 15212
9077         touch $DIR/$tfile
9078         $LFS 2>&1 <<-EOF | tee $TMP/$tfile.log
9079                 find $DIR/$tfile
9080                 find $DIR/$tfile
9081         EOF
9082
9083         result=$(grep error $TMP/$tfile.log)
9084         rm -f $DIR/$tfile $TMP/$tfile.log
9085         [ -z "$result" ] ||
9086                 error "consecutive find's under interactive lfs failed"
9087 }
9088 run_test 128 "interactive lfs for 2 consecutive find's"
9089
9090 set_dir_limits () {
9091         local mntdev
9092         local canondev
9093         local node
9094
9095         local ldproc=/proc/fs/ldiskfs
9096         local facets=$(get_facets MDS)
9097
9098         for facet in ${facets//,/ }; do
9099                 canondev=$(ldiskfs_canon \
9100                            *.$(convert_facet2label $facet).mntdev $facet)
9101                 do_facet $facet "test -e $ldproc/$canondev/max_dir_size" ||
9102                         ldproc=/sys/fs/ldiskfs
9103                 do_facet $facet "echo $1 >$ldproc/$canondev/max_dir_size"
9104                 do_facet $facet "echo $2 >$ldproc/$canondev/warning_dir_size"
9105         done
9106 }
9107
9108 check_mds_dmesg() {
9109         local facets=$(get_facets MDS)
9110         for facet in ${facets//,/ }; do
9111                 do_facet $facet "dmesg | tail -3 | grep -q $1" && return 0
9112         done
9113         return 1
9114 }
9115
9116 test_129() {
9117         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.5.56) ]] ||
9118                 { skip "Need MDS version with at least 2.5.56"; return 0; }
9119
9120         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9121         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
9122                 skip "ldiskfs only test"
9123                 return
9124         fi
9125         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9126         local ENOSPC=28
9127         local EFBIG=27
9128         local has_warning=false
9129
9130         rm -rf $DIR/$tdir
9131         mkdir -p $DIR/$tdir
9132
9133         # block size of mds1
9134         local maxsize=$(($($LCTL get_param -n mdc.*MDT0000*.blocksize) * 5))
9135         set_dir_limits $maxsize $maxsize
9136         local dirsize=$(stat -c%s "$DIR/$tdir")
9137         local nfiles=0
9138         while [[ $dirsize -le $maxsize ]]; do
9139                 $MULTIOP $DIR/$tdir/file_base_$nfiles Oc
9140                 rc=$?
9141                 if ! $has_warning; then
9142                         check_mds_dmesg '"is approaching"' && has_warning=true
9143                 fi
9144                 # check two errors:
9145                 # ENOSPC for new ext4 max_dir_size (kernel commit df981d03ee)
9146                 # EFBIG for previous versions included in ldiskfs series
9147                 if [ $rc -eq $EFBIG -o $rc -eq $ENOSPC ]; then
9148                         set_dir_limits 0 0
9149                         echo "return code $rc received as expected"
9150
9151                         createmany -o $DIR/$tdir/file_extra_$nfiles. 5 ||
9152                                 error_exit "create failed w/o dir size limit"
9153
9154                         check_mds_dmesg '"has reached"' ||
9155                                 error_exit "reached message should be output"
9156
9157                         [ $has_warning -eq 0 ] &&
9158                                 error_exit "warning message should be output"
9159
9160                         dirsize=$(stat -c%s "$DIR/$tdir")
9161
9162                         [[ $dirsize -ge $maxsize ]] && return 0
9163                         error_exit "current dir size $dirsize, " \
9164                                    "previous limit $maxsize"
9165                 elif [ $rc -ne 0 ]; then
9166                         set_dir_limits 0 0
9167                         error_exit "return $rc received instead of expected " \
9168                                    "$EFBIG or $ENOSPC, files in dir $dirsize"
9169                 fi
9170                 nfiles=$((nfiles + 1))
9171                 dirsize=$(stat -c%s "$DIR/$tdir")
9172         done
9173
9174         set_dir_limits 0 0
9175         error "exceeded dir size limit $maxsize($MDSCOUNT) : $dirsize bytes"
9176 }
9177 run_test 129 "test directory size limit ========================"
9178
9179 OLDIFS="$IFS"
9180 cleanup_130() {
9181         trap 0
9182         IFS="$OLDIFS"
9183 }
9184
9185 test_130a() {
9186         local filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
9187         [ -n "$filefrag_op" ] && skip_env "filefrag does not support FIEMAP" &&
9188                 return
9189
9190         trap cleanup_130 EXIT RETURN
9191
9192         local fm_file=$DIR/$tfile
9193         $SETSTRIPE -S 65536 -c 1 $fm_file || error "setstripe on $fm_file"
9194         dd if=/dev/zero of=$fm_file bs=65536 count=1 ||
9195                 error "dd failed for $fm_file"
9196
9197         # LU-1795: test filefrag/FIEMAP once, even if unsupported
9198         filefrag -ves $fm_file
9199         RC=$?
9200         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
9201                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
9202         [ $RC != 0 ] && error "filefrag $fm_file failed"
9203
9204         filefrag_op=$(filefrag -ve $fm_file |
9205                         sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
9206         lun=$($GETSTRIPE -i $fm_file)
9207
9208         start_blk=`echo $filefrag_op | cut -d: -f2 | cut -d. -f1`
9209         IFS=$'\n'
9210         tot_len=0
9211         for line in $filefrag_op
9212         do
9213                 frag_lun=`echo $line | cut -d: -f5`
9214                 ext_len=`echo $line | cut -d: -f4`
9215                 if (( $frag_lun != $lun )); then
9216                         cleanup_130
9217                         error "FIEMAP on 1-stripe file($fm_file) failed"
9218                         return
9219                 fi
9220                 (( tot_len += ext_len ))
9221         done
9222
9223         if (( lun != frag_lun || start_blk != 0 || tot_len != 64 )); then
9224                 cleanup_130
9225                 error "FIEMAP on 1-stripe file($fm_file) failed;"
9226                 return
9227         fi
9228
9229         cleanup_130
9230
9231         echo "FIEMAP on single striped file succeeded"
9232 }
9233 run_test 130a "FIEMAP (1-stripe file)"
9234
9235 test_130b() {
9236         [ "$OSTCOUNT" -lt "2" ] && skip_env "needs >= 2 OSTs" && return
9237
9238         local filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
9239         [ -n "$filefrag_op" ] && skip_env "filefrag does not support FIEMAP" &&
9240                 return
9241
9242         trap cleanup_130 EXIT RETURN
9243
9244         local fm_file=$DIR/$tfile
9245         $SETSTRIPE -S 65536 -c $OSTCOUNT $fm_file ||
9246                         error "setstripe on $fm_file"
9247         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
9248                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
9249
9250         dd if=/dev/zero of=$fm_file bs=1M count=$OSTCOUNT ||
9251                 error "dd failed on $fm_file"
9252
9253         filefrag -ves $fm_file || error "filefrag $fm_file failed"
9254         filefrag_op=$(filefrag -ve $fm_file |
9255                         sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
9256
9257         last_lun=$(echo $filefrag_op | cut -d: -f5 |
9258                 sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
9259
9260         IFS=$'\n'
9261         tot_len=0
9262         num_luns=1
9263         for line in $filefrag_op
9264         do
9265                 frag_lun=$(echo $line | cut -d: -f5 |
9266                         sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
9267                 ext_len=$(echo $line | cut -d: -f4)
9268                 if (( $frag_lun != $last_lun )); then
9269                         if (( tot_len != 1024 )); then
9270                                 cleanup_130
9271                                 error "FIEMAP on $fm_file failed; returned " \
9272                                 "len $tot_len for OST $last_lun instead of 1024"
9273                                 return
9274                         else
9275                                 (( num_luns += 1 ))
9276                                 tot_len=0
9277                         fi
9278                 fi
9279                 (( tot_len += ext_len ))
9280                 last_lun=$frag_lun
9281         done
9282         if (( num_luns != $OSTCOUNT || tot_len != 1024 )); then
9283                 cleanup_130
9284                 error "FIEMAP on $fm_file failed; returned wrong number of " \
9285                         "luns or wrong len for OST $last_lun"
9286                 return
9287         fi
9288
9289         cleanup_130
9290
9291         echo "FIEMAP on $OSTCOUNT-stripe file succeeded"
9292 }
9293 run_test 130b "FIEMAP ($OSTCOUNT-stripe file)"
9294
9295 test_130c() {
9296         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
9297
9298         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
9299         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP" &&
9300                 return
9301
9302         trap cleanup_130 EXIT RETURN
9303
9304         local fm_file=$DIR/$tfile
9305         $SETSTRIPE -S 65536 -c 2 $fm_file || error "setstripe on $fm_file"
9306         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
9307                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
9308
9309         dd if=/dev/zero of=$fm_file seek=1 bs=1M count=1 ||
9310                         error "dd failed on $fm_file"
9311
9312         filefrag -ves $fm_file || error "filefrag $fm_file failed"
9313         filefrag_op=$(filefrag -ve $fm_file |
9314                 sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
9315
9316         last_lun=$(echo $filefrag_op | cut -d: -f5 |
9317                 sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
9318
9319         IFS=$'\n'
9320         tot_len=0
9321         num_luns=1
9322         for line in $filefrag_op
9323         do
9324                 frag_lun=$(echo $line | cut -d: -f5 |
9325                         sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
9326                 ext_len=$(echo $line | cut -d: -f4)
9327                 if (( $frag_lun != $last_lun )); then
9328                         logical=`echo $line | cut -d: -f2 | cut -d. -f1`
9329                         if (( logical != 512 )); then
9330                                 cleanup_130
9331                                 error "FIEMAP on $fm_file failed; returned " \
9332                                 "logical start for lun $logical instead of 512"
9333                                 return
9334                         fi
9335                         if (( tot_len != 512 )); then
9336                                 cleanup_130
9337                                 error "FIEMAP on $fm_file failed; returned " \
9338                                 "len $tot_len for OST $last_lun instead of 1024"
9339                                 return
9340                         else
9341                                 (( num_luns += 1 ))
9342                                 tot_len=0
9343                         fi
9344                 fi
9345                 (( tot_len += ext_len ))
9346                 last_lun=$frag_lun
9347         done
9348         if (( num_luns != 2 || tot_len != 512 )); then
9349                 cleanup_130
9350                 error "FIEMAP on $fm_file failed; returned wrong number of " \
9351                         "luns or wrong len for OST $last_lun"
9352                 return
9353         fi
9354
9355         cleanup_130
9356
9357         echo "FIEMAP on 2-stripe file with hole succeeded"
9358 }
9359 run_test 130c "FIEMAP (2-stripe file with hole)"
9360
9361 test_130d() {
9362         [[ $OSTCOUNT -lt 3 ]] && skip_env "needs >= 3 OSTs" && return
9363
9364         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
9365         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP" &&
9366                 return
9367
9368         trap cleanup_130 EXIT RETURN
9369
9370         local fm_file=$DIR/$tfile
9371         $SETSTRIPE -S 65536 -c $OSTCOUNT $fm_file ||
9372                         error "setstripe on $fm_file"
9373         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
9374                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
9375
9376         local actual_stripe_count=$($GETSTRIPE -c $fm_file)
9377         dd if=/dev/zero of=$fm_file bs=1M count=$actual_stripe_count ||
9378                 error "dd failed on $fm_file"
9379
9380         filefrag -ves $fm_file || error "filefrag $fm_file failed"
9381         filefrag_op=$(filefrag -ve $fm_file |
9382                         sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
9383
9384         last_lun=$(echo $filefrag_op | cut -d: -f5 |
9385                 sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
9386
9387         IFS=$'\n'
9388         tot_len=0
9389         num_luns=1
9390         for line in $filefrag_op
9391         do
9392                 frag_lun=$(echo $line | cut -d: -f5 |
9393                         sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
9394                 ext_len=$(echo $line | cut -d: -f4)
9395                 if (( $frag_lun != $last_lun )); then
9396                         if (( tot_len != 1024 )); then
9397                                 cleanup_130
9398                                 error "FIEMAP on $fm_file failed; returned " \
9399                                 "len $tot_len for OST $last_lun instead of 1024"
9400                                 return
9401                         else
9402                                 (( num_luns += 1 ))
9403                                 tot_len=0
9404                         fi
9405                 fi
9406                 (( tot_len += ext_len ))
9407                 last_lun=$frag_lun
9408         done
9409         if (( num_luns != actual_stripe_count || tot_len != 1024 )); then
9410                 cleanup_130
9411                 error "FIEMAP on $fm_file failed; returned wrong number of " \
9412                         "luns or wrong len for OST $last_lun"
9413                 return
9414         fi
9415
9416         cleanup_130
9417
9418         echo "FIEMAP on N-stripe file succeeded"
9419 }
9420 run_test 130d "FIEMAP (N-stripe file)"
9421
9422 test_130e() {
9423         [[ $OSTCOUNT -lt 2 ]] && skip_env "needs >= 2 OSTs" && return
9424
9425         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
9426         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP" && return
9427
9428         trap cleanup_130 EXIT RETURN
9429
9430         local fm_file=$DIR/$tfile
9431         $SETSTRIPE -S 131072 -c 2 $fm_file || error "setstripe on $fm_file"
9432         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
9433                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
9434
9435         NUM_BLKS=512
9436         EXPECTED_LEN=$(( (NUM_BLKS / 2) * 64 ))
9437         for ((i = 0; i < $NUM_BLKS; i++))
9438         do
9439                 dd if=/dev/zero of=$fm_file count=1 bs=64k seek=$((2*$i)) conv=notrunc > /dev/null 2>&1
9440         done
9441
9442         filefrag -ves $fm_file || error "filefrag $fm_file failed"
9443         filefrag_op=$(filefrag -ve $fm_file |
9444                         sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
9445
9446         last_lun=$(echo $filefrag_op | cut -d: -f5 |
9447                 sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
9448
9449         IFS=$'\n'
9450         tot_len=0
9451         num_luns=1
9452         for line in $filefrag_op
9453         do
9454                 frag_lun=$(echo $line | cut -d: -f5 |
9455                         sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
9456                 ext_len=$(echo $line | cut -d: -f4)
9457                 if (( $frag_lun != $last_lun )); then
9458                         if (( tot_len != $EXPECTED_LEN )); then
9459                                 cleanup_130
9460                                 error "FIEMAP on $fm_file failed; returned " \
9461                                 "len $tot_len for OST $last_lun instead " \
9462                                 "of $EXPECTED_LEN"
9463                                 return
9464                         else
9465                                 (( num_luns += 1 ))
9466                                 tot_len=0
9467                         fi
9468                 fi
9469                 (( tot_len += ext_len ))
9470                 last_lun=$frag_lun
9471         done
9472         if (( num_luns != 2 || tot_len != $EXPECTED_LEN )); then
9473                 cleanup_130
9474                 error "FIEMAP on $fm_file failed; returned wrong number " \
9475                         "of luns or wrong len for OST $last_lun"
9476                 return
9477         fi
9478
9479         cleanup_130
9480
9481         echo "FIEMAP with continuation calls succeeded"
9482 }
9483 run_test 130e "FIEMAP (test continuation FIEMAP calls)"
9484
9485 # Test for writev/readv
9486 test_131a() {
9487         rwv -f $DIR/$tfile -w -n 3 524288 1048576 1572864 ||
9488                 error "writev test failed"
9489         rwv -f $DIR/$tfile -r -v -n 2 1572864 1048576 ||
9490                 error "readv failed"
9491         rm -f $DIR/$tfile
9492 }
9493 run_test 131a "test iov's crossing stripe boundary for writev/readv"
9494
9495 test_131b() {
9496         local fsize=$((524288 + 1048576 + 1572864))
9497         rwv -f $DIR/$tfile -w -a -n 3 524288 1048576 1572864 &&
9498                 $CHECKSTAT -t file $DIR/$tfile -s $fsize ||
9499                         error "append writev test failed"
9500
9501         ((fsize += 1572864 + 1048576))
9502         rwv -f $DIR/$tfile -w -a -n 2 1572864 1048576 &&
9503                 $CHECKSTAT -t file $DIR/$tfile -s $fsize ||
9504                         error "append writev test failed"
9505         rm -f $DIR/$tfile
9506 }
9507 run_test 131b "test append writev"
9508
9509 test_131c() {
9510         rwv -f $DIR/$tfile -w -d -n 1 1048576 || return 0
9511         error "NOT PASS"
9512 }
9513 run_test 131c "test read/write on file w/o objects"
9514
9515 test_131d() {
9516         rwv -f $DIR/$tfile -w -n 1 1572864
9517         NOB=`rwv -f $DIR/$tfile -r -n 3 524288 524288 1048576 | awk '/error/ {print $6}'`
9518         if [ "$NOB" != 1572864 ]; then
9519                 error "Short read filed: read $NOB bytes instead of 1572864"
9520         fi
9521         rm -f $DIR/$tfile
9522 }
9523 run_test 131d "test short read"
9524
9525 test_131e() {
9526         rwv -f $DIR/$tfile -w -s 1048576 -n 1 1048576
9527         rwv -f $DIR/$tfile -r -z -s 0 -n 1 524288 || \
9528         error "read hitting hole failed"
9529         rm -f $DIR/$tfile
9530 }
9531 run_test 131e "test read hitting hole"
9532
9533 check_stats() {
9534         local facet=$1
9535         local op=$2
9536         local want=${3:-0}
9537         local res
9538
9539         case $facet in
9540         mds*) res=$(do_facet $facet \
9541                    $LCTL get_param mdt.$FSNAME-MDT0000.md_stats | grep "$op")
9542                  ;;
9543         ost*) res=$(do_facet $facet \
9544                    $LCTL get_param obdfilter.$FSNAME-OST0000.stats | grep "$op")
9545                  ;;
9546         *) error "Wrong facet '$facet'" ;;
9547         esac
9548         echo $res
9549         [ "$res" ] || error "The counter for $op on $facet was not incremented"
9550         # if the argument $3 is zero, it means any stat increment is ok.
9551         if [[ $want -gt 0 ]]; then
9552                 local count=$(echo $res | awk '{ print $2 }')
9553                 [[ $count -ne $want ]] &&
9554                         error "The $op counter on $facet is $count, not $want"
9555         fi
9556 }
9557
9558 test_133a() {
9559         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9560         remote_ost_nodsh && skip "remote OST with nodsh" && return
9561         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9562
9563         do_facet $SINGLEMDS $LCTL list_param mdt.*.rename_stats ||
9564                 { skip "MDS doesn't support rename stats"; return; }
9565         local testdir=$DIR/${tdir}/stats_testdir
9566         mkdir -p $DIR/${tdir}
9567
9568         # clear stats.
9569         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
9570         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
9571
9572         # verify mdt stats first.
9573         mkdir ${testdir} || error "mkdir failed"
9574         check_stats $SINGLEMDS "mkdir" 1
9575         touch ${testdir}/${tfile} || error "touch failed"
9576         check_stats $SINGLEMDS "open" 1
9577         check_stats $SINGLEMDS "close" 1
9578         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.8.54) ] && {
9579                 mknod ${testdir}/${tfile}-pipe p || error "mknod failed"
9580                 check_stats $SINGLEMDS "mknod" 2
9581         }
9582         rm -f ${testdir}/${tfile}-pipe || error "pipe remove failed"
9583         check_stats $SINGLEMDS "unlink" 1
9584         rm -f ${testdir}/${tfile} || error "file remove failed"
9585         check_stats $SINGLEMDS "unlink" 2
9586
9587         # remove working dir and check mdt stats again.
9588         rmdir ${testdir} || error "rmdir failed"
9589         check_stats $SINGLEMDS "rmdir" 1
9590
9591         local testdir1=$DIR/${tdir}/stats_testdir1
9592         mkdir -p ${testdir}
9593         mkdir -p ${testdir1}
9594         touch ${testdir1}/test1
9595         mv ${testdir1}/test1 ${testdir} || error "file crossdir rename"
9596         check_stats $SINGLEMDS "crossdir_rename" 1
9597
9598         mv ${testdir}/test1 ${testdir}/test0 || error "file samedir rename"
9599         check_stats $SINGLEMDS "samedir_rename" 1
9600
9601         rm -rf $DIR/${tdir}
9602 }
9603 run_test 133a "Verifying MDT stats ========================================"
9604
9605 test_133b() {
9606         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9607         remote_ost_nodsh && skip "remote OST with nodsh" && return
9608         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9609         local testdir=$DIR/${tdir}/stats_testdir
9610         mkdir -p ${testdir} || error "mkdir failed"
9611         touch ${testdir}/${tfile} || error "touch failed"
9612         cancel_lru_locks mdc
9613
9614         # clear stats.
9615         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
9616         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
9617
9618         # extra mdt stats verification.
9619         chmod 444 ${testdir}/${tfile} || error "chmod failed"
9620         check_stats $SINGLEMDS "setattr" 1
9621         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
9622         if [ $(lustre_version_code $SINGLEMDS) -ne $(version_code 2.2.0) ]
9623         then            # LU-1740
9624                 ls -l ${testdir}/${tfile} > /dev/null|| error "ls failed"
9625                 check_stats $SINGLEMDS "getattr" 1
9626         fi
9627         $LFS df || error "lfs failed"
9628         check_stats $SINGLEMDS "statfs" 1
9629
9630         rm -rf $DIR/${tdir}
9631 }
9632 run_test 133b "Verifying extra MDT stats =================================="
9633
9634 test_133c() {
9635         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9636         remote_ost_nodsh && skip "remote OST with nodsh" && return
9637         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9638         local testdir=$DIR/$tdir/stats_testdir
9639         test_mkdir -p $testdir
9640
9641         # verify obdfilter stats.
9642         $SETSTRIPE -c 1 -i 0 $testdir/$tfile
9643         sync
9644         cancel_lru_locks osc
9645         wait_delete_completed
9646
9647         # clear stats.
9648         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
9649         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
9650
9651         dd if=/dev/zero of=$testdir/$tfile conv=notrunc bs=512k count=1 ||
9652                 error "dd failed"
9653         sync
9654         cancel_lru_locks osc
9655         check_stats ost1 "write" 1
9656
9657         dd if=$testdir/$tfile of=/dev/null bs=1k count=1 || error "dd failed"
9658         check_stats ost1 "read" 1
9659
9660         > $testdir/$tfile || error "truncate failed"
9661         check_stats ost1 "punch" 1
9662
9663         rm -f $testdir/$tfile || error "file remove failed"
9664         wait_delete_completed
9665         check_stats ost1 "destroy" 1
9666
9667         rm -rf $DIR/$tdir
9668 }
9669 run_test 133c "Verifying OST stats ========================================"
9670
9671 order_2() {
9672         local value=$1
9673         local orig=$value
9674         local order=1
9675
9676         while [ $value -ge 2 ]; do
9677                 order=$((order*2))
9678                 value=$((value/2))
9679         done
9680
9681         if [ $orig -gt $order ]; then
9682                 order=$((order*2))
9683         fi
9684         echo $order
9685 }
9686
9687 size_in_KMGT() {
9688     local value=$1
9689     local size=('K' 'M' 'G' 'T');
9690     local i=0
9691     local size_string=$value
9692
9693     while [ $value -ge 1024 ]; do
9694         if [ $i -gt 3 ]; then
9695             #T is the biggest unit we get here, if that is bigger,
9696             #just return XXXT
9697             size_string=${value}T
9698             break
9699         fi
9700         value=$((value >> 10))
9701         if [ $value -lt 1024 ]; then
9702             size_string=${value}${size[$i]}
9703             break
9704         fi
9705         i=$((i + 1))
9706     done
9707
9708     echo $size_string
9709 }
9710
9711 get_rename_size() {
9712     local size=$1
9713     local context=${2:-.}
9714     local sample=$(do_facet $SINGLEMDS $LCTL get_param mdt.*.rename_stats |
9715                 grep -A1 $context |
9716                 awk '/ '${size}'/ {print $4}' | sed -e "s/,//g")
9717     echo $sample
9718 }
9719
9720 test_133d() {
9721         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9722         remote_ost_nodsh && skip "remote OST with nodsh" && return
9723         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9724         do_facet $SINGLEMDS $LCTL list_param mdt.*.rename_stats ||
9725         { skip "MDS doesn't support rename stats"; return; }
9726
9727         local testdir1=$DIR/${tdir}/stats_testdir1
9728         local testdir2=$DIR/${tdir}/stats_testdir2
9729
9730         do_facet $SINGLEMDS $LCTL set_param mdt.*.rename_stats=clear
9731
9732         mkdir -p ${testdir1} || error "mkdir failed"
9733         mkdir -p ${testdir2} || error "mkdir failed"
9734
9735         createmany -o $testdir1/test 512 || error "createmany failed"
9736
9737         # check samedir rename size
9738         mv ${testdir1}/test0 ${testdir1}/test_0
9739
9740         local testdir1_size=$(ls -l $DIR/${tdir} |
9741                 awk '/stats_testdir1/ {print $5}')
9742         local testdir2_size=$(ls -l $DIR/${tdir} |
9743                 awk '/stats_testdir2/ {print $5}')
9744
9745         testdir1_size=$(order_2 $testdir1_size)
9746         testdir2_size=$(order_2 $testdir2_size)
9747
9748         testdir1_size=$(size_in_KMGT $testdir1_size)
9749         testdir2_size=$(size_in_KMGT $testdir2_size)
9750
9751         echo "source rename dir size: ${testdir1_size}"
9752         echo "target rename dir size: ${testdir2_size}"
9753
9754         local cmd="do_facet $SINGLEMDS $LCTL get_param mdt.*.rename_stats"
9755         eval $cmd || error "$cmd failed"
9756         local samedir=$($cmd | grep 'same_dir')
9757         local same_sample=$(get_rename_size $testdir1_size)
9758         [ -z "$samedir" ] && error "samedir_rename_size count error"
9759         [[ $same_sample -eq 1 ]] ||
9760                 error "samedir_rename_size error $same_sample"
9761         echo "Check same dir rename stats success"
9762
9763         do_facet $SINGLEMDS $LCTL set_param mdt.*.rename_stats=clear
9764
9765         # check crossdir rename size
9766         mv ${testdir1}/test_0 ${testdir2}/test_0
9767
9768         testdir1_size=$(ls -l $DIR/${tdir} |
9769                 awk '/stats_testdir1/ {print $5}')
9770         testdir2_size=$(ls -l $DIR/${tdir} |
9771                 awk '/stats_testdir2/ {print $5}')
9772
9773         testdir1_size=$(order_2 $testdir1_size)
9774         testdir2_size=$(order_2 $testdir2_size)
9775
9776         testdir1_size=$(size_in_KMGT $testdir1_size)
9777         testdir2_size=$(size_in_KMGT $testdir2_size)
9778
9779         echo "source rename dir size: ${testdir1_size}"
9780         echo "target rename dir size: ${testdir2_size}"
9781
9782         eval $cmd || error "$cmd failed"
9783         local crossdir=$($cmd | grep 'crossdir')
9784         local src_sample=$(get_rename_size $testdir1_size crossdir_src)
9785         local tgt_sample=$(get_rename_size $testdir2_size crossdir_tgt)
9786         [ -z "$crossdir" ] && error "crossdir_rename_size count error"
9787         [[ $src_sample -eq 1 ]] ||
9788                 error "crossdir_rename_size error $src_sample"
9789         [[ $tgt_sample -eq 1 ]] ||
9790                 error "crossdir_rename_size error $tgt_sample"
9791         echo "Check cross dir rename stats success"
9792         rm -rf $DIR/${tdir}
9793 }
9794 run_test 133d "Verifying rename_stats ========================================"
9795
9796 test_133e() {
9797         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9798         remote_ost_nodsh && skip "remote OST with nodsh" && return
9799         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9800         local testdir=$DIR/${tdir}/stats_testdir
9801         local ctr f0 f1 bs=32768 count=42 sum
9802
9803         mkdir -p ${testdir} || error "mkdir failed"
9804
9805         $SETSTRIPE -c 1 -i 0 ${testdir}/${tfile}
9806
9807         for ctr in {write,read}_bytes; do
9808                 sync
9809                 cancel_lru_locks osc
9810
9811                 do_facet ost1 $LCTL set_param -n \
9812                         "obdfilter.*.exports.clear=clear"
9813
9814                 if [ $ctr = write_bytes ]; then
9815                         f0=/dev/zero
9816                         f1=${testdir}/${tfile}
9817                 else
9818                         f0=${testdir}/${tfile}
9819                         f1=/dev/null
9820                 fi
9821
9822                 dd if=$f0 of=$f1 conv=notrunc bs=$bs count=$count || \
9823                         error "dd failed"
9824                 sync
9825                 cancel_lru_locks osc
9826
9827                 sum=$(do_facet ost1 $LCTL get_param \
9828                         "obdfilter.*.exports.*.stats" |
9829                         awk -v ctr=$ctr 'BEGIN { sum = 0 }
9830                                 $1 == ctr { sum += $7 }
9831                                 END { printf("%0.0f", sum) }')
9832
9833                 if ((sum != bs * count)); then
9834                         error "Bad $ctr sum, expected $((bs * count)), got $sum"
9835                 fi
9836         done
9837
9838         rm -rf $DIR/${tdir}
9839 }
9840 run_test 133e "Verifying OST {read,write}_bytes nid stats ================="
9841
9842 proc_regexp="/{proc,sys}/{fs,sys,kernel/debug}/{lustre,lnet}/"
9843
9844 test_133f() {
9845         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9846         remote_ost_nodsh && skip "remote OST with nodsh" && return
9847         # First without trusting modes.
9848         local proc_dirs=$(eval \ls -d $proc_regexp 2>/dev/null)
9849         echo "proc_dirs='$proc_dirs'"
9850         [ -n "$proc_dirs" ] || error "no proc_dirs on $HOSTNAME"
9851         find $proc_dirs -exec cat '{}' \; &> /dev/null
9852
9853         # Second verifying readability.
9854         $LCTL get_param -R '*' &> /dev/null || error "proc file read failed"
9855
9856         # eventually, this can also be replaced with "lctl get_param -R",
9857         # but not until that option is always available on the server
9858         local facet
9859         for facet in mds1 ost1; do
9860                 local facet_proc_dirs=$(do_facet $facet \
9861                                         \\\ls -d $proc_regexp 2>/dev/null)
9862                 echo "${facet}_proc_dirs='$facet_proc_dirs'"
9863                 [ -z "$facet_proc_dirs" ] && error "no proc_dirs on $facet"
9864                 do_facet $facet find $facet_proc_dirs \
9865                         ! -name req_history \
9866                         -exec cat '{}' \\\; &> /dev/null
9867
9868                 do_facet $facet find $facet_proc_dirs \
9869                         ! -name req_history \
9870                         -type f \
9871                         -exec cat '{}' \\\; &> /dev/null ||
9872                                 error "proc file read failed"
9873         done
9874 }
9875 run_test 133f "Check for LBUGs/Oopses/unreadable files in /proc"
9876
9877 test_133g() {
9878         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9879         remote_ost_nodsh && skip "remote OST with nodsh" && return
9880         # Second verifying writability.
9881         local proc_dirs=$(eval \ls -d $proc_regexp 2>/dev/null)
9882         echo "proc_dirs='$proc_dirs'"
9883         [ -n "$proc_dirs" ] || error "no proc_dirs on $HOSTNAME"
9884         find $proc_dirs \
9885                 -type f \
9886                 -not -name force_lbug \
9887                 -not -name changelog_mask \
9888                 -exec badarea_io '{}' \; &> /dev/null ||
9889                 error "find $proc_dirs failed"
9890
9891         local facet
9892         for facet in mds1 ost1; do
9893                 [ $(lustre_version_code $facet) -le $(version_code 2.5.54) ] &&
9894                         skip "Too old lustre on $facet" && continue
9895                 local facet_proc_dirs=$(do_facet $facet \
9896                                         \\\ls -d $proc_regexp 2> /dev/null)
9897                 echo "${facet}_proc_dirs='$facet_proc_dirs'"
9898                 [ -z "$facet_proc_dirs" ] && error "no proc_dirs on $facet"
9899                 do_facet $facet find $facet_proc_dirs \
9900                         -type f \
9901                         -not -name force_lbug \
9902                         -not -name changelog_mask \
9903                         -exec badarea_io '{}' \\\; &> /dev/null ||
9904                                 error "$facet find $facet_proc_dirs failed"
9905         done
9906
9907         # remount the FS in case writes/reads /proc break the FS
9908         cleanup || error "failed to unmount"
9909         setup || error "failed to setup"
9910         true
9911 }
9912 run_test 133g "Check for Oopses on bad io area writes/reads in /proc"
9913
9914 test_133h() {
9915         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9916         remote_ost_nodsh && skip "remote OST with nodsh" && return
9917         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.9.54) ]] &&
9918                 skip "Need MDS version at least 2.9.54" && return
9919
9920         local facet
9921         for facet in client mds1 ost1; do
9922                 local facet_proc_dirs=$(do_facet $facet \
9923                                         \\\ls -d $proc_regexp 2> /dev/null)
9924                 [ -z "$facet_proc_dirs" ] && error "no proc_dirs on $facet"
9925                 echo "${facet}_proc_dirs='$facet_proc_dirs'"
9926                 # Get the list of files that are missing the terminating newline
9927                 local missing=($(do_facet $facet \
9928                         find ${facet_proc_dirs} -type f \|              \
9929                                 while read F\; do                       \
9930                                         awk -v FS='\v' -v RS='\v\v'     \
9931                                         "'END { if(NR>0 &&              \
9932                                         \\\$NF !~ /.*\\\n\$/)           \
9933                                                 print FILENAME}'"       \
9934                                         '\$F'\;                         \
9935                                 done 2>/dev/null))
9936                 [ ${#missing[*]} -eq 0 ] ||
9937                         error "files do not end with newline: ${missing[*]}"
9938         done
9939 }
9940 run_test 133h "Proc files should end with newlines"
9941
9942 test_134a() {
9943         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9944         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.54) ]] &&
9945                 skip "Need MDS version at least 2.7.54" && return
9946
9947         mkdir -p $DIR/$tdir || error "failed to create $DIR/$tdir"
9948         cancel_lru_locks mdc
9949
9950         local nsdir="ldlm.namespaces.*-MDT0000-mdc-*"
9951         local unused=$($LCTL get_param -n $nsdir.lock_unused_count)
9952         [ $unused -eq 0 ] || error "$unused locks are not cleared"
9953
9954         local nr=1000
9955         createmany -o $DIR/$tdir/f $nr ||
9956                 error "failed to create $nr files in $DIR/$tdir"
9957         unused=$($LCTL get_param -n $nsdir.lock_unused_count)
9958
9959         #define OBD_FAIL_LDLM_WATERMARK_LOW     0x327
9960         do_facet mds1 $LCTL set_param fail_loc=0x327
9961         do_facet mds1 $LCTL set_param fail_val=500
9962         touch $DIR/$tdir/m
9963
9964         echo "sleep 10 seconds ..."
9965         sleep 10
9966         local lck_cnt=$($LCTL get_param -n $nsdir.lock_unused_count)
9967
9968         do_facet mds1 $LCTL set_param fail_loc=0
9969         do_facet mds1 $LCTL set_param fail_val=0
9970         [ $lck_cnt -lt $unused ] ||
9971                 error "No locks reclaimed, before:$unused, after:$lck_cnt"
9972
9973         rm $DIR/$tdir/m
9974         unlinkmany $DIR/$tdir/f $nr
9975 }
9976 run_test 134a "Server reclaims locks when reaching lock_reclaim_threshold"
9977
9978 test_134b() {
9979         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9980         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.54) ]] &&
9981                 skip "Need MDS version at least 2.7.54" && return
9982
9983         mkdir -p $DIR/$tdir || error "failed to create $DIR/$tdir"
9984         cancel_lru_locks mdc
9985
9986         local low_wm=$(do_facet mds1 $LCTL get_param -n \
9987                         ldlm.lock_reclaim_threshold_mb)
9988         # disable reclaim temporarily
9989         do_facet mds1 $LCTL set_param ldlm.lock_reclaim_threshold_mb=0
9990
9991         #define OBD_FAIL_LDLM_WATERMARK_HIGH     0x328
9992         do_facet mds1 $LCTL set_param fail_loc=0x328
9993         do_facet mds1 $LCTL set_param fail_val=500
9994
9995         $LCTL set_param debug=+trace
9996
9997         local nr=600
9998         createmany -o $DIR/$tdir/f $nr &
9999         local create_pid=$!
10000
10001         echo "Sleep $TIMEOUT seconds ..."
10002         sleep $TIMEOUT
10003         if ! ps -p $create_pid  > /dev/null 2>&1; then
10004                 do_facet mds1 $LCTL set_param fail_loc=0
10005                 do_facet mds1 $LCTL set_param fail_val=0
10006                 do_facet mds1 $LCTL set_param \
10007                         ldlm.lock_reclaim_threshold_mb=${low_wm}m
10008                 error "createmany finished incorrectly!"
10009         fi
10010         do_facet mds1 $LCTL set_param fail_loc=0
10011         do_facet mds1 $LCTL set_param fail_val=0
10012         do_facet mds1 $LCTL set_param ldlm.lock_reclaim_threshold_mb=${low_wm}m
10013         wait $create_pid || return 1
10014
10015         unlinkmany $DIR/$tdir/f $nr
10016 }
10017 run_test 134b "Server rejects lock request when reaching lock_limit_mb"
10018
10019 test_140() { #bug-17379
10020         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10021         test_mkdir $DIR/$tdir
10022         cd $DIR/$tdir || error "Changing to $DIR/$tdir"
10023         cp $(which stat) . || error "Copying stat to $DIR/$tdir"
10024
10025         # VFS limits max symlink depth to 5(4KSTACK) or 7(8KSTACK) or 8
10026         # For kernel > 3.5, bellow only tests consecutive symlink (MAX 40)
10027         local i=0
10028         while i=$((i + 1)); do
10029                 test_mkdir $i
10030                 cd $i || error "Changing to $i"
10031                 ln -s ../stat stat || error "Creating stat symlink"
10032                 # Read the symlink until ELOOP present,
10033                 # not LBUGing the system is considered success,
10034                 # we didn't overrun the stack.
10035                 $OPENFILE -f O_RDONLY stat >/dev/null 2>&1; ret=$?
10036                 if [ $ret -ne 0 ]; then
10037                         if [ $ret -eq 40 ]; then
10038                                 break  # -ELOOP
10039                         else
10040                                 error "Open stat symlink"
10041                                         return
10042                         fi
10043                 fi
10044         done
10045         i=$((i - 1))
10046         echo "The symlink depth = $i"
10047         [ $i -eq 5 -o $i -eq 7 -o $i -eq 8 -o $i -eq 40 ] ||
10048                                         error "Invalid symlink depth"
10049
10050         # Test recursive symlink
10051         ln -s symlink_self symlink_self
10052         $OPENFILE -f O_RDONLY symlink_self >/dev/null 2>&1; ret=$?
10053         echo "open symlink_self returns $ret"
10054         [ $ret -eq 40 ] || error "recursive symlink doesn't return -ELOOP"
10055 }
10056 run_test 140 "Check reasonable stack depth (shouldn't LBUG) ===="
10057
10058 test_150() {
10059         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10060         local TF="$TMP/$tfile"
10061
10062         dd if=/dev/urandom of=$TF bs=6096 count=1 || error "dd failed"
10063         cp $TF $DIR/$tfile
10064         cancel_lru_locks osc
10065         cmp $TF $DIR/$tfile || error "$TMP/$tfile $DIR/$tfile differ"
10066         remount_client $MOUNT
10067         df -P $MOUNT
10068         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (remount)"
10069
10070         $TRUNCATE $TF 6000
10071         $TRUNCATE $DIR/$tfile 6000
10072         cancel_lru_locks osc
10073         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (truncate1)"
10074
10075         echo "12345" >>$TF
10076         echo "12345" >>$DIR/$tfile
10077         cancel_lru_locks osc
10078         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (append1)"
10079
10080         echo "12345" >>$TF
10081         echo "12345" >>$DIR/$tfile
10082         cancel_lru_locks osc
10083         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (append2)"
10084
10085         rm -f $TF
10086         true
10087 }
10088 run_test 150 "truncate/append tests"
10089
10090 #LU-2902 roc_hit was not able to read all values from lproc
10091 function roc_hit_init() {
10092         local list=$(comma_list $(osts_nodes))
10093         local dir=$DIR/$tdir-check
10094         local file=$dir/$tfile
10095         local BEFORE
10096         local AFTER
10097         local idx
10098
10099         test_mkdir $dir
10100         #use setstripe to do a write to every ost
10101         for i in $(seq 0 $((OSTCOUNT-1))); do
10102                 $SETSTRIPE -c 1 -i $i $dir || error "$SETSTRIPE $file failed"
10103                 dd if=/dev/urandom of=$file bs=4k count=4 2>&1 > /dev/null
10104                 idx=$(printf %04x $i)
10105                 BEFORE=$(get_osd_param $list *OST*$idx stats |
10106                         awk '$1 == "cache_access" {sum += $7}
10107                                 END { printf("%0.0f", sum) }')
10108
10109                 cancel_lru_locks osc
10110                 cat $file >/dev/null
10111
10112                 AFTER=$(get_osd_param $list *OST*$idx stats |
10113                         awk '$1 == "cache_access" {sum += $7}
10114                                 END { printf("%0.0f", sum) }')
10115
10116                 echo BEFORE:$BEFORE AFTER:$AFTER
10117                 if ! let "AFTER - BEFORE == 4"; then
10118                         rm -rf $dir
10119                         error "roc_hit is not safe to use"
10120                 fi
10121                 rm $file
10122         done
10123
10124         rm -rf $dir
10125 }
10126
10127 function roc_hit() {
10128         local list=$(comma_list $(osts_nodes))
10129         echo $(get_osd_param $list '' stats |
10130                 awk '$1 == "cache_hit" {sum += $7}
10131                         END { printf("%0.0f", sum) }')
10132 }
10133
10134 function set_cache() {
10135         local on=1
10136
10137         if [ "$2" == "off" ]; then
10138                 on=0;
10139         fi
10140         local list=$(comma_list $(osts_nodes))
10141         set_osd_param $list '' $1_cache_enable $on
10142
10143         cancel_lru_locks osc
10144 }
10145
10146 test_151() {
10147         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10148         remote_ost_nodsh && skip "remote OST with nodsh" && return
10149
10150         local CPAGES=3
10151         local list=$(comma_list $(osts_nodes))
10152
10153         # check whether obdfilter is cache capable at all
10154         if ! get_osd_param $list '' read_cache_enable >/dev/null; then
10155                 echo "not cache-capable obdfilter"
10156                 return 0
10157         fi
10158
10159         # check cache is enabled on all obdfilters
10160         if get_osd_param $list '' read_cache_enable | grep 0; then
10161                 echo "oss cache is disabled"
10162                 return 0
10163         fi
10164
10165         set_osd_param $list '' writethrough_cache_enable 1
10166
10167         # check write cache is enabled on all obdfilters
10168         if get_osd_param $list '' writethrough_cache_enable | grep 0; then
10169                 echo "oss write cache is NOT enabled"
10170                 return 0
10171         fi
10172
10173         roc_hit_init
10174
10175         #define OBD_FAIL_OBD_NO_LRU  0x609
10176         do_nodes $list $LCTL set_param fail_loc=0x609
10177
10178         # pages should be in the case right after write
10179         dd if=/dev/urandom of=$DIR/$tfile bs=4k count=$CPAGES ||
10180                 error "dd failed"
10181
10182         local BEFORE=$(roc_hit)
10183         cancel_lru_locks osc
10184         cat $DIR/$tfile >/dev/null
10185         local AFTER=$(roc_hit)
10186
10187         do_nodes $list $LCTL set_param fail_loc=0
10188
10189         if ! let "AFTER - BEFORE == CPAGES"; then
10190                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
10191         fi
10192
10193         # the following read invalidates the cache
10194         cancel_lru_locks osc
10195         set_osd_param $list '' read_cache_enable 0
10196         cat $DIR/$tfile >/dev/null
10197
10198         # now data shouldn't be found in the cache
10199         BEFORE=$(roc_hit)
10200         cancel_lru_locks osc
10201         cat $DIR/$tfile >/dev/null
10202         AFTER=$(roc_hit)
10203         if let "AFTER - BEFORE != 0"; then
10204                 error "IN CACHE: before: $BEFORE, after: $AFTER"
10205         fi
10206
10207         set_osd_param $list '' read_cache_enable 1
10208         rm -f $DIR/$tfile
10209 }
10210 run_test 151 "test cache on oss and controls ==============================="
10211
10212 test_152() {
10213         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10214         local TF="$TMP/$tfile"
10215
10216         # simulate ENOMEM during write
10217 #define OBD_FAIL_OST_NOMEM      0x226
10218         lctl set_param fail_loc=0x80000226
10219         dd if=/dev/urandom of=$TF bs=6096 count=1 || error "dd failed"
10220         cp $TF $DIR/$tfile
10221         sync || error "sync failed"
10222         lctl set_param fail_loc=0
10223
10224         # discard client's cache
10225         cancel_lru_locks osc
10226
10227         # simulate ENOMEM during read
10228         lctl set_param fail_loc=0x80000226
10229         cmp $TF $DIR/$tfile || error "cmp failed"
10230         lctl set_param fail_loc=0
10231
10232         rm -f $TF
10233 }
10234 run_test 152 "test read/write with enomem ============================"
10235
10236 test_153() {
10237         $MULTIOP $DIR/$tfile Ow4096Ycu || error "multiop failed"
10238 }
10239 run_test 153 "test if fdatasync does not crash ======================="
10240
10241 dot_lustre_fid_permission_check() {
10242         local fid=$1
10243         local ffid=$MOUNT/.lustre/fid/$fid
10244         local test_dir=$2
10245
10246         echo "stat fid $fid"
10247         stat $ffid > /dev/null || error "stat $ffid failed."
10248         echo "touch fid $fid"
10249         touch $ffid || error "touch $ffid failed."
10250         echo "write to fid $fid"
10251         cat /etc/hosts > $ffid || error "write $ffid failed."
10252         echo "read fid $fid"
10253         diff /etc/hosts $ffid || error "read $ffid failed."
10254         echo "append write to fid $fid"
10255         cat /etc/hosts >> $ffid || error "append write $ffid failed."
10256         echo "rename fid $fid"
10257         mv $ffid $test_dir/$tfile.1 &&
10258                 error "rename $ffid to $tfile.1 should fail."
10259         touch $test_dir/$tfile.1
10260         mv $test_dir/$tfile.1 $ffid &&
10261                 error "rename $tfile.1 to $ffid should fail."
10262         rm -f $test_dir/$tfile.1
10263         echo "truncate fid $fid"
10264         $TRUNCATE $ffid 777 || error "truncate $ffid failed."
10265         if [ $MDSCOUNT -lt 2 ]; then #FIXME when cross-MDT hard link is working
10266                 echo "link fid $fid"
10267                 ln -f $ffid $test_dir/tfile.lnk || error "link $ffid failed."
10268         fi
10269         if [ -n $(lctl get_param -n mdc.*-mdc-*.connect_flags | grep acl) ]; then
10270                 echo "setfacl fid $fid"
10271                 setfacl -R -m u:bin:rwx $ffid || error "setfacl $ffid failed."
10272                 echo "getfacl fid $fid"
10273                 getfacl $ffid >/dev/null || error "getfacl $ffid failed."
10274         fi
10275         echo "unlink fid $fid"
10276         unlink $MOUNT/.lustre/fid/$fid && error "unlink $ffid should fail."
10277         echo "mknod fid $fid"
10278         mknod $ffid c 1 3 && error "mknod $ffid should fail."
10279
10280         fid=[0xf00000400:0x1:0x0]
10281         ffid=$MOUNT/.lustre/fid/$fid
10282
10283         echo "stat non-exist fid $fid"
10284         stat $ffid > /dev/null && error "stat non-exist $ffid should fail."
10285         echo "write to non-exist fid $fid"
10286         cat /etc/hosts > $ffid && error "write non-exist $ffid should fail."
10287         echo "link new fid $fid"
10288         ln $test_dir/$tfile $ffid && error "link $ffid should fail."
10289
10290         mkdir -p $test_dir/$tdir
10291         touch $test_dir/$tdir/$tfile
10292         fid=$($LFS path2fid $test_dir/$tdir)
10293         rc=$?
10294         [ $rc -ne 0 ] &&
10295                 error "error: could not get fid for $test_dir/$dir/$tfile."
10296
10297         ffid=$MOUNT/.lustre/fid/$fid
10298
10299         echo "ls $fid"
10300         ls $ffid > /dev/null || error "ls $ffid failed."
10301         echo "touch $fid/$tfile.1"
10302         touch $ffid/$tfile.1 || error "touch $ffid/$tfile.1 failed."
10303
10304         echo "touch $MOUNT/.lustre/fid/$tfile"
10305         touch $MOUNT/.lustre/fid/$tfile && \
10306                 error "touch $MOUNT/.lustre/fid/$tfile should fail."
10307
10308         echo "setxattr to $MOUNT/.lustre/fid"
10309         setfattr -n trusted.name1 -v value1 $MOUNT/.lustre/fid
10310
10311         echo "listxattr for $MOUNT/.lustre/fid"
10312         getfattr -d -m "^trusted" $MOUNT/.lustre/fid
10313
10314         echo "delxattr from $MOUNT/.lustre/fid"
10315         setfattr -x trusted.name1 $MOUNT/.lustre/fid
10316
10317         echo "touch invalid fid: $MOUNT/.lustre/fid/[0x200000400:0x2:0x3]"
10318         touch $MOUNT/.lustre/fid/[0x200000400:0x2:0x3] &&
10319                 error "touch invalid fid should fail."
10320
10321         echo "touch non-normal fid: $MOUNT/.lustre/fid/[0x1:0x2:0x0]"
10322         touch $MOUNT/.lustre/fid/[0x1:0x2:0x0] &&
10323                 error "touch non-normal fid should fail."
10324
10325         echo "rename $tdir to $MOUNT/.lustre/fid"
10326         mrename $test_dir/$tdir $MOUNT/.lustre/fid &&
10327                 error "rename to $MOUNT/.lustre/fid should fail."
10328
10329         if [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.51) ]
10330         then            # LU-3547
10331                 local old_obf_mode=$(stat --format="%a" $DIR/.lustre/fid)
10332                 local new_obf_mode=777
10333
10334                 echo "change mode of $DIR/.lustre/fid to $new_obf_mode"
10335                 chmod $new_obf_mode $DIR/.lustre/fid ||
10336                         error "chmod $new_obf_mode $DIR/.lustre/fid failed"
10337
10338                 local obf_mode=$(stat --format=%a $DIR/.lustre/fid)
10339                 [ $obf_mode -eq $new_obf_mode ] ||
10340                         error "stat $DIR/.lustre/fid returned wrong mode $obf_mode"
10341
10342                 echo "restore mode of $DIR/.lustre/fid to $old_obf_mode"
10343                 chmod $old_obf_mode $DIR/.lustre/fid ||
10344                         error "chmod $old_obf_mode $DIR/.lustre/fid failed"
10345         fi
10346
10347         $OPENFILE -f O_LOV_DELAY_CREATE:O_CREAT $test_dir/$tfile-2
10348         fid=$($LFS path2fid $test_dir/$tfile-2)
10349
10350         if [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.50) ]
10351         then # LU-5424
10352                 echo "cp /etc/passwd $MOUNT/.lustre/fid/$fid"
10353                 cp /etc/passwd $MOUNT/.lustre/fid/$fid ||
10354                         error "create lov data thru .lustre failed"
10355         fi
10356         echo "cp /etc/passwd $test_dir/$tfile-2"
10357         cp /etc/passwd $test_dir/$tfile-2 ||
10358                 error "copy to $test_dir/$tfile-2 failed."
10359         echo "diff /etc/passwd $MOUNT/.lustre/fid/$fid"
10360         diff /etc/passwd $MOUNT/.lustre/fid/$fid ||
10361                 error "diff /etc/passwd $MOUNT/.lustre/fid/$fid failed."
10362
10363         rm -rf $test_dir/tfile.lnk
10364         rm -rf $test_dir/$tfile-2
10365 }
10366
10367 test_154A() {
10368         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.1) ]] &&
10369                 skip "Need MDS version at least 2.4.1" && return
10370
10371         local tf=$DIR/$tfile
10372         touch $tf
10373
10374         local fid=$($LFS path2fid $tf)
10375         [ -z "$fid" ] && error "path2fid unable to get $tf FID"
10376
10377         # check that we get the same pathname back
10378         local found=$($LFS fid2path $MOUNT "$fid")
10379         [ -z "$found" ] && error "fid2path unable to get '$fid' path"
10380         [ "$found" == "$tf" ] ||
10381                 error "fid2path($fid=path2fid($tf)) = $found != $tf"
10382 }
10383 run_test 154A "lfs path2fid and fid2path basic checks"
10384
10385 test_154B() {
10386         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.1) ]] &&
10387                 skip "Need MDS version at least 2.4.1" && return
10388
10389         mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
10390         touch $DIR/$tdir/$tfile || error "touch $DIR/$tdir/$tfile failed"
10391         local linkea=$($LL_DECODE_LINKEA $DIR/$tdir/$tfile | grep 'pfid')
10392         [ -z "$linkea" ] && error "decode linkea $DIR/$tdir/$tfile failed"
10393
10394         local name=$(echo $linkea | awk '/pfid/ {print $5}' | sed -e "s/'//g")
10395         local PFID=$(echo $linkea | awk '/pfid/ {print $3}' | sed -e "s/,//g")
10396
10397         # check that we get the same pathname
10398         echo "PFID: $PFID, name: $name"
10399         local FOUND=$($LFS fid2path $MOUNT "$PFID")
10400         [ -z "$FOUND" ] && error "fid2path unable to get $PFID path"
10401         [ "$FOUND/$name" != "$DIR/$tdir/$tfile" ] &&
10402                 error "ll_decode_linkea has $FOUND/$name != $DIR/$tdir/$tfile"
10403
10404         rm -rf $DIR/$tdir || error "Can not delete directory $DIR/$tdir"
10405 }
10406 run_test 154B "verify the ll_decode_linkea tool"
10407
10408 test_154a() {
10409         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10410         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ]] ||
10411                 { skip "Need MDS version at least 2.2.51"; return 0; }
10412         [ -z "$(which setfacl)" ] && skip "must have setfacl tool" && return
10413         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
10414
10415         cp /etc/hosts $DIR/$tfile
10416
10417         fid=$($LFS path2fid $DIR/$tfile)
10418         rc=$?
10419         [ $rc -ne 0 ] && error "error: could not get fid for $DIR/$tfile."
10420
10421         dot_lustre_fid_permission_check "$fid" $DIR ||
10422                 error "dot lustre permission check $fid failed"
10423
10424         rm -rf $MOUNT/.lustre && error ".lustre is not allowed to be unlinked"
10425
10426         touch $MOUNT/.lustre/file &&
10427                 error "creation is not allowed under .lustre"
10428
10429         mkdir $MOUNT/.lustre/dir &&
10430                 error "mkdir is not allowed under .lustre"
10431
10432         rm -rf $DIR/$tfile
10433 }
10434 run_test 154a "Open-by-FID"
10435
10436 test_154b() {
10437         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10438         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ]] ||
10439                 { skip "Need MDS version at least 2.2.51"; return 0; }
10440         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
10441
10442         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
10443
10444         local remote_dir=$DIR/$tdir/remote_dir
10445         local MDTIDX=1
10446         local rc=0
10447
10448         mkdir -p $DIR/$tdir
10449         $LFS mkdir -i $MDTIDX $remote_dir ||
10450                 error "create remote directory failed"
10451
10452         cp /etc/hosts $remote_dir/$tfile
10453
10454         fid=$($LFS path2fid $remote_dir/$tfile)
10455         rc=$?
10456         [ $rc -ne 0 ] && error "error: could not get fid for $remote_dir/$tfile"
10457
10458         dot_lustre_fid_permission_check "$fid" $remote_dir ||
10459                 error "dot lustre permission check $fid failed"
10460         rm -rf $DIR/$tdir
10461 }
10462 run_test 154b "Open-by-FID for remote directory"
10463
10464 test_154c() {
10465         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.1) ]] &&
10466                 skip "Need MDS version at least 2.4.1" && return
10467
10468         touch $DIR/$tfile.1 $DIR/$tfile.2 $DIR/$tfile.3
10469         local FID1=$($LFS path2fid $DIR/$tfile.1)
10470         local FID2=$($LFS path2fid $DIR/$tfile.2)
10471         local FID3=$($LFS path2fid $DIR/$tfile.3)
10472
10473         local N=1
10474         $LFS path2fid $DIR/$tfile.[123] | while read PATHNAME FID; do
10475                 [ "$PATHNAME" = "$DIR/$tfile.$N:" ] ||
10476                         error "path2fid pathname $PATHNAME != $DIR/$tfile.$N:"
10477                 local want=FID$N
10478                 [ "$FID" = "${!want}" ] ||
10479                         error "path2fid $PATHNAME FID $FID != FID$N ${!want}"
10480                 N=$((N + 1))
10481         done
10482
10483         $LFS fid2path $MOUNT "$FID1" "$FID2" "$FID3" | while read PATHNAME;
10484         do
10485                 [ "$PATHNAME" = "$DIR/$tfile.$N" ] ||
10486                         error "fid2path pathname $PATHNAME != $DIR/$tfile.$N:"
10487                 N=$((N + 1))
10488         done
10489 }
10490 run_test 154c "lfs path2fid and fid2path multiple arguments"
10491
10492 test_154d() {
10493         remote_mds_nodsh && skip "remote MDS with nodsh" && return
10494         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.5.53) ]] &&
10495                 skip "Need MDS version at least 2.5.53" && return
10496
10497         if remote_mds; then
10498                 nid=$($LCTL list_nids | sed  "s/\./\\\./g")
10499         else
10500                 nid="0@lo"
10501         fi
10502         local proc_ofile="mdt.*.exports.'$nid'.open_files"
10503         local fd
10504         local cmd
10505
10506         rm -f $DIR/$tfile
10507         touch $DIR/$tfile
10508
10509         local fid=$($LFS path2fid $DIR/$tfile)
10510         # Open the file
10511         fd=$(free_fd)
10512         cmd="exec $fd<$DIR/$tfile"
10513         eval $cmd
10514         local fid_list=$(do_facet $SINGLEMDS $LCTL get_param $proc_ofile)
10515         echo "$fid_list" | grep "$fid"
10516         rc=$?
10517
10518         cmd="exec $fd>/dev/null"
10519         eval $cmd
10520         if [ $rc -ne 0 ]; then
10521                 error "FID $fid not found in open files list $fid_list"
10522         fi
10523 }
10524 run_test 154d "Verify open file fid"
10525
10526 test_154e()
10527 {
10528         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.6.50) ]] &&
10529                 skip "Need MDS version at least 2.6.50" && return
10530
10531         if ls -a $MOUNT | grep -q '^\.lustre$'; then
10532                 error ".lustre returned by readdir"
10533         fi
10534 }
10535 run_test 154e ".lustre is not returned by readdir"
10536
10537 test_154f() {
10538         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
10539         # create parent directory on a single MDT to avoid cross-MDT hardlinks
10540         test_mkdir -p -c1 $DIR/$tdir/d
10541         # test dirs inherit from its stripe
10542         mkdir -p $DIR/$tdir/d/foo1 || error "mkdir error"
10543         mkdir -p $DIR/$tdir/d/foo2 || error "mkdir error"
10544         cp /etc/hosts $DIR/$tdir/d/foo1/$tfile
10545         ln $DIR/$tdir/d/foo1/$tfile $DIR/$tdir/d/foo2/link
10546         touch $DIR/f
10547
10548         # get fid of parents
10549         local FID0=$($LFS path2fid $DIR/$tdir/d)
10550         local FID1=$($LFS path2fid $DIR/$tdir/d/foo1)
10551         local FID2=$($LFS path2fid $DIR/$tdir/d/foo2)
10552         local FID3=$($LFS path2fid $DIR)
10553
10554         # check that path2fid --parents returns expected <parent_fid>/name
10555         # 1) test for a directory (single parent)
10556         local parent=$($LFS path2fid --parents $DIR/$tdir/d/foo1)
10557         [ "$parent" == "$FID0/foo1" ] ||
10558                 error "expected parent: $FID0/foo1, got: $parent"
10559
10560         # 2) test for a file with nlink > 1 (multiple parents)
10561         parent=$($LFS path2fid --parents $DIR/$tdir/d/foo1/$tfile)
10562         echo "$parent" | grep -F "$FID1/$tfile" ||
10563                 error "$FID1/$tfile not returned in parent list"
10564         echo "$parent" | grep -F "$FID2/link" ||
10565                 error "$FID2/link not returned in parent list"
10566
10567         # 3) get parent by fid
10568         local file_fid=$($LFS path2fid $DIR/$tdir/d/foo1/$tfile)
10569         parent=$($LFS path2fid --parents $MOUNT/.lustre/fid/$file_fid)
10570         echo "$parent" | grep -F "$FID1/$tfile" ||
10571                 error "$FID1/$tfile not returned in parent list (by fid)"
10572         echo "$parent" | grep -F "$FID2/link" ||
10573                 error "$FID2/link not returned in parent list (by fid)"
10574
10575         # 4) test for entry in root directory
10576         parent=$($LFS path2fid --parents $DIR/f)
10577         echo "$parent" | grep -F "$FID3/f" ||
10578                 error "$FID3/f not returned in parent list"
10579
10580         # 5) test it on root directory
10581         [ -z "$($LFS path2fid --parents $MOUNT 2>/dev/null)" ] ||
10582                 error "$MOUNT should not have parents"
10583
10584         # enable xattr caching and check that linkea is correctly updated
10585         local save="$TMP/$TESTSUITE-$TESTNAME.parameters"
10586         save_lustre_params client "llite.*.xattr_cache" > $save
10587         lctl set_param llite.*.xattr_cache 1
10588
10589         # 6.1) linkea update on rename
10590         mv $DIR/$tdir/d/foo1/$tfile $DIR/$tdir/d/foo2/$tfile.moved
10591
10592         # get parents by fid
10593         parent=$($LFS path2fid --parents $MOUNT/.lustre/fid/$file_fid)
10594         # foo1 should no longer be returned in parent list
10595         echo "$parent" | grep -F "$FID1" &&
10596                 error "$FID1 should no longer be in parent list"
10597         # the new path should appear
10598         echo "$parent" | grep -F "$FID2/$tfile.moved" ||
10599                 error "$FID2/$tfile.moved is not in parent list"
10600
10601         # 6.2) linkea update on unlink
10602         rm -f $DIR/$tdir/d/foo2/link
10603         parent=$($LFS path2fid --parents $MOUNT/.lustre/fid/$file_fid)
10604         # foo2/link should no longer be returned in parent list
10605         echo "$parent" | grep -F "$FID2/link" &&
10606                 error "$FID2/link should no longer be in parent list"
10607         true
10608
10609         rm -f $DIR/f
10610         restore_lustre_params < $save
10611         rm -f $save
10612 }
10613 run_test 154f "get parent fids by reading link ea"
10614
10615 test_154g()
10616 {
10617         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.92) && \
10618            $(lustre_version_code client) -gt $(version_code 2.6.99) ]] ||
10619                 { skip "Need MDS version at least 2.6.92"; return 0; }
10620         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
10621
10622         mkdir -p $DIR/$tdir
10623         llapi_fid_test -d $DIR/$tdir
10624 }
10625 run_test 154g "various llapi FID tests"
10626
10627 test_155_small_load() {
10628     local temp=$TMP/$tfile
10629     local file=$DIR/$tfile
10630
10631     dd if=/dev/urandom of=$temp bs=6096 count=1 || \
10632         error "dd of=$temp bs=6096 count=1 failed"
10633     cp $temp $file
10634     cancel_lru_locks osc
10635     cmp $temp $file || error "$temp $file differ"
10636
10637     $TRUNCATE $temp 6000
10638     $TRUNCATE $file 6000
10639     cmp $temp $file || error "$temp $file differ (truncate1)"
10640
10641     echo "12345" >>$temp
10642     echo "12345" >>$file
10643     cmp $temp $file || error "$temp $file differ (append1)"
10644
10645     echo "12345" >>$temp
10646     echo "12345" >>$file
10647     cmp $temp $file || error "$temp $file differ (append2)"
10648
10649     rm -f $temp $file
10650     true
10651 }
10652
10653 test_155_big_load() {
10654     remote_ost_nodsh && skip "remote OST with nodsh" && return
10655     local temp=$TMP/$tfile
10656     local file=$DIR/$tfile
10657
10658     free_min_max
10659     local cache_size=$(do_facet ost$((MAXI+1)) \
10660         "awk '/cache/ {sum+=\\\$4} END {print sum}' /proc/cpuinfo")
10661     local large_file_size=$((cache_size * 2))
10662
10663     echo "OSS cache size: $cache_size KB"
10664     echo "Large file size: $large_file_size KB"
10665
10666     [ $MAXV -le $large_file_size ] && \
10667         skip_env "max available OST size needs > $large_file_size KB" && \
10668         return 0
10669
10670     $SETSTRIPE $file -c 1 -i $MAXI || error "$SETSTRIPE $file failed"
10671
10672     dd if=/dev/urandom of=$temp bs=$large_file_size count=1k || \
10673         error "dd of=$temp bs=$large_file_size count=1k failed"
10674     cp $temp $file
10675     ls -lh $temp $file
10676     cancel_lru_locks osc
10677     cmp $temp $file || error "$temp $file differ"
10678
10679     rm -f $temp $file
10680     true
10681 }
10682
10683 save_writethrough() {
10684         local facets=$(get_facets OST)
10685
10686         save_lustre_params $facets "obdfilter.*.writethrough_cache_enable" > $1
10687         save_lustre_params $facets "osd-*.*.writethrough_cache_enable" >> $1
10688 }
10689
10690 test_155a() {
10691         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10692         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
10693         save_writethrough $p
10694
10695         set_cache read on
10696         set_cache writethrough on
10697         test_155_small_load
10698         restore_lustre_params < $p
10699         rm -f $p
10700 }
10701 run_test 155a "Verify small file correctness: read cache:on write_cache:on"
10702
10703 test_155b() {
10704         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10705         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
10706         save_writethrough $p
10707
10708         set_cache read on
10709         set_cache writethrough off
10710         test_155_small_load
10711         restore_lustre_params < $p
10712         rm -f $p
10713 }
10714 run_test 155b "Verify small file correctness: read cache:on write_cache:off"
10715
10716 test_155c() {
10717         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10718         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
10719         save_writethrough $p
10720
10721         set_cache read off
10722         set_cache writethrough on
10723         test_155_small_load
10724         restore_lustre_params < $p
10725         rm -f $p
10726 }
10727 run_test 155c "Verify small file correctness: read cache:off write_cache:on"
10728
10729 test_155d() {
10730         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10731         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
10732         save_writethrough $p
10733
10734         set_cache read off
10735         set_cache writethrough off
10736         test_155_small_load
10737         restore_lustre_params < $p
10738         rm -f $p
10739 }
10740 run_test 155d "Verify small file correctness: read cache:off write_cache:off"
10741
10742 test_155e() {
10743         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10744         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
10745         save_writethrough $p
10746
10747         set_cache read on
10748         set_cache writethrough on
10749         test_155_big_load
10750         restore_lustre_params < $p
10751         rm -f $p
10752 }
10753 run_test 155e "Verify big file correctness: read cache:on write_cache:on"
10754
10755 test_155f() {
10756         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10757         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
10758         save_writethrough $p
10759
10760         set_cache read on
10761         set_cache writethrough off
10762         test_155_big_load
10763         restore_lustre_params < $p
10764         rm -f $p
10765 }
10766 run_test 155f "Verify big file correctness: read cache:on write_cache:off"
10767
10768 test_155g() {
10769         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10770         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
10771         save_writethrough $p
10772
10773         set_cache read off
10774         set_cache writethrough on
10775         test_155_big_load
10776         restore_lustre_params < $p
10777         rm -f $p
10778 }
10779 run_test 155g "Verify big file correctness: read cache:off write_cache:on"
10780
10781 test_155h() {
10782         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10783         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
10784         save_writethrough $p
10785
10786         set_cache read off
10787         set_cache writethrough off
10788         test_155_big_load
10789         restore_lustre_params < $p
10790         rm -f $p
10791 }
10792 run_test 155h "Verify big file correctness: read cache:off write_cache:off"
10793
10794 test_156() {
10795         remote_ost_nodsh && skip "remote OST with nodsh" && return
10796         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10797         local CPAGES=3
10798         local BEFORE
10799         local AFTER
10800         local file="$DIR/$tfile"
10801         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
10802
10803         [ "$(facet_fstype ost1)" = "zfs" -a \
10804            $(lustre_version_code ost1 -lt $(version_code 2.6.93)) ] &&
10805                 skip "LU-1956/LU-2261: stats not implemented on OSD ZFS" &&
10806                 return
10807
10808         save_writethrough $p
10809         roc_hit_init
10810
10811         log "Turn on read and write cache"
10812         set_cache read on
10813         set_cache writethrough on
10814
10815         log "Write data and read it back."
10816         log "Read should be satisfied from the cache."
10817         dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
10818         BEFORE=$(roc_hit)
10819         cancel_lru_locks osc
10820         cat $file >/dev/null
10821         AFTER=$(roc_hit)
10822         if ! let "AFTER - BEFORE == CPAGES"; then
10823                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
10824         else
10825                 log "cache hits:: before: $BEFORE, after: $AFTER"
10826         fi
10827
10828         log "Read again; it should be satisfied from the cache."
10829         BEFORE=$AFTER
10830         cancel_lru_locks osc
10831         cat $file >/dev/null
10832         AFTER=$(roc_hit)
10833         if ! let "AFTER - BEFORE == CPAGES"; then
10834                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
10835         else
10836                 log "cache hits:: before: $BEFORE, after: $AFTER"
10837         fi
10838
10839         log "Turn off the read cache and turn on the write cache"
10840         set_cache read off
10841         set_cache writethrough on
10842
10843         log "Read again; it should be satisfied from the cache."
10844         BEFORE=$(roc_hit)
10845         cancel_lru_locks osc
10846         cat $file >/dev/null
10847         AFTER=$(roc_hit)
10848         if ! let "AFTER - BEFORE == CPAGES"; then
10849                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
10850         else
10851                 log "cache hits:: before: $BEFORE, after: $AFTER"
10852         fi
10853
10854         log "Read again; it should not be satisfied from the cache."
10855         BEFORE=$AFTER
10856         cancel_lru_locks osc
10857         cat $file >/dev/null
10858         AFTER=$(roc_hit)
10859         if ! let "AFTER - BEFORE == 0"; then
10860                 error "IN CACHE: before: $BEFORE, after: $AFTER"
10861         else
10862                 log "cache hits:: before: $BEFORE, after: $AFTER"
10863         fi
10864
10865         log "Write data and read it back."
10866         log "Read should be satisfied from the cache."
10867         dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
10868         BEFORE=$(roc_hit)
10869         cancel_lru_locks osc
10870         cat $file >/dev/null
10871         AFTER=$(roc_hit)
10872         if ! let "AFTER - BEFORE == CPAGES"; then
10873                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
10874         else
10875                 log "cache hits:: before: $BEFORE, after: $AFTER"
10876         fi
10877
10878         log "Read again; it should not be satisfied from the cache."
10879         BEFORE=$AFTER
10880         cancel_lru_locks osc
10881         cat $file >/dev/null
10882         AFTER=$(roc_hit)
10883         if ! let "AFTER - BEFORE == 0"; then
10884                 error "IN CACHE: before: $BEFORE, after: $AFTER"
10885         else
10886                 log "cache hits:: before: $BEFORE, after: $AFTER"
10887         fi
10888
10889         log "Turn off read and write cache"
10890         set_cache read off
10891         set_cache writethrough off
10892
10893         log "Write data and read it back"
10894         log "It should not be satisfied from the cache."
10895         rm -f $file
10896         dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
10897         cancel_lru_locks osc
10898         BEFORE=$(roc_hit)
10899         cat $file >/dev/null
10900         AFTER=$(roc_hit)
10901         if ! let "AFTER - BEFORE == 0"; then
10902                 error_ignore bz20762 "IN CACHE: before: $BEFORE, after: $AFTER"
10903         else
10904                 log "cache hits:: before: $BEFORE, after: $AFTER"
10905         fi
10906
10907         log "Turn on the read cache and turn off the write cache"
10908         set_cache read on
10909         set_cache writethrough off
10910
10911         log "Write data and read it back"
10912         log "It should not be satisfied from the cache."
10913         rm -f $file
10914         dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
10915         BEFORE=$(roc_hit)
10916         cancel_lru_locks osc
10917         cat $file >/dev/null
10918         AFTER=$(roc_hit)
10919         if ! let "AFTER - BEFORE == 0"; then
10920                 error_ignore bz20762 "IN CACHE: before: $BEFORE, after: $AFTER"
10921         else
10922                 log "cache hits:: before: $BEFORE, after: $AFTER"
10923         fi
10924
10925         log "Read again; it should be satisfied from the cache."
10926         BEFORE=$(roc_hit)
10927         cancel_lru_locks osc
10928         cat $file >/dev/null
10929         AFTER=$(roc_hit)
10930         if ! let "AFTER - BEFORE == CPAGES"; then
10931                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
10932         else
10933                 log "cache hits:: before: $BEFORE, after: $AFTER"
10934         fi
10935
10936         rm -f $file
10937         restore_lustre_params < $p
10938         rm -f $p
10939 }
10940 run_test 156 "Verification of tunables"
10941
10942 #Changelogs
10943 cleanup_changelog () {
10944         trap 0
10945         echo "Deregistering changelog client $CL_USER"
10946         do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister $CL_USER
10947 }
10948
10949 err17935 () {
10950         if [[ $MDSCOUNT -gt 1 ]]; then
10951                 error_ignore bz17935 $*
10952         else
10953                 error $*
10954         fi
10955 }
10956
10957 changelog_chmask()
10958 {
10959         local CL_MASK_PARAM="mdd.$MDT0.changelog_mask"
10960
10961         MASK=$(do_facet $SINGLEMDS $LCTL get_param $CL_MASK_PARAM| grep -c "$1")
10962
10963         if [ $MASK -eq 1 ]; then
10964                 do_facet $SINGLEMDS $LCTL set_param $CL_MASK_PARAM="-$1"
10965         else
10966                 do_facet $SINGLEMDS $LCTL set_param $CL_MASK_PARAM="+$1"
10967         fi
10968 }
10969
10970 changelog_extract_field() {
10971         local mdt=$1
10972         local cltype=$2
10973         local file=$3
10974         local identifier=$4
10975
10976         $LFS changelog $mdt | gawk "/$cltype.*$file$/ {
10977                 print gensub(/^.* "$identifier'(\[[^\]]*\]).*$/,"\\1",1)}' |
10978                 tail -1
10979 }
10980
10981 test_160a() {
10982         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10983         remote_mds_nodsh && skip "remote MDS with nodsh" && return
10984         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] ||
10985                 { skip "Need MDS version at least 2.2.0"; return; }
10986
10987         local CL_USERS="mdd.$MDT0.changelog_users"
10988         local GET_CL_USERS="do_facet $SINGLEMDS $LCTL get_param -n $CL_USERS"
10989         CL_USER=$(do_facet $SINGLEMDS $LCTL --device $MDT0 \
10990                 changelog_register -n)
10991         echo "Registered as changelog user $CL_USER"
10992         trap cleanup_changelog EXIT
10993         $GET_CL_USERS | grep -q $CL_USER ||
10994                 error "User $CL_USER not found in changelog_users"
10995
10996         # change something
10997         test_mkdir -p $DIR/$tdir/pics/2008/zachy
10998         touch $DIR/$tdir/pics/2008/zachy/timestamp
10999         cp /etc/hosts $DIR/$tdir/pics/2008/zachy/pic1.jpg
11000         mv $DIR/$tdir/pics/2008/zachy $DIR/$tdir/pics/zach
11001         ln $DIR/$tdir/pics/zach/pic1.jpg $DIR/$tdir/pics/2008/portland.jpg
11002         ln -s $DIR/$tdir/pics/2008/portland.jpg $DIR/$tdir/pics/desktop.jpg
11003         rm $DIR/$tdir/pics/desktop.jpg
11004
11005         $LFS changelog $MDT0 | tail -5
11006
11007         echo "verifying changelog mask"
11008         changelog_chmask "MKDIR"
11009         changelog_chmask "CLOSE"
11010
11011         test_mkdir -p $DIR/$tdir/pics/zach/sofia
11012         echo "zzzzzz" > $DIR/$tdir/pics/zach/file
11013
11014         changelog_chmask "MKDIR"
11015         changelog_chmask "CLOSE"
11016
11017         test_mkdir -p $DIR/$tdir/pics/2008/sofia
11018         echo "zzzzzz" > $DIR/$tdir/pics/zach/file
11019
11020         $LFS changelog $MDT0
11021         MKDIRS=$($LFS changelog $MDT0 | tail -5 | grep -c "MKDIR")
11022         CLOSES=$($LFS changelog $MDT0 | tail -5 | grep -c "CLOSE")
11023         [ $MKDIRS -eq 1 ] || err17935 "MKDIR changelog mask count $DIRS != 1"
11024         [ $CLOSES -eq 1 ] || err17935 "CLOSE changelog mask count $DIRS != 1"
11025
11026         # verify contents
11027         echo "verifying target fid"
11028         fidc=$(changelog_extract_field $MDT0 "CREAT" "timestamp" "t=")
11029         fidf=$($LFS path2fid $DIR/$tdir/pics/zach/timestamp)
11030         [ "$fidc" == "$fidf" ] ||
11031                 err17935 "fid in changelog $fidc != file fid $fidf"
11032         echo "verifying parent fid"
11033         fidc=$(changelog_extract_field $MDT0 "CREAT" "timestamp" "p=")
11034         fidf=$($LFS path2fid $DIR/$tdir/pics/zach)
11035         [ "$fidc" == "$fidf" ] ||
11036                 err17935 "pfid in changelog $fidc != dir fid $fidf"
11037
11038         USER_REC1=$($GET_CL_USERS | awk "\$1 == \"$CL_USER\" {print \$2}")
11039         $LFS changelog_clear $MDT0 $CL_USER $(($USER_REC1 + 5))
11040         USER_REC2=$($GET_CL_USERS | awk "\$1 == \"$CL_USER\" {print \$2}")
11041         echo "verifying user clear: $(( $USER_REC1 + 5 )) == $USER_REC2"
11042         [ $USER_REC2 == $(($USER_REC1 + 5)) ] ||
11043                 err17935 "user index expected $(($USER_REC1 + 5)) is $USER_REC2"
11044
11045         MIN_REC=$($GET_CL_USERS |
11046                 awk 'min == "" || $2 < min {min = $2}; END {print min}')
11047         FIRST_REC=$($LFS changelog $MDT0 | head -n1 | awk '{print $1}')
11048         echo "verifying min purge: $(( $MIN_REC + 1 )) == $FIRST_REC"
11049         [ $FIRST_REC == $(($MIN_REC + 1)) ] ||
11050                 err17935 "first index should be $(($MIN_REC + 1)) is $FIRST_REC"
11051
11052         # LU-3446 changelog index reset on MDT restart
11053         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
11054         CUR_REC1=$($GET_CL_USERS | head -n1 | cut -f3 -d' ')
11055         $LFS changelog_clear $MDT0 $CL_USER 0
11056         stop $SINGLEMDS || error "Fail to stop MDT."
11057         start $SINGLEMDS $MDT_DEV $MDS_MOUNT_OPTS || error "Fail to start MDT."
11058         CUR_REC2=$($GET_CL_USERS | head -n1 | cut -f3 -d' ')
11059         echo "verifying index survives MDT restart: $CUR_REC1 == $CUR_REC2"
11060         [ $CUR_REC1 == $CUR_REC2 ] ||
11061                 err17935 "current index should be $CUR_REC1 is $CUR_REC2"
11062
11063         echo "verifying user deregister"
11064         cleanup_changelog
11065         $GET_CL_USERS | grep -q $CL_USER &&
11066                 error "User $CL_USER still in changelog_users"
11067
11068         USERS=$(( $($GET_CL_USERS | wc -l) - 2 ))
11069         if [ $CL_USER -eq 0 ]; then
11070                 LAST_REC1=$($GET_CL_USERS | head -n1 | cut -f3 -d' ')
11071                 touch $DIR/$tdir/chloe
11072                 LAST_REC2=$($GET_CL_USERS | head -n1 | cut -f3 -d' ')
11073                 echo "verify changelogs are off: $LAST_REC1 == $LAST_REC2"
11074                 [ $LAST_REC1 == $LAST_REC2 ] || error "changelogs not off"
11075         else
11076                 echo "$CL_USER other changelog users; can't verify off"
11077         fi
11078 }
11079 run_test 160a "changelog sanity"
11080
11081 test_160b() { # LU-3587
11082         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11083         remote_mds_nodsh && skip "remote MDS with nodsh" && return
11084         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] ||
11085                 { skip "Need MDS version at least 2.2.0"; return; }
11086
11087         local CL_USERS="mdd.$MDT0.changelog_users"
11088         local GET_CL_USERS="do_facet $SINGLEMDS $LCTL get_param -n $CL_USERS"
11089         CL_USER=$(do_facet $SINGLEMDS $LCTL --device $MDT0 \
11090                 changelog_register -n)
11091         echo "Registered as changelog user $CL_USER"
11092         trap cleanup_changelog EXIT
11093         $GET_CL_USERS | grep -q $CL_USER ||
11094                 error "User $CL_USER not found in changelog_users"
11095
11096         local LONGNAME1=$(str_repeat a 255)
11097         local LONGNAME2=$(str_repeat b 255)
11098
11099         cd $DIR
11100         echo "creating very long named file"
11101         touch $LONGNAME1 || error "create of $LONGNAME1 failed"
11102         echo "moving very long named file"
11103         mv $LONGNAME1 $LONGNAME2
11104
11105         $LFS changelog $MDT0 | grep RENME
11106         rm -f $LONGNAME2
11107         cleanup_changelog
11108 }
11109 run_test 160b "Verify that very long rename doesn't crash in changelog"
11110
11111 test_160c() {
11112         remote_mds_nodsh && skip "remote MDS with nodsh" && return
11113
11114         local rc=0
11115         local server_version=$(lustre_version_code $SINGLEMDS)
11116
11117         [[ $server_version -gt $(version_code 2.5.57) ]] ||
11118                 [[ $server_version -gt $(version_code 2.5.1) &&
11119                    $server_version -lt $(version_code 2.5.50) ]] ||
11120                 { skip "Need MDS version at least 2.5.58 or 2.5.2+"; return; }
11121         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11122
11123         # Registration step
11124         CL_USER=$(do_facet $SINGLEMDS $LCTL --device $MDT0 \
11125                 changelog_register -n)
11126         trap cleanup_changelog EXIT
11127
11128         rm -rf $DIR/$tdir
11129         mkdir -p $DIR/$tdir
11130         $MCREATE $DIR/$tdir/foo_160c
11131         changelog_chmask "TRUNC"
11132         $TRUNCATE $DIR/$tdir/foo_160c 200
11133         changelog_chmask "TRUNC"
11134         $TRUNCATE $DIR/$tdir/foo_160c 199
11135         $LFS changelog $MDT0
11136         TRUNCS=$($LFS changelog $MDT0 | tail -5 | grep -c "TRUNC")
11137         [ $TRUNCS -eq 1 ] || err17935 "TRUNC changelog mask count $TRUNCS != 1"
11138         $LFS changelog_clear $MDT0 $CL_USER 0
11139
11140         # Deregistration step
11141         cleanup_changelog
11142 }
11143 run_test 160c "verify that changelog log catch the truncate event"
11144
11145 test_160d() {
11146         remote_mds_nodsh && skip "remote MDS with nodsh" && return
11147         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
11148
11149         local server_version=$(lustre_version_code mds1)
11150         local CL_MASK_PARAM="mdd.$MDT0.changelog_mask"
11151
11152         [[ $server_version -ge $(version_code 2.7.60) ]] ||
11153                 { skip "Need MDS version at least 2.7.60+"; return; }
11154         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11155
11156         # Registration step
11157         CL_USER=$(do_facet mds1 $LCTL --device $MDT0 \
11158                 changelog_register -n)
11159
11160         trap cleanup_changelog EXIT
11161         mkdir -p $DIR/$tdir/migrate_dir
11162         $LFS changelog_clear $MDT0 $CL_USER 0
11163
11164         $LFS migrate -m 1 $DIR/$tdir/migrate_dir || error "migrate fails"
11165         $LFS changelog $MDT0
11166         MIGRATES=$($LFS changelog $MDT0 | tail -5 | grep -c "MIGRT")
11167         $LFS changelog_clear $MDT0 $CL_USER 0
11168         [ $MIGRATES -eq 1 ] ||
11169                 error "MIGRATE changelog mask count $MIGRATES != 1"
11170
11171         # Deregistration step
11172         cleanup_changelog
11173 }
11174 run_test 160d "verify that changelog log catch the migrate event"
11175
11176 test_160e() {
11177         remote_mds_nodsh && skip "remote MDS with nodsh" && return
11178
11179         # Create a user
11180         CL_USER=$(do_facet $SINGLEMDS $LCTL --device $MDT0 \
11181                 changelog_register -n)
11182         echo "Registered as changelog user $CL_USER"
11183         trap cleanup_changelog EXIT
11184
11185         # Delete a future user (expect fail)
11186         do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister cl77
11187         local rc=$?
11188
11189         if [ $rc -eq 0 ]; then
11190                 error "Deleted non-existant user cl77"
11191         elif [ $rc -ne 2 ]; then
11192                 error "changelog_deregister failed with $rc, " \
11193                         "expected 2 (ENOENT)"
11194         fi
11195
11196         # Clear to a bad index (1 billion should be safe)
11197         $LFS changelog_clear $MDT0 $CL_USER 1000000000
11198         rc=$?
11199
11200         if [ $rc -eq 0 ]; then
11201                 error "Successfully cleared to invalid CL index"
11202         elif [ $rc -ne 22 ]; then
11203                 error "changelog_clear failed with $rc, expected 22 (EINVAL)"
11204         fi
11205 }
11206 run_test 160e "changelog negative testing"
11207
11208 test_161a() {
11209         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11210         test_mkdir -c1 $DIR/$tdir
11211         cp /etc/hosts $DIR/$tdir/$tfile
11212         test_mkdir -c1 $DIR/$tdir/foo1
11213         test_mkdir -c1 $DIR/$tdir/foo2
11214         ln $DIR/$tdir/$tfile $DIR/$tdir/foo1/sofia
11215         ln $DIR/$tdir/$tfile $DIR/$tdir/foo2/zachary
11216         ln $DIR/$tdir/$tfile $DIR/$tdir/foo1/luna
11217         ln $DIR/$tdir/$tfile $DIR/$tdir/foo2/thor
11218         local FID=$($LFS path2fid $DIR/$tdir/$tfile | tr -d '[]')
11219         if [ "$($LFS fid2path $DIR $FID | wc -l)" != "5" ]; then
11220                 $LFS fid2path $DIR $FID
11221                 err17935 "bad link ea"
11222         fi
11223     # middle
11224     rm $DIR/$tdir/foo2/zachary
11225     # last
11226     rm $DIR/$tdir/foo2/thor
11227     # first
11228     rm $DIR/$tdir/$tfile
11229     # rename
11230     mv $DIR/$tdir/foo1/sofia $DIR/$tdir/foo2/maggie
11231     if [ "$($LFS fid2path $FSNAME --link 1 $FID)" != "$tdir/foo2/maggie" ]
11232         then
11233         $LFS fid2path $DIR $FID
11234         err17935 "bad link rename"
11235     fi
11236     rm $DIR/$tdir/foo2/maggie
11237
11238         # overflow the EA
11239         local longname=filename_avg_len_is_thirty_two_
11240         createmany -l$DIR/$tdir/foo1/luna $DIR/$tdir/foo2/$longname 1000 ||
11241                 error "failed to hardlink many files"
11242         links=$($LFS fid2path $DIR $FID | wc -l)
11243         echo -n "${links}/1000 links in link EA"
11244         [[ $links -gt 60 ]] ||
11245                 err17935 "expected at least 60 links in link EA"
11246         unlinkmany $DIR/$tdir/foo2/$longname 1000 ||
11247                 error "failed to unlink many hardlinks"
11248 }
11249 run_test 161a "link ea sanity"
11250
11251 test_161b() {
11252         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11253         [ $MDSCOUNT -lt 2 ] && skip "skipping remote directory test" && return
11254         local MDTIDX=1
11255         local remote_dir=$DIR/$tdir/remote_dir
11256
11257         mkdir -p $DIR/$tdir
11258         $LFS mkdir -i $MDTIDX $remote_dir ||
11259                 error "create remote directory failed"
11260
11261         cp /etc/hosts $remote_dir/$tfile
11262         mkdir -p $remote_dir/foo1
11263         mkdir -p $remote_dir/foo2
11264         ln $remote_dir/$tfile $remote_dir/foo1/sofia
11265         ln $remote_dir/$tfile $remote_dir/foo2/zachary
11266         ln $remote_dir/$tfile $remote_dir/foo1/luna
11267         ln $remote_dir/$tfile $remote_dir/foo2/thor
11268
11269         local FID=$($LFS path2fid $remote_dir/$tfile | tr -d '[' |
11270                      tr -d ']')
11271         if [ "$($LFS fid2path $DIR $FID | wc -l)" != "5" ]; then
11272                 $LFS fid2path $DIR $FID
11273                 err17935 "bad link ea"
11274         fi
11275         # middle
11276         rm $remote_dir/foo2/zachary
11277         # last
11278         rm $remote_dir/foo2/thor
11279         # first
11280         rm $remote_dir/$tfile
11281         # rename
11282         mv $remote_dir/foo1/sofia $remote_dir/foo2/maggie
11283         local link_path=$($LFS fid2path $FSNAME --link 1 $FID)
11284         if [ "$DIR/$link_path" != "$remote_dir/foo2/maggie" ]; then
11285                 $LFS fid2path $DIR $FID
11286                 err17935 "bad link rename"
11287         fi
11288         rm $remote_dir/foo2/maggie
11289
11290         # overflow the EA
11291         local longname=filename_avg_len_is_thirty_two_
11292         createmany -l$remote_dir/foo1/luna $remote_dir/foo2/$longname 1000 ||
11293                 error "failed to hardlink many files"
11294         links=$($LFS fid2path $DIR $FID | wc -l)
11295         echo -n "${links}/1000 links in link EA"
11296         [[ ${links} -gt 60 ]] ||
11297                 err17935 "expected at least 60 links in link EA"
11298         unlinkmany $remote_dir/foo2/$longname 1000 ||
11299         error "failed to unlink many hardlinks"
11300 }
11301 run_test 161b "link ea sanity under remote directory"
11302
11303 test_161c() {
11304         remote_mds_nodsh && skip "remote MDS with nodsh" && return
11305         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11306         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.1.5) ]] &&
11307                 skip "Need MDS version at least 2.1.5" && return
11308
11309         # define CLF_RENAME_LAST 0x0001
11310         # rename overwrite a target having nlink = 1 (changelog flag 0x1)
11311         CL_USER=$(do_facet $SINGLEMDS $LCTL --device $MDT0 \
11312                 changelog_register -n)
11313
11314         trap cleanup_changelog EXIT
11315         rm -rf $DIR/$tdir
11316         mkdir -p $DIR/$tdir
11317         touch $DIR/$tdir/foo_161c
11318         touch $DIR/$tdir/bar_161c
11319         mv -f $DIR/$tdir/foo_161c $DIR/$tdir/bar_161c
11320         $LFS changelog $MDT0 | grep RENME
11321         local flags=$($LFS changelog $MDT0 | grep RENME | tail -1 | \
11322                 cut -f5 -d' ')
11323         $LFS changelog_clear $MDT0 $CL_USER 0
11324         if [ x$flags != "x0x1" ]; then
11325                 error "flag $flags is not 0x1"
11326         fi
11327         echo "rename overwrite a target having nlink = 1," \
11328                 "changelog record has flags of $flags"
11329
11330         # rename overwrite a target having nlink > 1 (changelog flag 0x0)
11331         touch $DIR/$tdir/foo_161c
11332         touch $DIR/$tdir/bar_161c
11333         ln $DIR/$tdir/bar_161c $DIR/$tdir/foobar_161c
11334         mv -f $DIR/$tdir/foo_161c $DIR/$tdir/bar_161c
11335         $LFS changelog $MDT0 | grep RENME
11336         flags=$($LFS changelog $MDT0 | grep RENME | tail -1 | cut -f5 -d' ')
11337         $LFS changelog_clear $MDT0 $CL_USER 0
11338         if [ x$flags != "x0x0" ]; then
11339                 error "flag $flags is not 0x0"
11340         fi
11341         echo "rename overwrite a target having nlink > 1," \
11342                 "changelog record has flags of $flags"
11343
11344         # rename doesn't overwrite a target (changelog flag 0x0)
11345         touch $DIR/$tdir/foo_161c
11346         mv -f $DIR/$tdir/foo_161c $DIR/$tdir/foo2_161c
11347         $LFS changelog $MDT0 | grep RENME
11348         flags=$($LFS changelog $MDT0 | grep RENME | tail -1 | cut -f5 -d' ')
11349         $LFS changelog_clear $MDT0 $CL_USER 0
11350         if [ x$flags != "x0x0" ]; then
11351                 error "flag $flags is not 0x0"
11352         fi
11353         echo "rename doesn't overwrite a target," \
11354                 "changelog record has flags of $flags"
11355
11356         # define CLF_UNLINK_LAST 0x0001
11357         # unlink a file having nlink = 1 (changelog flag 0x1)
11358         rm -f $DIR/$tdir/foo2_161c
11359         $LFS changelog $MDT0 | grep UNLNK
11360         flags=$($LFS changelog $MDT0 | grep UNLNK | tail -1 | cut -f5 -d' ')
11361         $LFS changelog_clear $MDT0 $CL_USER 0
11362         if [ x$flags != "x0x1" ]; then
11363                 error "flag $flags is not 0x1"
11364         fi
11365         echo "unlink a file having nlink = 1," \
11366                 "changelog record has flags of $flags"
11367
11368         # unlink a file having nlink > 1 (changelog flag 0x0)
11369         ln -f $DIR/$tdir/bar_161c $DIR/$tdir/foobar_161c
11370         rm -f $DIR/$tdir/foobar_161c
11371         $LFS changelog $MDT0 | grep UNLNK
11372         flags=$($LFS changelog $MDT0 | grep UNLNK | tail -1 | cut -f5 -d' ')
11373         $LFS changelog_clear $MDT0 $CL_USER 0
11374         if [ x$flags != "x0x0" ]; then
11375                 error "flag $flags is not 0x0"
11376         fi
11377         echo "unlink a file having nlink > 1," \
11378                 "changelog record has flags of $flags"
11379         cleanup_changelog
11380 }
11381 run_test 161c "check CL_RENME[UNLINK] changelog record flags"
11382
11383 test_161d() {
11384         local user
11385         local pid
11386         local fid
11387
11388         # cleanup previous run
11389         rm -rf $DIR/$tdir/$tfile
11390
11391         user=$(do_facet $SINGLEMDS $LCTL --device $MDT0 \
11392                 changelog_register -n)
11393         [[ $? -eq 0 ]] || error "changelog_register failed"
11394
11395         # work in a standalone dir to avoid locking on $DIR/$MOUNT to
11396         # interfer with $MOUNT/.lustre/fid/ access
11397         mkdir $DIR/$tdir
11398         [[ $? -eq 0 ]] || error "mkdir failed"
11399
11400         #define OBD_FAIL_LLITE_CREATE_NODE_PAUSE 0x140c | OBD_FAIL_ONCE
11401         $LCTL set_param fail_loc=0x8000140c
11402         # 5s pause
11403         $LCTL set_param fail_val=5
11404
11405         # create file
11406         echo foofoo > $DIR/$tdir/$tfile &
11407         pid=$!
11408
11409         # wait for create to be delayed
11410         sleep 2
11411
11412         ps -p $pid
11413         [[ $? -eq 0 ]] || error "create should be blocked"
11414
11415         local tempfile=$(mktemp)
11416         fid=$(changelog_extract_field $MDT0 "CREAT" "$tfile" "t=")
11417         cat $MOUNT/.lustre/fid/$fid 2>/dev/null >$tempfile || error "cat failed"
11418         # some delay may occur during ChangeLog publishing and file read just
11419         # above, that could allow file write to happen finally
11420         [[ -s $tempfile ]] && echo "file should be empty"
11421
11422         $LCTL set_param fail_loc=0
11423
11424         wait $pid
11425         [[ $? -eq 0 ]] || error "create failed"
11426
11427         $LFS changelog_clear $MDT0 $user 0
11428         do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister $user
11429 }
11430 run_test 161d "create with concurrent .lustre/fid access"
11431
11432 check_path() {
11433     local expected=$1
11434     shift
11435     local fid=$2
11436
11437     local path=$(${LFS} fid2path $*)
11438     # Remove the '//' indicating a remote directory
11439     path=$(echo $path | sed 's#//#/#g')
11440     RC=$?
11441
11442     if [ $RC -ne 0 ]; then
11443         err17935 "path looked up of $expected failed. Error $RC"
11444         return $RC
11445     elif [ "${path}" != "${expected}" ]; then
11446         err17935 "path looked up \"${path}\" instead of \"${expected}\""
11447         return 2
11448     fi
11449     echo "fid $fid resolves to path $path (expected $expected)"
11450 }
11451
11452 test_162a() { # was test_162
11453         # Make changes to filesystem
11454         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11455         test_mkdir -p -c1 $DIR/$tdir/d2
11456         touch $DIR/$tdir/d2/$tfile
11457         touch $DIR/$tdir/d2/x1
11458         touch $DIR/$tdir/d2/x2
11459         test_mkdir -p -c1 $DIR/$tdir/d2/a/b/c
11460         test_mkdir -p -c1 $DIR/$tdir/d2/p/q/r
11461         # regular file
11462         FID=$($LFS path2fid $DIR/$tdir/d2/$tfile | tr -d '[]')
11463         check_path "$tdir/d2/$tfile" $FSNAME $FID --link 0 ||
11464                 error "check path $tdir/d2/$tfile failed"
11465
11466         # softlink
11467         ln -s $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/p/q/r/slink
11468         FID=$($LFS path2fid $DIR/$tdir/d2/p/q/r/slink | tr -d '[]')
11469         check_path "$tdir/d2/p/q/r/slink" $FSNAME $FID --link 0 ||
11470                 error "check path $tdir/d2/p/q/r/slink failed"
11471
11472         # softlink to wrong file
11473         ln -s /this/is/garbage $DIR/$tdir/d2/p/q/r/slink.wrong
11474         FID=$($LFS path2fid $DIR/$tdir/d2/p/q/r/slink.wrong | tr -d '[]')
11475         check_path "$tdir/d2/p/q/r/slink.wrong" $FSNAME $FID --link 0 ||
11476                 error "check path $tdir/d2/p/q/r/slink.wrong failed"
11477
11478         # hardlink
11479         ln $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/p/q/r/hlink
11480         mv $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/a/b/c/new_file
11481         FID=$($LFS path2fid $DIR/$tdir/d2/a/b/c/new_file | tr -d '[]')
11482         # fid2path dir/fsname should both work
11483         check_path "$tdir/d2/a/b/c/new_file" $FSNAME $FID --link 1 ||
11484                 error "check path $tdir/d2/a/b/c/new_file failed"
11485         check_path "$DIR/$tdir/d2/p/q/r/hlink" $DIR $FID --link 0 ||
11486                 error "check path $DIR/$tdir/d2/p/q/r/hlink failed"
11487
11488         # hardlink count: check that there are 2 links
11489         # Doesnt work with CMD yet: 17935
11490         ${LFS} fid2path $DIR $FID | wc -l | grep -q 2 || \
11491                 err17935 "expected 2 links"
11492
11493         # hardlink indexing: remove the first link
11494         rm $DIR/$tdir/d2/p/q/r/hlink
11495         check_path "$tdir/d2/a/b/c/new_file" $FSNAME $FID --link 0 ||
11496                 error "check path $DIR/$tdir/d2/a/b/c/new_file failed"
11497
11498         return 0
11499 }
11500 run_test 162a "path lookup sanity"
11501
11502 test_162b() {
11503         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11504         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
11505
11506         mkdir $DIR/$tdir
11507         $LFS setdirstripe -i0 -c$MDSCOUNT -t all_char $DIR/$tdir/striped_dir ||
11508                                 error "create striped dir failed"
11509
11510         local FID=$($LFS getdirstripe $DIR/$tdir/striped_dir |
11511                                         tail -n 1 | awk '{print $2}')
11512         stat $MOUNT/.lustre/fid/$FID && error "sub_stripe can be accessed"
11513
11514         touch $DIR/$tdir/striped_dir/f{0..4} || error "touch f0..4 failed"
11515         mkdir $DIR/$tdir/striped_dir/d{0..4} || error "mkdir d0..4 failed"
11516
11517         # regular file
11518         for ((i=0;i<5;i++)); do
11519                 FID=$($LFS path2fid $DIR/$tdir/striped_dir/f$i | tr -d '[]') ||
11520                         error "get fid for f$i failed"
11521                 check_path "$tdir/striped_dir/f$i" $FSNAME $FID --link 0 ||
11522                         error "check path $tdir/striped_dir/f$i failed"
11523
11524                 FID=$($LFS path2fid $DIR/$tdir/striped_dir/d$i | tr -d '[]') ||
11525                         error "get fid for d$i failed"
11526                 check_path "$tdir/striped_dir/d$i" $FSNAME $FID --link 0 ||
11527                         error "check path $tdir/striped_dir/d$i failed"
11528         done
11529
11530         return 0
11531 }
11532 run_test 162b "striped directory path lookup sanity"
11533
11534 # LU-4239: Verify fid2path works with paths 100 or more directories deep
11535 test_162c() {
11536         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.51) ]] &&
11537                 skip "Need MDS version at least 2.7.51" && return
11538         test_mkdir $DIR/$tdir.local
11539         test_mkdir $DIR/$tdir.remote
11540         local lpath=$tdir.local
11541         local rpath=$tdir.remote
11542
11543         for ((i = 0; i <= 101; i++)); do
11544                 lpath="$lpath/$i"
11545                 mkdir $DIR/$lpath
11546                 FID=$($LFS path2fid $DIR/$lpath | tr -d '[]') ||
11547                         error "get fid for local directory $DIR/$lpath failed"
11548                 check_path "$DIR/$lpath" $MOUNT $FID --link 0 ||
11549                         error "check path for local directory $DIR/$lpath failed"
11550
11551                 rpath="$rpath/$i"
11552                 test_mkdir $DIR/$rpath
11553                 FID=$($LFS path2fid $DIR/$rpath | tr -d '[]') ||
11554                         error "get fid for remote directory $DIR/$rpath failed"
11555                 check_path "$DIR/$rpath" $MOUNT $FID --link 0 ||
11556                         error "check path for remote directory $DIR/$rpath failed"
11557         done
11558
11559         return 0
11560 }
11561 run_test 162c "fid2path works with paths 100 or more directories deep"
11562
11563 test_169() {
11564         # do directio so as not to populate the page cache
11565         log "creating a 10 Mb file"
11566         $MULTIOP $DIR/$tfile oO_CREAT:O_DIRECT:O_RDWR:w$((10*1048576))c || error "multiop failed while creating a file"
11567         log "starting reads"
11568         dd if=$DIR/$tfile of=/dev/null bs=4096 &
11569         log "truncating the file"
11570         $MULTIOP $DIR/$tfile oO_TRUNC:c || error "multiop failed while truncating the file"
11571         log "killing dd"
11572         kill %+ || true # reads might have finished
11573         echo "wait until dd is finished"
11574         wait
11575         log "removing the temporary file"
11576         rm -rf $DIR/$tfile || error "tmp file removal failed"
11577 }
11578 run_test 169 "parallel read and truncate should not deadlock"
11579
11580 test_170() {
11581         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11582         $LCTL clear     # bug 18514
11583         $LCTL debug_daemon start $TMP/${tfile}_log_good
11584         touch $DIR/$tfile
11585         $LCTL debug_daemon stop
11586         sed -e "s/^...../a/g" $TMP/${tfile}_log_good > $TMP/${tfile}_log_bad ||
11587                error "sed failed to read log_good"
11588
11589         $LCTL debug_daemon start $TMP/${tfile}_log_good
11590         rm -rf $DIR/$tfile
11591         $LCTL debug_daemon stop
11592
11593         $LCTL df $TMP/${tfile}_log_bad > $TMP/${tfile}_log_bad.out 2>&1 ||
11594                error "lctl df log_bad failed"
11595
11596         local bad_line=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $9}')
11597         local good_line1=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $5}')
11598
11599         $LCTL df $TMP/${tfile}_log_good > $TMP/${tfile}_log_good.out 2>&1
11600         local good_line2=$(tail -n 1 $TMP/${tfile}_log_good.out | awk '{print $5}')
11601
11602         [ "$bad_line" ] && [ "$good_line1" ] && [ "$good_line2" ] ||
11603                 error "bad_line good_line1 good_line2 are empty"
11604
11605         cat $TMP/${tfile}_log_good >> $TMP/${tfile}_logs_corrupt
11606         cat $TMP/${tfile}_log_bad >> $TMP/${tfile}_logs_corrupt
11607         cat $TMP/${tfile}_log_good >> $TMP/${tfile}_logs_corrupt
11608
11609         $LCTL df $TMP/${tfile}_logs_corrupt > $TMP/${tfile}_log_bad.out 2>&1
11610         local bad_line_new=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $9}')
11611         local good_line_new=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $5}')
11612
11613         [ "$bad_line_new" ] && [ "$good_line_new" ] ||
11614                 error "bad_line_new good_line_new are empty"
11615
11616         local expected_good=$((good_line1 + good_line2*2))
11617
11618         rm -f $TMP/${tfile}*
11619         # LU-231, short malformed line may not be counted into bad lines
11620         if [ $bad_line -ne $bad_line_new ] &&
11621                    [ $bad_line -ne $((bad_line_new - 1)) ]; then
11622                 error "expected $bad_line bad lines, but got $bad_line_new"
11623                 return 1
11624         fi
11625
11626         if [ $expected_good -ne $good_line_new ]; then
11627                 error "expected $expected_good good lines, but got $good_line_new"
11628                 return 2
11629         fi
11630         true
11631 }
11632 run_test 170 "test lctl df to handle corrupted log ====================="
11633
11634 test_171() { # bug20592
11635         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11636 #define OBD_FAIL_PTLRPC_DUMP_LOG         0x50e
11637         $LCTL set_param fail_loc=0x50e
11638         $LCTL set_param fail_val=3000
11639         multiop_bg_pause $DIR/$tfile O_s || true
11640         local MULTIPID=$!
11641         kill -USR1 $MULTIPID
11642         # cause log dump
11643         sleep 3
11644         wait $MULTIPID
11645         if dmesg | grep "recursive fault"; then
11646                 error "caught a recursive fault"
11647         fi
11648         $LCTL set_param fail_loc=0
11649         true
11650 }
11651 run_test 171 "test libcfs_debug_dumplog_thread stuck in do_exit() ======"
11652
11653 # it would be good to share it with obdfilter-survey/iokit-libecho code
11654 setup_obdecho_osc () {
11655         local rc=0
11656         local ost_nid=$1
11657         local obdfilter_name=$2
11658         echo "Creating new osc for $obdfilter_name on $ost_nid"
11659         # make sure we can find loopback nid
11660         $LCTL add_uuid $ost_nid $ost_nid >/dev/null 2>&1
11661
11662         [ $rc -eq 0 ] && { $LCTL attach osc ${obdfilter_name}_osc     \
11663                            ${obdfilter_name}_osc_UUID || rc=2; }
11664         [ $rc -eq 0 ] && { $LCTL --device ${obdfilter_name}_osc setup \
11665                            ${obdfilter_name}_UUID  $ost_nid || rc=3; }
11666         return $rc
11667 }
11668
11669 cleanup_obdecho_osc () {
11670         local obdfilter_name=$1
11671         $LCTL --device ${obdfilter_name}_osc cleanup >/dev/null
11672         $LCTL --device ${obdfilter_name}_osc detach  >/dev/null
11673         return 0
11674 }
11675
11676 obdecho_test() {
11677         local OBD=$1
11678         local node=$2
11679         local pages=${3:-64}
11680         local rc=0
11681         local id
11682
11683         local count=10
11684         local obd_size=$(get_obd_size $node $OBD)
11685         local page_size=$(get_page_size $node)
11686         if [[ -n "$obd_size" ]]; then
11687                 local new_count=$((obd_size / (pages * page_size / 1024)))
11688                 [[ $new_count -ge $count ]] || count=$new_count
11689         fi
11690
11691         do_facet $node "$LCTL attach echo_client ec ec_uuid" || rc=1
11692         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec setup $OBD" ||
11693                            rc=2; }
11694         if [ $rc -eq 0 ]; then
11695             id=$(do_facet $node "$LCTL --device ec create 1"  | awk '/object id/ {print $6}')
11696             [ ${PIPESTATUS[0]} -eq 0 -a -n "$id" ] || rc=3
11697         fi
11698         echo "New object id is $id"
11699         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec getattr $id" ||
11700                            rc=4; }
11701         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec "                 \
11702                            "test_brw $count w v $pages $id" || rc=4; }
11703         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec destroy $id 1" ||
11704                            rc=4; }
11705         [ $rc -eq 0 -o $rc -gt 2 ] && { do_facet $node "$LCTL --device ec "    \
11706                                         "cleanup" || rc=5; }
11707         [ $rc -eq 0 -o $rc -gt 1 ] && { do_facet $node "$LCTL --device ec "    \
11708                                         "detach" || rc=6; }
11709         [ $rc -ne 0 ] && echo "obecho_create_test failed: $rc"
11710         return $rc
11711 }
11712
11713 test_180a() {
11714         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11715         remote_ost_nodsh && skip "remote OST with nodsh" && return
11716         local rc=0
11717         local rmmod_local=0
11718
11719         if ! module_loaded obdecho; then
11720             load_module obdecho/obdecho
11721             rmmod_local=1
11722         fi
11723
11724         local osc=$($LCTL dl | grep -v mdt | awk '$3 == "osc" {print $4; exit}')
11725         local host=$(lctl get_param -n osc.$osc.import |
11726                              awk '/current_connection:/ {print $2}' )
11727         local target=$(lctl get_param -n osc.$osc.import |
11728                              awk '/target:/ {print $2}' )
11729         target=${target%_UUID}
11730
11731         [[ -n $target ]]  && { setup_obdecho_osc $host $target || rc=1; } || rc=1
11732         [ $rc -eq 0 ] && { obdecho_test ${target}_osc client || rc=2; }
11733         [[ -n $target ]] && cleanup_obdecho_osc $target
11734         [ $rmmod_local -eq 1 ] && rmmod obdecho
11735         return $rc
11736 }
11737 run_test 180a "test obdecho on osc"
11738
11739 test_180b() {
11740         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11741         remote_ost_nodsh && skip "remote OST with nodsh" && return
11742         local rc=0
11743         local rmmod_remote=0
11744
11745         do_rpc_nodes $(facet_active_host ost1) load_module obdecho/obdecho &&
11746                 rmmod_remote=true || error "failed to load module obdecho"
11747         target=$(do_facet ost1 $LCTL dl | awk '/obdfilter/ {print $4;exit}')
11748         [[ -n $target ]] && { obdecho_test $target ost1 || rc=1; }
11749         $rmmod_remote && do_facet ost1 "rmmod obdecho"
11750         return $rc
11751 }
11752 run_test 180b "test obdecho directly on obdfilter"
11753
11754 test_180c() { # LU-2598
11755         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11756         remote_ost_nodsh && skip "remote OST with nodsh" && return
11757         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.0) ]] &&
11758                 skip "Need MDS version at least 2.4.0" && return
11759
11760         local rc=0
11761         local rmmod_remote=false
11762         local pages=16384 # 64MB bulk I/O RPC size
11763         local target
11764
11765         do_rpc_nodes $(facet_active_host ost1) load_module obdecho/obdecho &&
11766                 rmmod_remote=true || error "failed to load module obdecho"
11767
11768         target=$(do_facet ost1 $LCTL dl | awk '/obdfilter/ { print $4 }' |
11769                 head -n1)
11770         if [ -n "$target" ]; then
11771                 obdecho_test "$target" ost1 "$pages" || rc=${PIPESTATUS[0]}
11772         else
11773                 echo "there is no obdfilter target on ost1"
11774                 rc=2
11775         fi
11776         $rmmod_remote && do_facet ost1 "rmmod obdecho" || true
11777         return $rc
11778 }
11779 run_test 180c "test huge bulk I/O size on obdfilter, don't LASSERT"
11780
11781 test_181() { # bug 22177
11782         test_mkdir $DIR/$tdir
11783         # create enough files to index the directory
11784         createmany -o $DIR/$tdir/foobar 4000
11785         # print attributes for debug purpose
11786         lsattr -d .
11787         # open dir
11788         multiop_bg_pause $DIR/$tdir D_Sc || return 1
11789         MULTIPID=$!
11790         # remove the files & current working dir
11791         unlinkmany $DIR/$tdir/foobar 4000
11792         rmdir $DIR/$tdir
11793         kill -USR1 $MULTIPID
11794         wait $MULTIPID
11795         stat $DIR/$tdir && error "open-unlinked dir was not removed!"
11796         return 0
11797 }
11798 run_test 181 "Test open-unlinked dir ========================"
11799
11800 test_182() {
11801         local fcount=1000
11802         local tcount=10
11803
11804         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
11805
11806         $LCTL set_param mdc.*.rpc_stats=clear
11807
11808         for (( i = 0; i < $tcount; i++ )) ; do
11809                 mkdir $DIR/$tdir/$i
11810         done
11811
11812         for (( i = 0; i < $tcount; i++ )) ; do
11813                 createmany -o $DIR/$tdir/$i/f- $fcount &
11814         done
11815         wait
11816
11817         for (( i = 0; i < $tcount; i++ )) ; do
11818                 unlinkmany $DIR/$tdir/$i/f- $fcount &
11819         done
11820         wait
11821
11822         $LCTL get_param mdc.*.rpc_stats
11823
11824         rm -rf $DIR/$tdir
11825 }
11826 run_test 182 "Test parallel modify metadata operations ================"
11827
11828 test_183() { # LU-2275
11829         remote_mds_nodsh && skip "remote MDS with nodsh" && return
11830         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.56) ]] &&
11831                 skip "Need MDS version at least 2.3.56" && return
11832
11833         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11834         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
11835         echo aaa > $DIR/$tdir/$tfile
11836
11837 #define OBD_FAIL_MDS_NEGATIVE_POSITIVE  0x148
11838         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x148
11839
11840         ls -l $DIR/$tdir && error "ls succeeded, should have failed"
11841         cat $DIR/$tdir/$tfile && error "cat succeeded, should have failed"
11842
11843         do_facet $SINGLEMDS $LCTL set_param fail_loc=0
11844
11845         # Flush negative dentry cache
11846         touch $DIR/$tdir/$tfile
11847
11848         # We are not checking for any leaked references here, they'll
11849         # become evident next time we do cleanup with module unload.
11850         rm -rf $DIR/$tdir
11851 }
11852 run_test 183 "No crash or request leak in case of strange dispositions ========"
11853
11854 # test suite 184 is for LU-2016, LU-2017
11855 test_184a() {
11856         check_swap_layouts_support && return 0
11857
11858         dir0=$DIR/$tdir/$testnum
11859         test_mkdir -p -c1 $dir0
11860         ref1=/etc/passwd
11861         ref2=/etc/group
11862         file1=$dir0/f1
11863         file2=$dir0/f2
11864         $SETSTRIPE -c1 $file1
11865         cp $ref1 $file1
11866         $SETSTRIPE -c2 $file2
11867         cp $ref2 $file2
11868         gen1=$($GETSTRIPE -g $file1)
11869         gen2=$($GETSTRIPE -g $file2)
11870
11871         $LFS swap_layouts $file1 $file2 || error "swap of file layout failed"
11872         gen=$($GETSTRIPE -g $file1)
11873         [[ $gen1 != $gen ]] ||
11874                 "Layout generation on $file1 does not change"
11875         gen=$($GETSTRIPE -g $file2)
11876         [[ $gen2 != $gen ]] ||
11877                 "Layout generation on $file2 does not change"
11878
11879         cmp $ref1 $file2 || error "content compare failed ($ref1 != $file2)"
11880         cmp $ref2 $file1 || error "content compare failed ($ref2 != $file1)"
11881 }
11882 run_test 184a "Basic layout swap"
11883
11884 test_184b() {
11885         check_swap_layouts_support && return 0
11886
11887         dir0=$DIR/$tdir/$testnum
11888         mkdir -p $dir0 || error "creating dir $dir0"
11889         file1=$dir0/f1
11890         file2=$dir0/f2
11891         file3=$dir0/f3
11892         dir1=$dir0/d1
11893         dir2=$dir0/d2
11894         mkdir $dir1 $dir2
11895         $SETSTRIPE -c1 $file1
11896         $SETSTRIPE -c2 $file2
11897         $SETSTRIPE -c1 $file3
11898         chown $RUNAS_ID $file3
11899         gen1=$($GETSTRIPE -g $file1)
11900         gen2=$($GETSTRIPE -g $file2)
11901
11902         $LFS swap_layouts $dir1 $dir2 &&
11903                 error "swap of directories layouts should fail"
11904         $LFS swap_layouts $dir1 $file1 &&
11905                 error "swap of directory and file layouts should fail"
11906         $RUNAS $LFS swap_layouts $file1 $file2 &&
11907                 error "swap of file we cannot write should fail"
11908         $LFS swap_layouts $file1 $file3 &&
11909                 error "swap of file with different owner should fail"
11910         /bin/true # to clear error code
11911 }
11912 run_test 184b "Forbidden layout swap (will generate errors)"
11913
11914 test_184c() {
11915         local cmpn_arg=$(cmp -n 2>&1 | grep "invalid option")
11916         [ -n "$cmpn_arg" ] && skip_env "cmp does not support -n" && return
11917         check_swap_layouts_support && return 0
11918
11919         local dir0=$DIR/$tdir/$testnum
11920         mkdir -p $dir0 || error "creating dir $dir0"
11921
11922         local ref1=$dir0/ref1
11923         local ref2=$dir0/ref2
11924         local file1=$dir0/file1
11925         local file2=$dir0/file2
11926         # create a file large enough for the concurrent test
11927         dd if=/dev/urandom of=$ref1 bs=1M count=$((RANDOM % 50 + 20))
11928         dd if=/dev/urandom of=$ref2 bs=1M count=$((RANDOM % 50 + 20))
11929         echo "ref file size: ref1($(stat -c %s $ref1))," \
11930              "ref2($(stat -c %s $ref2))"
11931
11932         cp $ref2 $file2
11933         dd if=$ref1 of=$file1 bs=16k &
11934         local DD_PID=$!
11935
11936         # Make sure dd starts to copy file
11937         while [ ! -f $file1 ]; do sleep 0.1; done
11938
11939         $LFS swap_layouts $file1 $file2
11940         local rc=$?
11941         wait $DD_PID
11942         [[ $? == 0 ]] || error "concurrent write on $file1 failed"
11943         [[ $rc == 0 ]] || error "swap of $file1 and $file2 failed"
11944
11945         # how many bytes copied before swapping layout
11946         local copied=$(stat -c %s $file2)
11947         local remaining=$(stat -c %s $ref1)
11948         remaining=$((remaining - copied))
11949         echo "Copied $copied bytes before swapping layout..."
11950
11951         cmp -n $copied $file1 $ref2 | grep differ &&
11952                 error "Content mismatch [0, $copied) of ref2 and file1"
11953         cmp -n $copied $file2 $ref1 ||
11954                 error "Content mismatch [0, $copied) of ref1 and file2"
11955         cmp -i $copied:$copied -n $remaining $file1 $ref1 ||
11956                 error "Content mismatch [$copied, EOF) of ref1 and file1"
11957
11958         # clean up
11959         rm -f $ref1 $ref2 $file1 $file2
11960 }
11961 run_test 184c "Concurrent write and layout swap"
11962
11963 test_184d() {
11964         check_swap_layouts_support && return 0
11965         [ -z "$(which getfattr 2>/dev/null)" ] &&
11966                 skip "no getfattr command" && return 0
11967
11968         local file1=$DIR/$tdir/$tfile-1
11969         local file2=$DIR/$tdir/$tfile-2
11970         local file3=$DIR/$tdir/$tfile-3
11971         local lovea1
11972         local lovea2
11973
11974         mkdir -p $DIR/$tdir
11975         touch $file1 || error "create $file1 failed"
11976         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file2 ||
11977                 error "create $file2 failed"
11978         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file3 ||
11979                 error "create $file3 failed"
11980         lovea1=$(get_layout_param $file1)
11981
11982         $LFS swap_layouts $file2 $file3 ||
11983                 error "swap $file2 $file3 layouts failed"
11984         $LFS swap_layouts $file1 $file2 ||
11985                 error "swap $file1 $file2 layouts failed"
11986
11987         lovea2=$(get_layout_param $file2)
11988         echo "$lovea1"
11989         echo "$lovea2"
11990         [ "$lovea1" == "$lovea2" ] || error "lovea $lovea1 != $lovea2"
11991
11992         lovea1=$(getfattr -n trusted.lov $file1 | grep ^trusted)
11993         [[ -z "$lovea1" ]] || error "$file1 shouldn't have lovea"
11994 }
11995 run_test 184d "allow stripeless layouts swap"
11996
11997 test_184e() {
11998         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.94) ]] ||
11999                 { skip "Need MDS version at least 2.6.94"; return 0; }
12000         check_swap_layouts_support && return 0
12001         [ -z "$(which getfattr 2>/dev/null)" ] &&
12002                 skip "no getfattr command" && return 0
12003
12004         local file1=$DIR/$tdir/$tfile-1
12005         local file2=$DIR/$tdir/$tfile-2
12006         local file3=$DIR/$tdir/$tfile-3
12007         local lovea
12008
12009         mkdir -p $DIR/$tdir
12010         touch $file1 || error "create $file1 failed"
12011         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file2 ||
12012                 error "create $file2 failed"
12013         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file3 ||
12014                 error "create $file3 failed"
12015
12016         $LFS swap_layouts $file1 $file2 ||
12017                 error "swap $file1 $file2 layouts failed"
12018
12019         lovea=$(getfattr -n trusted.lov $file1 | grep ^trusted)
12020         [[ -z "$lovea" ]] || error "$file1 shouldn't have lovea"
12021
12022         echo 123 > $file1 || error "Should be able to write into $file1"
12023
12024         $LFS swap_layouts $file1 $file3 ||
12025                 error "swap $file1 $file3 layouts failed"
12026
12027         echo 123 > $file1 || error "Should be able to write into $file1"
12028
12029         rm -rf $file1 $file2 $file3
12030 }
12031 run_test 184e "Recreate layout after stripeless layout swaps"
12032
12033 test_185() { # LU-2441
12034         # LU-3553 - no volatile file support in old servers
12035         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.60) ]] ||
12036                 { skip "Need MDS version at least 2.3.60"; return 0; }
12037
12038         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
12039         touch $DIR/$tdir/spoo
12040         local mtime1=$(stat -c "%Y" $DIR/$tdir)
12041         local fid=$($MULTIOP $DIR/$tdir VFw4096c) ||
12042                 error "cannot create/write a volatile file"
12043         [ "$FILESET" == "" ] &&
12044         $CHECKSTAT -t file $MOUNT/.lustre/fid/$fid 2>/dev/null &&
12045                 error "FID is still valid after close"
12046
12047         multiop_bg_pause $DIR/$tdir vVw4096_c
12048         local multi_pid=$!
12049
12050         local OLD_IFS=$IFS
12051         IFS=":"
12052         local fidv=($fid)
12053         IFS=$OLD_IFS
12054         # assume that the next FID for this client is sequential, since stdout
12055         # is unfortunately eaten by multiop_bg_pause
12056         local n=$((${fidv[1]} + 1))
12057         local next_fid="${fidv[0]}:$(printf "0x%x" $n):${fidv[2]}"
12058         if [ "$FILESET" == "" ]; then
12059                 $CHECKSTAT -t file $MOUNT/.lustre/fid/$next_fid ||
12060                         error "FID is missing before close"
12061         fi
12062         kill -USR1 $multi_pid
12063         # 1 second delay, so if mtime change we will see it
12064         sleep 1
12065         local mtime2=$(stat -c "%Y" $DIR/$tdir)
12066         [[ $mtime1 == $mtime2 ]] || error "mtime has changed"
12067 }
12068 run_test 185 "Volatile file support"
12069
12070 test_187a() {
12071         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12072         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.0) ] &&
12073                 skip "Need MDS version at least 2.3.0" && return
12074
12075         local dir0=$DIR/$tdir/$testnum
12076         mkdir -p $dir0 || error "creating dir $dir0"
12077
12078         local file=$dir0/file1
12079         dd if=/dev/urandom of=$file count=10 bs=1M conv=fsync
12080         local dv1=$($LFS data_version $file)
12081         dd if=/dev/urandom of=$file seek=10 count=1 bs=1M conv=fsync
12082         local dv2=$($LFS data_version $file)
12083         [[ $dv1 != $dv2 ]] ||
12084                 error "data version did not change on write $dv1 == $dv2"
12085
12086         # clean up
12087         rm -f $file1
12088 }
12089 run_test 187a "Test data version change"
12090
12091 test_187b() {
12092         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12093         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.0) ] &&
12094                 skip "Need MDS version at least 2.3.0" && return
12095
12096         local dir0=$DIR/$tdir/$testnum
12097         mkdir -p $dir0 || error "creating dir $dir0"
12098
12099         declare -a DV=$($MULTIOP $dir0 Vw1000xYw1000xY | cut -f3 -d" ")
12100         [[ ${DV[0]} != ${DV[1]} ]] ||
12101                 error "data version did not change on write"\
12102                       " ${DV[0]} == ${DV[1]}"
12103
12104         # clean up
12105         rm -f $file1
12106 }
12107 run_test 187b "Test data version change on volatile file"
12108
12109 test_200() {
12110         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12111         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
12112         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
12113
12114         local POOL=${POOL:-cea1}
12115         local POOL_ROOT=${POOL_ROOT:-$DIR/d200.pools}
12116         local POOL_DIR_NAME=${POOL_DIR_NAME:-dir_tst}
12117         # Pool OST targets
12118         local first_ost=0
12119         local last_ost=$(($OSTCOUNT - 1))
12120         local ost_step=2
12121         local ost_list=$(seq $first_ost $ost_step $last_ost)
12122         local ost_range="$first_ost $last_ost $ost_step"
12123         local test_path=$POOL_ROOT/$POOL_DIR_NAME
12124         local file_dir=$POOL_ROOT/file_tst
12125         local subdir=$test_path/subdir
12126
12127         local rc=0
12128         while : ; do
12129                 # former test_200a test_200b
12130                 pool_add $POOL                          || { rc=$? ; break; }
12131                 pool_add_targets  $POOL $ost_range      || { rc=$? ; break; }
12132                 # former test_200c test_200d
12133                 mkdir -p $test_path
12134                 pool_set_dir      $POOL $test_path      || { rc=$? ; break; }
12135                 pool_check_dir    $POOL $test_path      || { rc=$? ; break; }
12136                 mkdir -p $subdir
12137                 pool_check_dir    $POOL $subdir         || { rc=$? ; break; }
12138                 pool_dir_rel_path $POOL $POOL_DIR_NAME $POOL_ROOT \
12139                                                         || { rc=$? ; break; }
12140                 # former test_200e test_200f
12141                 local files=$((OSTCOUNT*3))
12142                 pool_alloc_files  $POOL $test_path $files "$ost_list" \
12143                                                         || { rc=$? ; break; }
12144                 pool_create_files $POOL $file_dir $files "$ost_list" \
12145                                                         || { rc=$? ; break; }
12146                 # former test_200g test_200h
12147                 pool_lfs_df $POOL                       || { rc=$? ; break; }
12148                 pool_file_rel_path $POOL $test_path     || { rc=$? ; break; }
12149
12150                 # former test_201a test_201b test_201c
12151                 pool_remove_first_target $POOL          || { rc=$? ; break; }
12152
12153                 local f=$test_path/$tfile
12154                 pool_remove_all_targets $POOL $f        || { rc=$? ; break; }
12155                 pool_remove $POOL $f                    || { rc=$? ; break; }
12156                 break
12157         done
12158
12159         destroy_test_pools
12160         return $rc
12161 }
12162 run_test 200 "OST pools"
12163
12164 # usage: default_attr <count | size | offset>
12165 default_attr() {
12166         $LCTL get_param -n lov.$FSNAME-clilov-\*.stripe${1}
12167 }
12168
12169 # usage: check_default_stripe_attr
12170 check_default_stripe_attr() {
12171         ACTUAL=$($GETSTRIPE $* $DIR/$tdir)
12172         case $1 in
12173         --stripe-count|-c)
12174                 [ -n "$2" ] && EXPECTED=0 || EXPECTED=$(default_attr count);;
12175         --stripe-size|-S)
12176                 [ -n "$2" ] && EXPECTED=0 || EXPECTED=$(default_attr size);;
12177         --stripe-index|-i)
12178                 EXPECTED=-1;;
12179         *)
12180                 error "unknown getstripe attr '$1'"
12181         esac
12182
12183         [ $ACTUAL == $EXPECTED ] ||
12184                 error "$DIR/$tdir has $1 '$ACTUAL', not '$EXPECTED'"
12185 }
12186
12187 test_204a() {
12188         test_mkdir $DIR/$tdir
12189         $SETSTRIPE --stripe-count 0 --stripe-size 0 --stripe-index -1 $DIR/$tdir
12190
12191         check_default_stripe_attr --stripe-count
12192         check_default_stripe_attr --stripe-size
12193         check_default_stripe_attr --stripe-index
12194 }
12195 run_test 204a "Print default stripe attributes"
12196
12197 test_204b() {
12198         test_mkdir $DIR/$tdir
12199         $SETSTRIPE --stripe-count 1 $DIR/$tdir
12200
12201         check_default_stripe_attr --stripe-size
12202         check_default_stripe_attr --stripe-index
12203 }
12204 run_test 204b "Print default stripe size and offset"
12205
12206 test_204c() {
12207         test_mkdir $DIR/$tdir
12208         $SETSTRIPE --stripe-size 65536 $DIR/$tdir
12209
12210         check_default_stripe_attr --stripe-count
12211         check_default_stripe_attr --stripe-index
12212 }
12213 run_test 204c "Print default stripe count and offset"
12214
12215 test_204d() {
12216         test_mkdir $DIR/$tdir
12217         $SETSTRIPE --stripe-index 0 $DIR/$tdir
12218
12219         check_default_stripe_attr --stripe-count
12220         check_default_stripe_attr --stripe-size
12221 }
12222 run_test 204d "Print default stripe count and size"
12223
12224 test_204e() {
12225         test_mkdir $DIR/$tdir
12226         $SETSTRIPE -d $DIR/$tdir
12227
12228         check_default_stripe_attr --stripe-count --raw
12229         check_default_stripe_attr --stripe-size --raw
12230         check_default_stripe_attr --stripe-index --raw
12231 }
12232 run_test 204e "Print raw stripe attributes"
12233
12234 test_204f() {
12235         test_mkdir $DIR/$tdir
12236         $SETSTRIPE --stripe-count 1 $DIR/$tdir
12237
12238         check_default_stripe_attr --stripe-size --raw
12239         check_default_stripe_attr --stripe-index --raw
12240 }
12241 run_test 204f "Print raw stripe size and offset"
12242
12243 test_204g() {
12244         test_mkdir $DIR/$tdir
12245         $SETSTRIPE --stripe-size 65536 $DIR/$tdir
12246
12247         check_default_stripe_attr --stripe-count --raw
12248         check_default_stripe_attr --stripe-index --raw
12249 }
12250 run_test 204g "Print raw stripe count and offset"
12251
12252 test_204h() {
12253         test_mkdir $DIR/$tdir
12254         $SETSTRIPE --stripe-index 0 $DIR/$tdir
12255
12256         check_default_stripe_attr --stripe-count --raw
12257         check_default_stripe_attr --stripe-size --raw
12258 }
12259 run_test 204h "Print raw stripe count and size"
12260
12261 # Figure out which job scheduler is being used, if any,
12262 # or use a fake one
12263 if [ -n "$SLURM_JOB_ID" ]; then # SLURM
12264         JOBENV=SLURM_JOB_ID
12265 elif [ -n "$LSB_JOBID" ]; then # Load Sharing Facility
12266         JOBENV=LSB_JOBID
12267 elif [ -n "$PBS_JOBID" ]; then # PBS/Maui/Moab
12268         JOBENV=PBS_JOBID
12269 elif [ -n "$LOADL_STEPID" ]; then # LoadLeveller
12270         JOBENV=LOADL_STEP_ID
12271 elif [ -n "$JOB_ID" ]; then # Sun Grid Engine
12272         JOBENV=JOB_ID
12273 else
12274         $LCTL list_param jobid_name > /dev/null 2>&1
12275         if [ $? -eq 0 ]; then
12276                 JOBENV=nodelocal
12277         else
12278                 JOBENV=FAKE_JOBID
12279         fi
12280 fi
12281
12282 verify_jobstats() {
12283         local cmd=($1)
12284         shift
12285         local facets="$@"
12286
12287 # we don't really need to clear the stats for this test to work, since each
12288 # command has a unique jobid, but it makes debugging easier if needed.
12289 #       for facet in $facets; do
12290 #               local dev=$(convert_facet2label $facet)
12291 #               # clear old jobstats
12292 #               do_facet $facet lctl set_param *.$dev.job_stats="clear"
12293 #       done
12294
12295         # use a new JobID for each test, or we might see an old one
12296         [ "$JOBENV" = "FAKE_JOBID" ] &&
12297                 FAKE_JOBID=id.$testnum.$(basename ${cmd[0]}).$RANDOM
12298
12299         JOBVAL=${!JOBENV}
12300
12301         [ "$JOBENV" = "nodelocal" ] && {
12302                 FAKE_JOBID=id.$testnum.$(basename ${cmd[0]}).$RANDOM
12303                 $LCTL set_param jobid_name=$FAKE_JOBID
12304                 JOBVAL=$FAKE_JOBID
12305         }
12306
12307         log "Test: ${cmd[*]}"
12308         log "Using JobID environment variable $JOBENV=$JOBVAL"
12309
12310         if [ $JOBENV = "FAKE_JOBID" ]; then
12311                 FAKE_JOBID=$JOBVAL ${cmd[*]}
12312         else
12313                 ${cmd[*]}
12314         fi
12315
12316         # all files are created on OST0000
12317         for facet in $facets; do
12318                 local stats="*.$(convert_facet2label $facet).job_stats"
12319                 if [ $(do_facet $facet lctl get_param $stats |
12320                        grep -c $JOBVAL) -ne 1 ]; then
12321                         do_facet $facet lctl get_param $stats
12322                         error "No jobstats for $JOBVAL found on $facet::$stats"
12323                 fi
12324         done
12325 }
12326
12327 jobstats_set() {
12328         trap 0
12329         NEW_JOBENV=${1:-$OLD_JOBENV}
12330         do_facet mgs $LCTL conf_param $FSNAME.sys.jobid_var=$NEW_JOBENV
12331         wait_update $HOSTNAME "$LCTL get_param -n jobid_var" $NEW_JOBENV
12332 }
12333
12334 cleanup_205() {
12335         trap 0
12336         do_facet $SINGLEMDS \
12337                 $LCTL set_param mdt.*.job_cleanup_interval=$OLD_INTERVAL
12338         [ $OLD_JOBENV != $JOBENV ] && jobstats_set $OLD_JOBENV
12339         cleanup_changelog
12340 }
12341
12342 test_205() { # Job stats
12343         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.7.1) ]] ||
12344                 { skip "Need MDS version with at least 2.7.1"; return 0; }
12345
12346         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12347         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
12348         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12349         remote_ost_nodsh && skip "remote OST with nodsh" && return
12350
12351         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep jobstats)" ] &&
12352                 skip "Server doesn't support jobstats" && return 0
12353         [[ $JOBID_VAR = disable ]] && skip "jobstats is disabled" && return
12354
12355         OLD_JOBENV=$($LCTL get_param -n jobid_var)
12356         if [ $OLD_JOBENV != $JOBENV ]; then
12357                 jobstats_set $JOBENV
12358                 trap cleanup_205 EXIT
12359         fi
12360
12361         CL_USER=$(do_facet $SINGLEMDS lctl --device $MDT0 changelog_register -n)
12362         echo "Registered as changelog user $CL_USER"
12363
12364         OLD_INTERVAL=$(do_facet $SINGLEMDS \
12365                        lctl get_param -n mdt.*.job_cleanup_interval)
12366         local interval_new=5
12367         do_facet $SINGLEMDS \
12368                 $LCTL set_param mdt.*.job_cleanup_interval=$interval_new
12369         local start=$SECONDS
12370
12371         local cmd
12372         # mkdir
12373         cmd="mkdir $DIR/$tdir"
12374         verify_jobstats "$cmd" "$SINGLEMDS"
12375         # rmdir
12376         cmd="rmdir $DIR/$tdir"
12377         verify_jobstats "$cmd" "$SINGLEMDS"
12378         # mkdir on secondary MDT
12379         if [ $MDSCOUNT -gt 1 ]; then
12380                 cmd="lfs mkdir -i 1 $DIR/$tdir.remote"
12381                 verify_jobstats "$cmd" "mds2"
12382         fi
12383         # mknod
12384         cmd="mknod $DIR/$tfile c 1 3"
12385         verify_jobstats "$cmd" "$SINGLEMDS"
12386         # unlink
12387         cmd="rm -f $DIR/$tfile"
12388         verify_jobstats "$cmd" "$SINGLEMDS"
12389         # create all files on OST0000 so verify_jobstats can find OST stats
12390         # open & close
12391         cmd="$SETSTRIPE -i 0 -c 1 $DIR/$tfile"
12392         verify_jobstats "$cmd" "$SINGLEMDS"
12393         # setattr
12394         cmd="touch $DIR/$tfile"
12395         verify_jobstats "$cmd" "$SINGLEMDS ost1"
12396         # write
12397         cmd="dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 oflag=sync"
12398         verify_jobstats "$cmd" "ost1"
12399         # read
12400         cancel_lru_locks osc
12401         cmd="dd if=$DIR/$tfile of=/dev/null bs=1M count=1 iflag=direct"
12402         verify_jobstats "$cmd" "ost1"
12403         # truncate
12404         cmd="$TRUNCATE $DIR/$tfile 0"
12405         verify_jobstats "$cmd" "$SINGLEMDS ost1"
12406         # rename
12407         cmd="mv -f $DIR/$tfile $DIR/$tdir.rename"
12408         verify_jobstats "$cmd" "$SINGLEMDS"
12409         # jobstats expiry - sleep until old stats should be expired
12410         local left=$((interval_new + 5 - (SECONDS - start)))
12411         [ $left -ge 0 ] && wait_update_facet $SINGLEMDS \
12412                 "lctl get_param *.*.job_stats | grep -c 'job_id.*mkdir'" \
12413                         "0" $left
12414         cmd="mkdir $DIR/$tdir.expire"
12415         verify_jobstats "$cmd" "$SINGLEMDS"
12416         [ $(do_facet $SINGLEMDS lctl get_param *.*.job_stats |
12417             grep -c "job_id.*mkdir") -gt 1 ] && error "old jobstats not expired"
12418
12419         # Ensure that jobid are present in changelog (if supported by MDS)
12420         if [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.52) ]
12421         then
12422                 $LFS changelog $MDT0 | tail -9
12423                 jobids=$($LFS changelog $MDT0 | tail -9 | grep -c "j=")
12424                 [ $jobids -eq 9 ] ||
12425                         error "Wrong changelog jobid count $jobids != 9"
12426
12427                 # LU-5862
12428                 JOBENV="disable"
12429                 jobstats_set $JOBENV
12430                 touch $DIR/$tfile
12431                 $LFS changelog $MDT0 | tail -1
12432                 jobids=$($LFS changelog $MDT0 | tail -1 | grep -c "j=")
12433                 [ $jobids -eq 0 ] ||
12434                         error "Unexpected jobids when jobid_var=$JOBENV"
12435         fi
12436
12437         cleanup_205
12438 }
12439 run_test 205 "Verify job stats"
12440
12441 # LU-1480, LU-1773 and LU-1657
12442 test_206() {
12443         mkdir -p $DIR/$tdir
12444         $SETSTRIPE -c -1 $DIR/$tdir
12445 #define OBD_FAIL_LOV_INIT 0x1403
12446         $LCTL set_param fail_loc=0xa0001403
12447         $LCTL set_param fail_val=1
12448         touch $DIR/$tdir/$tfile || true
12449 }
12450 run_test 206 "fail lov_init_raid0() doesn't lbug"
12451
12452 test_207a() {
12453         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((RANDOM%10+1))
12454         local fsz=`stat -c %s $DIR/$tfile`
12455         cancel_lru_locks mdc
12456
12457         # do not return layout in getattr intent
12458 #define OBD_FAIL_MDS_NO_LL_GETATTR 0x170
12459         $LCTL set_param fail_loc=0x170
12460         local sz=`stat -c %s $DIR/$tfile`
12461
12462         [ $fsz -eq $sz ] || error "file size expected $fsz, actual $sz"
12463
12464         rm -rf $DIR/$tfile
12465 }
12466 run_test 207a "can refresh layout at glimpse"
12467
12468 test_207b() {
12469         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((RANDOM%10+1))
12470         local cksum=`md5sum $DIR/$tfile`
12471         local fsz=`stat -c %s $DIR/$tfile`
12472         cancel_lru_locks mdc
12473         cancel_lru_locks osc
12474
12475         # do not return layout in getattr intent
12476 #define OBD_FAIL_MDS_NO_LL_OPEN 0x171
12477         $LCTL set_param fail_loc=0x171
12478
12479         # it will refresh layout after the file is opened but before read issues
12480         echo checksum is "$cksum"
12481         echo "$cksum" |md5sum -c --quiet || error "file differs"
12482
12483         rm -rf $DIR/$tfile
12484 }
12485 run_test 207b "can refresh layout at open"
12486
12487 test_208() {
12488         # FIXME: in this test suite, only RD lease is used. This is okay
12489         # for now as only exclusive open is supported. After generic lease
12490         # is done, this test suite should be revised. - Jinshan
12491
12492         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12493         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.4.52) ]] ||
12494                 { skip "Need MDS version at least 2.4.52"; return 0; }
12495
12496         echo "==== test 1: verify get lease work"
12497         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:eRE+eU || error "get lease error"
12498
12499         echo "==== test 2: verify lease can be broken by upcoming open"
12500         $MULTIOP $DIR/$tfile oO_RDONLY:eR_E-eUc &
12501         local PID=$!
12502         sleep 1
12503
12504         $MULTIOP $DIR/$tfile oO_RDONLY:c
12505         kill -USR1 $PID && wait $PID || error "break lease error"
12506
12507         echo "==== test 3: verify lease can't be granted if an open already exists"
12508         $MULTIOP $DIR/$tfile oO_RDONLY:_c &
12509         local PID=$!
12510         sleep 1
12511
12512         $MULTIOP $DIR/$tfile oO_RDONLY:eReUc && error "apply lease should fail"
12513         kill -USR1 $PID && wait $PID || error "open file error"
12514
12515         echo "==== test 4: lease can sustain over recovery"
12516         $MULTIOP $DIR/$tfile oO_RDONLY:eR_E+eUc &
12517         PID=$!
12518         sleep 1
12519
12520         fail mds1
12521
12522         kill -USR1 $PID && wait $PID || error "lease broken over recovery"
12523
12524         echo "==== test 5: lease broken can't be regained by replay"
12525         $MULTIOP $DIR/$tfile oO_RDONLY:eR_E-eUc &
12526         PID=$!
12527         sleep 1
12528
12529         # open file to break lease and then recovery
12530         $MULTIOP $DIR/$tfile oO_RDWR:c || error "open file error"
12531         fail mds1
12532
12533         kill -USR1 $PID && wait $PID || error "lease not broken over recovery"
12534
12535         rm -f $DIR/$tfile
12536 }
12537 run_test 208 "Exclusive open"
12538
12539 test_209() {
12540         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep disp_stripe)" ] &&
12541                 skip_env "must have disp_stripe" && return
12542
12543         touch $DIR/$tfile
12544         sync; sleep 5; sync;
12545
12546         echo 3 > /proc/sys/vm/drop_caches
12547         req_before=$(awk '/ptlrpc_cache / { print $2 }' /proc/slabinfo)
12548
12549         # open/close 500 times
12550         for i in $(seq 500); do
12551                 cat $DIR/$tfile
12552         done
12553
12554         echo 3 > /proc/sys/vm/drop_caches
12555         req_after=$(awk '/ptlrpc_cache / { print $2 }' /proc/slabinfo)
12556
12557         echo "before: $req_before, after: $req_after"
12558         [ $((req_after - req_before)) -ge 300 ] &&
12559                 error "open/close requests are not freed"
12560         return 0
12561 }
12562 run_test 209 "read-only open/close requests should be freed promptly"
12563
12564 test_212() {
12565         size=`date +%s`
12566         size=$((size % 8192 + 1))
12567         dd if=/dev/urandom of=$DIR/f212 bs=1k count=$size
12568         sendfile $DIR/f212 $DIR/f212.xyz || error "sendfile wrong"
12569         rm -f $DIR/f212 $DIR/f212.xyz
12570 }
12571 run_test 212 "Sendfile test ============================================"
12572
12573 test_213() {
12574         dd if=/dev/zero of=$DIR/$tfile bs=4k count=4
12575         cancel_lru_locks osc
12576         lctl set_param fail_loc=0x8000040f
12577         # generate a read lock
12578         cat $DIR/$tfile > /dev/null
12579         # write to the file, it will try to cancel the above read lock.
12580         cat /etc/hosts >> $DIR/$tfile
12581 }
12582 run_test 213 "OSC lock completion and cancel race don't crash - bug 18829"
12583
12584 test_214() { # for bug 20133
12585         mkdir -p $DIR/$tdir/d214c || error "mkdir $DIR/$tdir/d214c failed"
12586         for (( i=0; i < 340; i++ )) ; do
12587                 touch $DIR/$tdir/d214c/a$i
12588         done
12589
12590         ls -l $DIR/$tdir || error "ls -l $DIR/d214p failed"
12591         mv $DIR/$tdir/d214c $DIR/ || error "mv $DIR/d214p/d214c $DIR/ failed"
12592         ls $DIR/d214c || error "ls $DIR/d214c failed"
12593         rm -rf $DIR/$tdir || error "rm -rf $DIR/d214* failed"
12594         rm -rf $DIR/d214* || error "rm -rf $DIR/d214* failed"
12595 }
12596 run_test 214 "hash-indexed directory test - bug 20133"
12597
12598 # having "abc" as 1st arg, creates $TMP/lnet_abc.out and $TMP/lnet_abc.sys
12599 create_lnet_proc_files() {
12600         lctl get_param -n $1 >$TMP/lnet_$1.sys || error "cannot read lnet.$1"
12601 }
12602
12603 # counterpart of create_lnet_proc_files
12604 remove_lnet_proc_files() {
12605         rm -f $TMP/lnet_$1.sys
12606 }
12607
12608 # uses 1st arg as trailing part of filename, 2nd arg as description for reports,
12609 # 3rd arg as regexp for body
12610 check_lnet_proc_stats() {
12611         local l=$(cat "$TMP/lnet_$1" |wc -l)
12612         [ $l = 1 ] || (cat "$TMP/lnet_$1" && error "$2 is not of 1 line: $l")
12613
12614         grep -E "$3" "$TMP/lnet_$1" || (cat "$TMP/lnet_$1" && error "$2 misformatted")
12615 }
12616
12617 # uses 1st arg as trailing part of filename, 2nd arg as description for reports,
12618 # 3rd arg as regexp for body, 4th arg as regexp for 1st line, 5th arg is
12619 # optional and can be regexp for 2nd line (lnet.routes case)
12620 check_lnet_proc_entry() {
12621         local blp=2          # blp stands for 'position of 1st line of body'
12622         [ -z "$5" ] || blp=3 # lnet.routes case
12623
12624         local l=$(cat "$TMP/lnet_$1" |wc -l)
12625         # subtracting one from $blp because the body can be empty
12626         [ "$l" -ge "$(($blp - 1))" ] || (cat "$TMP/lnet_$1" && error "$2 is too short: $l")
12627
12628         sed -n '1 p' "$TMP/lnet_$1" |grep -E "$4" >/dev/null ||
12629                 (cat "$TMP/lnet_$1" && error "1st line of $2 misformatted")
12630
12631         [ "$5" = "" ] || sed -n '2 p' "$TMP/lnet_$1" |grep -E "$5" >/dev/null ||
12632                 (cat "$TMP/lnet_$1" && error "2nd line of $2 misformatted")
12633
12634         # bail out if any unexpected line happened
12635         sed -n "$blp p" "$TMP/lnet_$1" | grep -Ev "$3"
12636         [ "$?" != 0 ] || error "$2 misformatted"
12637 }
12638
12639 test_215() { # for bugs 18102, 21079, 21517
12640         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12641         local N='(0|[1-9][0-9]*)'       # non-negative numeric
12642         local P='[1-9][0-9]*'           # positive numeric
12643         local I='(0|-?[1-9][0-9]*|NA)'  # any numeric (0 | >0 | <0) or NA if no value
12644         local NET='[a-z][a-z0-9]*'      # LNET net like o2ib2
12645         local ADDR='[0-9.]+'            # LNET addr like 10.0.0.1
12646         local NID="$ADDR@$NET"          # LNET nid like 10.0.0.1@o2ib2
12647
12648         local L1 # regexp for 1st line
12649         local L2 # regexp for 2nd line (optional)
12650         local BR # regexp for the rest (body)
12651
12652         # lnet.stats should look as 11 space-separated non-negative numerics
12653         BR="^$N $N $N $N $N $N $N $N $N $N $N$"
12654         create_lnet_proc_files "stats"
12655         check_lnet_proc_stats "stats.sys" "lnet.stats" "$BR"
12656         remove_lnet_proc_files "stats"
12657
12658         # lnet.routes should look like this:
12659         # Routing disabled/enabled
12660         # net hops priority state router
12661         # where net is a string like tcp0, hops > 0, priority >= 0,
12662         # state is up/down,
12663         # router is a string like 192.168.1.1@tcp2
12664         L1="^Routing (disabled|enabled)$"
12665         L2="^net +hops +priority +state +router$"
12666         BR="^$NET +$N +(0|1) +(up|down) +$NID$"
12667         create_lnet_proc_files "routes"
12668         check_lnet_proc_entry "routes.sys" "lnet.routes" "$BR" "$L1" "$L2"
12669         remove_lnet_proc_files "routes"
12670
12671         # lnet.routers should look like this:
12672         # ref rtr_ref alive_cnt state last_ping ping_sent deadline down_ni router
12673         # where ref > 0, rtr_ref > 0, alive_cnt >= 0, state is up/down,
12674         # last_ping >= 0, ping_sent is boolean (0/1), deadline and down_ni are
12675         # numeric (0 or >0 or <0), router is a string like 192.168.1.1@tcp2
12676         L1="^ref +rtr_ref +alive_cnt +state +last_ping +ping_sent +deadline +down_ni +router$"
12677         BR="^$P +$P +$N +(up|down) +$N +(0|1) +$I +$I +$NID$"
12678         create_lnet_proc_files "routers"
12679         check_lnet_proc_entry "routers.sys" "lnet.routers" "$BR" "$L1"
12680         remove_lnet_proc_files "routers"
12681
12682         # lnet.peers should look like this:
12683         # nid refs state last max rtr min tx min queue
12684         # where nid is a string like 192.168.1.1@tcp2, refs > 0,
12685         # state is up/down/NA, max >= 0. last, rtr, min, tx, min are
12686         # numeric (0 or >0 or <0), queue >= 0.
12687         L1="^nid +refs +state +last +max +rtr +min +tx +min +queue$"
12688         BR="^$NID +$P +(up|down|NA) +$I +$N +$I +$I +$I +$I +$N$"
12689         create_lnet_proc_files "peers"
12690         check_lnet_proc_entry "peers.sys" "lnet.peers" "$BR" "$L1"
12691         remove_lnet_proc_files "peers"
12692
12693         # lnet.buffers  should look like this:
12694         # pages count credits min
12695         # where pages >=0, count >=0, credits and min are numeric (0 or >0 or <0)
12696         L1="^pages +count +credits +min$"
12697         BR="^ +$N +$N +$I +$I$"
12698         create_lnet_proc_files "buffers"
12699         check_lnet_proc_entry "buffers.sys" "lnet.buffers" "$BR" "$L1"
12700         remove_lnet_proc_files "buffers"
12701
12702         # lnet.nis should look like this:
12703         # nid status alive refs peer rtr max tx min
12704         # where nid is a string like 192.168.1.1@tcp2, status is up/down,
12705         # alive is numeric (0 or >0 or <0), refs >= 0, peer >= 0,
12706         # rtr >= 0, max >=0, tx and min are numeric (0 or >0 or <0).
12707         L1="^nid +status +alive +refs +peer +rtr +max +tx +min$"
12708         BR="^$NID +(up|down) +$I +$N +$N +$N +$N +$I +$I$"
12709         create_lnet_proc_files "nis"
12710         check_lnet_proc_entry "nis.sys" "lnet.nis" "$BR" "$L1"
12711         remove_lnet_proc_files "nis"
12712
12713         # can we successfully write to lnet.stats?
12714         lctl set_param -n stats=0 || error "cannot write to lnet.stats"
12715 }
12716 run_test 215 "lnet exists and has proper content - bugs 18102, 21079, 21517"
12717
12718 test_216() { # bug 20317
12719         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12720         remote_ost_nodsh && skip "remote OST with nodsh" && return
12721
12722         local node
12723         local facets=$(get_facets OST)
12724         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
12725
12726         save_lustre_params client "osc.*.contention_seconds" > $p
12727         save_lustre_params $facets \
12728                 "ldlm.namespaces.filter-*.max_nolock_bytes" >> $p
12729         save_lustre_params $facets \
12730                 "ldlm.namespaces.filter-*.contended_locks" >> $p
12731         save_lustre_params $facets \
12732                 "ldlm.namespaces.filter-*.contention_seconds" >> $p
12733         clear_stats osc.*.osc_stats
12734
12735         # agressive lockless i/o settings
12736         do_nodes $(comma_list $(osts_nodes)) \
12737                 "lctl set_param -n ldlm.namespaces.*.max_nolock_bytes=2000000 \
12738                         ldlm.namespaces.filter-*.contended_locks=0 \
12739                         ldlm.namespaces.filter-*.contention_seconds=60"
12740         lctl set_param -n osc.*.contention_seconds=60
12741
12742         $DIRECTIO write $DIR/$tfile 0 10 4096
12743         $CHECKSTAT -s 40960 $DIR/$tfile
12744
12745         # disable lockless i/o
12746         do_nodes $(comma_list $(osts_nodes)) \
12747                 "lctl set_param -n ldlm.namespaces.filter-*.max_nolock_bytes=0 \
12748                         ldlm.namespaces.filter-*.contended_locks=32 \
12749                         ldlm.namespaces.filter-*.contention_seconds=0"
12750         lctl set_param -n osc.*.contention_seconds=0
12751         clear_stats osc.*.osc_stats
12752
12753         dd if=/dev/zero of=$DIR/$tfile count=0
12754         $CHECKSTAT -s 0 $DIR/$tfile
12755
12756         restore_lustre_params <$p
12757         rm -f $p
12758         rm $DIR/$tfile
12759 }
12760 run_test 216 "check lockless direct write updates file size and kms correctly"
12761
12762 test_217() { # bug 22430
12763         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12764         local node
12765         local nid
12766
12767         for node in $(nodes_list); do
12768                 nid=$(host_nids_address $node $NETTYPE)
12769                 if [[ $nid = *-* ]] ; then
12770                         echo "lctl ping $(h2nettype $nid)"
12771                         lctl ping $(h2nettype $nid)
12772                 else
12773                         echo "skipping $node (no hyphen detected)"
12774                 fi
12775         done
12776 }
12777 run_test 217 "check lctl ping for hostnames with hiphen ('-')"
12778
12779 test_218() {
12780        # do directio so as not to populate the page cache
12781        log "creating a 10 Mb file"
12782        $MULTIOP $DIR/$tfile oO_CREAT:O_DIRECT:O_RDWR:w$((10*1048576))c || error "multiop failed while creating a file"
12783        log "starting reads"
12784        dd if=$DIR/$tfile of=/dev/null bs=4096 &
12785        log "truncating the file"
12786        $MULTIOP $DIR/$tfile oO_TRUNC:c || error "multiop failed while truncating the file"
12787        log "killing dd"
12788        kill %+ || true # reads might have finished
12789        echo "wait until dd is finished"
12790        wait
12791        log "removing the temporary file"
12792        rm -rf $DIR/$tfile || error "tmp file removal failed"
12793 }
12794 run_test 218 "parallel read and truncate should not deadlock ======================="
12795
12796 test_219() {
12797         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12798         # write one partial page
12799         dd if=/dev/zero of=$DIR/$tfile bs=1024 count=1
12800         # set no grant so vvp_io_commit_write will do sync write
12801         $LCTL set_param fail_loc=0x411
12802         # write a full page at the end of file
12803         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 seek=1 conv=notrunc
12804
12805         $LCTL set_param fail_loc=0
12806         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 seek=3
12807         $LCTL set_param fail_loc=0x411
12808         dd if=/dev/zero of=$DIR/$tfile bs=1024 count=1 seek=2 conv=notrunc
12809
12810         # LU-4201
12811         dd if=/dev/zero of=$DIR/$tfile-2 bs=1024 count=1
12812         $CHECKSTAT -s 1024 $DIR/$tfile-2 || error "checkstat wrong size"
12813 }
12814 run_test 219 "LU-394: Write partial won't cause uncontiguous pages vec at LND"
12815
12816 test_220() { #LU-325
12817         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12818         remote_ost_nodsh && skip "remote OST with nodsh" && return
12819         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12820         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
12821         local OSTIDX=0
12822
12823         # create on MDT0000 so the last_id and next_id are correct
12824         mkdir $DIR/$tdir
12825         local OST=$($LFS df $DIR | awk '/OST:'$OSTIDX'/ { print $1 }')
12826         OST=${OST%_UUID}
12827
12828         # on the mdt's osc
12829         local mdtosc_proc1=$(get_mdtosc_proc_path $SINGLEMDS $OST)
12830         local last_id=$(do_facet $SINGLEMDS lctl get_param -n \
12831                         osc.$mdtosc_proc1.prealloc_last_id)
12832         local next_id=$(do_facet $SINGLEMDS lctl get_param -n \
12833                         osc.$mdtosc_proc1.prealloc_next_id)
12834
12835         $LFS df -i
12836
12837         do_facet ost$((OSTIDX + 1)) lctl set_param fail_val=-1
12838         #define OBD_FAIL_OST_ENOINO              0x229
12839         do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=0x229
12840         create_pool $FSNAME.$TESTNAME || return 1
12841         do_facet mgs $LCTL pool_add $FSNAME.$TESTNAME $OST || return 2
12842
12843         $SETSTRIPE $DIR/$tdir -i $OSTIDX -c 1 -p $FSNAME.$TESTNAME
12844
12845         MDSOBJS=$((last_id - next_id))
12846         echo "preallocated objects on MDS is $MDSOBJS" "($last_id - $next_id)"
12847
12848         blocks=$($LFS df $MOUNT | awk '($1 == '$OSTIDX') { print $4 }')
12849         echo "OST still has $count kbytes free"
12850
12851         echo "create $MDSOBJS files @next_id..."
12852         createmany -o $DIR/$tdir/f $MDSOBJS || return 3
12853
12854         local last_id2=$(do_facet mds${MDSIDX} lctl get_param -n \
12855                         osc.$mdtosc_proc1.prealloc_last_id)
12856         local next_id2=$(do_facet mds${MDSIDX} lctl get_param -n \
12857                         osc.$mdtosc_proc1.prealloc_next_id)
12858
12859         echo "after creation, last_id=$last_id2, next_id=$next_id2"
12860         $LFS df -i
12861
12862         echo "cleanup..."
12863
12864         do_facet ost$((OSTIDX + 1)) lctl set_param fail_val=0
12865         do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=0
12866
12867         do_facet mgs $LCTL pool_remove $FSNAME.$TESTNAME $OST || return 4
12868         do_facet mgs $LCTL pool_destroy $FSNAME.$TESTNAME || return 5
12869         echo "unlink $MDSOBJS files @$next_id..."
12870         unlinkmany $DIR/$tdir/f $MDSOBJS || return 6
12871 }
12872 run_test 220 "preallocated MDS objects still used if ENOSPC from OST"
12873
12874 test_221() {
12875         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12876         dd if=`which date` of=$MOUNT/date oflag=sync
12877         chmod +x $MOUNT/date
12878
12879         #define OBD_FAIL_LLITE_FAULT_TRUNC_RACE  0x1401
12880         $LCTL set_param fail_loc=0x80001401
12881
12882         $MOUNT/date > /dev/null
12883         rm -f $MOUNT/date
12884 }
12885 run_test 221 "make sure fault and truncate race to not cause OOM"
12886
12887 test_222a () {
12888         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12889         rm -rf $DIR/$tdir
12890         test_mkdir $DIR/$tdir
12891         $LFS setstripe -c 1 -i 0 $DIR/$tdir
12892         createmany -o $DIR/$tdir/$tfile 10
12893         cancel_lru_locks mdc
12894         cancel_lru_locks osc
12895         #define OBD_FAIL_LDLM_AGL_DELAY           0x31a
12896         $LCTL set_param fail_loc=0x31a
12897         ls -l $DIR/$tdir > /dev/null || error "AGL for ls failed"
12898         $LCTL set_param fail_loc=0
12899         rm -r $DIR/$tdir
12900 }
12901 run_test 222a "AGL for ls should not trigger CLIO lock failure"
12902
12903 test_222b () {
12904         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12905         rm -rf $DIR/$tdir
12906         test_mkdir $DIR/$tdir
12907         $LFS setstripe -c 1 -i 0 $DIR/$tdir
12908         createmany -o $DIR/$tdir/$tfile 10
12909         cancel_lru_locks mdc
12910         cancel_lru_locks osc
12911         #define OBD_FAIL_LDLM_AGL_DELAY           0x31a
12912         $LCTL set_param fail_loc=0x31a
12913         rm -r $DIR/$tdir || error "AGL for rmdir failed"
12914         $LCTL set_param fail_loc=0
12915 }
12916 run_test 222b "AGL for rmdir should not trigger CLIO lock failure"
12917
12918 test_223 () {
12919         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12920         rm -rf $DIR/$tdir
12921         test_mkdir $DIR/$tdir
12922         $LFS setstripe -c 1 -i 0 $DIR/$tdir
12923         createmany -o $DIR/$tdir/$tfile 10
12924         cancel_lru_locks mdc
12925         cancel_lru_locks osc
12926         #define OBD_FAIL_LDLM_AGL_NOLOCK          0x31b
12927         $LCTL set_param fail_loc=0x31b
12928         ls -l $DIR/$tdir > /dev/null || error "reenqueue failed"
12929         $LCTL set_param fail_loc=0
12930         rm -r $DIR/$tdir
12931 }
12932 run_test 223 "osc reenqueue if without AGL lock granted ======================="
12933
12934 test_224a() { # LU-1039, MRP-303
12935         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12936         #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB   0x508
12937         $LCTL set_param fail_loc=0x508
12938         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 conv=fsync
12939         $LCTL set_param fail_loc=0
12940         df $DIR
12941 }
12942 run_test 224a "Don't panic on bulk IO failure"
12943
12944 test_224b() { # LU-1039, MRP-303
12945         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12946         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1
12947         cancel_lru_locks osc
12948         #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB2   0x515
12949         $LCTL set_param fail_loc=0x515
12950         dd of=/dev/null if=$DIR/$tfile bs=4096 count=1
12951         $LCTL set_param fail_loc=0
12952         df $DIR
12953 }
12954 run_test 224b "Don't panic on bulk IO failure"
12955
12956 test_224c() { # LU-6441
12957         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12958         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12959
12960         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
12961         save_writethrough $p
12962         set_cache writethrough on
12963
12964         local pages_per_rpc=$($LCTL get_param \
12965                                 osc.*.max_pages_per_rpc)
12966         local at_max=$($LCTL get_param -n at_max)
12967         local timeout=$($LCTL get_param -n timeout)
12968         local test_at="$LCTL get_param -n at_max"
12969         local param_at="$FSNAME.sys.at_max"
12970         local test_timeout="$LCTL get_param -n timeout"
12971         local param_timeout="$FSNAME.sys.timeout"
12972
12973         $LCTL set_param -n osc.*.max_pages_per_rpc=1024
12974
12975         set_conf_param_and_check client "$test_at" "$param_at" 0 ||
12976                 error "conf_param at_max=0 failed"
12977         set_conf_param_and_check client "$test_timeout" "$param_timeout" 5 ||
12978                 error "conf_param timeout=5 failed"
12979
12980         #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB3   0x520
12981         do_facet ost1 $LCTL set_param fail_loc=0x520
12982         $LFS setstripe -c 1 -i 0 $DIR/$tfile
12983         dd if=/dev/zero of=$DIR/$tfile bs=8MB count=1
12984         sync
12985         do_facet ost1 $LCTL set_param fail_loc=0
12986
12987         set_conf_param_and_check client "$test_at" "$param_at" $at_max ||
12988                 error "conf_param at_max=$at_max failed"
12989         set_conf_param_and_check client "$test_timeout" "$param_timeout" \
12990                 $timeout || error "conf_param timeout=$timeout failed"
12991
12992         $LCTL set_param -n $pages_per_rpc
12993         restore_lustre_params < $p
12994         rm -f $p
12995 }
12996 run_test 224c "Don't hang if one of md lost during large bulk RPC"
12997
12998 MDSSURVEY=${MDSSURVEY:-$(which mds-survey 2>/dev/null || true)}
12999 test_225a () {
13000         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13001         remote_mds_nodsh && skip "remote MDS with nodsh" && return
13002         if [ -z ${MDSSURVEY} ]; then
13003               skip_env "mds-survey not found" && return
13004         fi
13005
13006         [ $MDSCOUNT -ge 2 ] &&
13007                 skip "skipping now for more than one MDT" && return
13008
13009        [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ] ||
13010             { skip "Need MDS version at least 2.2.51"; return; }
13011
13012        local mds=$(facet_host $SINGLEMDS)
13013        local target=$(do_nodes $mds 'lctl dl' | \
13014                       awk "{if (\$2 == \"UP\" && \$3 == \"mdt\") {print \$4}}")
13015
13016        local cmd1="file_count=1000 thrhi=4"
13017        local cmd2="dir_count=2 layer=mdd stripe_count=0"
13018        local cmd3="rslt_loc=${TMP} targets=\"$mds:$target\" $MDSSURVEY"
13019        local cmd="$cmd1 $cmd2 $cmd3"
13020
13021        rm -f ${TMP}/mds_survey*
13022        echo + $cmd
13023        eval $cmd || error "mds-survey with zero-stripe failed"
13024        cat ${TMP}/mds_survey*
13025        rm -f ${TMP}/mds_survey*
13026 }
13027 run_test 225a "Metadata survey sanity with zero-stripe"
13028
13029 test_225b () {
13030         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13031         remote_mds_nodsh && skip "remote MDS with nodsh" && return
13032         if [ -z ${MDSSURVEY} ]; then
13033               skip_env "mds-survey not found" && return
13034         fi
13035         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ] ||
13036             { skip "Need MDS version at least 2.2.51"; return; }
13037
13038         if [ $($LCTL dl | grep -c osc) -eq 0 ]; then
13039               skip_env "Need to mount OST to test" && return
13040         fi
13041
13042         [ $MDSCOUNT -ge 2 ] &&
13043                 skip "skipping now for more than one MDT" && return
13044        local mds=$(facet_host $SINGLEMDS)
13045        local target=$(do_nodes $mds 'lctl dl' | \
13046                       awk "{if (\$2 == \"UP\" && \$3 == \"mdt\") {print \$4}}")
13047
13048        local cmd1="file_count=1000 thrhi=4"
13049        local cmd2="dir_count=2 layer=mdd stripe_count=1"
13050        local cmd3="rslt_loc=${TMP} targets=\"$mds:$target\" $MDSSURVEY"
13051        local cmd="$cmd1 $cmd2 $cmd3"
13052
13053        rm -f ${TMP}/mds_survey*
13054        echo + $cmd
13055        eval $cmd || error "mds-survey with stripe_count failed"
13056        cat ${TMP}/mds_survey*
13057        rm -f ${TMP}/mds_survey*
13058 }
13059 run_test 225b "Metadata survey sanity with stripe_count = 1"
13060
13061 mcreate_path2fid () {
13062         local mode=$1
13063         local major=$2
13064         local minor=$3
13065         local name=$4
13066         local desc=$5
13067         local path=$DIR/$tdir/$name
13068         local fid
13069         local rc
13070         local fid_path
13071
13072         $MCREATE --mode=$1 --major=$2 --minor=$3 $path ||
13073                 error "cannot create $desc"
13074
13075         fid=$($LFS path2fid $path | tr -d '[' | tr -d ']')
13076         rc=$?
13077         [ $rc -ne 0 ] && error "cannot get fid of a $desc"
13078
13079         fid_path=$($LFS fid2path $MOUNT $fid)
13080         rc=$?
13081         [ $rc -ne 0 ] && error "cannot get path of $desc by $DIR $path $fid"
13082
13083         [ "$path" == "$fid_path" ] ||
13084                 error "fid2path returned $fid_path, expected $path"
13085
13086         echo "pass with $path and $fid"
13087 }
13088
13089 test_226a () {
13090         rm -rf $DIR/$tdir
13091         mkdir -p $DIR/$tdir
13092
13093         mcreate_path2fid 0010666 0 0 fifo "FIFO"
13094         mcreate_path2fid 0020666 1 3 null "character special file (null)"
13095         mcreate_path2fid 0020666 1 255 none "character special file (no device)"
13096         mcreate_path2fid 0040666 0 0 dir "directory"
13097         mcreate_path2fid 0060666 7 0 loop0 "block special file (loop)"
13098         mcreate_path2fid 0100666 0 0 file "regular file"
13099         mcreate_path2fid 0120666 0 0 link "symbolic link"
13100         mcreate_path2fid 0140666 0 0 sock "socket"
13101 }
13102 run_test 226a "call path2fid and fid2path on files of all type"
13103
13104 test_226b () {
13105         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13106         rm -rf $DIR/$tdir
13107         local MDTIDX=1
13108
13109         mkdir -p $DIR/$tdir
13110         $LFS setdirstripe -i $MDTIDX $DIR/$tdir/remote_dir ||
13111                 error "create remote directory failed"
13112         mcreate_path2fid 0010666 0 0 "remote_dir/fifo" "FIFO"
13113         mcreate_path2fid 0020666 1 3 "remote_dir/null" \
13114                                 "character special file (null)"
13115         mcreate_path2fid 0020666 1 255 "remote_dir/none" \
13116                                 "character special file (no device)"
13117         mcreate_path2fid 0040666 0 0 "remote_dir/dir" "directory"
13118         mcreate_path2fid 0060666 7 0 "remote_dir/loop0" \
13119                                 "block special file (loop)"
13120         mcreate_path2fid 0100666 0 0 "remote_dir/file" "regular file"
13121         mcreate_path2fid 0120666 0 0 "remote_dir/link" "symbolic link"
13122         mcreate_path2fid 0140666 0 0 "remote_dir/sock" "socket"
13123 }
13124 run_test 226b "call path2fid and fid2path on files of all type under remote dir"
13125
13126 # LU-1299 Executing or running ldd on a truncated executable does not
13127 # cause an out-of-memory condition.
13128 test_227() {
13129         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13130         [ -z "$(which ldd)" ] && skip "should have ldd tool" && return
13131         dd if=$(which date) of=$MOUNT/date bs=1k count=1
13132         chmod +x $MOUNT/date
13133
13134         $MOUNT/date > /dev/null
13135         ldd $MOUNT/date > /dev/null
13136         rm -f $MOUNT/date
13137 }
13138 run_test 227 "running truncated executable does not cause OOM"
13139
13140 # LU-1512 try to reuse idle OI blocks
13141 test_228a() {
13142         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13143         remote_mds_nodsh && skip "remote MDS with nodsh" && return
13144         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
13145                 skip "ldiskfs only test" && return
13146
13147         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
13148         local myDIR=$DIR/$tdir
13149
13150         mkdir -p $myDIR
13151         #define OBD_FAIL_SEQ_EXHAUST             0x1002
13152         $LCTL set_param fail_loc=0x80001002
13153         createmany -o $myDIR/t- 10000
13154         $LCTL set_param fail_loc=0
13155         # The guard is current the largest FID holder
13156         touch $myDIR/guard
13157         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
13158                     tr -d '[')
13159         local IDX=$(($SEQ % 64))
13160
13161         do_facet $SINGLEMDS sync
13162         # Make sure journal flushed.
13163         sleep 6
13164         local blk1=$(do_facet $SINGLEMDS \
13165                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
13166                      grep Blockcount | awk '{print $4}')
13167
13168         # Remove old files, some OI blocks will become idle.
13169         unlinkmany $myDIR/t- 10000
13170         # Create new files, idle OI blocks should be reused.
13171         createmany -o $myDIR/t- 2000
13172         do_facet $SINGLEMDS sync
13173         # Make sure journal flushed.
13174         sleep 6
13175         local blk2=$(do_facet $SINGLEMDS \
13176                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
13177                      grep Blockcount | awk '{print $4}')
13178
13179         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
13180 }
13181 run_test 228a "try to reuse idle OI blocks"
13182
13183 test_228b() {
13184         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13185         remote_mds_nodsh && skip "remote MDS with nodsh" && return
13186         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
13187                 skip "ldiskfs only test" && return
13188
13189         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
13190         local myDIR=$DIR/$tdir
13191
13192         mkdir -p $myDIR
13193         #define OBD_FAIL_SEQ_EXHAUST             0x1002
13194         $LCTL set_param fail_loc=0x80001002
13195         createmany -o $myDIR/t- 10000
13196         $LCTL set_param fail_loc=0
13197         # The guard is current the largest FID holder
13198         touch $myDIR/guard
13199         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
13200                     tr -d '[')
13201         local IDX=$(($SEQ % 64))
13202
13203         do_facet $SINGLEMDS sync
13204         # Make sure journal flushed.
13205         sleep 6
13206         local blk1=$(do_facet $SINGLEMDS \
13207                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
13208                      grep Blockcount | awk '{print $4}')
13209
13210         # Remove old files, some OI blocks will become idle.
13211         unlinkmany $myDIR/t- 10000
13212
13213         # stop the MDT
13214         stop $SINGLEMDS || error "Fail to stop MDT."
13215         # remount the MDT
13216         start $SINGLEMDS $MDT_DEV $MDS_MOUNT_OPTS || error "Fail to start MDT."
13217
13218         df $MOUNT || error "Fail to df."
13219         # Create new files, idle OI blocks should be reused.
13220         createmany -o $myDIR/t- 2000
13221         do_facet $SINGLEMDS sync
13222         # Make sure journal flushed.
13223         sleep 6
13224         local blk2=$(do_facet $SINGLEMDS \
13225                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
13226                      grep Blockcount | awk '{print $4}')
13227
13228         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
13229 }
13230 run_test 228b "idle OI blocks can be reused after MDT restart"
13231
13232 #LU-1881
13233 test_228c() {
13234         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13235         remote_mds_nodsh && skip "remote MDS with nodsh" && return
13236         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
13237                 skip "ldiskfs only test" && return
13238
13239         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
13240         local myDIR=$DIR/$tdir
13241
13242         mkdir -p $myDIR
13243         #define OBD_FAIL_SEQ_EXHAUST             0x1002
13244         $LCTL set_param fail_loc=0x80001002
13245         # 20000 files can guarantee there are index nodes in the OI file
13246         createmany -o $myDIR/t- 20000
13247         $LCTL set_param fail_loc=0
13248         # The guard is current the largest FID holder
13249         touch $myDIR/guard
13250         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
13251                     tr -d '[')
13252         local IDX=$(($SEQ % 64))
13253
13254         do_facet $SINGLEMDS sync
13255         # Make sure journal flushed.
13256         sleep 6
13257         local blk1=$(do_facet $SINGLEMDS \
13258                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
13259                      grep Blockcount | awk '{print $4}')
13260
13261         # Remove old files, some OI blocks will become idle.
13262         unlinkmany $myDIR/t- 20000
13263         rm -f $myDIR/guard
13264         # The OI file should become empty now
13265
13266         # Create new files, idle OI blocks should be reused.
13267         createmany -o $myDIR/t- 2000
13268         do_facet $SINGLEMDS sync
13269         # Make sure journal flushed.
13270         sleep 6
13271         local blk2=$(do_facet $SINGLEMDS \
13272                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
13273                      grep Blockcount | awk '{print $4}')
13274
13275         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
13276 }
13277 run_test 228c "NOT shrink the last entry in OI index node to recycle idle leaf"
13278
13279 test_229() { # LU-2482, LU-3448
13280         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.53) ] &&
13281                 skip "No HSM $(lustre_build_version $SINGLEMDS) MDS < 2.4.53" &&
13282                 return
13283         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13284         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
13285
13286         rm -f $DIR/$tfile
13287
13288         # Create a file with a released layout and stripe count 2.
13289         $MULTIOP $DIR/$tfile H2c ||
13290                 error "failed to create file with released layout"
13291
13292         $GETSTRIPE -v $DIR/$tfile
13293
13294         local pattern=$($GETSTRIPE -L $DIR/$tfile)
13295         [ X"$pattern" = X"80000001" ] || error "pattern error ($pattern)"
13296
13297         local stripe_count=$($GETSTRIPE -c $DIR/$tfile) || error "getstripe"
13298         [ $stripe_count -eq 2 ] || error "stripe count not 2 ($stripe_count)"
13299         stat $DIR/$tfile || error "failed to stat released file"
13300
13301         chown $RUNAS_ID $DIR/$tfile ||
13302                 error "chown $RUNAS_ID $DIR/$tfile failed"
13303
13304         chgrp $RUNAS_ID $DIR/$tfile ||
13305                 error "chgrp $RUNAS_ID $DIR/$tfile failed"
13306
13307         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
13308         rm $DIR/$tfile || error "failed to remove released file"
13309 }
13310 run_test 229 "getstripe/stat/rm/attr changes work on released files"
13311
13312 test_230a() {
13313         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13314         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13315         local MDTIDX=1
13316
13317         test_mkdir $DIR/$tdir
13318         test_mkdir -i0 -c1 $DIR/$tdir/test_230_local
13319         local mdt_idx=$($GETSTRIPE -M $DIR/$tdir/test_230_local)
13320         [ $mdt_idx -ne 0 ] &&
13321                 error "create local directory on wrong MDT $mdt_idx"
13322
13323         $LFS mkdir -i $MDTIDX $DIR/$tdir/test_230 ||
13324                         error "create remote directory failed"
13325         local mdt_idx=$($GETSTRIPE -M $DIR/$tdir/test_230)
13326         [ $mdt_idx -ne $MDTIDX ] &&
13327                 error "create remote directory on wrong MDT $mdt_idx"
13328
13329         createmany -o $DIR/$tdir/test_230/t- 10 ||
13330                 error "create files on remote directory failed"
13331         mdt_idx=$($GETSTRIPE -M $DIR/$tdir/test_230/t-0)
13332         [ $mdt_idx -ne $MDTIDX ] && error "create files on wrong MDT $mdt_idx"
13333         rm -r $DIR/$tdir || error "unlink remote directory failed"
13334 }
13335 run_test 230a "Create remote directory and files under the remote directory"
13336
13337 test_230b() {
13338         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13339         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13340         local MDTIDX=1
13341         local mdt_index
13342         local i
13343         local file
13344         local pid
13345         local stripe_count
13346         local migrate_dir=$DIR/$tdir/migrate_dir
13347         local other_dir=$DIR/$tdir/other_dir
13348
13349         test_mkdir $DIR/$tdir
13350         test_mkdir -i0 -c1 $migrate_dir
13351         test_mkdir -i0 -c1 $other_dir
13352         for ((i=0; i<10; i++)); do
13353                 mkdir -p $migrate_dir/dir_${i}
13354                 createmany -o $migrate_dir/dir_${i}/f 10 ||
13355                         error "create files under remote dir failed $i"
13356         done
13357
13358         cp /etc/passwd $migrate_dir/$tfile
13359         cp /etc/passwd $other_dir/$tfile
13360         chattr +SAD $migrate_dir
13361         chattr +SAD $migrate_dir/$tfile
13362
13363         local old_dir_flag=$(lsattr -a $migrate_dir | awk '/\/\.$/ {print $1}')
13364         local old_file_flag=$(lsattr $migrate_dir/$tfile | awk '{print $1}')
13365         local old_dir_mode=$(stat -c%f $migrate_dir)
13366         local old_file_mode=$(stat -c%f $migrate_dir/$tfile)
13367
13368         mkdir -p $migrate_dir/dir_default_stripe2
13369         $SETSTRIPE -c 2 $migrate_dir/dir_default_stripe2
13370         $SETSTRIPE -c 2 $migrate_dir/${tfile}_stripe2
13371
13372         mkdir -p $other_dir
13373         ln $migrate_dir/$tfile $other_dir/luna
13374         ln $migrate_dir/$tfile $migrate_dir/sofia
13375         ln $other_dir/$tfile $migrate_dir/david
13376         ln -s $migrate_dir/$tfile $other_dir/zachary
13377         ln -s $migrate_dir/$tfile $migrate_dir/${tfile}_ln
13378         ln -s $other_dir/$tfile $migrate_dir/${tfile}_ln_other
13379
13380         $LFS migrate -m $MDTIDX $migrate_dir ||
13381                 error "fails on migrating remote dir to MDT1"
13382
13383         echo "migratate to MDT1, then checking.."
13384         for ((i = 0; i < 10; i++)); do
13385                 for file in $(find $migrate_dir/dir_${i}); do
13386                         mdt_index=$($LFS getstripe -M $file)
13387                         [ $mdt_index == $MDTIDX ] ||
13388                                 error "$file is not on MDT${MDTIDX}"
13389                 done
13390         done
13391
13392         # the multiple link file should still in MDT0
13393         mdt_index=$($LFS getstripe -M $migrate_dir/$tfile)
13394         [ $mdt_index == 0 ] ||
13395                 error "$file is not on MDT${MDTIDX}"
13396
13397         local new_dir_flag=$(lsattr -a $migrate_dir | awk '/\/\.$/ {print $1}')
13398         [ "$old_dir_flag" = "$new_dir_flag" ] ||
13399                 error " expect $old_dir_flag get $new_dir_flag"
13400
13401         local new_file_flag=$(lsattr $migrate_dir/$tfile | awk '{print $1}')
13402         [ "$old_file_flag" = "$new_file_flag" ] ||
13403                 error " expect $old_file_flag get $new_file_flag"
13404
13405         local new_dir_mode=$(stat -c%f $migrate_dir)
13406         [ "$old_dir_mode" = "$new_dir_mode" ] ||
13407                 error "expect mode $old_dir_mode get $new_dir_mode"
13408
13409         local new_file_mode=$(stat -c%f $migrate_dir/$tfile)
13410         [ "$old_file_mode" = "$new_file_mode" ] ||
13411                 error "expect mode $old_file_mode get $new_file_mode"
13412
13413         diff /etc/passwd $migrate_dir/$tfile ||
13414                 error "$tfile different after migration"
13415
13416         diff /etc/passwd $other_dir/luna ||
13417                 error "luna different after migration"
13418
13419         diff /etc/passwd $migrate_dir/sofia ||
13420                 error "sofia different after migration"
13421
13422         diff /etc/passwd $migrate_dir/david ||
13423                 error "david different after migration"
13424
13425         diff /etc/passwd $other_dir/zachary ||
13426                 error "zachary different after migration"
13427
13428         diff /etc/passwd $migrate_dir/${tfile}_ln ||
13429                 error "${tfile}_ln different after migration"
13430
13431         diff /etc/passwd $migrate_dir/${tfile}_ln_other ||
13432                 error "${tfile}_ln_other different after migration"
13433
13434         stripe_count=$($LFS getstripe -c $migrate_dir/dir_default_stripe2)
13435         [ $stripe_count = 2 ] ||
13436                 error "dir strpe_count $d != 2 after migration."
13437
13438         stripe_count=$($LFS getstripe -c $migrate_dir/${tfile}_stripe2)
13439         [ $stripe_count = 2 ] ||
13440                 error "file strpe_count $d != 2 after migration."
13441
13442         #migrate back to MDT0
13443         MDTIDX=0
13444
13445         $LFS migrate -m $MDTIDX $migrate_dir ||
13446                 error "fails on migrating remote dir to MDT0"
13447
13448         echo "migrate back to MDT0, checking.."
13449         for file in $(find $migrate_dir); do
13450                 mdt_index=$($LFS getstripe -M $file)
13451                 [ $mdt_index == $MDTIDX ] ||
13452                         error "$file is not on MDT${MDTIDX}"
13453         done
13454
13455         local new_dir_flag=$(lsattr -a $migrate_dir | awk '/\/\.$/ {print $1}')
13456         [ "$old_dir_flag" = "$new_dir_flag" ] ||
13457                 error " expect $old_dir_flag get $new_dir_flag"
13458
13459         local new_file_flag=$(lsattr $migrate_dir/$tfile | awk '{print $1}')
13460         [ "$old_file_flag" = "$new_file_flag" ] ||
13461                 error " expect $old_file_flag get $new_file_flag"
13462
13463         local new_dir_mode=$(stat -c%f $migrate_dir)
13464         [ "$old_dir_mode" = "$new_dir_mode" ] ||
13465                 error "expect mode $old_dir_mode get $new_dir_mode"
13466
13467         local new_file_mode=$(stat -c%f $migrate_dir/$tfile)
13468         [ "$old_file_mode" = "$new_file_mode" ] ||
13469                 error "expect mode $old_file_mode get $new_file_mode"
13470
13471         diff /etc/passwd ${migrate_dir}/$tfile ||
13472                 error "$tfile different after migration"
13473
13474         diff /etc/passwd ${other_dir}/luna ||
13475                 error "luna different after migration"
13476
13477         diff /etc/passwd ${migrate_dir}/sofia ||
13478                 error "sofia different after migration"
13479
13480         diff /etc/passwd ${other_dir}/zachary ||
13481                 error "zachary different after migration"
13482
13483         diff /etc/passwd $migrate_dir/${tfile}_ln ||
13484                 error "${tfile}_ln different after migration"
13485
13486         diff /etc/passwd $migrate_dir/${tfile}_ln_other ||
13487                 error "${tfile}_ln_other different after migration"
13488
13489         stripe_count=$($LFS getstripe -c ${migrate_dir}/dir_default_stripe2)
13490         [ $stripe_count = 2 ] ||
13491                 error "dir strpe_count $d != 2 after migration."
13492
13493         stripe_count=$($LFS getstripe -c ${migrate_dir}/${tfile}_stripe2)
13494         [ $stripe_count = 2 ] ||
13495                 error "file strpe_count $d != 2 after migration."
13496
13497         rm -rf $DIR/$tdir || error "rm dir failed after migration"
13498 }
13499 run_test 230b "migrate directory"
13500
13501 test_230c() {
13502         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13503         remote_mds_nodsh && skip "remote MDS with nodsh" && return
13504         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13505         local MDTIDX=1
13506         local mdt_index
13507         local file
13508         local migrate_dir=$DIR/$tdir/migrate_dir
13509
13510         #If migrating directory fails in the middle, all entries of
13511         #the directory is still accessiable.
13512         test_mkdir $DIR/$tdir
13513         test_mkdir -i0 -c1 $migrate_dir
13514         stat $migrate_dir
13515         createmany -o $migrate_dir/f 10 ||
13516                 error "create files under ${migrate_dir} failed"
13517
13518         #failed after migrating 5 entries
13519         #OBD_FAIL_MIGRATE_ENTRIES       0x1801
13520         do_facet mds1 lctl set_param fail_loc=0x20001801
13521         do_facet mds1 lctl  set_param fail_val=5
13522         local t=$(ls $migrate_dir | wc -l)
13523         $LFS migrate --mdt-index $MDTIDX $migrate_dir &&
13524                 error "migrate should fail after 5 entries"
13525
13526         mkdir $migrate_dir/dir &&
13527                 error "mkdir succeeds under migrating directory"
13528         touch $migrate_dir/file &&
13529                 error "touch file succeeds under migrating directory"
13530
13531         local u=$(ls $migrate_dir | wc -l)
13532         [ "$u" == "$t" ] || error "$u != $t during migration"
13533
13534         for file in $(find $migrate_dir); do
13535                 stat $file || error "stat $file failed"
13536         done
13537
13538         do_facet mds1 lctl set_param fail_loc=0
13539         do_facet mds1 lctl set_param fail_val=0
13540
13541         $LFS migrate -m $MDTIDX $migrate_dir ||
13542                 error "migrate open files should failed with open files"
13543
13544         echo "Finish migration, then checking.."
13545         for file in $(find $migrate_dir); do
13546                 mdt_index=$($LFS getstripe -M $file)
13547                 [ $mdt_index == $MDTIDX ] ||
13548                         error "$file is not on MDT${MDTIDX}"
13549         done
13550
13551         rm -rf $DIR/$tdir || error "rm dir failed after migration"
13552 }
13553 run_test 230c "check directory accessiblity if migration is failed"
13554
13555 test_230d() {
13556         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13557         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13558         local MDTIDX=1
13559         local mdt_index
13560         local migrate_dir=$DIR/$tdir/migrate_dir
13561         local i
13562         local j
13563
13564         test_mkdir $DIR/$tdir
13565         test_mkdir -i0 -c1 $migrate_dir
13566
13567         for ((i=0; i<100; i++)); do
13568                 test_mkdir -i0 -c1 $migrate_dir/dir_${i}
13569                 createmany -o $migrate_dir/dir_${i}/f 100 ||
13570                         error "create files under remote dir failed $i"
13571         done
13572
13573         $LFS migrate -m $MDTIDX $migrate_dir ||
13574                 error "migrate remote dir error"
13575
13576         echo "Finish migration, then checking.."
13577         for file in $(find $migrate_dir); do
13578                 mdt_index=$($LFS getstripe -M $file)
13579                 [ $mdt_index == $MDTIDX ] ||
13580                         error "$file is not on MDT${MDTIDX}"
13581         done
13582
13583         rm -rf $DIR/$tdir || error "rm dir failed after migration"
13584 }
13585 run_test 230d "check migrate big directory"
13586
13587 test_230e() {
13588         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13589         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13590         local i
13591         local j
13592         local a_fid
13593         local b_fid
13594
13595         mkdir -p $DIR/$tdir
13596         mkdir $DIR/$tdir/migrate_dir
13597         mkdir $DIR/$tdir/other_dir
13598         touch $DIR/$tdir/migrate_dir/a
13599         ln $DIR/$tdir/migrate_dir/a $DIR/$tdir/other_dir/b
13600         ls $DIR/$tdir/other_dir
13601
13602         $LFS migrate -m 1 $DIR/$tdir/migrate_dir ||
13603                 error "migrate dir fails"
13604
13605         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir)
13606         [ $mdt_index == 1 ] || error "migrate_dir is not on MDT1"
13607
13608         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir/a)
13609         [ $mdt_index == 0 ] || error "a is not on MDT0"
13610
13611         $LFS migrate -m 1 $DIR/$tdir/other_dir ||
13612                 error "migrate dir fails"
13613
13614         mdt_index=$($LFS getstripe -M $DIR/$tdir/other_dir)
13615         [ $mdt_index == 1 ] || error "other_dir is not on MDT1"
13616
13617         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir/a)
13618         [ $mdt_index == 1 ] || error "a is not on MDT1"
13619
13620         mdt_index=$($LFS getstripe -M $DIR/$tdir/other_dir/b)
13621         [ $mdt_index == 1 ] || error "b is not on MDT1"
13622
13623         a_fid=$($LFS path2fid $DIR/$tdir/migrate_dir/a)
13624         b_fid=$($LFS path2fid $DIR/$tdir/other_dir/b)
13625
13626         [ "$a_fid" = "$b_fid" ] || error "different fid after migration"
13627
13628         rm -rf $DIR/$tdir || error "rm dir failed after migration"
13629 }
13630 run_test 230e "migrate mulitple local link files"
13631
13632 test_230f() {
13633         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13634         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13635         local a_fid
13636         local ln_fid
13637
13638         mkdir -p $DIR/$tdir
13639         mkdir $DIR/$tdir/migrate_dir
13640         $LFS mkdir -i1 $DIR/$tdir/other_dir
13641         touch $DIR/$tdir/migrate_dir/a
13642         ln $DIR/$tdir/migrate_dir/a $DIR/$tdir/other_dir/ln1
13643         ln $DIR/$tdir/migrate_dir/a $DIR/$tdir/other_dir/ln2
13644         ls $DIR/$tdir/other_dir
13645
13646         # a should be migrated to MDT1, since no other links on MDT0
13647         $LFS migrate -m 1 $DIR/$tdir/migrate_dir ||
13648                 error "#1 migrate dir fails"
13649         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir)
13650         [ $mdt_index == 1 ] || error "migrate_dir is not on MDT1"
13651         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir/a)
13652         [ $mdt_index == 1 ] || error "a is not on MDT1"
13653
13654         # a should stay on MDT1, because it is a mulitple link file
13655         $LFS migrate -m 0 $DIR/$tdir/migrate_dir ||
13656                 error "#2 migrate dir fails"
13657         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir/a)
13658         [ $mdt_index == 1 ] || error "a is not on MDT1"
13659
13660         $LFS migrate -m 1 $DIR/$tdir/migrate_dir ||
13661                 error "#3 migrate dir fails"
13662
13663         a_fid=$($LFS path2fid $DIR/$tdir/migrate_dir/a)
13664         ln_fid=$($LFS path2fid $DIR/$tdir/other_dir/ln1)
13665         [ "$a_fid" = "$ln_fid" ] || error "different fid after migrate to MDT1"
13666
13667         rm -rf $DIR/$tdir/other_dir/ln1 || error "unlink ln1 fails"
13668         rm -rf $DIR/$tdir/other_dir/ln2 || error "unlink ln2 fails"
13669
13670         # a should be migrated to MDT0, since no other links on MDT1
13671         $LFS migrate -m 0 $DIR/$tdir/migrate_dir ||
13672                 error "#4 migrate dir fails"
13673         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir/a)
13674         [ $mdt_index == 0 ] || error "a is not on MDT0"
13675
13676         rm -rf $DIR/$tdir || error "rm dir failed after migration"
13677 }
13678 run_test 230f "migrate mulitple remote link files"
13679
13680 test_230g() {
13681         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13682         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13683
13684         mkdir -p $DIR/$tdir/migrate_dir
13685
13686         $LFS migrate -m 1000 $DIR/$tdir/migrate_dir &&
13687                 error "migrating dir to non-exist MDT succeeds"
13688         true
13689 }
13690 run_test 230g "migrate dir to non-exist MDT"
13691
13692 test_230h() {
13693         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13694         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13695         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.64) ] &&
13696                 skip "Need MDS version at least 2.7.64" && return
13697         local mdt_index
13698
13699         mkdir -p $DIR/$tdir/migrate_dir
13700
13701         $LFS migrate -m1 $DIR &&
13702                 error "migrating mountpoint1 should fail"
13703
13704         $LFS migrate -m1 $DIR/$tdir/.. &&
13705                 error "migrating mountpoint2 should fail"
13706
13707         $LFS migrate -m1 $DIR/$tdir/migrate_dir/.. ||
13708                 error "migrating $tdir fail"
13709
13710         mdt_index=$($LFS getstripe -M $DIR/$tdir)
13711         [ $mdt_index == 1 ] || error "$mdt_index != 1 after migration"
13712
13713         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir)
13714         [ $mdt_index == 1 ] || error "$mdt_index != 1 after migration"
13715
13716 }
13717 run_test 230h "migrate .. and root"
13718
13719 test_230i() {
13720         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13721         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13722
13723         mkdir -p $DIR/$tdir/migrate_dir
13724
13725         $LFS migrate -m 1 $DIR/$tdir/migrate_dir/ ||
13726                 error "migration fails with a tailing slash"
13727
13728         $LFS migrate -m 0 $DIR/$tdir/migrate_dir// ||
13729                 error "migration fails with two tailing slashes"
13730 }
13731 run_test 230i "lfs migrate -m tolerates trailing slashes"
13732
13733 test_231a()
13734 {
13735         # For simplicity this test assumes that max_pages_per_rpc
13736         # is the same across all OSCs
13737         local max_pages=$($LCTL get_param -n osc.*.max_pages_per_rpc | head -n1)
13738         local bulk_size=$((max_pages * 4096))
13739         local brw_size=$(do_facet ost1 $LCTL get_param -n obdfilter.*.brw_size |
13740                                        head -n 1)
13741
13742         mkdir -p $DIR/$tdir
13743         $LFS setstripe -S ${brw_size}M $DIR/$tdir ||
13744                 error "failed to set stripe with -S ${brw_size}M option"
13745
13746         # clear the OSC stats
13747         $LCTL set_param osc.*.stats=0 &>/dev/null
13748         stop_writeback
13749
13750         # Client writes $bulk_size - there must be 1 rpc for $max_pages.
13751         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=$bulk_size count=1 \
13752                 oflag=direct &>/dev/null || error "dd failed"
13753
13754         sync; sleep 1; sync # just to be safe
13755         local nrpcs=$($LCTL get_param osc.*.stats |awk '/ost_write/ {print $2}')
13756         if [ x$nrpcs != "x1" ]; then
13757                 $LCTL get_param osc.*.stats
13758                 error "found $nrpcs ost_write RPCs, not 1 as expected"
13759         fi
13760
13761         start_writeback
13762         # Drop the OSC cache, otherwise we will read from it
13763         cancel_lru_locks osc
13764
13765         # clear the OSC stats
13766         $LCTL set_param osc.*.stats=0 &>/dev/null
13767
13768         # Client reads $bulk_size.
13769         dd if=$DIR/$tdir/$tfile of=/dev/null bs=$bulk_size count=1 \
13770                 iflag=direct &>/dev/null || error "dd failed"
13771
13772         nrpcs=$($LCTL get_param osc.*.stats | awk '/ost_read/ { print $2 }')
13773         if [ x$nrpcs != "x1" ]; then
13774                 $LCTL get_param osc.*.stats
13775                 error "found $nrpcs ost_read RPCs, not 1 as expected"
13776         fi
13777 }
13778 run_test 231a "checking that reading/writing of BRW RPC size results in one RPC"
13779
13780 test_231b() {
13781         mkdir -p $DIR/$tdir
13782         local i
13783         for i in {0..1023}; do
13784                 dd if=/dev/zero of=$DIR/$tdir/$tfile conv=notrunc \
13785                         seek=$((2 * i)) bs=4096 count=1 &>/dev/null ||
13786                         error "dd of=$DIR/$tdir/$tfile seek=$((2 * i)) failed"
13787         done
13788         sync
13789 }
13790 run_test 231b "must not assert on fully utilized OST request buffer"
13791
13792 test_232() {
13793         mkdir -p $DIR/$tdir
13794         #define OBD_FAIL_LDLM_OST_LVB            0x31c
13795         $LCTL set_param fail_loc=0x31c
13796
13797         # ignore dd failure
13798         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=1 || true
13799
13800         $LCTL set_param fail_loc=0
13801         umount_client $MOUNT || error "umount failed"
13802         mount_client $MOUNT || error "mount failed"
13803 }
13804 run_test 232 "failed lock should not block umount"
13805
13806 test_233a() {
13807         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.64) ] ||
13808         { skip "Need MDS version at least 2.3.64"; return; }
13809         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
13810
13811         local fid=$($LFS path2fid $MOUNT)
13812         stat $MOUNT/.lustre/fid/$fid > /dev/null ||
13813                 error "cannot access $MOUNT using its FID '$fid'"
13814 }
13815 run_test 233a "checking that OBF of the FS root succeeds"
13816
13817 test_233b() {
13818         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.5.90) ] ||
13819         { skip "Need MDS version at least 2.5.90"; return; }
13820         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
13821
13822         local fid=$($LFS path2fid $MOUNT/.lustre)
13823         stat $MOUNT/.lustre/fid/$fid > /dev/null ||
13824                 error "cannot access $MOUNT/.lustre using its FID '$fid'"
13825
13826         fid=$($LFS path2fid $MOUNT/.lustre/fid)
13827         stat $MOUNT/.lustre/fid/$fid > /dev/null ||
13828                 error "cannot access $MOUNT/.lustre/fid using its FID '$fid'"
13829 }
13830 run_test 233b "checking that OBF of the FS .lustre succeeds"
13831
13832 test_234() {
13833         local p="$TMP/sanityN-$TESTNAME.parameters"
13834         save_lustre_params client "llite.*.xattr_cache" > $p
13835         lctl set_param llite.*.xattr_cache 1 ||
13836                 { skip "xattr cache is not supported"; return 0; }
13837
13838         mkdir -p $DIR/$tdir || error "mkdir failed"
13839         touch $DIR/$tdir/$tfile || error "touch failed"
13840         # OBD_FAIL_LLITE_XATTR_ENOMEM
13841         $LCTL set_param fail_loc=0x1405
13842         # output of the form: attr 2 4 44 3 fc13 x86_64
13843         V=($(IFS=".-" rpm -q attr))
13844         if [[ ${V[1]} > 2 || ${V[2]} > 4 || ${V[3]} > 44 ||
13845               ${V[1]} = 2 && ${V[2]} = 4 && ${V[3]} = 44 && ${V[4]} > 6 ]]; then
13846                 # attr pre-2.4.44-7 had a bug with rc
13847                 # LU-3703 - SLES 11 and FC13 clients have older attr
13848                 getfattr -n user.attr $DIR/$tdir/$tfile &&
13849                         error "getfattr should have failed with ENOMEM"
13850         else
13851                 skip "LU-3703: attr version $(getfattr --version) too old"
13852         fi
13853         $LCTL set_param fail_loc=0x0
13854         rm -rf $DIR/$tdir
13855
13856         restore_lustre_params < $p
13857         rm -f $p
13858 }
13859 run_test 234 "xattr cache should not crash on ENOMEM"
13860
13861 test_235() {
13862         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.52) ] &&
13863                 skip "Need MDS version at least 2.4.52" && return
13864         flock_deadlock $DIR/$tfile
13865         local RC=$?
13866         case $RC in
13867                 0)
13868                 ;;
13869                 124) error "process hangs on a deadlock"
13870                 ;;
13871                 *) error "error executing flock_deadlock $DIR/$tfile"
13872                 ;;
13873         esac
13874 }
13875 run_test 235 "LU-1715: flock deadlock detection does not work properly"
13876
13877 #LU-2935
13878 test_236() {
13879         check_swap_layouts_support && return 0
13880         test_mkdir -c1 $DIR/$tdir
13881
13882         local ref1=/etc/passwd
13883         local ref2=/etc/group
13884         local file1=$DIR/$tdir/f1
13885         local file2=$DIR/$tdir/f2
13886
13887         $SETSTRIPE -c 1 $file1 || error "cannot setstripe on '$file1': rc = $?"
13888         cp $ref1 $file1 || error "cp $ref1 $file1 failed: rc = $?"
13889         $SETSTRIPE -c 2 $file2 || error "cannot setstripe on '$file2': rc = $?"
13890         cp $ref2 $file2 || error "cp $ref2 $file2 failed: rc = $?"
13891         local fd=$(free_fd)
13892         local cmd="exec $fd<>$file2"
13893         eval $cmd
13894         rm $file2
13895         $LFS swap_layouts $file1 /proc/self/fd/${fd} ||
13896                 error "cannot swap layouts of '$file1' and /proc/self/fd/${fd}"
13897         cmd="exec $fd>&-"
13898         eval $cmd
13899         cmp $ref2 $file1 || error "content compare failed ($ref2 != $file1)"
13900
13901         #cleanup
13902         rm -rf $DIR/$tdir
13903 }
13904 run_test 236 "Layout swap on open unlinked file"
13905
13906 # test to verify file handle related system calls
13907 # (name_to_handle_at/open_by_handle_at)
13908 # The new system calls are supported in glibc >= 2.14.
13909
13910 test_237() {
13911         echo "Test file_handle syscalls" > $DIR/$tfile ||
13912                 error "write failed"
13913         check_fhandle_syscalls $DIR/$tfile ||
13914                 error "check_fhandle_syscalls failed"
13915 }
13916 run_test 237 "Verify name_to_handle_at/open_by_handle_at syscalls"
13917
13918 # LU-4659 linkea consistency
13919 test_238() {
13920         local server_version=$(lustre_version_code $SINGLEMDS)
13921
13922         [[ $server_version -gt $(version_code 2.5.57) ]] ||
13923                 [[ $server_version -gt $(version_code 2.5.1) &&
13924                    $server_version -lt $(version_code 2.5.50) ]] ||
13925                 { skip "Need MDS version at least 2.5.58 or 2.5.2+"; return; }
13926
13927         touch $DIR/$tfile
13928         ln $DIR/$tfile $DIR/$tfile.lnk
13929         touch $DIR/$tfile.new
13930         mv $DIR/$tfile.new $DIR/$tfile
13931         local fid1=$($LFS path2fid $DIR/$tfile)
13932         local fid2=$($LFS path2fid $DIR/$tfile.lnk)
13933         local path1=$($LFS fid2path $FSNAME "$fid1")
13934         [ $tfile == $path1 ] || error "linkea inconsistent: $tfile $fid1 $path1"
13935         local path2=$($LFS fid2path $FSNAME "$fid2")
13936         [ $tfile.lnk == $path2 ] ||
13937                 error "linkea inconsistent: $tfile.lnk $fid2 $path2!"
13938         rm -f $DIR/$tfile*
13939 }
13940 run_test 238 "Verify linkea consistency"
13941
13942 test_239() {
13943         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.5.60) ] &&
13944                 skip "Need MDS version at least 2.5.60" && return
13945         local list=$(comma_list $(mdts_nodes))
13946
13947         mkdir -p $DIR/$tdir
13948         createmany -o $DIR/$tdir/f- 5000
13949         unlinkmany $DIR/$tdir/f- 5000
13950         [ $(lustre_version_code $SINGLEMDS) -gt $(version_code 2.10.53) ] &&
13951                 do_nodes $list "lctl set_param -n osp.*.force_sync=1"
13952         changes=$(do_nodes $list "lctl get_param -n osp.*MDT*.sync_changes \
13953                         osp.*MDT*.sync_in_flight" | calc_sum)
13954         [ "$changes" -eq 0 ] || error "$changes not synced"
13955 }
13956 run_test 239 "osp_sync test"
13957
13958 test_239a() { #LU-5297
13959         remote_mds_nodsh && skip "remote MDS with nodsh" && return
13960         touch $DIR/$tfile
13961         #define OBD_FAIL_OSP_CHECK_INVALID_REC     0x2100
13962         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x2100
13963         chgrp $RUNAS_GID $DIR/$tfile
13964         wait_delete_completed
13965 }
13966 run_test 239a "process invalid osp sync record correctly"
13967
13968 test_239b() { #LU-5297
13969         remote_mds_nodsh && skip "remote MDS with nodsh" && return
13970         touch $DIR/$tfile1
13971         #define OBD_FAIL_OSP_CHECK_ENOMEM     0x2101
13972         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x2101
13973         chgrp $RUNAS_GID $DIR/$tfile1
13974         wait_delete_completed
13975         do_facet $SINGLEMDS $LCTL set_param fail_loc=0
13976         touch $DIR/$tfile2
13977         chgrp $RUNAS_GID $DIR/$tfile2
13978         wait_delete_completed
13979 }
13980 run_test 239b "process osp sync record with ENOMEM error correctly"
13981
13982 test_240() {
13983         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13984         remote_mds_nodsh && skip "remote MDS with nodsh" && return
13985
13986         mkdir -p $DIR/$tdir
13987
13988         $LFS mkdir -i 0 $DIR/$tdir/d0 ||
13989                 error "failed to mkdir $DIR/$tdir/d0 on MDT0"
13990         $LFS mkdir -i 1 $DIR/$tdir/d0/d1 ||
13991                 error "failed to mkdir $DIR/$tdir/d0/d1 on MDT1"
13992
13993         umount_client $MOUNT || error "umount failed"
13994         #define OBD_FAIL_TGT_DELAY_CONDITIONAL   0x713
13995         do_facet mds2 lctl set_param fail_loc=0x713 fail_val=1
13996         mount_client $MOUNT || error "failed to mount client"
13997
13998         echo "stat $DIR/$tdir/d0/d1, should not fail/ASSERT"
13999         stat $DIR/$tdir/d0/d1 || error "fail to stat $DIR/$tdir/d0/d1"
14000 }
14001 run_test 240 "race between ldlm enqueue and the connection RPC (no ASSERT)"
14002
14003 test_241_bio() {
14004         for LOOP in $(seq $1); do
14005                 dd if=$DIR/$tfile of=/dev/null bs=40960 count=1 2>/dev/null
14006                 cancel_lru_locks osc || true
14007         done
14008 }
14009
14010 test_241_dio() {
14011         for LOOP in $(seq $1); do
14012                 dd if=$DIR/$tfile of=/dev/null bs=40960 count=1 \
14013                                                 iflag=direct 2>/dev/null
14014         done
14015 }
14016
14017 test_241a() { # was test_241
14018         dd if=/dev/zero of=$DIR/$tfile count=1 bs=40960
14019         ls -la $DIR/$tfile
14020         cancel_lru_locks osc
14021         test_241_bio 1000 &
14022         PID=$!
14023         test_241_dio 1000
14024         wait $PID
14025 }
14026 run_test 241a "bio vs dio"
14027
14028 test_241b() {
14029         dd if=/dev/zero of=$DIR/$tfile count=1 bs=40960
14030         ls -la $DIR/$tfile
14031         test_241_dio 1000 &
14032         PID=$!
14033         test_241_dio 1000
14034         wait $PID
14035 }
14036 run_test 241b "dio vs dio"
14037
14038 test_242() {
14039         remote_mds_nodsh && skip "remote MDS with nodsh" && return
14040         mkdir -p $DIR/$tdir
14041         touch $DIR/$tdir/$tfile
14042
14043         #define OBD_FAIL_MDS_READPAGE_PACK      0x105
14044         do_facet mds1 lctl set_param fail_loc=0x105
14045         /bin/ls $DIR/$tdir && error "ls $DIR/$tdir should fail"
14046
14047         do_facet mds1 lctl set_param fail_loc=0
14048         /bin/ls $DIR/$tdir || error "ls $DIR/$tdir failed"
14049 }
14050 run_test 242 "mdt_readpage failure should not cause directory unreadable"
14051
14052 test_243()
14053 {
14054         test_mkdir $DIR/$tdir
14055         group_lock_test -d $DIR/$tdir || error "A group lock test failed"
14056 }
14057 run_test 243 "various group lock tests"
14058
14059 test_244()
14060 {
14061         test_mkdir $DIR/$tdir
14062         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=35
14063         sendfile_grouplock $DIR/$tdir/$tfile || \
14064                 error "sendfile+grouplock failed"
14065         rm -rf $DIR/$tdir
14066 }
14067 run_test 244 "sendfile with group lock tests"
14068
14069 test_245() {
14070         local flagname="multi_mod_rpcs"
14071         local connect_data_name="max_mod_rpcs"
14072         local out
14073
14074         # check if multiple modify RPCs flag is set
14075         out=$($LCTL get_param mdc.$FSNAME-MDT0000-*.import |
14076                 grep "connect_flags:")
14077         echo "$out"
14078
14079         echo "$out" | grep -qw $flagname
14080         if [ $? -ne 0 ]; then
14081                 echo "connect flag $flagname is not set"
14082                 return
14083         fi
14084
14085         # check if multiple modify RPCs data is set
14086         out=$($LCTL get_param mdc.$FSNAME-MDT0000-*.import)
14087         echo "$out"
14088
14089         echo "$out" | grep -qw $connect_data_name ||
14090                 error "import should have connect data $connect_data_name"
14091 }
14092 run_test 245 "check mdc connection flag/data: multiple modify RPCs"
14093
14094 test_246() { # LU-7371
14095         remote_ost_nodsh && skip "remote OST with nodsh" && return
14096         [ $(lustre_version_code ost1) -lt $(version_code 2.7.62) ] &&
14097                 skip "Need OST version >= 2.7.62" && return 0
14098         do_facet ost1 $LCTL set_param fail_val=4095
14099 #define OBD_FAIL_OST_READ_SIZE          0x234
14100         do_facet ost1 $LCTL set_param fail_loc=0x234
14101         $LFS setstripe $DIR/$tfile -i 0 -c 1
14102         dd if=/dev/zero of=$DIR/$tfile bs=4095 count=1 > /dev/null 2>&1
14103         cancel_lru_locks $FSNAME-OST0000
14104         dd if=$DIR/$tfile of=/dev/null bs=1048576 || error "Read failed"
14105 }
14106 run_test 246 "Read file of size 4095 should return right length"
14107
14108 test_247a() {
14109         lctl get_param -n mdc.$FSNAME-MDT0000*.import |
14110                 grep -q subtree ||
14111                 { skip "Fileset feature is not supported"; return; }
14112
14113         local submount=${MOUNT}_$tdir
14114
14115         mkdir $MOUNT/$tdir
14116         mkdir -p $submount || error "mkdir $submount failed"
14117         FILESET="$FILESET/$tdir" mount_client $submount ||
14118                 error "mount $submount failed"
14119         echo foo > $submount/$tfile || error "write $submount/$tfile failed"
14120         [ $(cat $MOUNT/$tdir/$tfile) = "foo" ] ||
14121                 error "read $MOUNT/$tdir/$tfile failed"
14122         umount_client $submount || error "umount $submount failed"
14123         rmdir $submount
14124 }
14125 run_test 247a "mount subdir as fileset"
14126
14127 test_247b() {
14128         lctl get_param -n mdc.$FSNAME-MDT0000*.import | grep -q subtree ||
14129                 { skip "Fileset feature is not supported"; return; }
14130
14131         local submount=${MOUNT}_$tdir
14132
14133         rm -rf $MOUNT/$tdir
14134         mkdir -p $submount || error "mkdir $submount failed"
14135         SKIP_FILESET=1
14136         FILESET="$FILESET/$tdir" mount_client $submount &&
14137                 error "mount $submount should fail"
14138         rmdir $submount
14139 }
14140 run_test 247b "mount subdir that dose not exist"
14141
14142 test_247c() {
14143         lctl get_param -n mdc.$FSNAME-MDT0000*.import | grep -q subtree ||
14144                 { skip "Fileset feature is not supported"; return; }
14145
14146         local submount=${MOUNT}_$tdir
14147
14148         mkdir -p $MOUNT/$tdir/dir1
14149         mkdir -p $submount || error "mkdir $submount failed"
14150         FILESET="$FILESET/$tdir" mount_client $submount ||
14151                 error "mount $submount failed"
14152         local fid=$($LFS path2fid $MOUNT/)
14153         $LFS fid2path $submount $fid && error "fid2path should fail"
14154         umount_client $submount || error "umount $submount failed"
14155         rmdir $submount
14156 }
14157 run_test 247c "running fid2path outside root"
14158
14159 test_247d() {
14160         lctl get_param -n mdc.$FSNAME-MDT0000*.import | grep -q subtree ||
14161                 { skip "Fileset feature is not supported"; return; }
14162
14163         local submount=${MOUNT}_$tdir
14164
14165         mkdir -p $MOUNT/$tdir/dir1
14166         mkdir -p $submount || error "mkdir $submount failed"
14167         FILESET="$FILESET/$tdir" mount_client $submount ||
14168                 error "mount $submount failed"
14169         local fid=$($LFS path2fid $submount/dir1)
14170         $LFS fid2path $submount $fid || error "fid2path should succeed"
14171         umount_client $submount || error "umount $submount failed"
14172         rmdir $submount
14173 }
14174 run_test 247d "running fid2path inside root"
14175
14176 # LU-8037
14177 test_247e() {
14178         lctl get_param -n mdc.$FSNAME-MDT0000*.import |
14179                 grep -q subtree ||
14180                 { skip "Fileset feature is not supported"; return; }
14181
14182         local submount=${MOUNT}_$tdir
14183
14184         mkdir $MOUNT/$tdir
14185         mkdir -p $submount || error "mkdir $submount failed"
14186         FILESET="$FILESET/.." mount_client $submount &&
14187                 error "mount $submount should fail"
14188         rmdir $submount
14189 }
14190 run_test 247e "mount .. as fileset"
14191
14192 test_248() {
14193         local fast_read_sav=$($LCTL get_param -n llite.*.fast_read 2>/dev/null)
14194         [ -z "$fast_read_sav" ] && skip "no fast read support" && return
14195
14196         # create a large file for fast read verification
14197         dd if=/dev/zero of=$DIR/$tfile bs=1M count=128 > /dev/null 2>&1
14198
14199         # make sure the file is created correctly
14200         $CHECKSTAT -s $((128*1024*1024)) $DIR/$tfile ||
14201                 { rm -f $DIR/$tfile; skip "file creation error" && return; }
14202
14203         echo "Test 1: verify that fast read is 4 times faster on cache read"
14204
14205         # small read with fast read enabled
14206         $LCTL set_param -n llite.*.fast_read=1
14207         local t_fast=$(dd if=$DIR/$tfile of=/dev/null bs=4k 2>&1 |
14208                 awk '/copied/ { print $6 }')
14209
14210         # small read with fast read disabled
14211         $LCTL set_param -n llite.*.fast_read=0
14212         local t_slow=$(dd if=$DIR/$tfile of=/dev/null bs=4k 2>&1 |
14213                 awk '/copied/ { print $6 }')
14214
14215         # verify that fast read is 4 times faster for cache read
14216         [ $(bc <<< "4 * $t_fast < $t_slow") -eq 1 ] ||
14217                 error_not_in_vm "fast read was not 4 times faster: " \
14218                            "$t_fast vs $t_slow"
14219
14220         echo "Test 2: verify the performance between big and small read"
14221         $LCTL set_param -n llite.*.fast_read=1
14222
14223         # 1k non-cache read
14224         cancel_lru_locks osc
14225         local t_1k=$(dd if=$DIR/$tfile of=/dev/null bs=1k 2>&1 |
14226                 awk '/copied/ { print $6 }')
14227
14228         # 1M non-cache read
14229         cancel_lru_locks osc
14230         local t_1m=$(dd if=$DIR/$tfile of=/dev/null bs=1k 2>&1 |
14231                 awk '/copied/ { print $6 }')
14232
14233         # verify that big IO is not 4 times faster than small IO
14234         [ $(bc <<< "4 * $t_1k >= $t_1m") -eq 1 ] ||
14235                 error_not_in_vm "bigger IO is way too fast: $t_1k vs $t_1m"
14236
14237         $LCTL set_param -n llite.*.fast_read=$fast_read_sav
14238         rm -f $DIR/$tfile
14239 }
14240 run_test 248 "fast read verification"
14241
14242 test_249() { # LU-7890
14243         rm -f $DIR/$tfile
14244         $SETSTRIPE -c 1 $DIR/$tfile
14245
14246         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.53) ] &&
14247         skip "Need at least version 2.8.54"
14248
14249         # Offset 2T == 4k * 512M
14250         dd if=/dev/zero of=$DIR/$tfile bs=4k count=1 seek=512M ||
14251                 error "dd to 2T offset failed"
14252 }
14253 run_test 249 "Write above 2T file size"
14254
14255 test_250() {
14256         [ "$(facet_fstype ost$(($($GETSTRIPE -i $DIR/$tfile) + 1)))" = "zfs" ] \
14257          && skip "no 16TB file size limit on ZFS" && return
14258
14259         $SETSTRIPE -c 1 $DIR/$tfile
14260         # ldiskfs extent file size limit is (16TB - 4KB - 1) bytes
14261         local size=$((16 * 1024 * 1024 * 1024 * 1024 - 4096 - 1))
14262         $TRUNCATE $DIR/$tfile $size || error "truncate $tfile to $size failed"
14263         dd if=/dev/zero of=$DIR/$tfile bs=10 count=1 oflag=append \
14264                 conv=notrunc,fsync && error "append succeeded"
14265         return 0
14266 }
14267 run_test 250 "Write above 16T limit"
14268
14269 test_251() {
14270         $SETSTRIPE -c -1 -S 1048576 $DIR/$tfile
14271
14272         #define OBD_FAIL_LLITE_LOST_LAYOUT 0x1407
14273         #Skip once - writing the first stripe will succeed
14274         $LCTL set_param fail_loc=0xa0001407 fail_val=1
14275         $MULTIOP $DIR/$tfile o:O_RDWR:w2097152c 2>&1 | grep -q "short write" &&
14276                 error "short write happened"
14277
14278         $LCTL set_param fail_loc=0xa0001407 fail_val=1
14279         $MULTIOP $DIR/$tfile or2097152c 2>&1 | grep -q "short read" &&
14280                 error "short read happened"
14281
14282         rm -f $DIR/$tfile
14283 }
14284 run_test 251 "Handling short read and write correctly"
14285
14286 test_252() {
14287         local tgt
14288         local dev
14289         local out
14290         local uuid
14291         local num
14292         local gen
14293
14294         remote_mds_nodsh && skip "remote MDS with nodsh" && return
14295         remote_ost_nodsh && skip "remote OST with nodsh" && return
14296         if [ "$(facet_fstype ost1)" != "ldiskfs" -o \
14297              "$(facet_fstype mds1)" != "ldiskfs" ]; then
14298                 skip "ldiskfs only test"
14299                 return
14300         fi
14301
14302         # check lr_reader on OST0000
14303         tgt=ost1
14304         dev=$(facet_device $tgt)
14305         out=$(do_facet $tgt $LR_READER $dev)
14306         [ $? -eq 0 ] || error "$LR_READER failed on target $tgt device $dev"
14307         echo "$out"
14308         uuid=$(echo "$out" | grep -i uuid | awk '{ print $2 }')
14309         [ "$uuid" == "$(ostuuid_from_index 0)" ] ||
14310                 error "Invalid uuid returned by $LR_READER on target $tgt"
14311         echo -e "uuid returned by $LR_READER is '$uuid'\n"
14312
14313         # check lr_reader -c on MDT0000
14314         tgt=mds1
14315         dev=$(facet_device $tgt)
14316         if ! do_facet $tgt $LR_READER -h | grep -q OPTIONS; then
14317                 echo "$LR_READER does not support additional options"
14318                 return 0
14319         fi
14320         out=$(do_facet $tgt $LR_READER -c $dev)
14321         [ $? -eq 0 ] || error "$LR_READER failed on target $tgt device $dev"
14322         echo "$out"
14323         num=$(echo "$out" | grep -c "mdtlov")
14324         [ "$num" -eq $((MDSCOUNT - 1)) ] ||
14325                 error "Invalid number of mdtlov clients returned by $LR_READER"
14326         echo -e "Number of mdtlov clients returned by $LR_READER is '$num'\n"
14327
14328         # check lr_reader -cr on MDT0000
14329         out=$(do_facet $tgt $LR_READER -cr $dev)
14330         [ $? -eq 0 ] || error "$LR_READER failed on target $tgt device $dev"
14331         echo "$out"
14332         echo "$out" | grep -q "^reply_data:$" ||
14333                 error "$LR_READER should have returned 'reply_data' section"
14334         num=$(echo "$out" | grep -c "client_generation")
14335         echo -e "Number of reply data returned by $LR_READER is '$num'\n"
14336 }
14337 run_test 252 "check lr_reader tool"
14338
14339 test_253_fill_ost() {
14340         local size_mb #how many MB should we write to pass watermark
14341         local lwm=$3  #low watermark
14342         local free_10mb #10% of free space
14343
14344         free_kb=$($LFS df $MOUNT | grep $1 | awk '{ print $4 }')
14345         size_mb=$((free_kb / 1024 - lwm))
14346         free_10mb=$((free_kb / 10240))
14347         #If 10% of free space cross low watermark use it
14348         if (( free_10mb > size_mb )); then
14349                 size_mb=$free_10mb
14350         else
14351                 #At least we need to store 1.1 of difference between
14352                 #free space and low watermark
14353                 size_mb=$((size_mb + size_mb / 10))
14354         fi
14355         if (( lwm <= $((free_kb / 1024)) )) || [ ! -f $DIR/$tdir/1 ]; then
14356                 dd if=/dev/zero of=$DIR/$tdir/1 bs=1M count=$size_mb \
14357                          oflag=append conv=notrunc
14358         fi
14359
14360         sleep_maxage
14361
14362         free_kb=$($LFS df $MOUNT | grep $1 | awk '{ print $4 }')
14363         echo "OST still has $((free_kb / 1024)) mbytes free"
14364 }
14365
14366 test_253() {
14367         local ostidx=0
14368         local rc=0
14369
14370         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14371         remote_mds_nodsh && skip "remote MDS with nodsh" && return
14372         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
14373
14374         local ost_name=$($LFS osts |
14375                 sed -n 's/^'$ostidx': \(.*\)_UUID .*/\1/p')
14376         # on the mdt's osc
14377         local mdtosc_proc1=$(get_mdtosc_proc_path $SINGLEMDS $ost_name)
14378         do_facet $SINGLEMDS $LCTL get_param -n \
14379                 osp.$mdtosc_proc1.reserved_mb_high ||
14380                 { skip  "remote MDS does not support reserved_mb_high" &&
14381                   return; }
14382
14383         rm -rf $DIR/$tdir
14384         wait_mds_ost_sync
14385         wait_delete_completed
14386         mkdir $DIR/$tdir
14387
14388         local last_wm_h=$(do_facet $SINGLEMDS $LCTL get_param -n \
14389                         osp.$mdtosc_proc1.reserved_mb_high)
14390         local last_wm_l=$(do_facet $SINGLEMDS $LCTL get_param -n \
14391                         osp.$mdtosc_proc1.reserved_mb_low)
14392         echo "prev high watermark $last_wm_h, prev low watermark $last_wm_l"
14393
14394         create_pool $FSNAME.$TESTNAME || error "Pool creation failed"
14395         do_facet mgs $LCTL pool_add $FSNAME.$TESTNAME $ost_name ||
14396                 error "Adding $ost_name to pool failed"
14397
14398         # Wait for client to see a OST at pool
14399         wait_update $HOSTNAME "$LCTL get_param -n
14400                 lov.$FSNAME-*.pools.$TESTNAME | sort -u |
14401                 grep $ost_name" "$ost_name""_UUID" $((TIMEOUT/2)) ||
14402                 error "Client can not see the pool"
14403         $SETSTRIPE $DIR/$tdir -i $ostidx -c 1 -p $FSNAME.$TESTNAME ||
14404                 error "Setstripe failed"
14405
14406         dd if=/dev/zero of=$DIR/$tdir/0 bs=1M count=10
14407         local blocks=$($LFS df $MOUNT | grep $ost_name | awk '{ print $4 }')
14408         echo "OST still has $((blocks/1024)) mbytes free"
14409
14410         local new_lwm=$((blocks/1024-10))
14411         do_facet $SINGLEMDS $LCTL set_param \
14412                         osp.$mdtosc_proc1.reserved_mb_high=$((new_lwm+5))
14413         do_facet $SINGLEMDS $LCTL set_param \
14414                         osp.$mdtosc_proc1.reserved_mb_low=$new_lwm
14415
14416         test_253_fill_ost $ost_name $mdtosc_proc1 $new_lwm
14417
14418         #First enospc could execute orphan deletion so repeat.
14419         test_253_fill_ost $ost_name $mdtosc_proc1 $new_lwm
14420
14421         local oa_status=$(do_facet $SINGLEMDS $LCTL get_param -n \
14422                         osp.$mdtosc_proc1.prealloc_status)
14423         echo "prealloc_status $oa_status"
14424
14425         dd if=/dev/zero of=$DIR/$tdir/2 bs=1M count=1 &&
14426                 error "File creation should fail"
14427         #object allocation was stopped, but we still able to append files
14428         dd if=/dev/zero of=$DIR/$tdir/1 bs=1M seek=6 count=5 oflag=append ||
14429                 error "Append failed"
14430         rm -f $DIR/$tdir/1 $DIR/$tdir/0 $DIR/$tdir/r*
14431
14432         wait_delete_completed
14433
14434         sleep_maxage
14435
14436         for i in $(seq 10 12); do
14437                 dd if=/dev/zero of=$DIR/$tdir/$i bs=1M count=1 2>/dev/null ||
14438                         error "File creation failed after rm";
14439         done
14440
14441         oa_status=$(do_facet $SINGLEMDS $LCTL get_param -n \
14442                         osp.$mdtosc_proc1.prealloc_status)
14443         echo "prealloc_status $oa_status"
14444
14445         if (( oa_status != 0 )); then
14446                 error "Object allocation still disable after rm"
14447         fi
14448         do_facet $SINGLEMDS $LCTL set_param \
14449                         osp.$mdtosc_proc1.reserved_mb_high=$last_wm_h
14450         do_facet $SINGLEMDS $LCTL set_param \
14451                         osp.$mdtosc_proc1.reserved_mb_low=$last_wm_l
14452
14453
14454         do_facet mgs $LCTL pool_remove $FSNAME.$TESTNAME $ost_name ||
14455                 error "Remove $ost_name from pool failed"
14456         do_facet mgs $LCTL pool_destroy $FSNAME.$TESTNAME ||
14457                 error "Pool destroy fialed"
14458 }
14459 run_test 253 "Check object allocation limit"
14460
14461 test_254() {
14462         local cl_user
14463
14464         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14465         remote_mds_nodsh && skip "remote MDS with nodsh" && return
14466         do_facet mds1 $LCTL get_param -n mdd.$MDT0.changelog_size ||
14467                 { skip "MDS does not support changelog_size" && return; }
14468
14469         cl_user=$(do_facet mds1 $LCTL --device $MDT0 changelog_register -n)
14470         echo "Registered as changelog user $cl_user"
14471
14472         $LFS changelog_clear $MDT0 $cl_user 0
14473
14474         local size1=$(do_facet mds1 \
14475                       $LCTL get_param -n mdd.$MDT0.changelog_size)
14476         echo "Changelog size $size1"
14477
14478         rm -rf $DIR/$tdir
14479         $LFS mkdir -i 0 $DIR/$tdir
14480         # change something
14481         mkdir -p $DIR/$tdir/pics/2008/zachy
14482         touch $DIR/$tdir/pics/2008/zachy/timestamp
14483         cp /etc/hosts $DIR/$tdir/pics/2008/zachy/pic1.jpg
14484         mv $DIR/$tdir/pics/2008/zachy $DIR/$tdir/pics/zach
14485         ln $DIR/$tdir/pics/zach/pic1.jpg $DIR/$tdir/pics/2008/portland.jpg
14486         ln -s $DIR/$tdir/pics/2008/portland.jpg $DIR/$tdir/pics/desktop.jpg
14487         rm $DIR/$tdir/pics/desktop.jpg
14488
14489         local size2=$(do_facet mds1 \
14490                       $LCTL get_param -n mdd.$MDT0.changelog_size)
14491         echo "Changelog size after work $size2"
14492
14493         do_facet mds1 $LCTL --device $MDT0 changelog_deregister $cl_user
14494
14495         if (( size2 <= size1 )); then
14496                 error "Changelog size after work should be greater than original"
14497         fi
14498         return 0
14499 }
14500 run_test 254 "Check changelog size"
14501
14502 ladvise_no_type()
14503 {
14504         local type=$1
14505         local file=$2
14506
14507         lfs ladvise -a invalid $file 2>&1 | grep "Valid types" |
14508                 awk -F: '{print $2}' | grep $type > /dev/null
14509         if [ $? -ne 0 ]; then
14510                 return 0
14511         fi
14512         return 1
14513 }
14514
14515 ladvise_no_ioctl()
14516 {
14517         local file=$1
14518
14519         lfs ladvise -a willread $file > /dev/null 2>&1
14520         if [ $? -eq 0 ]; then
14521                 return 1
14522         fi
14523
14524         lfs ladvise -a willread $file 2>&1 |
14525                 grep "Inappropriate ioctl for device" > /dev/null
14526         if [ $? -eq 0 ]; then
14527                 return 0
14528         fi
14529         return 1
14530 }
14531
14532 percent() {
14533         bc <<<"scale=2; ($1 - $2) * 100 / $2"
14534 }
14535
14536 # run a random read IO workload
14537 # usage: random_read_iops <filename> <filesize> <iosize>
14538 random_read_iops() {
14539         local file=$1
14540         local fsize=$2
14541         local iosize=${3:-4096}
14542
14543         $READS -f $file -s $fsize -b $iosize -n $((fsize / iosize)) -t 60 |
14544                 sed -e '/^$/d' -e 's#.*s, ##' -e 's#MB/s##'
14545 }
14546
14547 drop_file_oss_cache() {
14548         local file="$1"
14549         local nodes="$2"
14550
14551         $LFS ladvise -a dontneed $file 2>/dev/null ||
14552                 do_nodes $nodes "echo 3 > /proc/sys/vm/drop_caches"
14553 }
14554
14555 ladvise_willread_performance()
14556 {
14557         local repeat=10
14558         local average_origin=0
14559         local average_cache=0
14560         local average_ladvise=0
14561
14562         for ((i = 1; i <= $repeat; i++)); do
14563                 echo "Iter $i/$repeat: reading without willread hint"
14564                 cancel_lru_locks osc
14565                 drop_file_oss_cache $DIR/$tfile $(comma_list $(osts_nodes))
14566                 local speed_origin=$(random_read_iops $DIR/$tfile $size)
14567                 echo "Iter $i/$repeat: uncached speed: $speed_origin"
14568                 average_origin=$(bc <<<"$average_origin + $speed_origin")
14569
14570                 cancel_lru_locks osc
14571                 local speed_cache=$(random_read_iops $DIR/$tfile $size)
14572                 echo "Iter $i/$repeat: OSS cache speed: $speed_cache"
14573                 average_cache=$(bc <<<"$average_cache + $speed_cache")
14574
14575                 cancel_lru_locks osc
14576                 drop_file_oss_cache $DIR/$tfile $(comma_list $(osts_nodes))
14577                 $LFS ladvise -a willread $DIR/$tfile || error "ladvise failed"
14578                 local speed_ladvise=$(random_read_iops $DIR/$tfile $size)
14579                 echo "Iter $i/$repeat: ladvise speed: $speed_ladvise"
14580                 average_ladvise=$(bc <<<"$average_ladvise + $speed_ladvise")
14581         done
14582         average_origin=$(bc <<<"scale=2; $average_origin / $repeat")
14583         average_cache=$(bc <<<"scale=2; $average_cache / $repeat")
14584         average_ladvise=$(bc <<<"scale=2; $average_ladvise / $repeat")
14585
14586         speedup_cache=$(percent $average_cache $average_origin)
14587         speedup_ladvise=$(percent $average_ladvise $average_origin)
14588
14589         echo "Average uncached read: $average_origin"
14590         echo "Average speedup with OSS cached read: " \
14591                 "$average_cache = +$speedup_cache%"
14592         echo "Average speedup with ladvise willread: " \
14593                 "$average_ladvise = +$speedup_ladvise%"
14594
14595         local lowest_speedup=20
14596         if [ ${average_cache%.*} -lt $lowest_speedup ]; then
14597                 echo "Speedup with OSS cached read less than $lowest_speedup%, "
14598                         "got $average_cache%. Skipping ladvise willread check."
14599                 return 0
14600         fi
14601
14602         # the test won't work on ZFS until it supports 'ladvise dontneed', but
14603         # it is still good to run until then to exercise 'ladvise willread'
14604         ! $LFS ladvise -a dontneed $DIR/$tfile &&
14605                 [ "$(facet_fstype ost1)" = "zfs" ] &&
14606                 echo "osd-zfs does not support dontneed or drop_caches" &&
14607                 return 0
14608
14609         lowest_speedup=$(bc <<<"scale=2; $average_cache / 2")
14610         [ ${average_ladvise%.*} -gt $lowest_speedup ] ||
14611                 error_not_in_vm "Speedup with willread is less than " \
14612                         "$lowest_speedup%, got $average_ladvise%"
14613 }
14614
14615 test_255a() {
14616         [ $(lustre_version_code ost1) -lt $(version_code 2.8.54) ] &&
14617                 skip "lustre < 2.8.54 does not support ladvise " && return
14618         remote_ost_nodsh && skip "remote OST with nodsh" && return
14619
14620         lfs setstripe -c -1 -i 0 $DIR/$tfile || error "$tfile failed"
14621
14622         ladvise_no_type willread $DIR/$tfile &&
14623                 skip "willread ladvise is not supported" && return
14624
14625         ladvise_no_ioctl $DIR/$tfile &&
14626                 skip "ladvise ioctl is not supported" && return
14627
14628         local size_mb=100
14629         local size=$((size_mb * 1048576))
14630         dd if=/dev/zero of=$DIR/$tfile bs=1048576 count=$size_mb ||
14631                 error "dd to $DIR/$tfile failed"
14632
14633         lfs ladvise -a willread $DIR/$tfile ||
14634                 error "Ladvise failed with no range argument"
14635
14636         lfs ladvise -a willread -s 0 $DIR/$tfile ||
14637                 error "Ladvise failed with no -l or -e argument"
14638
14639         lfs ladvise -a willread -e 1 $DIR/$tfile ||
14640                 error "Ladvise failed with only -e argument"
14641
14642         lfs ladvise -a willread -l 1 $DIR/$tfile ||
14643                 error "Ladvise failed with only -l argument"
14644
14645         lfs ladvise -a willread -s 2 -e 1 $DIR/$tfile &&
14646                 error "End offset should not be smaller than start offset"
14647
14648         lfs ladvise -a willread -s 2 -e 2 $DIR/$tfile &&
14649                 error "End offset should not be equal to start offset"
14650
14651         lfs ladvise -a willread -s $size -l 1 $DIR/$tfile ||
14652                 error "Ladvise failed with overflowing -s argument"
14653
14654         lfs ladvise -a willread -s 1 -e $((size + 1)) $DIR/$tfile ||
14655                 error "Ladvise failed with overflowing -e argument"
14656
14657         lfs ladvise -a willread -s 1 -l $size $DIR/$tfile ||
14658                 error "Ladvise failed with overflowing -l argument"
14659
14660         lfs ladvise -a willread -l 1 -e 2 $DIR/$tfile &&
14661                 error "Ladvise succeeded with conflicting -l and -e arguments"
14662
14663         echo "Synchronous ladvise should wait"
14664         local delay=4
14665 #define OBD_FAIL_OST_LADVISE_PAUSE       0x237
14666         do_nodes $(comma_list $(osts_nodes)) \
14667                 $LCTL set_param fail_val=$delay fail_loc=0x237
14668
14669         local start_ts=$SECONDS
14670         lfs ladvise -a willread $DIR/$tfile ||
14671                 error "Ladvise failed with no range argument"
14672         local end_ts=$SECONDS
14673         local inteval_ts=$((end_ts - start_ts))
14674
14675         if [ $inteval_ts -lt $(($delay - 1)) ]; then
14676                 error "Synchronous advice didn't wait reply"
14677         fi
14678
14679         echo "Asynchronous ladvise shouldn't wait"
14680         local start_ts=$SECONDS
14681         lfs ladvise -a willread -b $DIR/$tfile ||
14682                 error "Ladvise failed with no range argument"
14683         local end_ts=$SECONDS
14684         local inteval_ts=$((end_ts - start_ts))
14685
14686         if [ $inteval_ts -gt $(($delay / 2)) ]; then
14687                 error "Asynchronous advice blocked"
14688         fi
14689
14690         do_nodes $(comma_list $(osts_nodes)) $LCTL set_param fail_loc=0
14691         ladvise_willread_performance
14692 }
14693 run_test 255a "check 'lfs ladvise -a willread'"
14694
14695 facet_meminfo() {
14696         local facet=$1
14697         local info=$2
14698
14699         do_facet $facet "cat /proc/meminfo | grep ^${info}:" | awk '{print $2}'
14700 }
14701
14702 test_255b() {
14703         remote_ost_nodsh && skip "remote OST with nodsh" && return
14704
14705         lfs setstripe -c 1 -i 0 $DIR/$tfile
14706
14707         ladvise_no_type dontneed $DIR/$tfile &&
14708                 skip "dontneed ladvise is not supported" && return
14709
14710         ladvise_no_ioctl $DIR/$tfile &&
14711                 skip "ladvise ioctl is not supported" && return
14712
14713         [ $(lustre_version_code ost1) -lt $(version_code 2.8.54) ] &&
14714                 skip "lustre < 2.8.54 does not support ladvise" && return
14715
14716         ! $LFS ladvise -a dontneed $DIR/$tfile &&
14717                 [ "$(facet_fstype ost1)" = "zfs" ] &&
14718                 skip "zfs-osd does not support 'ladvise dontneed'" && return
14719
14720         local size_mb=100
14721         local size=$((size_mb * 1048576))
14722         # In order to prevent disturbance of other processes, only check 3/4
14723         # of the memory usage
14724         local kibibytes=$((size_mb * 1024 * 3 / 4))
14725
14726         dd if=/dev/zero of=$DIR/$tfile bs=1048576 count=$size_mb ||
14727                 error "dd to $DIR/$tfile failed"
14728
14729         local total=$(facet_meminfo ost1 MemTotal)
14730         echo "Total memory: $total KiB"
14731
14732         do_facet ost1 "sync && echo 3 > /proc/sys/vm/drop_caches"
14733         local before_read=$(facet_meminfo ost1 Cached)
14734         echo "Cache used before read: $before_read KiB"
14735
14736         lfs ladvise -a willread $DIR/$tfile ||
14737                 error "Ladvise willread failed"
14738         local after_read=$(facet_meminfo ost1 Cached)
14739         echo "Cache used after read: $after_read KiB"
14740
14741         lfs ladvise -a dontneed $DIR/$tfile ||
14742                 error "Ladvise dontneed again failed"
14743         local no_read=$(facet_meminfo ost1 Cached)
14744         echo "Cache used after dontneed ladvise: $no_read KiB"
14745
14746         if [ $total -lt $((before_read + kibibytes)) ]; then
14747                 echo "Memory is too small, abort checking"
14748                 return 0
14749         fi
14750
14751         if [ $((before_read + kibibytes)) -gt $after_read ]; then
14752                 error "Ladvise willread should use more memory" \
14753                         "than $kibibytes KiB"
14754         fi
14755
14756         if [ $((no_read + kibibytes)) -gt $after_read ]; then
14757                 error "Ladvise dontneed should release more memory" \
14758                         "than $kibibytes KiB"
14759         fi
14760 }
14761 run_test 255b "check 'lfs ladvise -a dontneed'"
14762
14763 test_255c() {
14764         local count
14765         local new_count
14766         local difference
14767         local i
14768         local rc
14769         test_mkdir -p $DIR/$tdir
14770         $SETSTRIPE -i 0 $DIR/$tdir
14771
14772         #test 10 returns only success/failure
14773         i=10
14774         lockahead_test -d $DIR/$tdir -t $i
14775         rc=$?
14776         if [ $rc -eq 255 ]; then
14777                 error "Ladvise test${i} failed, ${rc}"
14778         fi
14779
14780         #test 11 counts lock enqueue requests, all others count new locks
14781         i=11
14782         count=$(do_facet ost1 \
14783                 $LCTL get_param -n ost.OSS.ost.stats)
14784         count=$(echo "$count" | grep ldlm_extent_enqueue | awk '{ print $2 }')
14785
14786         lockahead_test -d $DIR/$tdir -t $i
14787         rc=$?
14788         if [ $rc -eq 255 ]; then
14789                 error "Ladvise test${i} failed, ${rc}"
14790         fi
14791
14792         new_count=$(do_facet ost1 \
14793                 $LCTL get_param -n ost.OSS.ost.stats)
14794         new_count=$(echo "$new_count" | grep ldlm_extent_enqueue | \
14795                    awk '{ print $2 }')
14796
14797         difference="$((new_count - count))"
14798         if [ $difference -ne $rc ]; then
14799                 error "Ladvise test${i}, bad enqueue count, returned " \
14800                       "${rc}, actual ${difference}"
14801         fi
14802
14803         for i in $(seq 12 21); do
14804                 # If we do not do this, we run the risk of having too many
14805                 # locks and starting lock cancellation while we are checking
14806                 # lock counts.
14807                 cancel_lru_locks osc
14808
14809                 count=$($LCTL get_param -n \
14810                        ldlm.namespaces.$FSNAME-OST0000*osc-f*.lock_unused_count)
14811
14812                 lockahead_test -d $DIR/$tdir -t $i
14813                 rc=$?
14814                 if [ $rc -eq 255 ]; then
14815                         error "Ladvise test ${i} failed, ${rc}"
14816                 fi
14817
14818                 new_count=$($LCTL get_param -n \
14819                        ldlm.namespaces.$FSNAME-OST0000*osc-f*.lock_unused_count)
14820                 difference="$((new_count - count))"
14821
14822                 # Test 15 output is divided by 1000 to map down to valid return
14823                 if [ $i -eq 15 ]; then
14824                         rc="$((rc * 1000))"
14825                 fi
14826
14827                 if [ $difference -ne $rc ]; then
14828                         error "Ladvise test ${i}, bad lock count, returned " \
14829                               "${rc}, actual ${difference}"
14830                 fi
14831         done
14832
14833         #test 22 returns only success/failure
14834         i=22
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 }
14842 run_test 255c "suite of ladvise lockahead tests"
14843
14844 test_256() {
14845         local cl_user
14846         local cat_sl
14847         local mdt_dev
14848
14849         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14850         remote_mds_nodsh && skip "remote MDS with nodsh" && return
14851         [ "$(facet_fstype mds1)" != "ldiskfs" ] &&
14852                 skip "ldiskfs only test" && return
14853
14854         mdt_dev=$(mdsdevname 1)
14855         echo $mdt_dev
14856         cl_user=$(do_facet mds1 \
14857         "$LCTL get_param -n mdd.$MDT0.changelog_users | grep cl")
14858         if [[ -n $cl_user ]]; then
14859                 skip "active changelog user"
14860                 return
14861         fi
14862
14863         cl_user=$(do_facet mds1 $LCTL --device $MDT0 changelog_register -n)
14864         echo "Registered as changelog user $cl_user"
14865
14866         rm -rf $DIR/$tdir
14867         mkdir -p $DIR/$tdir
14868
14869         $LFS changelog_clear $MDT0 $cl_user 0
14870
14871         # change something
14872         touch $DIR/$tdir/{1..10}
14873
14874         # stop the MDT
14875         stop mds1 || error "Fail to stop MDT."
14876
14877         # remount the MDT
14878         start mds1 $mdt_dev $MDS_MOUNT_OPTS || error "Fail to start MDT."
14879
14880         #after mount new plainllog is used
14881         touch $DIR/$tdir/{11..19}
14882         do_facet mds1 sync
14883         local TEMP256FILE=$(mktemp -u TEMP256XXXXXX)
14884         cat_sl=$(do_facet mds1 \
14885         "$DEBUGFS -R \\\"dump changelog_catalog $TEMP256FILE\\\" $mdt_dev; \
14886          llog_reader $TEMP256FILE | grep \\\"type=1064553b\\\" | wc -l")
14887         do_facet mds1 rm $TEMP256FILE
14888
14889         if (( cat_sl != 2 )); then
14890                 do_facet mds1 $LCTL --device $MDT0 changelog_deregister $cl_user
14891                 error "Changelog catalog has wrong number of slots $cat_sl"
14892         fi
14893
14894         $LFS changelog_clear $MDT0 $cl_user 0
14895
14896         do_facet mds1 sync
14897         TEMP256FILE=$(mktemp -u TEMP256XXXXXX)
14898         cat_sl=$(do_facet mds1 \
14899         "$DEBUGFS -R \\\"dump changelog_catalog $TEMP256FILE\\\" $mdt_dev; \
14900          llog_reader $TEMP256FILE | grep \\\"type=1064553b\\\" | wc -l")
14901         do_facet mds1 rm $TEMP256FILE
14902
14903         do_facet mds1 $LCTL --device $MDT0 changelog_deregister $cl_user
14904
14905         if (( cat_sl == 2 )); then
14906                 error "Empty plain llog was not deleted from changelog catalog"
14907         fi
14908         if (( cat_sl != 1 )); then
14909                 error "Active plain llog shouldn\`t be deleted from catalog"
14910         fi
14911 }
14912 run_test 256 "Check llog delete for empty and not full state"
14913
14914 test_257() {
14915         remote_mds_nodsh && skip "remote MDS with nodsh" && return
14916         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.55) ]] &&
14917                 skip "Need MDS version at least 2.8.55" && return
14918
14919         test_mkdir $DIR/$tdir
14920
14921         setfattr -n trusted.name1 -v value1 $DIR/$tdir ||
14922                 error "setfattr -n trusted.name1=value1 $DIR/$tdir failed"
14923         stat $DIR/$tdir
14924
14925 #define OBD_FAIL_MDS_XATTR_REP                  0x161
14926         local mdtidx=$($LFS getstripe -M $DIR/$tdir)
14927         local facet=mds$((mdtidx + 1))
14928         set_nodes_failloc $(facet_active_host $facet) 0x80000161
14929         getfattr -n trusted.name1 $DIR/$tdir 2> /dev/null
14930
14931         stop $facet || error "stop MDS failed"
14932         start $facet $(mdsdevname $((mdtidx + 1))) $MDS_MOUNT_OPTS ||
14933                 error "start MDS fail"
14934 }
14935 run_test 257 "xattr locks are not lost"
14936
14937 # Verify we take the i_mutex when security requires it
14938 test_258a() {
14939 #define OBD_FAIL_IMUTEX_SEC 0x141c
14940         $LCTL set_param fail_loc=0x141c
14941         touch $DIR/$tfile
14942         chmod u+s $DIR/$tfile
14943         chmod a+rwx $DIR/$tfile
14944         $RUNAS dd if=/dev/zero of=$DIR/$tfile bs=4k count=1 oflag=append
14945         RC=$?
14946         if [ $RC -ne 0 ]; then
14947                 error "error, failed to take i_mutex, rc=$?"
14948         fi
14949         rm -f $DIR/$tfile
14950 }
14951 run_test 258a
14952
14953 # Verify we do NOT take the i_mutex in the normal case
14954 test_258b() {
14955 #define OBD_FAIL_IMUTEX_NOSEC 0x141d
14956         $LCTL set_param fail_loc=0x141d
14957         touch $DIR/$tfile
14958         chmod a+rwx $DIR
14959         chmod a+rw $DIR/$tfile
14960         $RUNAS dd if=/dev/zero of=$DIR/$tfile bs=4k count=1 oflag=append
14961         RC=$?
14962         if [ $RC -ne 0 ]; then
14963                 error "error, took i_mutex unnecessarily, rc=$?"
14964         fi
14965         rm -f $DIR/$tfile
14966
14967 }
14968 run_test 258b "verify i_mutex security behavior"
14969
14970 test_260() {
14971 #define OBD_FAIL_MDC_CLOSE               0x806
14972         $LCTL set_param fail_loc=0x80000806
14973         touch $DIR/$tfile
14974
14975 }
14976 run_test 260 "Check mdc_close fail"
14977
14978 cleanup_test_300() {
14979         trap 0
14980         umask $SAVE_UMASK
14981 }
14982 test_striped_dir() {
14983         local mdt_index=$1
14984         local stripe_count
14985         local stripe_index
14986
14987         mkdir -p $DIR/$tdir
14988
14989         SAVE_UMASK=$(umask)
14990         trap cleanup_test_300 RETURN EXIT
14991
14992         $LFS setdirstripe -i $mdt_index -c 2 -t all_char -m 755 \
14993                                                 $DIR/$tdir/striped_dir ||
14994                 error "set striped dir error"
14995
14996         local mode=$(stat -c%a $DIR/$tdir/striped_dir)
14997         [ "$mode" = "755" ] || error "expect 755 got $mode"
14998
14999         $LFS getdirstripe $DIR/$tdir/striped_dir > /dev/null 2>&1 ||
15000                 error "getdirstripe failed"
15001         stripe_count=$($LFS getdirstripe -c $DIR/$tdir/striped_dir)
15002         if [ "$stripe_count" != "2" ]; then
15003                 error "1:stripe_count is $stripe_count, expect 2"
15004         fi
15005         stripe_count=$($LFS getdirstripe -T $DIR/$tdir/striped_dir)
15006         if [ "$stripe_count" != "2" ]; then
15007                 error "2:stripe_count is $stripe_count, expect 2"
15008         fi
15009
15010         stripe_index=$($LFS getdirstripe -i $DIR/$tdir/striped_dir)
15011         if [ "$stripe_index" != "$mdt_index" ]; then
15012                 error "stripe_index is $stripe_index, expect $mdt_index"
15013         fi
15014
15015         [ $(stat -c%h $DIR/$tdir/striped_dir) == '2' ] ||
15016                 error "nlink error after create striped dir"
15017
15018         mkdir $DIR/$tdir/striped_dir/a
15019         mkdir $DIR/$tdir/striped_dir/b
15020
15021         stat $DIR/$tdir/striped_dir/a ||
15022                 error "create dir under striped dir failed"
15023         stat $DIR/$tdir/striped_dir/b ||
15024                 error "create dir under striped dir failed"
15025
15026         [ $(stat -c%h $DIR/$tdir/striped_dir) == '4' ] ||
15027                 error "nlink error after mkdir"
15028
15029         rmdir $DIR/$tdir/striped_dir/a
15030         [ $(stat -c%h $DIR/$tdir/striped_dir) == '3' ] ||
15031                 error "nlink error after rmdir"
15032
15033         rmdir $DIR/$tdir/striped_dir/b
15034         [ $(stat -c%h $DIR/$tdir/striped_dir) == '2' ] ||
15035                 error "nlink error after rmdir"
15036
15037         chattr +i $DIR/$tdir/striped_dir
15038         createmany -o $DIR/$tdir/striped_dir/f 10 &&
15039                 error "immutable flags not working under striped dir!"
15040         chattr -i $DIR/$tdir/striped_dir
15041
15042         rmdir $DIR/$tdir/striped_dir ||
15043                 error "rmdir striped dir error"
15044
15045         cleanup_test_300
15046
15047         true
15048 }
15049
15050 test_300a() {
15051         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.0) ] &&
15052                 skip "skipped for lustre < 2.7.0" && return
15053         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15054         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15055
15056         test_striped_dir 0 || error "failed on striped dir on MDT0"
15057         test_striped_dir 1 || error "failed on striped dir on MDT0"
15058 }
15059 run_test 300a "basic striped dir sanity test"
15060
15061 test_300b() {
15062         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.0) ] &&
15063                 skip "skipped for lustre < 2.7.0" && return
15064         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15065         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15066         local i
15067         local mtime1
15068         local mtime2
15069         local mtime3
15070
15071         test_mkdir $DIR/$tdir
15072         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir ||
15073                 error "set striped dir error"
15074         for ((i=0; i<10; i++)); do
15075                 mtime1=$(stat -c %Y $DIR/$tdir/striped_dir)
15076                 sleep 1
15077                 touch $DIR/$tdir/striped_dir/file_$i ||
15078                                         error "touch error $i"
15079                 mtime2=$(stat -c %Y $DIR/$tdir/striped_dir)
15080                 [ $mtime1 -eq $mtime2 ] &&
15081                         error "mtime not change after create"
15082                 sleep 1
15083                 rm -f $DIR/$tdir/striped_dir/file_$i ||
15084                                         error "unlink error $i"
15085                 mtime3=$(stat -c %Y $DIR/$tdir/striped_dir)
15086                 [ $mtime2 -eq $mtime3 ] &&
15087                         error "mtime did not change after unlink"
15088         done
15089         true
15090 }
15091 run_test 300b "check ctime/mtime for striped dir"
15092
15093 test_300c() {
15094         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.0) ] &&
15095                 skip "skipped for lustre < 2.7.0" && return
15096         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15097         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15098         local file_count
15099
15100         mkdir -p $DIR/$tdir
15101         $LFS setdirstripe -i 0 -c 2 $DIR/$tdir/striped_dir ||
15102                 error "set striped dir error"
15103
15104         chown $RUNAS_ID:$RUNAS_GID $DIR/$tdir/striped_dir ||
15105                 error "chown striped dir failed"
15106
15107         $RUNAS createmany -o $DIR/$tdir/striped_dir/f 5000 ||
15108                 error "create 5k files failed"
15109
15110         file_count=$(ls $DIR/$tdir/striped_dir | wc -l)
15111
15112         [ "$file_count" = 5000 ] || error "file count $file_count != 5000"
15113
15114         rm -rf $DIR/$tdir
15115 }
15116 run_test 300c "chown && check ls under striped directory"
15117
15118 test_300d() {
15119         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.0) ] &&
15120                 skip "skipped for lustre < 2.7.0" && return
15121         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15122         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15123         local stripe_count
15124         local file
15125
15126         mkdir -p $DIR/$tdir
15127         $SETSTRIPE -c 2 $DIR/$tdir
15128
15129         #local striped directory
15130         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir ||
15131                 error "set striped dir error"
15132         createmany -o $DIR/$tdir/striped_dir/f 10 ||
15133                 error "create 10 files failed"
15134
15135         #remote striped directory
15136         $LFS setdirstripe -i 1 -c 2 $DIR/$tdir/remote_striped_dir ||
15137                 error "set striped dir error"
15138         createmany -o $DIR/$tdir/remote_striped_dir/f 10 ||
15139                 error "create 10 files failed"
15140
15141         for file in $(find $DIR/$tdir); do
15142                 stripe_count=$($GETSTRIPE -c $file)
15143                 [ $stripe_count -eq 2 ] ||
15144                         error "wrong stripe $stripe_count for $file"
15145         done
15146
15147         rm -rf $DIR/$tdir
15148 }
15149 run_test 300d "check default stripe under striped directory"
15150
15151 test_300e() {
15152         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
15153                 skip "Need MDS version at least 2.7.55" && return
15154         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15155         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15156         local stripe_count
15157         local file
15158
15159         mkdir -p $DIR/$tdir
15160
15161         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir ||
15162                 error "set striped dir error"
15163
15164         touch $DIR/$tdir/striped_dir/a
15165         touch $DIR/$tdir/striped_dir/b
15166         touch $DIR/$tdir/striped_dir/c
15167
15168         mkdir $DIR/$tdir/striped_dir/dir_a
15169         mkdir $DIR/$tdir/striped_dir/dir_b
15170         mkdir $DIR/$tdir/striped_dir/dir_c
15171
15172         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir/stp_a ||
15173                 error "set striped adir under striped dir error"
15174
15175         $LFS setdirstripe -i 0 -c 2 -H all_char $DIR/$tdir/striped_dir/stp_b ||
15176                 error "set striped bdir under striped dir error"
15177
15178         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir/stp_c ||
15179                 error "set striped cdir under striped dir error"
15180
15181         mrename $DIR/$tdir/striped_dir/dir_a $DIR/$tdir/striped_dir/dir_b ||
15182                 error "rename dir under striped dir fails"
15183
15184         mrename $DIR/$tdir/striped_dir/stp_a $DIR/$tdir/striped_dir/stp_b ||
15185                 error "rename dir under different stripes fails"
15186
15187         mrename $DIR/$tdir/striped_dir/a $DIR/$tdir/striped_dir/c ||
15188                 error "rename file under striped dir should succeed"
15189
15190         mrename $DIR/$tdir/striped_dir/dir_b $DIR/$tdir/striped_dir/dir_c ||
15191                 error "rename dir under striped dir should succeed"
15192
15193         rm -rf $DIR/$tdir
15194 }
15195 run_test 300e "check rename under striped directory"
15196
15197 test_300f() {
15198         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
15199                 skip "Need MDS version at least 2.7.55" && return
15200         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15201         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15202         local stripe_count
15203         local file
15204
15205         rm -rf $DIR/$tdir
15206         mkdir -p $DIR/$tdir
15207
15208         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir ||
15209                 error "set striped dir error"
15210
15211         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir1 ||
15212                 error "set striped dir error"
15213
15214         touch $DIR/$tdir/striped_dir/a
15215         mkdir $DIR/$tdir/striped_dir/dir_a
15216         $LFS setdirstripe -i 0 -c 2 $DIR/$tdir/striped_dir/stp_a ||
15217                 error "create striped dir under striped dir fails"
15218
15219         touch $DIR/$tdir/striped_dir1/b
15220         mkdir $DIR/$tdir/striped_dir1/dir_b
15221         $LFS setdirstripe -i 0 -c 2 $DIR/$tdir/striped_dir/stp_b ||
15222                 error "create striped dir under striped dir fails"
15223
15224         mrename $DIR/$tdir/striped_dir/dir_a $DIR/$tdir/striped_dir1/dir_b ||
15225                 error "rename dir under different striped dir should fail"
15226
15227         mrename $DIR/$tdir/striped_dir/stp_a $DIR/$tdir/striped_dir1/stp_b ||
15228                 error "rename striped dir under diff striped dir should fail"
15229
15230         mrename $DIR/$tdir/striped_dir/a $DIR/$tdir/striped_dir1/a ||
15231                 error "rename file under diff striped dirs fails"
15232
15233         rm -rf $DIR/$tdir
15234 }
15235 run_test 300f "check rename cross striped directory"
15236
15237 test_300_check_default_striped_dir()
15238 {
15239         local dirname=$1
15240         local default_count=$2
15241         local default_index=$3
15242         local stripe_count
15243         local stripe_index
15244         local dir_stripe_index
15245         local dir
15246
15247         echo "checking $dirname $default_count $default_index"
15248         $LFS setdirstripe -D -c $default_count -i $default_index \
15249                                 -t all_char $DIR/$tdir/$dirname ||
15250                 error "set default stripe on striped dir error"
15251         stripe_count=$($LFS getdirstripe -D -c $DIR/$tdir/$dirname)
15252         [ $stripe_count -eq $default_count ] ||
15253                 error "expect $default_count get $stripe_count for $dirname"
15254
15255         stripe_index=$($LFS getdirstripe -D -i $DIR/$tdir/$dirname)
15256         [ $stripe_index -eq $default_index ] ||
15257                 error "expect $default_index get $stripe_index for $dirname"
15258
15259         mkdir $DIR/$tdir/$dirname/{test1,test2,test3,test4} ||
15260                                                 error "create dirs failed"
15261
15262         createmany -o $DIR/$tdir/$dirname/f- 10 || error "create files failed"
15263         unlinkmany $DIR/$tdir/$dirname/f- 10    || error "unlink files failed"
15264         for dir in $(find $DIR/$tdir/$dirname/*); do
15265                 stripe_count=$($LFS getdirstripe -c $dir)
15266                 [ $stripe_count -eq $default_count ] ||
15267                 [ $stripe_count -eq 0 -o $default_count -eq 1 ] ||
15268                 error "stripe count $default_count != $stripe_count for $dir"
15269
15270                 stripe_index=$($LFS getdirstripe -i $dir)
15271                 [ $default_index -eq -1 -o $stripe_index -eq $default_index ] ||
15272                         error "$stripe_index != $default_index for $dir"
15273
15274                 #check default stripe
15275                 stripe_count=$($LFS getdirstripe -D -c $dir)
15276                 [ $stripe_count -eq $default_count ] ||
15277                 error "default count $default_count != $stripe_count for $dir"
15278
15279                 stripe_index=$($LFS getdirstripe -D -i $dir)
15280                 [ $stripe_index -eq $default_index ] ||
15281                 error "default index $default_index != $stripe_index for $dir"
15282         done
15283         rmdir $DIR/$tdir/$dirname/* || error "rmdir failed"
15284 }
15285
15286 test_300g() {
15287         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
15288                 skip "Need MDS version at least 2.7.55" && return
15289         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15290         local dir
15291         local stripe_count
15292         local stripe_index
15293
15294         mkdir $DIR/$tdir
15295         mkdir $DIR/$tdir/normal_dir
15296
15297         #Checking when client cache stripe index
15298         $LFS setdirstripe -c$MDSCOUNT $DIR/$tdir/striped_dir
15299         $LFS setdirstripe -D -i1 $DIR/$tdir/striped_dir ||
15300                 error "create striped_dir failed"
15301
15302         $LFS setdirstripe -i0 $DIR/$tdir/striped_dir/dir0 ||
15303                 error "create dir0 fails"
15304         stripe_index=$($LFS getdirstripe -i $DIR/$tdir/striped_dir/dir0)
15305         [ $stripe_index -eq 0 ] ||
15306                 error "dir0 expect index 0 got $stripe_index"
15307
15308         mkdir $DIR/$tdir/striped_dir/dir1 ||
15309                 error "create dir1 fails"
15310         stripe_index=$($LFS getdirstripe -i $DIR/$tdir/striped_dir/dir1)
15311         [ $stripe_index -eq 1 ] ||
15312                 error "dir1 expect index 1 got $stripe_index"
15313
15314         #check default stripe count/stripe index
15315         test_300_check_default_striped_dir normal_dir $MDSCOUNT 1
15316         test_300_check_default_striped_dir normal_dir 1 0
15317         test_300_check_default_striped_dir normal_dir 2 1
15318         test_300_check_default_striped_dir normal_dir 2 -1
15319
15320         #delete default stripe information
15321         echo "delete default stripeEA"
15322         $LFS setdirstripe -d $DIR/$tdir/normal_dir ||
15323                 error "set default stripe on striped dir error"
15324
15325         mkdir -p $DIR/$tdir/normal_dir/{test1,test2,test3,test4}
15326         for dir in $(find $DIR/$tdir/normal_dir/*); do
15327                 stripe_count=$($LFS getdirstripe -c $dir)
15328                 [ $stripe_count -eq 0 ] ||
15329                         error "expect 1 get $stripe_count for $dir"
15330                 stripe_index=$($LFS getdirstripe -i $dir)
15331                 [ $stripe_index -eq 0 ] ||
15332                         error "expect 0 get $stripe_index for $dir"
15333         done
15334 }
15335 run_test 300g "check default striped directory for normal directory"
15336
15337 test_300h() {
15338         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
15339                 skip "Need MDS version at least 2.7.55" && return
15340         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15341         local dir
15342         local stripe_count
15343
15344         mkdir $DIR/$tdir
15345         $LFS setdirstripe -i 0 -c $MDSCOUNT -t all_char \
15346                                         $DIR/$tdir/striped_dir ||
15347                 error "set striped dir error"
15348
15349         test_300_check_default_striped_dir striped_dir $MDSCOUNT 1
15350         test_300_check_default_striped_dir striped_dir 1 0
15351         test_300_check_default_striped_dir striped_dir 2 1
15352         test_300_check_default_striped_dir striped_dir 2 -1
15353
15354         #delete default stripe information
15355         $LFS setdirstripe -d $DIR/$tdir/striped_dir ||
15356                 error "set default stripe on striped dir error"
15357
15358         mkdir -p $DIR/$tdir/striped_dir/{test1,test2,test3,test4}
15359         for dir in $(find $DIR/$tdir/striped_dir/*); do
15360                 stripe_count=$($LFS getdirstripe -c $dir)
15361                 [ $stripe_count -eq 0 ] ||
15362                         error "expect 1 get $stripe_count for $dir"
15363         done
15364 }
15365 run_test 300h "check default striped directory for striped directory"
15366
15367 test_300i() {
15368         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
15369                 skip "Need MDS version at least 2.7.55" && return
15370         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15371         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15372         local stripe_count
15373         local file
15374
15375         mkdir $DIR/$tdir
15376
15377         $LFS setdirstripe -i 0 -c$MDSCOUNT -t all_char $DIR/$tdir/striped_dir ||
15378                 error "set striped dir error"
15379
15380         createmany -o $DIR/$tdir/striped_dir/f- 10 ||
15381                 error "create files under striped dir failed"
15382
15383         $LFS setdirstripe -i0 -c$MDSCOUNT -H all_char $DIR/$tdir/hashdir ||
15384                 error "set striped hashdir error"
15385
15386         $LFS setdirstripe -i0 -c$MDSCOUNT -H all_char $DIR/$tdir/hashdir/d0 ||
15387                 error "create dir0 under hash dir failed"
15388         $LFS setdirstripe -i0 -c$MDSCOUNT -H fnv_1a_64 $DIR/$tdir/hashdir/d1 ||
15389                 error "create dir1 under hash dir failed"
15390
15391         # unfortunately, we need to umount to clear dir layout cache for now
15392         # once we fully implement dir layout, we can drop this
15393         umount_client $MOUNT || error "umount failed"
15394         mount_client $MOUNT || error "mount failed"
15395
15396         $LFS find -H fnv_1a_64 $DIR/$tdir/hashdir
15397         local dircnt=$($LFS find -H fnv_1a_64 $DIR/$tdir/hashdir | wc -l)
15398         [ $dircnt -eq 1 ] || error "lfs find striped dir got:$dircnt,except:1"
15399
15400         #set the stripe to be unknown hash type
15401         #define OBD_FAIL_UNKNOWN_LMV_STRIPE     0x1901
15402         $LCTL set_param fail_loc=0x1901
15403         for ((i = 0; i < 10; i++)); do
15404                 $CHECKSTAT -t file $DIR/$tdir/striped_dir/f-$i ||
15405                         error "stat f-$i failed"
15406                 rm $DIR/$tdir/striped_dir/f-$i || error "unlink f-$i failed"
15407         done
15408
15409         touch $DIR/$tdir/striped_dir/f0 &&
15410                 error "create under striped dir with unknown hash should fail"
15411
15412         $LCTL set_param fail_loc=0
15413
15414         umount_client $MOUNT || error "umount failed"
15415         mount_client $MOUNT || error "mount failed"
15416
15417         return 0
15418 }
15419 run_test 300i "client handle unknown hash type striped directory"
15420
15421 test_300j() {
15422         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15423         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
15424                 skip "Need MDS version at least 2.7.55" && return
15425         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15426         local stripe_count
15427         local file
15428
15429         mkdir $DIR/$tdir
15430
15431         #define OBD_FAIL_SPLIT_UPDATE_REC       0x1702
15432         $LCTL set_param fail_loc=0x1702
15433         $LFS setdirstripe -i 0 -c$MDSCOUNT -t all_char $DIR/$tdir/striped_dir ||
15434                 error "set striped dir error"
15435
15436         createmany -o $DIR/$tdir/striped_dir/f- 10 ||
15437                 error "create files under striped dir failed"
15438
15439         $LCTL set_param fail_loc=0
15440
15441         rm -rf $DIR/$tdir || error "unlink striped dir fails"
15442
15443         return 0
15444 }
15445 run_test 300j "test large update record"
15446
15447 test_300k() {
15448         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
15449                 skip "Need MDS version at least 2.7.55" && return
15450         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15451         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15452         local stripe_count
15453         local file
15454
15455         mkdir $DIR/$tdir
15456
15457         #define OBD_FAIL_LARGE_STRIPE   0x1703
15458         $LCTL set_param fail_loc=0x1703
15459         $LFS setdirstripe -i 0 -c512 $DIR/$tdir/striped_dir ||
15460                 error "set striped dir error"
15461         $LCTL set_param fail_loc=0
15462
15463         $LFS getdirstripe $DIR/$tdir/striped_dir ||
15464                 error "getstripeddir fails"
15465         rm -rf $DIR/$tdir/striped_dir ||
15466                 error "unlink striped dir fails"
15467
15468         return 0
15469 }
15470 run_test 300k "test large striped directory"
15471
15472 test_300l() {
15473         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
15474                 skip "Need MDS version at least 2.7.55" && return
15475         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15476         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15477         local stripe_index
15478
15479         test_mkdir -p $DIR/$tdir/striped_dir
15480         chown $RUNAS_ID $DIR/$tdir/striped_dir ||
15481                         error "chown $RUNAS_ID failed"
15482         $LFS setdirstripe -i 1 -D $DIR/$tdir/striped_dir ||
15483                 error "set default striped dir failed"
15484
15485         #define OBD_FAIL_MDS_STALE_DIR_LAYOUT    0x158
15486         $LCTL set_param fail_loc=0x80000158
15487         $RUNAS mkdir $DIR/$tdir/striped_dir/test_dir || error "create dir fails"
15488
15489         stripe_index=$($LFS getdirstripe -i $DIR/$tdir/striped_dir/test_dir)
15490         [ $stripe_index -eq 1 ] ||
15491                 error "expect 1 get $stripe_index for $dir"
15492 }
15493 run_test 300l "non-root user to create dir under striped dir with stale layout"
15494
15495 test_300m() {
15496         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
15497                 skip "Need MDS version at least 2.7.55" && return
15498         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15499         [ $MDSCOUNT -ge 2 ] && skip "Only for single MDT" && return
15500
15501         mkdir -p $DIR/$tdir/striped_dir
15502         $LFS setdirstripe -D -c 1 $DIR/$tdir/striped_dir ||
15503                 error "set default stripes dir error"
15504
15505         mkdir $DIR/$tdir/striped_dir/a || error "mkdir a fails"
15506
15507         stripe_count=$($LFS getdirstripe -c $DIR/$tdir/striped_dir/a)
15508         [ $stripe_count -eq 0 ] ||
15509                         error "expect 0 get $stripe_count for a"
15510
15511         $LFS setdirstripe -D -c 2 $DIR/$tdir/striped_dir ||
15512                 error "set default stripes dir error"
15513
15514         mkdir $DIR/$tdir/striped_dir/b || error "mkdir b fails"
15515
15516         stripe_count=$($LFS getdirstripe -c $DIR/$tdir/striped_dir/b)
15517         [ $stripe_count -eq 0 ] ||
15518                         error "expect 0 get $stripe_count for b"
15519
15520         $LFS setdirstripe -D -c1 -i2 $DIR/$tdir/striped_dir ||
15521                 error "set default stripes dir error"
15522
15523         mkdir $DIR/$tdir/striped_dir/c &&
15524                 error "default stripe_index is invalid, mkdir c should fails"
15525
15526         rm -rf $DIR/$tdir || error "rmdir fails"
15527 }
15528 run_test 300m "setstriped directory on single MDT FS"
15529
15530 cleanup_300n() {
15531         local list=$(comma_list $(mdts_nodes))
15532
15533         trap 0
15534         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=0
15535 }
15536
15537 test_300n() {
15538         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
15539                 skip "Need MDS version at least 2.7.55" && return
15540         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15541         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15542         remote_mds_nodsh && skip "remote MDS with nodsh" && return
15543
15544         local stripe_index
15545         local list=$(comma_list $(mdts_nodes))
15546
15547         trap cleanup_300n RETURN EXIT
15548         mkdir -p $DIR/$tdir
15549         chmod 777 $DIR/$tdir
15550         $RUNAS $LFS setdirstripe -i0 -c$MDSCOUNT \
15551                                 $DIR/$tdir/striped_dir > /dev/null 2>&1 &&
15552                 error "create striped dir succeeds with gid=0"
15553
15554         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=-1
15555         $RUNAS $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/striped_dir ||
15556                 error "create striped dir fails with gid=-1"
15557
15558         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=0
15559         $RUNAS $LFS setdirstripe -i 1 -c$MDSCOUNT -D \
15560                                 $DIR/$tdir/striped_dir > /dev/null 2>&1 &&
15561                 error "set default striped dir succeeds with gid=0"
15562
15563
15564         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=-1
15565         $RUNAS $LFS setdirstripe -i 1 -c$MDSCOUNT -D $DIR/$tdir/striped_dir ||
15566                 error "set default striped dir fails with gid=-1"
15567
15568
15569         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=0
15570         $RUNAS mkdir $DIR/$tdir/striped_dir/test_dir ||
15571                                         error "create test_dir fails"
15572         $RUNAS mkdir $DIR/$tdir/striped_dir/test_dir1 ||
15573                                         error "create test_dir1 fails"
15574         $RUNAS mkdir $DIR/$tdir/striped_dir/test_dir2 ||
15575                                         error "create test_dir2 fails"
15576         cleanup_300n
15577 }
15578 run_test 300n "non-root user to create dir under striped dir with default EA"
15579
15580 test_300o() {
15581         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
15582                 skip "Need MDS version at least 2.7.55" && return
15583         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15584         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15585         local numfree1
15586         local numfree2
15587
15588         mkdir -p $DIR/$tdir
15589
15590         numfree1=$(lctl get_param -n mdc.*MDT0000*.filesfree)
15591         numfree2=$(lctl get_param -n mdc.*MDT0001*.filesfree)
15592         if [ $numfree1 -lt 66000 -o $numfree2 -lt 66000 ]; then
15593                 skip "not enough free inodes $numfree1 $numfree2"
15594                 return
15595         fi
15596
15597         numfree1=$(lctl get_param -n mdc.*MDT0000-mdc-*.kbytesfree)
15598         numfree2=$(lctl get_param -n mdc.*MDT0001-mdc-*.kbytesfree)
15599         if [ $numfree1 -lt 300000 -o $numfree2 -lt 300000 ]; then
15600                 skip "not enough free space $numfree1 $numfree2"
15601                 return
15602         fi
15603
15604         $LFS setdirstripe -c2 $DIR/$tdir/striped_dir ||
15605                 error "setdirstripe fails"
15606
15607         createmany -d $DIR/$tdir/striped_dir/d 131000 ||
15608                 error "create dirs fails"
15609
15610         $LCTL set_param ldlm.namespaces.*mdc-*.lru_size=0
15611         ls $DIR/$tdir/striped_dir > /dev/null ||
15612                 error "ls striped dir fails"
15613         unlinkmany -d $DIR/$tdir/striped_dir/d 131000 ||
15614                 error "unlink big striped dir fails"
15615 }
15616 run_test 300o "unlink big sub stripe(> 65000 subdirs)"
15617
15618 test_300p() {
15619         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15620         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15621         remote_mds_nodsh && skip "remote MDS with nodsh" && return
15622
15623         mkdir -p $DIR/$tdir
15624
15625         #define OBD_FAIL_OUT_ENOSPC     0x1704
15626         do_facet mds2 lctl set_param fail_loc=0x80001704
15627         $LFS setdirstripe -c2 $DIR/$tdir/bad_striped_dir > /dev/null 2>&1 &&
15628                         error "create striped directory should fail"
15629
15630         [ -e $DIR/$tdir/bad_striped_dir ] && error "striped dir exists"
15631
15632         $LFS setdirstripe -c2 $DIR/$tdir/bad_striped_dir
15633         true
15634 }
15635 run_test 300p "create striped directory without space"
15636
15637 test_300q() {
15638         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15639         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
15640
15641         local fd=$(free_fd)
15642         local cmd="exec $fd<$tdir"
15643         cd $DIR
15644         $LFS mkdir -c $MDSCOUNT $tdir || error "create $tdir fails"
15645         eval $cmd
15646         cmd="exec $fd<&-"
15647         trap "eval $cmd" EXIT
15648         cd $tdir || error "cd $tdir fails"
15649         rmdir  ../$tdir || error "rmdir $tdir fails"
15650         mkdir local_dir && error "create dir succeeds"
15651         $LFS setdirstripe -i1 remote_dir && error "create remote dir succeeds"
15652         eval $cmd
15653         return 0
15654 }
15655 run_test 300q "create remote directory under orphan directory"
15656
15657 prepare_remote_file() {
15658         mkdir $DIR/$tdir/src_dir ||
15659                 error "create remote source failed"
15660
15661         cp /etc/hosts $DIR/$tdir/src_dir/a || error
15662         touch $DIR/$tdir/src_dir/a
15663
15664         $LFS mkdir -i 1 $DIR/$tdir/tgt_dir ||
15665                 error "create remote target dir failed"
15666
15667         touch $DIR/$tdir/tgt_dir/b
15668
15669         mrename $DIR/$tdir/src_dir/a $DIR/$tdir/tgt_dir/b ||
15670                 error "rename dir cross MDT failed!"
15671
15672         $CHECKSTAT -t file $DIR/$tdir/src_dir/a &&
15673                 error "src_child still exists after rename"
15674
15675         $CHECKSTAT -t file $DIR/$tdir/tgt_dir/b ||
15676                 error "missing file(a) after rename"
15677
15678         diff /etc/hosts $DIR/$tdir/tgt_dir/b ||
15679                 error "diff after rename"
15680 }
15681
15682 test_310a() {
15683         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 4 MDTs" && return
15684         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15685         local remote_file=$DIR/$tdir/tgt_dir/b
15686
15687         mkdir -p $DIR/$tdir
15688
15689         prepare_remote_file || error "prepare remote file failed"
15690
15691         #open-unlink file
15692         $OPENUNLINK $remote_file $remote_file || error
15693         $CHECKSTAT -a $remote_file || error
15694 }
15695 run_test 310a "open unlink remote file"
15696
15697 test_310b() {
15698         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 4 MDTs" && return
15699         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15700         local remote_file=$DIR/$tdir/tgt_dir/b
15701
15702         mkdir -p $DIR/$tdir
15703
15704         prepare_remote_file || error "prepare remote file failed"
15705
15706         ln $remote_file $DIR/$tfile || error "link failed for remote file"
15707         $MULTIOP $DIR/$tfile Ouc || error "mulitop failed"
15708         $CHECKSTAT -t file $remote_file || error "check file failed"
15709 }
15710 run_test 310b "unlink remote file with multiple links while open"
15711
15712 test_310c() {
15713         [[ $MDSCOUNT -lt 4 ]] && skip "needs >= 4 MDTs" && return
15714         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15715         local remote_file=$DIR/$tdir/tgt_dir/b
15716
15717         mkdir -p $DIR/$tdir
15718
15719         prepare_remote_file || error "prepare remote file failed"
15720
15721         ln $remote_file $DIR/$tfile || error "link failed for remote file"
15722         multiop_bg_pause $remote_file O_uc ||
15723                         error "mulitop failed for remote file"
15724         MULTIPID=$!
15725         $MULTIOP $DIR/$tfile Ouc
15726         kill -USR1 $MULTIPID
15727         wait $MULTIPID
15728 }
15729 run_test 310c "open-unlink remote file with multiple links"
15730
15731 #LU-4825
15732 test_311() {
15733         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.54) ] &&
15734                 skip "lustre < 2.8.54 does not contain LU-4825 fix" && return
15735         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
15736         remote_mds_nodsh && skip "remote MDS with nodsh" && return
15737
15738         local old_iused=$($LFS df -i | grep OST0000 | awk '{ print $3 }')
15739
15740         mkdir -p $DIR/$tdir
15741         $SETSTRIPE -i 0 -c 1 $DIR/$tdir
15742         createmany -o $DIR/$tdir/$tfile. 1000
15743
15744         # statfs data is not real time, let's just calculate it
15745         old_iused=$((old_iused + 1000))
15746
15747         local count=$(do_facet $SINGLEMDS "lctl get_param -n \
15748                         osp.*OST0000*MDT0000.create_count")
15749         local max_count=$(do_facet $SINGLEMDS "lctl get_param -n \
15750                                 osp.*OST0000*MDT0000.max_create_count")
15751         for idx in $(seq $MDSCOUNT); do
15752                 do_facet mds$idx "lctl set_param -n \
15753                         osp.*OST0000*MDT000?.max_create_count=0"
15754         done
15755
15756         $SETSTRIPE -i 0 $DIR/$tdir/$tfile || error "setstripe failed"
15757         local index=$($GETSTRIPE -i $DIR/$tdir/$tfile)
15758         [ $index -ne 0 ] || error "$tfile stripe index is 0"
15759
15760         unlinkmany $DIR/$tdir/$tfile. 1000
15761
15762         for idx in $(seq $MDSCOUNT); do
15763                 do_facet mds$idx "lctl set_param -n \
15764                         osp.*OST0000*MDT000?.max_create_count=$max_count"
15765                 do_facet mds$idx "lctl set_param -n \
15766                         osp.*OST0000*MDT000?.create_count=$count"
15767         done
15768
15769         local new_iused
15770         for i in $(seq 120); do
15771                 new_iused=$($LFS df -i | grep OST0000 | awk '{ print $3 }')
15772                 # system may be too busy to destroy all objs in time, use
15773                 # a somewhat small value to not fail autotest
15774                 [ $((old_iused - new_iused)) -gt 400 ] && break
15775                 sleep 1
15776         done
15777
15778         echo "waited $i sec, old Iused $old_iused, new Iused $new_iused"
15779         [ $((old_iused - new_iused)) -gt 400 ] ||
15780                 error "objs not destroyed after unlink"
15781 }
15782 run_test 311 "disable OSP precreate, and unlink should destroy objs"
15783
15784 zfs_oid_to_objid()
15785 {
15786         local ost=$1
15787         local objid=$2
15788
15789         local vdevdir=$(dirname $(facet_vdevice $ost))
15790         local cmd="$ZDB -e -p $vdevdir -ddddd $(facet_device $ost)"
15791         local zfs_zapid=$(do_facet $ost $cmd |
15792                           grep -w "/O/0/d$((objid%32))" -C 5 |
15793                           awk '/Object/{getline; print $1}')
15794         local zfs_objid=$(do_facet $ost $cmd $zfs_zapid |
15795                           awk "/$objid = /"'{printf $3}')
15796
15797         echo $zfs_objid
15798 }
15799
15800 zfs_object_blksz() {
15801         local ost=$1
15802         local objid=$2
15803
15804         local vdevdir=$(dirname $(facet_vdevice $ost))
15805         local cmd="$ZDB -e -p $vdevdir -dddd $(facet_device $ost)"
15806         local blksz=$(do_facet $ost $cmd $objid |
15807                       awk '/dblk/{getline; printf $4}')
15808
15809         case "${blksz: -1}" in
15810                 k|K) blksz=$((${blksz:0:$((${#blksz} - 1))}*1024)) ;;
15811                 m|M) blksz=$((${blksz:0:$((${#blksz} - 1))}*1024*1024)) ;;
15812                 *) ;;
15813         esac
15814
15815         echo $blksz
15816 }
15817
15818 test_312() { # LU-4856
15819         remote_ost_nodsh && skip "remote OST with nodsh" && return
15820
15821         [ $(facet_fstype ost1) = "zfs" ] ||
15822                 { skip "the test only applies to zfs" && return; }
15823
15824         local max_blksz=$(do_facet ost1 \
15825                           $ZFS get -p recordsize $(facet_device ost1) |
15826                           awk '!/VALUE/{print $3}')
15827         local min_blksz=$(getconf PAGE_SIZE)
15828
15829         # to make life a little bit easier
15830         $LFS mkdir -c 1 -i 0 $DIR/$tdir
15831         $LFS setstripe -c 1 -i 0 $DIR/$tdir
15832
15833         local tf=$DIR/$tdir/$tfile
15834         touch $tf
15835         local oid=$($LFS getstripe $tf | awk '/obdidx/{getline; print $2}')
15836
15837         # Get ZFS object id
15838         local zfs_objid=$(zfs_oid_to_objid ost1 $oid)
15839
15840         # block size change by sequential over write
15841         local blksz
15842         for ((bs=$min_blksz; bs <= max_blksz; bs <<= 2)); do
15843                 dd if=/dev/zero of=$tf bs=$bs count=1 oflag=sync conv=notrunc
15844
15845                 blksz=$(zfs_object_blksz ost1 $zfs_objid)
15846                 [ $blksz -eq $bs ] || error "blksz error: $blksz, expected: $bs"
15847         done
15848         rm -f $tf
15849
15850         # block size change by sequential append write
15851         dd if=/dev/zero of=$tf bs=$min_blksz count=1 oflag=sync conv=notrunc
15852         oid=$($LFS getstripe $tf | awk '/obdidx/{getline; print $2}')
15853         zfs_objid=$(zfs_oid_to_objid ost1 $oid)
15854
15855         for ((count = 1; count < $((max_blksz / min_blksz)); count *= 2)); do
15856                 dd if=/dev/zero of=$tf bs=$min_blksz count=$count seek=$count \
15857                         oflag=sync conv=notrunc
15858
15859                 blksz=$(zfs_object_blksz ost1 $zfs_objid)
15860                 [ $blksz -eq $((2 * count * min_blksz)) ] ||
15861                         error "blksz error, actual $blksz, "    \
15862                                 "expected: 2 * $count * $min_blksz"
15863         done
15864         rm -f $tf
15865
15866         # random write
15867         touch $tf
15868         oid=$($LFS getstripe $tf | awk '/obdidx/{getline; print $2}')
15869         zfs_objid=$(zfs_oid_to_objid ost1 $oid)
15870
15871         dd if=/dev/zero of=$tf bs=1K count=1 oflag=sync conv=notrunc
15872         blksz=$(zfs_object_blksz ost1 $zfs_objid)
15873         [ $blksz -eq $min_blksz ] ||
15874                 error "blksz error: $blksz, expected: $min_blksz"
15875
15876         dd if=/dev/zero of=$tf bs=64K count=1 oflag=sync conv=notrunc seek=128
15877         blksz=$(zfs_object_blksz ost1 $zfs_objid)
15878         [ $blksz -eq 65536 ] || error "blksz error: $blksz, expected: 64k"
15879
15880         dd if=/dev/zero of=$tf bs=1M count=1 oflag=sync conv=notrunc
15881         blksz=$(zfs_object_blksz ost1 $zfs_objid)
15882         [ $blksz -eq 65536 ] || error "rewrite error: $blksz, expected: 64k"
15883 }
15884 run_test 312 "make sure ZFS adjusts its block size by write pattern"
15885
15886 test_313() {
15887         remote_ost_nodsh && skip "remote OST with nodsh" && return
15888
15889         local file=$DIR/$tfile
15890         rm -f $file
15891         $SETSTRIPE -c 1 -i 0 $file || error "setstripe failed"
15892
15893         # define OBD_FAIL_TGT_RCVD_EIO           0x720
15894         do_facet ost1 "$LCTL set_param fail_loc=0x720"
15895         dd if=/dev/zero of=$file bs=4096 oflag=direct count=1 &&
15896                 error "write should failed"
15897         do_facet ost1 "$LCTL set_param fail_loc=0"
15898         rm -f $file
15899 }
15900 run_test 313 "io should fail after last_rcvd update fail"
15901
15902 test_fake_rw() {
15903         local read_write=$1
15904         if [ "$read_write" = "write" ]; then
15905                 local dd_cmd="dd if=/dev/zero of=$DIR/$tfile"
15906         elif [ "$read_write" = "read" ]; then
15907                 local dd_cmd="dd of=/dev/null if=$DIR/$tfile"
15908         else
15909                 error "argument error"
15910         fi
15911
15912         # turn off debug for performance testing
15913         local saved_debug=$($LCTL get_param -n debug)
15914         $LCTL set_param debug=0
15915
15916         $SETSTRIPE -c 1 -i 0 $DIR/$tfile
15917
15918         # get ost1 size - lustre-OST0000
15919         local ost1_avail_size=$($LFS df | awk /${ost1_svc}/'{ print $4 }')
15920         local blocks=$((ost1_avail_size/2/1024)) # half avail space by megabytes
15921         [ $blocks -gt 1000 ] && blocks=1000 # 1G in maximum
15922
15923         if [ "$read_write" = "read" ]; then
15924                 truncate -s $(expr 1048576 \* $blocks) $DIR/$tfile
15925         fi
15926
15927         local start_time=$(date +%s.%N)
15928         $dd_cmd bs=1M count=$blocks oflag=sync ||
15929                 error "real dd $read_write error"
15930         local duration=$(bc <<< "$(date +%s.%N) - $start_time")
15931
15932         if [ "$read_write" = "write" ]; then
15933                 rm -f $DIR/$tfile
15934         fi
15935
15936         # define OBD_FAIL_OST_FAKE_RW           0x238
15937         do_facet ost1 $LCTL set_param fail_loc=0x238
15938
15939         local start_time=$(date +%s.%N)
15940         $dd_cmd bs=1M count=$blocks oflag=sync ||
15941                 error "fake dd $read_write error"
15942         local duration_fake=$(bc <<< "$(date +%s.%N) - $start_time")
15943
15944         if [ "$read_write" = "write" ]; then
15945                 # verify file size
15946                 cancel_lru_locks osc
15947                 $CHECKSTAT -t file -s $((blocks * 1024 * 1024)) $DIR/$tfile ||
15948                         error "$tfile size not $blocks MB"
15949         fi
15950         do_facet ost1 $LCTL set_param fail_loc=0
15951
15952         echo "fake $read_write $duration_fake vs. normal $read_write" \
15953                 "$duration in seconds"
15954         [ $(bc <<< "$duration_fake < $duration") -eq 1 ] ||
15955                 error_not_in_vm "fake write is slower"
15956
15957         $LCTL set_param -n debug="$saved_debug"
15958         rm -f $DIR/$tfile
15959 }
15960 test_399a() { # LU-7655 for OST fake write
15961         remote_ost_nodsh && skip "remote OST with nodsh" && return
15962
15963         test_fake_rw write
15964 }
15965 run_test 399a "fake write should not be slower than normal write"
15966
15967 test_399b() { # LU-8726 for OST fake read
15968         remote_ost_nodsh && skip "remote OST with nodsh" && return
15969
15970         if [ "$(facet_fstype ost1)" != "ldiskfs" ]; then
15971                 skip "ldiskfs only test" && return 0
15972         fi
15973         test_fake_rw read
15974 }
15975 run_test 399b "fake read should not be slower than normal read"
15976
15977 test_400a() { # LU-1606, was conf-sanity test_74
15978         local extra_flags=''
15979         local out=$TMP/$tfile
15980         local prefix=/usr/include/lustre
15981         local prog
15982
15983         if ! which $CC > /dev/null 2>&1; then
15984                 skip_env "$CC is not installed"
15985                 return 0
15986         fi
15987
15988         if ! [[ -d $prefix ]]; then
15989                 # Assume we're running in tree and fixup the include path.
15990                 extra_flags+=" -I$LUSTRE/include"
15991                 extra_flags+=" -L$LUSTRE/utils"
15992         fi
15993
15994         for prog in $LUSTRE_TESTS_API_DIR/*.c; do
15995                 $CC -Wall -Werror $extra_flags -llustreapi -o $out $prog ||
15996                         error "client api broken"
15997         done
15998         rm -f $out
15999 }
16000 run_test 400a "Lustre client api program can compile and link"
16001
16002 test_400b() { # LU-1606, LU-5011
16003         local header
16004         local out=$TMP/$tfile
16005         local prefix=/usr/include/linux/lustre
16006
16007         # We use a hard coded prefix so that this test will not fail
16008         # when run in tree. There are headers in lustre/include/lustre/
16009         # that are not packaged (like lustre_idl.h) and have more
16010         # complicated include dependencies (like config.h and lnet/types.h).
16011         # Since this test about correct packaging we just skip them when
16012         # they don't exist (see below) rather than try to fixup cppflags.
16013
16014         if ! which $CC > /dev/null 2>&1; then
16015                 skip_env "$CC is not installed"
16016                 return 0
16017         fi
16018
16019         for header in $prefix/*.h; do
16020                 if ! [[ -f "$header" ]]; then
16021                         continue
16022                 fi
16023
16024                 if [[ "$(basename $header)" == lustre_ioctl.h ]]; then
16025                         continue # lustre_ioctl.h is internal header
16026                 fi
16027
16028                 $CC -Wall -Werror -include $header -c -x c /dev/null -o $out ||
16029                         error "cannot compile '$header'"
16030         done
16031         rm -f $out
16032 }
16033 run_test 400b "packaged headers can be compiled"
16034
16035 test_401a() { #LU-7437
16036         local printf_arg=$(find -printf 2>&1 | grep "unrecognized:")
16037         [ -n "$printf_arg" ] && skip_env "find does not support -printf" &&
16038                 return
16039         #count the number of parameters by "list_param -R"
16040         local params=$($LCTL list_param -R '*' 2>/dev/null | wc -l)
16041         #count the number of parameters by listing proc files
16042         local proc_dirs=$(eval \ls -d $proc_regexp 2>/dev/null)
16043         echo "proc_dirs='$proc_dirs'"
16044         [ -n "$proc_dirs" ] || error "no proc_dirs on $HOSTNAME"
16045         local procs=$(find -L $proc_dirs -mindepth 1 -printf '%P\n' 2>/dev/null|
16046                       sort -u | wc -l)
16047
16048         [ $params -eq $procs ] ||
16049                 error "found $params parameters vs. $procs proc files"
16050
16051         # test the list_param -D option only returns directories
16052         params=$($LCTL list_param -R -D '*' 2>/dev/null | wc -l)
16053         #count the number of parameters by listing proc directories
16054         procs=$(find -L $proc_dirs -mindepth 1 -type d -printf '%P\n' 2>/dev/null |
16055                 sort -u | wc -l)
16056
16057         [ $params -eq $procs ] ||
16058                 error "found $params parameters vs. $procs proc files"
16059 }
16060 run_test 401a "Verify if 'lctl list_param -R' can list parameters recursively"
16061
16062 test_401b() {
16063         local save=$($LCTL get_param -n jobid_var)
16064         local tmp=testing
16065
16066         $LCTL set_param foo=bar jobid_var=$tmp bar=baz &&
16067                 error "no error returned when setting bad parameters"
16068
16069         local jobid_new=$($LCTL get_param -n foe jobid_var baz)
16070         [[ "$jobid_new" == "$tmp" ]] || error "jobid tmp $jobid_new != $tmp"
16071
16072         $LCTL set_param -n fog=bam jobid_var=$save bat=fog
16073         local jobid_old=$($LCTL get_param -n foe jobid_var bag)
16074         [[ "$jobid_old" == "$save" ]] || error "jobid new $jobid_old != $save"
16075 }
16076 run_test 401b "Verify 'lctl {get,set}_param' continue after error"
16077
16078 test_401c() {
16079         local jobid_var_old=$($LCTL get_param -n jobid_var)
16080         local jobid_var_new
16081
16082         $LCTL set_param jobid_var= &&
16083                 error "no error returned for 'set_param a='"
16084
16085         jobid_var_new=$($LCTL get_param -n jobid_var)
16086         [[ "$jobid_var_old" == "$jobid_var_new" ]] ||
16087                 error "jobid_var was changed by setting without value"
16088
16089         $LCTL set_param jobid_var &&
16090                 error "no error returned for 'set_param a'"
16091
16092         jobid_var_new=$($LCTL get_param -n jobid_var)
16093         [[ "$jobid_var_old" == "$jobid_var_new" ]] ||
16094                 error "jobid_var was changed by setting without value"
16095 }
16096 run_test 401c "Verify 'lctl set_param' without value fails in either format."
16097
16098 test_401d() {
16099         local jobid_var_old=$($LCTL get_param -n jobid_var)
16100         local jobid_var_new
16101         local new_value="foo=bar"
16102
16103         $LCTL set_param jobid_var=$new_value ||
16104                 error "'set_param a=b' did not accept a value containing '='"
16105
16106         jobid_var_new=$($LCTL get_param -n jobid_var)
16107         [[ "$jobid_var_new" == "$new_value" ]] ||
16108                 error "'set_param a=b' failed on a value containing '='"
16109
16110         # Reset the jobid_var to test the other format
16111         $LCTL set_param jobid_var=$jobid_var_old
16112         jobid_var_new=$($LCTL get_param -n jobid_var)
16113         [[ "$jobid_var_new" == "$jobid_var_old" ]] ||
16114                 error "failed to reset jobid_var"
16115
16116         $LCTL set_param jobid_var $new_value ||
16117                 error "'set_param a b' did not accept a value containing '='"
16118
16119         jobid_var_new=$($LCTL get_param -n jobid_var)
16120         [[ "$jobid_var_new" == "$new_value" ]] ||
16121                 error "'set_param a b' failed on a value containing '='"
16122
16123         $LCTL set_param jobid_var $jobid_var_old
16124         jobid_var_new=$($LCTL get_param -n jobid_var)
16125         [[ "$jobid_var_new" == "$jobid_var_old" ]] ||
16126                 error "failed to reset jobid_var"
16127 }
16128 run_test 401d "Verify 'lctl set_param' accepts values containing '='"
16129
16130 test_402() {
16131         local server_version=$(lustre_version_code $SINGLEMDS)
16132         [[ $server_version -ge $(version_code 2.7.66) ]] ||
16133         [[ $server_version -ge $(version_code 2.7.18.4) &&
16134                 $server_version -lt $(version_code 2.7.50) ]] ||
16135         [[ $server_version -ge $(version_code 2.7.2) &&
16136                 $server_version -lt $(version_code 2.7.11) ]] ||
16137                 { skip "Need MDS version 2.7.2+ or 2.7.18.4+ or 2.7.66+";
16138                         return; }
16139         remote_mds_nodsh && skip "remote MDS with nodsh" && return
16140         $LFS setdirstripe -i 0 $DIR/$tdir || error "setdirstripe -i 0 failed"
16141 #define OBD_FAIL_MDS_FLD_LOOKUP 0x15c
16142         do_facet mds1 "lctl set_param fail_loc=0x8000015c"
16143         touch $DIR/$tdir/$tfile && error "touch should fail with ENOENT" ||
16144                 echo "Touch failed - OK"
16145 }
16146 run_test 402 "Return ENOENT to lod_generate_and_set_lovea"
16147
16148 test_403() {
16149         local file1=$DIR/$tfile.1
16150         local file2=$DIR/$tfile.2
16151         local tfile=$TMP/$tfile
16152
16153         rm -f $file1 $file2 $tfile
16154
16155         touch $file1
16156         ln $file1 $file2
16157
16158         # 30 sec OBD_TIMEOUT in ll_getattr()
16159         # right before populating st_nlink
16160         $LCTL set_param fail_loc=0x80001409
16161         stat -c %h $file1 > $tfile &
16162
16163         # create an alias, drop all locks and reclaim the dentry
16164         < $file2
16165         cancel_lru_locks mdc
16166         cancel_lru_locks osc
16167         sysctl -w vm.drop_caches=2
16168
16169         wait
16170
16171         [ `cat $tfile` -gt 0 ] || error "wrong nlink count: `cat $tfile`"
16172
16173         rm -f $tfile $file1 $file2
16174 }
16175 run_test 403 "i_nlink should not drop to zero due to aliasing"
16176
16177 test_404() { # LU-6601
16178         local server_version=$(lustre_version_code $SINGLEMDS)
16179         [[ $server_version -ge $(version_code 2.8.53) ]] ||
16180                 { skip "Need server version newer than 2.8.52"; return 0; }
16181
16182         remote_mds_nodsh && skip "remote MDS with nodsh" && return
16183         local mosps=$(do_facet $SINGLEMDS $LCTL dl |
16184                 awk '/osp .*-osc-MDT/ { print $4}')
16185
16186         local osp
16187         for osp in $mosps; do
16188                 echo "Deactivate: " $osp
16189                 do_facet $SINGLEMDS $LCTL --device %$osp deactivate
16190                 local stat=$(do_facet $SINGLEMDS $LCTL dl |
16191                         awk -vp=$osp '$4 == p { print $2 }')
16192                 [ $stat = IN ] || {
16193                         do_facet $SINGLEMDS $LCTL dl | grep -w $osp
16194                         error "deactivate error"
16195                 }
16196                 echo "Activate: " $osp
16197                 do_facet $SINGLEMDS $LCTL --device %$osp activate
16198                 local stat=$(do_facet $SINGLEMDS $LCTL dl |
16199                         awk -vp=$osp '$4 == p { print $2 }')
16200                 [ $stat = UP ] || {
16201                         do_facet $SINGLEMDS $LCTL dl | grep -w $osp
16202                         error "activate error"
16203                 }
16204         done
16205 }
16206 run_test 404 "validate manual {de}activated works properly for OSPs"
16207
16208 test_405() {
16209         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.6.92) -o \
16210         [ $(lustre_version_code client) -lt $(version_code 2.6.99) ] &&
16211                 skip "Layout swap lock is not supported" && return
16212
16213         check_swap_layouts_support && return 0
16214
16215         test_mkdir $DIR/$tdir
16216         swap_lock_test -d $DIR/$tdir ||
16217                 error "One layout swap locked test failed"
16218 }
16219 run_test 405 "Various layout swap lock tests"
16220
16221 test_406() {
16222         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
16223         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
16224         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
16225         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
16226         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.50) ] &&
16227                 skip "Need MDS version at least 2.8.50" && return
16228
16229         local def_stripe_count=$($GETSTRIPE -c $MOUNT)
16230         local def_stripe_size=$($GETSTRIPE -S $MOUNT)
16231         local def_stripe_offset=$($GETSTRIPE -i $MOUNT)
16232         local def_pool=$($GETSTRIPE -p $MOUNT)
16233
16234         local test_pool=$TESTNAME
16235         pool_add $test_pool || error "pool_add failed"
16236         pool_add_targets $test_pool 0 $(($OSTCOUNT - 1)) 1 ||
16237                 error "pool_add_targets failed"
16238
16239         # parent set default stripe count only, child will stripe from both
16240         # parent and fs default
16241         $SETSTRIPE -c 1 -i 1 -S $((def_stripe_size * 2)) -p $test_pool $MOUNT ||
16242                 error "setstripe $MOUNT failed"
16243         $LFS mkdir -c $MDSCOUNT $DIR/$tdir || error "mkdir $tdir failed"
16244         $SETSTRIPE -c $OSTCOUNT $DIR/$tdir || error "setstripe $tdir failed"
16245         for i in $(seq 10); do
16246                 local f=$DIR/$tdir/$tfile.$i
16247                 touch $f || error "touch failed"
16248                 local count=$($GETSTRIPE -c $f)
16249                 [ $count -eq $OSTCOUNT ] ||
16250                         error "$f stripe count $count != $OSTCOUNT"
16251                 local offset=$($GETSTRIPE -i $f)
16252                 [ $offset -eq 1 ] || error "$f stripe offset $offset != 1"
16253                 local size=$($GETSTRIPE -S $f)
16254                 [ $size -eq $((def_stripe_size * 2)) ] ||
16255                         error "$f stripe size $size != $((def_stripe_size * 2))"
16256                 local pool=$($GETSTRIPE -p $f)
16257                 [ $pool == $test_pool ] || error "$f pool $pool != $test_pool"
16258         done
16259
16260         # change fs default striping, delete parent default striping, now child
16261         # will stripe from new fs default striping only
16262         $SETSTRIPE -c 1 -S $def_stripe_size -i 0 $MOUNT ||
16263                 error "change $MOUNT default stripe failed"
16264         $SETSTRIPE -c 0 $DIR/$tdir || error "delete $tdir default stripe failed"
16265         for i in $(seq 11 20); do
16266                 local f=$DIR/$tdir/$tfile.$i
16267                 touch $f || error "touch $f failed"
16268                 local count=$($GETSTRIPE -c $f)
16269                 [ $count -eq 1 ] || error "$f stripe count $count != 1"
16270                 local offset=$($GETSTRIPE -i $f)
16271                 [ $offset -eq 0 ] || error "$f stripe offset $offset != 0"
16272                 local size=$($GETSTRIPE -S $f)
16273                 [ $size -eq $def_stripe_size ] ||
16274                         error "$f stripe size $size != $def_stripe_size"
16275                 local pool=$($GETSTRIPE -p $f)
16276                 [ "#$pool" == "#" ] || error "$f pool $pool is set"
16277
16278         done
16279
16280         unlinkmany $DIR/$tdir/$tfile. 1 20
16281
16282         # restore FS default striping
16283         if [ -z $def_pool ]; then
16284                 $SETSTRIPE -c $def_stripe_count -S $def_stripe_size \
16285                         -i $def_stripe_offset $MOUNT ||
16286                         error "restore default striping failed"
16287         else
16288                 $SETSTRIPE -c $def_stripe_count -S $def_stripe_size \
16289                         -i $def_stripe_offset -p $def_pool $MOUNT ||
16290                         error "restore default striping with $def_pool failed"
16291         fi
16292
16293         local f=$DIR/$tdir/$tfile
16294         pool_remove_all_targets $test_pool $f
16295         pool_remove $test_pool $f
16296 }
16297 run_test 406 "DNE support fs default striping"
16298
16299 test_407() {
16300         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
16301         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.8.55) ]] &&
16302                 skip "Need MDS version at least 2.8.55" && return
16303         remote_mds_nodsh && skip "remote MDS with nodsh" && return
16304
16305         $LFS mkdir -i 0 -c 1 $DIR/$tdir.0 ||
16306                 error "$LFS mkdir -i 0 -c 1 $tdir.0 failed"
16307         $LFS mkdir -i 1 -c 1 $DIR/$tdir.1 ||
16308                 error "$LFS mkdir -i 1 -c 1 $tdir.1 failed"
16309         touch $DIR/$tdir.0/$tfile.0 || error "touch $tdir.0/$tfile.0 failed"
16310
16311         #define OBD_FAIL_DT_TXN_STOP    0x2019
16312         for idx in $(seq $MDSCOUNT); do
16313                 do_facet mds$idx "lctl set_param fail_loc=0x2019"
16314         done
16315         $LFS mkdir -c 2 $DIR/$tdir && error "$LFS mkdir -c 2 $tdir should fail"
16316         mv $DIR/$tdir.0/$tfile.0 $DIR/$tdir.1/$tfile.1 &&
16317                 error "mv $tdir.0/$tfile.0 $tdir.1/$tfile.1 should fail"
16318         true
16319 }
16320 run_test 407 "transaction fail should cause operation fail"
16321
16322 test_408() {
16323         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 oflag=direct
16324
16325         #define OBD_FAIL_OSC_BRW_PREP_REQ2        0x40a
16326         lctl set_param fail_loc=0x8000040a
16327         # let ll_prepare_partial_page() fail
16328         dd if=/dev/zero of=$DIR/$tfile bs=2048 count=1 conv=notrunc || true
16329
16330         rm -f $DIR/$tfile
16331
16332         # create at least 100 unused inodes so that
16333         # shrink_icache_memory(0) should not return 0
16334         touch $DIR/$tfile-{0..100}
16335         rm -f $DIR/$tfile-{0..100}
16336         sync
16337
16338         echo 2 > /proc/sys/vm/drop_caches
16339 }
16340 run_test 408 "drop_caches should not hang due to page leaks"
16341
16342 test_409()
16343 {
16344         [ $MDSCOUNT -lt 2 ] &&
16345                 skip "We need at least 2 MDTs for this test" && return
16346
16347         check_mount_and_prep
16348
16349         mkdir -p $DIR/$tdir || error "(0) Fail to mkdir"
16350         $LFS mkdir -i 1 -c 2 $DIR/$tdir/foo || error "(1) Fail to mkdir"
16351         touch $DIR/$tdir/guard || error "(2) Fail to create"
16352
16353         local PREFIX=$(str_repeat 'A' 128)
16354         echo "Create 1K hard links start at $(date)"
16355         createmany -l $DIR/$tdir/guard $DIR/$tdir/foo/${PREFIX}_ 1000 ||
16356                 error "(3) Fail to hard link"
16357
16358         echo "Links count should be right although linkEA overflow"
16359         stat $DIR/$tdir/guard || error "(4) Fail to stat"
16360         local linkcount=$(stat --format=%h $DIR/$tdir/guard)
16361         [ $linkcount -eq 1001 ] ||
16362                 error "(5) Unexpected hard links count: $linkcount"
16363
16364         echo "List all links start at $(date)"
16365         ls -l $DIR/$tdir/foo > /dev/null ||
16366                 error "(6) Fail to list $DIR/$tdir/foo"
16367
16368         echo "Unlink hard links start at $(date)"
16369         unlinkmany $DIR/$tdir/foo/${PREFIX}_ 1000 ||
16370                 error "(7) Fail to unlink"
16371 }
16372 run_test 409 "Large amount of cross-MDTs hard links on the same file"
16373
16374 test_410()
16375 {
16376         [[ $(lustre_version_code client) -lt $(version_code 2.9.59) ]] &&
16377                 skip "Need client version at least 2.9.59" && return
16378
16379         # Create a file, and stat it from the kernel
16380         local testfile=$DIR/$tfile
16381         touch $testfile
16382
16383         local run_id=$RANDOM
16384         local my_ino=$(stat --format "%i" $testfile)
16385
16386         # Try to insert the module. This will always fail as the
16387         # module is designed to not be inserted.
16388         insmod $LUSTRE/tests/kernel/kinode.ko run_id=$run_id fname=$testfile \
16389             &> /dev/null
16390
16391         # Anything but success is a test failure
16392         dmesg | grep -q \
16393             "lustre_kinode_$run_id: inode numbers are identical: $my_ino" ||
16394             error "no inode match"
16395 }
16396 run_test 410 "Test inode number returned from kernel thread"
16397
16398 cleanup_test411_cgroup() {
16399         trap 0
16400         rmdir "$1"
16401 }
16402
16403 test_411() {
16404         local cg_basedir=/sys/fs/cgroup/memory
16405         # LU-9966
16406         test -f "$cg_basedir/memory.kmem.limit_in_bytes" ||
16407                 { skip "no setup for cgroup"; return; }
16408
16409         dd if=/dev/zero of=$DIR/$tfile bs=1M count=100 conv=fsync ||
16410                 error "test file creation failed"
16411         cancel_lru_locks osc
16412
16413         # Create a very small memory cgroup to force a slab allocation error
16414         local cgdir=$cg_basedir/osc_slab_alloc
16415         mkdir $cgdir || error "cgroup mkdir '$cgdir' failed"
16416         trap "cleanup_test411_cgroup $cgdir" EXIT
16417         echo 2M > $cgdir/memory.kmem.limit_in_bytes
16418         echo 1M > $cgdir/memory.limit_in_bytes
16419
16420         # Should not LBUG, just be killed by oom-killer
16421         sh -c "echo \$$ > $cgdir/tasks && dd if=$DIR/$tfile of=/dev/null" &&
16422                 error "fail to trigger a memory allocation error"
16423
16424         cleanup_test411_cgroup $cgdir
16425
16426         return 0
16427 }
16428 run_test 411 "Slab allocation error with cgroup does not LBUG"
16429
16430 prep_801() {
16431         [[ $(lustre_version_code mds1) -lt $(version_code 2.9.55) ]] ||
16432         [[ $(lustre_version_code ost1) -lt $(version_code 2.9.55) ]] &&
16433                 skip "Need server version at least 2.9.55" & exit 0
16434         start_full_debug_logging
16435 }
16436
16437 post_801() {
16438         stop_full_debug_logging
16439 }
16440
16441 barrier_stat() {
16442         if [ $(lustre_version_code mgs) -le $(version_code 2.10.0) ]; then
16443                 local st=$(do_facet mgs $LCTL barrier_stat $FSNAME |
16444                            awk '/The barrier for/ { print $7 }')
16445                 echo $st
16446         else
16447                 local st=$(do_facet mgs $LCTL barrier_stat -s $FSNAME)
16448                 echo \'$st\'
16449         fi
16450 }
16451
16452 barrier_expired() {
16453         local expired
16454
16455         if [ $(lustre_version_code mgs) -le $(version_code 2.10.0) ]; then
16456                 expired=$(do_facet mgs $LCTL barrier_stat $FSNAME |
16457                           awk '/will be expired/ { print $7 }')
16458         else
16459                 expired=$(do_facet mgs $LCTL barrier_stat -t $FSNAME)
16460         fi
16461
16462         echo $expired
16463 }
16464
16465 test_801a() {
16466         prep_801
16467
16468         echo "Start barrier_freeze at: $(date)"
16469         #define OBD_FAIL_BARRIER_DELAY          0x2202
16470         do_facet mgs $LCTL set_param fail_val=5 fail_loc=0x2202
16471         do_facet mgs $LCTL barrier_freeze $FSNAME 10 &
16472
16473         sleep 2
16474         local b_status=$(barrier_stat)
16475         echo "Got barrier status at: $(date)"
16476         [ "$b_status" = "'freezing_p1'" ] ||
16477                 error "(1) unexpected barrier status $b_status"
16478
16479         do_facet mgs $LCTL set_param fail_val=0 fail_loc=0
16480         wait
16481         b_status=$(barrier_stat)
16482         [ "$b_status" = "'frozen'" ] ||
16483                 error "(2) unexpected barrier status $b_status"
16484
16485         local expired=$(barrier_expired)
16486         echo "sleep $((expired + 3)) seconds, then the barrier will be expired"
16487         sleep $((expired + 3))
16488
16489         b_status=$(barrier_stat)
16490         [ "$b_status" = "'expired'" ] ||
16491                 error "(3) unexpected barrier status $b_status"
16492
16493         do_facet mgs $LCTL barrier_freeze $FSNAME 10 ||
16494                 error "(4) fail to freeze barrier"
16495
16496         b_status=$(barrier_stat)
16497         [ "$b_status" = "'frozen'" ] ||
16498                 error "(5) unexpected barrier status $b_status"
16499
16500         echo "Start barrier_thaw at: $(date)"
16501         #define OBD_FAIL_BARRIER_DELAY          0x2202
16502         do_facet mgs $LCTL set_param fail_val=5 fail_loc=0x2202
16503         do_facet mgs $LCTL barrier_thaw $FSNAME &
16504
16505         sleep 2
16506         b_status=$(barrier_stat)
16507         echo "Got barrier status at: $(date)"
16508         [ "$b_status" = "'thawing'" ] ||
16509                 error "(6) unexpected barrier status $b_status"
16510
16511         do_facet mgs $LCTL set_param fail_val=0 fail_loc=0
16512         wait
16513         b_status=$(barrier_stat)
16514         [ "$b_status" = "'thawed'" ] ||
16515                 error "(7) unexpected barrier status $b_status"
16516
16517         #define OBD_FAIL_BARRIER_FAILURE        0x2203
16518         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x2203
16519         do_facet mgs $LCTL barrier_freeze $FSNAME
16520
16521         b_status=$(barrier_stat)
16522         [ "$b_status" = "'failed'" ] ||
16523                 error "(8) unexpected barrier status $b_status"
16524
16525         do_facet $SINGLEMDS $LCTL set_param fail_loc=0
16526         do_facet mgs $LCTL barrier_thaw $FSNAME
16527
16528         post_801
16529 }
16530 run_test 801a "write barrier user interfaces and stat machine"
16531
16532 test_801b() {
16533         prep_801
16534
16535         mkdir $DIR/$tdir || error "(1) fail to mkdir"
16536         createmany -d $DIR/$tdir/d 6 || "(2) fail to mkdir"
16537         touch $DIR/$tdir/d2/f10 || error "(3) fail to touch"
16538         touch $DIR/$tdir/d3/f11 || error "(4) fail to touch"
16539         touch $DIR/$tdir/d4/f12 || error "(5) fail to touch"
16540
16541         cancel_lru_locks mdc
16542
16543         # 180 seconds should be long enough
16544         do_facet mgs $LCTL barrier_freeze $FSNAME 180
16545
16546         local b_status=$(barrier_stat)
16547         [ "$b_status" = "'frozen'" ] ||
16548                 error "(6) unexpected barrier status $b_status"
16549
16550         mkdir $DIR/$tdir/d0/d10 &
16551         mkdir_pid=$!
16552
16553         touch $DIR/$tdir/d1/f13 &
16554         touch_pid=$!
16555
16556         ln $DIR/$tdir/d2/f10 $DIR/$tdir/d2/f14 &
16557         ln_pid=$!
16558
16559         mv $DIR/$tdir/d3/f11 $DIR/$tdir/d3/f15 &
16560         mv_pid=$!
16561
16562         rm -f $DIR/$tdir/d4/f12 &
16563         rm_pid=$!
16564
16565         stat $DIR/$tdir/d5 || error "(7) stat should succeed"
16566
16567         # To guarantee taht the 'stat' is not blocked
16568         b_status=$(barrier_stat)
16569         [ "$b_status" = "'frozen'" ] ||
16570                 error "(8) unexpected barrier status $b_status"
16571
16572         # let above commands to run at background
16573         sleep 5
16574
16575         ps -p $mkdir_pid || error "(9) mkdir should be blocked"
16576         ps -p $touch_pid || error "(10) touch should be blocked"
16577         ps -p $ln_pid || error "(11) link should be blocked"
16578         ps -p $mv_pid || error "(12) rename should be blocked"
16579         ps -p $rm_pid || error "(13) unlink should be blocked"
16580
16581         b_status=$(barrier_stat)
16582         [ "$b_status" = "'frozen'" ] ||
16583                 error "(14) unexpected barrier status $b_status"
16584
16585         do_facet mgs $LCTL barrier_thaw $FSNAME
16586         b_status=$(barrier_stat)
16587         [ "$b_status" = "'thawed'" ] ||
16588                 error "(15) unexpected barrier status $b_status"
16589
16590         wait $mkdir_pid || error "(16) mkdir should succeed"
16591         wait $touch_pid || error "(17) touch should succeed"
16592         wait $ln_pid || error "(18) link should succeed"
16593         wait $mv_pid || error "(19) rename should succeed"
16594         wait $rm_pid || error "(20) unlink should succeed"
16595
16596         post_801
16597 }
16598 run_test 801b "modification will be blocked by write barrier"
16599
16600 test_801c() {
16601         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 2 MDTs" && return
16602
16603         prep_801
16604
16605         stop mds2 || error "(1) Fail to stop mds2"
16606
16607         do_facet mgs $LCTL barrier_freeze $FSNAME 30
16608
16609         local b_status=$(barrier_stat)
16610         [ "$b_status" = "'expired'" -o "$b_status" = "'failed'" ] || {
16611                 do_facet mgs $LCTL barrier_thaw $FSNAME
16612                 error "(2) unexpected barrier status $b_status"
16613         }
16614
16615         do_facet mgs $LCTL barrier_rescan $FSNAME ||
16616                 error "(3) Fail to rescan barrier bitmap"
16617
16618         do_facet mgs $LCTL barrier_freeze $FSNAME 10
16619
16620         b_status=$(barrier_stat)
16621         [ "$b_status" = "'frozen'" ] ||
16622                 error "(4) unexpected barrier status $b_status"
16623
16624         do_facet mgs $LCTL barrier_thaw $FSNAME
16625         b_status=$(barrier_stat)
16626         [ "$b_status" = "'thawed'" ] ||
16627                 error "(5) unexpected barrier status $b_status"
16628
16629         local devname=$(mdsdevname 2)
16630
16631         start mds2 $devname $MDS_MOUNT_OPTS || error "(6) Fail to start mds2"
16632
16633         do_facet mgs $LCTL barrier_rescan $FSNAME ||
16634                 error "(7) Fail to rescan barrier bitmap"
16635
16636         post_801
16637 }
16638 run_test 801c "rescan barrier bitmap"
16639
16640 saved_MGS_MOUNT_OPTS=$MGS_MOUNT_OPTS
16641 saved_MDS_MOUNT_OPTS=$MDS_MOUNT_OPTS
16642 saved_OST_MOUNT_OPTS=$OST_MOUNT_OPTS
16643
16644 cleanup_802() {
16645         trap 0
16646
16647         stopall
16648         MGS_MOUNT_OPTS=$saved_MGS_MOUNT_OPTS
16649         MDS_MOUNT_OPTS=$saved_MDS_MOUNT_OPTS
16650         OST_MOUNT_OPTS=$saved_OST_MOUNT_OPTS
16651         setupall
16652 }
16653
16654 test_802() {
16655
16656         [[ $(lustre_version_code mds1) -lt $(version_code 2.9.55) ]] ||
16657         [[ $(lustre_version_code ost1) -lt $(version_code 2.9.55) ]] &&
16658                 skip "Need server version at least 2.9.55" & exit 0
16659
16660         mkdir $DIR/$tdir || error "(1) fail to mkdir"
16661
16662         cp $LUSTRE/tests/test-framework.sh $DIR/$tdir/ ||
16663                 error "(2) Fail to copy"
16664
16665         trap cleanup_802 EXIT
16666
16667         # sync by force before remount as readonly
16668         sync; sync_all_data; sleep 3; sync_all_data
16669
16670         stopall
16671
16672         MGS_MOUNT_OPTS=$(csa_add "$MGS_MOUNT_OPTS" -o rdonly_dev)
16673         MDS_MOUNT_OPTS=$(csa_add "$MDS_MOUNT_OPTS" -o rdonly_dev)
16674         OST_MOUNT_OPTS=$(csa_add "$OST_MOUNT_OPTS" -o rdonly_dev)
16675
16676         echo "Mount the server as read only"
16677         setupall server_only || error "(3) Fail to start servers"
16678
16679         echo "Mount client without ro should fail"
16680         mount_client $MOUNT &&
16681                 error "(4) Mount client without 'ro' should fail"
16682
16683         echo "Mount client with ro should succeed"
16684         mount_client $MOUNT ro ||
16685                 error "(5) Mount client with 'ro' should succeed"
16686
16687         echo "Modify should be refused"
16688         touch $DIR/$tdir/guard && error "(6) Touch should fail under ro mode"
16689
16690         echo "Read should be allowed"
16691         diff $LUSTRE/tests/test-framework.sh $DIR/$tdir/test-framework.sh ||
16692                 error "(7) Read should succeed under ro mode"
16693
16694         cleanup_802
16695 }
16696 run_test 802 "simulate readonly device"
16697
16698 #
16699 # tests that do cleanup/setup should be run at the end
16700 #
16701
16702 test_900() {
16703         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
16704         local ls
16705         #define OBD_FAIL_MGC_PAUSE_PROCESS_LOG   0x903
16706         $LCTL set_param fail_loc=0x903
16707
16708         cancel_lru_locks MGC
16709
16710         FAIL_ON_ERROR=true cleanup
16711         FAIL_ON_ERROR=true setup
16712 }
16713 run_test 900 "umount should not race with any mgc requeue thread"
16714
16715 complete $SECONDS
16716 [ -f $EXT2_DEV ] && rm $EXT2_DEV || true
16717 check_and_cleanup_lustre
16718 if [ "$I_MOUNTED" != "yes" ]; then
16719         lctl set_param debug="$OLDDEBUG" 2> /dev/null || true
16720 fi
16721 exit_status