Whamcloud - gitweb
d9199d5bcce97821f339d6103a1459570081faaa
[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: 13297 2108 9789 3637 9789 3561 5188
12 ALWAYS_EXCEPT="                42a  42b  42c  42d  45   68b   $SANITY_EXCEPT"
13 # UPDATE THE COMMENT ABOVE WITH BUG NUMBERS WHEN CHANGING ALWAYS_EXCEPT!
14
15 # with LOD/OSP landing
16 # bug number for skipped tests: LU-2036 LU-8139
17 ALWAYS_EXCEPT="                 76      101g    $ALWAYS_EXCEPT"
18
19 is_sles11()                                             # LU-4341
20 {
21         if [ -r /etc/SuSE-release ]
22         then
23                 local vers=$(grep VERSION /etc/SuSE-release | awk '{print $3}')
24                 local patchlev=$(grep PATCHLEVEL /etc/SuSE-release |
25                         awk '{ print $3 }')
26                 if [ $vers -eq 11 ] && [ $patchlev -ge 3 ]; then
27                         return 0
28                 fi
29         fi
30         return 1
31 }
32
33 if is_sles11; then                                      # LU-4341
34         ALWAYS_EXCEPT="$ALWAYS_EXCEPT 170"
35 fi
36
37 SRCDIR=$(cd $(dirname $0); echo $PWD)
38 export PATH=$PATH:/sbin
39
40 TMP=${TMP:-/tmp}
41
42 CC=${CC:-cc}
43 CHECKSTAT=${CHECKSTAT:-"checkstat -v"}
44 CREATETEST=${CREATETEST:-createtest}
45 LFS=${LFS:-lfs}
46 LFIND=${LFIND:-"$LFS find"}
47 LVERIFY=${LVERIFY:-ll_dirstripe_verify}
48 LCTL=${LCTL:-lctl}
49 OPENFILE=${OPENFILE:-openfile}
50 OPENUNLINK=${OPENUNLINK:-openunlink}
51 export MULTIOP=${MULTIOP:-multiop}
52 READS=${READS:-"reads"}
53 MUNLINK=${MUNLINK:-munlink}
54 SOCKETSERVER=${SOCKETSERVER:-socketserver}
55 SOCKETCLIENT=${SOCKETCLIENT:-socketclient}
56 MEMHOG=${MEMHOG:-memhog}
57 DIRECTIO=${DIRECTIO:-directio}
58 ACCEPTOR_PORT=${ACCEPTOR_PORT:-988}
59 STRIPES_PER_OBJ=-1
60 CHECK_GRANT=${CHECK_GRANT:-"yes"}
61 GRANT_CHECK_LIST=${GRANT_CHECK_LIST:-""}
62 export PARALLEL=${PARALLEL:-"no"}
63
64 export NAME=${NAME:-local}
65
66 SAVE_PWD=$PWD
67
68 CLEANUP=${CLEANUP:-:}
69 SETUP=${SETUP:-:}
70 TRACE=${TRACE:-""}
71 LUSTRE=${LUSTRE:-$(cd $(dirname $0)/..; echo $PWD)}
72 LUSTRE_TESTS_API_DIR=${LUSTRE_TESTS_API_DIR:-${LUSTRE}/tests/clientapi}
73 . $LUSTRE/tests/test-framework.sh
74 init_test_env $@
75 . ${CONFIG:=$LUSTRE/tests/cfg/${NAME}.sh}
76 init_logging
77
78 #                                  5              12          (min)"
79 [ "$SLOW" = "no" ] && EXCEPT_SLOW="24D 27m 64b 68 71 115 300o"
80
81 if [ $(facet_fstype $SINGLEMDS) = "zfs" ]; then
82         # bug number for skipped test: LU-4536 LU-1957 LU-2805
83         ALWAYS_EXCEPT="$ALWAYS_EXCEPT  65ic    180     184c"
84         #                                               4   13    (min)"
85         [ "$SLOW" = "no" ] && EXCEPT_SLOW="$EXCEPT_SLOW 51b 51ba"
86 fi
87
88 FAIL_ON_ERROR=false
89
90 cleanup() {
91         echo -n "cln.."
92         pgrep ll_sa > /dev/null && { echo "There are ll_sa thread not exit!"; exit 20; }
93         cleanupall ${FORCE} $* || { echo "FAILed to clean up"; exit 20; }
94 }
95 setup() {
96         echo -n "mnt.."
97         load_modules
98         setupall || exit 10
99         echo "done"
100 }
101
102 check_swap_layouts_support()
103 {
104         $LCTL get_param -n llite.*.sbi_flags | grep -q layout ||
105                 { skip "Does not support layout lock."; return 0; }
106         return 1
107 }
108
109 check_and_setup_lustre
110 DIR=${DIR:-$MOUNT}
111 assert_DIR
112
113 MDT0=$($LCTL get_param -n mdc.*.mds_server_uuid |
114         awk '{ gsub(/_UUID/,""); print $1 }' | head -n1)
115 MAXFREE=${MAXFREE:-$((200000 * $OSTCOUNT))}
116
117 [ -f $DIR/d52a/foo ] && chattr -a $DIR/d52a/foo
118 [ -f $DIR/d52b/foo ] && chattr -i $DIR/d52b/foo
119 rm -rf $DIR/[Rdfs][0-9]*
120
121 # $RUNAS_ID may get set incorrectly somewhere else
122 [ $UID -eq 0 -a $RUNAS_ID -eq 0 ] && error "\$RUNAS_ID set to 0, but \$UID is also 0!"
123
124 check_runas_id $RUNAS_ID $RUNAS_GID $RUNAS
125
126 build_test_filter
127
128 if [ "${ONLY}" = "MOUNT" ] ; then
129         echo "Lustre is up, please go on"
130         exit
131 fi
132
133 echo "preparing for tests involving mounts"
134 EXT2_DEV=${EXT2_DEV:-$TMP/SANITY.LOOP}
135 touch $EXT2_DEV
136 mke2fs -j -F $EXT2_DEV 8000 > /dev/null
137 echo # add a newline after mke2fs.
138
139 umask 077
140
141 OLDDEBUG=$(lctl get_param -n debug 2> /dev/null)
142 lctl set_param debug=-1 2> /dev/null || true
143 test_0a() {
144         touch $DIR/$tfile
145         $CHECKSTAT -t file $DIR/$tfile || error "$tfile is not a file"
146         rm $DIR/$tfile
147         $CHECKSTAT -a $DIR/$tfile || error "$tfile was not removed"
148 }
149 run_test 0a "touch; rm ====================="
150
151 test_0b() {
152         chmod 0755 $DIR || error "chmod 0755 $DIR failed"
153         $CHECKSTAT -p 0755 $DIR || error "$DIR permission is not 0755"
154 }
155 run_test 0b "chmod 0755 $DIR ============================="
156
157 test_0c() {
158         $LCTL get_param mdc.*.import | grep "state: FULL" ||
159                 error "import not FULL"
160         $LCTL get_param mdc.*.import | grep "target: $FSNAME-MDT" ||
161                 error "bad target"
162 }
163 run_test 0c "check import proc ============================="
164
165 test_1() {
166         test_mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
167         test_mkdir -p $DIR/$tdir/d2 || error "mkdir $tdir/d2 failed"
168         test_mkdir $DIR/$tdir/d2 && error "we expect EEXIST, but not returned"
169         $CHECKSTAT -t dir $DIR/$tdir/d2 || error "$tdir/d2 is not a dir"
170         rmdir $DIR/$tdir/d2
171         rmdir $DIR/$tdir
172         $CHECKSTAT -a $DIR/$tdir || error "$tdir was not removed"
173 }
174 run_test 1 "mkdir; remkdir; rmdir =============================="
175
176 test_2() {
177         test_mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
178         touch $DIR/$tdir/$tfile || error "touch $tdir/$tfile failed"
179         $CHECKSTAT -t file $DIR/$tdir/$tfile || error "$tdir/$tfile not a file"
180         rm -r $DIR/$tdir
181         $CHECKSTAT -a $DIR/$tdir/$tfile || error "$tdir/$file is not removed"
182 }
183 run_test 2 "mkdir; touch; rmdir; check file ===================="
184
185 test_3() {
186         test_mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
187         $CHECKSTAT -t dir $DIR/$tdir || error "$tdir is not a directory"
188         touch $DIR/$tdir/$tfile
189         $CHECKSTAT -t file $DIR/$tdir/$tfile || error "$tdir/$tfile not a file"
190         rm -r $DIR/$tdir
191         $CHECKSTAT -a $DIR/$tdir || error "$tdir is not removed"
192 }
193 run_test 3 "mkdir; touch; rmdir; check dir ====================="
194
195 # LU-4471 - failed rmdir on remote directories still removes directory on MDT0
196 test_4() {
197         local MDTIDX=1
198
199         test_mkdir $DIR/$tdir ||
200                 error "Create remote directory failed"
201
202         touch $DIR/$tdir/$tfile ||
203                 error "Create file under remote directory failed"
204
205         rmdir $DIR/$tdir &&
206                 error "Expect error removing in-use dir $DIR/$tdir"
207
208         test -d $DIR/$tdir || error "Remote directory disappeared"
209
210         rm -rf $DIR/$tdir || error "remove remote dir error"
211 }
212 run_test 4 "mkdir; touch dir/file; rmdir; checkdir (expect error)"
213
214 test_5() {
215         test_mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
216         test_mkdir $DIR/$tdir/d2 || error "mkdir $tdir/d2 failed"
217         chmod 0707 $DIR/$tdir/d2 || error "chmod 0707 $tdir/d2 failed"
218         $CHECKSTAT -t dir -p 0707 $DIR/$tdir/d2 || error "$tdir/d2 not mode 707"
219         $CHECKSTAT -t dir $DIR/$tdir/d2 || error "$tdir/d2 is not a directory"
220 }
221 run_test 5 "mkdir .../d5 .../d5/d2; chmod .../d5/d2 ============"
222
223 test_6a() {
224         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
225         chmod 0666 $DIR/$tfile || error "chmod 0666 $tfile failed"
226         $CHECKSTAT -t file -p 0666 -u \#$UID $DIR/$tfile ||
227                 error "$tfile does not have perm 0666 or UID $UID"
228         $RUNAS chmod 0444 $DIR/$tfile && error "chmod $tfile worked on UID $UID"
229         $CHECKSTAT -t file -p 0666 -u \#$UID $DIR/$tfile ||
230                 error "$tfile should be 0666 and owned by UID $UID"
231 }
232 run_test 6a "touch f6a; chmod f6a; $RUNAS chmod f6a (should return error) =="
233
234 test_6c() {
235         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID" && return
236         touch $DIR/$tfile
237         chown $RUNAS_ID $DIR/$tfile || error "chown $RUNAS_ID $file failed"
238         $CHECKSTAT -t file -u \#$RUNAS_ID $DIR/$tfile ||
239                 error "$tfile should be owned by UID $RUNAS_ID"
240         $RUNAS chown $UID $DIR/$tfile && error "chown $UID $file succeeded"
241         $CHECKSTAT -t file -u \#$RUNAS_ID $DIR/$tfile ||
242                 error "$tfile should be owned by UID $RUNAS_ID"
243 }
244 run_test 6c "touch f6c; chown f6c; $RUNAS chown f6c (should return error) =="
245
246 test_6e() {
247         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID" && return
248         touch $DIR/$tfile
249         chgrp $RUNAS_ID $DIR/$tfile || error "chgrp $RUNAS_ID $file failed"
250         $CHECKSTAT -t file -u \#$UID -g \#$RUNAS_ID $DIR/$tfile ||
251                 error "$tfile should be owned by GID $UID"
252         $RUNAS chgrp $UID $DIR/$tfile && error "chgrp $UID $file succeeded"
253         $CHECKSTAT -t file -u \#$UID -g \#$RUNAS_ID $DIR/$tfile ||
254                 error "$tfile should be owned by UID $UID and GID $RUNAS_ID"
255 }
256 run_test 6e "touch f6e; chgrp f6e; $RUNAS chgrp f6e (should return error) =="
257
258 test_6g() {
259         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID" && return
260         test_mkdir $DIR/$tdir || error "mkdir $tfile failed"
261         chmod 777 $DIR/$tdir || error "chmod 0777 $tdir failed"
262         $RUNAS mkdir $DIR/$tdir/d || error "mkdir $tdir/d failed"
263         chmod g+s $DIR/$tdir/d || error "chmod g+s $tdir/d failed"
264         test_mkdir $DIR/$tdir/d/subdir || error "mkdir $tdir/d/subdir failed"
265         $CHECKSTAT -g \#$RUNAS_GID $DIR/$tdir/d/subdir ||
266                 error "$tdir/d/subdir should be GID $RUNAS_GID"
267 }
268 run_test 6g "Is new dir in sgid dir inheriting group?"
269
270 test_6h() { # bug 7331
271         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID" && return
272         touch $DIR/$tfile || error "touch failed"
273         chown $RUNAS_ID:$RUNAS_GID $DIR/$tfile || error "initial chown failed"
274         $RUNAS -G$RUNAS_GID chown $RUNAS_ID:0 $DIR/$tfile &&
275                 error "chown $RUNAS_ID:0 $tfile worked as GID $RUNAS_GID"
276         $CHECKSTAT -t file -u \#$RUNAS_ID -g \#$RUNAS_GID $DIR/$tfile ||
277                 error "$tdir/$tfile should be UID $RUNAS_UID GID $RUNAS_GID"
278 }
279 run_test 6h "$RUNAS chown RUNAS_ID.0 .../f6h (should return error)"
280
281 test_7a() {
282         test_mkdir $DIR/$tdir
283         $MCREATE $DIR/$tdir/$tfile
284         chmod 0666 $DIR/$tdir/$tfile
285         $CHECKSTAT -t file -p 0666 $DIR/$tdir/$tfile ||
286                 error "$tdir/$tfile should be mode 0666"
287 }
288 run_test 7a "mkdir .../d7; mcreate .../d7/f; chmod .../d7/f ===="
289
290 test_7b() {
291         if [ ! -d $DIR/$tdir ]; then
292                 test_mkdir $DIR/$tdir
293         fi
294         $MCREATE $DIR/$tdir/$tfile
295         echo -n foo > $DIR/$tdir/$tfile
296         [ "$(cat $DIR/$tdir/$tfile)" = "foo" ] || error "$tdir/$tfile not 'foo'"
297         $CHECKSTAT -t file -s 3 $DIR/$tdir/$tfile || error "$tfile size not 3"
298 }
299 run_test 7b "mkdir .../d7; mcreate d7/f2; echo foo > d7/f2 ====="
300
301 test_8() {
302         test_mkdir $DIR/$tdir
303         touch $DIR/$tdir/$tfile
304         chmod 0666 $DIR/$tdir/$tfile
305         $CHECKSTAT -t file -p 0666 $DIR/$tdir/$tfile ||
306                 error "$tfile mode not 0666"
307 }
308 run_test 8 "mkdir .../d8; touch .../d8/f; chmod .../d8/f ======="
309
310 test_9() {
311         test_mkdir $DIR/$tdir
312         test_mkdir $DIR/$tdir/d2
313         test_mkdir $DIR/$tdir/d2/d3
314         $CHECKSTAT -t dir $DIR/$tdir/d2/d3 || error "$tdir/d2/d3 not a dir"
315 }
316 run_test 9 "mkdir .../d9 .../d9/d2 .../d9/d2/d3 ================"
317
318 test_10() {
319         test_mkdir $DIR/$tdir
320         test_mkdir $DIR/$tdir/d2
321         touch $DIR/$tdir/d2/$tfile
322         $CHECKSTAT -t file $DIR/$tdir/d2/$tfile ||
323                 error "$tdir/d2/$tfile not a file"
324 }
325 run_test 10 "mkdir .../d10 .../d10/d2; touch .../d10/d2/f ======"
326
327 test_11() {
328         test_mkdir $DIR/$tdir
329         test_mkdir $DIR/$tdir/d2
330         chmod 0666 $DIR/$tdir/d2
331         chmod 0705 $DIR/$tdir/d2
332         $CHECKSTAT -t dir -p 0705 $DIR/$tdir/d2 ||
333                 error "$tdir/d2 mode not 0705"
334 }
335 run_test 11 "mkdir .../d11 d11/d2; chmod .../d11/d2 ============"
336
337 test_12() {
338         test_mkdir $DIR/$tdir
339         touch $DIR/$tdir/$tfile
340         chmod 0666 $DIR/$tdir/$tfile
341         chmod 0654 $DIR/$tdir/$tfile
342         $CHECKSTAT -t file -p 0654 $DIR/$tdir/$tfile ||
343                 error "$tdir/d2 mode not 0654"
344 }
345 run_test 12 "touch .../d12/f; chmod .../d12/f .../d12/f ========"
346
347 test_13() {
348         test_mkdir $DIR/$tdir
349         dd if=/dev/zero of=$DIR/$tdir/$tfile count=10
350         >  $DIR/$tdir/$tfile
351         $CHECKSTAT -t file -s 0 $DIR/$tdir/$tfile ||
352                 error "$tdir/$tfile size not 0 after truncate"
353 }
354 run_test 13 "creat .../d13/f; dd .../d13/f; > .../d13/f ========"
355
356 test_14() {
357         test_mkdir $DIR/$tdir
358         touch $DIR/$tdir/$tfile
359         rm $DIR/$tdir/$tfile
360         $CHECKSTAT -a $DIR/$tdir/$tfile || error "$tdir/$tfile not removed"
361 }
362 run_test 14 "touch .../d14/f; rm .../d14/f; rm .../d14/f ======="
363
364 test_15() {
365         test_mkdir $DIR/$tdir
366         touch $DIR/$tdir/$tfile
367         mv $DIR/$tdir/$tfile $DIR/$tdir/${tfile}_2
368         $CHECKSTAT -t file $DIR/$tdir/${tfile}_2 ||
369                 error "$tdir/${tfile_2} not a file after rename"
370         rm $DIR/$tdir/${tfile}_2 || error "unlink failed after rename"
371 }
372 run_test 15 "touch .../d15/f; mv .../d15/f .../d15/f2 =========="
373
374 test_16() {
375         test_mkdir $DIR/$tdir
376         touch $DIR/$tdir/$tfile
377         rm -rf $DIR/$tdir/$tfile
378         $CHECKSTAT -a $DIR/$tdir/$tfile || error "$tdir/$tfile not removed"
379 }
380 run_test 16 "touch .../d16/f; rm -rf .../d16/f ================="
381
382 test_17a() {
383         test_mkdir -p $DIR/$tdir
384         touch $DIR/$tdir/$tfile
385         ln -s $DIR/$tdir/$tfile $DIR/$tdir/l-exist
386         ls -l $DIR/$tdir
387         $CHECKSTAT -l $DIR/$tdir/$tfile $DIR/$tdir/l-exist ||
388                 error "$tdir/l-exist not a symlink"
389         $CHECKSTAT -f -t f $DIR/$tdir/l-exist ||
390                 error "$tdir/l-exist not referencing a file"
391         rm -f $DIR/$tdir/l-exist
392         $CHECKSTAT -a $DIR/$tdir/l-exist || error "$tdir/l-exist not removed"
393 }
394 run_test 17a "symlinks: create, remove (real) =================="
395
396 test_17b() {
397         test_mkdir -p $DIR/$tdir
398         ln -s no-such-file $DIR/$tdir/l-dangle
399         ls -l $DIR/$tdir
400         $CHECKSTAT -l no-such-file $DIR/$tdir/l-dangle ||
401                 error "$tdir/l-dangle not referencing no-such-file"
402         $CHECKSTAT -fa $DIR/$tdir/l-dangle ||
403                 error "$tdir/l-dangle not referencing non-existent file"
404         rm -f $DIR/$tdir/l-dangle
405         $CHECKSTAT -a $DIR/$tdir/l-dangle || error "$tdir/l-dangle not removed"
406 }
407 run_test 17b "symlinks: create, remove (dangling) =============="
408
409 test_17c() { # bug 3440 - don't save failed open RPC for replay
410         test_mkdir -p $DIR/$tdir
411         ln -s foo $DIR/$tdir/$tfile
412         cat $DIR/$tdir/$tfile && error "opened non-existent symlink" || true
413 }
414 run_test 17c "symlinks: open dangling (should return error) ===="
415
416 test_17d() {
417         test_mkdir -p $DIR/$tdir
418         ln -s foo $DIR/$tdir/$tfile
419         touch $DIR/$tdir/$tfile || error "creating to new symlink"
420 }
421 run_test 17d "symlinks: create dangling ========================"
422
423 test_17e() {
424         test_mkdir -p $DIR/$tdir
425         local foo=$DIR/$tdir/$tfile
426         ln -s $foo $foo || error "create symlink failed"
427         ls -l $foo || error "ls -l failed"
428         ls $foo && error "ls not failed" || true
429 }
430 run_test 17e "symlinks: create recursive symlink (should return error) ===="
431
432 test_17f() {
433         test_mkdir -p $DIR/$tdir
434         ln -s 1234567890/2234567890/3234567890/4234567890 $DIR/$tdir/111
435         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890 $DIR/$tdir/222
436         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890 $DIR/$tdir/333
437         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890/9234567890/a234567890/b234567890 $DIR/$tdir/444
438         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890/9234567890/a234567890/b234567890/c234567890/d234567890/f234567890 $DIR/$tdir/555
439         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
440         ls -l  $DIR/$tdir
441 }
442 run_test 17f "symlinks: long and very long symlink name ========================"
443
444 # str_repeat(S, N) generate a string that is string S repeated N times
445 str_repeat() {
446         local s=$1
447         local n=$2
448         local ret=''
449         while [ $((n -= 1)) -ge 0 ]; do
450                 ret=$ret$s
451         done
452         echo $ret
453 }
454
455 # Long symlinks and LU-2241
456 test_17g() {
457         test_mkdir -p $DIR/$tdir
458         local TESTS="59 60 61 4094 4095"
459
460         # Fix for inode size boundary in 2.1.4
461         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.1.4) ] &&
462                 TESTS="4094 4095"
463
464         # Patch not applied to 2.2 or 2.3 branches
465         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] &&
466         [ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.3.55) ] &&
467                 TESTS="4094 4095"
468
469         # skip long symlink name for rhel6.5.
470         # rhel6.5 has a limit (PATH_MAX - sizeof(struct filename))
471         grep -q '6.5' /etc/redhat-release &>/dev/null &&
472                 TESTS="59 60 61 4062 4063"
473
474         for i in $TESTS; do
475                 local SYMNAME=$(str_repeat 'x' $i)
476                 ln -s $SYMNAME $DIR/$tdir/f$i || error "failed $i-char symlink"
477                 readlink $DIR/$tdir/f$i || error "failed $i-char readlink"
478         done
479 }
480 run_test 17g "symlinks: really long symlink name and inode boundaries"
481
482 test_17h() { #bug 17378
483         remote_mds_nodsh && skip "remote MDS with nodsh" && return
484         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
485         local mdt_idx
486         test_mkdir -p $DIR/$tdir
487         if [[ $MDSCOUNT -gt 1 ]]; then
488                 mdt_idx=$($LFS getdirstripe -i $DIR/$tdir)
489         else
490                 mdt_idx=0
491         fi
492         $SETSTRIPE -c -1 $DIR/$tdir
493 #define OBD_FAIL_MDS_LOV_PREP_CREATE 0x141
494         do_facet mds$((mdt_idx + 1)) lctl set_param fail_loc=0x80000141
495         touch $DIR/$tdir/$tfile || true
496 }
497 run_test 17h "create objects: lov_free_memmd() doesn't lbug"
498
499 test_17i() { #bug 20018
500         remote_mds_nodsh && skip "remote MDS with nodsh" && return
501         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
502         test_mkdir -c1 $DIR/$tdir
503         local foo=$DIR/$tdir/$tfile
504         local mdt_idx
505         if [[ $MDSCOUNT -gt 1 ]]; then
506                 mdt_idx=$($LFS getdirstripe -i $DIR/$tdir)
507         else
508                 mdt_idx=0
509         fi
510         ln -s $foo $foo || error "create symlink failed"
511 #define OBD_FAIL_MDS_READLINK_EPROTO     0x143
512         do_facet mds$((mdt_idx + 1)) lctl set_param fail_loc=0x80000143
513         ls -l $foo && error "error not detected"
514         return 0
515 }
516 run_test 17i "don't panic on short symlink"
517
518 test_17k() { #bug 22301
519         [[ -z "$(which rsync 2>/dev/null)" ]] &&
520                 skip "no rsync command" && return 0
521         rsync --help | grep -q xattr ||
522                 skip_env "$(rsync --version | head -n1) does not support xattrs"
523         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return 0
524         test_mkdir -p $DIR/$tdir
525         test_mkdir -p $DIR/$tdir.new
526         touch $DIR/$tdir/$tfile
527         ln -s $DIR/$tdir/$tfile $DIR/$tdir/$tfile.lnk
528         rsync -av -X $DIR/$tdir/ $DIR/$tdir.new ||
529                 error "rsync failed with xattrs enabled"
530 }
531 run_test 17k "symlinks: rsync with xattrs enabled ========================="
532
533 test_17l() { # LU-279
534         [[ -z "$(which getfattr 2>/dev/null)" ]] &&
535                 skip "no getfattr command" && return 0
536         test_mkdir -p $DIR/$tdir
537         touch $DIR/$tdir/$tfile
538         ln -s $DIR/$tdir/$tfile $DIR/$tdir/$tfile.lnk
539         for path in "$DIR/$tdir" "$DIR/$tdir/$tfile" "$DIR/$tdir/$tfile.lnk"; do
540                 # -h to not follow symlinks. -m '' to list all the xattrs.
541                 # grep to remove first line: '# file: $path'.
542                 for xattr in `getfattr -hm '' $path 2>/dev/null | grep -v '^#'`;
543                 do
544                         lgetxattr_size_check $path $xattr ||
545                                 error "lgetxattr_size_check $path $xattr failed"
546                 done
547         done
548 }
549 run_test 17l "Ensure lgetxattr's returned xattr size is consistent ========"
550
551 # LU-1540
552 test_17m() {
553         local short_sym="0123456789"
554         local WDIR=$DIR/${tdir}m
555         local i
556
557         remote_mds_nodsh && skip "remote MDS with nodsh" && return
558         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] &&
559         [ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.2.93) ] &&
560                 skip "MDS 2.2.0-2.2.93 do not NUL-terminate symlinks" && return
561
562         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
563                 skip "only for ldiskfs MDT" && return 0
564
565         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
566
567         test_mkdir -p $WDIR
568         long_sym=$short_sym
569         # create a long symlink file
570         for ((i = 0; i < 4; ++i)); do
571                 long_sym=${long_sym}${long_sym}
572         done
573
574         echo "create 512 short and long symlink files under $WDIR"
575         for ((i = 0; i < 256; ++i)); do
576                 ln -sf ${long_sym}"a5a5" $WDIR/long-$i
577                 ln -sf ${short_sym}"a5a5" $WDIR/short-$i
578         done
579
580         echo "erase them"
581         rm -f $WDIR/*
582         sync
583         wait_delete_completed
584
585         echo "recreate the 512 symlink files with a shorter string"
586         for ((i = 0; i < 512; ++i)); do
587                 # rewrite the symlink file with a shorter string
588                 ln -sf ${long_sym} $WDIR/long-$i || error "long_sym failed"
589                 ln -sf ${short_sym} $WDIR/short-$i || error "short_sym failed"
590         done
591
592         local mds_index=$(($($LFS getstripe -M $WDIR) + 1))
593         local devname=$(mdsdevname $mds_index)
594
595         echo "stop and checking mds${mds_index}:"
596         # e2fsck should not return error
597         stop mds${mds_index}
598         run_e2fsck $(facet_active_host mds${mds_index}) $devname -n
599         rc=$?
600
601         start mds${mds_index} $devname $MDS_MOUNT_OPTS || error "start failed"
602         df $MOUNT > /dev/null 2>&1
603         [ $rc -eq 0 ] ||
604                 error "e2fsck detected error for short/long symlink: rc=$rc"
605 }
606 run_test 17m "run e2fsck against MDT which contains short/long symlink"
607
608 check_fs_consistency_17n() {
609         local mdt_index
610         local rc=0
611
612         # create/unlink in 17n only change 2 MDTs(MDT1/MDT2),
613         # so it only check MDT1/MDT2 instead of all of MDTs.
614         for mdt_index in 1 2; do
615                 local devname=$(mdsdevname $mdt_index)
616                 # e2fsck should not return error
617                 stop mds${mdt_index}
618                 run_e2fsck $(facet_active_host mds$mdt_index) $devname -n ||
619                         rc=$((rc + $?))
620
621                 start mds${mdt_index} $devname $MDS_MOUNT_OPTS ||
622                         error "mount mds$mdt_index failed"
623                 df $MOUNT > /dev/null 2>&1
624         done
625         return $rc
626 }
627
628 test_17n() {
629         local i
630
631         remote_mds_nodsh && skip "remote MDS with nodsh" && return
632         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] &&
633         [ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.2.93) ] &&
634                 skip "MDS 2.2.0-2.2.93 do not NUL-terminate symlinks" && return
635
636         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
637                 skip "only for ldiskfs MDT" && return 0
638
639         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 2 MDTs" && return
640
641         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
642
643         test_mkdir $DIR/$tdir
644         for ((i=0; i<10; i++)); do
645                 $LFS mkdir -i1 -c2 $DIR/$tdir/remote_dir_${i} ||
646                         error "create remote dir error $i"
647                 createmany -o $DIR/$tdir/remote_dir_${i}/f 10 ||
648                         error "create files under remote dir failed $i"
649         done
650
651         check_fs_consistency_17n ||
652                 error "e2fsck report error after create files under remote dir"
653
654         for ((i = 0; i < 10; i++)); do
655                 rm -rf $DIR/$tdir/remote_dir_${i} ||
656                         error "destroy remote dir error $i"
657         done
658
659         check_fs_consistency_17n ||
660                 error "e2fsck report error after unlink files under remote dir"
661
662         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.50) ] &&
663                 skip "lustre < 2.4.50 does not support migrate mv " && return
664
665         for ((i = 0; i < 10; i++)); do
666                 mkdir -p $DIR/$tdir/remote_dir_${i}
667                 createmany -o $DIR/$tdir/remote_dir_${i}/f 10 ||
668                         error "create files under remote dir failed $i"
669                 $LFS migrate --mdt-index 1 $DIR/$tdir/remote_dir_${i} ||
670                         error "migrate remote dir error $i"
671         done
672         check_fs_consistency_17n || error "e2fsck report error after migration"
673
674         for ((i = 0; i < 10; i++)); do
675                 rm -rf $DIR/$tdir/remote_dir_${i} ||
676                         error "destroy remote dir error $i"
677         done
678
679         check_fs_consistency_17n || error "e2fsck report error after unlink"
680 }
681 run_test 17n "run e2fsck against master/slave MDT which contains remote dir"
682
683 test_17o() {
684         remote_mds_nodsh && skip "remote MDS with nodsh" && return
685         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.64) ] &&
686                 skip "Need MDS version at least 2.3.64" && return
687
688         local WDIR=$DIR/${tdir}o
689         local mdt_index
690         local rc=0
691
692         test_mkdir -p $WDIR
693         mdt_index=$($LFS getstripe -M $WDIR)
694         mdt_index=$((mdt_index+1))
695
696         touch $WDIR/$tfile
697
698         #fail mds will wait the failover finish then set
699         #following fail_loc to avoid interfer the recovery process.
700         fail mds${mdt_index}
701
702         #define OBD_FAIL_OSD_LMA_INCOMPAT 0x194
703         do_facet mds${mdt_index} lctl set_param fail_loc=0x194
704         ls -l $WDIR/$tfile && rc=1
705         do_facet mds${mdt_index} lctl set_param fail_loc=0
706         [[ $rc -ne 0 ]] && error "stat file should fail"
707         true
708 }
709 run_test 17o "stat file with incompat LMA feature"
710
711 test_18() {
712         touch $DIR/$tfile || error "Failed to touch $DIR/$tfile: $?"
713         ls $DIR || error "Failed to ls $DIR: $?"
714 }
715 run_test 18 "touch .../f ; ls ... =============================="
716
717 test_19a() {
718         touch $DIR/$tfile
719         ls -l $DIR
720         rm $DIR/$tfile
721         $CHECKSTAT -a $DIR/$tfile || error "$tfile was not removed"
722 }
723 run_test 19a "touch .../f19 ; ls -l ... ; rm .../f19 ==========="
724
725 test_19b() {
726         ls -l $DIR/$tfile && error "ls -l $tfile failed"|| true
727 }
728 run_test 19b "ls -l .../f19 (should return error) =============="
729
730 test_19c() {
731         [ $RUNAS_ID -eq $UID ] &&
732                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
733         $RUNAS touch $DIR/$tfile && error "create non-root file failed" || true
734 }
735 run_test 19c "$RUNAS touch .../f19 (should return error) =="
736
737 test_19d() {
738         cat $DIR/f19 && error || true
739 }
740 run_test 19d "cat .../f19 (should return error) =============="
741
742 test_20() {
743         touch $DIR/$tfile
744         rm $DIR/$tfile
745         log "1 done"
746         touch $DIR/$tfile
747         rm $DIR/$tfile
748         log "2 done"
749         touch $DIR/$tfile
750         rm $DIR/$tfile
751         log "3 done"
752         $CHECKSTAT -a $DIR/$tfile || error "$tfile was not removed"
753 }
754 run_test 20 "touch .../f ; ls -l ... ==========================="
755
756 test_21() {
757         test_mkdir -p $DIR/$tdir
758         [ -f $DIR/$tdir/dangle ] && rm -f $DIR/$tdir/dangle
759         ln -s dangle $DIR/$tdir/link
760         echo foo >> $DIR/$tdir/link
761         cat $DIR/$tdir/dangle
762         $CHECKSTAT -t link $DIR/$tdir/link || error "$tdir/link not a link"
763         $CHECKSTAT -f -t file $DIR/$tdir/link ||
764                 error "$tdir/link not linked to a file"
765 }
766 run_test 21 "write to dangling link ============================"
767
768 test_22() {
769         WDIR=$DIR/$tdir
770         test_mkdir -p $DIR/$tdir
771         chown $RUNAS_ID:$RUNAS_GID $WDIR
772         (cd $WDIR || error "cd $WDIR failed";
773         $RUNAS tar cf - /etc/hosts /etc/sysconfig/network | \
774         $RUNAS tar xf -)
775         ls -lR $WDIR/etc || error "ls -lR $WDIR/etc failed"
776         $CHECKSTAT -t dir $WDIR/etc || error "checkstat -t dir failed"
777         $CHECKSTAT -u \#$RUNAS_ID -g \#$RUNAS_GID $WDIR/etc || error "checkstat -u failed"
778 }
779 run_test 22 "unpack tar archive as non-root user ==============="
780
781 # was test_23
782 test_23a() {
783         test_mkdir -p $DIR/$tdir
784         local file=$DIR/$tdir/$tfile
785
786         openfile -f O_CREAT:O_EXCL $file || error "$file create failed"
787         openfile -f O_CREAT:O_EXCL $file &&
788                 error "$file recreate succeeded" || true
789 }
790 run_test 23a "O_CREAT|O_EXCL in subdir =========================="
791
792 test_23b() { # bug 18988
793         test_mkdir -p $DIR/$tdir
794         local file=$DIR/$tdir/$tfile
795
796         rm -f $file
797         echo foo > $file || error "write filed"
798         echo bar >> $file || error "append filed"
799         $CHECKSTAT -s 8 $file || error "wrong size"
800         rm $file
801 }
802 run_test 23b "O_APPEND check =========================="
803
804 # rename sanity
805 test_24a() {
806         echo '-- same directory rename'
807         test_mkdir $DIR/$tdir
808         touch $DIR/$tdir/$tfile.1
809         mv $DIR/$tdir/$tfile.1 $DIR/$tdir/$tfile.2
810         $CHECKSTAT -t file $DIR/$tdir/$tfile.2 || error "$tfile.2 not a file"
811 }
812 run_test 24a "rename file to non-existent target"
813
814 test_24b() {
815         test_mkdir $DIR/$tdir
816         touch $DIR/$tdir/$tfile.{1,2}
817         mv $DIR/$tdir/$tfile.1 $DIR/$tdir/$tfile.2
818         $CHECKSTAT -a $DIR/$tdir/$tfile.1 || error "$tfile.1 exists"
819         $CHECKSTAT -t file $DIR/$tdir/$tfile.2 || error "$tfile.2 not a file"
820 }
821 run_test 24b "rename file to existing target"
822
823 test_24c() {
824         test_mkdir $DIR/$tdir
825         test_mkdir $DIR/$tdir/d$testnum.1
826         mv $DIR/$tdir/d$testnum.1 $DIR/$tdir/d$testnum.2
827         $CHECKSTAT -a $DIR/$tdir/d$testnum.1 || error "d$testnum.1 exists"
828         $CHECKSTAT -t dir $DIR/$tdir/d$testnum.2 || error "d$testnum.2 not dir"
829 }
830 run_test 24c "rename directory to non-existent target"
831
832 test_24d() {
833         test_mkdir -c1 $DIR/$tdir
834         test_mkdir -c1 $DIR/$tdir/d$testnum.1
835         test_mkdir -c1 $DIR/$tdir/d$testnum.2
836         mrename $DIR/$tdir/d$testnum.1 $DIR/$tdir/d$testnum.2
837         $CHECKSTAT -a $DIR/$tdir/d$testnum.1 || error "d$testnum.1 exists"
838         $CHECKSTAT -t dir $DIR/$tdir/d$testnum.2 || error "d$testnum.2 not dir"
839 }
840 run_test 24d "rename directory to existing target"
841
842 test_24e() {
843         echo '-- cross directory renames --'
844         test_mkdir $DIR/R5a
845         test_mkdir $DIR/R5b
846         touch $DIR/R5a/f
847         mv $DIR/R5a/f $DIR/R5b/g
848         $CHECKSTAT -a $DIR/R5a/f || error
849         $CHECKSTAT -t file $DIR/R5b/g || error
850 }
851 run_test 24e "touch .../R5a/f; rename .../R5a/f .../R5b/g ======"
852
853 test_24f() {
854         test_mkdir $DIR/R6a
855         test_mkdir $DIR/R6b
856         touch $DIR/R6a/f $DIR/R6b/g
857         mv $DIR/R6a/f $DIR/R6b/g
858         $CHECKSTAT -a $DIR/R6a/f || error
859         $CHECKSTAT -t file $DIR/R6b/g || error
860 }
861 run_test 24f "touch .../R6a/f R6b/g; mv .../R6a/f .../R6b/g ===="
862
863 test_24g() {
864         test_mkdir $DIR/R7a
865         test_mkdir $DIR/R7b
866         test_mkdir $DIR/R7a/d
867         mv $DIR/R7a/d $DIR/R7b/e
868         $CHECKSTAT -a $DIR/R7a/d || error
869         $CHECKSTAT -t dir $DIR/R7b/e || error
870 }
871 run_test 24g "mkdir .../R7{a,b}/d; mv .../R7a/d .../R7b/e ======"
872
873 test_24h() {
874         test_mkdir -c1 $DIR/R8a
875         test_mkdir -c1 $DIR/R8b
876         test_mkdir -c1 $DIR/R8a/d
877         test_mkdir -c1 $DIR/R8b/e
878         mrename $DIR/R8a/d $DIR/R8b/e
879         $CHECKSTAT -a $DIR/R8a/d || error
880         $CHECKSTAT -t dir $DIR/R8b/e || error
881 }
882 run_test 24h "mkdir .../R8{a,b}/{d,e}; rename .../R8a/d .../R8b/e"
883
884 test_24i() {
885         echo "-- rename error cases"
886         test_mkdir $DIR/R9
887         test_mkdir $DIR/R9/a
888         touch $DIR/R9/f
889         mrename $DIR/R9/f $DIR/R9/a
890         $CHECKSTAT -t file $DIR/R9/f || error
891         $CHECKSTAT -t dir  $DIR/R9/a || error
892         $CHECKSTAT -a $DIR/R9/a/f || error
893 }
894 run_test 24i "rename file to dir error: touch f ; mkdir a ; rename f a"
895
896 test_24j() {
897         test_mkdir $DIR/R10
898         mrename $DIR/R10/f $DIR/R10/g
899         $CHECKSTAT -t dir $DIR/R10 || error
900         $CHECKSTAT -a $DIR/R10/f || error
901         $CHECKSTAT -a $DIR/R10/g || error
902 }
903 run_test 24j "source does not exist ============================"
904
905 test_24k() {
906         test_mkdir $DIR/R11a
907         test_mkdir $DIR/R11a/d
908         touch $DIR/R11a/f
909         mv $DIR/R11a/f $DIR/R11a/d
910         $CHECKSTAT -a $DIR/R11a/f || error
911         $CHECKSTAT -t file $DIR/R11a/d/f || error
912 }
913 run_test 24k "touch .../R11a/f; mv .../R11a/f .../R11a/d ======="
914
915 # bug 2429 - rename foo foo foo creates invalid file
916 test_24l() {
917         f="$DIR/f24l"
918         $MULTIOP $f OcNs || error
919 }
920 run_test 24l "Renaming a file to itself ========================"
921
922 test_24m() {
923         f="$DIR/f24m"
924         $MULTIOP $f OcLN ${f}2 ${f}2 || error "link ${f}2 ${f}2 failed"
925         # on ext3 this does not remove either the source or target files
926         # though the "expected" operation would be to remove the source
927         $CHECKSTAT -t file ${f} || error "${f} missing"
928         $CHECKSTAT -t file ${f}2 || error "${f}2 missing"
929 }
930 run_test 24m "Renaming a file to a hard link to itself ========="
931
932 test_24n() {
933     f="$DIR/f24n"
934     # this stats the old file after it was renamed, so it should fail
935     touch ${f}
936     $CHECKSTAT ${f}
937     mv ${f} ${f}.rename
938     $CHECKSTAT ${f}.rename
939     $CHECKSTAT -a ${f}
940 }
941 run_test 24n "Statting the old file after renaming (Posix rename 2)"
942
943 test_24o() {
944         test_mkdir -p $DIR/d24o
945         rename_many -s random -v -n 10 $DIR/d24o
946 }
947 run_test 24o "rename of files during htree split ==============="
948
949 test_24p() {
950         test_mkdir $DIR/R12a
951         test_mkdir $DIR/R12b
952         DIRINO=`ls -lid $DIR/R12a | awk '{ print $1 }'`
953         mrename $DIR/R12a $DIR/R12b
954         $CHECKSTAT -a $DIR/R12a || error
955         $CHECKSTAT -t dir $DIR/R12b || error
956         DIRINO2=`ls -lid $DIR/R12b | awk '{ print $1 }'`
957         [ "$DIRINO" = "$DIRINO2" ] || error "R12a $DIRINO != R12b $DIRINO2"
958 }
959 run_test 24p "mkdir .../R12{a,b}; rename .../R12a .../R12b"
960
961 cleanup_multiop_pause() {
962         trap 0
963         kill -USR1 $MULTIPID
964 }
965
966 test_24q() {
967         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
968         test_mkdir $DIR/R13a
969         test_mkdir $DIR/R13b
970         local DIRINO=$(ls -lid $DIR/R13a | awk '{ print $1 }')
971         multiop_bg_pause $DIR/R13b D_c || error "multiop failed to start"
972         MULTIPID=$!
973
974         trap cleanup_multiop_pause EXIT
975         mrename $DIR/R13a $DIR/R13b
976         $CHECKSTAT -a $DIR/R13a || error "R13a still exists"
977         $CHECKSTAT -t dir $DIR/R13b || error "R13b does not exist"
978         local DIRINO2=$(ls -lid $DIR/R13b | awk '{ print $1 }')
979         [ "$DIRINO" = "$DIRINO2" ] || error "R13a $DIRINO != R13b $DIRINO2"
980         cleanup_multiop_pause
981         wait $MULTIPID || error "multiop close failed"
982 }
983 run_test 24q "mkdir .../R13{a,b}; open R13b rename R13a R13b ==="
984
985 test_24r() { #bug 3789
986         test_mkdir $DIR/R14a
987         test_mkdir $DIR/R14a/b
988         mrename $DIR/R14a $DIR/R14a/b && error "rename to subdir worked!"
989         $CHECKSTAT -t dir $DIR/R14a || error "$DIR/R14a missing"
990         $CHECKSTAT -t dir $DIR/R14a/b || error "$DIR/R14a/b missing"
991 }
992 run_test 24r "mkdir .../R14a/b; rename .../R14a .../R14a/b ====="
993
994 test_24s() {
995         test_mkdir $DIR/R15a
996         test_mkdir $DIR/R15a/b
997         test_mkdir $DIR/R15a/b/c
998         mrename $DIR/R15a $DIR/R15a/b/c && error "rename to sub-subdir worked!"
999         $CHECKSTAT -t dir $DIR/R15a || error "$DIR/R15a missing"
1000         $CHECKSTAT -t dir $DIR/R15a/b/c || error "$DIR/R15a/b/c missing"
1001 }
1002 run_test 24s "mkdir .../R15a/b/c; rename .../R15a .../R15a/b/c ="
1003 test_24t() {
1004         test_mkdir $DIR/R16a
1005         test_mkdir $DIR/R16a/b
1006         test_mkdir $DIR/R16a/b/c
1007         mrename $DIR/R16a/b/c $DIR/R16a && error "rename to sub-subdir worked!"
1008         $CHECKSTAT -t dir $DIR/R16a || error "$DIR/R16a missing"
1009         $CHECKSTAT -t dir $DIR/R16a/b/c || error "$DIR/R16a/b/c missing"
1010 }
1011 run_test 24t "mkdir .../R16a/b/c; rename .../R16a/b/c .../R16a ="
1012
1013 test_24u() { # bug12192
1014         $MULTIOP $DIR/$tfile C2w$((2048 * 1024))c || error
1015         $CHECKSTAT -s $((2048 * 1024)) $DIR/$tfile || error "wrong file size"
1016 }
1017 run_test 24u "create stripe file"
1018
1019 page_size() {
1020         getconf PAGE_SIZE
1021 }
1022
1023 simple_cleanup_common() {
1024         trap 0
1025         rm -rf $DIR/$tdir
1026         wait_delete_completed
1027 }
1028
1029 max_pages_per_rpc() {
1030         $LCTL get_param -n mdc.*.max_pages_per_rpc | head -n1
1031 }
1032
1033 test_24v() {
1034         local NRFILES=100000
1035         local FREE_INODES=$(mdt_free_inodes 0)
1036         [[ $FREE_INODES -lt $NRFILES ]] &&
1037                 skip "not enough free inodes $FREE_INODES required $NRFILES" &&
1038                 return
1039
1040         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1041         trap simple_cleanup_common EXIT
1042
1043         # Performance issue on ZFS see LU-4072 (c.f. LU-2887)
1044         [ $(facet_fstype $SINGLEMDS) = "zfs" ] && NRFILES=10000
1045
1046         test_mkdir -p $DIR/$tdir
1047         createmany -m $DIR/$tdir/$tfile $NRFILES
1048
1049         cancel_lru_locks mdc
1050         lctl set_param mdc.*.stats clear
1051
1052         ls $DIR/$tdir >/dev/null || error "error in listing large dir"
1053
1054         # LU-5 large readdir
1055         # DIRENT_SIZE = 32 bytes for sizeof(struct lu_dirent) +
1056         #               8 bytes for name(filename is mostly 5 in this test) +
1057         #               8 bytes for luda_type
1058         # take into account of overhead in lu_dirpage header and end mark in
1059         # each page, plus one in RPC_NUM calculation.
1060         DIRENT_SIZE=48
1061         RPC_SIZE=$(($(max_pages_per_rpc) * $(page_size)))
1062         RPC_NUM=$(((NRFILES * DIRENT_SIZE + RPC_SIZE - 1) / RPC_SIZE + 1))
1063         mds_readpage=$(lctl get_param mdc.*MDT0000*.stats |
1064                                 awk '/^mds_readpage/ {print $2}')
1065         [[ $mds_readpage -gt $RPC_NUM ]] &&
1066                 error "large readdir doesn't take effect"
1067
1068         simple_cleanup_common
1069 }
1070 run_test 24v "list directory with large files (handle hash collision, bug: 17560)"
1071
1072 test_24w() { # bug21506
1073         SZ1=234852
1074         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=4096 || return 1
1075         dd if=/dev/zero bs=$SZ1 count=1 >> $DIR/$tfile || return 2
1076         dd if=$DIR/$tfile of=$DIR/${tfile}_left bs=1M skip=4097 || return 3
1077         SZ2=`ls -l $DIR/${tfile}_left | awk '{print $5}'`
1078         [[ "$SZ1" -eq "$SZ2" ]] ||
1079                 error "Error reading at the end of the file $tfile"
1080 }
1081 run_test 24w "Reading a file larger than 4Gb"
1082
1083 test_24x() {
1084         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 2 MDTs" && return
1085
1086         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.56) ]] &&
1087                 skip "Need MDS version at least 2.7.56" && return
1088
1089         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1090         local MDTIDX=1
1091         local remote_dir=$DIR/$tdir/remote_dir
1092
1093         test_mkdir -p $DIR/$tdir
1094         $LFS mkdir -i $MDTIDX $remote_dir ||
1095                 error "create remote directory failed"
1096
1097         test_mkdir -p $DIR/$tdir/src_dir
1098         touch $DIR/$tdir/src_file
1099         test_mkdir -p $remote_dir/tgt_dir
1100         touch $remote_dir/tgt_file
1101
1102         mrename $DIR/$tdir/src_dir $remote_dir/tgt_dir ||
1103                 error "rename dir cross MDT failed!"
1104
1105         mrename $DIR/$tdir/src_file $remote_dir/tgt_file ||
1106                 error "rename file cross MDT failed!"
1107
1108         touch $DIR/$tdir/ln_file
1109         ln $DIR/$tdir/ln_file $remote_dir/ln_name ||
1110                 error "ln file cross MDT failed"
1111
1112         rm -rf $DIR/$tdir || error "Can not delete directories"
1113 }
1114 run_test 24x "cross MDT rename/link"
1115
1116 test_24y() {
1117         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 2 MDTs" && return
1118         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1119         local MDTIDX=1
1120         local remote_dir=$DIR/$tdir/remote_dir
1121
1122         test_mkdir -p $DIR/$tdir
1123         $LFS mkdir -i $MDTIDX $remote_dir ||
1124                    error "create remote directory failed"
1125
1126         test_mkdir -p $remote_dir/src_dir
1127         touch $remote_dir/src_file
1128         test_mkdir -p $remote_dir/tgt_dir
1129         touch $remote_dir/tgt_file
1130
1131         mrename $remote_dir/src_dir $remote_dir/tgt_dir ||
1132                 error "rename subdir in the same remote dir failed!"
1133
1134         mrename $remote_dir/src_file $remote_dir/tgt_file ||
1135                 error "rename files in the same remote dir failed!"
1136
1137         ln $remote_dir/tgt_file $remote_dir/tgt_file1 ||
1138                 error "link files in the same remote dir failed!"
1139
1140         rm -rf $DIR/$tdir || error "Can not delete directories"
1141 }
1142 run_test 24y "rename/link on the same dir should succeed"
1143
1144 test_24A() { # LU-3182
1145         local NFILES=5000
1146
1147         rm -rf $DIR/$tdir
1148         test_mkdir -p $DIR/$tdir
1149         createmany -m $DIR/$tdir/$tfile $NFILES
1150         local t=$(ls $DIR/$tdir | wc -l)
1151         local u=$(ls $DIR/$tdir | sort -u | wc -l)
1152         local v=$(ls -ai $DIR/$tdir | sort -u | wc -l)
1153         if [ $t -ne $NFILES -o $u -ne $NFILES -o $v -ne $((NFILES + 2)) ] ; then
1154                 error "Expected $NFILES files, got $t ($u unique $v .&..)"
1155         fi
1156
1157         rm -rf $DIR/$tdir || error "Can not delete directories"
1158 }
1159 run_test 24A "readdir() returns correct number of entries."
1160
1161 test_24B() { # LU-4805
1162         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
1163         local count
1164
1165         test_mkdir $DIR/$tdir
1166         $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/striped_dir ||
1167                 error "create striped dir failed"
1168
1169         count=$(ls -ai $DIR/$tdir/striped_dir | wc -l)
1170         [ $count -eq 2 ] || error "Expected 2, got $count"
1171
1172         touch $DIR/$tdir/striped_dir/a
1173
1174         count=$(ls -ai $DIR/$tdir/striped_dir | wc -l)
1175         [ $count -eq 3 ] || error "Expected 3, got $count"
1176
1177         touch $DIR/$tdir/striped_dir/.f
1178
1179         count=$(ls -ai $DIR/$tdir/striped_dir | wc -l)
1180         [ $count -eq 4 ] || error "Expected 4, got $count"
1181
1182         rm -rf $DIR/$tdir || error "Can not delete directories"
1183 }
1184 run_test 24B "readdir for striped dir return correct number of entries"
1185
1186 test_24C() {
1187         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
1188
1189         mkdir $DIR/$tdir
1190         mkdir $DIR/$tdir/d0
1191         mkdir $DIR/$tdir/d1
1192
1193         $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/d0/striped_dir ||
1194                 error "create striped dir failed"
1195
1196         cd $DIR/$tdir/d0/striped_dir
1197
1198         local d0_ino=$(ls -i -l -a $DIR/$tdir | grep "d0" | awk '{print $1}')
1199         local d1_ino=$(ls -i -l -a $DIR/$tdir | grep "d1" | awk '{print $1}')
1200         local parent_ino=$(ls -i -l -a | grep "\.\." | awk '{print $1}')
1201
1202         [ "$d0_ino" = "$parent_ino" ] ||
1203                 error ".. wrong, expect $d0_ino, get $parent_ino"
1204
1205         mv $DIR/$tdir/d0/striped_dir $DIR/$tdir/d1/ ||
1206                 error "mv striped dir failed"
1207
1208         parent_ino=$(ls -i -l -a | grep "\.\." | awk '{print $1}')
1209
1210         [ "$d1_ino" = "$parent_ino" ] ||
1211                 error ".. wrong after mv, expect $d1_ino, get $parent_ino"
1212 }
1213 run_test 24C "check .. in striped dir"
1214
1215 test_24D() { # LU-6101
1216         local NFILES=50000
1217
1218         rm -rf $DIR/$tdir
1219         mkdir -p $DIR/$tdir
1220         createmany -m $DIR/$tdir/$tfile $NFILES
1221         local t=$(ls $DIR/$tdir | wc -l)
1222         local u=$(ls $DIR/$tdir | sort -u | wc -l)
1223         local v=$(ls -ai $DIR/$tdir | sort -u | wc -l)
1224         if [ $t -ne $NFILES -o $u -ne $NFILES -o $v -ne $((NFILES + 2)) ] ; then
1225                 error "Expected $NFILES files, got $t ($u unique $v .&..)"
1226         fi
1227
1228         rm -rf $DIR/$tdir || error "Can not delete directories"
1229 }
1230 run_test 24D "readdir() returns correct number of entries after cursor reload"
1231
1232 test_24E() {
1233         [[ $MDSCOUNT -lt 4 ]] && skip "needs >= 4 MDTs" && return
1234         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1235
1236         mkdir -p $DIR/$tdir
1237         mkdir $DIR/$tdir/src_dir
1238         $LFS mkdir -i 1 $DIR/$tdir/src_dir/src_child ||
1239                 error "create remote source failed"
1240
1241         touch $DIR/$tdir/src_dir/src_child/a
1242
1243         $LFS mkdir -i 2 $DIR/$tdir/tgt_dir ||
1244                 error "create remote target dir failed"
1245
1246         $LFS mkdir -i 3 $DIR/$tdir/tgt_dir/tgt_child ||
1247                 error "create remote target child failed"
1248
1249         mrename $DIR/$tdir/src_dir/src_child $DIR/$tdir/tgt_dir/tgt_child ||
1250                 error "rename dir cross MDT failed!"
1251
1252         find $DIR/$tdir
1253
1254         $CHECKSTAT -t dir $DIR/$tdir/src_dir/src_child &&
1255                 error "src_child still exists after rename"
1256
1257         $CHECKSTAT -t file $DIR/$tdir/tgt_dir/tgt_child/a ||
1258                 error "missing file(a) after rename"
1259
1260         rm -rf $DIR/$tdir || error "Can not delete directories"
1261 }
1262 run_test 24E "cross MDT rename/link"
1263
1264 test_25a() {
1265         echo '== symlink sanity ============================================='
1266
1267         test_mkdir $DIR/d25
1268         ln -s d25 $DIR/s25
1269         touch $DIR/s25/foo || error
1270 }
1271 run_test 25a "create file in symlinked directory ==============="
1272
1273 test_25b() {
1274         [ ! -d $DIR/d25 ] && test_25a
1275         $CHECKSTAT -t file $DIR/s25/foo || error
1276 }
1277 run_test 25b "lookup file in symlinked directory ==============="
1278
1279 test_26a() {
1280         test_mkdir $DIR/d26
1281         test_mkdir $DIR/d26/d26-2
1282         ln -s d26/d26-2 $DIR/s26
1283         touch $DIR/s26/foo || error
1284 }
1285 run_test 26a "multiple component symlink ======================="
1286
1287 test_26b() {
1288         test_mkdir -p $DIR/d26b/d26-2
1289         ln -s d26b/d26-2/foo $DIR/s26-2
1290         touch $DIR/s26-2 || error
1291 }
1292 run_test 26b "multiple component symlink at end of lookup ======"
1293
1294 test_26c() {
1295         test_mkdir $DIR/d26.2
1296         touch $DIR/d26.2/foo
1297         ln -s d26.2 $DIR/s26.2-1
1298         ln -s s26.2-1 $DIR/s26.2-2
1299         ln -s s26.2-2 $DIR/s26.2-3
1300         chmod 0666 $DIR/s26.2-3/foo
1301 }
1302 run_test 26c "chain of symlinks ================================"
1303
1304 # recursive symlinks (bug 439)
1305 test_26d() {
1306         ln -s d26-3/foo $DIR/d26-3
1307 }
1308 run_test 26d "create multiple component recursive symlink ======"
1309
1310 test_26e() {
1311         [ ! -h $DIR/d26-3 ] && test_26d
1312         rm $DIR/d26-3
1313 }
1314 run_test 26e "unlink multiple component recursive symlink ======"
1315
1316 # recursive symlinks (bug 7022)
1317 test_26f() {
1318         test_mkdir -p $DIR/$tdir
1319         test_mkdir $DIR/$tdir/$tfile   || error "mkdir $DIR/$tdir/$tfile failed"
1320         cd $DIR/$tdir/$tfile           || error "cd $DIR/$tdir/$tfile failed"
1321         test_mkdir -p lndir/bar1      || error "mkdir lndir/bar1 failed"
1322         test_mkdir $DIR/$tdir/$tfile/$tfile   || error "mkdir $tfile failed"
1323         cd $tfile                || error "cd $tfile failed"
1324         ln -s .. dotdot          || error "ln dotdot failed"
1325         ln -s dotdot/lndir lndir || error "ln lndir failed"
1326         cd $DIR/$tdir                 || error "cd $DIR/$tdir failed"
1327         output=`ls $tfile/$tfile/lndir/bar1`
1328         [ "$output" = bar1 ] && error "unexpected output"
1329         rm -r $tfile             || error "rm $tfile failed"
1330         $CHECKSTAT -a $DIR/$tfile || error "$tfile not gone"
1331 }
1332 run_test 26f "rm -r of a directory which has recursive symlink ="
1333
1334 test_27a() {
1335         echo '== stripe sanity =============================================='
1336         test_mkdir -p $DIR/d27 || error "mkdir failed"
1337         $GETSTRIPE $DIR/d27
1338         $SETSTRIPE -c 1 $DIR/d27/f0 || error "setstripe failed"
1339         $CHECKSTAT -t file $DIR/d27/f0 || error "checkstat failed"
1340         log "== test_27a: write to one stripe file ========================="
1341         cp /etc/hosts $DIR/d27/f0 || error
1342 }
1343 run_test 27a "one stripe file =================================="
1344
1345 test_27b() {
1346         [[ $OSTCOUNT -lt 2 ]] && skip_env "skipping 2-stripe test" && return
1347         test_mkdir -p $DIR/d27
1348         $SETSTRIPE -c 2 $DIR/d27/f01 || error "setstripe failed"
1349         $GETSTRIPE -c $DIR/d27/f01
1350         [ $($GETSTRIPE -c $DIR/d27/f01) -eq 2 ] ||
1351                 error "two-stripe file doesn't have two stripes"
1352
1353         dd if=/dev/zero of=$DIR/d27/f01 bs=4k count=4 || error "dd failed"
1354 }
1355 run_test 27b "create and write to two stripe file"
1356
1357 test_27d() {
1358         test_mkdir -p $DIR/d27
1359         $SETSTRIPE -c 0 -i -1 -S 0 $DIR/d27/fdef || error "setstripe failed"
1360         $CHECKSTAT -t file $DIR/d27/fdef || error "checkstat failed"
1361         dd if=/dev/zero of=$DIR/d27/fdef bs=4k count=4 || error
1362 }
1363 run_test 27d "create file with default settings ================"
1364
1365 test_27e() {
1366         # LU-5839 adds check for existed layout before setting it
1367         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.56) ]] &&
1368                 skip "Need MDS version at least 2.7.56" && return
1369         test_mkdir -p $DIR/d27
1370         $SETSTRIPE -c 2 $DIR/d27/f12 || error "setstripe failed"
1371         $SETSTRIPE -c 2 $DIR/d27/f12 && error "setstripe succeeded twice"
1372         $CHECKSTAT -t file $DIR/d27/f12 || error "checkstat failed"
1373 }
1374 run_test 27e "setstripe existing file (should return error) ======"
1375
1376 test_27f() {
1377         test_mkdir $DIR/$tdir
1378         $SETSTRIPE -S 100 -i 0 -c 1 $DIR/$tdir/$tfile &&
1379                 error "$SETSTRIPE $DIR/$tdir/$tfile failed"
1380         $CHECKSTAT -t file $DIR/$tdir/$tfile &&
1381                 error "$CHECKSTAT -t file $DIR/$tdir/$tfile should fail"
1382         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=4k count=4 || error "dd failed"
1383         $GETSTRIPE $DIR/$tdir/$tfile || error "$GETSTRIPE failed"
1384 }
1385 run_test 27f "setstripe with bad stripe size (should return error)"
1386
1387 test_27g() {
1388         test_mkdir -p $DIR/d27
1389         $MCREATE $DIR/d27/fnone || error "mcreate failed"
1390         $GETSTRIPE $DIR/d27/fnone 2>&1 | grep "no stripe info" ||
1391                 error "$DIR/d27/fnone has object"
1392 }
1393 run_test 27g "$GETSTRIPE with no objects"
1394
1395 test_27i() {
1396         test_mkdir $DIR/$tdir
1397         touch $DIR/$tdir/$tfile || error "touch failed"
1398         [[ $($GETSTRIPE -c $DIR/$tdir/$tfile) -gt 0 ]] ||
1399                 error "missing objects"
1400 }
1401 run_test 27i "$GETSTRIPE with some objects"
1402
1403 test_27j() {
1404         test_mkdir -p $DIR/d27
1405         $SETSTRIPE -i $OSTCOUNT $DIR/d27/f27j && error "setstripe failed"||true
1406 }
1407 run_test 27j "setstripe with bad stripe offset (should return error)"
1408
1409 test_27k() { # bug 2844
1410         test_mkdir -p $DIR/d27
1411         FILE=$DIR/d27/f27k
1412         LL_MAX_BLKSIZE=$((4 * 1024 * 1024))
1413         [ ! -d $DIR/d27 ] && test_mkdir -p $DIR d27
1414         $SETSTRIPE -S 67108864 $FILE || error "setstripe failed"
1415         BLKSIZE=`stat $FILE | awk '/IO Block:/ { print $7 }'`
1416         [ $BLKSIZE -le $LL_MAX_BLKSIZE ] || error "1:$BLKSIZE > $LL_MAX_BLKSIZE"
1417         dd if=/dev/zero of=$FILE bs=4k count=1
1418         BLKSIZE=`stat $FILE | awk '/IO Block:/ { print $7 }'`
1419         [ $BLKSIZE -le $LL_MAX_BLKSIZE ] || error "2:$BLKSIZE > $LL_MAX_BLKSIZE"
1420 }
1421 run_test 27k "limit i_blksize for broken user apps ============="
1422
1423 test_27l() {
1424         test_mkdir -p $DIR/d27
1425         mcreate $DIR/f27l || error "creating file"
1426         $RUNAS $SETSTRIPE -c 1 $DIR/f27l && \
1427                 error "setstripe should have failed" || true
1428 }
1429 run_test 27l "check setstripe permissions (should return error)"
1430
1431 test_27m() {
1432         [[ $OSTCOUNT -lt 2 ]] && skip_env "$OSTCOUNT < 2 OSTs -- skipping" &&
1433                 return
1434
1435         ORIGFREE=$($LCTL get_param -n lov.$FSNAME-clilov-*.kbytesavail |
1436                    head -n1)
1437         if [[ $ORIGFREE -gt $MAXFREE ]]; then
1438                 skip "$ORIGFREE > $MAXFREE skipping out-of-space test on OST0"
1439                 return
1440         fi
1441         trap simple_cleanup_common EXIT
1442         test_mkdir -p $DIR/$tdir
1443         $SETSTRIPE -i 0 -c 1 $DIR/$tdir/f27m_1
1444         dd if=/dev/zero of=$DIR/$tdir/f27m_1 bs=1024 count=$MAXFREE &&
1445                 error "dd should fill OST0"
1446         i=2
1447         while $SETSTRIPE -i 0 -c 1 $DIR/$tdir/f27m_$i; do
1448                 i=$((i + 1))
1449                 [ $i -gt 256 ] && break
1450         done
1451         i=$((i + 1))
1452         touch $DIR/$tdir/f27m_$i
1453         [ `$GETSTRIPE $DIR/$tdir/f27m_$i | grep -A 10 obdidx | awk '{print $1}'| grep -w "0"` ] &&
1454                 error "OST0 was full but new created file still use it"
1455         i=$((i + 1))
1456         touch $DIR/$tdir/f27m_$i
1457         [ `$GETSTRIPE $DIR/$tdir/f27m_$i | grep -A 10 obdidx | awk '{print $1}'| grep -w "0"` ] &&
1458                 error "OST0 was full but new created file still use it"
1459         simple_cleanup_common
1460 }
1461 run_test 27m "create file while OST0 was full =================="
1462
1463 sleep_maxage() {
1464         local DELAY=$(do_facet $SINGLEMDS lctl get_param -n lov.*.qos_maxage | head -n 1 | awk '{print $1 * 2}')
1465         sleep $DELAY
1466 }
1467
1468 # OSCs keep a NOSPC flag that will be reset after ~5s (qos_maxage)
1469 # if the OST isn't full anymore.
1470 reset_enospc() {
1471         local OSTIDX=${1:-""}
1472
1473         local list=$(comma_list $(osts_nodes))
1474         [ "$OSTIDX" ] && list=$(facet_host ost$((OSTIDX + 1)))
1475
1476         do_nodes $list lctl set_param fail_loc=0
1477         sync    # initiate all OST_DESTROYs from MDS to OST
1478         sleep_maxage
1479 }
1480
1481 exhaust_precreations() {
1482         local OSTIDX=$1
1483         local FAILLOC=$2
1484         local FAILIDX=${3:-$OSTIDX}
1485         local ofacet=ost$((OSTIDX + 1))
1486
1487         test_mkdir -p -c1 $DIR/$tdir
1488         local mdtidx=$($LFS getstripe -M $DIR/$tdir)
1489         local mfacet=mds$((mdtidx + 1))
1490         echo OSTIDX=$OSTIDX MDTIDX=$mdtidx
1491
1492         local OST=$(ostname_from_index $OSTIDX)
1493
1494         # on the mdt's osc
1495         local mdtosc_proc1=$(get_mdtosc_proc_path $mfacet $OST)
1496         local last_id=$(do_facet $mfacet lctl get_param -n \
1497                         osc.$mdtosc_proc1.prealloc_last_id)
1498         local next_id=$(do_facet $mfacet lctl get_param -n \
1499                         osc.$mdtosc_proc1.prealloc_next_id)
1500
1501         local mdtosc_proc2=$(get_mdtosc_proc_path $mfacet)
1502         do_facet $mfacet lctl get_param osc.$mdtosc_proc2.prealloc*
1503
1504         test_mkdir -p $DIR/$tdir/${OST}
1505         $SETSTRIPE -i $OSTIDX -c 1 $DIR/$tdir/${OST}
1506 #define OBD_FAIL_OST_ENOSPC              0x215
1507         do_facet $ofacet lctl set_param fail_val=$FAILIDX fail_loc=0x215
1508         echo "Creating to objid $last_id on ost $OST..."
1509         createmany -o $DIR/$tdir/${OST}/f $next_id $((last_id - next_id + 2))
1510         do_facet $mfacet lctl get_param osc.$mdtosc_proc2.prealloc*
1511         do_facet $ofacet lctl set_param fail_loc=$FAILLOC
1512         sleep_maxage
1513 }
1514
1515 exhaust_all_precreations() {
1516         local i
1517         for (( i=0; i < OSTCOUNT; i++ )) ; do
1518                 exhaust_precreations $i $1 -1
1519         done
1520 }
1521
1522 test_27n() {
1523         [[ $OSTCOUNT -lt 2 ]] && skip_env "too few OSTs" && return
1524         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1525         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1526         remote_ost_nodsh && skip "remote OST with nodsh" && return
1527
1528         reset_enospc
1529         rm -f $DIR/$tdir/$tfile
1530         exhaust_precreations 0 0x80000215
1531         $SETSTRIPE -c -1 $DIR/$tdir
1532         touch $DIR/$tdir/$tfile || error
1533         $GETSTRIPE $DIR/$tdir/$tfile
1534         reset_enospc
1535 }
1536 run_test 27n "create file with some full OSTs =================="
1537
1538 test_27o() {
1539         [[ $OSTCOUNT -lt 2 ]] && skip_env "too few OSTs" && return
1540         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1541         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1542         remote_ost_nodsh && skip "remote OST with nodsh" && return
1543
1544         reset_enospc
1545         rm -f $DIR/$tdir/$tfile
1546         exhaust_all_precreations 0x215
1547
1548         touch $DIR/$tdir/$tfile && error "able to create $DIR/$tdir/$tfile"
1549
1550         reset_enospc
1551         rm -rf $DIR/$tdir/*
1552 }
1553 run_test 27o "create file with all full OSTs (should error) ===="
1554
1555 test_27p() {
1556         [[ $OSTCOUNT -lt 2 ]] && skip_env "too few OSTs" && return
1557         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1558         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1559         remote_ost_nodsh && skip "remote OST with nodsh" && return
1560
1561         reset_enospc
1562         rm -f $DIR/$tdir/$tfile
1563         test_mkdir -p $DIR/$tdir
1564
1565         $MCREATE $DIR/$tdir/$tfile || error "mcreate failed"
1566         $TRUNCATE $DIR/$tdir/$tfile 80000000 || error "truncate failed"
1567         $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat failed"
1568
1569         exhaust_precreations 0 0x80000215
1570         echo foo >> $DIR/$tdir/$tfile || error "append failed"
1571         $CHECKSTAT -s 80000004 $DIR/$tdir/$tfile || error "checkstat failed"
1572         $GETSTRIPE $DIR/$tdir/$tfile
1573
1574         reset_enospc
1575 }
1576 run_test 27p "append to a truncated file with some full OSTs ==="
1577
1578 test_27q() {
1579         [[ $OSTCOUNT -lt 2 ]] && skip_env "too few OSTs" && return
1580         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1581         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1582         remote_ost_nodsh && skip "remote OST with nodsh" && return
1583
1584         reset_enospc
1585         rm -f $DIR/$tdir/$tfile
1586
1587         test_mkdir -p $DIR/$tdir
1588         $MCREATE $DIR/$tdir/$tfile || error "mcreate $DIR/$tdir/$tfile failed"
1589         $TRUNCATE $DIR/$tdir/$tfile 80000000 ||error "truncate $DIR/$tdir/$tfile failed"
1590         $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat failed"
1591
1592         exhaust_all_precreations 0x215
1593
1594         echo foo >> $DIR/$tdir/$tfile && error "append succeeded"
1595         $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat 2 failed"
1596
1597         reset_enospc
1598 }
1599 run_test 27q "append to truncated file with all OSTs full (should error) ==="
1600
1601 test_27r() {
1602         [[ $OSTCOUNT -lt 2 ]] && skip_env "too few OSTs" && return
1603         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1604         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1605         remote_ost_nodsh && skip "remote OST with nodsh" && return
1606
1607         reset_enospc
1608         rm -f $DIR/$tdir/$tfile
1609         exhaust_precreations 0 0x80000215
1610
1611         $SETSTRIPE -i 0 -c 2 $DIR/$tdir/$tfile # && error
1612
1613         reset_enospc
1614 }
1615 run_test 27r "stripe file with some full OSTs (shouldn't LBUG) ="
1616
1617 test_27s() { # bug 10725
1618         test_mkdir -p $DIR/$tdir
1619         local stripe_size=$((4096 * 1024 * 1024))       # 2^32
1620         local stripe_count=0
1621         [ $OSTCOUNT -eq 1 ] || stripe_count=2
1622         $SETSTRIPE -S $stripe_size -c $stripe_count $DIR/$tdir &&
1623                 error "stripe width >= 2^32 succeeded" || true
1624
1625 }
1626 run_test 27s "lsm_xfersize overflow (should error) (bug 10725)"
1627
1628 test_27t() { # bug 10864
1629         WDIR=$(pwd)
1630         WLFS=$(which lfs)
1631         cd $DIR
1632         touch $tfile
1633         $WLFS getstripe $tfile
1634         cd $WDIR
1635 }
1636 run_test 27t "check that utils parse path correctly"
1637
1638 test_27u() { # bug 4900
1639         [[ $OSTCOUNT -lt 2 ]] && skip_env "too few OSTs" && return
1640         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1641         local index
1642         local list=$(comma_list $(mdts_nodes))
1643
1644 #define OBD_FAIL_MDS_OSC_PRECREATE      0x139
1645         do_nodes $list $LCTL set_param fail_loc=0x139
1646         test_mkdir -p $DIR/$tdir
1647         rm -rf $DIR/$tdir/*
1648         createmany -o $DIR/$tdir/t- 1000
1649         do_nodes $list $LCTL set_param fail_loc=0
1650
1651         TLOG=$DIR/$tfile.getstripe
1652         $GETSTRIPE $DIR/$tdir > $TLOG
1653         OBJS=$(awk -vobj=0 '($1 == 0) { obj += 1 } END { print obj; }' $TLOG)
1654         unlinkmany $DIR/$tdir/t- 1000
1655         [[ $OBJS -gt 0 ]] &&
1656                 error "$OBJS objects created on OST-0. See $TLOG" || pass
1657 }
1658 run_test 27u "skip object creation on OSC w/o objects =========="
1659
1660 test_27v() { # bug 4900
1661         [[ $OSTCOUNT -lt 2 ]] && skip_env "too few OSTs" && return
1662         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1663         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1664         remote_ost_nodsh && skip "remote OST with nodsh" && return
1665
1666         exhaust_all_precreations 0x215
1667         reset_enospc
1668
1669         test_mkdir -p $DIR/$tdir
1670         $SETSTRIPE -c 1 $DIR/$tdir         # 1 stripe / file
1671
1672         touch $DIR/$tdir/$tfile
1673         #define OBD_FAIL_TGT_DELAY_PRECREATE     0x705
1674         # all except ost1
1675         for (( i=1; i < OSTCOUNT; i++ )); do
1676                 do_facet ost$i lctl set_param fail_loc=0x705
1677         done
1678         local START=`date +%s`
1679         createmany -o $DIR/$tdir/$tfile 32
1680
1681         local FINISH=`date +%s`
1682         local TIMEOUT=`lctl get_param -n timeout`
1683         local PROCESS=$((FINISH - START))
1684         [ $PROCESS -ge $((TIMEOUT / 2)) ] && \
1685                error "$FINISH - $START >= $TIMEOUT / 2"
1686         sleep $((TIMEOUT / 2 - PROCESS))
1687         reset_enospc
1688 }
1689 run_test 27v "skip object creation on slow OST ================="
1690
1691 test_27w() { # bug 10997
1692         test_mkdir -p $DIR/$tdir || error "mkdir failed"
1693         $SETSTRIPE -S 65536 $DIR/$tdir/f0 || error "setstripe failed"
1694         [ $($GETSTRIPE -S $DIR/$tdir/f0) -ne 65536 ] &&
1695                 error "stripe size $size != 65536" || true
1696         [ $($GETSTRIPE -d $DIR/$tdir | grep -c "stripe_count") -ne 1 ] &&
1697                 error "$GETSTRIPE -d $DIR/$tdir failed" || true
1698 }
1699 run_test 27w "check $SETSTRIPE -S option"
1700
1701 test_27wa() {
1702         [[ $OSTCOUNT -lt 2 ]] &&
1703                 skip_env "skipping multiple stripe count/offset test" && return
1704
1705         test_mkdir -p $DIR/$tdir || error "mkdir failed"
1706         for i in $(seq 1 $OSTCOUNT); do
1707                 offset=$((i - 1))
1708                 $SETSTRIPE -c $i -i $offset $DIR/$tdir/f$i ||
1709                         error "setstripe -c $i -i $offset failed"
1710                 count=$($GETSTRIPE -c $DIR/$tdir/f$i)
1711                 index=$($GETSTRIPE -i $DIR/$tdir/f$i)
1712                 [ $count -ne $i ] && error "stripe count $count != $i" || true
1713                 [ $index -ne $offset ] &&
1714                         error "stripe offset $index != $offset" || true
1715         done
1716 }
1717 run_test 27wa "check $SETSTRIPE -c -i options"
1718
1719 test_27x() {
1720         remote_ost_nodsh && skip "remote OST with nodsh" && return
1721         [[ $OSTCOUNT -lt 2 ]] && skip_env "$OSTCOUNT < 2 OSTs" && return
1722         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1723         OFFSET=$(($OSTCOUNT - 1))
1724         OSTIDX=0
1725         local OST=$(ostname_from_index $OSTIDX)
1726
1727         test_mkdir -p $DIR/$tdir
1728         $SETSTRIPE -c 1 $DIR/$tdir      # 1 stripe per file
1729         do_facet ost$((OSTIDX + 1)) lctl set_param -n obdfilter.$OST.degraded 1
1730         sleep_maxage
1731         createmany -o $DIR/$tdir/$tfile $OSTCOUNT
1732         for i in `seq 0 $OFFSET`; do
1733                 [ `$GETSTRIPE $DIR/$tdir/$tfile$i | grep -A 10 obdidx | awk '{print $1}' | grep -w "$OSTIDX"` ] &&
1734                 error "OST0 was degraded but new created file still use it"
1735         done
1736         do_facet ost$((OSTIDX + 1)) lctl set_param -n obdfilter.$OST.degraded 0
1737 }
1738 run_test 27x "create files while OST0 is degraded"
1739
1740 test_27y() {
1741         [[ $OSTCOUNT -lt 2 ]] &&
1742                 skip_env "$OSTCOUNT < 2 OSTs -- skipping" && return
1743         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1744         remote_ost_nodsh && skip "remote OST with nodsh" && return
1745         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1746
1747         local mdtosc=$(get_mdtosc_proc_path $SINGLEMDS $FSNAME-OST0000)
1748         local last_id=$(do_facet $SINGLEMDS lctl get_param -n \
1749             osc.$mdtosc.prealloc_last_id)
1750         local next_id=$(do_facet $SINGLEMDS lctl get_param -n \
1751             osc.$mdtosc.prealloc_next_id)
1752         local fcount=$((last_id - next_id))
1753         [[ $fcount -eq 0 ]] && skip "not enough space on OST0" && return
1754         [[ $fcount -gt $OSTCOUNT ]] && fcount=$OSTCOUNT
1755
1756         local MDS_OSCS=$(do_facet $SINGLEMDS lctl dl |
1757                          awk '/[oO][sS][cC].*md[ts]/ { print $4 }')
1758         local OST_DEACTIVE_IDX=-1
1759         local OSC
1760         local OSTIDX
1761         local OST
1762
1763         for OSC in $MDS_OSCS; do
1764                 OST=$(osc_to_ost $OSC)
1765                 OSTIDX=$(index_from_ostuuid $OST)
1766                 if [ $OST_DEACTIVE_IDX == -1 ]; then
1767                         OST_DEACTIVE_IDX=$OSTIDX
1768                 fi
1769                 if [ $OSTIDX != $OST_DEACTIVE_IDX ]; then
1770                         echo $OSC "is Deactivated:"
1771                         do_facet $SINGLEMDS lctl --device  %$OSC deactivate
1772                 fi
1773         done
1774
1775         OSTIDX=$(index_from_ostuuid $OST)
1776         test_mkdir -p $DIR/$tdir
1777         $SETSTRIPE -c 1 $DIR/$tdir      # 1 stripe / file
1778
1779         for OSC in $MDS_OSCS; do
1780                 OST=$(osc_to_ost $OSC)
1781                 OSTIDX=$(index_from_ostuuid $OST)
1782                 if [ $OSTIDX == $OST_DEACTIVE_IDX ]; then
1783                         echo $OST "is degraded:"
1784                         do_facet ost$((OSTIDX+1)) lctl set_param -n \
1785                                                 obdfilter.$OST.degraded=1
1786                 fi
1787         done
1788
1789         sleep_maxage
1790         createmany -o $DIR/$tdir/$tfile $fcount
1791
1792         for OSC in $MDS_OSCS; do
1793                 OST=$(osc_to_ost $OSC)
1794                 OSTIDX=$(index_from_ostuuid $OST)
1795                 if [ $OSTIDX == $OST_DEACTIVE_IDX ]; then
1796                         echo $OST "is recovered from degraded:"
1797                         do_facet ost$((OSTIDX+1)) lctl set_param -n \
1798                                                 obdfilter.$OST.degraded=0
1799                 else
1800                         do_facet $SINGLEMDS lctl --device %$OSC activate
1801                 fi
1802         done
1803
1804         # all osp devices get activated, hence -1 stripe count restored
1805         local stripecnt=0
1806
1807         # sleep 2*lod_qos_maxage seconds waiting for lod qos to notice osp
1808         # devices get activated.
1809         sleep_maxage
1810         $SETSTRIPE -c -1 $DIR/$tfile
1811         stripecnt=$($GETSTRIPE -c $DIR/$tfile)
1812         rm -f $DIR/$tfile
1813         [ $stripecnt -ne $OSTCOUNT ] &&
1814                 error "Of $OSTCOUNT OSTs, only $stripecnt is available"
1815         return 0
1816 }
1817 run_test 27y "create files while OST0 is degraded and the rest inactive"
1818
1819 check_seq_oid()
1820 {
1821         log "check file $1"
1822
1823         lmm_count=$($GETSTRIPE -c $1)
1824         lmm_seq=$($GETSTRIPE -v $1 | awk '/lmm_seq/ { print $2 }')
1825         lmm_oid=$($GETSTRIPE -v $1 | awk '/lmm_object_id/ { print $2 }')
1826
1827         local old_ifs="$IFS"
1828         IFS=$'[:]'
1829         fid=($($LFS path2fid $1))
1830         IFS="$old_ifs"
1831
1832         log "FID seq ${fid[1]}, oid ${fid[2]} ver ${fid[3]}"
1833         log "LOV seq $lmm_seq, oid $lmm_oid, count: $lmm_count"
1834
1835         # compare lmm_seq and lu_fid->f_seq
1836         [ $lmm_seq = ${fid[1]} ] || { error "SEQ mismatch"; return 1; }
1837         # compare lmm_object_id and lu_fid->oid
1838         [ $lmm_oid = ${fid[2]} ] || { error "OID mismatch"; return 2; }
1839
1840         # check the trusted.fid attribute of the OST objects of the file
1841         local have_obdidx=false
1842         local stripe_nr=0
1843         $GETSTRIPE $1 | while read obdidx oid hex seq; do
1844                 # skip lines up to and including "obdidx"
1845                 [ -z "$obdidx" ] && break
1846                 [ "$obdidx" = "obdidx" ] && have_obdidx=true && continue
1847                 $have_obdidx || continue
1848
1849                 local ost=$((obdidx + 1))
1850                 local dev=$(ostdevname $ost)
1851                 local oid_hex
1852
1853                 log "want: stripe:$stripe_nr ost:$obdidx oid:$oid/$hex seq:$seq"
1854
1855                 seq=$(echo $seq | sed -e "s/^0x//g")
1856                 if [ $seq == 0 ] || [ $(facet_fstype ost$ost) == zfs ]; then
1857                         oid_hex=$(echo $oid)
1858                 else
1859                         oid_hex=$(echo $hex | sed -e "s/^0x//g")
1860                 fi
1861                 local obj_file="O/$seq/d$((oid %32))/$oid_hex"
1862
1863                 local ff
1864                 #
1865                 # Don't unmount/remount the OSTs if we don't need to do that.
1866                 # LU-2577 changes filter_fid to be smaller, so debugfs needs
1867                 # update too, until that use mount/ll_decode_filter_fid/mount.
1868                 # Re-enable when debugfs will understand new filter_fid.
1869                 #
1870                 if false && [ $(facet_fstype ost$ost) == ldiskfs ]; then
1871                         ff=$(do_facet ost$ost "$DEBUGFS -c -R 'stat $obj_file' \
1872                                 $dev 2>/dev/null" | grep "parent=")
1873                 else
1874                         stop ost$ost
1875                         mount_fstype ost$ost
1876                         ff=$(do_facet ost$ost $LL_DECODE_FILTER_FID \
1877                                 $(facet_mntpt ost$ost)/$obj_file)
1878                         unmount_fstype ost$ost
1879                         start ost$ost $dev $OST_MOUNT_OPTS
1880                         clients_up
1881                 fi
1882
1883                 [ -z "$ff" ] && error "$obj_file: no filter_fid info"
1884
1885                 echo "$ff" | sed -e 's#.*objid=#got: objid=#'
1886
1887                 # /mnt/O/0/d23/23: objid=23 seq=0 parent=[0x200000400:0x1e:0x1]
1888                 # fid: objid=23 seq=0 parent=[0x200000400:0x1e:0x0] stripe=1
1889                 local ff_parent=$(echo $ff|sed -e 's/.*parent=.//')
1890                 local ff_pseq=$(echo $ff_parent | cut -d: -f1)
1891                 local ff_poid=$(echo $ff_parent | cut -d: -f2)
1892                 local ff_pstripe
1893                 if echo $ff_parent | grep -q 'stripe='; then
1894                         ff_pstripe=$(echo $ff_parent | sed -e 's/.*stripe=//')
1895                 else
1896                         #
1897                         # $LL_DECODE_FILTER_FID does not print "stripe="; look
1898                         # into f_ver in this case.  See the comment on
1899                         # ff_parent.
1900                         #
1901                         ff_pstripe=$(echo $ff_parent | cut -d: -f3 |
1902                                 sed -e 's/\]//')
1903                 fi
1904
1905                 # compare lmm_seq and filter_fid->ff_parent.f_seq
1906                 [ $ff_pseq = $lmm_seq ] ||
1907                         error "FF parent SEQ $ff_pseq != $lmm_seq"
1908                 # compare lmm_object_id and filter_fid->ff_parent.f_oid
1909                 [ $ff_poid = $lmm_oid ] ||
1910                         error "FF parent OID $ff_poid != $lmm_oid"
1911                 (($ff_pstripe == $stripe_nr)) ||
1912                         error "FF stripe $ff_pstripe != $stripe_nr"
1913
1914                 stripe_nr=$((stripe_nr + 1))
1915         done
1916 }
1917
1918 test_27z() {
1919         remote_ost_nodsh && skip "remote OST with nodsh" && return
1920         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1921         test_mkdir -p $DIR/$tdir
1922
1923         $SETSTRIPE -c 1 -i 0 -S 64k $DIR/$tdir/$tfile-1 ||
1924                 { error "setstripe -c -1 failed"; return 1; }
1925         # We need to send a write to every object to get parent FID info set.
1926         # This _should_ also work for setattr, but does not currently.
1927         # touch $DIR/$tdir/$tfile-1 ||
1928         dd if=/dev/zero of=$DIR/$tdir/$tfile-1 bs=1M count=1 ||
1929                 { error "dd $tfile-1 failed"; return 2; }
1930         $SETSTRIPE -c -1 -i $((OSTCOUNT - 1)) -S 1M $DIR/$tdir/$tfile-2 ||
1931                 { error "setstripe -c -1 failed"; return 3; }
1932         dd if=/dev/zero of=$DIR/$tdir/$tfile-2 bs=1M count=$OSTCOUNT ||
1933                 { error "dd $tfile-2 failed"; return 4; }
1934
1935         # make sure write RPCs have been sent to OSTs
1936         sync; sleep 5; sync
1937
1938         check_seq_oid $DIR/$tdir/$tfile-1 || return 5
1939         check_seq_oid $DIR/$tdir/$tfile-2 || return 6
1940 }
1941 run_test 27z "check SEQ/OID on the MDT and OST filesystems"
1942
1943 test_27A() { # b=19102
1944         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1945         local restore_size=$($GETSTRIPE -S $MOUNT)
1946         local restore_count=$($GETSTRIPE -c $MOUNT)
1947         local restore_offset=$($GETSTRIPE -i $MOUNT)
1948         $SETSTRIPE -c 0 -i -1 -S 0 $MOUNT
1949         wait_update $HOSTNAME "$GETSTRIPE -c $MOUNT | sed 's/  *//g'" "1" 20 ||
1950                 error "stripe count $($GETSTRIPE -c $MOUNT) != 1"
1951         local default_size=$($GETSTRIPE -S $MOUNT)
1952         local default_offset=$($GETSTRIPE -i $MOUNT)
1953         local dsize=$((1024 * 1024))
1954         [ $default_size -eq $dsize ] ||
1955                 error "stripe size $default_size != $dsize"
1956         [ $default_offset -eq -1 ] ||error "stripe offset $default_offset != -1"
1957         $SETSTRIPE -c $restore_count -i $restore_offset -S $restore_size $MOUNT
1958 }
1959 run_test 27A "check filesystem-wide default LOV EA values"
1960
1961 test_27B() { # LU-2523
1962         test_mkdir -p $DIR/$tdir
1963         rm -f $DIR/$tdir/f0 $DIR/$tdir/f1
1964         touch $DIR/$tdir/f0
1965         # open f1 with O_LOV_DELAY_CREATE
1966         # rename f0 onto f1
1967         # call setstripe ioctl on open file descriptor for f1
1968         # close
1969         multiop $DIR/$tdir/f1 oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:nB1c \
1970                 $DIR/$tdir/f0
1971
1972         rm -f $DIR/$tdir/f1
1973         # open f1 with O_LOV_DELAY_CREATE
1974         # unlink f1
1975         # call setstripe ioctl on open file descriptor for f1
1976         # close
1977         multiop $DIR/$tdir/f1 oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:uB1c
1978
1979         # Allow multiop to fail in imitation of NFS's busted semantics.
1980         true
1981 }
1982 run_test 27B "call setstripe on open unlinked file/rename victim"
1983
1984 test_27C() { #LU-2871
1985         [[ $OSTCOUNT -lt 2 ]] && skip "needs >= 2 OSTs" && return
1986
1987         declare -a ost_idx
1988         local index
1989         local found
1990         local i
1991         local j
1992
1993         test_mkdir -p $DIR/$tdir
1994         cd $DIR/$tdir
1995         for i in $(seq 0 $((OSTCOUNT - 1))); do
1996                 # set stripe across all OSTs starting from OST$i
1997                 $SETSTRIPE -i $i -c -1 $tfile$i
1998                 # get striping information
1999                 ost_idx=($($GETSTRIPE $tfile$i |
2000                          tail -n $((OSTCOUNT + 1)) | awk '{print $1}'))
2001                 echo ${ost_idx[@]}
2002
2003                 # check the layout
2004                 [ ${#ost_idx[@]} -eq $OSTCOUNT ] ||
2005                         error "${#ost_idx[@]} != $OSTCOUNT"
2006
2007                 for index in $(seq 0 $((OSTCOUNT - 1))); do
2008                         found=0
2009                         for j in $(echo ${ost_idx[@]}); do
2010                                 if [ $index -eq $j ]; then
2011                                         found=1
2012                                         break
2013                                 fi
2014                         done
2015                         [ $found = 1 ] ||
2016                                 error "Can not find $index in ${ost_idx[@]}"
2017                 done
2018         done
2019 }
2020 run_test 27C "check full striping across all OSTs"
2021
2022 test_27D() {
2023         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
2024         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
2025         local POOL=${POOL:-testpool}
2026         local first_ost=0
2027         local last_ost=$(($OSTCOUNT - 1))
2028         local ost_step=1
2029         local ost_list=$(seq $first_ost $ost_step $last_ost)
2030         local ost_range="$first_ost $last_ost $ost_step"
2031
2032         test_mkdir -p $DIR/$tdir
2033         pool_add $POOL || error "pool_add failed"
2034         pool_add_targets $POOL $ost_range || error "pool_add_targets failed"
2035         llapi_layout_test -d$DIR/$tdir -p$POOL -o$OSTCOUNT ||
2036                 error "llapi_layout_test failed"
2037         cleanup_pools || error "cleanup_pools failed"
2038 }
2039 run_test 27D "validate llapi_layout API"
2040
2041 # Verify that default_easize is increased from its initial value after
2042 # accessing a widely striped file.
2043 test_27E() {
2044         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
2045         [ $(lustre_version_code client) -lt $(version_code 2.5.57) ] &&
2046                 skip "client does not have LU-3338 fix" && return
2047
2048         # 72 bytes is the minimum space required to store striping
2049         # information for a file striped across one OST:
2050         # (sizeof(struct lov_user_md_v3) +
2051         #  sizeof(struct lov_user_ost_data_v1))
2052         local min_easize=72
2053         $LCTL set_param -n llite.*.default_easize $min_easize ||
2054                 error "lctl set_param failed"
2055         local easize=$($LCTL get_param -n llite.*.default_easize)
2056
2057         [ $easize -eq $min_easize ] ||
2058                 error "failed to set default_easize"
2059
2060         $LFS setstripe -c $OSTCOUNT $DIR/$tfile ||
2061                 error "setstripe failed"
2062         cat $DIR/$tfile
2063         rm $DIR/$tfile
2064
2065         easize=$($LCTL get_param -n llite.*.default_easize)
2066
2067         [ $easize -gt $min_easize ] ||
2068                 error "default_easize not updated"
2069 }
2070 run_test 27E "check that default extended attribute size properly increases"
2071
2072 # createtest also checks that device nodes are created and
2073 # then visible correctly (#2091)
2074 test_28() { # bug 2091
2075         test_mkdir $DIR/d28
2076         $CREATETEST $DIR/d28/ct || error
2077 }
2078 run_test 28 "create/mknod/mkdir with bad file types ============"
2079
2080 test_29() {
2081         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return 0
2082         cancel_lru_locks mdc
2083         test_mkdir $DIR/d29
2084         touch $DIR/d29/foo
2085         log 'first d29'
2086         ls -l $DIR/d29
2087
2088         declare -i LOCKCOUNTORIG=0
2089         for lock_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_count); do
2090                 let LOCKCOUNTORIG=$LOCKCOUNTORIG+$lock_count
2091         done
2092         [ $LOCKCOUNTORIG -eq 0 ] && error "No mdc lock count" && return 1
2093
2094         declare -i LOCKUNUSEDCOUNTORIG=0
2095         for unused_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_unused_count); do
2096                 let LOCKUNUSEDCOUNTORIG=$LOCKUNUSEDCOUNTORIG+$unused_count
2097         done
2098
2099         log 'second d29'
2100         ls -l $DIR/d29
2101         log 'done'
2102
2103         declare -i LOCKCOUNTCURRENT=0
2104         for lock_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_count); do
2105                 let LOCKCOUNTCURRENT=$LOCKCOUNTCURRENT+$lock_count
2106         done
2107
2108         declare -i LOCKUNUSEDCOUNTCURRENT=0
2109         for unused_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_unused_count); do
2110                 let LOCKUNUSEDCOUNTCURRENT=$LOCKUNUSEDCOUNTCURRENT+$unused_count
2111         done
2112
2113         if [[ $LOCKCOUNTCURRENT -gt $LOCKCOUNTORIG ]]; then
2114                 $LCTL set_param -n ldlm.dump_namespaces ""
2115                 error "CURRENT: $LOCKCOUNTCURRENT > $LOCKCOUNTORIG"
2116                 $LCTL dk | sort -k4 -t: > $TMP/test_29.dk
2117                 log "dumped log to $TMP/test_29.dk (bug 5793)"
2118                 return 2
2119         fi
2120         if [[ $LOCKUNUSEDCOUNTCURRENT -gt $LOCKUNUSEDCOUNTORIG ]]; then
2121                 error "UNUSED: $LOCKUNUSEDCOUNTCURRENT > $LOCKUNUSEDCOUNTORIG"
2122                 $LCTL dk | sort -k4 -t: > $TMP/test_29.dk
2123                 log "dumped log to $TMP/test_29.dk (bug 5793)"
2124                 return 3
2125         fi
2126 }
2127 run_test 29 "IT_GETATTR regression  ============================"
2128
2129 test_30a() { # was test_30
2130         cp $(which ls) $DIR || cp /bin/ls $DIR
2131         $DIR/ls / || error
2132         rm $DIR/ls
2133 }
2134 run_test 30a "execute binary from Lustre (execve) =============="
2135
2136 test_30b() {
2137         cp `which ls` $DIR || cp /bin/ls $DIR
2138         chmod go+rx $DIR/ls
2139         $RUNAS $DIR/ls / || error
2140         rm $DIR/ls
2141 }
2142 run_test 30b "execute binary from Lustre as non-root ==========="
2143
2144 test_30c() { # b=22376
2145         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2146         cp `which ls` $DIR || cp /bin/ls $DIR
2147         chmod a-rw $DIR/ls
2148         cancel_lru_locks mdc
2149         cancel_lru_locks osc
2150         $RUNAS $DIR/ls / || error
2151         rm -f $DIR/ls
2152 }
2153 run_test 30c "execute binary from Lustre without read perms ===="
2154
2155 test_31a() {
2156         $OPENUNLINK $DIR/f31 $DIR/f31 || error
2157         $CHECKSTAT -a $DIR/f31 || error
2158 }
2159 run_test 31a "open-unlink file =================================="
2160
2161 test_31b() {
2162         touch $DIR/f31 || error
2163         ln $DIR/f31 $DIR/f31b || error
2164         $MULTIOP $DIR/f31b Ouc || error
2165         $CHECKSTAT -t file $DIR/f31 || error
2166 }
2167 run_test 31b "unlink file with multiple links while open ======="
2168
2169 test_31c() {
2170         touch $DIR/f31 || error
2171         ln $DIR/f31 $DIR/f31c || error
2172         multiop_bg_pause $DIR/f31 O_uc || return 1
2173         MULTIPID=$!
2174         $MULTIOP $DIR/f31c Ouc
2175         kill -USR1 $MULTIPID
2176         wait $MULTIPID
2177 }
2178 run_test 31c "open-unlink file with multiple links ============="
2179
2180 test_31d() {
2181         opendirunlink $DIR/d31d $DIR/d31d || error
2182         $CHECKSTAT -a $DIR/d31d || error
2183 }
2184 run_test 31d "remove of open directory ========================="
2185
2186 test_31e() { # bug 2904
2187         openfilleddirunlink $DIR/d31e || error
2188 }
2189 run_test 31e "remove of open non-empty directory ==============="
2190
2191 test_31f() { # bug 4554
2192         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2193         set -vx
2194         test_mkdir $DIR/d31f
2195         $SETSTRIPE -S 1048576 -c 1 $DIR/d31f
2196         cp /etc/hosts $DIR/d31f
2197         ls -l $DIR/d31f
2198         $GETSTRIPE $DIR/d31f/hosts
2199         multiop_bg_pause $DIR/d31f D_c || return 1
2200         MULTIPID=$!
2201
2202         rm -rv $DIR/d31f || error "first of $DIR/d31f"
2203         test_mkdir $DIR/d31f
2204         $SETSTRIPE -S 1048576 -c 1 $DIR/d31f
2205         cp /etc/hosts $DIR/d31f
2206         ls -l $DIR/d31f
2207         $GETSTRIPE $DIR/d31f/hosts
2208         multiop_bg_pause $DIR/d31f D_c || return 1
2209         MULTIPID2=$!
2210
2211         kill -USR1 $MULTIPID || error "first opendir $MULTIPID not running"
2212         wait $MULTIPID || error "first opendir $MULTIPID failed"
2213
2214         sleep 6
2215
2216         kill -USR1 $MULTIPID2 || error "second opendir $MULTIPID not running"
2217         wait $MULTIPID2 || error "second opendir $MULTIPID2 failed"
2218         set +vx
2219 }
2220 run_test 31f "remove of open directory with open-unlink file ==="
2221
2222 test_31g() {
2223         echo "-- cross directory link --"
2224         test_mkdir -c1 $DIR/${tdir}ga
2225         test_mkdir -c1 $DIR/${tdir}gb
2226         touch $DIR/${tdir}ga/f
2227         ln $DIR/${tdir}ga/f $DIR/${tdir}gb/g
2228         $CHECKSTAT -t file $DIR/${tdir}ga/f || error "source"
2229         [ `stat -c%h $DIR/${tdir}ga/f` == '2' ] || error "source nlink"
2230         $CHECKSTAT -t file $DIR/${tdir}gb/g || error "target"
2231         [ `stat -c%h $DIR/${tdir}gb/g` == '2' ] || error "target nlink"
2232 }
2233 run_test 31g "cross directory link==============="
2234
2235 test_31h() {
2236         echo "-- cross directory link --"
2237         test_mkdir -c1 $DIR/${tdir}
2238         test_mkdir -c1 $DIR/${tdir}/dir
2239         touch $DIR/${tdir}/f
2240         ln $DIR/${tdir}/f $DIR/${tdir}/dir/g
2241         $CHECKSTAT -t file $DIR/${tdir}/f || error "source"
2242         [ `stat -c%h $DIR/${tdir}/f` == '2' ] || error "source nlink"
2243         $CHECKSTAT -t file $DIR/${tdir}/dir/g || error "target"
2244         [ `stat -c%h $DIR/${tdir}/dir/g` == '2' ] || error "target nlink"
2245 }
2246 run_test 31h "cross directory link under child==============="
2247
2248 test_31i() {
2249         echo "-- cross directory link --"
2250         test_mkdir -c1 $DIR/$tdir
2251         test_mkdir -c1 $DIR/$tdir/dir
2252         touch $DIR/$tdir/dir/f
2253         ln $DIR/$tdir/dir/f $DIR/$tdir/g
2254         $CHECKSTAT -t file $DIR/$tdir/dir/f || error "source"
2255         [ `stat -c%h $DIR/$tdir/dir/f` == '2' ] || error "source nlink"
2256         $CHECKSTAT -t file $DIR/$tdir/g || error "target"
2257         [ `stat -c%h $DIR/$tdir/g` == '2' ] || error "target nlink"
2258 }
2259 run_test 31i "cross directory link under parent==============="
2260
2261 test_31j() {
2262         test_mkdir -c1 -p $DIR/$tdir
2263         test_mkdir -c1 -p $DIR/$tdir/dir1
2264         ln $DIR/$tdir/dir1 $DIR/$tdir/dir2 && error "ln for dir"
2265         link $DIR/$tdir/dir1 $DIR/$tdir/dir3 && error "link for dir"
2266         mlink $DIR/$tdir/dir1 $DIR/$tdir/dir4 && error "mlink for dir"
2267         mlink $DIR/$tdir/dir1 $DIR/$tdir/dir1 && error "mlink to the same dir"
2268         return 0
2269 }
2270 run_test 31j "link for directory==============="
2271
2272 test_31k() {
2273         test_mkdir -c1 -p $DIR/$tdir
2274         touch $DIR/$tdir/s
2275         touch $DIR/$tdir/exist
2276         mlink $DIR/$tdir/s $DIR/$tdir/t || error "mlink"
2277         mlink $DIR/$tdir/s $DIR/$tdir/exist && error "mlink to exist file"
2278         mlink $DIR/$tdir/s $DIR/$tdir/s && error "mlink to the same file"
2279         mlink $DIR/$tdir/s $DIR/$tdir && error "mlink to parent dir"
2280         mlink $DIR/$tdir $DIR/$tdir/s && error "mlink parent dir to target"
2281         mlink $DIR/$tdir/not-exist $DIR/$tdir/foo && error "mlink non-existing to new"
2282         mlink $DIR/$tdir/not-exist $DIR/$tdir/s && error "mlink non-existing to exist"
2283         return 0
2284 }
2285 run_test 31k "link to file: the same, non-existing, dir==============="
2286
2287 test_31m() {
2288         mkdir $DIR/d31m
2289         touch $DIR/d31m/s
2290         mkdir $DIR/d31m2
2291         touch $DIR/d31m2/exist
2292         mlink $DIR/d31m/s $DIR/d31m2/t || error "mlink"
2293         mlink $DIR/d31m/s $DIR/d31m2/exist && error "mlink to exist file"
2294         mlink $DIR/d31m/s $DIR/d31m2 && error "mlink to parent dir"
2295         mlink $DIR/d31m2 $DIR/d31m/s && error "mlink parent dir to target"
2296         mlink $DIR/d31m/not-exist $DIR/d31m2/foo && error "mlink non-existing to new"
2297         mlink $DIR/d31m/not-exist $DIR/d31m2/s && error "mlink non-existing to exist"
2298         return 0
2299 }
2300 run_test 31m "link to file: the same, non-existing, dir==============="
2301
2302 test_31n() {
2303         touch $DIR/$tfile || error "cannot create '$DIR/$tfile'"
2304         nlink=$(stat --format=%h $DIR/$tfile)
2305         [ ${nlink:--1} -eq 1 ] || error "nlink is $nlink, expected 1"
2306         local fd=$(free_fd)
2307         local cmd="exec $fd<$DIR/$tfile"
2308         eval $cmd
2309         cmd="exec $fd<&-"
2310         trap "eval $cmd" EXIT
2311         nlink=$(stat --dereference --format=%h /proc/self/fd/$fd)
2312         [ ${nlink:--1} -eq 1 ] || error "nlink is $nlink, expected 1"
2313         rm $DIR/$tfile || error "cannot remove '$DIR/$tfile'"
2314         nlink=$(stat --dereference --format=%h /proc/self/fd/$fd)
2315         [ ${nlink:--1} -eq 0 ] || error "nlink is $nlink, expected 0"
2316         eval $cmd
2317 }
2318 run_test 31n "check link count of unlinked file"
2319
2320 link_one() {
2321         local TEMPNAME=$(mktemp $1_XXXXXX)
2322         mlink $TEMPNAME $1 2> /dev/null &&
2323                 echo "$BASHPID: link $TEMPNAME to $1 succeeded"
2324         munlink $TEMPNAME
2325 }
2326
2327 test_31o() { # LU-2901
2328         test_mkdir -p $DIR/$tdir
2329         for LOOP in $(seq 100); do
2330                 rm -f $DIR/$tdir/$tfile*
2331                 for THREAD in $(seq 8); do
2332                         link_one $DIR/$tdir/$tfile.$LOOP &
2333                 done
2334                 wait
2335                 local LINKS=$(ls -1 $DIR/$tdir | grep -c $tfile.$LOOP)
2336                 [[ $LINKS -gt 1 ]] && ls $DIR/$tdir &&
2337                         error "$LINKS duplicate links to $tfile.$LOOP" &&
2338                         break || true
2339         done
2340 }
2341 run_test 31o "duplicate hard links with same filename"
2342
2343 test_31p() {
2344         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
2345
2346         test_mkdir $DIR/$tdir
2347         $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
2348         $LFS setdirstripe -D -c2 -t all_char $DIR/$tdir/striped_dir
2349
2350         opendirunlink $DIR/$tdir/striped_dir/test1 ||
2351                 error "open unlink test1 failed"
2352         opendirunlink $DIR/$tdir/striped_dir/test2 ||
2353                 error "open unlink test2 failed"
2354
2355         $CHECKSTAT -a $DIR/$tdir/striped_dir/test1 ||
2356                 error "test1 still exists"
2357         $CHECKSTAT -a $DIR/$tdir/striped_dir/test2 ||
2358                 error "test2 still exists"
2359 }
2360 run_test 31p "remove of open striped directory"
2361
2362 cleanup_test32_mount() {
2363         trap 0
2364         $UMOUNT $DIR/$tdir/ext2-mountpoint
2365 }
2366
2367 test_32a() {
2368         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2369         echo "== more mountpoints and symlinks ================="
2370         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2371         trap cleanup_test32_mount EXIT
2372         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2373         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2374         $CHECKSTAT -t dir $DIR/$tdir/ext2-mountpoint/.. || error
2375         cleanup_test32_mount
2376 }
2377 run_test 32a "stat d32a/ext2-mountpoint/.. ====================="
2378
2379 test_32b() {
2380         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2381         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2382         trap cleanup_test32_mount EXIT
2383         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2384         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2385         ls -al $DIR/$tdir/ext2-mountpoint/.. || error
2386         cleanup_test32_mount
2387 }
2388 run_test 32b "open d32b/ext2-mountpoint/.. ====================="
2389
2390 test_32c() {
2391         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2392         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2393         trap cleanup_test32_mount EXIT
2394         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2395         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2396         test_mkdir -p $DIR/$tdir/d2/test_dir
2397         $CHECKSTAT -t dir $DIR/$tdir/ext2-mountpoint/../d2/test_dir || error
2398         cleanup_test32_mount
2399 }
2400 run_test 32c "stat d32c/ext2-mountpoint/../d2/test_dir ========="
2401
2402 test_32d() {
2403         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2404         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2405         trap cleanup_test32_mount EXIT
2406         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2407         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2408         test_mkdir -p $DIR/$tdir/d2/test_dir
2409         ls -al $DIR/$tdir/ext2-mountpoint/../d2/test_dir || error
2410         cleanup_test32_mount
2411 }
2412 run_test 32d "open d32d/ext2-mountpoint/../d2/test_dir ========="
2413
2414 test_32e() {
2415         [ -e $DIR/d32e ] && rm -fr $DIR/d32e
2416         test_mkdir -p $DIR/d32e/tmp
2417         TMP_DIR=$DIR/d32e/tmp
2418         ln -s $DIR/d32e $TMP_DIR/symlink11
2419         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2420         $CHECKSTAT -t link $DIR/d32e/tmp/symlink11 || error
2421         $CHECKSTAT -t link $DIR/d32e/symlink01 || error
2422 }
2423 run_test 32e "stat d32e/symlink->tmp/symlink->lustre-subdir ===="
2424
2425 test_32f() {
2426         [ -e $DIR/d32f ] && rm -fr $DIR/d32f
2427         test_mkdir -p $DIR/d32f/tmp
2428         TMP_DIR=$DIR/d32f/tmp
2429         ln -s $DIR/d32f $TMP_DIR/symlink11
2430         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2431         ls $DIR/d32f/tmp/symlink11  || error
2432         ls $DIR/d32f/symlink01 || error
2433 }
2434 run_test 32f "open d32f/symlink->tmp/symlink->lustre-subdir ===="
2435
2436 test_32g() {
2437         TMP_DIR=$DIR/$tdir/tmp
2438         test_mkdir -p $DIR/$tdir/tmp
2439         test_mkdir $DIR/${tdir}2
2440         ln -s $DIR/${tdir}2 $TMP_DIR/symlink12
2441         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2442         $CHECKSTAT -t link $TMP_DIR/symlink12 || error
2443         $CHECKSTAT -t link $DIR/$tdir/symlink02 || error
2444         $CHECKSTAT -t dir -f $TMP_DIR/symlink12 || error
2445         $CHECKSTAT -t dir -f $DIR/$tdir/symlink02 || error
2446 }
2447 run_test 32g "stat d32g/symlink->tmp/symlink->lustre-subdir/${tdir}2"
2448
2449 test_32h() {
2450         rm -fr $DIR/$tdir $DIR/${tdir}2
2451         TMP_DIR=$DIR/$tdir/tmp
2452         test_mkdir -p $DIR/$tdir/tmp
2453         test_mkdir $DIR/${tdir}2
2454         ln -s $DIR/${tdir}2 $TMP_DIR/symlink12
2455         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2456         ls $TMP_DIR/symlink12 || error
2457         ls $DIR/$tdir/symlink02  || error
2458 }
2459 run_test 32h "open d32h/symlink->tmp/symlink->lustre-subdir/${tdir}2"
2460
2461 test_32i() {
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         touch $DIR/$tdir/test_file
2468         $CHECKSTAT -t file $DIR/$tdir/ext2-mountpoint/../test_file || error
2469         cleanup_test32_mount
2470 }
2471 run_test 32i "stat d32i/ext2-mountpoint/../test_file ==========="
2472
2473 test_32j() {
2474         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2475         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2476         trap cleanup_test32_mount EXIT
2477         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2478         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2479         touch $DIR/$tdir/test_file
2480         cat $DIR/$tdir/ext2-mountpoint/../test_file || error
2481         cleanup_test32_mount
2482 }
2483 run_test 32j "open d32j/ext2-mountpoint/../test_file ==========="
2484
2485 test_32k() {
2486         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2487         rm -fr $DIR/$tdir
2488         trap cleanup_test32_mount EXIT
2489         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2490         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint
2491         test_mkdir -p $DIR/$tdir/d2
2492         touch $DIR/$tdir/d2/test_file || error
2493         $CHECKSTAT -t file $DIR/$tdir/ext2-mountpoint/../d2/test_file || error
2494         cleanup_test32_mount
2495 }
2496 run_test 32k "stat d32k/ext2-mountpoint/../d2/test_file ========"
2497
2498 test_32l() {
2499         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2500         rm -fr $DIR/$tdir
2501         trap cleanup_test32_mount EXIT
2502         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2503         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2504         test_mkdir -p $DIR/$tdir/d2
2505         touch $DIR/$tdir/d2/test_file
2506         cat  $DIR/$tdir/ext2-mountpoint/../d2/test_file || error
2507         cleanup_test32_mount
2508 }
2509 run_test 32l "open d32l/ext2-mountpoint/../d2/test_file ========"
2510
2511 test_32m() {
2512         rm -fr $DIR/d32m
2513         test_mkdir -p $DIR/d32m/tmp
2514         TMP_DIR=$DIR/d32m/tmp
2515         ln -s $DIR $TMP_DIR/symlink11
2516         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2517         $CHECKSTAT -t link $DIR/d32m/tmp/symlink11 || error
2518         $CHECKSTAT -t link $DIR/d32m/symlink01 || error
2519 }
2520 run_test 32m "stat d32m/symlink->tmp/symlink->lustre-root ======"
2521
2522 test_32n() {
2523         rm -fr $DIR/d32n
2524         test_mkdir -p $DIR/d32n/tmp
2525         TMP_DIR=$DIR/d32n/tmp
2526         ln -s $DIR $TMP_DIR/symlink11
2527         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2528         ls -l $DIR/d32n/tmp/symlink11  || error
2529         ls -l $DIR/d32n/symlink01 || error
2530 }
2531 run_test 32n "open d32n/symlink->tmp/symlink->lustre-root ======"
2532
2533 test_32o() {
2534         touch $DIR/$tfile
2535         test_mkdir -p $DIR/d32o/tmp
2536         TMP_DIR=$DIR/d32o/tmp
2537         ln -s $DIR/$tfile $TMP_DIR/symlink12
2538         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2539         $CHECKSTAT -t link $DIR/d32o/tmp/symlink12 || error
2540         $CHECKSTAT -t link $DIR/d32o/symlink02 || error
2541         $CHECKSTAT -t file -f $DIR/d32o/tmp/symlink12 || error
2542         $CHECKSTAT -t file -f $DIR/d32o/symlink02 || error
2543 }
2544 run_test 32o "stat d32o/symlink->tmp/symlink->lustre-root/$tfile"
2545
2546 test_32p() {
2547     log 32p_1
2548         rm -fr $DIR/d32p
2549     log 32p_2
2550         rm -f $DIR/$tfile
2551     log 32p_3
2552         touch $DIR/$tfile
2553     log 32p_4
2554         test_mkdir -p $DIR/d32p/tmp
2555     log 32p_5
2556         TMP_DIR=$DIR/d32p/tmp
2557     log 32p_6
2558         ln -s $DIR/$tfile $TMP_DIR/symlink12
2559     log 32p_7
2560         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2561     log 32p_8
2562         cat $DIR/d32p/tmp/symlink12 || error
2563     log 32p_9
2564         cat $DIR/d32p/symlink02 || error
2565     log 32p_10
2566 }
2567 run_test 32p "open d32p/symlink->tmp/symlink->lustre-root/$tfile"
2568
2569 cleanup_testdir_mount() {
2570         trap 0
2571         $UMOUNT $DIR/$tdir
2572 }
2573
2574 test_32q() {
2575         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2576         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2577         trap cleanup_testdir_mount EXIT
2578         test_mkdir -p $DIR/$tdir
2579         touch $DIR/$tdir/under_the_mount
2580         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir
2581         ls $DIR/$tdir | grep "\<under_the_mount\>" && error
2582         cleanup_testdir_mount
2583 }
2584 run_test 32q "stat follows mountpoints in Lustre (should return error)"
2585
2586 test_32r() {
2587         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2588         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2589         trap cleanup_testdir_mount EXIT
2590         test_mkdir -p $DIR/$tdir
2591         touch $DIR/$tdir/under_the_mount
2592         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir
2593         ls $DIR/$tdir | grep -q under_the_mount && error || true
2594         cleanup_testdir_mount
2595 }
2596 run_test 32r "opendir follows mountpoints in Lustre (should return error)"
2597
2598 test_33aa() {
2599         rm -f $DIR/$tfile
2600         touch $DIR/$tfile
2601         chmod 444 $DIR/$tfile
2602         chown $RUNAS_ID $DIR/$tfile
2603         log 33_1
2604         $RUNAS $OPENFILE -f O_RDWR $DIR/$tfile && error || true
2605         log 33_2
2606 }
2607 run_test 33aa "write file with mode 444 (should return error) ===="
2608
2609 test_33a() {
2610         rm -fr $DIR/d33
2611         test_mkdir -p $DIR/d33
2612         chown $RUNAS_ID $DIR/d33
2613         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $DIR/d33/f33|| error "create"
2614         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $DIR/d33/f33 && \
2615                 error "open RDWR" || true
2616 }
2617 run_test 33a "test open file(mode=0444) with O_RDWR (should return error)"
2618
2619 test_33b() {
2620         rm -fr $DIR/d33
2621         test_mkdir -p $DIR/d33
2622         chown $RUNAS_ID $DIR/d33
2623         $RUNAS $OPENFILE -f 1286739555 $DIR/d33/f33 || true
2624 }
2625 run_test 33b "test open file with malformed flags (No panic)"
2626
2627 test_33c() {
2628         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2629         local ostnum
2630         local ostname
2631         local write_bytes
2632         local all_zeros
2633
2634         remote_ost_nodsh && skip "remote OST with nodsh" && return
2635         all_zeros=:
2636         rm -fr $DIR/d33
2637         test_mkdir -p $DIR/d33
2638         # Read: 0, Write: 4, create/destroy: 2/0, stat: 1, punch: 0
2639
2640         sync
2641         for ostnum in $(seq $OSTCOUNT); do
2642                 # test-framework's OST numbering is one-based, while Lustre's
2643                 # is zero-based
2644                 ostname=$(printf "$FSNAME-OST%.4x" $((ostnum - 1)))
2645                 # Parsing llobdstat's output sucks; we could grep the /proc
2646                 # path, but that's likely to not be as portable as using the
2647                 # llobdstat utility.  So we parse lctl output instead.
2648                 write_bytes=$(do_facet ost$ostnum lctl get_param -n \
2649                         obdfilter/$ostname/stats |
2650                         awk '/^write_bytes/ {print $7}' )
2651                 echo "baseline_write_bytes@$OSTnum/$ostname=$write_bytes"
2652                 if (( ${write_bytes:-0} > 0 ))
2653                 then
2654                         all_zeros=false
2655                         break;
2656                 fi
2657         done
2658
2659         $all_zeros || return 0
2660
2661         # Write four bytes
2662         echo foo > $DIR/d33/bar
2663         # Really write them
2664         sync
2665
2666         # Total up write_bytes after writing.  We'd better find non-zeros.
2667         for ostnum in $(seq $OSTCOUNT); do
2668                 ostname=$(printf "$FSNAME-OST%.4x" $((ostnum - 1)))
2669                 write_bytes=$(do_facet ost$ostnum lctl get_param -n \
2670                         obdfilter/$ostname/stats |
2671                         awk '/^write_bytes/ {print $7}' )
2672                 echo "write_bytes@$OSTnum/$ostname=$write_bytes"
2673                 if (( ${write_bytes:-0} > 0 ))
2674                 then
2675                         all_zeros=false
2676                         break;
2677                 fi
2678         done
2679
2680         if $all_zeros
2681         then
2682                 for ostnum in $(seq $OSTCOUNT); do
2683                         ostname=$(printf "$FSNAME-OST%.4x" $((ostnum - 1)))
2684                         echo "Check that write_bytes is present in obdfilter/*/stats:"
2685                         do_facet ost$ostnum lctl get_param -n \
2686                                 obdfilter/$ostname/stats
2687                 done
2688                 error "OST not keeping write_bytes stats (b22312)"
2689         fi
2690 }
2691 run_test 33c "test llobdstat and write_bytes"
2692
2693 test_33d() {
2694         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 2 MDTs" && return
2695         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2696         local MDTIDX=1
2697         local remote_dir=$DIR/$tdir/remote_dir
2698
2699         test_mkdir -p $DIR/$tdir
2700         $LFS mkdir -i $MDTIDX $remote_dir ||
2701                 error "create remote directory failed"
2702
2703         touch $remote_dir/$tfile
2704         chmod 444 $remote_dir/$tfile
2705         chown $RUNAS_ID $remote_dir/$tfile
2706
2707         $RUNAS $OPENFILE -f O_RDWR $DIR/$tfile && error || true
2708
2709         chown $RUNAS_ID $remote_dir
2710         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $remote_dir/f33 ||
2711                                         error "create" || true
2712         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $remote_dir/f33 &&
2713                                     error "open RDWR" || true
2714         $RUNAS $OPENFILE -f 1286739555 $remote_dir/f33 || true
2715 }
2716 run_test 33d "openfile with 444 modes and malformed flags under remote dir"
2717
2718 test_33e() {
2719         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
2720
2721         mkdir $DIR/$tdir
2722
2723         $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
2724         $LFS setdirstripe -i1 -c2 $DIR/$tdir/striped_dir1
2725         mkdir $DIR/$tdir/local_dir
2726
2727         local s0_mode=$(stat -c%f $DIR/$tdir/striped_dir)
2728         local s1_mode=$(stat -c%f $DIR/$tdir/striped_dir1)
2729         local l_mode=$(stat -c%f $DIR/$tdir/local_dir)
2730
2731         [ "$l_mode" = "$s0_mode" -a "$l_mode" = "$s1_mode" ] ||
2732                 error "mkdir $l_mode striped0 $s0_mode striped1 $s1_mode"
2733
2734         rmdir $DIR/$tdir/* || error "rmdir failed"
2735
2736         umask 777
2737         $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
2738         $LFS setdirstripe -i1 -c2 $DIR/$tdir/striped_dir1
2739         mkdir $DIR/$tdir/local_dir
2740
2741         s0_mode=$(stat -c%f $DIR/$tdir/striped_dir)
2742         s1_mode=$(stat -c%f $DIR/$tdir/striped_dir1)
2743         l_mode=$(stat -c%f $DIR/$tdir/local_dir)
2744
2745         [ "$l_mode" = "$s0_mode" -a "$l_mode" = "$s1_mode" ] ||
2746                 error "mkdir $l_mode striped0 $s0_mode striped1 $s1_mode 777"
2747
2748         rmdir $DIR/$tdir/* || error "rmdir(umask 777) failed"
2749
2750         umask 000
2751         $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
2752         $LFS setdirstripe -i1 -c2 $DIR/$tdir/striped_dir1
2753         mkdir $DIR/$tdir/local_dir
2754
2755         s0_mode=$(stat -c%f $DIR/$tdir/striped_dir)
2756         s1_mode=$(stat -c%f $DIR/$tdir/striped_dir1)
2757         l_mode=$(stat -c%f $DIR/$tdir/local_dir)
2758
2759         [ "$l_mode" = "$s0_mode" -a "$l_mode" = "$s1_mode" ] ||
2760                 error "mkdir $l_mode striped0 $s0_mode striped1 $s1_mode 0"
2761 }
2762 run_test 33e "mkdir and striped directory should have same mode"
2763
2764 cleanup_33f() {
2765         trap 0
2766         do_facet $SINGLEMDS $LCTL set_param mdt.*.enable_remote_dir_gid=0
2767 }
2768
2769 test_33f() {
2770         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
2771
2772         mkdir $DIR/$tdir
2773         chmod go+rwx $DIR/$tdir
2774         do_facet $SINGLEMDS $LCTL set_param mdt.*.enable_remote_dir_gid=-1
2775         trap cleanup_33f EXIT
2776
2777         $RUNAS lfs mkdir -c$MDSCOUNT $DIR/$tdir/striped_dir ||
2778                 error "cannot create striped directory"
2779
2780         $RUNAS touch $DIR/$tdir/striped_dir/{0..16} ||
2781                 error "cannot create files in striped directory"
2782
2783         $RUNAS rm $DIR/$tdir/striped_dir/{0..16} ||
2784                 error "cannot remove files in striped directory"
2785
2786         $RUNAS rmdir $DIR/$tdir/striped_dir ||
2787                 error "cannot remove striped directory"
2788
2789         cleanup_33f
2790 }
2791 run_test 33f "nonroot user can create, access, and remove a striped directory"
2792
2793 TEST_34_SIZE=${TEST_34_SIZE:-2000000000000}
2794 test_34a() {
2795         rm -f $DIR/f34
2796         $MCREATE $DIR/f34 || error
2797         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" || error
2798         $TRUNCATE $DIR/f34 $TEST_34_SIZE || error
2799         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" || error
2800         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2801 }
2802 run_test 34a "truncate file that has not been opened ==========="
2803
2804 test_34b() {
2805         [ ! -f $DIR/f34 ] && test_34a
2806         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2807         $OPENFILE -f O_RDONLY $DIR/f34
2808         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" || error
2809         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2810 }
2811 run_test 34b "O_RDONLY opening file doesn't create objects ====="
2812
2813 test_34c() {
2814         [ ! -f $DIR/f34 ] && test_34a
2815         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2816         $OPENFILE -f O_RDWR $DIR/f34
2817         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" && error
2818         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2819 }
2820 run_test 34c "O_RDWR opening file-with-size works =============="
2821
2822 test_34d() {
2823         [ ! -f $DIR/f34 ] && test_34a
2824         dd if=/dev/zero of=$DIR/f34 conv=notrunc bs=4k count=1 || error
2825         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2826         rm $DIR/f34
2827 }
2828 run_test 34d "write to sparse file ============================="
2829
2830 test_34e() {
2831         rm -f $DIR/f34e
2832         $MCREATE $DIR/f34e || error
2833         $TRUNCATE $DIR/f34e 1000 || error
2834         $CHECKSTAT -s 1000 $DIR/f34e || error
2835         $OPENFILE -f O_RDWR $DIR/f34e
2836         $CHECKSTAT -s 1000 $DIR/f34e || error
2837 }
2838 run_test 34e "create objects, some with size and some without =="
2839
2840 test_34f() { # bug 6242, 6243
2841         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2842         SIZE34F=48000
2843         rm -f $DIR/f34f
2844         $MCREATE $DIR/f34f || error
2845         $TRUNCATE $DIR/f34f $SIZE34F || error "truncating $DIR/f3f to $SIZE34F"
2846         dd if=$DIR/f34f of=$TMP/f34f
2847         $CHECKSTAT -s $SIZE34F $TMP/f34f || error "$TMP/f34f not $SIZE34F bytes"
2848         dd if=/dev/zero of=$TMP/f34fzero bs=$SIZE34F count=1
2849         cmp $DIR/f34f $TMP/f34fzero || error "$DIR/f34f not all zero"
2850         cmp $TMP/f34f $TMP/f34fzero || error "$TMP/f34f not all zero"
2851         rm $TMP/f34f $TMP/f34fzero $DIR/f34f
2852 }
2853 run_test 34f "read from a file with no objects until EOF ======="
2854
2855 test_34g() {
2856         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2857         dd if=/dev/zero of=$DIR/$tfile bs=1 count=100 seek=$TEST_34_SIZE || error
2858         $TRUNCATE $DIR/$tfile $((TEST_34_SIZE / 2))|| error
2859         $CHECKSTAT -s $((TEST_34_SIZE / 2)) $DIR/$tfile || error "truncate failed"
2860         cancel_lru_locks osc
2861         $CHECKSTAT -s $((TEST_34_SIZE / 2)) $DIR/$tfile || \
2862                 error "wrong size after lock cancel"
2863
2864         $TRUNCATE $DIR/$tfile $TEST_34_SIZE || error
2865         $CHECKSTAT -s $TEST_34_SIZE $DIR/$tfile || \
2866                 error "expanding truncate failed"
2867         cancel_lru_locks osc
2868         $CHECKSTAT -s $TEST_34_SIZE $DIR/$tfile || \
2869                 error "wrong expanded size after lock cancel"
2870 }
2871 run_test 34g "truncate long file ==============================="
2872
2873 test_34h() {
2874         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2875         local gid=10
2876         local sz=1000
2877
2878         dd if=/dev/zero of=$DIR/$tfile bs=1M count=10 || error
2879         sync # Flush the cache so that multiop below does not block on cache
2880              # flush when getting the group lock
2881         $MULTIOP $DIR/$tfile OG${gid}T${sz}g${gid}c &
2882         MULTIPID=$!
2883
2884         # Since just timed wait is not good enough, let's do a sync write
2885         # that way we are sure enough time for a roundtrip + processing
2886         # passed + 2 seconds of extra margin.
2887         dd if=/dev/zero of=$DIR/${tfile}-1 bs=4096 oflag=direct count=1
2888         rm $DIR/${tfile}-1
2889         sleep 2
2890
2891         if [[ `ps h -o comm -p $MULTIPID` == "multiop" ]]; then
2892                 error "Multiop blocked on ftruncate, pid=$MULTIPID"
2893                 kill -9 $MULTIPID
2894         fi
2895         wait $MULTIPID
2896         local nsz=`stat -c %s $DIR/$tfile`
2897         [[ $nsz == $sz ]] || error "New size wrong $nsz != $sz"
2898 }
2899 run_test 34h "ftruncate file under grouplock should not block"
2900
2901 test_35a() {
2902         cp /bin/sh $DIR/f35a
2903         chmod 444 $DIR/f35a
2904         chown $RUNAS_ID $DIR/f35a
2905         $RUNAS $DIR/f35a && error || true
2906         rm $DIR/f35a
2907 }
2908 run_test 35a "exec file with mode 444 (should return and not leak) ====="
2909
2910 test_36a() {
2911         rm -f $DIR/f36
2912         utime $DIR/f36 || error
2913 }
2914 run_test 36a "MDS utime check (mknod, utime) ==================="
2915
2916 test_36b() {
2917         echo "" > $DIR/f36
2918         utime $DIR/f36 || error
2919 }
2920 run_test 36b "OST utime check (open, utime) ===================="
2921
2922 test_36c() {
2923         rm -f $DIR/d36/f36
2924         test_mkdir $DIR/d36
2925         chown $RUNAS_ID $DIR/d36
2926         $RUNAS utime $DIR/d36/f36 || error
2927 }
2928 run_test 36c "non-root MDS utime check (mknod, utime) =========="
2929
2930 test_36d() {
2931         [ ! -d $DIR/d36 ] && test_36c
2932         echo "" > $DIR/d36/f36
2933         $RUNAS utime $DIR/d36/f36 || error
2934 }
2935 run_test 36d "non-root OST utime check (open, utime) ==========="
2936
2937 test_36e() {
2938         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID -- skipping" && return
2939         test_mkdir -p $DIR/$tdir
2940         touch $DIR/$tdir/$tfile
2941         $RUNAS utime $DIR/$tdir/$tfile && \
2942                 error "utime worked, expected failure" || true
2943 }
2944 run_test 36e "utime on non-owned file (should return error) ===="
2945
2946 subr_36fh() {
2947         local fl="$1"
2948         local LANG_SAVE=$LANG
2949         local LC_LANG_SAVE=$LC_LANG
2950         export LANG=C LC_LANG=C # for date language
2951
2952         DATESTR="Dec 20  2000"
2953         test_mkdir -p $DIR/$tdir
2954         lctl set_param fail_loc=$fl
2955         date; date +%s
2956         cp /etc/hosts $DIR/$tdir/$tfile
2957         sync & # write RPC generated with "current" inode timestamp, but delayed
2958         sleep 1
2959         touch --date="$DATESTR" $DIR/$tdir/$tfile # setattr timestamp in past
2960         LS_BEFORE="`ls -l $DIR/$tdir/$tfile`" # old timestamp from client cache
2961         cancel_lru_locks osc
2962         LS_AFTER="`ls -l $DIR/$tdir/$tfile`"  # timestamp from OST object
2963         date; date +%s
2964         [ "$LS_BEFORE" != "$LS_AFTER" ] && \
2965                 echo "BEFORE: $LS_BEFORE" && \
2966                 echo "AFTER : $LS_AFTER" && \
2967                 echo "WANT  : $DATESTR" && \
2968                 error "$DIR/$tdir/$tfile timestamps changed" || true
2969
2970         export LANG=$LANG_SAVE LC_LANG=$LC_LANG_SAVE
2971 }
2972
2973 test_36f() {
2974         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2975         #define OBD_FAIL_OST_BRW_PAUSE_BULK 0x214
2976         subr_36fh "0x80000214"
2977 }
2978 run_test 36f "utime on file racing with OST BRW write =========="
2979
2980 test_36g() {
2981         remote_ost_nodsh && skip "remote OST with nodsh" && return
2982         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2983         local fmd_max_age
2984         local fmd_before
2985         local fmd_after
2986
2987         test_mkdir -p $DIR/$tdir
2988         fmd_max_age=$(do_facet ost1 \
2989                 "lctl get_param -n obdfilter.*.client_cache_seconds 2> /dev/null | \
2990                 head -n 1")
2991
2992         fmd_before=$(do_facet ost1 \
2993                 "awk '/ll_fmd_cache/ {print \\\$2}' /proc/slabinfo")
2994         touch $DIR/$tdir/$tfile
2995         sleep $((fmd_max_age + 12))
2996         fmd_after=$(do_facet ost1 \
2997                 "awk '/ll_fmd_cache/ {print \\\$2}' /proc/slabinfo")
2998
2999         echo "fmd_before: $fmd_before"
3000         echo "fmd_after: $fmd_after"
3001         [[ $fmd_after -gt $fmd_before ]] &&
3002                 echo "AFTER: $fmd_after > BEFORE: $fmd_before" &&
3003                 error "fmd didn't expire after ping" || true
3004 }
3005 run_test 36g "filter mod data cache expiry ====================="
3006
3007 test_36h() {
3008         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3009         #define OBD_FAIL_OST_BRW_PAUSE_BULK2 0x227
3010         subr_36fh "0x80000227"
3011 }
3012 run_test 36h "utime on file racing with OST BRW write =========="
3013
3014 test_36i() {
3015         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
3016
3017         test_mkdir $DIR/$tdir
3018         $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/striped_dir
3019
3020         local mtime=$(stat -c%Y $DIR/$tdir/striped_dir)
3021         local new_mtime=$((mtime + 200))
3022
3023         #change Modify time of striped dir
3024         touch -m -d @$new_mtime $DIR/$tdir/striped_dir ||
3025                         error "change mtime failed"
3026
3027         local got=$(stat -c%Y $DIR/$tdir/striped_dir)
3028
3029         [ "$new_mtime" = "$got" ] || error "expect $new_mtime got $got"
3030 }
3031 run_test 36i "change mtime on striped directory"
3032
3033 # test_37 - duplicate with tests 32q 32r
3034
3035 test_38() {
3036         local file=$DIR/$tfile
3037         touch $file
3038         openfile -f O_DIRECTORY $file
3039         local RC=$?
3040         local ENOTDIR=20
3041         [ $RC -eq 0 ] && error "opened file $file with O_DIRECTORY" || true
3042         [ $RC -eq $ENOTDIR ] || error "error $RC should be ENOTDIR ($ENOTDIR)"
3043 }
3044 run_test 38 "open a regular file with O_DIRECTORY should return -ENOTDIR ==="
3045
3046 test_39() {
3047         touch $DIR/$tfile
3048         touch $DIR/${tfile}2
3049 #       ls -l  $DIR/$tfile $DIR/${tfile}2
3050 #       ls -lu  $DIR/$tfile $DIR/${tfile}2
3051 #       ls -lc  $DIR/$tfile $DIR/${tfile}2
3052         sleep 2
3053         $OPENFILE -f O_CREAT:O_TRUNC:O_WRONLY $DIR/${tfile}2
3054         if [ ! $DIR/${tfile}2 -nt $DIR/$tfile ]; then
3055                 echo "mtime"
3056                 ls -l --full-time $DIR/$tfile $DIR/${tfile}2
3057                 echo "atime"
3058                 ls -lu --full-time $DIR/$tfile $DIR/${tfile}2
3059                 echo "ctime"
3060                 ls -lc --full-time $DIR/$tfile $DIR/${tfile}2
3061                 error "O_TRUNC didn't change timestamps"
3062         fi
3063 }
3064 run_test 39 "mtime changed on create ==========================="
3065
3066 test_39b() {
3067         test_mkdir -p -c1 $DIR/$tdir
3068         cp -p /etc/passwd $DIR/$tdir/fopen
3069         cp -p /etc/passwd $DIR/$tdir/flink
3070         cp -p /etc/passwd $DIR/$tdir/funlink
3071         cp -p /etc/passwd $DIR/$tdir/frename
3072         ln $DIR/$tdir/funlink $DIR/$tdir/funlink2
3073
3074         sleep 1
3075         echo "aaaaaa" >> $DIR/$tdir/fopen
3076         echo "aaaaaa" >> $DIR/$tdir/flink
3077         echo "aaaaaa" >> $DIR/$tdir/funlink
3078         echo "aaaaaa" >> $DIR/$tdir/frename
3079
3080         local open_new=`stat -c %Y $DIR/$tdir/fopen`
3081         local link_new=`stat -c %Y $DIR/$tdir/flink`
3082         local unlink_new=`stat -c %Y $DIR/$tdir/funlink`
3083         local rename_new=`stat -c %Y $DIR/$tdir/frename`
3084
3085         cat $DIR/$tdir/fopen > /dev/null
3086         ln $DIR/$tdir/flink $DIR/$tdir/flink2
3087         rm -f $DIR/$tdir/funlink2
3088         mv -f $DIR/$tdir/frename $DIR/$tdir/frename2
3089
3090         for (( i=0; i < 2; i++ )) ; do
3091                 local open_new2=`stat -c %Y $DIR/$tdir/fopen`
3092                 local link_new2=`stat -c %Y $DIR/$tdir/flink`
3093                 local unlink_new2=`stat -c %Y $DIR/$tdir/funlink`
3094                 local rename_new2=`stat -c %Y $DIR/$tdir/frename2`
3095
3096                 [ $open_new2 -eq $open_new ] || error "open file reverses mtime"
3097                 [ $link_new2 -eq $link_new ] || error "link file reverses mtime"
3098                 [ $unlink_new2 -eq $unlink_new ] || error "unlink file reverses mtime"
3099                 [ $rename_new2 -eq $rename_new ] || error "rename file reverses mtime"
3100
3101                 cancel_lru_locks osc
3102                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3103         done
3104 }
3105 run_test 39b "mtime change on open, link, unlink, rename  ======"
3106
3107 # this should be set to past
3108 TEST_39_MTIME=`date -d "1 year ago" +%s`
3109
3110 # bug 11063
3111 test_39c() {
3112         touch $DIR1/$tfile
3113         sleep 2
3114         local mtime0=`stat -c %Y $DIR1/$tfile`
3115
3116         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3117         local mtime1=`stat -c %Y $DIR1/$tfile`
3118         [ "$mtime1" = $TEST_39_MTIME ] || \
3119                 error "mtime is not set to past: $mtime1, should be $TEST_39_MTIME"
3120
3121         local d1=`date +%s`
3122         echo hello >> $DIR1/$tfile
3123         local d2=`date +%s`
3124         local mtime2=`stat -c %Y $DIR1/$tfile`
3125         [ "$mtime2" -ge "$d1" ] && [ "$mtime2" -le "$d2" ] || \
3126                 error "mtime is not updated on write: $d1 <= $mtime2 <= $d2"
3127
3128         mv $DIR1/$tfile $DIR1/$tfile-1
3129
3130         for (( i=0; i < 2; i++ )) ; do
3131                 local mtime3=`stat -c %Y $DIR1/$tfile-1`
3132                 [ "$mtime2" = "$mtime3" ] || \
3133                         error "mtime ($mtime2) changed (to $mtime3) on rename"
3134
3135                 cancel_lru_locks osc
3136                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3137         done
3138 }
3139 run_test 39c "mtime change on rename ==========================="
3140
3141 # bug 21114
3142 test_39d() {
3143         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3144         touch $DIR1/$tfile
3145
3146         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3147
3148         for (( i=0; i < 2; i++ )) ; do
3149                 local mtime=`stat -c %Y $DIR1/$tfile`
3150                 [ $mtime = $TEST_39_MTIME ] || \
3151                         error "mtime($mtime) is not set to $TEST_39_MTIME"
3152
3153                 cancel_lru_locks osc
3154                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3155         done
3156 }
3157 run_test 39d "create, utime, stat =============================="
3158
3159 # bug 21114
3160 test_39e() {
3161         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3162         touch $DIR1/$tfile
3163         local mtime1=`stat -c %Y $DIR1/$tfile`
3164
3165         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3166
3167         for (( i=0; i < 2; i++ )) ; do
3168                 local mtime2=`stat -c %Y $DIR1/$tfile`
3169                 [ $mtime2 = $TEST_39_MTIME ] || \
3170                         error "mtime($mtime2) is not set to $TEST_39_MTIME"
3171
3172                 cancel_lru_locks osc
3173                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3174         done
3175 }
3176 run_test 39e "create, stat, utime, stat ========================"
3177
3178 # bug 21114
3179 test_39f() {
3180         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3181         touch $DIR1/$tfile
3182         mtime1=`stat -c %Y $DIR1/$tfile`
3183
3184         sleep 2
3185         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3186
3187         for (( i=0; i < 2; i++ )) ; do
3188                 local mtime2=`stat -c %Y $DIR1/$tfile`
3189                 [ $mtime2 = $TEST_39_MTIME ] || \
3190                         error "mtime($mtime2) is not set to $TEST_39_MTIME"
3191
3192                 cancel_lru_locks osc
3193                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3194         done
3195 }
3196 run_test 39f "create, stat, sleep, utime, stat ================="
3197
3198 # bug 11063
3199 test_39g() {
3200         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3201         echo hello >> $DIR1/$tfile
3202         local mtime1=`stat -c %Y $DIR1/$tfile`
3203
3204         sleep 2
3205         chmod o+r $DIR1/$tfile
3206
3207         for (( i=0; i < 2; i++ )) ; do
3208                 local mtime2=`stat -c %Y $DIR1/$tfile`
3209                 [ "$mtime1" = "$mtime2" ] || \
3210                         error "lost mtime: $mtime2, should be $mtime1"
3211
3212                 cancel_lru_locks osc
3213                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3214         done
3215 }
3216 run_test 39g "write, chmod, stat ==============================="
3217
3218 # bug 11063
3219 test_39h() {
3220         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3221         touch $DIR1/$tfile
3222         sleep 1
3223
3224         local d1=`date`
3225         echo hello >> $DIR1/$tfile
3226         local mtime1=`stat -c %Y $DIR1/$tfile`
3227
3228         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3229         local d2=`date`
3230         if [ "$d1" != "$d2" ]; then
3231                 echo "write and touch not within one second"
3232         else
3233                 for (( i=0; i < 2; i++ )) ; do
3234                         local mtime2=`stat -c %Y $DIR1/$tfile`
3235                         [ "$mtime2" = $TEST_39_MTIME ] || \
3236                                 error "lost mtime: $mtime2, should be $TEST_39_MTIME"
3237
3238                         cancel_lru_locks osc
3239                         if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3240                 done
3241         fi
3242 }
3243 run_test 39h "write, utime within one second, stat ============="
3244
3245 test_39i() {
3246         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3247         touch $DIR1/$tfile
3248         sleep 1
3249
3250         echo hello >> $DIR1/$tfile
3251         local mtime1=`stat -c %Y $DIR1/$tfile`
3252
3253         mv $DIR1/$tfile $DIR1/$tfile-1
3254
3255         for (( i=0; i < 2; i++ )) ; do
3256                 local mtime2=`stat -c %Y $DIR1/$tfile-1`
3257
3258                 [ "$mtime1" = "$mtime2" ] || \
3259                         error "lost mtime: $mtime2, should be $mtime1"
3260
3261                 cancel_lru_locks osc
3262                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3263         done
3264 }
3265 run_test 39i "write, rename, stat =============================="
3266
3267 test_39j() {
3268         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3269         start_full_debug_logging
3270         touch $DIR1/$tfile
3271         sleep 1
3272
3273         #define OBD_FAIL_OSC_DELAY_SETTIME       0x412
3274         lctl set_param fail_loc=0x80000412
3275         multiop_bg_pause $DIR1/$tfile oO_RDWR:w2097152_c ||
3276                 error "multiop failed"
3277         local multipid=$!
3278         local mtime1=`stat -c %Y $DIR1/$tfile`
3279
3280         mv $DIR1/$tfile $DIR1/$tfile-1
3281
3282         kill -USR1 $multipid
3283         wait $multipid || error "multiop close failed"
3284
3285         for (( i=0; i < 2; i++ )) ; do
3286                 local mtime2=`stat -c %Y $DIR1/$tfile-1`
3287                 [ "$mtime1" = "$mtime2" ] ||
3288                         error "mtime is lost on close: $mtime2, " \
3289                               "should be $mtime1"
3290
3291                 cancel_lru_locks osc
3292                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3293         done
3294         lctl set_param fail_loc=0
3295         stop_full_debug_logging
3296 }
3297 run_test 39j "write, rename, close, stat ======================="
3298
3299 test_39k() {
3300         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3301         touch $DIR1/$tfile
3302         sleep 1
3303
3304         multiop_bg_pause $DIR1/$tfile oO_RDWR:w2097152_c || error "multiop failed"
3305         local multipid=$!
3306         local mtime1=`stat -c %Y $DIR1/$tfile`
3307
3308         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3309
3310         kill -USR1 $multipid
3311         wait $multipid || error "multiop close failed"
3312
3313         for (( i=0; i < 2; i++ )) ; do
3314                 local mtime2=`stat -c %Y $DIR1/$tfile`
3315
3316                 [ "$mtime2" = $TEST_39_MTIME ] || \
3317                         error "mtime is lost on close: $mtime2, should be $TEST_39_MTIME"
3318
3319                 cancel_lru_locks osc
3320                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3321         done
3322 }
3323 run_test 39k "write, utime, close, stat ========================"
3324
3325 # this should be set to future
3326 TEST_39_ATIME=`date -d "1 year" +%s`
3327
3328 test_39l() {
3329         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3330         remote_mds_nodsh && skip "remote MDS with nodsh" && return
3331         local atime_diff=$(do_facet $SINGLEMDS \
3332                                 lctl get_param -n mdd.*MDT0000*.atime_diff)
3333         rm -rf $DIR/$tdir
3334         mkdir -p $DIR/$tdir
3335
3336         # test setting directory atime to future
3337         touch -a -d @$TEST_39_ATIME $DIR/$tdir
3338         local atime=$(stat -c %X $DIR/$tdir)
3339         [ "$atime" = $TEST_39_ATIME ] ||
3340                 error "atime is not set to future: $atime, $TEST_39_ATIME"
3341
3342         # test setting directory atime from future to now
3343         local now=$(date +%s)
3344         touch -a -d @$now $DIR/$tdir
3345
3346         atime=$(stat -c %X $DIR/$tdir)
3347         [ "$atime" -eq "$now"  ] ||
3348                 error "atime is not updated from future: $atime, $now"
3349
3350         do_facet $SINGLEMDS lctl set_param -n mdd.*MDT0000*.atime_diff=2
3351         sleep 3
3352
3353         # test setting directory atime when now > dir atime + atime_diff
3354         local d1=$(date +%s)
3355         ls $DIR/$tdir
3356         local d2=$(date +%s)
3357         cancel_lru_locks mdc
3358         atime=$(stat -c %X $DIR/$tdir)
3359         [ "$atime" -ge "$d1" -a "$atime" -le "$d2" ] ||
3360                 error "atime is not updated  : $atime, should be $d2"
3361
3362         do_facet $SINGLEMDS lctl set_param -n mdd.*MDT0000*.atime_diff=60
3363         sleep 3
3364
3365         # test not setting directory atime when now < dir atime + atime_diff
3366         ls $DIR/$tdir
3367         cancel_lru_locks mdc
3368         atime=$(stat -c %X $DIR/$tdir)
3369         [ "$atime" -ge "$d1" -a "$atime" -le "$d2" ] ||
3370                 error "atime is updated to $atime, should remain $d1<atime<$d2"
3371
3372         do_facet $SINGLEMDS \
3373                 lctl set_param -n mdd.*MDT0000*.atime_diff=$atime_diff
3374 }
3375 run_test 39l "directory atime update ==========================="
3376
3377 test_39m() {
3378         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3379         touch $DIR1/$tfile
3380         sleep 2
3381         local far_past_mtime=$(date -d "May 29 1953" +%s)
3382         local far_past_atime=$(date -d "Dec 17 1903" +%s)
3383
3384         touch -m -d @$far_past_mtime $DIR1/$tfile
3385         touch -a -d @$far_past_atime $DIR1/$tfile
3386
3387         for (( i=0; i < 2; i++ )) ; do
3388                 local timestamps=$(stat -c "%X %Y" $DIR1/$tfile)
3389                 [ "$timestamps" = "$far_past_atime $far_past_mtime" ] || \
3390                         error "atime or mtime set incorrectly"
3391
3392                 cancel_lru_locks osc
3393                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3394         done
3395 }
3396 run_test 39m "test atime and mtime before 1970"
3397
3398 test_39n() { # LU-3832
3399         local atime_diff=$(do_facet $SINGLEMDS \
3400                 lctl get_param -n mdd.*MDT0000*.atime_diff)
3401         local atime0
3402         local atime1
3403         local atime2
3404
3405         do_facet $SINGLEMDS lctl set_param -n mdd.*MDT0000*.atime_diff=1
3406
3407         rm -rf $DIR/$tfile
3408         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 status=noxfer
3409         atime0=$(stat -c %X $DIR/$tfile)
3410
3411         sleep 5
3412         $MULTIOP $DIR/$tfile oO_RDONLY:O_NOATIME:r4096c
3413         atime1=$(stat -c %X $DIR/$tfile)
3414
3415         sleep 5
3416         cancel_lru_locks mdc
3417         cancel_lru_locks osc
3418         $MULTIOP $DIR/$tfile oO_RDONLY:O_NOATIME:r4096c
3419         atime2=$(stat -c %X $DIR/$tfile)
3420
3421         do_facet $SINGLEMDS \
3422                 lctl set_param -n mdd.*MDT0000*.atime_diff=$atime_diff
3423
3424         [ "$atime0" -eq "$atime1" ] || error "atime0 $atime0 != atime1 $atime1"
3425         [ "$atime1" -eq "$atime2" ] || error "atime0 $atime0 != atime1 $atime1"
3426 }
3427 run_test 39n "check that O_NOATIME is honored"
3428
3429 test_39o() {
3430         TESTDIR=$DIR/$tdir/$tfile
3431         [ -e $TESTDIR ] && rm -rf $TESTDIR
3432         mkdir -p $TESTDIR
3433         cd $TESTDIR
3434         links1=2
3435         ls
3436         mkdir a b
3437         ls
3438         links2=$(stat -c %h .)
3439         [ $(($links1 + 2)) != $links2 ] &&
3440                 error "wrong links count $(($links1 + 2)) != $links2"
3441         rmdir b
3442         links3=$(stat -c %h .)
3443         [ $(($links1 + 1)) != $links3 ] &&
3444                 error "wrong links count $links1 != $links3"
3445         return 0
3446 }
3447 run_test 39o "directory cached attributes updated after create ========"
3448
3449 test_39p() {
3450         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 2 MDTs" && return
3451         local MDTIDX=1
3452         TESTDIR=$DIR/$tdir/$tfile
3453         [ -e $TESTDIR ] && rm -rf $TESTDIR
3454         test_mkdir -p $TESTDIR
3455         cd $TESTDIR
3456         links1=2
3457         ls
3458         $LFS mkdir -i $MDTIDX $TESTDIR/remote_dir1
3459         $LFS mkdir -i $MDTIDX $TESTDIR/remote_dir2
3460         ls
3461         links2=$(stat -c %h .)
3462         [ $(($links1 + 2)) != $links2 ] &&
3463                 error "wrong links count $(($links1 + 2)) != $links2"
3464         rmdir remote_dir2
3465         links3=$(stat -c %h .)
3466         [ $(($links1 + 1)) != $links3 ] &&
3467                 error "wrong links count $links1 != $links3"
3468         return 0
3469 }
3470 run_test 39p "remote directory cached attributes updated after create ========"
3471
3472
3473 test_39p() { # LU-8041
3474         local testdir=$DIR/$tdir
3475         mkdir -p $testdir
3476         multiop_bg_pause $testdir D_c || error "multiop failed"
3477         local multipid=$!
3478         cancel_lru_locks mdc
3479         kill -USR1 $multipid
3480         local atime=$(stat -c %X $testdir)
3481         [ "$atime" -ne 0 ] || error "atime is zero"
3482 }
3483 run_test 39p "close won't zero out atime"
3484
3485 test_40() {
3486         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1
3487         $RUNAS $OPENFILE -f O_WRONLY:O_TRUNC $DIR/$tfile &&
3488                 error "openfile O_WRONLY:O_TRUNC $tfile failed"
3489         $CHECKSTAT -t file -s 4096 $DIR/$tfile ||
3490                 error "$tfile is not 4096 bytes in size"
3491 }
3492 run_test 40 "failed open(O_TRUNC) doesn't truncate ============="
3493
3494 test_41() {
3495         # bug 1553
3496         small_write $DIR/f41 18
3497 }
3498 run_test 41 "test small file write + fstat ====================="
3499
3500 count_ost_writes() {
3501         lctl get_param -n osc.*.stats |
3502                 awk -vwrites=0 '/ost_write/ { writes += $2 } \
3503                         END { printf("%0.0f", writes) }'
3504 }
3505
3506 # decent default
3507 WRITEBACK_SAVE=500
3508 DIRTY_RATIO_SAVE=40
3509 MAX_DIRTY_RATIO=50
3510 BG_DIRTY_RATIO_SAVE=10
3511 MAX_BG_DIRTY_RATIO=25
3512
3513 start_writeback() {
3514         trap 0
3515         # in 2.6, restore /proc/sys/vm/dirty_writeback_centisecs,
3516         # dirty_ratio, dirty_background_ratio
3517         if [ -f /proc/sys/vm/dirty_writeback_centisecs ]; then
3518                 sysctl -w vm.dirty_writeback_centisecs=$WRITEBACK_SAVE
3519                 sysctl -w vm.dirty_background_ratio=$BG_DIRTY_RATIO_SAVE
3520                 sysctl -w vm.dirty_ratio=$DIRTY_RATIO_SAVE
3521         else
3522                 # if file not here, we are a 2.4 kernel
3523                 kill -CONT `pidof kupdated`
3524         fi
3525 }
3526
3527 stop_writeback() {
3528         # setup the trap first, so someone cannot exit the test at the
3529         # exact wrong time and mess up a machine
3530         trap start_writeback EXIT
3531         # in 2.6, save and 0 /proc/sys/vm/dirty_writeback_centisecs
3532         if [ -f /proc/sys/vm/dirty_writeback_centisecs ]; then
3533                 WRITEBACK_SAVE=`sysctl -n vm.dirty_writeback_centisecs`
3534                 sysctl -w vm.dirty_writeback_centisecs=0
3535                 sysctl -w vm.dirty_writeback_centisecs=0
3536                 # save and increase /proc/sys/vm/dirty_ratio
3537                 DIRTY_RATIO_SAVE=`sysctl -n vm.dirty_ratio`
3538                 sysctl -w vm.dirty_ratio=$MAX_DIRTY_RATIO
3539                 # save and increase /proc/sys/vm/dirty_background_ratio
3540                 BG_DIRTY_RATIO_SAVE=`sysctl -n vm.dirty_background_ratio`
3541                 sysctl -w vm.dirty_background_ratio=$MAX_BG_DIRTY_RATIO
3542         else
3543                 # if file not here, we are a 2.4 kernel
3544                 kill -STOP `pidof kupdated`
3545         fi
3546 }
3547
3548 # ensure that all stripes have some grant before we test client-side cache
3549 setup_test42() {
3550         for i in `seq -f $DIR/f42-%g 1 $OSTCOUNT`; do
3551                 dd if=/dev/zero of=$i bs=4k count=1
3552                 rm $i
3553         done
3554 }
3555
3556 # Tests 42* verify that our behaviour is correct WRT caching, file closure,
3557 # file truncation, and file removal.
3558 test_42a() {
3559         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3560         setup_test42
3561         cancel_lru_locks osc
3562         stop_writeback
3563         sync; sleep 1; sync # just to be safe
3564         BEFOREWRITES=`count_ost_writes`
3565         lctl get_param -n osc.*[oO][sS][cC][_-]*.cur_grant_bytes | grep "[0-9]"
3566         dd if=/dev/zero of=$DIR/f42a bs=1024 count=100
3567         AFTERWRITES=`count_ost_writes`
3568         [ $BEFOREWRITES -eq $AFTERWRITES ] || \
3569                 error "$BEFOREWRITES < $AFTERWRITES"
3570         start_writeback
3571 }
3572 run_test 42a "ensure that we don't flush on close =============="
3573
3574 test_42b() {
3575         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3576         setup_test42
3577         cancel_lru_locks osc
3578         stop_writeback
3579         sync
3580         dd if=/dev/zero of=$DIR/f42b bs=1024 count=100
3581         BEFOREWRITES=$(count_ost_writes)
3582         $MUNLINK $DIR/f42b || error "$MUNLINK $DIR/f42b: $?"
3583         AFTERWRITES=$(count_ost_writes)
3584         if [[ $BEFOREWRITES -lt $AFTERWRITES ]]; then
3585                 error "$BEFOREWRITES < $AFTERWRITES on unlink"
3586         fi
3587         BEFOREWRITES=$(count_ost_writes)
3588         sync || error "sync: $?"
3589         AFTERWRITES=$(count_ost_writes)
3590         if [[ $BEFOREWRITES -lt $AFTERWRITES ]]; then
3591                 error "$BEFOREWRITES < $AFTERWRITES on sync"
3592         fi
3593         dmesg | grep 'error from obd_brw_async' && error 'error writing back'
3594         start_writeback
3595         return 0
3596 }
3597 run_test 42b "test destroy of file with cached dirty data ======"
3598
3599 # if these tests just want to test the effect of truncation,
3600 # they have to be very careful.  consider:
3601 # - the first open gets a {0,EOF}PR lock
3602 # - the first write conflicts and gets a {0, count-1}PW
3603 # - the rest of the writes are under {count,EOF}PW
3604 # - the open for truncate tries to match a {0,EOF}PR
3605 #   for the filesize and cancels the PWs.
3606 # any number of fixes (don't get {0,EOF} on open, match
3607 # composite locks, do smarter file size management) fix
3608 # this, but for now we want these tests to verify that
3609 # the cancellation with truncate intent works, so we
3610 # start the file with a full-file pw lock to match against
3611 # until the truncate.
3612 trunc_test() {
3613         test=$1
3614         file=$DIR/$test
3615         offset=$2
3616         cancel_lru_locks osc
3617         stop_writeback
3618         # prime the file with 0,EOF PW to match
3619         touch $file
3620         $TRUNCATE $file 0
3621         sync; sync
3622         # now the real test..
3623         dd if=/dev/zero of=$file bs=1024 count=100
3624         BEFOREWRITES=`count_ost_writes`
3625         $TRUNCATE $file $offset
3626         cancel_lru_locks osc
3627         AFTERWRITES=`count_ost_writes`
3628         start_writeback
3629 }
3630
3631 test_42c() {
3632         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3633         trunc_test 42c 1024
3634         [ $BEFOREWRITES -eq $AFTERWRITES ] && \
3635             error "beforewrites $BEFOREWRITES == afterwrites $AFTERWRITES on truncate"
3636         rm $file
3637 }
3638 run_test 42c "test partial truncate of file with cached dirty data"
3639
3640 test_42d() {
3641         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3642         trunc_test 42d 0
3643         [ $BEFOREWRITES -eq $AFTERWRITES ] || \
3644             error "beforewrites $BEFOREWRITES != afterwrites $AFTERWRITES on truncate"
3645         rm $file
3646 }
3647 run_test 42d "test complete truncate of file with cached dirty data"
3648
3649 test_42e() { # bug22074
3650         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3651         local TDIR=$DIR/${tdir}e
3652         local pagesz=$(page_size)
3653         local pages=16 # hardcoded 16 pages, don't change it.
3654         local files=$((OSTCOUNT * 500)) # hopefully 500 files on each OST
3655         local proc_osc0="osc.${FSNAME}-OST0000-osc-[^MDT]*"
3656         local max_dirty_mb
3657         local warmup_files
3658
3659         test_mkdir -p $DIR/${tdir}e
3660         $SETSTRIPE -c 1 $TDIR
3661         createmany -o $TDIR/f $files
3662
3663         max_dirty_mb=$($LCTL get_param -n $proc_osc0/max_dirty_mb)
3664
3665         # we assume that with $OSTCOUNT files, at least one of them will
3666         # be allocated on OST0.
3667         warmup_files=$((OSTCOUNT * max_dirty_mb))
3668         createmany -o $TDIR/w $warmup_files
3669
3670         # write a large amount of data into one file and sync, to get good
3671         # avail_grant number from OST.
3672         for ((i=0; i<$warmup_files; i++)); do
3673                 idx=$($GETSTRIPE -i $TDIR/w$i)
3674                 [ $idx -ne 0 ] && continue
3675                 dd if=/dev/zero of=$TDIR/w$i bs="$max_dirty_mb"M count=1
3676                 break
3677         done
3678         [[ $i -gt $warmup_files ]] && error "OST0 is still cold"
3679         sync
3680         $LCTL get_param $proc_osc0/cur_dirty_bytes
3681         $LCTL get_param $proc_osc0/cur_grant_bytes
3682
3683         # create as much dirty pages as we can while not to trigger the actual
3684         # RPCs directly. but depends on the env, VFS may trigger flush during this
3685         # period, hopefully we are good.
3686         for ((i=0; i<$warmup_files; i++)); do
3687                 idx=$($GETSTRIPE -i $TDIR/w$i)
3688                 [ $idx -ne 0 ] && continue
3689                 dd if=/dev/zero of=$TDIR/w$i bs=1M count=1 2>/dev/null
3690         done
3691         $LCTL get_param $proc_osc0/cur_dirty_bytes
3692         $LCTL get_param $proc_osc0/cur_grant_bytes
3693
3694         # perform the real test
3695         $LCTL set_param $proc_osc0/rpc_stats 0
3696         for ((;i<$files; i++)); do
3697                 [ $($GETSTRIPE -i $TDIR/f$i) -eq 0 ] || continue
3698                 dd if=/dev/zero of=$TDIR/f$i bs=$pagesz count=$pages 2>/dev/null
3699         done
3700         sync
3701         $LCTL get_param $proc_osc0/rpc_stats
3702
3703         local percent=0
3704         local have_ppr=false
3705         $LCTL get_param $proc_osc0/rpc_stats |
3706                 while read PPR RRPC RPCT RCUM BAR WRPC WPCT WCUM; do
3707                         # skip lines until we are at the RPC histogram data
3708                         [ "$PPR" == "pages" ] && have_ppr=true && continue
3709                         $have_ppr || continue
3710
3711                         # we only want the percent stat for < 16 pages
3712                         [[ $(echo $PPR | tr -d ':') -ge $pages ]] && break
3713
3714                         percent=$((percent + WPCT))
3715                         if [[ $percent -gt 15 ]]; then
3716                                 error "less than 16-pages write RPCs" \
3717                                       "$percent% > 15%"
3718                                 break
3719                         fi
3720                 done
3721         rm -rf $TDIR
3722 }
3723 run_test 42e "verify sub-RPC writes are not done synchronously"
3724
3725 test_43() {
3726         test_mkdir -p $DIR/$tdir
3727         cp -p /bin/ls $DIR/$tdir/$tfile
3728         $MULTIOP $DIR/$tdir/$tfile Ow_c &
3729         pid=$!
3730         # give multiop a chance to open
3731         sleep 1
3732
3733         $DIR/$tdir/$tfile && error || true
3734         kill -USR1 $pid
3735 }
3736 run_test 43 "execution of file opened for write should return -ETXTBSY"
3737
3738 test_43a() {
3739         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3740         test_mkdir -p $DIR/$tdir
3741         cp -p `which $MULTIOP` $DIR/$tdir/multiop ||
3742                         cp -p multiop $DIR/$tdir/multiop
3743         MULTIOP_PROG=$DIR/$tdir/multiop multiop_bg_pause $TMP/$tfile.junk O_c ||
3744                         return 1
3745         MULTIOP_PID=$!
3746         $MULTIOP $DIR/$tdir/multiop Oc && error "expected error, got success"
3747         kill -USR1 $MULTIOP_PID || return 2
3748         wait $MULTIOP_PID || return 3
3749         rm $TMP/$tfile.junk $DIR/$tdir/multiop
3750 }
3751 run_test 43a "open(RDWR) of file being executed should return -ETXTBSY"
3752
3753 test_43b() {
3754         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3755         test_mkdir -p $DIR/$tdir
3756         cp -p `which $MULTIOP` $DIR/$tdir/multiop ||
3757                         cp -p multiop $DIR/$tdir/multiop
3758         MULTIOP_PROG=$DIR/$tdir/multiop multiop_bg_pause $TMP/$tfile.junk O_c ||
3759                         return 1
3760         MULTIOP_PID=$!
3761         $TRUNCATE $DIR/$tdir/multiop 0 && error "expected error, got success"
3762         kill -USR1 $MULTIOP_PID || return 2
3763         wait $MULTIOP_PID || return 3
3764         rm $TMP/$tfile.junk $DIR/$tdir/multiop
3765 }
3766 run_test 43b "truncate of file being executed should return -ETXTBSY"
3767
3768 test_43c() {
3769         local testdir="$DIR/$tdir"
3770         test_mkdir -p $DIR/$tdir
3771         cp $SHELL $testdir/
3772         ( cd $(dirname $SHELL) && md5sum $(basename $SHELL) ) | \
3773                 ( cd $testdir && md5sum -c)
3774 }
3775 run_test 43c "md5sum of copy into lustre========================"
3776
3777 test_44() {
3778         [[ $OSTCOUNT -lt 2 ]] && skip_env "skipping 2-stripe test" && return
3779         dd if=/dev/zero of=$DIR/f1 bs=4k count=1 seek=1023
3780         dd if=$DIR/f1 bs=4k count=1 > /dev/null
3781 }
3782 run_test 44 "zero length read from a sparse stripe ============="
3783
3784 test_44a() {
3785         local nstripe=$($LCTL lov_getconfig $DIR | grep default_stripe_count: |
3786                 awk '{ print $2 }')
3787         [ -z "$nstripe" ] && skip "can't get stripe info" && return
3788         [[ $nstripe -gt $OSTCOUNT ]] &&
3789             skip "Wrong default_stripe_count: $nstripe (OSTCOUNT: $OSTCOUNT)" &&
3790             return
3791         local stride=$($LCTL lov_getconfig $DIR | grep default_stripe_size: |
3792                 awk '{ print $2 }')
3793         if [[ $nstripe -eq 0 || $nstripe -eq -1 ]]; then
3794                 nstripe=$($LCTL lov_getconfig $DIR | grep obd_count: |
3795                         awk '{ print $2 }')
3796         fi
3797
3798         OFFSETS="0 $((stride/2)) $((stride-1))"
3799         for offset in $OFFSETS; do
3800                 for i in $(seq 0 $((nstripe-1))); do
3801                         local GLOBALOFFSETS=""
3802                         # size in Bytes
3803                         local size=$((((i + 2 * $nstripe )*$stride + $offset)))
3804                         local myfn=$DIR/d44a-$size
3805                         echo "--------writing $myfn at $size"
3806                         ll_sparseness_write $myfn $size ||
3807                                 error "ll_sparseness_write"
3808                         GLOBALOFFSETS="$GLOBALOFFSETS $size"
3809                         ll_sparseness_verify $myfn $GLOBALOFFSETS ||
3810                                 error "ll_sparseness_verify $GLOBALOFFSETS"
3811
3812                         for j in $(seq 0 $((nstripe-1))); do
3813                                 # size in Bytes
3814                                 size=$((((j + $nstripe )*$stride + $offset)))
3815                                 ll_sparseness_write $myfn $size ||
3816                                         error "ll_sparseness_write"
3817                                 GLOBALOFFSETS="$GLOBALOFFSETS $size"
3818                         done
3819                         ll_sparseness_verify $myfn $GLOBALOFFSETS ||
3820                                 error "ll_sparseness_verify $GLOBALOFFSETS"
3821                         rm -f $myfn
3822                 done
3823         done
3824 }
3825 run_test 44a "test sparse pwrite ==============================="
3826
3827 dirty_osc_total() {
3828         tot=0
3829         for d in `lctl get_param -n osc.*.cur_dirty_bytes`; do
3830                 tot=$(($tot + $d))
3831         done
3832         echo $tot
3833 }
3834 do_dirty_record() {
3835         before=`dirty_osc_total`
3836         echo executing "\"$*\""
3837         eval $*
3838         after=`dirty_osc_total`
3839         echo before $before, after $after
3840 }
3841 test_45() {
3842         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3843         f="$DIR/f45"
3844         # Obtain grants from OST if it supports it
3845         echo blah > ${f}_grant
3846         stop_writeback
3847         sync
3848         do_dirty_record "echo blah > $f"
3849         [[ $before -eq $after ]] && error "write wasn't cached"
3850         do_dirty_record "> $f"
3851         [[ $before -gt $after ]] || error "truncate didn't lower dirty count"
3852         do_dirty_record "echo blah > $f"
3853         [[ $before -eq $after ]] && error "write wasn't cached"
3854         do_dirty_record "sync"
3855         [[ $before -gt $after ]] || error "writeback didn't lower dirty count"
3856         do_dirty_record "echo blah > $f"
3857         [[ $before -eq $after ]] && error "write wasn't cached"
3858         do_dirty_record "cancel_lru_locks osc"
3859         [[ $before -gt $after ]] ||
3860                 error "lock cancellation didn't lower dirty count"
3861         start_writeback
3862 }
3863 run_test 45 "osc io page accounting ============================"
3864
3865 # in a 2 stripe file (lov.sh), page 1023 maps to page 511 in its object.  this
3866 # test tickles a bug where re-dirtying a page was failing to be mapped to the
3867 # objects offset and an assert hit when an rpc was built with 1023's mapped
3868 # offset 511 and 511's raw 511 offset. it also found general redirtying bugs.
3869 test_46() {
3870         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3871         f="$DIR/f46"
3872         stop_writeback
3873         sync
3874         dd if=/dev/zero of=$f bs=`page_size` seek=511 count=1
3875         sync
3876         dd conv=notrunc if=/dev/zero of=$f bs=`page_size` seek=1023 count=1
3877         dd conv=notrunc if=/dev/zero of=$f bs=`page_size` seek=511 count=1
3878         sync
3879         start_writeback
3880 }
3881 run_test 46 "dirtying a previously written page ================"
3882
3883 # test_47 is removed "Device nodes check" is moved to test_28
3884
3885 test_48a() { # bug 2399
3886         [ $(facet_fstype $SINGLEMDS) = "zfs" ] &&
3887         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.63) ] &&
3888                 skip "MDS prior to 2.3.63 handle ZFS dir .. incorrectly" &&
3889                 return
3890         test_mkdir $DIR/$tdir
3891         cd $DIR/$tdir
3892         mv $DIR/$tdir $DIR/$tdir.new || error "move directory failed"
3893         test_mkdir $DIR/$tdir || error "recreate directory failed"
3894         touch foo || error "'touch foo' failed after recreating cwd"
3895         test_mkdir bar || error "'mkdir foo' failed after recreating cwd"
3896         touch .foo || error "'touch .foo' failed after recreating cwd"
3897         test_mkdir .bar || error "'mkdir .foo' failed after recreating cwd"
3898         ls . > /dev/null || error "'ls .' failed after recreating cwd"
3899         ls .. > /dev/null || error "'ls ..' failed after removing cwd"
3900         cd . || error "'cd .' failed after recreating cwd"
3901         test_mkdir . && error "'mkdir .' worked after recreating cwd"
3902         rmdir . && error "'rmdir .' worked after recreating cwd"
3903         ln -s . baz || error "'ln -s .' failed after recreating cwd"
3904         cd .. || error "'cd ..' failed after recreating cwd"
3905 }
3906 run_test 48a "Access renamed working dir (should return errors)="
3907
3908 test_48b() { # bug 2399
3909         rm -rf $DIR/$tdir
3910         test_mkdir $DIR/$tdir
3911         cd $DIR/$tdir
3912         rmdir $DIR/$tdir || error "remove cwd $DIR/$tdir failed"
3913         touch foo && error "'touch foo' worked after removing cwd"
3914         test_mkdir foo && error "'mkdir foo' worked after removing cwd"
3915         touch .foo && error "'touch .foo' worked after removing cwd"
3916         test_mkdir .foo && error "'mkdir .foo' worked after removing cwd"
3917         ls . > /dev/null && error "'ls .' worked after removing cwd"
3918         ls .. > /dev/null || error "'ls ..' failed after removing cwd"
3919         test_mkdir . && error "'mkdir .' worked after removing cwd"
3920         rmdir . && error "'rmdir .' worked after removing cwd"
3921         ln -s . foo && error "'ln -s .' worked after removing cwd"
3922         cd .. || echo "'cd ..' failed after removing cwd `pwd`"  #bug 3517
3923 }
3924 run_test 48b "Access removed working dir (should return errors)="
3925
3926 test_48c() { # bug 2350
3927         #lctl set_param debug=-1
3928         #set -vx
3929         rm -rf $DIR/$tdir
3930         test_mkdir -p $DIR/$tdir/dir
3931         cd $DIR/$tdir/dir
3932         $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
3933         $TRACE touch foo && error "touch foo worked after removing cwd"
3934         $TRACE test_mkdir foo && error "'mkdir foo' worked after removing cwd"
3935         touch .foo && error "touch .foo worked after removing cwd"
3936         test_mkdir .foo && error "mkdir .foo worked after removing cwd"
3937         $TRACE ls . && error "'ls .' worked after removing cwd"
3938         $TRACE ls .. || error "'ls ..' failed after removing cwd"
3939         $TRACE test_mkdir . && error "'mkdir .' worked after removing cwd"
3940         $TRACE rmdir . && error "'rmdir .' worked after removing cwd"
3941         $TRACE ln -s . foo && error "'ln -s .' worked after removing cwd"
3942         $TRACE cd .. || echo "'cd ..' failed after removing cwd `pwd`" #bug 3415
3943 }
3944 run_test 48c "Access removed working subdir (should return errors)"
3945
3946 test_48d() { # bug 2350
3947         #lctl set_param debug=-1
3948         #set -vx
3949         rm -rf $DIR/$tdir
3950         test_mkdir -p $DIR/$tdir/dir
3951         cd $DIR/$tdir/dir
3952         $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
3953         $TRACE rmdir $DIR/$tdir || error "remove parent $DIR/$tdir failed"
3954         $TRACE touch foo && error "'touch foo' worked after removing parent"
3955         $TRACE test_mkdir foo && error "mkdir foo worked after removing parent"
3956         touch .foo && error "'touch .foo' worked after removing parent"
3957         test_mkdir .foo && error "mkdir .foo worked after removing parent"
3958         $TRACE ls . && error "'ls .' worked after removing parent"
3959         $TRACE ls .. && error "'ls ..' worked after removing parent"
3960         $TRACE test_mkdir . && error "'mkdir .' worked after removing parent"
3961         $TRACE rmdir . && error "'rmdir .' worked after removing parent"
3962         $TRACE ln -s . foo && error "'ln -s .' worked after removing parent"
3963         true
3964 }
3965 run_test 48d "Access removed parent subdir (should return errors)"
3966
3967 test_48e() { # bug 4134
3968         #lctl set_param debug=-1
3969         #set -vx
3970         rm -rf $DIR/$tdir
3971         test_mkdir -p $DIR/$tdir/dir
3972         cd $DIR/$tdir/dir
3973         $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
3974         $TRACE rmdir $DIR/$tdir || error "remove parent $DIR/$tdir failed"
3975         $TRACE touch $DIR/$tdir || error "'touch $DIR/$tdir' failed"
3976         $TRACE chmod +x $DIR/$tdir || error "'chmod +x $DIR/$tdir' failed"
3977         # On a buggy kernel addition of "touch foo" after cd .. will
3978         # produce kernel oops in lookup_hash_it
3979         touch ../foo && error "'cd ..' worked after recreate parent"
3980         cd $DIR
3981         $TRACE rm $DIR/$tdir || error "rm '$DIR/$tdir' failed"
3982 }
3983 run_test 48e "Access to recreated parent subdir (should return errors)"
3984
3985 test_49() { # LU-1030
3986         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3987         # get ost1 size - lustre-OST0000
3988         ost1_size=$(do_facet ost1 $LFS df | grep ${ost1_svc} |
3989                 awk '{ print $4 }')
3990         # write 800M at maximum
3991         [[ $ost1_size -lt 2 ]] && ost1_size=2
3992         [[ $ost1_size -gt 819200 ]] && ost1_size=819200
3993
3994         $SETSTRIPE -c 1 -i 0 $DIR/$tfile
3995         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((ost1_size >> 2)) &
3996         local dd_pid=$!
3997
3998         # change max_pages_per_rpc while writing the file
3999         local osc1_mppc=osc.$(get_osc_import_name client ost1).max_pages_per_rpc
4000         local orig_mppc=$($LCTL get_param -n $osc1_mppc)
4001         # loop until dd process exits
4002         while ps ax -opid | grep -wq $dd_pid; do
4003                 $LCTL set_param $osc1_mppc=$((RANDOM % 256 + 1))
4004                 sleep $((RANDOM % 5 + 1))
4005         done
4006         # restore original max_pages_per_rpc
4007         $LCTL set_param $osc1_mppc=$orig_mppc
4008         rm $DIR/$tfile || error "rm $DIR/$tfile failed"
4009 }
4010 run_test 49 "Change max_pages_per_rpc won't break osc extent"
4011
4012 test_50() {
4013         # bug 1485
4014         test_mkdir $DIR/$tdir
4015         cd $DIR/$tdir
4016         ls /proc/$$/cwd || error "ls /proc/$$/cwd failed"
4017 }
4018 run_test 50 "special situations: /proc symlinks  ==============="
4019
4020 test_51a() {    # was test_51
4021         # bug 1516 - create an empty entry right after ".." then split dir
4022         test_mkdir -c1 $DIR/$tdir
4023         touch $DIR/$tdir/foo
4024         $MCREATE $DIR/$tdir/bar
4025         rm $DIR/$tdir/foo
4026         createmany -m $DIR/$tdir/longfile 201
4027         FNUM=202
4028         while [[ $(ls -sd $DIR/$tdir | awk '{ print $1 }') -eq 4 ]]; do
4029                 $MCREATE $DIR/$tdir/longfile$FNUM
4030                 FNUM=$(($FNUM + 1))
4031                 echo -n "+"
4032         done
4033         echo
4034         ls -l $DIR/$tdir > /dev/null || error "ls -l $DIR/$tdir failed"
4035 }
4036 run_test 51a "special situations: split htree with empty entry =="
4037
4038 export NUMTEST=70000
4039 test_51b() {
4040         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4041         local BASE=$DIR/d${base}.${TESTSUITE}
4042
4043         # cleanup the directory
4044         rm -fr $BASE
4045
4046         test_mkdir -p -c1 $BASE
4047
4048         $LFS df
4049         $LFS df -i
4050         local mdtidx=$(printf "%04x" $($LFS getstripe -M $BASE))
4051         local numfree=$(lctl get_param -n mdc.$FSNAME-MDT$mdtidx*.filesfree)
4052         [[ $numfree -lt 21000 ]] &&
4053                 skip "not enough free inodes ($numfree) on MDT$mdtidx" &&
4054                 return
4055
4056         [[ $numfree -lt $NUMTEST ]] && NUMTEST=$(($numfree - 50)) &&
4057                 echo "reduced count to $NUMTEST due to inodes on MDT$mdtidx"
4058
4059         # need to check free space for the directories as well
4060         local blkfree=$(lctl get_param -n mdc.$FSNAME-MDT$mdtidx*.kbytesavail)
4061         numfree=$((blkfree / 4))
4062         [[ $numfree -lt $NUMTEST ]] && NUMTEST=$((numfree - 50)) &&
4063                 echo "reduced count to $NUMTEST due to blocks on MDT$mdtidx"
4064
4065         createmany -d $BASE/d $NUMTEST && echo $NUMTEST > $BASE/fnum ||
4066         {
4067                 $LFS df
4068                 $LFS df -i
4069                 echo "failed" > $BASE/fnum
4070                 error "failed to create $NUMTEST subdirs in MDT$mdtidx:$BASE"
4071         }
4072 }
4073 run_test 51b "exceed 64k subdirectory nlink limit"
4074
4075 test_51ba() { # LU-993
4076         local BASE=$DIR/d${base}.${TESTSUITE}
4077         # unlink all but 100 subdirectories, then check it still works
4078         local LEFT=100
4079         [ -f $BASE/fnum ] && local NUMPREV=$(cat $BASE/fnum) && rm $BASE/fnum
4080
4081         [ "$NUMPREV" != "failed" ] && NUMTEST=$NUMPREV
4082         local DELETE=$((NUMTEST - LEFT))
4083
4084         # continue on to run this test even if 51b didn't finish,
4085         # just to delete the many subdirectories created.
4086         [ ! -d "${BASE}/d1" ] && skip "test_51b() not run" && return 0
4087
4088         # for ldiskfs the nlink count should be 1, but this is OSD specific
4089         # and so this is listed for informational purposes only
4090         echo "nlink before: $(stat -c %h $BASE), created before: $NUMTEST"
4091         unlinkmany -d $BASE/d $DELETE
4092         RC=$?
4093
4094         if [ $RC -ne 0 ]; then
4095                 if [ "$NUMPREV" == "failed" ]; then
4096                         skip "previous setup failed"
4097                         return 0
4098                 else
4099                         error "unlink of first $DELETE subdirs failed"
4100                         return $RC
4101                 fi
4102         fi
4103
4104         echo "nlink between: $(stat -c %h $BASE)"
4105         # trim the first line of ls output
4106         local FOUND=$(($(ls -l ${BASE} | wc -l) - 1))
4107         [ $FOUND -ne $LEFT ] &&
4108                 error "can't find subdirs: found only $FOUND/$LEFT"
4109
4110         unlinkmany -d $BASE/d $DELETE $LEFT ||
4111                 error "unlink of second $LEFT subdirs failed"
4112         # regardless of whether the backing filesystem tracks nlink accurately
4113         # or not, the nlink count shouldn't be more than "." and ".." here
4114         local AFTER=$(stat -c %h $BASE)
4115         [[ $AFTER -gt 2 ]] && error "nlink after: $AFTER > 2" ||
4116                 echo "nlink after: $AFTER"
4117 }
4118 run_test 51ba "verify nlink for many subdirectory cleanup"
4119
4120 test_51d() {
4121         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4122         [[ $OSTCOUNT -lt 3 ]] &&
4123                 skip_env "skipping test with few OSTs" && return
4124         test_mkdir -p $DIR/$tdir
4125         createmany -o $DIR/$tdir/t- 1000
4126         $GETSTRIPE $DIR/$tdir > $TMP/$tfile
4127         for N in $(seq 0 $((OSTCOUNT - 1))); do
4128                 OBJS[$N]=$(awk -vobjs=0 '($1 == '$N') { objs += 1 } \
4129                         END { printf("%0.0f", objs) }' $TMP/$tfile)
4130                 OBJS0[$N]=$(grep -A 1 idx $TMP/$tfile | awk -vobjs=0 \
4131                         '($1 == '$N') { objs += 1 } \
4132                         END { printf("%0.0f", objs) }')
4133                 log "OST$N has ${OBJS[$N]} objects, ${OBJS0[$N]} are index 0"
4134         done
4135         unlinkmany $DIR/$tdir/t- 1000
4136
4137         NLAST=0
4138         for N in $(seq 1 $((OSTCOUNT - 1))); do
4139                 [[ ${OBJS[$N]} -lt $((${OBJS[$NLAST]} - 20)) ]] &&
4140                         error "OST $N has less objects vs OST $NLAST" \
4141                               " (${OBJS[$N]} < ${OBJS[$NLAST]}"
4142                 [[ ${OBJS[$N]} -gt $((${OBJS[$NLAST]} + 20)) ]] &&
4143                         error "OST $N has less objects vs OST $NLAST" \
4144                               " (${OBJS[$N]} < ${OBJS[$NLAST]}"
4145
4146                 [[ ${OBJS0[$N]} -lt $((${OBJS0[$NLAST]} - 20)) ]] &&
4147                         error "OST $N has less #0 objects vs OST $NLAST" \
4148                               " (${OBJS0[$N]} < ${OBJS0[$NLAST]}"
4149                 [[ ${OBJS0[$N]} -gt $((${OBJS0[$NLAST]} + 20)) ]] &&
4150                         error "OST $N has less #0 objects vs OST $NLAST" \
4151                               " (${OBJS0[$N]} < ${OBJS0[$NLAST]}"
4152                 NLAST=$N
4153         done
4154         rm -f $TMP/$tfile
4155 }
4156 run_test 51d "check object distribution"
4157
4158 test_51e() {
4159         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
4160                 skip "Only applicable to ldiskfs-based MDTs"
4161                 return
4162         fi
4163
4164         test_mkdir -c1 $DIR/$tdir       || error "create $tdir failed"
4165         test_mkdir -c1 $DIR/$tdir/d0    || error "create d0 failed"
4166
4167         touch $DIR/$tdir/d0/foo
4168         createmany -l $DIR/$tdir/d0/foo $DIR/$tdir/d0/f- 65001 &&
4169                 error "file exceed 65000 nlink limit!"
4170         unlinkmany $DIR/$tdir/d0/f- 65001
4171         return 0
4172 }
4173 run_test 51e "check file nlink limit"
4174
4175 test_52a() {
4176         [ -f $DIR/$tdir/foo ] && chattr -a $DIR/$tdir/foo
4177         test_mkdir -p $DIR/$tdir
4178         touch $DIR/$tdir/foo
4179         chattr +a $DIR/$tdir/foo || error "chattr +a failed"
4180         echo bar >> $DIR/$tdir/foo || error "append bar failed"
4181         cp /etc/hosts $DIR/$tdir/foo && error "cp worked"
4182         rm -f $DIR/$tdir/foo 2>/dev/null && error "rm worked"
4183         link $DIR/$tdir/foo $DIR/$tdir/foo_link 2>/dev/null &&
4184                                         error "link worked"
4185         echo foo >> $DIR/$tdir/foo || error "append foo failed"
4186         mrename $DIR/$tdir/foo $DIR/$tdir/foo_ren && error "rename worked"
4187         lsattr $DIR/$tdir/foo | egrep -q "^-+a[-e]+ $DIR/$tdir/foo" ||
4188                                                      error "lsattr"
4189         chattr -a $DIR/$tdir/foo || error "chattr -a failed"
4190         cp -r $DIR/$tdir $TMP/
4191         rm -fr $DIR/$tdir $TMP/$tdir || error "cleanup rm failed"
4192 }
4193 run_test 52a "append-only flag test (should return errors)"
4194
4195 test_52b() {
4196         [ -f $DIR/$tdir/foo ] && chattr -i $DIR/$tdir/foo
4197         test_mkdir -p $DIR/$tdir
4198         touch $DIR/$tdir/foo
4199         chattr +i $DIR/$tdir/foo || error "chattr +i failed"
4200         cat test > $DIR/$tdir/foo && error "cat test worked"
4201         cp /etc/hosts $DIR/$tdir/foo && error "cp worked"
4202         rm -f $DIR/$tdir/foo 2>/dev/null && error "rm worked"
4203         link $DIR/$tdir/foo $DIR/$tdir/foo_link 2>/dev/null &&
4204                                         error "link worked"
4205         echo foo >> $DIR/$tdir/foo && error "echo worked"
4206         mrename $DIR/$tdir/foo $DIR/$tdir/foo_ren && error "rename worked"
4207         [ -f $DIR/$tdir/foo ] || error "$tdir/foo is not a file"
4208         [ -f $DIR/$tdir/foo_ren ] && error "$tdir/foo_ren is not a file"
4209         lsattr $DIR/$tdir/foo | egrep -q "^-+i[-e]+ $DIR/$tdir/foo" ||
4210                                                         error "lsattr"
4211         chattr -i $DIR/$tdir/foo || error "chattr failed"
4212
4213         rm -fr $DIR/$tdir || error "unable to remove $DIR/$tdir"
4214 }
4215 run_test 52b "immutable flag test (should return errors) ======="
4216
4217 test_53() {
4218         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4219         remote_mds_nodsh && skip "remote MDS with nodsh" && return
4220         remote_ost_nodsh && skip "remote OST with nodsh" && return
4221
4222         local param
4223         local param_seq
4224         local ostname
4225         local mds_last
4226         local mds_last_seq
4227         local ost_last
4228         local ost_last_seq
4229         local ost_last_id
4230         local ostnum
4231         local node
4232         local found=false
4233         local support_last_seq=true
4234
4235         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.60) ]] ||
4236                 support_last_seq=false
4237
4238         # only test MDT0000
4239         local mdtosc=$(get_mdtosc_proc_path $SINGLEMDS)
4240         local value
4241         for value in $(do_facet $SINGLEMDS \
4242                        $LCTL get_param osc.$mdtosc.prealloc_last_id) ; do
4243                 param=$(echo ${value[0]} | cut -d "=" -f1)
4244                 ostname=$(echo $param | cut -d "." -f2 | cut -d - -f 1-2)
4245
4246                 if $support_last_seq; then
4247                         param_seq=$(echo $param |
4248                                 sed -e s/prealloc_last_id/prealloc_last_seq/g)
4249                         mds_last_seq=$(do_facet $SINGLEMDS \
4250                                        $LCTL get_param -n $param_seq)
4251                 fi
4252                 mds_last=$(do_facet $SINGLEMDS $LCTL get_param -n $param)
4253
4254                 ostnum=$(index_from_ostuuid ${ostname}_UUID)
4255                 node=$(facet_active_host ost$((ostnum+1)))
4256                 param="obdfilter.$ostname.last_id"
4257                 for ost_last in $(do_node $node $LCTL get_param -n $param) ; do
4258                         echo "$ostname.last_id=$ost_last; MDS.last_id=$mds_last"
4259                         ost_last_id=$ost_last
4260
4261                         if $support_last_seq; then
4262                                 ost_last_id=$(echo $ost_last |
4263                                               awk -F':' '{print $2}' |
4264                                               sed -e "s/^0x//g")
4265                                 ost_last_seq=$(echo $ost_last |
4266                                                awk -F':' '{print $1}')
4267                                 [[ $ost_last_seq = $mds_last_seq ]] || continue
4268                         fi
4269
4270                         if [[ $ost_last_id != $mds_last ]]; then
4271                                 error "$ost_last_id != $mds_last"
4272                         else
4273                                 found=true
4274                                 break
4275                         fi
4276                 done
4277         done
4278         $found || error "can not match last_seq/last_id for $mdtosc"
4279         return 0
4280 }
4281 run_test 53 "verify that MDS and OSTs agree on pre-creation ===="
4282
4283 test_54a() {
4284         $SOCKETSERVER $DIR/socket ||
4285                 error "$SOCKETSERVER $DIR/socket failed: $?"
4286         $SOCKETCLIENT $DIR/socket ||
4287                 error "$SOCKETCLIENT $DIR/socket failed: $?"
4288         $MUNLINK $DIR/socket || error "$MUNLINK $DIR/socket failed: $?"
4289 }
4290 run_test 54a "unix domain socket test =========================="
4291
4292 test_54b() {
4293         f="$DIR/f54b"
4294         mknod $f c 1 3
4295         chmod 0666 $f
4296         dd if=/dev/zero of=$f bs=$(page_size) count=1
4297 }
4298 run_test 54b "char device works in lustre ======================"
4299
4300 find_loop_dev() {
4301         [ -b /dev/loop/0 ] && LOOPBASE=/dev/loop/
4302         [ -b /dev/loop0 ] && LOOPBASE=/dev/loop
4303         [ -z "$LOOPBASE" ] && echo "/dev/loop/0 and /dev/loop0 gone?" && return
4304
4305         for i in $(seq 3 7); do
4306                 losetup $LOOPBASE$i > /dev/null 2>&1 && continue
4307                 LOOPDEV=$LOOPBASE$i
4308                 LOOPNUM=$i
4309                 break
4310         done
4311 }
4312
4313 cleanup_54c() {
4314         loopdev="$DIR/loop54c"
4315
4316         trap 0
4317         $UMOUNT $DIR/$tdir || rc=$?
4318         losetup -d $loopdev || true
4319         losetup -d $LOOPDEV || true
4320         rm -rf $loopdev $DIR/$tfile $DIR/$tdir
4321         return $rc
4322 }
4323
4324 test_54c() {
4325         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4326         loopdev="$DIR/loop54c"
4327
4328         find_loop_dev
4329         [ -z "$LOOPNUM" ] && echo "couldn't find empty loop device" && return
4330         trap cleanup_54c EXIT
4331         mknod $loopdev b 7 $LOOPNUM
4332         echo "make a loop file system with $DIR/$tfile on $loopdev ($LOOPNUM)."
4333         dd if=/dev/zero of=$DIR/$tfile bs=$(get_page_size client) seek=1024 count=1 > /dev/null
4334         losetup $loopdev $DIR/$tfile ||
4335                 error "can't set up $loopdev for $DIR/$tfile"
4336         mkfs.ext2 $loopdev || error "mke2fs on $loopdev"
4337         test_mkdir -p $DIR/$tdir
4338         mount -t ext2 $loopdev $DIR/$tdir ||
4339                 error "error mounting $loopdev on $DIR/$tdir"
4340         dd if=/dev/zero of=$DIR/$tdir/tmp bs=$(get_page_size client) count=30 ||
4341                 error "dd write"
4342         df $DIR/$tdir
4343         dd if=$DIR/$tdir/tmp of=/dev/zero bs=$(get_page_size client) count=30 ||
4344                 error "dd read"
4345         cleanup_54c
4346 }
4347 run_test 54c "block device works in lustre ====================="
4348
4349 test_54d() {
4350         f="$DIR/f54d"
4351         string="aaaaaa"
4352         mknod $f p
4353         [ "$string" = $(echo $string > $f | cat $f) ] || error "$f != $string"
4354 }
4355 run_test 54d "fifo device works in lustre ======================"
4356
4357 test_54e() {
4358         f="$DIR/f54e"
4359         string="aaaaaa"
4360         cp -aL /dev/console $f
4361         echo $string > $f || error "echo $string to $f failed"
4362 }
4363 run_test 54e "console/tty device works in lustre ======================"
4364
4365 #The test_55 used to be iopen test and it was removed by bz#24037.
4366 #run_test 55 "check iopen_connect_dentry() ======================"
4367
4368 test_56a() {    # was test_56
4369         rm -rf $DIR/$tdir
4370         $SETSTRIPE -d $DIR
4371         test_mkdir -p $DIR/$tdir/dir
4372         NUMFILES=3
4373         NUMFILESx2=$(($NUMFILES * 2))
4374         for i in $(seq 1 $NUMFILES); do
4375                 touch $DIR/$tdir/file$i
4376                 touch $DIR/$tdir/dir/file$i
4377         done
4378
4379         # test lfs getstripe with --recursive
4380         FILENUM=$($GETSTRIPE --recursive $DIR/$tdir | grep -c obdidx)
4381         [[ $FILENUM -eq $NUMFILESx2 ]] ||
4382                 error "$GETSTRIPE --recursive: found $FILENUM, not $NUMFILESx2"
4383         FILENUM=$($GETSTRIPE $DIR/$tdir | grep -c obdidx)
4384         [[ $FILENUM -eq $NUMFILES ]] ||
4385                 error "$GETSTRIPE $DIR/$tdir: found $FILENUM, not $NUMFILES"
4386         echo "$GETSTRIPE --recursive passed."
4387
4388         # test lfs getstripe with file instead of dir
4389         FILENUM=$($GETSTRIPE $DIR/$tdir/file1 | grep -c obdidx)
4390         [[ $FILENUM -eq 1 ]] ||
4391                 error "$GETSTRIPE $DIR/$tdir/file1: found $FILENUM, not 1"
4392         echo "$GETSTRIPE file1 passed."
4393
4394         #test lfs getstripe with --verbose
4395         [[ $($GETSTRIPE --verbose $DIR/$tdir |
4396                 grep -c lmm_magic) -eq $NUMFILES ]] ||
4397                 error "$GETSTRIPE --verbose $DIR/$tdir: want $NUMFILES"
4398         [[ $($GETSTRIPE $DIR/$tdir | grep -c lmm_magic) -eq 0 ]] ||
4399                 rror "$GETSTRIPE $DIR/$tdir: showed lmm_magic"
4400         echo "$GETSTRIPE --verbose passed."
4401
4402         #test lfs getstripe with --obd
4403         $GETSTRIPE --obd wrong_uuid $DIR/$tdir 2>&1 |
4404                 grep -q "unknown obduuid" ||
4405                 error "$GETSTRIPE --obd wrong_uuid should return error message"
4406
4407         [[ $OSTCOUNT -lt 2 ]] &&
4408                 skip_env "skipping other $GETSTRIPE --obd test" && return
4409
4410         OSTIDX=1
4411         OBDUUID=$(ostuuid_from_index $OSTIDX)
4412         FILENUM=$($GETSTRIPE -ir $DIR/$tdir | grep "^$OSTIDX\$" | wc -l)
4413         FOUND=$($GETSTRIPE -r --obd $OBDUUID $DIR/$tdir | grep obdidx | wc -l)
4414         [[ $FOUND -eq $FILENUM ]] ||
4415                 error "$GETSTRIPE --obd wrong: found $FOUND, expected $FILENUM"
4416         [[ $($GETSTRIPE -r -v --obd $OBDUUID $DIR/$tdir |
4417                 sed '/^[         ]*'${OSTIDX}'[  ]/d' |
4418                 sed -n '/^[      ]*[0-9][0-9]*[  ]/p' | wc -l) -eq 0 ]] ||
4419                 error "$GETSTRIPE --obd: should not show file on other obd"
4420         echo "$GETSTRIPE --obd passed"
4421 }
4422 run_test 56a "check $GETSTRIPE"
4423
4424 NUMFILES=3
4425 NUMDIRS=3
4426 setup_56() {
4427         local LOCAL_NUMFILES="$1"
4428         local LOCAL_NUMDIRS="$2"
4429         local MKDIR_PARAMS="$3"
4430         local DIR_STRIPE_PARAMS="$4"
4431
4432         if [ ! -d "$TDIR" ] ; then
4433                 test_mkdir -p $DIR_STRIPE_PARAMS $TDIR
4434                 [ "$MKDIR_PARAMS" ] && $SETSTRIPE $MKDIR_PARAMS $TDIR
4435                 for i in `seq 1 $LOCAL_NUMFILES` ; do
4436                         touch $TDIR/file$i
4437                 done
4438                 for i in `seq 1 $LOCAL_NUMDIRS` ; do
4439                         test_mkdir $DIR_STRIPE_PARAMS $TDIR/dir$i
4440                         for j in `seq 1 $LOCAL_NUMFILES` ; do
4441                                 touch $TDIR/dir$i/file$j
4442                         done
4443                 done
4444         fi
4445 }
4446
4447 setup_56_special() {
4448         LOCAL_NUMFILES=$1
4449         LOCAL_NUMDIRS=$2
4450         setup_56 $1 $2
4451         if [ ! -e "$TDIR/loop1b" ] ; then
4452                 for i in `seq 1 $LOCAL_NUMFILES` ; do
4453                         mknod $TDIR/loop${i}b b 7 $i
4454                         mknod $TDIR/null${i}c c 1 3
4455                         ln -s $TDIR/file1 $TDIR/link${i}l
4456                 done
4457                 for i in `seq 1 $LOCAL_NUMDIRS` ; do
4458                         mknod $TDIR/dir$i/loop${i}b b 7 $i
4459                         mknod $TDIR/dir$i/null${i}c c 1 3
4460                         ln -s $TDIR/dir$i/file1 $TDIR/dir$i/link${i}l
4461                 done
4462         fi
4463 }
4464
4465 test_56g() {
4466         $SETSTRIPE -d $DIR
4467
4468         TDIR=$DIR/${tdir}g
4469         setup_56 $NUMFILES $NUMDIRS
4470
4471         EXPECTED=$(($NUMDIRS + 2))
4472         # test lfs find with -name
4473         for i in $(seq 1 $NUMFILES) ; do
4474                 NUMS=$($LFIND -name "*$i" $TDIR | wc -l)
4475                 [ $NUMS -eq $EXPECTED ] ||
4476                         error "lfs find -name \"*$i\" $TDIR wrong: "\
4477                               "found $NUMS, expected $EXPECTED"
4478         done
4479 }
4480 run_test 56g "check lfs find -name ============================="
4481
4482 test_56h() {
4483         $SETSTRIPE -d $DIR
4484
4485         TDIR=$DIR/${tdir}g
4486         setup_56 $NUMFILES $NUMDIRS
4487
4488         EXPECTED=$(((NUMDIRS + 1) * (NUMFILES - 1) + NUMFILES))
4489         # test lfs find with ! -name
4490         for i in $(seq 1 $NUMFILES) ; do
4491                 NUMS=$($LFIND ! -name "*$i" $TDIR | wc -l)
4492                 [ $NUMS -eq $EXPECTED ] ||
4493                         error "lfs find ! -name \"*$i\" $TDIR wrong: "\
4494                               "found $NUMS, expected $EXPECTED"
4495         done
4496 }
4497 run_test 56h "check lfs find ! -name ============================="
4498
4499 test_56i() {
4500        tdir=${tdir}i
4501        test_mkdir -p $DIR/$tdir
4502        UUID=$(ostuuid_from_index 0 $DIR/$tdir)
4503        CMD="$LFIND -ost $UUID $DIR/$tdir"
4504        OUT=$($CMD)
4505        [ -z "$OUT" ] || error "\"$CMD\" returned directory '$OUT'"
4506 }
4507 run_test 56i "check 'lfs find -ost UUID' skips directories ======="
4508
4509 test_56j() {
4510         TDIR=$DIR/${tdir}g
4511         setup_56_special $NUMFILES $NUMDIRS
4512
4513         EXPECTED=$((NUMDIRS + 1))
4514         CMD="$LFIND -type d $TDIR"
4515         NUMS=$($CMD | wc -l)
4516         [ $NUMS -eq $EXPECTED ] ||
4517                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4518 }
4519 run_test 56j "check lfs find -type d ============================="
4520
4521 test_56k() {
4522         TDIR=$DIR/${tdir}g
4523         setup_56_special $NUMFILES $NUMDIRS
4524
4525         EXPECTED=$(((NUMDIRS + 1) * NUMFILES))
4526         CMD="$LFIND -type f $TDIR"
4527         NUMS=$($CMD | wc -l)
4528         [ $NUMS -eq $EXPECTED ] ||
4529                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4530 }
4531 run_test 56k "check lfs find -type f ============================="
4532
4533 test_56l() {
4534         TDIR=$DIR/${tdir}g
4535         setup_56_special $NUMFILES $NUMDIRS
4536
4537         EXPECTED=$((NUMDIRS + NUMFILES))
4538         CMD="$LFIND -type b $TDIR"
4539         NUMS=$($CMD | wc -l)
4540         [ $NUMS -eq $EXPECTED ] ||
4541                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4542 }
4543 run_test 56l "check lfs find -type b ============================="
4544
4545 test_56m() {
4546         TDIR=$DIR/${tdir}g
4547         setup_56_special $NUMFILES $NUMDIRS
4548
4549         EXPECTED=$((NUMDIRS + NUMFILES))
4550         CMD="$LFIND -type c $TDIR"
4551         NUMS=$($CMD | wc -l)
4552         [ $NUMS -eq $EXPECTED ] ||
4553                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4554 }
4555 run_test 56m "check lfs find -type c ============================="
4556
4557 test_56n() {
4558         TDIR=$DIR/${tdir}g
4559         setup_56_special $NUMFILES $NUMDIRS
4560
4561         EXPECTED=$((NUMDIRS + NUMFILES))
4562         CMD="$LFIND -type l $TDIR"
4563         NUMS=$($CMD | wc -l)
4564         [ $NUMS -eq $EXPECTED ] ||
4565                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4566 }
4567 run_test 56n "check lfs find -type l ============================="
4568
4569 test_56o() {
4570         TDIR=$DIR/${tdir}o
4571         setup_56 $NUMFILES $NUMDIRS
4572         utime $TDIR/file1 > /dev/null || error "utime (1)"
4573         utime $TDIR/file2 > /dev/null || error "utime (2)"
4574         utime $TDIR/dir1 > /dev/null || error "utime (3)"
4575         utime $TDIR/dir2 > /dev/null || error "utime (4)"
4576         utime $TDIR/dir1/file1 > /dev/null || error "utime (5)"
4577         dd if=/dev/zero count=1 >> $TDIR/dir1/file1 && sync
4578
4579         EXPECTED=4
4580         NUMS=`$LFIND -mtime +0 $TDIR | wc -l`
4581         [ $NUMS -eq $EXPECTED ] || \
4582                 error "lfs find -mtime +0 $TDIR wrong: found $NUMS, expected $EXPECTED"
4583
4584         EXPECTED=12
4585         CMD="$LFIND -mtime 0 $TDIR"
4586         NUMS=$($CMD | wc -l)
4587         [ $NUMS -eq $EXPECTED ] ||
4588                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4589 }
4590 run_test 56o "check lfs find -mtime for old files =========================="
4591
4592 test_56p() {
4593         [ $RUNAS_ID -eq $UID ] &&
4594                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
4595
4596         TDIR=$DIR/${tdir}p
4597         setup_56 $NUMFILES $NUMDIRS
4598
4599         chown $RUNAS_ID $TDIR/file* || error "chown $DIR/${tdir}g/file$i failed"
4600         EXPECTED=$NUMFILES
4601         CMD="$LFIND -uid $RUNAS_ID $TDIR"
4602         NUMS=$($CMD | wc -l)
4603         [ $NUMS -eq $EXPECTED ] || \
4604                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4605
4606         EXPECTED=$(((NUMFILES + 1) * NUMDIRS + 1))
4607         CMD="$LFIND ! -uid $RUNAS_ID $TDIR"
4608         NUMS=$($CMD | wc -l)
4609         [ $NUMS -eq $EXPECTED ] || \
4610                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4611 }
4612 run_test 56p "check lfs find -uid and ! -uid ==============================="
4613
4614 test_56q() {
4615         [ $RUNAS_ID -eq $UID ] &&
4616                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
4617
4618         TDIR=$DIR/${tdir}q
4619         setup_56 $NUMFILES $NUMDIRS
4620
4621         chgrp $RUNAS_GID $TDIR/file* || error "chown $TDIR/file$i failed"
4622
4623         EXPECTED=$NUMFILES
4624         CMD="$LFIND -gid $RUNAS_GID $TDIR"
4625         NUMS=$($CMD | wc -l)
4626         [ $NUMS -eq $EXPECTED ] ||
4627                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4628
4629         EXPECTED=$(( ($NUMFILES+1) * $NUMDIRS + 1))
4630         CMD="$LFIND ! -gid $RUNAS_GID $TDIR"
4631         NUMS=$($CMD | wc -l)
4632         [ $NUMS -eq $EXPECTED ] ||
4633                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4634 }
4635 run_test 56q "check lfs find -gid and ! -gid ==============================="
4636
4637 test_56r() {
4638         TDIR=$DIR/${tdir}r
4639         setup_56 $NUMFILES $NUMDIRS
4640
4641         EXPECTED=12
4642         CMD="$LFIND -size 0 -type f $TDIR"
4643         NUMS=$($CMD | wc -l)
4644         [ $NUMS -eq $EXPECTED ] ||
4645                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4646         EXPECTED=0
4647         CMD="$LFIND ! -size 0 -type f $TDIR"
4648         NUMS=$($CMD | wc -l)
4649         [ $NUMS -eq $EXPECTED ] ||
4650                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4651         echo "test" > $TDIR/$tfile
4652         echo "test2" > $TDIR/$tfile.2 && sync
4653         EXPECTED=1
4654         CMD="$LFIND -size 5 -type f $TDIR"
4655         NUMS=$($CMD | wc -l)
4656         [ $NUMS -eq $EXPECTED ] ||
4657                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4658         EXPECTED=1
4659         CMD="$LFIND -size +5 -type f $TDIR"
4660         NUMS=$($CMD | wc -l)
4661         [ $NUMS -eq $EXPECTED ] ||
4662                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4663         EXPECTED=2
4664         CMD="$LFIND -size +0 -type f $TDIR"
4665         NUMS=$($CMD | wc -l)
4666         [ $NUMS -eq $EXPECTED ] ||
4667                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4668         EXPECTED=2
4669         CMD="$LFIND ! -size -5 -type f $TDIR"
4670         NUMS=$($CMD | wc -l)
4671         [ $NUMS -eq $EXPECTED ] ||
4672                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4673         EXPECTED=12
4674         CMD="$LFIND -size -5 -type f $TDIR"
4675         NUMS=$($CMD | wc -l)
4676         [ $NUMS -eq $EXPECTED ] ||
4677                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4678 }
4679 run_test 56r "check lfs find -size works =========================="
4680
4681 test_56s() { # LU-611
4682         TDIR=$DIR/${tdir}s
4683         setup_56 $NUMFILES $NUMDIRS "-c $OSTCOUNT"
4684
4685         if [[ $OSTCOUNT -gt 1 ]]; then
4686                 $SETSTRIPE -c 1 $TDIR/$tfile.{0,1,2,3}
4687                 ONESTRIPE=4
4688                 EXTRA=4
4689         else
4690                 ONESTRIPE=$(((NUMDIRS + 1) * NUMFILES))
4691                 EXTRA=0
4692         fi
4693
4694         EXPECTED=$(((NUMDIRS + 1) * NUMFILES))
4695         CMD="$LFIND -stripe-count $OSTCOUNT -type f $TDIR"
4696         NUMS=$($CMD | wc -l)
4697         [ $NUMS -eq $EXPECTED ] || {
4698                 $GETSTRIPE -R $TDIR
4699                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4700         }
4701
4702         EXPECTED=$(((NUMDIRS + 1) * NUMFILES + EXTRA))
4703         CMD="$LFIND -stripe-count +0 -type f $TDIR"
4704         NUMS=$($CMD | wc -l)
4705         [ $NUMS -eq $EXPECTED ] || {
4706                 $GETSTRIPE -R $TDIR
4707                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4708         }
4709
4710         EXPECTED=$ONESTRIPE
4711         CMD="$LFIND -stripe-count 1 -type f $TDIR"
4712         NUMS=$($CMD | wc -l)
4713         [ $NUMS -eq $EXPECTED ] || {
4714                 $GETSTRIPE -R $TDIR
4715                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4716         }
4717
4718         CMD="$LFIND -stripe-count -2 -type f $TDIR"
4719         NUMS=$($CMD | wc -l)
4720         [ $NUMS -eq $EXPECTED ] || {
4721                 $GETSTRIPE -R $TDIR
4722                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4723         }
4724
4725         EXPECTED=0
4726         CMD="$LFIND -stripe-count $((OSTCOUNT + 1)) -type f $TDIR"
4727         NUMS=$($CMD | wc -l)
4728         [ $NUMS -eq $EXPECTED ] || {
4729                 $GETSTRIPE -R $TDIR
4730                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4731         }
4732 }
4733 run_test 56s "check lfs find -stripe-count works"
4734
4735 test_56t() { # LU-611
4736         TDIR=$DIR/${tdir}t
4737         setup_56 $NUMFILES $NUMDIRS "-s 512k"
4738
4739         $SETSTRIPE -S 256k $TDIR/$tfile.{0,1,2,3}
4740
4741         EXPECTED=$(((NUMDIRS + 1) * NUMFILES))
4742         CMD="$LFIND -stripe-size 512k -type f $TDIR"
4743         NUMS=$($CMD | wc -l)
4744         [ $NUMS -eq $EXPECTED ] ||
4745                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4746
4747         CMD="$LFIND -stripe-size +320k -type f $TDIR"
4748         NUMS=$($CMD | wc -l)
4749         [ $NUMS -eq $EXPECTED ] ||
4750                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4751
4752         EXPECTED=$(((NUMDIRS + 1) * NUMFILES + 4))
4753         CMD="$LFIND -stripe-size +200k -type f $TDIR"
4754         NUMS=$($CMD | wc -l)
4755         [ $NUMS -eq $EXPECTED ] ||
4756                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4757
4758         CMD="$LFIND -stripe-size -640k -type f $TDIR"
4759         NUMS=$($CMD | wc -l)
4760         [ $NUMS -eq $EXPECTED ] ||
4761                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4762
4763         EXPECTED=4
4764         CMD="$LFIND -stripe-size 256k -type f $TDIR"
4765         NUMS=$($CMD | wc -l)
4766         [ $NUMS -eq $EXPECTED ] ||
4767                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4768
4769         CMD="$LFIND -stripe-size -320k -type f $TDIR"
4770         NUMS=$($CMD | wc -l)
4771         [ $NUMS -eq $EXPECTED ] ||
4772                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4773
4774         EXPECTED=0
4775         CMD="$LFIND -stripe-size 1024k -type f $TDIR"
4776         NUMS=$($CMD | wc -l)
4777         [ $NUMS -eq $EXPECTED ] ||
4778                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4779 }
4780 run_test 56t "check lfs find -stripe-size works"
4781
4782 test_56u() { # LU-611
4783         TDIR=$DIR/${tdir}u
4784         setup_56 $NUMFILES $NUMDIRS "-i 0"
4785
4786         if [[ $OSTCOUNT -gt 1 ]]; then
4787                 $SETSTRIPE -i 1 $TDIR/$tfile.{0,1,2,3}
4788                 ONESTRIPE=4
4789         else
4790                 ONESTRIPE=0
4791         fi
4792
4793         EXPECTED=$(((NUMDIRS + 1) * NUMFILES))
4794         CMD="$LFIND -stripe-index 0 -type f $TDIR"
4795         NUMS=$($CMD | wc -l)
4796         [ $NUMS -eq $EXPECTED ] ||
4797                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4798
4799         EXPECTED=$ONESTRIPE
4800         CMD="$LFIND -stripe-index 1 -type f $TDIR"
4801         NUMS=$($CMD | wc -l)
4802         [ $NUMS -eq $EXPECTED ] ||
4803                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4804
4805         CMD="$LFIND ! -stripe-index 0 -type f $TDIR"
4806         NUMS=$($CMD | wc -l)
4807         [ $NUMS -eq $EXPECTED ] ||
4808                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4809
4810         EXPECTED=0
4811         # This should produce an error and not return any files
4812         CMD="$LFIND -stripe-index $OSTCOUNT -type f $TDIR"
4813         NUMS=$($CMD 2>/dev/null | wc -l)
4814         [ $NUMS -eq $EXPECTED ] ||
4815                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4816
4817         if [[ $OSTCOUNT -gt 1 ]]; then
4818                 EXPECTED=$(((NUMDIRS + 1) * NUMFILES + ONESTRIPE))
4819                 CMD="$LFIND -stripe-index 0,1 -type f $TDIR"
4820                 NUMS=$($CMD | wc -l)
4821                 [ $NUMS -eq $EXPECTED ] ||
4822                         error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4823         fi
4824 }
4825 run_test 56u "check lfs find -stripe-index works"
4826
4827 test_56v() {
4828     local MDT_IDX=0
4829
4830     TDIR=$DIR/${tdir}v
4831     rm -rf $TDIR
4832     setup_56 $NUMFILES $NUMDIRS
4833
4834     UUID=$(mdtuuid_from_index $MDT_IDX $TDIR)
4835     [ -z "$UUID" ] && error "mdtuuid_from_index cannot find MDT index $MDT_IDX"
4836
4837     for file in $($LFIND -mdt $UUID $TDIR); do
4838         file_mdt_idx=$($GETSTRIPE -M $file)
4839         [ $file_mdt_idx -eq $MDT_IDX ] ||
4840             error "'lfind -mdt $UUID' != 'getstripe -M' ($file_mdt_idx)"
4841     done
4842 }
4843 run_test 56v "check 'lfs find -mdt match with lfs getstripe -M' ======="
4844
4845 test_56w() {
4846         [[ $OSTCOUNT -lt 2 ]] && skip_env "$OSTCOUNT < 2 OSTs -- skipping" &&
4847                 return
4848         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4849         TDIR=$DIR/${tdir}w
4850
4851     rm -rf $TDIR || error "remove $TDIR failed"
4852     setup_56 $NUMFILES $NUMDIRS "-c $OSTCOUNT" "-c1"
4853
4854     local stripe_size
4855     stripe_size=$($GETSTRIPE -S -d $TDIR) ||
4856         error "$GETSTRIPE -S -d $TDIR failed"
4857     stripe_size=${stripe_size%% *}
4858
4859     local file_size=$((stripe_size * OSTCOUNT))
4860     local file_num=$((NUMDIRS * NUMFILES + NUMFILES))
4861     local required_space=$((file_num * file_size))
4862
4863     local free_space=$($LCTL get_param -n lov.$FSNAME-clilov-*.kbytesavail |
4864                         head -n1)
4865     [[ $free_space -le $((required_space / 1024)) ]] &&
4866         skip_env "need at least $required_space bytes free space," \
4867                  "have $free_space kbytes" && return
4868
4869     local dd_bs=65536
4870     local dd_count=$((file_size / dd_bs))
4871
4872     # write data into the files
4873     local i
4874     local j
4875     local file
4876     for i in $(seq 1 $NUMFILES); do
4877         file=$TDIR/file$i
4878         yes | dd bs=$dd_bs count=$dd_count of=$file >/dev/null 2>&1 ||
4879             error "write data into $file failed"
4880     done
4881     for i in $(seq 1 $NUMDIRS); do
4882         for j in $(seq 1 $NUMFILES); do
4883             file=$TDIR/dir$i/file$j
4884             yes | dd bs=$dd_bs count=$dd_count of=$file \
4885                 >/dev/null 2>&1 ||
4886                 error "write data into $file failed"
4887         done
4888     done
4889
4890     local expected=-1
4891     [[ $OSTCOUNT -gt 1 ]] && expected=$((OSTCOUNT - 1))
4892
4893     # lfs_migrate file
4894     local cmd="$LFS_MIGRATE -y -c $expected $TDIR/file1"
4895     echo "$cmd"
4896     eval $cmd || error "$cmd failed"
4897
4898     check_stripe_count $TDIR/file1 $expected
4899
4900         if [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.90) ];
4901         then
4902                 # lfs_migrate file onto OST 0 if it is on OST 1, or onto
4903                 # OST 1 if it is on OST 0. This file is small enough to
4904                 # be on only one stripe.
4905                 file=$TDIR/migr_1_ost
4906                 dd bs=$dd_bs count=1 if=/dev/urandom of=$file >/dev/null 2>&1 ||
4907                         error "write data into $file failed"
4908                 local obdidx=$($LFS getstripe -i $file)
4909                 local oldmd5=$(md5sum $file)
4910                 local newobdidx=0
4911                 [[ $obdidx -eq 0 ]] && newobdidx=1
4912                 cmd="$LFS migrate -i $newobdidx $file"
4913                 echo $cmd
4914                 eval $cmd || error "$cmd failed"
4915                 local realobdix=$($LFS getstripe -i $file)
4916                 local newmd5=$(md5sum $file)
4917                 [[ $newobdidx -ne $realobdix ]] &&
4918                         error "new OST is different (was=$obdidx, wanted=$newobdidx, got=$realobdix)"
4919                 [[ "$oldmd5" != "$newmd5" ]] &&
4920                         error "md5sum differ: $oldmd5, $newmd5"
4921         fi
4922
4923     # lfs_migrate dir
4924     cmd="$LFS_MIGRATE -y -c $expected $TDIR/dir1"
4925     echo "$cmd"
4926     eval $cmd || error "$cmd failed"
4927
4928     for j in $(seq 1 $NUMFILES); do
4929         check_stripe_count $TDIR/dir1/file$j $expected
4930     done
4931
4932     # lfs_migrate works with lfs find
4933     cmd="$LFIND -stripe_count $OSTCOUNT -type f $TDIR |
4934          $LFS_MIGRATE -y -c $expected"
4935     echo "$cmd"
4936     eval $cmd || error "$cmd failed"
4937
4938     for i in $(seq 2 $NUMFILES); do
4939         check_stripe_count $TDIR/file$i $expected
4940     done
4941     for i in $(seq 2 $NUMDIRS); do
4942         for j in $(seq 1 $NUMFILES); do
4943             check_stripe_count $TDIR/dir$i/file$j $expected
4944         done
4945     done
4946 }
4947 run_test 56w "check lfs_migrate -c stripe_count works"
4948
4949 test_56x() {
4950         check_swap_layouts_support && return 0
4951         [[ $OSTCOUNT -lt 2 ]] &&
4952                 skip_env "need 2 OST, skipping test" && return
4953
4954         local dir0=$DIR/$tdir/$testnum
4955         test_mkdir -p $dir0 || error "creating dir $dir0"
4956
4957         local ref1=/etc/passwd
4958         local file1=$dir0/file1
4959
4960         $SETSTRIPE -c 2 $file1
4961         cp $ref1 $file1
4962         $LFS migrate -c 1 $file1 || error "migrate failed rc = $?"
4963         stripe=$($GETSTRIPE -c $file1)
4964         [[ $stripe == 1 ]] || error "stripe of $file1 is $stripe != 1"
4965         cmp $file1 $ref1 || error "content mismatch $file1 differs from $ref1"
4966
4967         # clean up
4968         rm -f $file1
4969 }
4970 run_test 56x "lfs migration support"
4971
4972 test_56xa() {
4973         check_swap_layouts_support && return 0
4974         [[ $OSTCOUNT -lt 2 ]] &&
4975                 skip_env "need 2 OST, skipping test" && return
4976
4977         local dir0=$DIR/$tdir/$testnum
4978         test_mkdir -p $dir0 || error "creating dir $dir0"
4979
4980         local ref1=/etc/passwd
4981         local file1=$dir0/file1
4982
4983         $SETSTRIPE -c 2 $file1
4984         cp $ref1 $file1
4985         $LFS migrate --block -c 1 $file1 || error "migrate failed rc = $?"
4986         local stripe=$($GETSTRIPE -c $file1)
4987         [[ $stripe == 1 ]] || error "stripe of $file1 is $stripe != 1"
4988         cmp $file1 $ref1 || error "content mismatch $file1 differs from $ref1"
4989
4990         # clean up
4991         rm -f $file1
4992 }
4993 run_test 56xa "lfs migration --block support"
4994
4995 test_56y() {
4996         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.53) ] &&
4997                 skip "No HSM $(lustre_build_version $SINGLEMDS) MDS < 2.4.53" &&
4998                 return
4999
5000         local res=""
5001         local dir0=$DIR/$tdir/$testnum
5002         test_mkdir -p $dir0 || error "creating dir $dir0"
5003         local f1=$dir0/file1
5004         local f2=$dir0/file2
5005
5006         touch $f1 || error "creating std file $f1"
5007         $MULTIOP $f2 H2c || error "creating released file $f2"
5008
5009         # a directory can be raid0, so ask only for files
5010         res=$($LFIND $dir0 -L raid0 -type f | wc -l)
5011         [[ $res == 2 ]] || error "search raid0: found $res files != 2"
5012
5013         res=$($LFIND $dir0 \! -L raid0 -type f | wc -l)
5014         [[ $res == 0 ]] || error "search !raid0: found $res files != 0"
5015
5016         # only files can be released, so no need to force file search
5017         res=$($LFIND $dir0 -L released)
5018         [[ $res == $f2 ]] || error "search released: found $res != $f2"
5019
5020         res=$($LFIND $dir0 \! -L released)
5021         [[ $res == $f1 ]] || error "search !released: found $res != $f1"
5022
5023 }
5024 run_test 56y "lfs find -L raid0|released"
5025
5026 test_56z() { # LU-4824
5027         # This checks to make sure 'lfs find' continues after errors
5028         # There are two classes of errors that should be caught:
5029         # - If multiple paths are provided, all should be searched even if one
5030         #   errors out
5031         # - If errors are encountered during the search, it should not terminate
5032         #   early
5033         local i
5034         test_mkdir $DIR/$tdir
5035         for i in d{0..9}; do
5036                 test_mkdir $DIR/$tdir/$i
5037         done
5038         touch $DIR/$tdir/d{0..9}/$tfile
5039         $LFS find $DIR/non_existent_dir $DIR/$tdir &&
5040                 error "$LFS find did not return an error"
5041         # Make a directory unsearchable. This should NOT be the last entry in
5042         # directory order.  Arbitrarily pick the 6th entry
5043         chmod 700 $($LFS find $DIR/$tdir -type d | sed '6!d')
5044         local count=$($RUNAS $LFS find $DIR/non_existent $DIR/$tdir | wc -l)
5045         # The user should be able to see 10 directories and 9 files
5046         [ $count == 19 ] || error "$LFS find did not continue after error"
5047 }
5048 run_test 56z "lfs find should continue after an error"
5049
5050 test_56aa() { # LU-5937
5051         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
5052
5053         mkdir $DIR/$tdir
5054         $LFS setdirstripe -c$MDSCOUNT $DIR/$tdir/striped_dir
5055
5056         createmany -o $DIR/$tdir/striped_dir/${tfile}- 1024
5057         local dirs=$(lfs find --size +8k $DIR/$tdir/)
5058
5059         [ -n "$dirs" ] || error "lfs find --size wrong under striped dir"
5060 }
5061 run_test 56aa "lfs find --size under striped dir"
5062
5063 test_57a() {
5064         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5065         # note test will not do anything if MDS is not local
5066         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
5067                 skip "Only applicable to ldiskfs-based MDTs"
5068                 return
5069         fi
5070
5071         remote_mds_nodsh && skip "remote MDS with nodsh" && return
5072         local MNTDEV="osd*.*MDT*.mntdev"
5073         DEV=$(do_facet $SINGLEMDS lctl get_param -n $MNTDEV)
5074         [ -z "$DEV" ] && error "can't access $MNTDEV"
5075         for DEV in $(do_facet $SINGLEMDS lctl get_param -n $MNTDEV); do
5076                 do_facet $SINGLEMDS $DUMPE2FS -h $DEV > $TMP/t57a.dump ||
5077                         error "can't access $DEV"
5078                 DEVISIZE=$(awk '/Inode size:/ { print $3 }' $TMP/t57a.dump)
5079                 [[ $DEVISIZE -gt 128 ]] || error "inode size $DEVISIZE"
5080                 rm $TMP/t57a.dump
5081         done
5082 }
5083 run_test 57a "verify MDS filesystem created with large inodes =="
5084
5085 test_57b() {
5086         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5087         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
5088                 skip "Only applicable to ldiskfs-based MDTs"
5089                 return
5090         fi
5091
5092         remote_mds_nodsh && skip "remote MDS with nodsh" && return
5093         local dir=$DIR/$tdir
5094
5095         local FILECOUNT=100
5096         local FILE1=$dir/f1
5097         local FILEN=$dir/f$FILECOUNT
5098
5099         rm -rf $dir || error "removing $dir"
5100         test_mkdir -p -c1 $dir || error "creating $dir"
5101         local mdtidx=$($LFS getstripe -M $dir)
5102         local mdtname=MDT$(printf %04x $mdtidx)
5103         local facet=mds$((mdtidx + 1))
5104
5105         echo "mcreating $FILECOUNT files"
5106         createmany -m $dir/f 1 $FILECOUNT || \
5107                 error "creating files in $dir"
5108
5109         # verify that files do not have EAs yet
5110         $GETSTRIPE $FILE1 2>&1 | grep -q "no stripe" || error "$FILE1 has an EA"
5111         $GETSTRIPE $FILEN 2>&1 | grep -q "no stripe" || error "$FILEN has an EA"
5112
5113         sync
5114         sleep 1
5115         df $dir  #make sure we get new statfs data
5116         local MDSFREE=$(do_facet $facet \
5117                 lctl get_param -n osd*.*$mdtname.kbytesfree)
5118         local MDCFREE=$(lctl get_param -n mdc.*$mdtname-mdc-*.kbytesfree)
5119         echo "opening files to create objects/EAs"
5120         local FILE
5121         for FILE in `seq -f $dir/f%g 1 $FILECOUNT`; do
5122                 $OPENFILE -f O_RDWR $FILE > /dev/null 2>&1 || error "opening $FILE"
5123         done
5124
5125         # verify that files have EAs now
5126         $GETSTRIPE $FILE1 | grep -q "obdidx" || error "$FILE1 missing EA"
5127         $GETSTRIPE $FILEN | grep -q "obdidx" || error "$FILEN missing EA"
5128
5129         sleep 1  #make sure we get new statfs data
5130         df $dir
5131         local MDSFREE2=$(do_facet $facet \
5132                 lctl get_param -n osd*.*$mdtname.kbytesfree)
5133         local MDCFREE2=$(lctl get_param -n mdc.*$mdtname-mdc-*.kbytesfree)
5134         if [[ $MDCFREE2 -lt $((MDCFREE - 16)) ]]; then
5135                 if [ "$MDSFREE" != "$MDSFREE2" ]; then
5136                         error "MDC before $MDCFREE != after $MDCFREE2"
5137                 else
5138                         echo "MDC before $MDCFREE != after $MDCFREE2"
5139                         echo "unable to confirm if MDS has large inodes"
5140                 fi
5141         fi
5142         rm -rf $dir
5143 }
5144 run_test 57b "default LOV EAs are stored inside large inodes ==="
5145
5146 test_58() {
5147         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5148         [ -z "$(which wiretest 2>/dev/null)" ] &&
5149                         skip_env "could not find wiretest" && return
5150         wiretest
5151 }
5152 run_test 58 "verify cross-platform wire constants =============="
5153
5154 test_59() {
5155         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5156         echo "touch 130 files"
5157         createmany -o $DIR/f59- 130
5158         echo "rm 130 files"
5159         unlinkmany $DIR/f59- 130
5160         sync
5161         # wait for commitment of removal
5162         wait_delete_completed
5163 }
5164 run_test 59 "verify cancellation of llog records async ========="
5165
5166 TEST60_HEAD="test_60 run $RANDOM"
5167 test_60a() {
5168         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5169         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
5170         do_facet mgs "! which run-llog.sh &> /dev/null" &&
5171                 do_facet mgs "! ls run-llog.sh &> /dev/null" &&
5172                         skip_env "missing subtest run-llog.sh" && return
5173
5174         log "$TEST60_HEAD - from kernel mode"
5175         do_facet mgs "$LCTL set_param debug=warning; $LCTL dk > /dev/null"
5176         do_facet mgs sh run-llog.sh
5177         do_facet mgs $LCTL dk > $TMP/$tfile
5178
5179         # LU-6388: test llog_reader
5180         local llog_reader=$(do_facet mgs "which llog_reader 2> /dev/null")
5181         llog_reader=${llog_reader:-$LUSTRE/utils/llog_reader}
5182         [ -z $(do_facet mgs ls -d $llog_reader 2> /dev/null) ] &&
5183                         skip_env "missing llog_reader" && return
5184         local fstype=$(facet_fstype mgs)
5185         [ $fstype != ldiskfs -a $fstype != zfs ] &&
5186                 skip_env "Only for ldiskfs or zfs type mgs" && return
5187
5188         local mntpt=$(facet_mntpt mgs)
5189         local mgsdev=$(mgsdevname 1)
5190         local fid_list
5191         local fid
5192         local rec_list
5193         local rec
5194         local rec_type
5195         local obj_file
5196         local path
5197         local seq
5198         local oid
5199         local pass=true
5200
5201         #get fid and record list
5202         fid_list=($(awk '/9_sub.*record/ { print $NF }' /$TMP/$tfile |
5203                 tail -n 4))
5204         rec_list=($(awk '/9_sub.*record/ { print $((NF-3)) }' /$TMP/$tfile |
5205                 tail -n 4))
5206         #remount mgs as ldiskfs or zfs type
5207         stop mgs || error "stop mgs failed"
5208         mount_fstype mgs || error "remount mgs failed"
5209         for ((i = 0; i < ${#fid_list[@]}; i++)); do
5210                 fid=${fid_list[i]}
5211                 rec=${rec_list[i]}
5212                 seq=$(echo $fid | awk -F ':' '{ print $1 }' | sed -e "s/^0x//g")
5213                 oid=$(echo $fid | awk -F ':' '{ print $2 }' | sed -e "s/^0x//g")
5214                 oid=$((16#$oid))
5215
5216                 case $fstype in
5217                         ldiskfs )
5218                                 obj_file=$mntpt/O/$seq/d$((oid%32))/$oid ;;
5219                         zfs )
5220                                 obj_file=$mntpt/oi.$(($((16#$seq))&127))/$fid ;;
5221                 esac
5222                 echo "obj_file is $obj_file"
5223                 do_facet mgs $llog_reader $obj_file
5224
5225                 rec_type=$(do_facet mgs $llog_reader $obj_file | grep "type=" |
5226                         awk '{ print $3 }' | sed -e "s/^type=//g")
5227                 if [ $rec_type != $rec ]; then
5228                         echo "FAILED test_60a wrong record type $rec_type," \
5229                               "should be $rec"
5230                         pass=false
5231                         break
5232                 fi
5233
5234                 #check obj path if record type is LLOG_LOGID_MAGIC
5235                 if [ "$rec" == "1064553b" ]; then
5236                         path=$(do_facet mgs $llog_reader $obj_file |
5237                                 grep "path=" | awk '{ print $NF }' |
5238                                 sed -e "s/^path=//g")
5239                         if [ $obj_file != $mntpt/$path ]; then
5240                                 echo "FAILED test_60a wrong obj path" \
5241                                       "$montpt/$path, should be $obj_file"
5242                                 pass=false
5243                                 break
5244                         fi
5245                 fi
5246         done
5247         rm -f $TMP/$tfile
5248         #restart mgs before "error", otherwise it will block the next test
5249         stop mgs || error "stop mgs failed"
5250         start mgs $(mgsdevname) $MGS_MOUNT_OPTS || error "start mgs failed"
5251         $pass || error "test failed, see FAILED test_60a messages for specifics"
5252 }
5253 run_test 60a "llog_test run from kernel module and test llog_reader =========="
5254
5255 test_60b() { # bug 6411
5256         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5257         dmesg > $DIR/$tfile
5258         LLOG_COUNT=$(dmesg | awk "/$TEST60_HEAD/ { marker = 1; from_marker = 0; }
5259                                 /llog.test/ {
5260                                         if (marker)
5261                                                 from_marker++
5262                                         from_begin++
5263                                 }
5264                                 END {
5265                                         if (marker)
5266                                                 print from_marker
5267                                         else
5268                                                 print from_begin
5269                                 }")
5270         [[ $LLOG_COUNT -gt 100 ]] &&
5271                 error "CDEBUG_LIMIT not limiting messages ($LLOG_COUNT)" || true
5272 }
5273 run_test 60b "limit repeated messages from CERROR/CWARN ========"
5274
5275 test_60c() {
5276         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5277         echo "create 5000 files"
5278         createmany -o $DIR/f60c- 5000
5279 #define OBD_FAIL_MDS_LLOG_CREATE_FAILED  0x137
5280         lctl set_param fail_loc=0x80000137
5281         unlinkmany $DIR/f60c- 5000
5282         lctl set_param fail_loc=0
5283 }
5284 run_test 60c "unlink file when mds full"
5285
5286 test_60d() {
5287         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5288         SAVEPRINTK=$(lctl get_param -n printk)
5289
5290         # verify "lctl mark" is even working"
5291         MESSAGE="test message ID $RANDOM $$"
5292         $LCTL mark "$HOSTNAME $MESSAGE" || error "$LCTL mark failed"
5293         dmesg | grep -q "$MESSAGE" || error "didn't find debug marker in log"
5294
5295         lctl set_param printk=0 || error "set lnet.printk failed"
5296         lctl get_param -n printk | grep emerg || error "lnet.printk dropped emerg"
5297         MESSAGE="new test message ID $RANDOM $$"
5298         # Assume here that libcfs_debug_mark_buffer() uses D_WARNING
5299         $LCTL mark "$HOSTNAME $MESSAGE" || error "$LCTL mark failed"
5300         dmesg | grep -q "$MESSAGE" && error "D_WARNING wasn't masked" || true
5301
5302         lctl set_param -n printk="$SAVEPRINTK"
5303 }
5304 run_test 60d "test printk console message masking"
5305
5306 test_60e() {
5307         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5308         touch $DIR/$tfile
5309 #define OBD_FAIL_MDS_LLOG_CREATE_FAILED2  0x15b
5310         do_facet mds1 lctl set_param fail_loc=0x15b
5311         rm $DIR/$tfile
5312 }
5313 run_test 60e "no space while new llog is being created"
5314
5315 test_61() {
5316         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5317         f="$DIR/f61"
5318         dd if=/dev/zero of=$f bs=$(page_size) count=1 || error "dd $f failed"
5319         cancel_lru_locks osc
5320         $MULTIOP $f OSMWUc || error "$MULTIOP $f failed"
5321         sync
5322 }
5323 run_test 61 "mmap() writes don't make sync hang ================"
5324
5325 # bug 2330 - insufficient obd_match error checking causes LBUG
5326 test_62() {
5327         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5328         f="$DIR/f62"
5329         echo foo > $f
5330         cancel_lru_locks osc
5331         lctl set_param fail_loc=0x405
5332         cat $f && error "cat succeeded, expect -EIO"
5333         lctl set_param fail_loc=0
5334 }
5335 # This test is now irrelevant (as of bug 10718 inclusion), we no longer
5336 # match every page all of the time.
5337 #run_test 62 "verify obd_match failure doesn't LBUG (should -EIO)"
5338
5339 # bug 2319 - oig_wait() interrupted causes crash because of invalid waitq.
5340 # Though this test is irrelevant anymore, it helped to reveal some
5341 # other grant bugs (LU-4482), let's keep it.
5342 test_63a() {   # was test_63
5343         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5344         MAX_DIRTY_MB=`lctl get_param -n osc.*.max_dirty_mb | head -n 1`
5345         for i in `seq 10` ; do
5346                 dd if=/dev/zero of=$DIR/f63 bs=8k &
5347                 sleep 5
5348                 kill $!
5349                 sleep 1
5350         done
5351
5352         rm -f $DIR/f63 || true
5353 }
5354 run_test 63a "Verify oig_wait interruption does not crash ======="
5355
5356 # bug 2248 - async write errors didn't return to application on sync
5357 # bug 3677 - async write errors left page locked
5358 test_63b() {
5359         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5360         debugsave
5361         lctl set_param debug=-1
5362
5363         # ensure we have a grant to do async writes
5364         dd if=/dev/zero of=$DIR/$tfile bs=4k count=1
5365         rm $DIR/$tfile
5366
5367         sync    # sync lest earlier test intercept the fail_loc
5368
5369         #define OBD_FAIL_OSC_BRW_PREP_REQ        0x406
5370         lctl set_param fail_loc=0x80000406
5371         $MULTIOP $DIR/$tfile Owy && \
5372                 error "sync didn't return ENOMEM"
5373         sync; sleep 2; sync     # do a real sync this time to flush page
5374         lctl get_param -n llite.*.dump_page_cache | grep locked && \
5375                 error "locked page left in cache after async error" || true
5376         debugrestore
5377 }
5378 run_test 63b "async write errors should be returned to fsync ==="
5379
5380 test_64a () {
5381         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5382         df $DIR
5383         lctl get_param -n osc.*[oO][sS][cC][_-]*.cur* | grep "[0-9]"
5384 }
5385 run_test 64a "verify filter grant calculations (in kernel) ====="
5386
5387 test_64b () {
5388         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5389         sh oos.sh $MOUNT || error "oos.sh failed: $?"
5390 }
5391 run_test 64b "check out-of-space detection on client ==========="
5392
5393 test_64c() {
5394         $LCTL set_param osc.*OST0000-osc-[^mM]*.cur_grant_bytes=0
5395 }
5396 run_test 64c "verify grant shrink ========================------"
5397
5398 # bug 1414 - set/get directories' stripe info
5399 test_65a() {
5400         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5401         test_mkdir -p $DIR/$tdir
5402         touch $DIR/$tdir/f1
5403         $LVERIFY $DIR/$tdir $DIR/$tdir/f1 || error "lverify failed"
5404 }
5405 run_test 65a "directory with no stripe info ===================="
5406
5407 test_65b() {
5408         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5409         test_mkdir -p $DIR/$tdir
5410         local STRIPESIZE=$($GETSTRIPE -S $DIR/$tdir)
5411
5412         $SETSTRIPE -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
5413                                                 error "setstripe"
5414         touch $DIR/$tdir/f2
5415         $LVERIFY $DIR/$tdir $DIR/$tdir/f2 || error "lverify failed"
5416 }
5417 run_test 65b "directory setstripe -S stripe_size*2 -i 0 -c 1"
5418
5419 test_65c() {
5420         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5421         if [[ $OSTCOUNT -gt 1 ]]; then
5422                 test_mkdir -p $DIR/$tdir
5423                 local STRIPESIZE=$($GETSTRIPE -S $DIR/$tdir)
5424
5425                 $SETSTRIPE -S $(($STRIPESIZE * 4)) -i 1 \
5426                         -c $(($OSTCOUNT - 1)) $DIR/$tdir || error "setstripe"
5427                 touch $DIR/$tdir/f3
5428                 $LVERIFY $DIR/$tdir $DIR/$tdir/f3 || error "lverify failed"
5429         fi
5430 }
5431 run_test 65c "directory setstripe -S stripe_size*4 -i 1 -c $((OSTCOUNT-1))"
5432
5433 test_65d() {
5434         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5435         test_mkdir -p $DIR/$tdir
5436         local STRIPECOUNT=$($GETSTRIPE -c $DIR/$tdir)
5437         local STRIPESIZE=$($GETSTRIPE -S $DIR/$tdir)
5438
5439         if [[ $STRIPECOUNT -le 0 ]]; then
5440                 sc=1
5441         elif [[ $STRIPECOUNT -gt 2000 ]]; then
5442 #LOV_MAX_STRIPE_COUNT is 2000
5443                 [[ $OSTCOUNT -gt 2000 ]] && sc=2000 || sc=$(($OSTCOUNT - 1))
5444         else
5445                 sc=$(($STRIPECOUNT - 1))
5446         fi
5447         $SETSTRIPE -S $STRIPESIZE -c $sc $DIR/$tdir || error "setstripe"
5448         touch $DIR/$tdir/f4 $DIR/$tdir/f5
5449         $LVERIFY $DIR/$tdir $DIR/$tdir/f4 $DIR/$tdir/f5 ||
5450                 error "lverify failed"
5451 }
5452 run_test 65d "directory setstripe -S stripe_size -c stripe_count"
5453
5454 test_65e() {
5455         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5456         test_mkdir -p $DIR/$tdir
5457
5458         $SETSTRIPE $DIR/$tdir || error "setstripe"
5459         $GETSTRIPE -v $DIR/$tdir | grep "Default" ||
5460                                         error "no stripe info failed"
5461         touch $DIR/$tdir/f6
5462         $LVERIFY $DIR/$tdir $DIR/$tdir/f6 || error "lverify failed"
5463 }
5464 run_test 65e "directory setstripe defaults ======================="
5465
5466 test_65f() {
5467         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5468         test_mkdir -p $DIR/${tdir}f
5469         $RUNAS $SETSTRIPE $DIR/${tdir}f && error "setstripe succeeded" || true
5470 }
5471 run_test 65f "dir setstripe permission (should return error) ==="
5472
5473 test_65g() {
5474         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5475         test_mkdir -p $DIR/$tdir
5476         local STRIPESIZE=$($GETSTRIPE -S $DIR/$tdir)
5477
5478         $SETSTRIPE -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
5479                                                         error "setstripe"
5480         $SETSTRIPE -d $DIR/$tdir || error "setstripe"
5481         $GETSTRIPE -v $DIR/$tdir | grep "Default" ||
5482                 error "delete default stripe failed"
5483 }
5484 run_test 65g "directory setstripe -d ==========================="
5485
5486 test_65h() {
5487         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5488         test_mkdir -p $DIR/$tdir
5489         local STRIPESIZE=$($GETSTRIPE -S $DIR/$tdir)
5490
5491         $SETSTRIPE -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
5492                                                         error "setstripe"
5493         test_mkdir -p $DIR/$tdir/dd1
5494         [ $($GETSTRIPE -c $DIR/$tdir) == $($GETSTRIPE -c $DIR/$tdir/dd1) ] ||
5495                 error "stripe info inherit failed"
5496 }
5497 run_test 65h "directory stripe info inherit ===================="
5498
5499 test_65i() { # bug6367
5500         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5501         $SETSTRIPE -S 65536 -c -1 $MOUNT
5502 }
5503 run_test 65i "set non-default striping on root directory (bug 6367)="
5504
5505 test_65ia() { # bug12836
5506         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5507         $GETSTRIPE $MOUNT || error "getstripe $MOUNT failed"
5508 }
5509 run_test 65ia "getstripe on -1 default directory striping"
5510
5511 test_65ib() { # bug12836
5512         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5513         $GETSTRIPE -v $MOUNT || error "getstripe -v $MOUNT failed"
5514 }
5515 run_test 65ib "getstripe -v on -1 default directory striping"
5516
5517 test_65ic() { # bug12836
5518         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5519         $LFS find -mtime -1 $MOUNT > /dev/null || error "find $MOUNT failed"
5520 }
5521 run_test 65ic "new find on -1 default directory striping"
5522
5523 test_65j() { # bug6367
5524         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5525         sync; sleep 1
5526         # if we aren't already remounting for each test, do so for this test
5527         if [ "$CLEANUP" = ":" -a "$I_MOUNTED" = "yes" ]; then
5528                 cleanup || error "failed to unmount"
5529                 setup
5530         fi
5531         $SETSTRIPE -d $MOUNT || error "setstripe failed"
5532 }
5533 run_test 65j "set default striping on root directory (bug 6367)="
5534
5535 test_65k() { # bug11679
5536         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5537         [[ $OSTCOUNT -lt 2 ]] && skip_env "too few OSTs" && return
5538         remote_mds_nodsh && skip "remote MDS with nodsh" && return
5539
5540     echo "Check OST status: "
5541     local MDS_OSCS=`do_facet $SINGLEMDS lctl dl |
5542               awk '/[oO][sS][cC].*md[ts]/ { print $4 }'`
5543
5544     for OSC in $MDS_OSCS; do
5545         echo $OSC "is activate"
5546         do_facet $SINGLEMDS lctl --device %$OSC activate
5547     done
5548
5549     mkdir -p $DIR/$tdir
5550     for INACTIVE_OSC in $MDS_OSCS; do
5551         echo "Deactivate: " $INACTIVE_OSC
5552         do_facet $SINGLEMDS lctl --device %$INACTIVE_OSC deactivate
5553         for STRIPE_OSC in $MDS_OSCS; do
5554             OST=`osc_to_ost $STRIPE_OSC`
5555             IDX=`do_facet $SINGLEMDS lctl get_param -n lov.*md*.target_obd |
5556                  awk -F: /$OST/'{ print $1 }' | head -n 1`
5557
5558             [ -f $DIR/$tdir/$IDX ] && continue
5559             echo "$SETSTRIPE -i $IDX -c 1 $DIR/$tdir/$IDX"
5560             $SETSTRIPE -i $IDX -c 1 $DIR/$tdir/$IDX
5561             RC=$?
5562             [ $RC -ne 0 ] && error "setstripe should have succeeded"
5563         done
5564         rm -f $DIR/$tdir/*
5565         echo $INACTIVE_OSC "is Activate."
5566         do_facet $SINGLEMDS lctl --device  %$INACTIVE_OSC activate
5567     done
5568 }
5569 run_test 65k "validate manual striping works properly with deactivated OSCs"
5570
5571 test_65l() { # bug 12836
5572         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5573         test_mkdir -p $DIR/$tdir/test_dir
5574         $SETSTRIPE -c -1 $DIR/$tdir/test_dir
5575         $LFS find -mtime -1 $DIR/$tdir >/dev/null
5576 }
5577 run_test 65l "lfs find on -1 stripe dir ========================"
5578
5579 # bug 2543 - update blocks count on client
5580 test_66() {
5581         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5582         COUNT=${COUNT:-8}
5583         dd if=/dev/zero of=$DIR/f66 bs=1k count=$COUNT
5584         sync; sync_all_data; sync; sync_all_data
5585         cancel_lru_locks osc
5586         BLOCKS=`ls -s $DIR/f66 | awk '{ print $1 }'`
5587         [ $BLOCKS -ge $COUNT ] || error "$DIR/f66 blocks $BLOCKS < $COUNT"
5588 }
5589 run_test 66 "update inode blocks count on client ==============="
5590
5591 LLOOP=
5592 LLITELOOPLOAD=
5593 cleanup_68() {
5594         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5595         trap 0
5596         if [ ! -z "$LLOOP" ]; then
5597                 if swapon -s | grep -q $LLOOP; then
5598                         swapoff $LLOOP || error "swapoff failed"
5599                 fi
5600
5601                 $LCTL blockdev_detach $LLOOP || error "detach failed"
5602                 rm -f $LLOOP
5603                 unset LLOOP
5604         fi
5605         if [ ! -z "$LLITELOOPLOAD" ]; then
5606                 rmmod llite_lloop
5607                 unset LLITELOOPLOAD
5608         fi
5609         rm -f $DIR/f68*
5610 }
5611
5612 meminfo() {
5613         awk '($1 == "'$1':") { print $2 }' /proc/meminfo
5614 }
5615
5616 swap_used() {
5617         swapon -s | awk '($1 == "'$1'") { print $4 }'
5618 }
5619
5620 # test case for lloop driver, basic function
5621 test_68a() {
5622         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5623         [ "$UID" != 0 ] && skip_env "must run as root" && return
5624         llite_lloop_enabled || \
5625                 { skip_env "llite_lloop module disabled" && return; }
5626
5627         trap cleanup_68 EXIT
5628
5629         if ! module_loaded llite_lloop; then
5630                 if load_module llite/llite_lloop; then
5631                         LLITELOOPLOAD=yes
5632                 else
5633                         skip_env "can't find module llite_lloop"
5634                         return
5635                 fi
5636         fi
5637
5638         LLOOP=$TMP/lloop.`date +%s`.`date +%N`
5639         dd if=/dev/zero of=$DIR/f68a bs=4k count=1024
5640         $LCTL blockdev_attach $DIR/f68a $LLOOP || error "attach failed"
5641
5642         directio rdwr $LLOOP 0 1024 4096 || error "direct write failed"
5643         directio rdwr $LLOOP 0 1025 4096 && error "direct write should fail"
5644
5645         cleanup_68
5646 }
5647 run_test 68a "lloop driver - basic test ========================"
5648
5649 # excercise swapping to lustre by adding a high priority swapfile entry
5650 # and then consuming memory until it is used.
5651 test_68b() {  # was test_68
5652         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5653         [ "$UID" != 0 ] && skip_env "must run as root" && return
5654         lctl get_param -n devices | grep -q obdfilter && \
5655                 skip "local OST" && return
5656
5657         grep -q llite_lloop /proc/modules
5658         [ $? -ne 0 ] && skip "can't find module llite_lloop" && return
5659
5660         [ -z "`$LCTL list_nids | grep -v tcp`" ] && \
5661                 skip "can't reliably test swap with TCP" && return
5662
5663         MEMTOTAL=`meminfo MemTotal`
5664         NR_BLOCKS=$((MEMTOTAL>>8))
5665         [[ $NR_BLOCKS -le 2048 ]] && NR_BLOCKS=2048
5666
5667         LLOOP=$TMP/lloop.`date +%s`.`date +%N`
5668         dd if=/dev/zero of=$DIR/f68b bs=64k seek=$NR_BLOCKS count=1
5669         mkswap $DIR/f68b
5670
5671         $LCTL blockdev_attach $DIR/f68b $LLOOP || error "attach failed"
5672
5673         trap cleanup_68 EXIT
5674
5675         swapon -p 32767 $LLOOP || error "swapon $LLOOP failed"
5676
5677         echo "before: `swapon -s | grep $LLOOP`"
5678         $MEMHOG $MEMTOTAL || error "error allocating $MEMTOTAL kB"
5679         echo "after: `swapon -s | grep $LLOOP`"
5680         SWAPUSED=`swap_used $LLOOP`
5681
5682         cleanup_68
5683
5684         [ $SWAPUSED -eq 0 ] && echo "no swap used???" || true
5685 }
5686 run_test 68b "support swapping to Lustre ========================"
5687
5688 # bug5265, obdfilter oa2dentry return -ENOENT
5689 # #define OBD_FAIL_SRV_ENOENT 0x217
5690 test_69() {
5691         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5692         remote_ost_nodsh && skip "remote OST with nodsh" && return
5693
5694         f="$DIR/$tfile"
5695         $SETSTRIPE -c 1 -i 0 $f
5696
5697         $DIRECTIO write ${f}.2 0 1 || error "directio write error"
5698
5699         do_facet ost1 lctl set_param fail_loc=0x217
5700         $TRUNCATE $f 1 # vmtruncate() will ignore truncate() error.
5701         $DIRECTIO write $f 0 2 && error "write succeeded, expect -ENOENT"
5702
5703         do_facet ost1 lctl set_param fail_loc=0
5704         $DIRECTIO write $f 0 2 || error "write error"
5705
5706         cancel_lru_locks osc
5707         $DIRECTIO read $f 0 1 || error "read error"
5708
5709         do_facet ost1 lctl set_param fail_loc=0x217
5710         $DIRECTIO read $f 1 1 && error "read succeeded, expect -ENOENT"
5711
5712         do_facet ost1 lctl set_param fail_loc=0
5713         rm -f $f
5714 }
5715 run_test 69 "verify oa2dentry return -ENOENT doesn't LBUG ======"
5716
5717 test_71() {
5718         test_mkdir -p $DIR/$tdir
5719         $LFS setdirstripe -D -c$MDSCOUNT $DIR/$tdir
5720         sh rundbench -C -D $DIR/$tdir 2 || error "dbench failed!"
5721 }
5722 run_test 71 "Running dbench on lustre (don't segment fault) ===="
5723
5724 test_72a() { # bug 5695 - Test that on 2.6 remove_suid works properly
5725         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5726         [ "$RUNAS_ID" = "$UID" ] &&
5727                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
5728
5729         # Check that testing environment is properly set up. Skip if not
5730         FAIL_ON_ERROR=false check_runas_id_ret $RUNAS_ID $RUNAS_GID $RUNAS || {
5731                 skip_env "User $RUNAS_ID does not exist - skipping"
5732                 return 0
5733         }
5734         touch $DIR/$tfile
5735         chmod 777 $DIR/$tfile
5736         chmod ug+s $DIR/$tfile
5737         $RUNAS dd if=/dev/zero of=$DIR/$tfile bs=512 count=1 ||
5738                 error "$RUNAS dd $DIR/$tfile failed"
5739         # See if we are still setuid/sgid
5740         test -u $DIR/$tfile -o -g $DIR/$tfile &&
5741                 error "S/gid is not dropped on write"
5742         # Now test that MDS is updated too
5743         cancel_lru_locks mdc
5744         test -u $DIR/$tfile -o -g $DIR/$tfile &&
5745                 error "S/gid is not dropped on MDS"
5746         rm -f $DIR/$tfile
5747 }
5748 run_test 72a "Test that remove suid works properly (bug5695) ===="
5749
5750 test_72b() { # bug 24226 -- keep mode setting when size is not changing
5751         local perm
5752
5753         [ "$RUNAS_ID" = "$UID" ] && \
5754                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
5755         [ "$RUNAS_ID" -eq 0 ] && \
5756                 skip_env "RUNAS_ID = 0 -- skipping" && return
5757
5758         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5759         # Check that testing environment is properly set up. Skip if not
5760         FAIL_ON_ERROR=false check_runas_id_ret $RUNAS_ID $RUNAS_ID $RUNAS || {
5761                 skip_env "User $RUNAS_ID does not exist - skipping"
5762                 return 0
5763         }
5764         touch $DIR/${tfile}-f{g,u}
5765         test_mkdir $DIR/${tfile}-dg
5766         test_mkdir $DIR/${tfile}-du
5767         chmod 770 $DIR/${tfile}-{f,d}{g,u}
5768         chmod g+s $DIR/${tfile}-{f,d}g
5769         chmod u+s $DIR/${tfile}-{f,d}u
5770         for perm in 777 2777 4777; do
5771                 $RUNAS chmod $perm $DIR/${tfile}-fg && error "S/gid file allowed improper chmod to $perm"
5772                 $RUNAS chmod $perm $DIR/${tfile}-fu && error "S/uid file allowed improper chmod to $perm"
5773                 $RUNAS chmod $perm $DIR/${tfile}-dg && error "S/gid dir allowed improper chmod to $perm"
5774                 $RUNAS chmod $perm $DIR/${tfile}-du && error "S/uid dir allowed improper chmod to $perm"
5775         done
5776         true
5777 }
5778 run_test 72b "Test that we keep mode setting if without file data changed (bug 24226)"
5779
5780 # bug 3462 - multiple simultaneous MDC requests
5781 test_73() {
5782         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5783         test_mkdir $DIR/d73-1
5784         test_mkdir $DIR/d73-2
5785         multiop_bg_pause $DIR/d73-1/f73-1 O_c || return 1
5786         pid1=$!
5787
5788         lctl set_param fail_loc=0x80000129
5789         $MULTIOP $DIR/d73-1/f73-2 Oc &
5790         sleep 1
5791         lctl set_param fail_loc=0
5792
5793         $MULTIOP $DIR/d73-2/f73-3 Oc &
5794         pid3=$!
5795
5796         kill -USR1 $pid1
5797         wait $pid1 || return 1
5798
5799         sleep 25
5800
5801         $CHECKSTAT -t file $DIR/d73-1/f73-1 || return 4
5802         $CHECKSTAT -t file $DIR/d73-1/f73-2 || return 5
5803         $CHECKSTAT -t file $DIR/d73-2/f73-3 || return 6
5804
5805         rm -rf $DIR/d73-*
5806 }
5807 run_test 73 "multiple MDC requests (should not deadlock)"
5808
5809 test_74a() { # bug 6149, 6184
5810         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5811         #define OBD_FAIL_LDLM_ENQUEUE_OLD_EXPORT 0x30e
5812         #
5813         # very important to OR with OBD_FAIL_ONCE (0x80000000) -- otherwise it
5814         # will spin in a tight reconnection loop
5815         touch $DIR/f74a
5816         $LCTL set_param fail_loc=0x8000030e
5817         # get any lock that won't be difficult - lookup works.
5818         ls $DIR/f74a
5819         $LCTL set_param fail_loc=0
5820         rm -f $DIR/f74a
5821         true
5822 }
5823 run_test 74a "ldlm_enqueue freed-export error path, ls (shouldn't LBUG)"
5824
5825 test_74b() { # bug 13310
5826         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5827         #define OBD_FAIL_LDLM_ENQUEUE_OLD_EXPORT 0x30e
5828         #
5829         # very important to OR with OBD_FAIL_ONCE (0x80000000) -- otherwise it
5830         # will spin in a tight reconnection loop
5831         $LCTL set_param fail_loc=0x8000030e
5832         # get a "difficult" lock
5833         touch $DIR/f74b
5834         $LCTL set_param fail_loc=0
5835         rm -f $DIR/f74b
5836         true
5837 }
5838 run_test 74b "ldlm_enqueue freed-export error path, touch (shouldn't LBUG)"
5839
5840 test_74c() {
5841         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5842         #define OBD_FAIL_LDLM_NEW_LOCK
5843         $LCTL set_param fail_loc=0x319
5844         touch $DIR/$tfile && error "touch successful"
5845         $LCTL set_param fail_loc=0
5846         true
5847 }
5848 run_test 74c "ldlm_lock_create error path, (shouldn't LBUG)"
5849
5850 num_inodes() {
5851         awk '/lustre_inode_cache/ {print $2; exit}' /proc/slabinfo
5852 }
5853
5854 get_inode_slab_tunables() {
5855         awk '/lustre_inode_cache/ {print $9," ",$10," ",$11; exit}' /proc/slabinfo
5856 }
5857
5858 set_inode_slab_tunables() {
5859         echo "lustre_inode_cache $1" > /proc/slabinfo
5860 }
5861
5862 test_76() { # Now for bug 20433, added originally in bug 1443
5863         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5864         local SLAB_SETTINGS=`get_inode_slab_tunables`
5865         local CPUS=`getconf _NPROCESSORS_ONLN`
5866         # we cannot set limit below 1 which means 1 inode in each
5867         # per-cpu cache is still allowed
5868         set_inode_slab_tunables "1 1 0"
5869         cancel_lru_locks osc
5870         BEFORE_INODES=$(num_inodes)
5871         echo "before inodes: $BEFORE_INODES"
5872         local COUNT=1000
5873         [ "$SLOW" = "no" ] && COUNT=100
5874         for i in $(seq $COUNT); do
5875                 touch $DIR/$tfile
5876                 rm -f $DIR/$tfile
5877         done
5878         cancel_lru_locks osc
5879         AFTER_INODES=$(num_inodes)
5880         echo "after inodes: $AFTER_INODES"
5881         local wait=0
5882         while [[ $((AFTER_INODES-1*CPUS)) -gt $BEFORE_INODES ]]; do
5883                 sleep 2
5884                 AFTER_INODES=$(num_inodes)
5885                 wait=$((wait+2))
5886                 echo "wait $wait seconds inodes: $AFTER_INODES"
5887                 if [ $wait -gt 30 ]; then
5888                         error "inode slab grew from $BEFORE_INODES to $AFTER_INODES"
5889                 fi
5890         done
5891         set_inode_slab_tunables "$SLAB_SETTINGS"
5892 }
5893 run_test 76 "confirm clients recycle inodes properly ===="
5894
5895
5896 export ORIG_CSUM=""
5897 set_checksums()
5898 {
5899         # Note: in sptlrpc modes which enable its own bulk checksum, the
5900         # original crc32_le bulk checksum will be automatically disabled,
5901         # and the OBD_FAIL_OSC_CHECKSUM_SEND/OBD_FAIL_OSC_CHECKSUM_RECEIVE
5902         # will be checked by sptlrpc code against sptlrpc bulk checksum.
5903         # In this case set_checksums() will not be no-op, because sptlrpc
5904         # bulk checksum will be enabled all through the test.
5905
5906         [ "$ORIG_CSUM" ] || ORIG_CSUM=`lctl get_param -n osc.*.checksums | head -n1`
5907         lctl set_param -n osc.*.checksums $1
5908         return 0
5909 }
5910
5911 export ORIG_CSUM_TYPE="`lctl get_param -n osc.*osc-[^mM]*.checksum_type |
5912                         sed 's/.*\[\(.*\)\].*/\1/g' | head -n1`"
5913 CKSUM_TYPES=${CKSUM_TYPES:-"crc32 adler"}
5914 [ "$ORIG_CSUM_TYPE" = "crc32c" ] && CKSUM_TYPES="$CKSUM_TYPES crc32c"
5915 set_checksum_type()
5916 {
5917         lctl set_param -n osc.*osc-[^mM]*.checksum_type $1
5918         log "set checksum type to $1"
5919         return 0
5920 }
5921 F77_TMP=$TMP/f77-temp
5922 F77SZ=8
5923 setup_f77() {
5924         dd if=/dev/urandom of=$F77_TMP bs=1M count=$F77SZ || \
5925                 error "error writing to $F77_TMP"
5926 }
5927
5928 test_77a() { # bug 10889
5929         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5930         $GSS && skip "could not run with gss" && return
5931         [ ! -f $F77_TMP ] && setup_f77
5932         set_checksums 1
5933         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ || error "dd error"
5934         set_checksums 0
5935         rm -f $DIR/$tfile
5936 }
5937 run_test 77a "normal checksum read/write operation"
5938
5939 test_77b() { # bug 10889
5940         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5941         $GSS && skip "could not run with gss" && return
5942         [ ! -f $F77_TMP ] && setup_f77
5943         #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
5944         $LCTL set_param fail_loc=0x80000409
5945         set_checksums 1
5946
5947         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ conv=sync ||
5948                 error "dd error: $?"
5949         $LCTL set_param fail_loc=0
5950
5951         for algo in $CKSUM_TYPES; do
5952                 cancel_lru_locks osc
5953                 set_checksum_type $algo
5954                 #define OBD_FAIL_OSC_CHECKSUM_RECEIVE    0x408
5955                 $LCTL set_param fail_loc=0x80000408
5956                 cmp $F77_TMP $DIR/$tfile || error "file compare failed"
5957                 $LCTL set_param fail_loc=0
5958         done
5959         set_checksums 0
5960         set_checksum_type $ORIG_CSUM_TYPE
5961         rm -f $DIR/$tfile
5962 }
5963 run_test 77b "checksum error on client write, read"
5964
5965 test_77d() { # bug 10889
5966         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5967         $GSS && skip "could not run with gss" && return
5968         #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
5969         $LCTL set_param fail_loc=0x80000409
5970         set_checksums 1
5971         $DIRECTIO write $DIR/$tfile 0 $F77SZ $((1024 * 1024)) ||
5972                 error "direct write: rc=$?"
5973         $LCTL set_param fail_loc=0
5974         set_checksums 0
5975
5976         #define OBD_FAIL_OSC_CHECKSUM_RECEIVE    0x408
5977         $LCTL set_param fail_loc=0x80000408
5978         set_checksums 1
5979         cancel_lru_locks osc
5980         $DIRECTIO read $DIR/$tfile 0 $F77SZ $((1024 * 1024)) ||
5981                 error "direct read: rc=$?"
5982         $LCTL set_param fail_loc=0
5983         set_checksums 0
5984 }
5985 run_test 77d "checksum error on OST direct write, read"
5986
5987 test_77f() { # bug 10889
5988         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5989         $GSS && skip "could not run with gss" && return
5990         set_checksums 1
5991         for algo in $CKSUM_TYPES; do
5992                 cancel_lru_locks osc
5993                 set_checksum_type $algo
5994                 #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
5995                 $LCTL set_param fail_loc=0x409
5996                 $DIRECTIO write $DIR/$tfile 0 $F77SZ $((1024 * 1024)) &&
5997                         error "direct write succeeded"
5998                 $LCTL set_param fail_loc=0
5999         done
6000         set_checksum_type $ORIG_CSUM_TYPE
6001         set_checksums 0
6002 }
6003 run_test 77f "repeat checksum error on write (expect error)"
6004
6005 test_77g() { # bug 10889
6006         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6007         $GSS && skip "could not run with gss" && return
6008         remote_ost_nodsh && skip "remote OST with nodsh" && return
6009
6010         [ ! -f $F77_TMP ] && setup_f77
6011
6012         $SETSTRIPE -c 1 -i 0 $DIR/$tfile
6013         #define OBD_FAIL_OST_CHECKSUM_RECEIVE       0x21a
6014         do_facet ost1 lctl set_param fail_loc=0x8000021a
6015         set_checksums 1
6016         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ ||
6017                 error "write error: rc=$?"
6018         do_facet ost1 lctl set_param fail_loc=0
6019         set_checksums 0
6020
6021         cancel_lru_locks osc
6022         #define OBD_FAIL_OST_CHECKSUM_SEND          0x21b
6023         do_facet ost1 lctl set_param fail_loc=0x8000021b
6024         set_checksums 1
6025         cmp $F77_TMP $DIR/$tfile || error "file compare failed"
6026         do_facet ost1 lctl set_param fail_loc=0
6027         set_checksums 0
6028 }
6029 run_test 77g "checksum error on OST write, read"
6030
6031 test_77i() { # bug 13805
6032         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6033         $GSS && skip "could not run with gss" && return
6034         #define OBD_FAIL_OSC_CONNECT_CKSUM       0x40b
6035         lctl set_param fail_loc=0x40b
6036         remount_client $MOUNT
6037         lctl set_param fail_loc=0
6038         for VALUE in `lctl get_param osc.*osc-[^mM]*.checksum_type`; do
6039                 PARAM=`echo ${VALUE[0]} | cut -d "=" -f1`
6040                 algo=`lctl get_param -n $PARAM | sed 's/.*\[\(.*\)\].*/\1/g'`
6041                 [ "$algo" = "adler" ] || error "algo set to $algo instead of adler"
6042         done
6043         remount_client $MOUNT
6044 }
6045 run_test 77i "client not supporting OSD_CONNECT_CKSUM"
6046
6047 test_77j() { # bug 13805
6048         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6049         $GSS && skip "could not run with gss" && return
6050         #define OBD_FAIL_OSC_CKSUM_ADLER_ONLY    0x40c
6051         lctl set_param fail_loc=0x40c
6052         remount_client $MOUNT
6053         lctl set_param fail_loc=0
6054         sleep 2 # wait async osc connect to finish
6055         for VALUE in `lctl get_param osc.*osc-[^mM]*.checksum_type`; do
6056                 PARAM=`echo ${VALUE[0]} | cut -d "=" -f1`
6057                 algo=`lctl get_param -n $PARAM | sed 's/.*\[\(.*\)\].*/\1/g'`
6058                 [ "$algo" = "adler" ] || error "algo set to $algo instead of adler"
6059         done
6060         remount_client $MOUNT
6061 }
6062 run_test 77j "client only supporting ADLER32"
6063
6064 [ "$ORIG_CSUM" ] && set_checksums $ORIG_CSUM || true
6065 rm -f $F77_TMP
6066 unset F77_TMP
6067
6068 test_78() { # bug 10901
6069         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6070         remote_ost || { skip_env "local OST" && return; }
6071
6072         NSEQ=5
6073         F78SIZE=$(($(awk '/MemFree:/ { print $2 }' /proc/meminfo) / 1024))
6074         echo "MemFree: $F78SIZE, Max file size: $MAXFREE"
6075         MEMTOTAL=$(($(awk '/MemTotal:/ { print $2 }' /proc/meminfo) / 1024))
6076         echo "MemTotal: $MEMTOTAL"
6077
6078         # reserve 256MB of memory for the kernel and other running processes,
6079         # and then take 1/2 of the remaining memory for the read/write buffers.
6080         if [ $MEMTOTAL -gt 512 ] ;then
6081                 MEMTOTAL=$(((MEMTOTAL - 256 ) / 2))
6082         else
6083                 # for those poor memory-starved high-end clusters...
6084                 MEMTOTAL=$((MEMTOTAL / 2))
6085         fi
6086         echo "Mem to use for directio: $MEMTOTAL"
6087
6088         [[ $F78SIZE -gt $MEMTOTAL ]] && F78SIZE=$MEMTOTAL
6089         [[ $F78SIZE -gt 512 ]] && F78SIZE=512
6090         [[ $F78SIZE -gt $((MAXFREE / 1024)) ]] && F78SIZE=$((MAXFREE / 1024))
6091         SMALLESTOST=$($LFS df $DIR | grep OST | awk '{ print $4 }' | sort -n |
6092                 head -n1)
6093         echo "Smallest OST: $SMALLESTOST"
6094         [[ $SMALLESTOST -lt 10240 ]] &&
6095                 skip "too small OSTSIZE, useless to run large O_DIRECT test" && return 0
6096
6097         [[ $F78SIZE -gt $((SMALLESTOST * $OSTCOUNT / 1024 - 80)) ]] &&
6098                 F78SIZE=$((SMALLESTOST * $OSTCOUNT / 1024 - 80))
6099
6100         [ "$SLOW" = "no" ] && NSEQ=1 && [ $F78SIZE -gt 32 ] && F78SIZE=32
6101         echo "File size: $F78SIZE"
6102         $SETSTRIPE -c $OSTCOUNT $DIR/$tfile || error "setstripe failed"
6103         for i in $(seq 1 $NSEQ); do
6104                 FSIZE=$(($F78SIZE / ($NSEQ - $i + 1)))
6105                 echo directIO rdwr round $i of $NSEQ
6106                 $DIRECTIO rdwr $DIR/$tfile 0 $FSIZE 1048576||error "rdwr failed"
6107         done
6108
6109         rm -f $DIR/$tfile
6110 }
6111 run_test 78 "handle large O_DIRECT writes correctly ============"
6112
6113 test_79() { # bug 12743
6114         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6115         wait_delete_completed
6116
6117         BKTOTAL=$(calc_osc_kbytes kbytestotal)
6118         BKFREE=$(calc_osc_kbytes kbytesfree)
6119         BKAVAIL=$(calc_osc_kbytes kbytesavail)
6120
6121         STRING=`df -P $MOUNT | tail -n 1 | awk '{print $2","$3","$4}'`
6122         DFTOTAL=`echo $STRING | cut -d, -f1`
6123         DFUSED=`echo $STRING  | cut -d, -f2`
6124         DFAVAIL=`echo $STRING | cut -d, -f3`
6125         DFFREE=$(($DFTOTAL - $DFUSED))
6126
6127         ALLOWANCE=$((64 * $OSTCOUNT))
6128
6129         if [ $DFTOTAL -lt $(($BKTOTAL - $ALLOWANCE)) ] ||
6130            [ $DFTOTAL -gt $(($BKTOTAL + $ALLOWANCE)) ] ; then
6131                 error "df total($DFTOTAL) mismatch OST total($BKTOTAL)"
6132         fi
6133         if [ $DFFREE -lt $(($BKFREE - $ALLOWANCE)) ] ||
6134            [ $DFFREE -gt $(($BKFREE + $ALLOWANCE)) ] ; then
6135                 error "df free($DFFREE) mismatch OST free($BKFREE)"
6136         fi
6137         if [ $DFAVAIL -lt $(($BKAVAIL - $ALLOWANCE)) ] ||
6138            [ $DFAVAIL -gt $(($BKAVAIL + $ALLOWANCE)) ] ; then
6139                 error "df avail($DFAVAIL) mismatch OST avail($BKAVAIL)"
6140         fi
6141 }
6142 run_test 79 "df report consistency check ======================="
6143
6144 test_80() { # bug 10718
6145         remote_ost_nodsh && skip "remote OST with nodsh" && return
6146         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6147         # relax strong synchronous semantics for slow backends like ZFS
6148         local soc="obdfilter.*.sync_on_lock_cancel"
6149         local soc_old=$(do_facet ost1 lctl get_param -n $soc | head -n1)
6150         local hosts=
6151         if [ "$soc_old" != "never" -a "$(facet_fstype ost1)" != "ldiskfs" ]; then
6152                 hosts=$(for host in $(seq -f "ost%g" 1 $OSTCOUNT); do
6153                           facet_active_host $host; done | sort -u)
6154                 do_nodes $hosts lctl set_param $soc=never
6155         fi
6156
6157         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=1M
6158         sync; sleep 1; sync
6159         local BEFORE=`date +%s`
6160         cancel_lru_locks osc
6161         local AFTER=`date +%s`
6162         local DIFF=$((AFTER-BEFORE))
6163         if [ $DIFF -gt 1 ] ; then
6164                 error "elapsed for 1M@1T = $DIFF"
6165         fi
6166
6167         [ -n "$hosts" ] && do_nodes $hosts lctl set_param $soc=$soc_old
6168
6169         rm -f $DIR/$tfile
6170 }
6171 run_test 80 "Page eviction is equally fast at high offsets too  ===="
6172
6173 test_81a() { # LU-456
6174         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6175         remote_ost_nodsh && skip "remote OST with nodsh" && return
6176         # define OBD_FAIL_OST_MAPBLK_ENOSPC    0x228
6177         # MUST OR with the OBD_FAIL_ONCE (0x80000000)
6178         do_facet ost1 lctl set_param fail_loc=0x80000228
6179
6180         # write should trigger a retry and success
6181         $SETSTRIPE -i 0 -c 1 $DIR/$tfile
6182         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
6183         RC=$?
6184         if [ $RC -ne 0 ] ; then
6185                 error "write should success, but failed for $RC"
6186         fi
6187 }
6188 run_test 81a "OST should retry write when get -ENOSPC ==============="
6189
6190 test_81b() { # LU-456
6191         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6192         remote_ost_nodsh && skip "remote OST with nodsh" && return
6193         # define OBD_FAIL_OST_MAPBLK_ENOSPC    0x228
6194         # Don't OR with the OBD_FAIL_ONCE (0x80000000)
6195         do_facet ost1 lctl set_param fail_loc=0x228
6196
6197         # write should retry several times and return -ENOSPC finally
6198         $SETSTRIPE -i 0 -c 1 $DIR/$tfile
6199         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
6200         RC=$?
6201         ENOSPC=28
6202         if [ $RC -ne $ENOSPC ] ; then
6203                 error "dd should fail for -ENOSPC, but succeed."
6204         fi
6205 }
6206 run_test 81b "OST should return -ENOSPC when retry still fails ======="
6207
6208 test_82() { # LU-1031
6209         dd if=/dev/zero of=$DIR/$tfile bs=1M count=10
6210         local gid1=14091995
6211         local gid2=16022000
6212
6213         multiop_bg_pause $DIR/$tfile OG${gid1}_g${gid1}c || return 1
6214         local MULTIPID1=$!
6215         multiop_bg_pause $DIR/$tfile O_G${gid2}r10g${gid2}c || return 2
6216         local MULTIPID2=$!
6217         kill -USR1 $MULTIPID2
6218         sleep 2
6219         if [[ `ps h -o comm -p $MULTIPID2` == "" ]]; then
6220                 error "First grouplock does not block second one"
6221         else
6222                 echo "Second grouplock blocks first one"
6223         fi
6224         kill -USR1 $MULTIPID1
6225         wait $MULTIPID1
6226         wait $MULTIPID2
6227 }
6228 run_test 82 "Basic grouplock test ==============================="
6229
6230 test_99a() {
6231         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" &&
6232                 return
6233         test_mkdir -p $DIR/d99cvsroot
6234         chown $RUNAS_ID $DIR/d99cvsroot
6235         local oldPWD=$PWD       # bug 13584, use $TMP as working dir
6236         cd $TMP
6237
6238         $RUNAS cvs -d $DIR/d99cvsroot init || error "cvs init failed"
6239         cd $oldPWD
6240 }
6241 run_test 99a "cvs init ========================================="
6242
6243 test_99b() {
6244         [ -z "$(which cvs 2>/dev/null)" ] &&
6245                 skip_env "could not find cvs" && return
6246         [ ! -d $DIR/d99cvsroot ] && test_99a
6247         cd /etc/init.d
6248         # some versions of cvs import exit(1) when asked to import links or
6249         # files they can't read.  ignore those files.
6250         TOIGNORE=$(find . -type l -printf '-I %f\n' -o \
6251                         ! -perm /4 -printf '-I %f\n')
6252         $RUNAS cvs -d $DIR/d99cvsroot import -m "nomesg" $TOIGNORE \
6253                 d99reposname vtag rtag
6254 }
6255 run_test 99b "cvs import ======================================="
6256
6257 test_99c() {
6258         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && return
6259         [ ! -d $DIR/d99cvsroot ] && test_99b
6260         cd $DIR
6261         test_mkdir -p $DIR/d99reposname
6262         chown $RUNAS_ID $DIR/d99reposname
6263         $RUNAS cvs -d $DIR/d99cvsroot co d99reposname
6264 }
6265 run_test 99c "cvs checkout ====================================="
6266
6267 test_99d() {
6268         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && return
6269         [ ! -d $DIR/d99cvsroot ] && test_99c
6270         cd $DIR/d99reposname
6271         $RUNAS touch foo99
6272         $RUNAS cvs add -m 'addmsg' foo99
6273 }
6274 run_test 99d "cvs add =========================================="
6275
6276 test_99e() {
6277         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && return
6278         [ ! -d $DIR/d99cvsroot ] && test_99c
6279         cd $DIR/d99reposname
6280         $RUNAS cvs update
6281 }
6282 run_test 99e "cvs update ======================================="
6283
6284 test_99f() {
6285         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && return
6286         [ ! -d $DIR/d99cvsroot ] && test_99d
6287         cd $DIR/d99reposname
6288         $RUNAS cvs commit -m 'nomsg' foo99
6289     rm -fr $DIR/d99cvsroot
6290 }
6291 run_test 99f "cvs commit ======================================="
6292
6293 test_100() {
6294         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6295         [ "$NETTYPE" = tcp ] || \
6296                 { skip "TCP secure port test, not useful for NETTYPE=$NETTYPE" && \
6297                         return ; }
6298
6299         remote_ost_nodsh && skip "remote OST with nodsh" && return
6300         remote_mds_nodsh && skip "remote MDS with nodsh" && return
6301         remote_servers || \
6302                 { skip "useless for local single node setup" && return; }
6303
6304         netstat -tna | ( rc=1; while read PROT SND RCV LOCAL REMOTE STAT; do
6305                 [ "$PROT" != "tcp" ] && continue
6306                 RPORT=$(echo $REMOTE | cut -d: -f2)
6307                 [ "$RPORT" != "$ACCEPTOR_PORT" ] && continue
6308
6309                 rc=0
6310                 LPORT=`echo $LOCAL | cut -d: -f2`
6311                 if [ $LPORT -ge 1024 ]; then
6312                         echo "bad: $PROT $SND $RCV $LOCAL $REMOTE $STAT"
6313                         netstat -tna
6314                         error_exit "local: $LPORT > 1024, remote: $RPORT"
6315                 fi
6316         done
6317         [ "$rc" = 0 ] || error_exit "privileged port not found" )
6318 }
6319 run_test 100 "check local port using privileged port ==========="
6320
6321 function get_named_value()
6322 {
6323     local tag
6324
6325     tag=$1
6326     while read ;do
6327         line=$REPLY
6328         case $line in
6329         $tag*)
6330             echo $line | sed "s/^$tag[ ]*//"
6331             break
6332             ;;
6333         esac
6334     done
6335 }
6336
6337 export CACHE_MAX=$($LCTL get_param -n llite.*.max_cached_mb |
6338                    awk '/^max_cached_mb/ { print $2 }')
6339
6340 cleanup_101a() {
6341         $LCTL set_param -n llite.*.max_cached_mb $CACHE_MAX
6342         trap 0
6343 }
6344
6345 test_101a() {
6346         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6347         [ $MDSCOUNT -ge 2 ] && skip "skip now for >= 2 MDTs" && return #LU-4322
6348         local s
6349         local discard
6350         local nreads=10000
6351         local cache_limit=32
6352
6353         $LCTL set_param -n osc.*-osc*.rpc_stats 0
6354         trap cleanup_101a EXIT
6355         $LCTL set_param -n llite.*.read_ahead_stats 0
6356         $LCTL set_param -n llite.*.max_cached_mb $cache_limit
6357
6358         #
6359         # randomly read 10000 of 64K chunks from file 3x 32MB in size
6360         #
6361         echo "nreads: $nreads file size: $((cache_limit * 3))MB"
6362         $READS -f $DIR/$tfile -s$((cache_limit * 3192 * 1024)) -b65536 -C -n$nreads -t 180
6363
6364         discard=0
6365         for s in $($LCTL get_param -n llite.*.read_ahead_stats |
6366                 get_named_value 'read but discarded' | cut -d" " -f1); do
6367                         discard=$(($discard + $s))
6368         done
6369         cleanup_101a
6370
6371         if [[ $(($discard * 10)) -gt $nreads ]]; then
6372                 $LCTL get_param osc.*-osc*.rpc_stats
6373                 $LCTL get_param llite.*.read_ahead_stats
6374                 error "too many ($discard) discarded pages"
6375         fi
6376         rm -f $DIR/$tfile || true
6377 }
6378 run_test 101a "check read-ahead for random reads ================"
6379
6380 setup_test101bc() {
6381         test_mkdir -p $DIR/$tdir
6382         local STRIPE_SIZE=$1
6383         local FILE_LENGTH=$2
6384         STRIPE_OFFSET=0
6385
6386         local FILE_SIZE_MB=$((FILE_LENGTH / STRIPE_SIZE))
6387
6388         local list=$(comma_list $(osts_nodes))
6389         set_osd_param $list '' read_cache_enable 0
6390         set_osd_param $list '' writethrough_cache_enable 0
6391
6392         trap cleanup_test101bc EXIT
6393         # prepare the read-ahead file
6394         $SETSTRIPE -S $STRIPE_SIZE -i $STRIPE_OFFSET -c $OSTCOUNT $DIR/$tfile
6395
6396         dd if=/dev/zero of=$DIR/$tfile bs=$STRIPE_SIZE \
6397                                 count=$FILE_SIZE_MB 2> /dev/null
6398
6399 }
6400
6401 cleanup_test101bc() {
6402         trap 0
6403         rm -rf $DIR/$tdir
6404         rm -f $DIR/$tfile
6405
6406         local list=$(comma_list $(osts_nodes))
6407         set_osd_param $list '' read_cache_enable 1
6408         set_osd_param $list '' writethrough_cache_enable 1
6409 }
6410
6411 calc_total() {
6412         awk 'BEGIN{total=0}; {total+=$1}; END{print total}'
6413 }
6414
6415 ra_check_101() {
6416         local READ_SIZE=$1
6417         local STRIPE_SIZE=$2
6418         local FILE_LENGTH=$3
6419         local RA_INC=1048576
6420         local STRIDE_LENGTH=$((STRIPE_SIZE/READ_SIZE))
6421         local discard_limit=$((((STRIDE_LENGTH - 1)*3/(STRIDE_LENGTH*OSTCOUNT))* \
6422                              (STRIDE_LENGTH*OSTCOUNT - STRIDE_LENGTH)))
6423         DISCARD=$($LCTL get_param -n llite.*.read_ahead_stats |
6424                         get_named_value 'read but discarded' |
6425                         cut -d" " -f1 | calc_total)
6426         if [[ $DISCARD -gt $discard_limit ]]; then
6427                 $LCTL get_param llite.*.read_ahead_stats
6428                 error "Too many ($DISCARD) discarded pages with size (${READ_SIZE})"
6429         else
6430                 echo "Read-ahead success for size ${READ_SIZE}"
6431         fi
6432 }
6433
6434 test_101b() {
6435         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6436         [[ $OSTCOUNT -lt 2 ]] &&
6437                 skip_env "skipping stride IO stride-ahead test" && return
6438         local STRIPE_SIZE=1048576
6439         local STRIDE_SIZE=$((STRIPE_SIZE*OSTCOUNT))
6440         if [ $SLOW == "yes" ]; then
6441                 local FILE_LENGTH=$((STRIDE_SIZE * 64))
6442         else
6443                 local FILE_LENGTH=$((STRIDE_SIZE * 8))
6444         fi
6445
6446         local ITERATION=$((FILE_LENGTH / STRIDE_SIZE))
6447
6448         # prepare the read-ahead file
6449         setup_test101bc $STRIPE_SIZE $FILE_LENGTH
6450         cancel_lru_locks osc
6451         for BIDX in 2 4 8 16 32 64 128 256
6452         do
6453                 local BSIZE=$((BIDX*4096))
6454                 local READ_COUNT=$((STRIPE_SIZE/BSIZE))
6455                 local STRIDE_LENGTH=$((STRIDE_SIZE/BSIZE))
6456                 local OFFSET=$((STRIPE_SIZE/BSIZE*(OSTCOUNT - 1)))
6457                 $LCTL set_param -n llite.*.read_ahead_stats 0
6458                 $READS -f $DIR/$tfile  -l $STRIDE_LENGTH -o $OFFSET \
6459                               -s $FILE_LENGTH -b $STRIPE_SIZE -a $READ_COUNT -n $ITERATION
6460                 cancel_lru_locks osc
6461                 ra_check_101 $BSIZE $STRIPE_SIZE $FILE_LENGTH
6462         done
6463         cleanup_test101bc
6464         true
6465 }
6466 run_test 101b "check stride-io mode read-ahead ================="
6467
6468 test_101c() {
6469         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6470         local STRIPE_SIZE=1048576
6471         local FILE_LENGTH=$((STRIPE_SIZE*100))
6472         local nreads=10000
6473         local osc_rpc_stats
6474
6475         setup_test101bc $STRIPE_SIZE $FILE_LENGTH
6476
6477         cancel_lru_locks osc
6478         $LCTL set_param osc.*.rpc_stats 0
6479         $READS -f $DIR/$tfile -s$FILE_LENGTH -b65536 -n$nreads -t 180
6480         for osc_rpc_stats in $($LCTL get_param -N osc.*.rpc_stats); do
6481                 local stats=$($LCTL get_param -n $osc_rpc_stats)
6482                 local lines=$(echo "$stats" | awk 'END {print NR;}')
6483                 local size
6484
6485                 if [ $lines -le 20 ]; then
6486                         continue
6487                 fi
6488                 for size in 1 2 4 8; do
6489                         local rpc=$(echo "$stats" |
6490                                     awk '($1 == "'$size':") {print $2; exit; }')
6491                         [ $rpc != 0 ] &&
6492                                 error "Small $((size*4))k read IO $rpc !"
6493                 done
6494                 echo "$osc_rpc_stats check passed!"
6495         done
6496         cleanup_test101bc
6497         true
6498 }
6499 run_test 101c "check stripe_size aligned read-ahead ================="
6500
6501 set_read_ahead() {
6502         $LCTL get_param -n llite.*.max_read_ahead_mb | head -n 1
6503         $LCTL set_param -n llite.*.max_read_ahead_mb $1 > /dev/null 2>&1
6504 }
6505
6506 test_101d() {
6507         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6508         local file=$DIR/$tfile
6509         local sz_MB=${FILESIZE_101d:-500}
6510         local ra_MB=${READAHEAD_MB:-40}
6511
6512         local free_MB=$(($(df -P $DIR | tail -n 1 | awk '{ print $4 }') / 1024))
6513         [ $free_MB -lt $sz_MB ] &&
6514                 skip "Need free space ${sz_MB}M, have ${free_MB}M" && return
6515
6516         echo "Create test file $file size ${sz_MB}M, ${free_MB}M free"
6517         $SETSTRIPE -c -1 $file || error "setstripe failed"
6518
6519         dd if=/dev/zero of=$file bs=1M count=$sz_MB || error "dd failed"
6520         echo Cancel LRU locks on lustre client to flush the client cache
6521         cancel_lru_locks osc
6522
6523         echo Disable read-ahead
6524         local old_READAHEAD=$(set_read_ahead 0)
6525
6526         echo Reading the test file $file with read-ahead disabled
6527         local raOFF=$(do_and_time "dd if=$file of=/dev/null bs=1M count=$sz_MB")
6528
6529         echo Cancel LRU locks on lustre client to flush the client cache
6530         cancel_lru_locks osc
6531         echo Enable read-ahead with ${ra_MB}MB
6532         set_read_ahead $ra_MB
6533
6534         echo Reading the test file $file with read-ahead enabled
6535         local raON=$(do_and_time "dd if=$file of=/dev/null bs=1M count=$sz_MB")
6536
6537         echo "read-ahead disabled time read $raOFF"
6538         echo "read-ahead enabled  time read $raON"
6539
6540         set_read_ahead $old_READAHEAD
6541         rm -f $file
6542         wait_delete_completed
6543
6544         [ $raOFF -le 1 -o $raON -lt $raOFF ] ||
6545                 error "readahead ${raON}s > no-readahead ${raOFF}s ${sz_MB}M"
6546 }
6547 run_test 101d "file read with and without read-ahead enabled"
6548
6549 test_101e() {
6550         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6551         local file=$DIR/$tfile
6552         local size_KB=500  #KB
6553         local count=100
6554         local bsize=1024
6555
6556         local free_KB=$(df -P $DIR | tail -n 1 | awk '{ print $4 }')
6557         local need_KB=$((count * size_KB))
6558         [[ $free_KB -le $need_KB ]] &&
6559                 skip_env "Need free space $need_KB, have $free_KB" && return
6560
6561         echo "Creating $count ${size_KB}K test files"
6562         for ((i = 0; i < $count; i++)); do
6563                 dd if=/dev/zero of=$file.$i bs=$bsize count=$size_KB 2>/dev/null
6564         done
6565
6566         echo "Cancel LRU locks on lustre client to flush the client cache"
6567         cancel_lru_locks osc
6568
6569         echo "Reset readahead stats"
6570         $LCTL set_param -n llite.*.read_ahead_stats 0
6571
6572         for ((i = 0; i < $count; i++)); do
6573                 dd if=$file.$i of=/dev/null bs=$bsize count=$size_KB 2>/dev/null
6574         done
6575
6576         local miss=$($LCTL get_param -n llite.*.read_ahead_stats |
6577                      get_named_value 'misses' | cut -d" " -f1 | calc_total)
6578
6579         for ((i = 0; i < $count; i++)); do
6580                 rm -rf $file.$i 2>/dev/null
6581         done
6582
6583         #10000 means 20% reads are missing in readahead
6584         [[ $miss -lt 10000 ]] ||  error "misses too much for small reads"
6585 }
6586 run_test 101e "check read-ahead for small read(1k) for small files(500k)"
6587
6588 test_101f() {
6589         which iozone || { skip "no iozone installed" && return; }
6590
6591         # create a test file
6592         iozone -i 0 -+n -r 1m -s 128m -w -f $DIR/$tfile > /dev/null 2>&1
6593
6594         echo Cancel LRU locks on lustre client to flush the client cache
6595         cancel_lru_locks osc
6596
6597         echo Reset readahead stats
6598         $LCTL set_param -n llite.*.read_ahead_stats 0
6599
6600         echo mmap read the file with small block size
6601         iozone -i 1 -+n -r 32k -s 128m -B -f $DIR/$tfile > /dev/null 2>&1
6602
6603         echo checking missing pages
6604         local miss=$($LCTL get_param -n llite.*.read_ahead_stats |
6605                         get_named_value 'misses' | cut -d" " -f1 | calc_total)
6606
6607         [ $miss -lt 3 ] || error "misses too much pages!"
6608         rm -f $DIR/$tfile
6609 }
6610 run_test 101f "check mmap read performance"
6611
6612 test_101g() {
6613         local rpcs
6614         local osts=$(get_facets OST)
6615         local list=$(comma_list $(osts_nodes))
6616         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
6617
6618         save_lustre_params $osts "obdfilter.*.brw_size" > $p
6619
6620         $LFS setstripe -c 1 $DIR/$tfile
6621
6622         if [ $(lustre_version_code ost1) -ge $(version_code 2.8.52) ]; then
6623                 set_osd_param $list '' brw_size 16M
6624
6625                 echo "remount client to enable large RPC size"
6626                 remount_client $MOUNT || error "remount_client failed"
6627
6628                 for mp in $($LCTL get_param -n osc.*.max_pages_per_rpc); do
6629                         [ "$mp" -eq 4096 ] ||
6630                                 error "max_pages_per_rpc not correctly set"
6631                 done
6632
6633                 $LCTL set_param -n osc.*.rpc_stats=0
6634
6635                 # 10*16 MiB should be enough for the test
6636                 dd if=/dev/zero of=$DIR/$tfile bs=16M count=10
6637                 cancel_lru_locks osc
6638                 dd of=/dev/null if=$DIR/$tfile bs=16M count=10
6639
6640                 # calculate 16 MiB RPCs
6641                 rpcs=$($LCTL get_param 'osc.*.rpc_stats' |
6642                        sed -n '/pages per rpc/,/^$/p' |
6643                        awk 'BEGIN { sum = 0 }; /4096:/ { sum += $2 };
6644                             END { print sum }')
6645                 echo $rpcs RPCs
6646                 [ "$rpcs" -eq 10 ] || error "not all RPCs are 16 MiB BRW rpcs"
6647         fi
6648
6649         echo "set RPC size to 4MB"
6650
6651         $LCTL set_param -n osc.*.max_pages_per_rpc=4M osc.*.rpc_stats=0
6652         dd if=/dev/zero of=$DIR/$tfile bs=4M count=25
6653         cancel_lru_locks osc
6654         dd of=/dev/null if=$DIR/$tfile bs=4M count=25
6655
6656         # calculate 4 MiB RPCs
6657         rpcs=$($LCTL get_param 'osc.*.rpc_stats' |
6658                 sed -n '/pages per rpc/,/^$/p' |
6659                 awk 'BEGIN { sum = 0 }; /1024:/ { sum += $2 };
6660                      END { print sum }')
6661         echo $rpcs RPCs
6662         [ "$rpcs" -eq 25 ] || error "not all RPCs are 4 MiB BRW rpcs"
6663
6664         restore_lustre_params < $p
6665         remount_client $MOUNT || error "remount_client failed"
6666
6667         rm -f $p $DIR/$tfile
6668 }
6669 run_test 101g "Big bulk(4/16 MiB) readahead"
6670
6671 setup_test102() {
6672         test_mkdir -p $DIR/$tdir
6673         chown $RUNAS_ID $DIR/$tdir
6674         STRIPE_SIZE=65536
6675         STRIPE_OFFSET=1
6676         STRIPE_COUNT=$OSTCOUNT
6677         [[ $OSTCOUNT -gt 4 ]] && STRIPE_COUNT=4
6678
6679         trap cleanup_test102 EXIT
6680         cd $DIR
6681         $1 $SETSTRIPE -S $STRIPE_SIZE -i $STRIPE_OFFSET -c $STRIPE_COUNT $tdir
6682         cd $DIR/$tdir
6683         for num in 1 2 3 4; do
6684                 for count in $(seq 1 $STRIPE_COUNT); do
6685                         for idx in $(seq 0 $[$STRIPE_COUNT - 1]); do
6686                                 local size=`expr $STRIPE_SIZE \* $num`
6687                                 local file=file"$num-$idx-$count"
6688                                 $1 $SETSTRIPE -S $size -i $idx -c $count $file
6689                         done
6690                 done
6691         done
6692
6693         cd $DIR
6694         $1 $TAR cf $TMP/f102.tar $tdir --xattrs
6695 }
6696
6697 cleanup_test102() {
6698         trap 0
6699         rm -f $TMP/f102.tar
6700         rm -rf $DIR/d0.sanity/d102
6701 }
6702
6703 test_102a() {
6704         local testfile=$DIR/$tfile
6705
6706         touch $testfile
6707
6708         [ "$UID" != 0 ] && skip_env "must run as root" && return
6709         [ -z "$(lctl get_param -n mdc.*-mdc-*.connect_flags | grep xattr)" ] &&
6710                 skip_env "must have user_xattr" && return
6711
6712         [ -z "$(which setfattr 2>/dev/null)" ] &&
6713                 skip_env "could not find setfattr" && return
6714
6715         echo "set/get xattr..."
6716         setfattr -n trusted.name1 -v value1 $testfile ||
6717                 error "setfattr -n trusted.name1=value1 $testfile failed"
6718         getfattr -n trusted.name1 $testfile 2> /dev/null |
6719           grep "trusted.name1=.value1" ||
6720                 error "$testfile missing trusted.name1=value1"
6721
6722         setfattr -n user.author1 -v author1 $testfile ||
6723                 error "setfattr -n user.author1=author1 $testfile failed"
6724         getfattr -n user.author1 $testfile 2> /dev/null |
6725           grep "user.author1=.author1" ||
6726                 error "$testfile missing trusted.author1=author1"
6727
6728         echo "listxattr..."
6729         setfattr -n trusted.name2 -v value2 $testfile ||
6730                 error "$testfile unable to set trusted.name2"
6731         setfattr -n trusted.name3 -v value3 $testfile ||
6732                 error "$testfile unable to set trusted.name3"
6733         [ $(getfattr -d -m "^trusted" $testfile 2> /dev/null |
6734             grep "trusted.name" | wc -l) -eq 3 ] ||
6735                 error "$testfile missing 3 trusted.name xattrs"
6736
6737         setfattr -n user.author2 -v author2 $testfile ||
6738                 error "$testfile unable to set user.author2"
6739         setfattr -n user.author3 -v author3 $testfile ||
6740                 error "$testfile unable to set user.author3"
6741         [ $(getfattr -d -m "^user" $testfile 2> /dev/null |
6742             grep "user.author" | wc -l) -eq 3 ] ||
6743                 error "$testfile missing 3 user.author xattrs"
6744
6745         echo "remove xattr..."
6746         setfattr -x trusted.name1 $testfile ||
6747                 error "$testfile error deleting trusted.name1"
6748         getfattr -d -m trusted $testfile 2> /dev/null | grep "trusted.name1" &&
6749                 error "$testfile did not delete trusted.name1 xattr"
6750
6751         setfattr -x user.author1 $testfile ||
6752                 error "$testfile error deleting user.author1"
6753         getfattr -d -m user $testfile 2> /dev/null | grep "user.author1" &&
6754                 error "$testfile did not delete trusted.name1 xattr"
6755
6756         # b10667: setting lustre special xattr be silently discarded
6757         echo "set lustre special xattr ..."
6758         setfattr -n "trusted.lov" -v "invalid value" $testfile ||
6759                 error "$testfile allowed setting trusted.lov"
6760 }
6761 run_test 102a "user xattr test =================================="
6762
6763 test_102b() {
6764         [ -z "$(which setfattr 2>/dev/null)" ] &&
6765                 skip_env "could not find setfattr" && return
6766
6767         # b10930: get/set/list trusted.lov xattr
6768         echo "get/set/list trusted.lov xattr ..."
6769         [[ $OSTCOUNT -lt 2 ]] && skip_env "skipping 2-stripe test" && return
6770         local testfile=$DIR/$tfile
6771         $SETSTRIPE -S 65536 -i 1 -c $OSTCOUNT $testfile ||
6772                 error "setstripe failed"
6773         local STRIPECOUNT=$($GETSTRIPE -c $testfile) ||
6774                 error "getstripe failed"
6775         getfattr -d -m "^trusted" $testfile 2>/dev/null | grep "trusted.lov" ||
6776                 error "can't get trusted.lov from $testfile"
6777
6778         local testfile2=${testfile}2
6779         local value=$(getfattr -n trusted.lov $testfile 2>/dev/null |
6780                         grep "trusted.lov" | sed -e 's/[^=]\+=//')
6781
6782         $MCREATE $testfile2
6783         setfattr -n trusted.lov -v $value $testfile2
6784         local stripe_size=$($GETSTRIPE -S $testfile2)
6785         local stripe_count=$($GETSTRIPE -c $testfile2)
6786         [[ $stripe_size -eq 65536 ]] ||
6787                 error "stripe size $stripe_size != 65536"
6788         [[ $stripe_count -eq $STRIPECOUNT ]] ||
6789                 error "stripe count $stripe_count != $STRIPECOUNT"
6790         rm -f $DIR/$tfile
6791 }
6792 run_test 102b "getfattr/setfattr for trusted.lov EAs ============"
6793
6794 test_102c() {
6795         [ -z "$(which setfattr 2>/dev/null)" ] &&
6796                 skip_env "could not find setfattr" && return
6797
6798         # b10930: get/set/list lustre.lov xattr
6799         echo "get/set/list lustre.lov xattr ..."
6800         [[ $OSTCOUNT -lt 2 ]] && skip_env "skipping 2-stripe test" && return
6801         test_mkdir -p $DIR/$tdir
6802         chown $RUNAS_ID $DIR/$tdir
6803         local testfile=$DIR/$tdir/$tfile
6804         $RUNAS $SETSTRIPE -S 65536 -i 1 -c $OSTCOUNT $testfile ||
6805                 error "setstripe failed"
6806         local STRIPECOUNT=$($RUNAS $GETSTRIPE -c $testfile) ||
6807                 error "getstripe failed"
6808         $RUNAS getfattr -d -m "^lustre" $testfile 2> /dev/null | \
6809         grep "lustre.lov" || error "can't get lustre.lov from $testfile"
6810
6811         local testfile2=${testfile}2
6812         local value=`getfattr -n lustre.lov $testfile 2> /dev/null | \
6813                      grep "lustre.lov" |sed -e 's/[^=]\+=//'  `
6814
6815         $RUNAS $MCREATE $testfile2
6816         $RUNAS setfattr -n lustre.lov -v $value $testfile2
6817         local stripe_size=$($RUNAS $GETSTRIPE -S $testfile2)
6818         local stripe_count=$($RUNAS $GETSTRIPE -c $testfile2)
6819         [ $stripe_size -eq 65536 ] || error "stripe size $stripe_size != 65536"
6820         [ $stripe_count -eq $STRIPECOUNT ] ||
6821                 error "stripe count $stripe_count != $STRIPECOUNT"
6822 }
6823 run_test 102c "non-root getfattr/setfattr for lustre.lov EAs ==========="
6824
6825 compare_stripe_info1() {
6826         local stripe_index_all_zero=true
6827
6828         for num in 1 2 3 4; do
6829                 for count in $(seq 1 $STRIPE_COUNT); do
6830                         for offset in $(seq 0 $[$STRIPE_COUNT - 1]); do
6831                                 local size=$((STRIPE_SIZE * num))
6832                                 local file=file"$num-$offset-$count"
6833                                 stripe_size=$($LFS getstripe -S $PWD/$file)
6834                                 [[ $stripe_size -ne $size ]] &&
6835                                     error "$file: size $stripe_size != $size"
6836                                 stripe_count=$($LFS getstripe -c $PWD/$file)
6837                                 # allow fewer stripes to be created, ORI-601
6838                                 [[ $stripe_count -lt $(((3 * count + 3) / 4)) ]] &&
6839                                     error "$file: count $stripe_count != $count"
6840                                 stripe_index=$($LFS getstripe -i $PWD/$file)
6841                                 [[ $stripe_index -ne 0 ]] &&
6842                                         stripe_index_all_zero=false
6843                         done
6844                 done
6845         done
6846         $stripe_index_all_zero &&
6847                 error "all files are being extracted starting from OST index 0"
6848         return 0
6849 }
6850
6851 find_lustre_tar() {
6852         [ -n "$(which tar 2>/dev/null)" ] &&
6853                 strings $(which tar) | grep -q "lustre" && echo tar
6854 }
6855
6856 test_102d() {
6857         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6858         # b10930: tar test for trusted.lov xattr
6859         TAR=$(find_lustre_tar)
6860         [ -z "$TAR" ] && skip_env "lustre-aware tar is not installed" && return
6861         [[ $OSTCOUNT -lt 2 ]] && skip_env "skipping N-stripe test" && return
6862         setup_test102
6863         test_mkdir -p $DIR/d102d
6864         $TAR xf $TMP/f102.tar -C $DIR/d102d --xattrs
6865         cd $DIR/d102d/$tdir
6866         compare_stripe_info1
6867 }
6868 run_test 102d "tar restore stripe info from tarfile,not keep osts ==========="
6869
6870 test_102f() {
6871         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6872         # b10930: tar test for trusted.lov xattr
6873         TAR=$(find_lustre_tar)
6874         [ -z "$TAR" ] && skip_env "lustre-aware tar is not installed" && return
6875         [[ $OSTCOUNT -lt 2 ]] && skip_env "skipping N-stripe test" && return
6876         setup_test102
6877         test_mkdir -p $DIR/d102f
6878         cd $DIR
6879         $TAR cf - --xattrs $tdir | $TAR xf - --xattrs -C $DIR/d102f
6880         cd $DIR/d102f/$tdir
6881         compare_stripe_info1
6882 }
6883 run_test 102f "tar copy files, not keep osts ==========="
6884
6885 grow_xattr() {
6886         local xsize=${1:-1024}  # in bytes
6887         local file=$DIR/$tfile
6888
6889         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep xattr)" ] &&
6890                 skip "must have user_xattr" && return 0
6891         [ -z "$(which setfattr 2>/dev/null)" ] &&
6892                 skip_env "could not find setfattr" && return 0
6893         [ -z "$(which getfattr 2>/dev/null)" ] &&
6894                 skip_env "could not find getfattr" && return 0
6895
6896         touch $file
6897
6898         local value="$(generate_string $xsize)"
6899
6900         local xbig=trusted.big
6901         log "save $xbig on $file"
6902         setfattr -n $xbig -v $value $file ||
6903                 error "saving $xbig on $file failed"
6904
6905         local orig=$(get_xattr_value $xbig $file)
6906         [[ "$orig" != "$value" ]] && error "$xbig different after saving $xbig"
6907
6908         local xsml=trusted.sml
6909         log "save $xsml on $file"
6910         setfattr -n $xsml -v val $file || error "saving $xsml on $file failed"
6911
6912         local new=$(get_xattr_value $xbig $file)
6913         [[ "$new" != "$orig" ]] && error "$xbig different after saving $xsml"
6914
6915         log "grow $xsml on $file"
6916         setfattr -n $xsml -v "$value" $file ||
6917                 error "growing $xsml on $file failed"
6918
6919         new=$(get_xattr_value $xbig $file)
6920         [[ "$new" != "$orig" ]] && error "$xbig different after growing $xsml"
6921         log "$xbig still valid after growing $xsml"
6922
6923         rm -f $file
6924 }
6925
6926 test_102h() { # bug 15777
6927         grow_xattr 1024
6928 }
6929 run_test 102h "grow xattr from inside inode to external block"
6930
6931 test_102ha() {
6932         large_xattr_enabled || { skip "large_xattr disabled" && return; }
6933         grow_xattr $(max_xattr_size)
6934 }
6935 run_test 102ha "grow xattr from inside inode to external inode"
6936
6937 test_102i() { # bug 17038
6938         [ -z "$(which getfattr 2>/dev/null)" ] &&
6939                 skip "could not find getfattr" && return
6940         touch $DIR/$tfile
6941         ln -s $DIR/$tfile $DIR/${tfile}link
6942         getfattr -n trusted.lov $DIR/$tfile ||
6943                 error "lgetxattr on $DIR/$tfile failed"
6944         getfattr -h -n trusted.lov $DIR/${tfile}link 2>&1 |
6945                 grep -i "no such attr" ||
6946                 error "error for lgetxattr on $DIR/${tfile}link is not ENODATA"
6947         rm -f $DIR/$tfile $DIR/${tfile}link
6948 }
6949 run_test 102i "lgetxattr test on symbolic link ============"
6950
6951 test_102j() {
6952         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6953         TAR=$(find_lustre_tar)
6954         [ -z "$TAR" ] && skip_env "lustre-aware tar is not installed" && return
6955         [[ $OSTCOUNT -lt 2 ]] && skip_env "skipping N-stripe test" && return
6956         setup_test102 "$RUNAS"
6957         test_mkdir -p $DIR/d102j
6958         chown $RUNAS_ID $DIR/d102j
6959         $RUNAS $TAR xf $TMP/f102.tar -C $DIR/d102j --xattrs
6960         cd $DIR/d102j/$tdir
6961         compare_stripe_info1 "$RUNAS"
6962 }
6963 run_test 102j "non-root tar restore stripe info from tarfile, not keep osts ==="
6964
6965 test_102k() {
6966         [ -z "$(which setfattr 2>/dev/null)" ] &&
6967                 skip "could not find setfattr" && return
6968         touch $DIR/$tfile
6969         # b22187 just check that does not crash for regular file.
6970         setfattr -n trusted.lov $DIR/$tfile
6971         # b22187 'setfattr -n trusted.lov' should work as remove LOV EA for directories
6972         local test_kdir=$DIR/d102k
6973         test_mkdir $test_kdir
6974         local default_size=`$GETSTRIPE -S $test_kdir`
6975         local default_count=`$GETSTRIPE -c $test_kdir`
6976         local default_offset=`$GETSTRIPE -i $test_kdir`
6977         $SETSTRIPE -S 65536 -i 0 -c $OSTCOUNT $test_kdir ||
6978                 error 'dir setstripe failed'
6979         setfattr -n trusted.lov $test_kdir
6980         local stripe_size=`$GETSTRIPE -S $test_kdir`
6981         local stripe_count=`$GETSTRIPE -c $test_kdir`
6982         local stripe_offset=`$GETSTRIPE -i $test_kdir`
6983         [ $stripe_size -eq $default_size ] ||
6984                 error "stripe size $stripe_size != $default_size"
6985         [ $stripe_count -eq $default_count ] ||
6986                 error "stripe count $stripe_count != $default_count"
6987         [ $stripe_offset -eq $default_offset ] ||
6988                 error "stripe offset $stripe_offset != $default_offset"
6989         rm -rf $DIR/$tfile $test_kdir
6990 }
6991 run_test 102k "setfattr without parameter of value shouldn't cause a crash"
6992
6993 test_102l() {
6994         [ -z "$(which getfattr 2>/dev/null)" ] &&
6995                 skip "could not find getfattr" && return
6996
6997         # LU-532 trusted. xattr is invisible to non-root
6998         local testfile=$DIR/$tfile
6999
7000         touch $testfile
7001
7002         echo "listxattr as user..."
7003         chown $RUNAS_ID $testfile
7004         $RUNAS getfattr -d -m '.*' $testfile 2>&1 |
7005             grep -q "trusted" &&
7006                 error "$testfile trusted xattrs are user visible"
7007
7008         return 0;
7009 }
7010 run_test 102l "listxattr size test =================================="
7011
7012 test_102m() { # LU-3403 llite: error of listxattr when buffer is small
7013         local path=$DIR/$tfile
7014         touch $path
7015
7016         listxattr_size_check $path || error "listattr_size_check $path failed"
7017 }
7018 run_test 102m "Ensure listxattr fails on small bufffer ========"
7019
7020 cleanup_test102
7021
7022 getxattr() { # getxattr path name
7023         # Return the base64 encoding of the value of xattr name on path.
7024         local path=$1
7025         local name=$2
7026
7027         # # getfattr --absolute-names --encoding=base64 --name=trusted.lov $path
7028         # file: $path
7029         # trusted.lov=0s0AvRCwEAAAAGAAAAAAAAAAAEAAACAAAAAAAQAAEAA...AAAAAAAAA=
7030         #
7031         # We print just 0s0AvRCwEAAAAGAAAAAAAAAAAEAAACAAAAAAAQAAEAA...AAAAAAAAA=
7032
7033         getfattr --absolute-names --encoding=base64 --name=$name $path |
7034                 awk -F= -v name=$name '$1 == name {
7035                         print substr($0, index($0, "=") + 1);
7036         }'
7037 }
7038
7039 test_102n() { # LU-4101 mdt: protect internal xattrs
7040         local file0=$DIR/$tfile.0
7041         local file1=$DIR/$tfile.1
7042         local xattr0=$TMP/$tfile.0
7043         local xattr1=$TMP/$tfile.1
7044         local name
7045         local value
7046
7047         [ -z "$(which setfattr 2>/dev/null)" ] &&
7048                 skip "could not find setfattr" && return
7049
7050         if [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.5.50) ]
7051         then
7052                 skip "MDT < 2.5.50 allows setxattr on internal trusted xattrs"
7053                 return
7054         fi
7055
7056         rm -rf $file0 $file1 $xattr0 $xattr1
7057         touch $file0 $file1
7058
7059         # Get 'before' xattrs of $file1.
7060         getfattr --absolute-names --dump --match=- $file1 > $xattr0
7061
7062         for name in lov lma lmv link fid version som hsm; do
7063                 # Try to copy xattr from $file0 to $file1.
7064                 value=$(getxattr $file0 trusted.$name 2> /dev/null)
7065
7066                 setfattr --name=trusted.$name --value="$value" $file1 ||
7067                         error "setxattr 'trusted.$name' failed"
7068
7069                 # Try to set a garbage xattr.
7070                 value=0sVGhlIHF1aWNrIGJyb3duIGZveCBqdW1wcyBvdmVyIGl0c2VsZi4=
7071
7072                 setfattr --name=trusted.$name --value="$value" $file1 ||
7073                         error "setxattr 'trusted.$name' failed"
7074
7075                 # Try to remove the xattr from $file1. We don't care if this
7076                 # appears to succeed or fail, we just don't want there to be
7077                 # any changes or crashes.
7078                 setfattr --remove=$trusted.$name $file1 2> /dev/null
7079         done
7080
7081         if [ $(lustre_version_code $SINGLEMDS) -gt $(version_code 2.6.50) ]
7082         then
7083                 name="lfsck_ns"
7084                 # Try to copy xattr from $file0 to $file1.
7085                 value=$(getxattr $file0 trusted.$name 2> /dev/null)
7086
7087                 setfattr --name=trusted.$name --value="$value" $file1 ||
7088                         error "setxattr 'trusted.$name' failed"
7089
7090                 # Try to set a garbage xattr.
7091                 value=0sVGhlIHF1aWNrIGJyb3duIGZveCBqdW1wcyBvdmVyIGl0c2VsZi4=
7092
7093                 setfattr --name=trusted.$name --value="$value" $file1 ||
7094                         error "setxattr 'trusted.$name' failed"
7095
7096                 # Try to remove the xattr from $file1. We don't care if this
7097                 # appears to succeed or fail, we just don't want there to be
7098                 # any changes or crashes.
7099                 setfattr --remove=$trusted.$name $file1 2> /dev/null
7100         fi
7101
7102         # Get 'after' xattrs of file1.
7103         getfattr --absolute-names --dump --match=- $file1 > $xattr1
7104
7105         if ! diff $xattr0 $xattr1; then
7106                 error "before and after xattrs of '$file1' differ"
7107         fi
7108
7109         rm -rf $file0 $file1 $xattr0 $xattr1
7110
7111         return 0
7112 }
7113 run_test 102n "silently ignore setxattr on internal trusted xattrs"
7114
7115 test_102p() { # LU-4703 setxattr did not check ownership
7116         local testfile=$DIR/$tfile
7117
7118         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.5.56) ] &&
7119                 skip "MDS needs to be at least 2.5.56" && return
7120
7121         touch $testfile
7122
7123         echo "setfacl as user..."
7124         $RUNAS setfacl -m "u:$RUNAS_ID:rwx" $testfile
7125         [ $? -ne 0 ] || error "setfacl by $RUNAS_ID was allowed on $testfile"
7126
7127         echo "setfattr as user..."
7128         setfacl -m "u:$RUNAS_ID:---" $testfile
7129         $RUNAS setfattr -x system.posix_acl_access $testfile
7130         [ $? -ne 0 ] || error "setfattr by $RUNAS_ID was allowed on $testfile"
7131 }
7132 run_test 102p "check setxattr(2) correctly fails without permission"
7133
7134 test_102q() {
7135         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.6.92) ] &&
7136                 skip "MDS needs to be at least 2.6.92" && return
7137         orphan_linkea_check $DIR/$tfile || error "orphan_linkea_check"
7138 }
7139 run_test 102q "flistxattr should not return trusted.link EAs for orphans"
7140
7141 test_102r() {
7142         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.6.93) ] &&
7143                 skip "MDS needs to be at least 2.6.93" && return
7144         touch $DIR/$tfile || error "touch"
7145         setfattr -n user.$(basename $tfile) $DIR/$tfile || error "setfattr"
7146         getfattr -n user.$(basename $tfile) $DIR/$tfile || error "getfattr"
7147         rm $DIR/$tfile || error "rm"
7148
7149         #normal directory
7150         mkdir -p $DIR/$tdir || error "mkdir"
7151         setfattr -n user.$(basename $tdir) $DIR/$tdir || error "setfattr dir"
7152         getfattr -n user.$(basename $tdir) $DIR/$tdir || error "getfattr dir"
7153         setfattr -x user.$(basename $tdir) $DIR/$tdir ||
7154                 error "$testfile error deleting user.author1"
7155         getfattr -d -m user.$(basename $tdir) 2> /dev/null |
7156                 grep "user.$(basename $tdir)" &&
7157                 error "$tdir did not delete user.$(basename $tdir)"
7158         rmdir $DIR/$tdir || error "rmdir"
7159
7160         #striped directory
7161         test_mkdir -p $DIR/$tdir || error "make striped dir"
7162         setfattr -n user.$(basename $tdir) $DIR/$tdir || error "setfattr dir"
7163         getfattr -n user.$(basename $tdir) $DIR/$tdir || error "getfattr dir"
7164         setfattr -x user.$(basename $tdir) $DIR/$tdir ||
7165                 error "$testfile error deleting user.author1"
7166         getfattr -d -m user.$(basename $tdir) 2> /dev/null |
7167                 grep "user.$(basename $tdir)" &&
7168                 error "$tdir did not delete user.$(basename $tdir)"
7169         rmdir $DIR/$tdir || error "rm striped dir"
7170 }
7171 run_test 102r "set EAs with empty values"
7172
7173 run_acl_subtest()
7174 {
7175     $LUSTRE/tests/acl/run $LUSTRE/tests/acl/$1.test
7176     return $?
7177 }
7178
7179 test_103a() {
7180         [ "$UID" != 0 ] && skip_env "must run as root" && return
7181         [ -z "$(lctl get_param -n mdc.*-mdc-*.connect_flags | grep acl)" ] &&
7182                 skip "must have acl enabled" && return
7183         [ -z "$(which setfacl 2>/dev/null)" ] &&
7184                 skip_env "could not find setfacl" && return
7185         $GSS && skip "could not run under gss" && return
7186
7187         gpasswd -a daemon bin                           # LU-5641
7188         do_facet $SINGLEMDS gpasswd -a daemon bin       # LU-5641
7189
7190         declare -a identity_old
7191
7192         for num in $(seq $MDSCOUNT); do
7193                 switch_identity $num true || identity_old[$num]=$?
7194         done
7195
7196         SAVE_UMASK=$(umask)
7197         umask 0022
7198         cd $DIR
7199
7200         echo "performing cp ..."
7201         run_acl_subtest cp || error "run_acl_subtest cp failed"
7202         echo "performing getfacl-noacl..."
7203         run_acl_subtest getfacl-noacl || error "getfacl-noacl test failed"
7204         echo "performing misc..."
7205         run_acl_subtest misc || error  "misc test failed"
7206         echo "performing permissions..."
7207         run_acl_subtest permissions || error "permissions failed"
7208         echo "performing setfacl..."
7209         run_acl_subtest setfacl || error  "setfacl test failed"
7210
7211         # inheritance test got from HP
7212         echo "performing inheritance..."
7213         cp $LUSTRE/tests/acl/make-tree . || error "cannot copy make-tree"
7214         chmod +x make-tree || error "chmod +x failed"
7215         run_acl_subtest inheritance || error "inheritance test failed"
7216         rm -f make-tree
7217
7218         echo "LU-974 ignore umask when acl is enabled..."
7219         run_acl_subtest 974 || error "LU-974 umask test failed"
7220         if [ $MDSCOUNT -ge 2 ]; then
7221                 run_acl_subtest 974_remote ||
7222                         error "LU-974 umask test failed under remote dir"
7223         fi
7224
7225         echo "LU-2561 newly created file is same size as directory..."
7226         if [ $(facet_fstype $SINGLEMDS) != "zfs" ]; then
7227                 run_acl_subtest 2561 || error "LU-2561 test failed"
7228         else
7229                 run_acl_subtest 2561_zfs || error "LU-2561 zfs test failed"
7230         fi
7231
7232         run_acl_subtest 4924 || error "LU-4924 test failed"
7233
7234         cd $SAVE_PWD
7235         umask $SAVE_UMASK
7236
7237         for num in $(seq $MDSCOUNT); do
7238                 if [ "${identity_old[$num]}" = 1 ]; then
7239                         switch_identity $num false || identity_old[$num]=$?
7240                 fi
7241         done
7242 }
7243 run_test 103a "acl test ========================================="
7244
7245 test_103b() {
7246         local noacl=false
7247         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
7248         local mountopts=$MDS_MOUNT_OPTS
7249
7250         if [[ "$MDS_MOUNT_OPTS" =~ "noacl" ]]; then
7251                 noacl=true
7252         else
7253                 # stop the MDT
7254                 stop $SINGLEMDS || error "failed to stop MDT."
7255                 # remount the MDT
7256                 if [ -z "$MDS_MOUNT_OPTS" ]; then
7257                         MDS_MOUNT_OPTS="-o noacl"
7258                 else
7259                         MDS_MOUNT_OPTS="${MDS_MOUNT_OPTS},noacl"
7260                 fi
7261                 start $SINGLEMDS $MDT_DEV $MDS_MOUNT_OPTS ||
7262                         error "failed to start MDT."
7263                 MDS_MOUNT_OPTS=$mountopts
7264         fi
7265
7266         touch $DIR/$tfile
7267         setfacl -m u:bin:rw $DIR/$tfile && error "setfacl should fail"
7268
7269         if ! $noacl; then
7270                 # stop the MDT
7271                 stop $SINGLEMDS || error "failed to stop MDT."
7272                 # remount the MDT
7273                 start $SINGLEMDS $MDT_DEV $MDS_MOUNT_OPTS ||
7274                         error "failed to start MDT."
7275         fi
7276
7277         true
7278 }
7279 run_test 103b "MDS mount option 'noacl'"
7280
7281 test_103c() {
7282         mkdir -p $DIR/$tdir
7283         cp -rp $DIR/$tdir $DIR/$tdir.bak
7284
7285         [ -n "$(getfattr -d -m. $DIR/$tdir | grep posix_acl_default)" ] &&
7286                 error "$DIR/$tdir shouldn't contain default ACL"
7287         [ -n "$(getfattr -d -m. $DIR/$tdir.bak | grep posix_acl_default)" ] &&
7288                 error "$DIR/$tdir.bak shouldn't contain default ACL"
7289         true
7290 }
7291 run_test 103c "'cp -rp' won't set empty acl"
7292
7293 test_104a() {
7294         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7295         touch $DIR/$tfile
7296         lfs df || error "lfs df failed"
7297         lfs df -ih || error "lfs df -ih failed"
7298         lfs df -h $DIR || error "lfs df -h $DIR failed"
7299         lfs df -i $DIR || error "lfs df -i $DIR failed"
7300         lfs df $DIR/$tfile || error "lfs df $DIR/$tfile failed"
7301         lfs df -ih $DIR/$tfile || error "lfs df -ih $DIR/$tfile failed"
7302
7303         local OSC=$(lctl dl | grep OST0000-osc-[^M] | awk '{ print $4 }')
7304         lctl --device %$OSC deactivate
7305         lfs df || error "lfs df with deactivated OSC failed"
7306         lctl --device %$OSC activate
7307         # wait the osc back to normal
7308         wait_osc_import_state client ost FULL
7309
7310         lfs df || error "lfs df with reactivated OSC failed"
7311         rm -f $DIR/$tfile
7312 }
7313 run_test 104a "lfs df [-ih] [path] test ========================="
7314
7315 test_104b() {
7316         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7317         [ $RUNAS_ID -eq $UID ] &&
7318                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
7319         chmod 666 /dev/obd
7320         denied_cnt=$(($($RUNAS $LFS check servers 2>&1 |
7321                         grep "Permission denied" | wc -l)))
7322         if [ $denied_cnt -ne 0 ]; then
7323                 error "lfs check servers test failed"
7324         fi
7325 }
7326 run_test 104b "$RUNAS lfs check servers test ===================="
7327
7328 test_105a() {
7329         # doesn't work on 2.4 kernels
7330         touch $DIR/$tfile
7331         if $(flock_is_enabled); then
7332                 flocks_test 1 on -f $DIR/$tfile || error "fail flock on"
7333         else
7334                 flocks_test 1 off -f $DIR/$tfile || error "fail flock off"
7335         fi
7336         rm -f $DIR/$tfile
7337 }
7338 run_test 105a "flock when mounted without -o flock test ========"
7339
7340 test_105b() {
7341         touch $DIR/$tfile
7342         if $(flock_is_enabled); then
7343                 flocks_test 1 on -c $DIR/$tfile || error "fail flock on"
7344         else
7345                 flocks_test 1 off -c $DIR/$tfile || error "fail flock off"
7346         fi
7347         rm -f $DIR/$tfile
7348 }
7349 run_test 105b "fcntl when mounted without -o flock test ========"
7350
7351 test_105c() {
7352         touch $DIR/$tfile
7353         if $(flock_is_enabled); then
7354                 flocks_test 1 on -l $DIR/$tfile || error "fail flock on"
7355         else
7356                 flocks_test 1 off -l $DIR/$tfile || error "fail flock off"
7357         fi
7358         rm -f $DIR/$tfile
7359 }
7360 run_test 105c "lockf when mounted without -o flock test ========"
7361
7362 test_105d() { # bug 15924
7363         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7364         test_mkdir -p $DIR/$tdir
7365         flock_is_enabled || { skip "mount w/o flock enabled" && return; }
7366         #define OBD_FAIL_LDLM_CP_CB_WAIT  0x315
7367         $LCTL set_param fail_loc=0x80000315
7368         flocks_test 2 $DIR/$tdir
7369 }
7370 run_test 105d "flock race (should not freeze) ========"
7371
7372 test_105e() { # bug 22660 && 22040
7373         flock_is_enabled || { skip "mount w/o flock enabled" && return; }
7374         touch $DIR/$tfile
7375         flocks_test 3 $DIR/$tfile
7376 }
7377 run_test 105e "Two conflicting flocks from same process ======="
7378
7379 test_106() { #bug 10921
7380         test_mkdir -p $DIR/$tdir
7381         $DIR/$tdir && error "exec $DIR/$tdir succeeded"
7382         chmod 777 $DIR/$tdir || error "chmod $DIR/$tdir failed"
7383 }
7384 run_test 106 "attempt exec of dir followed by chown of that dir"
7385
7386 test_107() {
7387         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7388         CDIR=`pwd`
7389         cd $DIR
7390
7391         local file=core
7392         rm -f $file
7393
7394         local save_pattern=$(sysctl -n kernel.core_pattern)
7395         local save_uses_pid=$(sysctl -n kernel.core_uses_pid)
7396         sysctl -w kernel.core_pattern=$file
7397         sysctl -w kernel.core_uses_pid=0
7398
7399         ulimit -c unlimited
7400         sleep 60 &
7401         SLEEPPID=$!
7402
7403         sleep 1
7404
7405         kill -s 11 $SLEEPPID
7406         wait $SLEEPPID
7407         if [ -e $file ]; then
7408                 size=`stat -c%s $file`
7409                 [ $size -eq 0 ] && error "Fail to create core file $file"
7410         else
7411                 error "Fail to create core file $file"
7412         fi
7413         rm -f $file
7414         sysctl -w kernel.core_pattern=$save_pattern
7415         sysctl -w kernel.core_uses_pid=$save_uses_pid
7416         cd $CDIR
7417 }
7418 run_test 107 "Coredump on SIG"
7419
7420 test_110() {
7421         test_mkdir -p $DIR/$tdir
7422         test_mkdir $DIR/$tdir/$(str_repeat 'a' 255) ||
7423                 error "mkdir with 255 char failed"
7424         test_mkdir $DIR/$tdir/$(str_repeat 'b' 256) &&
7425                 error "mkdir with 256 char should fail, but did not"
7426         touch $DIR/$tdir/$(str_repeat 'x' 255) ||
7427                 error "create with 255 char failed"
7428         touch $DIR/$tdir/$(str_repeat 'y' 256) &&
7429                 error "create with 256 char should fail, but did not"
7430
7431         ls -l $DIR/$tdir
7432         rm -rf $DIR/$tdir
7433 }
7434 run_test 110 "filename length checking"
7435
7436 test_115() {
7437         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7438         OSTIO_pre=$(ps -e | grep ll_ost_io | awk '{ print $4 }'| sort -n |
7439                 tail -1 | cut -c11-20)
7440         [ -z "$OSTIO_pre" ] && skip "no OSS threads" && return
7441         echo "Starting with $OSTIO_pre threads"
7442
7443         NUMTEST=20000
7444         NUMFREE=$(df -i -P $DIR | tail -n 1 | awk '{ print $4 }')
7445         [[ $NUMFREE -lt $NUMTEST ]] && NUMTEST=$(($NUMFREE - 1000))
7446         echo "$NUMTEST creates/unlinks"
7447         test_mkdir -p $DIR/$tdir
7448         createmany -o $DIR/$tdir/$tfile $NUMTEST
7449         unlinkmany $DIR/$tdir/$tfile $NUMTEST
7450
7451         OSTIO_post=$(ps -e | grep ll_ost_io | awk '{ print $4 }' | sort -n |
7452                 tail -1 | cut -c11-20)
7453
7454         # don't return an error
7455         [ $OSTIO_post == $OSTIO_pre ] && echo \
7456             "WARNING: No new ll_ost_io threads were created ($OSTIO_pre)" &&
7457             echo "This may be fine, depending on what ran before this test" &&
7458             echo "and how fast this system is." && return
7459
7460         echo "Started with $OSTIO_pre threads, ended with $OSTIO_post"
7461 }
7462 run_test 115 "verify dynamic thread creation===================="
7463
7464 free_min_max () {
7465         wait_delete_completed
7466         AVAIL=($(lctl get_param -n osc.*[oO][sS][cC]-[^M]*.kbytesavail))
7467         echo OST kbytes available: ${AVAIL[@]}
7468         MAXI=0; MAXV=${AVAIL[0]}
7469         MINI=0; MINV=${AVAIL[0]}
7470         for ((i = 0; i < ${#AVAIL[@]}; i++)); do
7471                 #echo OST $i: ${AVAIL[i]}kb
7472                 if [[ ${AVAIL[i]} -gt $MAXV ]]; then
7473                         MAXV=${AVAIL[i]}; MAXI=$i
7474                 fi
7475                 if [[ ${AVAIL[i]} -lt $MINV ]]; then
7476                         MINV=${AVAIL[i]}; MINI=$i
7477                 fi
7478         done
7479         echo Min free space: OST $MINI: $MINV
7480         echo Max free space: OST $MAXI: $MAXV
7481 }
7482
7483 test_116a() { # was previously test_116()
7484         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7485         remote_mds_nodsh && skip "remote MDS with nodsh" && return
7486
7487         [[ $OSTCOUNT -lt 2 ]] && skip_env "$OSTCOUNT < 2 OSTs" && return
7488
7489         echo -n "Free space priority "
7490         do_facet $SINGLEMDS lctl get_param -n lo*.*-mdtlov.qos_prio_free |
7491                 head -n1
7492         declare -a AVAIL
7493         free_min_max
7494
7495         [ $MINV -eq 0 ] && skip "no free space in OST$MINI, skip" && return
7496         [ $MINV -gt 10000000 ] && skip "too much free space in OST$MINI, skip" \
7497                 && return
7498         trap simple_cleanup_common EXIT
7499
7500
7501         # Check if we need to generate uneven OSTs
7502         test_mkdir -p $DIR/$tdir/OST${MINI}
7503         local FILL=$(($MINV / 4))
7504         local DIFF=$(($MAXV - $MINV))
7505         local DIFF2=$(($DIFF * 100 / $MINV))
7506
7507         local threshold=$(do_facet $SINGLEMDS \
7508                 lctl get_param -n *.*MDT0000-mdtlov.qos_threshold_rr | head -n1)
7509         threshold=${threshold%%%}
7510         echo -n "Check for uneven OSTs: "
7511         echo -n "diff=${DIFF}KB (${DIFF2}%) must be > ${threshold}% ..."
7512
7513         if [[ $DIFF2 -gt $threshold ]]; then
7514                 echo "ok"
7515                 echo "Don't need to fill OST$MINI"
7516         else
7517                 # generate uneven OSTs. Write 2% over the QOS threshold value
7518                 echo "no"
7519                 DIFF=$(($threshold - $DIFF2 + 2))
7520                 DIFF2=$(( ($MINV * $DIFF)/100 ))
7521                 echo "Fill ${DIFF}% remaining space in OST${MINI} with ${DIFF2}KB"
7522                 $SETSTRIPE -i $MINI -c 1 $DIR/$tdir/OST${MINI} ||
7523                         error "setstripe failed"
7524                 DIFF=$(($DIFF2 / 2048))
7525                 i=0
7526                 while [ $i -lt $DIFF ]; do
7527                         i=$(($i + 1))
7528                         dd if=/dev/zero of=$DIR/$tdir/OST${MINI}/$tfile-$i \
7529                                 bs=2M count=1 2>/dev/null
7530                         echo -n .
7531                 done
7532                 echo .
7533                 sync
7534                 sleep_maxage
7535                 free_min_max
7536         fi
7537
7538         DIFF=$(($MAXV - $MINV))
7539         DIFF2=$(($DIFF * 100 / $MINV))
7540         echo -n "diff=${DIFF}=${DIFF2}% must be > ${threshold}% for QOS mode..."
7541         if [[ $DIFF2 -gt $threshold ]]; then
7542                 echo "ok"
7543         else
7544                 echo "failed - QOS mode won't be used"
7545                 skip "QOS imbalance criteria not met"
7546                 simple_cleanup_common
7547                 return
7548         fi
7549
7550         MINI1=$MINI; MINV1=$MINV
7551         MAXI1=$MAXI; MAXV1=$MAXV
7552
7553         # now fill using QOS
7554         $SETSTRIPE -c 1 $DIR/$tdir
7555         FILL=$(($FILL / 200))
7556         if [ $FILL -gt 600 ]; then
7557                 FILL=600
7558         fi
7559         echo "writing $FILL files to QOS-assigned OSTs"
7560         i=0
7561         while [ $i -lt $FILL ]; do
7562                 i=$((i + 1))
7563                 dd if=/dev/zero of=$DIR/$tdir/$tfile-$i bs=200k \
7564                         count=1 2>/dev/null
7565                 echo -n .
7566         done
7567         echo "wrote $i 200k files"
7568         sync
7569         sleep_maxage
7570
7571         echo "Note: free space may not be updated, so measurements might be off"
7572         free_min_max
7573         DIFF2=$(($MAXV - $MINV))
7574         echo "free space delta: orig $DIFF final $DIFF2"
7575         [ $DIFF2 -gt $DIFF ] && echo "delta got worse!"
7576         DIFF=$(($MINV1 - ${AVAIL[$MINI1]}))
7577         echo "Wrote ${DIFF}KB to smaller OST $MINI1"
7578         DIFF2=$(($MAXV1 - ${AVAIL[$MAXI1]}))
7579         echo "Wrote ${DIFF2}KB to larger OST $MAXI1"
7580         FILL=$(($DIFF2 * 100 / $DIFF - 100))
7581         [ $DIFF -gt 0 ] &&
7582                 echo "Wrote ${FILL}% more data to larger OST $MAXI1"
7583
7584         # Figure out which files were written where
7585         UUID=$(lctl get_param -n lov.${FSNAME}-clilov-*.target_obd |
7586                   awk '/'$MINI1': / {print $2; exit}')
7587         echo $UUID
7588         MINC=$($GETSTRIPE --ost $UUID $DIR/$tdir | grep $DIR | wc -l)
7589         echo "$MINC files created on smaller OST $MINI1"
7590         UUID=$(lctl get_param -n lov.${FSNAME}-clilov-*.target_obd |
7591                   awk '/'$MAXI1': / {print $2; exit}')
7592         echo $UUID
7593         MAXC=$($GETSTRIPE --ost $UUID $DIR/$tdir | grep $DIR | wc -l)
7594         echo "$MAXC files created on larger OST $MAXI1"
7595         FILL=$(($MAXC * 100 / $MINC - 100))
7596         [[ $MINC -gt 0 ]] &&
7597                 echo "Wrote ${FILL}% more files to larger OST $MAXI1"
7598         [[ $MAXC -gt $MINC ]] ||
7599                 error_ignore LU-9 "stripe QOS didn't balance free space"
7600         simple_cleanup_common
7601 }
7602 run_test 116a "stripe QOS: free space balance ==================="
7603
7604 test_116b() { # LU-2093
7605         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7606         remote_mds_nodsh && skip "remote MDS with nodsh" && return
7607
7608 #define OBD_FAIL_MDS_OSC_CREATE_FAIL     0x147
7609         local old_rr=$(do_facet $SINGLEMDS lctl get_param -n \
7610                        lo*.$FSNAME-MDT0000-mdtlov.qos_threshold_rr | head -1)
7611         [ -z "$old_rr" ] && skip "no QOS" && return 0
7612         do_facet $SINGLEMDS lctl set_param \
7613                 lo*.$FSNAME-MDT0000-mdtlov.qos_threshold_rr=0
7614         mkdir -p $DIR/$tdir
7615         do_facet $SINGLEMDS lctl set_param fail_loc=0x147
7616         createmany -o $DIR/$tdir/f- 20 || error "can't create"
7617         do_facet $SINGLEMDS lctl set_param fail_loc=0
7618         rm -rf $DIR/$tdir
7619         do_facet $SINGLEMDS lctl set_param \
7620                 lo*.$FSNAME-MDT0000-mdtlov.qos_threshold_rr=$old_rr
7621 }
7622 run_test 116b "QoS shouldn't LBUG if not enough OSTs found on the 2nd pass"
7623
7624 test_117() # bug 10891
7625 {
7626         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7627         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1
7628         #define OBD_FAIL_OST_SETATTR_CREDITS 0x21e
7629         lctl set_param fail_loc=0x21e
7630         > $DIR/$tfile || error "truncate failed"
7631         lctl set_param fail_loc=0
7632         echo "Truncate succeeded."
7633         rm -f $DIR/$tfile
7634 }
7635 run_test 117 "verify osd extend =========="
7636
7637 NO_SLOW_RESENDCOUNT=4
7638 export OLD_RESENDCOUNT=""
7639 set_resend_count () {
7640         local PROC_RESENDCOUNT="osc.${FSNAME}-OST*-osc-*.resend_count"
7641         OLD_RESENDCOUNT=$(lctl get_param -n $PROC_RESENDCOUNT | head -n1)
7642         lctl set_param -n $PROC_RESENDCOUNT $1
7643         echo resend_count is set to $(lctl get_param -n $PROC_RESENDCOUNT)
7644 }
7645
7646 # for reduce test_118* time (b=14842)
7647 [ "$SLOW" = "no" ] && set_resend_count $NO_SLOW_RESENDCOUNT
7648
7649 # Reset async IO behavior after error case
7650 reset_async() {
7651         FILE=$DIR/reset_async
7652
7653         # Ensure all OSCs are cleared
7654         $SETSTRIPE -c -1 $FILE
7655         dd if=/dev/zero of=$FILE bs=64k count=$OSTCOUNT
7656         sync
7657         rm $FILE
7658 }
7659
7660 test_118a() #bug 11710
7661 {
7662         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7663         reset_async
7664
7665         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
7666         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
7667         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
7668
7669         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
7670                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
7671                 return 1;
7672         fi
7673         rm -f $DIR/$tfile
7674 }
7675 run_test 118a "verify O_SYNC works =========="
7676
7677 test_118b()
7678 {
7679         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7680         remote_ost_nodsh && skip "remote OST with nodsh" && return
7681
7682         reset_async
7683
7684         #define OBD_FAIL_SRV_ENOENT 0x217
7685         set_nodes_failloc "$(osts_nodes)" 0x217
7686         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
7687         RC=$?
7688         set_nodes_failloc "$(osts_nodes)" 0
7689         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
7690         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
7691                     grep -c writeback)
7692
7693         if [[ $RC -eq 0 ]]; then
7694                 error "Must return error due to dropped pages, rc=$RC"
7695                 return 1;
7696         fi
7697
7698         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
7699                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
7700                 return 1;
7701         fi
7702
7703         echo "Dirty pages not leaked on ENOENT"
7704
7705         # Due to the above error the OSC will issue all RPCs syncronously
7706         # until a subsequent RPC completes successfully without error.
7707         $MULTIOP $DIR/$tfile Ow4096yc
7708         rm -f $DIR/$tfile
7709
7710         return 0
7711 }
7712 run_test 118b "Reclaim dirty pages on fatal error =========="
7713
7714 test_118c()
7715 {
7716         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7717
7718         # for 118c, restore the original resend count, LU-1940
7719         [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] &&
7720                                 set_resend_count $OLD_RESENDCOUNT
7721         remote_ost_nodsh && skip "remote OST with nodsh" && return
7722
7723         reset_async
7724
7725         #define OBD_FAIL_OST_EROFS               0x216
7726         set_nodes_failloc "$(osts_nodes)" 0x216
7727
7728         # multiop should block due to fsync until pages are written
7729         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
7730         MULTIPID=$!
7731         sleep 1
7732
7733         if [[ `ps h -o comm -p $MULTIPID` != "multiop" ]]; then
7734                 error "Multiop failed to block on fsync, pid=$MULTIPID"
7735         fi
7736
7737         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
7738                     grep -c writeback)
7739         if [[ $WRITEBACK -eq 0 ]]; then
7740                 error "No page in writeback, writeback=$WRITEBACK"
7741         fi
7742
7743         set_nodes_failloc "$(osts_nodes)" 0
7744         wait $MULTIPID
7745         RC=$?
7746         if [[ $RC -ne 0 ]]; then
7747                 error "Multiop fsync failed, rc=$RC"
7748         fi
7749
7750         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
7751         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
7752                     grep -c writeback)
7753         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
7754                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
7755         fi
7756
7757         rm -f $DIR/$tfile
7758         echo "Dirty pages flushed via fsync on EROFS"
7759         return 0
7760 }
7761 run_test 118c "Fsync blocks on EROFS until dirty pages are flushed =========="
7762
7763 # continue to use small resend count to reduce test_118* time (b=14842)
7764 [ "$SLOW" = "no" ] && set_resend_count $NO_SLOW_RESENDCOUNT
7765
7766 test_118d()
7767 {
7768         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7769         remote_ost_nodsh && skip "remote OST with nodsh" && return
7770
7771         reset_async
7772
7773         #define OBD_FAIL_OST_BRW_PAUSE_BULK
7774         set_nodes_failloc "$(osts_nodes)" 0x214
7775         # multiop should block due to fsync until pages are written
7776         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
7777         MULTIPID=$!
7778         sleep 1
7779
7780         if [[ `ps h -o comm -p $MULTIPID` != "multiop" ]]; then
7781                 error "Multiop failed to block on fsync, pid=$MULTIPID"
7782         fi
7783
7784         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
7785                     grep -c writeback)
7786         if [[ $WRITEBACK -eq 0 ]]; then
7787                 error "No page in writeback, writeback=$WRITEBACK"
7788         fi
7789
7790         wait $MULTIPID || error "Multiop fsync failed, rc=$?"
7791         set_nodes_failloc "$(osts_nodes)" 0
7792
7793         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
7794         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
7795                     grep -c writeback)
7796         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
7797                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
7798         fi
7799
7800         rm -f $DIR/$tfile
7801         echo "Dirty pages gaurenteed flushed via fsync"
7802         return 0
7803 }
7804 run_test 118d "Fsync validation inject a delay of the bulk =========="
7805
7806 test_118f() {
7807         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7808         reset_async
7809
7810         #define OBD_FAIL_OSC_BRW_PREP_REQ2        0x40a
7811         lctl set_param fail_loc=0x8000040a
7812
7813         # Should simulate EINVAL error which is fatal
7814         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
7815         RC=$?
7816         if [[ $RC -eq 0 ]]; then
7817                 error "Must return error due to dropped pages, rc=$RC"
7818         fi
7819
7820         lctl set_param fail_loc=0x0
7821
7822         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
7823         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
7824         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
7825                     grep -c writeback)
7826         if [[ $LOCKED -ne 0 ]]; then
7827                 error "Locked pages remain in cache, locked=$LOCKED"
7828         fi
7829
7830         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
7831                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
7832         fi
7833
7834         rm -f $DIR/$tfile
7835         echo "No pages locked after fsync"
7836
7837         reset_async
7838         return 0
7839 }
7840 run_test 118f "Simulate unrecoverable OSC side error =========="
7841
7842 test_118g() {
7843         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7844         reset_async
7845
7846         #define OBD_FAIL_OSC_BRW_PREP_REQ        0x406
7847         lctl set_param fail_loc=0x406
7848
7849         # simulate local -ENOMEM
7850         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
7851         RC=$?
7852
7853         lctl set_param fail_loc=0
7854         if [[ $RC -eq 0 ]]; then
7855                 error "Must return error due to dropped pages, rc=$RC"
7856         fi
7857
7858         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
7859         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
7860         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
7861                         grep -c writeback)
7862         if [[ $LOCKED -ne 0 ]]; then
7863                 error "Locked pages remain in cache, locked=$LOCKED"
7864         fi
7865
7866         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
7867                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
7868         fi
7869
7870         rm -f $DIR/$tfile
7871         echo "No pages locked after fsync"
7872
7873         reset_async
7874         return 0
7875 }
7876 run_test 118g "Don't stay in wait if we got local -ENOMEM  =========="
7877
7878 test_118h() {
7879         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7880         remote_ost_nodsh && skip "remote OST with nodsh" && return
7881
7882         reset_async
7883
7884         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
7885         set_nodes_failloc "$(osts_nodes)" 0x20e
7886         # Should simulate ENOMEM error which is recoverable and should be handled by timeout
7887         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
7888         RC=$?
7889
7890         set_nodes_failloc "$(osts_nodes)" 0
7891         if [[ $RC -eq 0 ]]; then
7892                 error "Must return error due to dropped pages, rc=$RC"
7893         fi
7894
7895         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
7896         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
7897         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
7898                     grep -c writeback)
7899         if [[ $LOCKED -ne 0 ]]; then
7900                 error "Locked pages remain in cache, locked=$LOCKED"
7901         fi
7902
7903         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
7904                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
7905         fi
7906
7907         rm -f $DIR/$tfile
7908         echo "No pages locked after fsync"
7909
7910         return 0
7911 }
7912 run_test 118h "Verify timeout in handling recoverables errors  =========="
7913
7914 [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] && set_resend_count $OLD_RESENDCOUNT
7915
7916 test_118i() {
7917         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7918         remote_ost_nodsh && skip "remote OST with nodsh" && return
7919
7920         reset_async
7921
7922         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
7923         set_nodes_failloc "$(osts_nodes)" 0x20e
7924
7925         # Should simulate ENOMEM error which is recoverable and should be handled by timeout
7926         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
7927         PID=$!
7928         sleep 5
7929         set_nodes_failloc "$(osts_nodes)" 0
7930
7931         wait $PID
7932         RC=$?
7933         if [[ $RC -ne 0 ]]; then
7934                 error "got error, but should be not, rc=$RC"
7935         fi
7936
7937         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
7938         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
7939         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
7940         if [[ $LOCKED -ne 0 ]]; then
7941                 error "Locked pages remain in cache, locked=$LOCKED"
7942         fi
7943
7944         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
7945                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
7946         fi
7947
7948         rm -f $DIR/$tfile
7949         echo "No pages locked after fsync"
7950
7951         return 0
7952 }
7953 run_test 118i "Fix error before timeout in recoverable error  =========="
7954
7955 [ "$SLOW" = "no" ] && set_resend_count 4
7956
7957 test_118j() {
7958         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7959         remote_ost_nodsh && skip "remote OST with nodsh" && return
7960
7961         reset_async
7962
7963         #define OBD_FAIL_OST_BRW_WRITE_BULK2     0x220
7964         set_nodes_failloc "$(osts_nodes)" 0x220
7965
7966         # return -EIO from OST
7967         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
7968         RC=$?
7969         set_nodes_failloc "$(osts_nodes)" 0x0
7970         if [[ $RC -eq 0 ]]; then
7971                 error "Must return error due to dropped pages, rc=$RC"
7972         fi
7973
7974         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
7975         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
7976         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
7977         if [[ $LOCKED -ne 0 ]]; then
7978                 error "Locked pages remain in cache, locked=$LOCKED"
7979         fi
7980
7981         # in recoverable error on OST we want resend and stay until it finished
7982         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
7983                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
7984         fi
7985
7986         rm -f $DIR/$tfile
7987         echo "No pages locked after fsync"
7988
7989         return 0
7990 }
7991 run_test 118j "Simulate unrecoverable OST side error =========="
7992
7993 test_118k()
7994 {
7995         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7996         remote_ost_nodsh && skip "remote OSTs with nodsh" && return
7997
7998         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
7999         set_nodes_failloc "$(osts_nodes)" 0x20e
8000         test_mkdir -p $DIR/$tdir
8001
8002         for ((i=0;i<10;i++)); do
8003                 (dd if=/dev/zero of=$DIR/$tdir/$tfile-$i bs=1M count=10 || \
8004                         error "dd to $DIR/$tdir/$tfile-$i failed" )&
8005                 SLEEPPID=$!
8006                 sleep 0.500s
8007                 kill $SLEEPPID
8008                 wait $SLEEPPID
8009         done
8010
8011         set_nodes_failloc "$(osts_nodes)" 0
8012         rm -rf $DIR/$tdir
8013 }
8014 run_test 118k "bio alloc -ENOMEM and IO TERM handling ========="
8015
8016 test_118l()
8017 {
8018         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8019         # LU-646
8020         test_mkdir -p $DIR/$tdir
8021         $MULTIOP $DIR/$tdir Dy || error "fsync dir failed"
8022         rm -rf $DIR/$tdir
8023 }
8024 run_test 118l "fsync dir ========="
8025
8026 test_118m() # LU-3066
8027 {
8028         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8029         test_mkdir -p $DIR/$tdir
8030         $MULTIOP $DIR/$tdir DY || error "fdatasync dir failed"
8031         rm -rf $DIR/$tdir
8032 }
8033 run_test 118m "fdatasync dir ========="
8034
8035 [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] && set_resend_count $OLD_RESENDCOUNT
8036
8037 test_119a() # bug 11737
8038 {
8039         BSIZE=$((512 * 1024))
8040         directio write $DIR/$tfile 0 1 $BSIZE
8041         # We ask to read two blocks, which is more than a file size.
8042         # directio will indicate an error when requested and actual
8043         # sizes aren't equeal (a normal situation in this case) and
8044         # print actual read amount.
8045         NOB=`directio read $DIR/$tfile 0 2 $BSIZE | awk '/error/ {print $6}'`
8046         if [ "$NOB" != "$BSIZE" ]; then
8047                 error "read $NOB bytes instead of $BSIZE"
8048         fi
8049         rm -f $DIR/$tfile
8050 }
8051 run_test 119a "Short directIO read must return actual read amount"
8052
8053 test_119b() # bug 11737
8054 {
8055         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping 2-stripe test" && return
8056
8057         $SETSTRIPE -c 2 $DIR/$tfile || error "setstripe failed"
8058         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=1 || error "dd failed"
8059         sync
8060         $MULTIOP $DIR/$tfile oO_RDONLY:O_DIRECT:r$((2048 * 1024)) || \
8061                 error "direct read failed"
8062         rm -f $DIR/$tfile
8063 }
8064 run_test 119b "Sparse directIO read must return actual read amount"
8065
8066 test_119c() # bug 13099
8067 {
8068         BSIZE=1048576
8069         directio write $DIR/$tfile 3 1 $BSIZE || error "direct write failed"
8070         directio readhole $DIR/$tfile 0 2 $BSIZE || error "reading hole failed"
8071         rm -f $DIR/$tfile
8072 }
8073 run_test 119c "Testing for direct read hitting hole"
8074
8075 test_119d() # bug 15950
8076 {
8077         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8078         MAX_RPCS_IN_FLIGHT=`$LCTL get_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight`
8079         $LCTL set_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight 1
8080         BSIZE=1048576
8081         $SETSTRIPE $DIR/$tfile -i 0 -c 1 || error "setstripe failed"
8082         $DIRECTIO write $DIR/$tfile 0 1 $BSIZE || error "first directio failed"
8083         #define OBD_FAIL_OSC_DIO_PAUSE           0x40d
8084         lctl set_param fail_loc=0x40d
8085         $DIRECTIO write $DIR/$tfile 1 4 $BSIZE &
8086         pid_dio=$!
8087         sleep 1
8088         cat $DIR/$tfile > /dev/null &
8089         lctl set_param fail_loc=0
8090         pid_reads=$!
8091         wait $pid_dio
8092         log "the DIO writes have completed, now wait for the reads (should not block very long)"
8093         sleep 2
8094         [ -n "`ps h -p $pid_reads -o comm`" ] && \
8095         error "the read rpcs have not completed in 2s"
8096         rm -f $DIR/$tfile
8097         $LCTL set_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight $MAX_RPCS_IN_FLIGHT
8098 }
8099 run_test 119d "The DIO path should try to send a new rpc once one is completed"
8100
8101 test_120a() {
8102         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8103         test_mkdir -p $DIR/$tdir
8104         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
8105                skip "no early lock cancel on server" && return 0
8106
8107         lru_resize_disable mdc
8108         lru_resize_disable osc
8109         cancel_lru_locks mdc
8110         # asynchronous object destroy at MDT could cause bl ast to client
8111         cancel_lru_locks osc
8112
8113         stat $DIR/$tdir > /dev/null
8114         can1=$(do_facet $SINGLEMDS \
8115                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8116                awk '/ldlm_cancel/ {print $2}')
8117         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8118                awk '/ldlm_bl_callback/ {print $2}')
8119         test_mkdir -c1 $DIR/$tdir/d1
8120         can2=$(do_facet $SINGLEMDS \
8121                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8122                awk '/ldlm_cancel/ {print $2}')
8123         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8124                awk '/ldlm_bl_callback/ {print $2}')
8125         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
8126         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
8127         lru_resize_enable mdc
8128         lru_resize_enable osc
8129 }
8130 run_test 120a "Early Lock Cancel: mkdir test"
8131
8132 test_120b() {
8133         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8134         test_mkdir $DIR/$tdir
8135         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel)" ] && \
8136                skip "no early lock cancel on server" && return 0
8137         lru_resize_disable mdc
8138         lru_resize_disable osc
8139         cancel_lru_locks mdc
8140         stat $DIR/$tdir > /dev/null
8141         can1=$(do_facet $SINGLEMDS \
8142                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8143                awk '/ldlm_cancel/ {print $2}')
8144         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8145                awk '/ldlm_bl_callback/ {print $2}')
8146         touch $DIR/$tdir/f1
8147         can2=$(do_facet $SINGLEMDS \
8148                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8149                awk '/ldlm_cancel/ {print $2}')
8150         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8151                awk '/ldlm_bl_callback/ {print $2}')
8152         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
8153         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
8154         lru_resize_enable mdc
8155         lru_resize_enable osc
8156 }
8157 run_test 120b "Early Lock Cancel: create test"
8158
8159 test_120c() {
8160         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8161         test_mkdir -c1 $DIR/$tdir
8162         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel)" ] && \
8163                skip "no early lock cancel on server" && return 0
8164         lru_resize_disable mdc
8165         lru_resize_disable osc
8166         test_mkdir -p -c1 $DIR/$tdir/d1
8167         test_mkdir -p -c1 $DIR/$tdir/d2
8168         touch $DIR/$tdir/d1/f1
8169         cancel_lru_locks mdc
8170         stat $DIR/$tdir/d1 $DIR/$tdir/d2 $DIR/$tdir/d1/f1 > /dev/null
8171         can1=$(do_facet $SINGLEMDS \
8172                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8173                awk '/ldlm_cancel/ {print $2}')
8174         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8175                awk '/ldlm_bl_callback/ {print $2}')
8176         ln $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2
8177         can2=$(do_facet $SINGLEMDS \
8178                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8179                awk '/ldlm_cancel/ {print $2}')
8180         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8181                awk '/ldlm_bl_callback/ {print $2}')
8182         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
8183         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
8184         lru_resize_enable mdc
8185         lru_resize_enable osc
8186 }
8187 run_test 120c "Early Lock Cancel: link test"
8188
8189 test_120d() {
8190         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8191         test_mkdir -p -c1 $DIR/$tdir
8192         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel)" ] && \
8193                skip "no early lock cancel on server" && return 0
8194         lru_resize_disable mdc
8195         lru_resize_disable osc
8196         touch $DIR/$tdir
8197         cancel_lru_locks mdc
8198         stat $DIR/$tdir > /dev/null
8199         can1=$(do_facet $SINGLEMDS \
8200                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8201                awk '/ldlm_cancel/ {print $2}')
8202         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8203                awk '/ldlm_bl_callback/ {print $2}')
8204         chmod a+x $DIR/$tdir
8205         can2=$(do_facet $SINGLEMDS \
8206                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8207                awk '/ldlm_cancel/ {print $2}')
8208         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8209                awk '/ldlm_bl_callback/ {print $2}')
8210         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
8211         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
8212         lru_resize_enable mdc
8213         lru_resize_enable osc
8214 }
8215 run_test 120d "Early Lock Cancel: setattr test"
8216
8217 test_120e() {
8218         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8219         ! $($LCTL get_param -n mdc.*.connect_flags | grep -q early_lock_can) &&
8220                 skip "no early lock cancel on server" && return 0
8221         local dlmtrace_set=false
8222
8223         test_mkdir -p -c1 $DIR/$tdir
8224         lru_resize_disable mdc
8225         lru_resize_disable osc
8226         ! $LCTL get_param debug | grep -q dlmtrace &&
8227                 $LCTL set_param debug=+dlmtrace && dlmtrace_set=true
8228         dd if=/dev/zero of=$DIR/$tdir/f1 count=1
8229         cancel_lru_locks mdc
8230         cancel_lru_locks osc
8231         dd if=$DIR/$tdir/f1 of=/dev/null
8232         stat $DIR/$tdir $DIR/$tdir/f1 > /dev/null
8233         # XXX client can not do early lock cancel of OST lock
8234         # during unlink (LU-4206), so cancel osc lock now.
8235         cancel_lru_locks osc
8236         can1=$(do_facet $SINGLEMDS \
8237                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8238                awk '/ldlm_cancel/ {print $2}')
8239         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8240                awk '/ldlm_bl_callback/ {print $2}')
8241         unlink $DIR/$tdir/f1
8242         sleep 5
8243         can2=$(do_facet $SINGLEMDS \
8244                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8245                awk '/ldlm_cancel/ {print $2}')
8246         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8247                awk '/ldlm_bl_callback/ {print $2}')
8248         [ $can1 -ne $can2 ] && error "$((can2 - can1)) cancel RPC occured" &&
8249                 $LCTL dk $TMP/cancel.debug.txt
8250         [ $blk1 -ne $blk2 ] && error "$((blk2 - blk1)) blocking RPC occured" &&
8251                 $LCTL dk $TMP/blocking.debug.txt
8252         $dlmtrace_set && $LCTL set_param debug=-dlmtrace
8253         lru_resize_enable mdc
8254         lru_resize_enable osc
8255 }
8256 run_test 120e "Early Lock Cancel: unlink test"
8257
8258 test_120f() {
8259         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8260         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
8261                skip "no early lock cancel on server" && return 0
8262         test_mkdir -p -c1 $DIR/$tdir
8263         lru_resize_disable mdc
8264         lru_resize_disable osc
8265         test_mkdir -p -c1 $DIR/$tdir/d1
8266         test_mkdir -p -c1 $DIR/$tdir/d2
8267         dd if=/dev/zero of=$DIR/$tdir/d1/f1 count=1
8268         dd if=/dev/zero of=$DIR/$tdir/d2/f2 count=1
8269         cancel_lru_locks mdc
8270         cancel_lru_locks osc
8271         dd if=$DIR/$tdir/d1/f1 of=/dev/null
8272         dd if=$DIR/$tdir/d2/f2 of=/dev/null
8273         stat $DIR/$tdir/d1 $DIR/$tdir/d2 $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2 > /dev/null
8274         # XXX client can not do early lock cancel of OST lock
8275         # during rename (LU-4206), so cancel osc lock now.
8276         cancel_lru_locks osc
8277         can1=$(do_facet $SINGLEMDS \
8278                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8279                awk '/ldlm_cancel/ {print $2}')
8280         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8281                awk '/ldlm_bl_callback/ {print $2}')
8282         mrename $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2
8283         sleep 5
8284         can2=$(do_facet $SINGLEMDS \
8285                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8286                awk '/ldlm_cancel/ {print $2}')
8287         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8288                awk '/ldlm_bl_callback/ {print $2}')
8289         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
8290         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
8291         lru_resize_enable mdc
8292         lru_resize_enable osc
8293 }
8294 run_test 120f "Early Lock Cancel: rename test"
8295
8296 test_120g() {
8297         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8298         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
8299                skip "no early lock cancel on server" && return 0
8300         lru_resize_disable mdc
8301         lru_resize_disable osc
8302         count=10000
8303         echo create $count files
8304         test_mkdir -p $DIR/$tdir
8305         cancel_lru_locks mdc
8306         cancel_lru_locks osc
8307         t0=`date +%s`
8308
8309         can0=$(do_facet $SINGLEMDS \
8310                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8311                awk '/ldlm_cancel/ {print $2}')
8312         blk0=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8313                awk '/ldlm_bl_callback/ {print $2}')
8314         createmany -o $DIR/$tdir/f $count
8315         sync
8316         can1=$(do_facet $SINGLEMDS \
8317                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8318                awk '/ldlm_cancel/ {print $2}')
8319         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8320                awk '/ldlm_bl_callback/ {print $2}')
8321         t1=$(date +%s)
8322         echo total: $((can1-can0)) cancels, $((blk1-blk0)) blockings
8323         echo rm $count files
8324         rm -r $DIR/$tdir
8325         sync
8326         can2=$(do_facet $SINGLEMDS \
8327                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8328                awk '/ldlm_cancel/ {print $2}')
8329         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8330                awk '/ldlm_bl_callback/ {print $2}')
8331         t2=$(date +%s)
8332         echo total: $count removes in $((t2-t1))
8333         echo total: $((can2-can1)) cancels, $((blk2-blk1)) blockings
8334         sleep 2
8335         # wait for commitment of removal
8336         lru_resize_enable mdc
8337         lru_resize_enable osc
8338 }
8339 run_test 120g "Early Lock Cancel: performance test"
8340
8341 test_121() { #bug #10589
8342         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8343         rm -rf $DIR/$tfile
8344         writes=$(LANG=C dd if=/dev/zero of=$DIR/$tfile count=1 2>&1 | awk -F '+' '/out$/ {print $1}')
8345 #define OBD_FAIL_LDLM_CANCEL_RACE        0x310
8346         lctl set_param fail_loc=0x310
8347         cancel_lru_locks osc > /dev/null
8348         reads=$(LANG=C dd if=$DIR/$tfile of=/dev/null 2>&1 | awk -F '+' '/in$/ {print $1}')
8349         lctl set_param fail_loc=0
8350         [[ $reads -eq $writes ]] ||
8351                 error "read $reads blocks, must be $writes blocks"
8352 }
8353 run_test 121 "read cancel race ========="
8354
8355 test_123a() { # was test 123, statahead(bug 11401)
8356         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8357         SLOWOK=0
8358         if [ -z "$(grep "processor.*: 1" /proc/cpuinfo)" ]; then
8359             log "testing on UP system. Performance may be not as good as expected."
8360                         SLOWOK=1
8361         fi
8362
8363         rm -rf $DIR/$tdir
8364         test_mkdir -p $DIR/$tdir
8365         NUMFREE=$(df -i -P $DIR | tail -n 1 | awk '{ print $4 }')
8366         [[ $NUMFREE -gt 100000 ]] && NUMFREE=100000 || NUMFREE=$((NUMFREE-1000))
8367         MULT=10
8368         for ((i=100, j=0; i<=$NUMFREE; j=$i, i=$((i * MULT)) )); do
8369                 createmany -o $DIR/$tdir/$tfile $j $((i - j))
8370
8371                 max=`lctl get_param -n llite.*.statahead_max | head -n 1`
8372                 lctl set_param -n llite.*.statahead_max 0
8373                 lctl get_param llite.*.statahead_max
8374                 cancel_lru_locks mdc
8375                 cancel_lru_locks osc
8376                 stime=`date +%s`
8377                 time ls -l $DIR/$tdir | wc -l
8378                 etime=`date +%s`
8379                 delta=$((etime - stime))
8380                 log "ls $i files without statahead: $delta sec"
8381                 lctl set_param llite.*.statahead_max=$max
8382
8383                 swrong=`lctl get_param -n llite.*.statahead_stats | grep "statahead wrong:" | awk '{print $3}'`
8384                 lctl get_param -n llite.*.statahead_max | grep '[0-9]'
8385                 cancel_lru_locks mdc
8386                 cancel_lru_locks osc
8387                 stime=`date +%s`
8388                 time ls -l $DIR/$tdir | wc -l
8389                 etime=`date +%s`
8390                 delta_sa=$((etime - stime))
8391                 log "ls $i files with statahead: $delta_sa sec"
8392                 lctl get_param -n llite.*.statahead_stats
8393                 ewrong=`lctl get_param -n llite.*.statahead_stats | grep "statahead wrong:" | awk '{print $3}'`
8394
8395                 [[ $swrong -lt $ewrong ]] &&
8396                         log "statahead was stopped, maybe too many locks held!"
8397                 [[ $delta -eq 0 || $delta_sa -eq 0 ]] && continue
8398
8399                 if [ $((delta_sa * 100)) -gt $((delta * 105)) -a $delta_sa -gt $((delta + 2)) ]; then
8400                     max=`lctl get_param -n llite.*.statahead_max | head -n 1`
8401                     lctl set_param -n llite.*.statahead_max 0
8402                     lctl get_param llite.*.statahead_max
8403                     cancel_lru_locks mdc
8404                     cancel_lru_locks osc
8405                     stime=`date +%s`
8406                     time ls -l $DIR/$tdir | wc -l
8407                     etime=`date +%s`
8408                     delta=$((etime - stime))
8409                     log "ls $i files again without statahead: $delta sec"
8410                     lctl set_param llite.*.statahead_max=$max
8411                     if [ $((delta_sa * 100)) -gt $((delta * 105)) -a $delta_sa -gt $((delta + 2)) ]; then
8412                         if [  $SLOWOK -eq 0 ]; then
8413                                 error "ls $i files is slower with statahead!"
8414                         else
8415                                 log "ls $i files is slower with statahead!"
8416                         fi
8417                         break
8418                     fi
8419                 fi
8420
8421                 [ $delta -gt 20 ] && break
8422                 [ $delta -gt 8 ] && MULT=$((50 / delta))
8423                 [ "$SLOW" = "no" -a $delta -gt 5 ] && break
8424         done
8425         log "ls done"
8426
8427         stime=`date +%s`
8428         rm -r $DIR/$tdir
8429         sync
8430         etime=`date +%s`
8431         delta=$((etime - stime))
8432         log "rm -r $DIR/$tdir/: $delta seconds"
8433         log "rm done"
8434         lctl get_param -n llite.*.statahead_stats
8435 }
8436 run_test 123a "verify statahead work"
8437
8438 test_123b () { # statahead(bug 15027)
8439         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8440         test_mkdir -p $DIR/$tdir
8441         createmany -o $DIR/$tdir/$tfile-%d 1000
8442
8443         cancel_lru_locks mdc
8444         cancel_lru_locks osc
8445
8446 #define OBD_FAIL_MDC_GETATTR_ENQUEUE     0x803
8447         lctl set_param fail_loc=0x80000803
8448         ls -lR $DIR/$tdir > /dev/null
8449         log "ls done"
8450         lctl set_param fail_loc=0x0
8451         lctl get_param -n llite.*.statahead_stats
8452         rm -r $DIR/$tdir
8453         sync
8454
8455 }
8456 run_test 123b "not panic with network error in statahead enqueue (bug 15027)"
8457
8458 test_124a() {
8459         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8460         [ -z "$($LCTL get_param -n mdc.*.connect_flags | grep lru_resize)" ] &&
8461                 skip "no lru resize on server" && return 0
8462         local NR=2000
8463         test_mkdir -p $DIR/$tdir || error "failed to create $DIR/$tdir"
8464
8465         log "create $NR files at $DIR/$tdir"
8466         createmany -o $DIR/$tdir/f $NR ||
8467                 error "failed to create $NR files in $DIR/$tdir"
8468
8469         cancel_lru_locks mdc
8470         ls -l $DIR/$tdir > /dev/null
8471
8472         local NSDIR=""
8473         local LRU_SIZE=0
8474         for VALUE in $($LCTL get_param ldlm.namespaces.*mdc-*.lru_size); do
8475                 local PARAM=$(echo ${VALUE[0]} | cut -d "=" -f1)
8476                 LRU_SIZE=$($LCTL get_param -n $PARAM)
8477                 if [[ $LRU_SIZE -gt $(default_lru_size) ]]; then
8478                         NSDIR=$(echo $PARAM | cut -d "." -f1-3)
8479                         log "NSDIR=$NSDIR"
8480                         log "NS=$(basename $NSDIR)"
8481                         break
8482                 fi
8483         done
8484
8485         if [[ -z "$NSDIR" || $LRU_SIZE -lt $(default_lru_size) ]]; then
8486                 skip "Not enough cached locks created!"
8487                 return 0
8488         fi
8489         log "LRU=$LRU_SIZE"
8490
8491         local SLEEP=30
8492
8493         # We know that lru resize allows one client to hold $LIMIT locks
8494         # for 10h. After that locks begin to be killed by client.
8495         local MAX_HRS=10
8496         local LIMIT=$($LCTL get_param -n $NSDIR.pool.limit)
8497         log "LIMIT=$LIMIT"
8498         if [ $LIMIT -lt $LRU_SIZE ]; then
8499             skip "Limit is too small $LIMIT"
8500             return 0
8501         fi
8502
8503         # Make LVF so higher that sleeping for $SLEEP is enough to _start_
8504         # killing locks. Some time was spent for creating locks. This means
8505         # that up to the moment of sleep finish we must have killed some of
8506         # them (10-100 locks). This depends on how fast ther were created.
8507         # Many of them were touched in almost the same moment and thus will
8508         # be killed in groups.
8509         local LVF=$(($MAX_HRS * 60 * 60 / $SLEEP * $LIMIT / $LRU_SIZE))
8510
8511         # Use $LRU_SIZE_B here to take into account real number of locks
8512         # created in the case of CMD, LRU_SIZE_B != $NR in most of cases
8513         local LRU_SIZE_B=$LRU_SIZE
8514         log "LVF=$LVF"
8515         local OLD_LVF=$($LCTL get_param -n $NSDIR.pool.lock_volume_factor)
8516         log "OLD_LVF=$OLD_LVF"
8517         $LCTL set_param -n $NSDIR.pool.lock_volume_factor $LVF
8518
8519         # Let's make sure that we really have some margin. Client checks
8520         # cached locks every 10 sec.
8521         SLEEP=$((SLEEP+20))
8522         log "Sleep ${SLEEP} sec"
8523         local SEC=0
8524         while ((SEC<$SLEEP)); do
8525                 echo -n "..."
8526                 sleep 5
8527                 SEC=$((SEC+5))
8528                 LRU_SIZE=$($LCTL get_param -n $NSDIR/lru_size)
8529                 echo -n "$LRU_SIZE"
8530         done
8531         echo ""
8532         $LCTL set_param -n $NSDIR.pool.lock_volume_factor $OLD_LVF
8533         local LRU_SIZE_A=$($LCTL get_param -n $NSDIR.lru_size)
8534
8535         [[ $LRU_SIZE_B -gt $LRU_SIZE_A ]] || {
8536                 error "No locks dropped in ${SLEEP}s. LRU size: $LRU_SIZE_A"
8537                 unlinkmany $DIR/$tdir/f $NR
8538                 return
8539         }
8540
8541         log "Dropped "$((LRU_SIZE_B-LRU_SIZE_A))" locks in ${SLEEP}s"
8542         log "unlink $NR files at $DIR/$tdir"
8543         unlinkmany $DIR/$tdir/f $NR
8544 }
8545 run_test 124a "lru resize ======================================="
8546
8547 get_max_pool_limit()
8548 {
8549         local limit=$($LCTL get_param \
8550                       -n ldlm.namespaces.*-MDT0000-mdc-*.pool.limit)
8551         local max=0
8552         for l in $limit; do
8553                 if [[ $l -gt $max ]]; then
8554                         max=$l
8555                 fi
8556         done
8557         echo $max
8558 }
8559
8560 test_124b() {
8561         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8562         [ -z "$($LCTL get_param -n mdc.*.connect_flags | grep lru_resize)" ] &&
8563                 skip "no lru resize on server" && return 0
8564
8565         LIMIT=$(get_max_pool_limit)
8566
8567         NR=$(($(default_lru_size)*20))
8568         if [[ $NR -gt $LIMIT ]]; then
8569                 log "Limit lock number by $LIMIT locks"
8570                 NR=$LIMIT
8571         fi
8572         lru_resize_disable mdc
8573         test_mkdir -p $DIR/$tdir/disable_lru_resize ||
8574                 error "failed to create $DIR/$tdir/disable_lru_resize"
8575
8576         createmany -o $DIR/$tdir/disable_lru_resize/f $NR
8577         log "doing ls -la $DIR/$tdir/disable_lru_resize 3 times"
8578         cancel_lru_locks mdc
8579         stime=`date +%s`
8580         PID=""
8581         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
8582         PID="$PID $!"
8583         sleep 2
8584         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
8585         PID="$PID $!"
8586         sleep 2
8587         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
8588         PID="$PID $!"
8589         wait $PID
8590         etime=`date +%s`
8591         nolruresize_delta=$((etime-stime))
8592         log "ls -la time: $nolruresize_delta seconds"
8593         log "lru_size = $(lctl get_param -n ldlm.namespaces.*mdc*.lru_size)"
8594         unlinkmany $DIR/$tdir/disable_lru_resize/f $NR
8595
8596         lru_resize_enable mdc
8597         test_mkdir -p $DIR/$tdir/enable_lru_resize ||
8598                 error "failed to create $DIR/$tdir/enable_lru_resize"
8599
8600         createmany -o $DIR/$tdir/enable_lru_resize/f $NR
8601         log "doing ls -la $DIR/$tdir/enable_lru_resize 3 times"
8602         cancel_lru_locks mdc
8603         stime=`date +%s`
8604         PID=""
8605         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
8606         PID="$PID $!"
8607         sleep 2
8608         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
8609         PID="$PID $!"
8610         sleep 2
8611         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
8612         PID="$PID $!"
8613         wait $PID
8614         etime=`date +%s`
8615         lruresize_delta=$((etime-stime))
8616         log "ls -la time: $lruresize_delta seconds"
8617         log "lru_size = $(lctl get_param -n ldlm.namespaces.*mdc*.lru_size)"
8618
8619         if [ $lruresize_delta -gt $nolruresize_delta ]; then
8620                 log "ls -la is $(((lruresize_delta - $nolruresize_delta) * 100 / $nolruresize_delta))% slower with lru resize enabled"
8621         elif [ $nolruresize_delta -gt $lruresize_delta ]; then
8622                 log "ls -la is $(((nolruresize_delta - $lruresize_delta) * 100 / $nolruresize_delta))% faster with lru resize enabled"
8623         else
8624                 log "lru resize performs the same with no lru resize"
8625         fi
8626         unlinkmany $DIR/$tdir/enable_lru_resize/f $NR
8627 }
8628 run_test 124b "lru resize (performance test) ======================="
8629
8630 test_124c() {
8631         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8632         [ -z "$($LCTL get_param -n mdc.*.connect_flags | grep lru_resize)" ] &&
8633                 skip "no lru resize on server" && return 0
8634
8635         # cache ununsed locks on client
8636         local nr=100
8637         cancel_lru_locks mdc
8638         test_mkdir -p $DIR/$tdir || error "failed to create $DIR/$tdir"
8639         createmany -o $DIR/$tdir/f $nr ||
8640                 error "failed to create $nr files in $DIR/$tdir"
8641         ls -l $DIR/$tdir > /dev/null
8642
8643         local nsdir="ldlm.namespaces.*-MDT0000-mdc-*"
8644         local unused=$($LCTL get_param -n $nsdir.lock_unused_count)
8645         local max_age=$($LCTL get_param -n $nsdir.lru_max_age)
8646         local recalc_p=$($LCTL get_param -n $nsdir.pool.recalc_period)
8647         echo "unused=$unused, max_age=$max_age, recalc_p=$recalc_p"
8648
8649         # set lru_max_age to 1 sec
8650         $LCTL set_param $nsdir.lru_max_age=1000 # jiffies
8651         echo "sleep $((recalc_p * 2)) seconds..."
8652         sleep $((recalc_p * 2))
8653
8654         local remaining=$($LCTL get_param -n $nsdir.lock_unused_count)
8655         # restore lru_max_age
8656         $LCTL set_param -n $nsdir.lru_max_age $max_age
8657         [ $remaining -eq 0 ] || error "$remaining locks are not canceled"
8658         unlinkmany $DIR/$tdir/f $nr
8659 }
8660 run_test 124c "LRUR cancel very aged locks"
8661
8662 test_125() { # 13358
8663         [ -z "$(lctl get_param -n llite.*.client_type | grep local)" ] && skip "must run as local client" && return
8664         [ -z "$(lctl get_param -n mdc.*-mdc-*.connect_flags | grep acl)" ] && skip "must have acl enabled" && return
8665         [ -z "$(which setfacl)" ] && skip "must have setfacl tool" && return
8666         test_mkdir -p $DIR/d125 || error "mkdir failed"
8667         $SETSTRIPE -S 65536 -c -1 $DIR/d125 || error "setstripe failed"
8668         setfacl -R -m u:bin:rwx $DIR/d125 || error "setfacl $DIR/d125 failed"
8669         ls -ld $DIR/d125 || error "cannot access $DIR/d125"
8670 }
8671 run_test 125 "don't return EPROTO when a dir has a non-default striping and ACLs"
8672
8673 test_126() { # bug 12829/13455
8674         [ -z "$(lctl get_param -n llite.*.client_type | grep local)" ] && skip "must run as local client" && return
8675         [ "$UID" != 0 ] && skip_env "skipping $TESTNAME (must run as root)" && return
8676         $GSS && skip "must run as gss disabled" && return
8677
8678         $RUNAS -u 0 -g 1 touch $DIR/$tfile || error "touch failed"
8679         gid=`ls -n $DIR/$tfile | awk '{print $4}'`
8680         rm -f $DIR/$tfile
8681         [ $gid -eq "1" ] || error "gid is set to" $gid "instead of 1"
8682 }
8683 run_test 126 "check that the fsgid provided by the client is taken into account"
8684
8685 test_127a() { # bug 15521
8686         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8687         $SETSTRIPE -i 0 -c 1 $DIR/$tfile || error "setstripe failed"
8688         $LCTL set_param osc.*.stats=0
8689         FSIZE=$((2048 * 1024))
8690         dd if=/dev/zero of=$DIR/$tfile bs=$FSIZE count=1
8691         cancel_lru_locks osc
8692         dd if=$DIR/$tfile of=/dev/null bs=$FSIZE
8693
8694         $LCTL get_param osc.*0000-osc-*.stats | grep samples > $DIR/${tfile}.tmp
8695         while read NAME COUNT SAMP UNIT MIN MAX SUM SUMSQ; do
8696                 echo "got $COUNT $NAME"
8697                 [ ! $MIN ] && error "Missing min value for $NAME proc entry"
8698                 eval $NAME=$COUNT || error "Wrong proc format"
8699
8700                 case $NAME in
8701                         read_bytes|write_bytes)
8702                         [ $MIN -lt 4096 ] && error "min is too small: $MIN"
8703                         [ $MIN -gt $FSIZE ] && error "min is too big: $MIN"
8704                         [ $MAX -lt 4096 ] && error "max is too small: $MAX"
8705                         [ $MAX -gt $FSIZE ] && error "max is too big: $MAX"
8706                         [ $SUM -ne $FSIZE ] && error "sum is wrong: $SUM"
8707                         [ $SUMSQ -lt $(((FSIZE /4096) * (4096 * 4096))) ] &&
8708                                 error "sumsquare is too small: $SUMSQ"
8709                         [ $SUMSQ -gt $((FSIZE * FSIZE)) ] &&
8710                                 error "sumsquare is too big: $SUMSQ"
8711                         ;;
8712                         *) ;;
8713                 esac
8714         done < $DIR/${tfile}.tmp
8715
8716         #check that we actually got some stats
8717         [ "$read_bytes" ] || error "Missing read_bytes stats"
8718         [ "$write_bytes" ] || error "Missing write_bytes stats"
8719         [ "$read_bytes" != 0 ] || error "no read done"
8720         [ "$write_bytes" != 0 ] || error "no write done"
8721 }
8722 run_test 127a "verify the client stats are sane"
8723
8724 test_127b() { # bug LU-333
8725         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8726         $LCTL set_param llite.*.stats=0
8727         FSIZE=65536 # sized fixed to match PAGE_SIZE for most clients
8728         # perform 2 reads and writes so MAX is different from SUM.
8729         dd if=/dev/zero of=$DIR/$tfile bs=$FSIZE count=1
8730         dd if=/dev/zero of=$DIR/$tfile bs=$FSIZE count=1
8731         cancel_lru_locks osc
8732         dd if=$DIR/$tfile of=/dev/null bs=$FSIZE count=1
8733         dd if=$DIR/$tfile of=/dev/null bs=$FSIZE count=1
8734
8735         $LCTL get_param llite.*.stats | grep samples > $TMP/${tfile}.tmp
8736         while read NAME COUNT SAMP UNIT MIN MAX SUM SUMSQ; do
8737                 echo "got $COUNT $NAME"
8738                 eval $NAME=$COUNT || error "Wrong proc format"
8739
8740         case $NAME in
8741                 read_bytes)
8742                         [ $COUNT -ne 2 ] && error "count is not 2: $COUNT"
8743                         [ $MIN -ne $FSIZE ] && error "min is not $FSIZE: $MIN"
8744                         [ $MAX -ne $FSIZE ] && error "max is incorrect: $MAX"
8745                         [ $SUM -ne $((FSIZE * 2)) ] && error "sum is wrong: $SUM"
8746                         ;;
8747                 write_bytes)
8748                         [ $COUNT -ne 2 ] && error "count is not 2: $COUNT"
8749                         [ $MIN -ne $FSIZE ] && error "min is not $FSIZE: $MIN"
8750                         [ $MAX -ne $FSIZE ] && error "max is incorrect: $MAX"
8751                         [ $SUM -ne $((FSIZE * 2)) ] && error "sum is wrong: $SUM"
8752                         ;;
8753                         *) ;;
8754                 esac
8755         done < $TMP/${tfile}.tmp
8756
8757         #check that we actually got some stats
8758         [ "$read_bytes" ] || error "Missing read_bytes stats"
8759         [ "$write_bytes" ] || error "Missing write_bytes stats"
8760         [ "$read_bytes" != 0 ] || error "no read done"
8761         [ "$write_bytes" != 0 ] || error "no write done"
8762
8763         rm -f $TMP/${tfile}.tmp
8764 }
8765 run_test 127b "verify the llite client stats are sane"
8766
8767 test_128() { # bug 15212
8768         touch $DIR/$tfile
8769         $LFS 2>&1 <<-EOF | tee $TMP/$tfile.log
8770                 find $DIR/$tfile
8771                 find $DIR/$tfile
8772         EOF
8773
8774         result=$(grep error $TMP/$tfile.log)
8775         rm -f $DIR/$tfile $TMP/$tfile.log
8776         [ -z "$result" ] ||
8777                 error "consecutive find's under interactive lfs failed"
8778 }
8779 run_test 128 "interactive lfs for 2 consecutive find's"
8780
8781 set_dir_limits () {
8782         local mntdev
8783         local canondev
8784         local node
8785
8786         local LDPROC=/proc/fs/ldiskfs
8787         local facets=$(get_facets MDS)
8788
8789         for facet in ${facets//,/ }; do
8790                 canondev=$(ldiskfs_canon \
8791                            *.$(convert_facet2label $facet).mntdev $facet)
8792                 do_facet $facet "test -e $LDPROC/$canondev/max_dir_size" ||
8793                                                 LDPROC=/sys/fs/ldiskfs
8794                 do_facet $facet "echo $1 >$LDPROC/$canondev/max_dir_size"
8795                 do_facet $facet "test -e $LDPROC/$canondev/warning_dir_size" ||
8796                                                 LDPROC=/sys/fs/ldiskfs
8797                 do_facet $facet "echo $2 >$LDPROC/$canondev/warning_dir_size"
8798         done
8799 }
8800
8801 check_mds_dmesg() {
8802         local facets=$(get_facets MDS)
8803         for facet in ${facets//,/ }; do
8804                 do_facet $facet "dmesg | tail -3 | grep -q $1" && return 0
8805         done
8806         return 1
8807 }
8808
8809 test_129() {
8810         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8811         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
8812                 skip "Only applicable to ldiskfs-based MDTs"
8813                 return
8814         fi
8815         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8816         ENOSPC=28
8817         EFBIG=27
8818         has_warning=0
8819
8820         rm -rf $DIR/$tdir
8821         mkdir -p $DIR/$tdir
8822
8823         # block size of mds1
8824         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
8825         local MDSBLOCKSIZE=$($LCTL get_param -n mdc.*MDT0000*.blocksize)
8826         local MAX=$((MDSBLOCKSIZE * 5))
8827         set_dir_limits $MAX $MAX
8828         local I=$(stat -c%s "$DIR/$tdir")
8829         local J=0
8830         while [[ $I -le $MAX ]]; do
8831                 $MULTIOP $DIR/$tdir/$J Oc
8832                 rc=$?
8833                 if [ $has_warning -eq 0 ]; then
8834                         check_mds_dmesg '"is approaching"' &&
8835                                 has_warning=1
8836                 fi
8837                 #check two errors ENOSPC for new version of ext4 max_dir_size patch
8838                 #mainline kernel commit df981d03eeff7971ac7e6ff37000bfa702327ef1
8839                 #and EFBIG for previous versions
8840                 if [ $rc -eq $EFBIG -o $rc -eq $ENOSPC ]; then
8841                         set_dir_limits 0 0
8842                         echo "return code $rc received as expected"
8843
8844                         createmany -o $DIR/$tdir/$J_file_ 1000 ||
8845                                 error_exit "create failed w/o dir size limit"
8846
8847                         check_mds_dmesg '"has reached"' ||
8848                                 error_exit "has reached message should be output"
8849
8850                         [ $has_warning ] ||
8851                                 error_exit "warning message should be output"
8852
8853                         I=$(stat -c%s "$DIR/$tdir")
8854
8855                         if [ $(lustre_version_code $SINGLEMDS) -lt \
8856                                         $(version_code 2.4.51) ]
8857                         then
8858                                 [[ $I -eq $MAX ]] && return 0
8859                         else
8860                                 [[ $I -gt $MAX ]] && return 0
8861                         fi
8862                         error_exit "current dir size $I, previous limit $MAX"
8863                 elif [ $rc -ne 0 ]; then
8864                         set_dir_limits 0 0
8865                         error_exit "return code $rc received instead of expected " \
8866                                    "$EFBIG or $ENOSPC, files in dir $I"
8867                 fi
8868                 J=$((J+1))
8869                 I=$(stat -c%s "$DIR/$tdir")
8870         done
8871
8872         set_dir_limits 0 0
8873         error "exceeded dir size limit $MAX($MDSCOUNT) : $I bytes"
8874 }
8875 run_test 129 "test directory size limit ========================"
8876
8877 OLDIFS="$IFS"
8878 cleanup_130() {
8879         trap 0
8880         IFS="$OLDIFS"
8881 }
8882
8883 test_130a() {
8884         local filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
8885         [ -n "$filefrag_op" ] && skip_env "filefrag does not support FIEMAP" &&
8886                 return
8887
8888         trap cleanup_130 EXIT RETURN
8889
8890         local fm_file=$DIR/$tfile
8891         $SETSTRIPE -S 65536 -c 1 $fm_file || error "setstripe on $fm_file"
8892         dd if=/dev/zero of=$fm_file bs=65536 count=1 ||
8893                 error "dd failed for $fm_file"
8894
8895         # LU-1795: test filefrag/FIEMAP once, even if unsupported
8896         filefrag -ves $fm_file
8897         RC=$?
8898         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
8899                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
8900         [ $RC != 0 ] && error "filefrag $fm_file failed"
8901
8902         filefrag_op=$(filefrag -ve $fm_file |
8903                         sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
8904         lun=$($GETSTRIPE -i $fm_file)
8905
8906         start_blk=`echo $filefrag_op | cut -d: -f2 | cut -d. -f1`
8907         IFS=$'\n'
8908         tot_len=0
8909         for line in $filefrag_op
8910         do
8911                 frag_lun=`echo $line | cut -d: -f5`
8912                 ext_len=`echo $line | cut -d: -f4`
8913                 if (( $frag_lun != $lun )); then
8914                         cleanup_130
8915                         error "FIEMAP on 1-stripe file($fm_file) failed"
8916                         return
8917                 fi
8918                 (( tot_len += ext_len ))
8919         done
8920
8921         if (( lun != frag_lun || start_blk != 0 || tot_len != 64 )); then
8922                 cleanup_130
8923                 error "FIEMAP on 1-stripe file($fm_file) failed;"
8924                 return
8925         fi
8926
8927         cleanup_130
8928
8929         echo "FIEMAP on single striped file succeeded"
8930 }
8931 run_test 130a "FIEMAP (1-stripe file)"
8932
8933 test_130b() {
8934         [ "$OSTCOUNT" -lt "2" ] &&
8935                 skip_env "skipping FIEMAP on $OSTCOUNT-stripe file" && return
8936
8937         local filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
8938         [ -n "$filefrag_op" ] && skip_env "filefrag does not support FIEMAP" &&
8939                 return
8940
8941         trap cleanup_130 EXIT RETURN
8942
8943         local fm_file=$DIR/$tfile
8944         $SETSTRIPE -S 65536 -c $OSTCOUNT $fm_file ||
8945                         error "setstripe on $fm_file"
8946         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
8947                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
8948
8949         dd if=/dev/zero of=$fm_file bs=1M count=$OSTCOUNT ||
8950                 error "dd failed on $fm_file"
8951
8952         filefrag -ves $fm_file || error "filefrag $fm_file failed"
8953         filefrag_op=$(filefrag -ve $fm_file |
8954                         sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
8955
8956         last_lun=$(echo $filefrag_op | cut -d: -f5 |
8957                 sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
8958
8959         IFS=$'\n'
8960         tot_len=0
8961         num_luns=1
8962         for line in $filefrag_op
8963         do
8964                 frag_lun=$(echo $line | cut -d: -f5 |
8965                         sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
8966                 ext_len=$(echo $line | cut -d: -f4)
8967                 if (( $frag_lun != $last_lun )); then
8968                         if (( tot_len != 1024 )); then
8969                                 cleanup_130
8970                                 error "FIEMAP on $fm_file failed; returned " \
8971                                 "len $tot_len for OST $last_lun instead of 1024"
8972                                 return
8973                         else
8974                                 (( num_luns += 1 ))
8975                                 tot_len=0
8976                         fi
8977                 fi
8978                 (( tot_len += ext_len ))
8979                 last_lun=$frag_lun
8980         done
8981         if (( num_luns != $OSTCOUNT || tot_len != 1024 )); then
8982                 cleanup_130
8983                 error "FIEMAP on $fm_file failed; returned wrong number of " \
8984                         "luns or wrong len for OST $last_lun"
8985                 return
8986         fi
8987
8988         cleanup_130
8989
8990         echo "FIEMAP on $OSTCOUNT-stripe file succeeded"
8991 }
8992 run_test 130b "FIEMAP ($OSTCOUNT-stripe file)"
8993
8994 test_130c() {
8995         [ "$OSTCOUNT" -lt "2" ] &&
8996                 skip_env "skipping FIEMAP on 2-stripe file" && return
8997
8998         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
8999         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP" &&
9000                 return
9001
9002         trap cleanup_130 EXIT RETURN
9003
9004         local fm_file=$DIR/$tfile
9005         $SETSTRIPE -S 65536 -c 2 $fm_file || error "setstripe on $fm_file"
9006         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
9007                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
9008
9009         dd if=/dev/zero of=$fm_file seek=1 bs=1M count=1 ||
9010                         error "dd failed on $fm_file"
9011
9012         filefrag -ves $fm_file || error "filefrag $fm_file failed"
9013         filefrag_op=$(filefrag -ve $fm_file |
9014                 sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
9015
9016         last_lun=$(echo $filefrag_op | cut -d: -f5 |
9017                 sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
9018
9019         IFS=$'\n'
9020         tot_len=0
9021         num_luns=1
9022         for line in $filefrag_op
9023         do
9024                 frag_lun=$(echo $line | cut -d: -f5 |
9025                         sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
9026                 ext_len=$(echo $line | cut -d: -f4)
9027                 if (( $frag_lun != $last_lun )); then
9028                         logical=`echo $line | cut -d: -f2 | cut -d. -f1`
9029                         if (( logical != 512 )); then
9030                                 cleanup_130
9031                                 error "FIEMAP on $fm_file failed; returned " \
9032                                 "logical start for lun $logical instead of 512"
9033                                 return
9034                         fi
9035                         if (( tot_len != 512 )); then
9036                                 cleanup_130
9037                                 error "FIEMAP on $fm_file failed; returned " \
9038                                 "len $tot_len for OST $last_lun instead of 1024"
9039                                 return
9040                         else
9041                                 (( num_luns += 1 ))
9042                                 tot_len=0
9043                         fi
9044                 fi
9045                 (( tot_len += ext_len ))
9046                 last_lun=$frag_lun
9047         done
9048         if (( num_luns != 2 || tot_len != 512 )); then
9049                 cleanup_130
9050                 error "FIEMAP on $fm_file failed; returned wrong number of " \
9051                         "luns or wrong len for OST $last_lun"
9052                 return
9053         fi
9054
9055         cleanup_130
9056
9057         echo "FIEMAP on 2-stripe file with hole succeeded"
9058 }
9059 run_test 130c "FIEMAP (2-stripe file with hole)"
9060
9061 test_130d() {
9062         [ "$OSTCOUNT" -lt "3" ] &&
9063                 skip_env "skipping FIEMAP on N-stripe file test" && return
9064
9065         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
9066         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP" &&
9067                 return
9068
9069         trap cleanup_130 EXIT RETURN
9070
9071         local fm_file=$DIR/$tfile
9072         $SETSTRIPE -S 65536 -c $OSTCOUNT $fm_file ||
9073                         error "setstripe on $fm_file"
9074         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
9075                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
9076
9077         local actual_stripecnt=$($GETSTRIPE -c $fm_file)
9078         dd if=/dev/zero of=$fm_file bs=1M count=$actual_stripecnt ||
9079                 error "dd failed on $fm_file"
9080
9081         filefrag -ves $fm_file || error "filefrag $fm_file failed"
9082         filefrag_op=$(filefrag -ve $fm_file |
9083                         sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
9084
9085         last_lun=$(echo $filefrag_op | cut -d: -f5 |
9086                 sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
9087
9088         IFS=$'\n'
9089         tot_len=0
9090         num_luns=1
9091         for line in $filefrag_op
9092         do
9093                 frag_lun=$(echo $line | cut -d: -f5 |
9094                         sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
9095                 ext_len=$(echo $line | cut -d: -f4)
9096                 if (( $frag_lun != $last_lun )); then
9097                         if (( tot_len != 1024 )); then
9098                                 cleanup_130
9099                                 error "FIEMAP on $fm_file failed; returned " \
9100                                 "len $tot_len for OST $last_lun instead of 1024"
9101                                 return
9102                         else
9103                                 (( num_luns += 1 ))
9104                                 tot_len=0
9105                         fi
9106                 fi
9107                 (( tot_len += ext_len ))
9108                 last_lun=$frag_lun
9109         done
9110         if (( num_luns != actual_stripecnt || tot_len != 1024 )); then
9111                 cleanup_130
9112                 error "FIEMAP on $fm_file failed; returned wrong number of " \
9113                         "luns or wrong len for OST $last_lun"
9114                 return
9115         fi
9116
9117         cleanup_130
9118
9119         echo "FIEMAP on N-stripe file succeeded"
9120 }
9121 run_test 130d "FIEMAP (N-stripe file)"
9122
9123 test_130e() {
9124         [ "$OSTCOUNT" -lt "2" ] &&
9125                 skip_env "skipping continuation FIEMAP test" && return
9126
9127         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
9128         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP" && return
9129
9130         trap cleanup_130 EXIT RETURN
9131
9132         local fm_file=$DIR/$tfile
9133         $SETSTRIPE -S 131072 -c 2 $fm_file || error "setstripe on $fm_file"
9134         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
9135                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
9136
9137         NUM_BLKS=512
9138         EXPECTED_LEN=$(( (NUM_BLKS / 2) * 64 ))
9139         for ((i = 0; i < $NUM_BLKS; i++))
9140         do
9141                 dd if=/dev/zero of=$fm_file count=1 bs=64k seek=$((2*$i)) conv=notrunc > /dev/null 2>&1
9142         done
9143
9144         filefrag -ves $fm_file || error "filefrag $fm_file failed"
9145         filefrag_op=$(filefrag -ve $fm_file |
9146                         sed -n '/ext:/,/found/{/ext:/d; /found/d; p}')
9147
9148         last_lun=$(echo $filefrag_op | cut -d: -f5 |
9149                 sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
9150
9151         IFS=$'\n'
9152         tot_len=0
9153         num_luns=1
9154         for line in $filefrag_op
9155         do
9156                 frag_lun=$(echo $line | cut -d: -f5 |
9157                         sed -e 's/^[ \t]*/0x/' | sed -e 's/0x0x/0x/')
9158                 ext_len=$(echo $line | cut -d: -f4)
9159                 if (( $frag_lun != $last_lun )); then
9160                         if (( tot_len != $EXPECTED_LEN )); then
9161                                 cleanup_130
9162                                 error "FIEMAP on $fm_file failed; returned " \
9163                                 "len $tot_len for OST $last_lun instead " \
9164                                 "of $EXPECTED_LEN"
9165                                 return
9166                         else
9167                                 (( num_luns += 1 ))
9168                                 tot_len=0
9169                         fi
9170                 fi
9171                 (( tot_len += ext_len ))
9172                 last_lun=$frag_lun
9173         done
9174         if (( num_luns != 2 || tot_len != $EXPECTED_LEN )); then
9175                 cleanup_130
9176                 error "FIEMAP on $fm_file failed; returned wrong number " \
9177                         "of luns or wrong len for OST $last_lun"
9178                 return
9179         fi
9180
9181         cleanup_130
9182
9183         echo "FIEMAP with continuation calls succeeded"
9184 }
9185 run_test 130e "FIEMAP (test continuation FIEMAP calls)"
9186
9187 # Test for writev/readv
9188 test_131a() {
9189         rwv -f $DIR/$tfile -w -n 3 524288 1048576 1572864 || \
9190         error "writev test failed"
9191         rwv -f $DIR/$tfile -r -v -n 2 1572864 1048576 || \
9192         error "readv failed"
9193         rm -f $DIR/$tfile
9194 }
9195 run_test 131a "test iov's crossing stripe boundary for writev/readv"
9196
9197 test_131b() {
9198         rwv -f $DIR/$tfile -w -a -n 3 524288 1048576 1572864 || \
9199         error "append writev test failed"
9200         rwv -f $DIR/$tfile -w -a -n 2 1572864 1048576 || \
9201         error "append writev test failed"
9202         rm -f $DIR/$tfile
9203 }
9204 run_test 131b "test append writev"
9205
9206 test_131c() {
9207         rwv -f $DIR/$tfile -w -d -n 1 1048576 || return 0
9208         error "NOT PASS"
9209 }
9210 run_test 131c "test read/write on file w/o objects"
9211
9212 test_131d() {
9213         rwv -f $DIR/$tfile -w -n 1 1572864
9214         NOB=`rwv -f $DIR/$tfile -r -n 3 524288 524288 1048576 | awk '/error/ {print $6}'`
9215         if [ "$NOB" != 1572864 ]; then
9216                 error "Short read filed: read $NOB bytes instead of 1572864"
9217         fi
9218         rm -f $DIR/$tfile
9219 }
9220 run_test 131d "test short read"
9221
9222 test_131e() {
9223         rwv -f $DIR/$tfile -w -s 1048576 -n 1 1048576
9224         rwv -f $DIR/$tfile -r -z -s 0 -n 1 524288 || \
9225         error "read hitting hole failed"
9226         rm -f $DIR/$tfile
9227 }
9228 run_test 131e "test read hitting hole"
9229
9230 check_stats() {
9231         local res
9232         local count
9233         case $1 in
9234         $SINGLEMDS) res=`do_facet $SINGLEMDS $LCTL get_param mdt.$FSNAME-MDT0000.md_stats | grep "$2"`
9235                  ;;
9236         ost) res=`do_facet ost1 $LCTL get_param obdfilter.$FSNAME-OST0000.stats | grep "$2"`
9237                  ;;
9238         *) error "Wrong argument $1" ;;
9239         esac
9240         echo $res
9241         [ -z "$res" ] && error "The counter for $2 on $1 was not incremented"
9242         # if the argument $3 is zero, it means any stat increment is ok.
9243         if [[ $3 -gt 0 ]]; then
9244                 count=$(echo $res | awk '{ print $2 }')
9245                 [[ $count -ne $3 ]] &&
9246                         error "The $2 counter on $1 is wrong - expected $3"
9247         fi
9248 }
9249
9250 test_133a() {
9251         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9252         remote_ost_nodsh && skip "remote OST with nodsh" && return
9253         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9254
9255         do_facet $SINGLEMDS $LCTL list_param mdt.*.rename_stats ||
9256                 { skip "MDS doesn't support rename stats"; return; }
9257         local testdir=$DIR/${tdir}/stats_testdir
9258         mkdir -p $DIR/${tdir}
9259
9260         # clear stats.
9261         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
9262         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
9263
9264         # verify mdt stats first.
9265         mkdir ${testdir} || error "mkdir failed"
9266         check_stats $SINGLEMDS "mkdir" 1
9267         touch ${testdir}/${tfile} || "touch failed"
9268         check_stats $SINGLEMDS "open" 1
9269         check_stats $SINGLEMDS "close" 1
9270         mknod ${testdir}/${tfile}-pipe p || "mknod failed"
9271         check_stats $SINGLEMDS "mknod" 1
9272         rm -f ${testdir}/${tfile}-pipe || "pipe remove failed"
9273         check_stats $SINGLEMDS "unlink" 1
9274         rm -f ${testdir}/${tfile} || error "file remove failed"
9275         check_stats $SINGLEMDS "unlink" 2
9276
9277         # remove working dir and check mdt stats again.
9278         rmdir ${testdir} || error "rmdir failed"
9279         check_stats $SINGLEMDS "rmdir" 1
9280
9281         local testdir1=$DIR/${tdir}/stats_testdir1
9282         mkdir -p ${testdir}
9283         mkdir -p ${testdir1}
9284         touch ${testdir1}/test1
9285         mv ${testdir1}/test1 ${testdir} || error "file crossdir rename"
9286         check_stats $SINGLEMDS "crossdir_rename" 1
9287
9288         mv ${testdir}/test1 ${testdir}/test0 || error "file samedir rename"
9289         check_stats $SINGLEMDS "samedir_rename" 1
9290
9291         rm -rf $DIR/${tdir}
9292 }
9293 run_test 133a "Verifying MDT stats ========================================"
9294
9295 test_133b() {
9296         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9297         remote_ost_nodsh && skip "remote OST with nodsh" && return
9298         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9299         local testdir=$DIR/${tdir}/stats_testdir
9300         mkdir -p ${testdir} || error "mkdir failed"
9301         touch ${testdir}/${tfile} || "touch failed"
9302         cancel_lru_locks mdc
9303
9304         # clear stats.
9305         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
9306         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
9307
9308         # extra mdt stats verification.
9309         chmod 444 ${testdir}/${tfile} || error "chmod failed"
9310         check_stats $SINGLEMDS "setattr" 1
9311         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
9312         if [ $(lustre_version_code $SINGLEMDS) -ne $(version_code 2.2.0) ]
9313         then            # LU-1740
9314                 ls -l ${testdir}/${tfile} > /dev/null|| error "ls failed"
9315                 check_stats $SINGLEMDS "getattr" 1
9316         fi
9317         $LFS df || error "lfs failed"
9318         check_stats $SINGLEMDS "statfs" 1
9319
9320         rm -rf $DIR/${tdir}
9321 }
9322 run_test 133b "Verifying extra MDT stats =================================="
9323
9324 test_133c() {
9325         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9326         remote_ost_nodsh && skip "remote OST with nodsh" && return
9327         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9328         local testdir=$DIR/${tdir}/stats_testdir
9329         test_mkdir -p ${testdir} || error "mkdir failed"
9330
9331         # verify obdfilter stats.
9332         $SETSTRIPE -c 1 -i 0 ${testdir}/${tfile}
9333         sync
9334         cancel_lru_locks osc
9335         wait_delete_completed
9336
9337         # clear stats.
9338         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
9339         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
9340
9341         dd if=/dev/zero of=${testdir}/${tfile} conv=notrunc bs=512k count=1 || error "dd failed"
9342         sync
9343         cancel_lru_locks osc
9344         check_stats ost "write" 1
9345
9346         dd if=${testdir}/${tfile} of=/dev/null bs=1k count=1 || error "dd failed"
9347         check_stats ost "read" 1
9348
9349         > ${testdir}/${tfile} || error "truncate failed"
9350         check_stats ost "punch" 1
9351
9352         rm -f ${testdir}/${tfile} || error "file remove failed"
9353         wait_delete_completed
9354         check_stats ost "destroy" 1
9355
9356         rm -rf $DIR/${tdir}
9357 }
9358 run_test 133c "Verifying OST stats ========================================"
9359
9360 order_2() {
9361         local value=$1
9362         local orig=$value
9363         local order=1
9364
9365         while [ $value -ge 2 ]; do
9366                 order=$((order*2))
9367                 value=$((value/2))
9368         done
9369
9370         if [ $orig -gt $order ]; then
9371                 order=$((order*2))
9372         fi
9373         echo $order
9374 }
9375
9376 size_in_KMGT() {
9377     local value=$1
9378     local size=('K' 'M' 'G' 'T');
9379     local i=0
9380     local size_string=$value
9381
9382     while [ $value -ge 1024 ]; do
9383         if [ $i -gt 3 ]; then
9384             #T is the biggest unit we get here, if that is bigger,
9385             #just return XXXT
9386             size_string=${value}T
9387             break
9388         fi
9389         value=$((value >> 10))
9390         if [ $value -lt 1024 ]; then
9391             size_string=${value}${size[$i]}
9392             break
9393         fi
9394         i=$((i + 1))
9395     done
9396
9397     echo $size_string
9398 }
9399
9400 get_rename_size() {
9401     local size=$1
9402     local context=${2:-.}
9403     local sample=$(do_facet $SINGLEMDS $LCTL get_param mdt.*.rename_stats |
9404                 grep -A1 $context |
9405                 awk '/ '${size}'/ {print $4}' | sed -e "s/,//g")
9406     echo $sample
9407 }
9408
9409 test_133d() {
9410         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9411         remote_ost_nodsh && skip "remote OST with nodsh" && return
9412         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9413         do_facet $SINGLEMDS $LCTL list_param mdt.*.rename_stats ||
9414         { skip "MDS doesn't support rename stats"; return; }
9415
9416         local testdir1=$DIR/${tdir}/stats_testdir1
9417         local testdir2=$DIR/${tdir}/stats_testdir2
9418
9419         do_facet $SINGLEMDS $LCTL set_param mdt.*.rename_stats=clear
9420
9421         mkdir -p ${testdir1} || error "mkdir failed"
9422         mkdir -p ${testdir2} || error "mkdir failed"
9423
9424         createmany -o $testdir1/test 512 || error "createmany failed"
9425
9426         # check samedir rename size
9427         mv ${testdir1}/test0 ${testdir1}/test_0
9428
9429         local testdir1_size=$(ls -l $DIR/${tdir} |
9430                 awk '/stats_testdir1/ {print $5}')
9431         local testdir2_size=$(ls -l $DIR/${tdir} |
9432                 awk '/stats_testdir2/ {print $5}')
9433
9434         testdir1_size=$(order_2 $testdir1_size)
9435         testdir2_size=$(order_2 $testdir2_size)
9436
9437         testdir1_size=$(size_in_KMGT $testdir1_size)
9438         testdir2_size=$(size_in_KMGT $testdir2_size)
9439
9440         echo "source rename dir size: ${testdir1_size}"
9441         echo "target rename dir size: ${testdir2_size}"
9442
9443         local cmd="do_facet $SINGLEMDS $LCTL get_param mdt.*.rename_stats"
9444         eval $cmd || error "$cmd failed"
9445         local samedir=$($cmd | grep 'same_dir')
9446         local same_sample=$(get_rename_size $testdir1_size)
9447         [ -z "$samedir" ] && error "samedir_rename_size count error"
9448         [[ $same_sample -eq 1 ]] ||
9449                 error "samedir_rename_size error $same_sample"
9450         echo "Check same dir rename stats success"
9451
9452         do_facet $SINGLEMDS $LCTL set_param mdt.*.rename_stats=clear
9453
9454         # check crossdir rename size
9455         mv ${testdir1}/test_0 ${testdir2}/test_0
9456
9457         testdir1_size=$(ls -l $DIR/${tdir} |
9458                 awk '/stats_testdir1/ {print $5}')
9459         testdir2_size=$(ls -l $DIR/${tdir} |
9460                 awk '/stats_testdir2/ {print $5}')
9461
9462         testdir1_size=$(order_2 $testdir1_size)
9463         testdir2_size=$(order_2 $testdir2_size)
9464
9465         testdir1_size=$(size_in_KMGT $testdir1_size)
9466         testdir2_size=$(size_in_KMGT $testdir2_size)
9467
9468         echo "source rename dir size: ${testdir1_size}"
9469         echo "target rename dir size: ${testdir2_size}"
9470
9471         eval $cmd || error "$cmd failed"
9472         local crossdir=$($cmd | grep 'crossdir')
9473         local src_sample=$(get_rename_size $testdir1_size crossdir_src)
9474         local tgt_sample=$(get_rename_size $testdir2_size crossdir_tgt)
9475         [ -z "$crossdir" ] && error "crossdir_rename_size count error"
9476         [[ $src_sample -eq 1 ]] ||
9477                 error "crossdir_rename_size error $src_sample"
9478         [[ $tgt_sample -eq 1 ]] ||
9479                 error "crossdir_rename_size error $tgt_sample"
9480         echo "Check cross dir rename stats success"
9481         rm -rf $DIR/${tdir}
9482 }
9483 run_test 133d "Verifying rename_stats ========================================"
9484
9485 test_133e() {
9486         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9487         remote_ost_nodsh && skip "remote OST with nodsh" && return
9488         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9489         local testdir=$DIR/${tdir}/stats_testdir
9490         local ctr f0 f1 bs=32768 count=42 sum
9491
9492         mkdir -p ${testdir} || error "mkdir failed"
9493
9494         $SETSTRIPE -c 1 -i 0 ${testdir}/${tfile}
9495
9496         for ctr in {write,read}_bytes; do
9497                 sync
9498                 cancel_lru_locks osc
9499
9500                 do_facet ost1 $LCTL set_param -n \
9501                         "obdfilter.*.exports.clear=clear"
9502
9503                 if [ $ctr = write_bytes ]; then
9504                         f0=/dev/zero
9505                         f1=${testdir}/${tfile}
9506                 else
9507                         f0=${testdir}/${tfile}
9508                         f1=/dev/null
9509                 fi
9510
9511                 dd if=$f0 of=$f1 conv=notrunc bs=$bs count=$count || \
9512                         error "dd failed"
9513                 sync
9514                 cancel_lru_locks osc
9515
9516                 sum=$(do_facet ost1 $LCTL get_param \
9517                         "obdfilter.*.exports.*.stats" |
9518                         awk -v ctr=$ctr 'BEGIN { sum = 0 }
9519                                 $1 == ctr { sum += $7 }
9520                                 END { printf("%0.0f", sum) }')
9521
9522                 if ((sum != bs * count)); then
9523                         error "Bad $ctr sum, expected $((bs * count)), got $sum"
9524                 fi
9525         done
9526
9527         rm -rf $DIR/${tdir}
9528 }
9529 run_test 133e "Verifying OST {read,write}_bytes nid stats ================="
9530
9531 proc_dirs=""
9532 for dir in /proc/fs/lustre/ /proc/sys/lnet/ /proc/sys/lustre/ \
9533            /sys/fs/lustre/ /sys/fs/lnet/ /sys/kernel/debug/lnet/ \
9534            /sys/kernel/debug/lustre/; do
9535         [[ -d $dir ]] && proc_dirs+=" $dir"
9536 done
9537
9538 test_133f() {
9539         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9540         remote_ost_nodsh && skip "remote OST with nodsh" && return
9541         # First without trusting modes.
9542         find $proc_dirs -exec cat '{}' \; &> /dev/null
9543
9544         # Second verifying readability.
9545         $LCTL get_param -R '*' &> /dev/null || error "proc file read failed"
9546
9547         # eventually, this can also be replaced with "lctl get_param -R",
9548         # but not until that option is always available on the server
9549         local facet
9550         for facet in $SINGLEMDS ost1; do
9551                 do_facet $facet find $proc_dirs \
9552                         ! -name req_history \
9553                         -exec cat '{}' \\\; &> /dev/null
9554
9555                 do_facet $facet find $proc_dirs \
9556                         ! -name req_history \
9557                         -type f \
9558                         -exec cat '{}' \\\; &> /dev/null ||
9559                                 error "proc file read failed"
9560         done
9561 }
9562 run_test 133f "Check for LBUGs/Oopses/unreadable files in /proc"
9563
9564 test_133g() {
9565         # Second verifying writability.
9566         find $proc_dirs \
9567                 -type f \
9568                 -not -name force_lbug \
9569                 -not -name changelog_mask \
9570                 -exec badarea_io '{}' \; &> /dev/null ||
9571                 error "find $proc_dirs failed"
9572
9573         [ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.5.54) ] &&
9574                 skip "Too old lustre on MDS" && return
9575
9576         [ $(lustre_version_code ost1) -le $(version_code 2.5.54) ] &&
9577                 skip "Too old lustre on ost1" && return
9578
9579         local facet
9580         for facet in $SINGLEMDS ost1; do
9581                 do_facet $facet find $proc_dirs \
9582                         -type f \
9583                         -not -name force_lbug \
9584                         -not -name changelog_mask \
9585                         -exec badarea_io '{}' \\\; &> /dev/null ||
9586                 error "$facet find $proc_dirs failed"
9587
9588         done
9589
9590         # remount the FS in case writes/reads /proc break the FS
9591         cleanup || error "failed to unmount"
9592         setup || error "failed to setup"
9593         true
9594 }
9595 run_test 133g "Check for Oopses on bad io area writes/reads in /proc"
9596
9597 test_134a() {
9598         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.54) ]] &&
9599                 skip "Need MDS version at least 2.7.54" && return
9600
9601         mkdir -p $DIR/$tdir || error "failed to create $DIR/$tdir"
9602         cancel_lru_locks mdc
9603
9604         local nsdir="ldlm.namespaces.*-MDT0000-mdc-*"
9605         local unused=$($LCTL get_param -n $nsdir.lock_unused_count)
9606         [ $unused -eq 0 ] || "$unused locks are not cleared"
9607
9608         local nr=1000
9609         createmany -o $DIR/$tdir/f $nr ||
9610                 error "failed to create $nr files in $DIR/$tdir"
9611         unused=$($LCTL get_param -n $nsdir.lock_unused_count)
9612
9613         #define OBD_FAIL_LDLM_WATERMARK_LOW     0x327
9614         do_facet mds1 $LCTL set_param fail_loc=0x327
9615         do_facet mds1 $LCTL set_param fail_val=500
9616         touch $DIR/$tdir/m
9617
9618         echo "sleep 10 seconds ..."
9619         sleep 10
9620         local lck_cnt=$($LCTL get_param -n $nsdir.lock_unused_count)
9621
9622         do_facet mds1 $LCTL set_param fail_loc=0
9623         do_facet mds1 $LCTL set_param fail_val=0
9624         [ $lck_cnt -lt $unused ] ||
9625                 error "No locks reclaimed, before:$unused, after:$lck_cnt"
9626
9627         rm $DIR/$tdir/m
9628         unlinkmany $DIR/$tdir/f $nr
9629 }
9630 run_test 134a "Server reclaims locks when reaching lock_reclaim_threshold"
9631
9632 test_134b() {
9633         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.54) ]] &&
9634                 skip "Need MDS version at least 2.7.54" && return
9635
9636         mkdir -p $DIR/$tdir || error "failed to create $DIR/$tdir"
9637         cancel_lru_locks mdc
9638
9639         local low_wm=$(do_facet mds1 $LCTL get_param -n \
9640                         ldlm.lock_reclaim_threshold_mb)
9641         # disable reclaim temporarily
9642         do_facet mds1 $LCTL set_param ldlm.lock_reclaim_threshold_mb=0
9643
9644         #define OBD_FAIL_LDLM_WATERMARK_HIGH     0x328
9645         do_facet mds1 $LCTL set_param fail_loc=0x328
9646         do_facet mds1 $LCTL set_param fail_val=500
9647
9648         $LCTL set_param debug=+trace
9649
9650         local nr=600
9651         createmany -o $DIR/$tdir/f $nr &
9652         local create_pid=$!
9653
9654         echo "Sleep $TIMEOUT seconds ..."
9655         sleep $TIMEOUT
9656         if ! ps -p $create_pid  > /dev/null 2>&1; then
9657                 do_facet mds1 $LCTL set_param fail_loc=0
9658                 do_facet mds1 $LCTL set_param fail_val=0
9659                 do_facet mds1 $LCTL set_param \
9660                         ldlm.lock_reclaim_threshold_mb=${low_wm}m
9661                 error "createmany finished incorrectly!"
9662         fi
9663         do_facet mds1 $LCTL set_param fail_loc=0
9664         do_facet mds1 $LCTL set_param fail_val=0
9665         do_facet mds1 $LCTL set_param ldlm.lock_reclaim_threshold_mb=${low_wm}m
9666         wait $create_pid || return 1
9667
9668         unlinkmany $DIR/$tdir/f $nr
9669 }
9670 run_test 134b "Server rejects lock request when reaching lock_limit_mb"
9671
9672 test_140() { #bug-17379
9673         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9674         test_mkdir -p $DIR/$tdir || error "Creating dir $DIR/$tdir"
9675         cd $DIR/$tdir || error "Changing to $DIR/$tdir"
9676         cp /usr/bin/stat . || error "Copying stat to $DIR/$tdir"
9677
9678         # VFS limits max symlink depth to 5(4KSTACK) or 7(8KSTACK) or 8
9679         # For kernel > 3.5, bellow only tests consecutive symlink (MAX 40)
9680         local i=0
9681         while i=`expr $i + 1`; do
9682                 test_mkdir -p $i || error "Creating dir $i"
9683                 cd $i || error "Changing to $i"
9684                 ln -s ../stat stat || error "Creating stat symlink"
9685                 # Read the symlink until ELOOP present,
9686                 # not LBUGing the system is considered success,
9687                 # we didn't overrun the stack.
9688                 $OPENFILE -f O_RDONLY stat >/dev/null 2>&1; ret=$?
9689                 [ $ret -ne 0 ] && {
9690                         if [ $ret -eq 40 ]; then
9691                                 break  # -ELOOP
9692                         else
9693                                 error "Open stat symlink"
9694                                 return
9695                         fi
9696                 }
9697         done
9698         i=`expr $i - 1`
9699         echo "The symlink depth = $i"
9700         [ $i -eq 5 -o $i -eq 7 -o $i -eq 8 -o $i -eq 40 ] ||
9701                                         error "Invalid symlink depth"
9702
9703         # Test recursive symlink
9704         ln -s symlink_self symlink_self
9705         $OPENFILE -f O_RDONLY symlink_self >/dev/null 2>&1; ret=$?
9706         echo "open symlink_self returns $ret"
9707         [ $ret -eq 40 ] || error "recursive symlink doesn't return -ELOOP"
9708 }
9709 run_test 140 "Check reasonable stack depth (shouldn't LBUG) ===="
9710
9711 test_150() {
9712         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9713         local TF="$TMP/$tfile"
9714
9715         dd if=/dev/urandom of=$TF bs=6096 count=1 || error "dd failed"
9716         cp $TF $DIR/$tfile
9717         cancel_lru_locks osc
9718         cmp $TF $DIR/$tfile || error "$TMP/$tfile $DIR/$tfile differ"
9719         remount_client $MOUNT
9720         df -P $MOUNT
9721         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (remount)"
9722
9723         $TRUNCATE $TF 6000
9724         $TRUNCATE $DIR/$tfile 6000
9725         cancel_lru_locks osc
9726         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (truncate1)"
9727
9728         echo "12345" >>$TF
9729         echo "12345" >>$DIR/$tfile
9730         cancel_lru_locks osc
9731         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (append1)"
9732
9733         echo "12345" >>$TF
9734         echo "12345" >>$DIR/$tfile
9735         cancel_lru_locks osc
9736         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (append2)"
9737
9738         rm -f $TF
9739         true
9740 }
9741 run_test 150 "truncate/append tests"
9742
9743 #LU-2902 roc_hit was not able to read all values from lproc
9744 function roc_hit_init() {
9745         local list=$(comma_list $(osts_nodes))
9746         local dir=$DIR/$tdir-check
9747         local file=$dir/file
9748         local BEFORE
9749         local AFTER
9750         local idx
9751
9752         test_mkdir -p $dir
9753         #use setstripe to do a write to every ost
9754         for i in $(seq 0 $((OSTCOUNT-1))); do
9755                 $SETSTRIPE -c 1 -i $i $dir || error "$SETSTRIPE $file failed"
9756                 dd if=/dev/urandom of=$file bs=4k count=4 2>&1 > /dev/null
9757                 idx=$(printf %04x $i)
9758                 BEFORE=$(get_osd_param $list *OST*$idx stats |
9759                         awk '$1 == "cache_access" {sum += $7}
9760                                 END { printf("%0.0f", sum) }')
9761
9762                 cancel_lru_locks osc
9763                 cat $file >/dev/null
9764
9765                 AFTER=$(get_osd_param $list *OST*$idx stats |
9766                         awk '$1 == "cache_access" {sum += $7}
9767                                 END { printf("%0.0f", sum) }')
9768
9769                 echo BEFORE:$BEFORE AFTER:$AFTER
9770                 if ! let "AFTER - BEFORE == 4"; then
9771                         rm -rf $dir
9772                         error "roc_hit is not safe to use"
9773                 fi
9774                 rm $file
9775         done
9776
9777         rm -rf $dir
9778 }
9779
9780 function roc_hit() {
9781         local list=$(comma_list $(osts_nodes))
9782         echo $(get_osd_param $list '' stats |
9783                 awk '$1 == "cache_hit" {sum += $7}
9784                         END { printf("%0.0f", sum) }')
9785 }
9786
9787 function set_cache() {
9788         local on=1
9789
9790         if [ "$2" == "off" ]; then
9791                 on=0;
9792         fi
9793         local list=$(comma_list $(osts_nodes))
9794         set_osd_param $list '' $1_cache_enable $on
9795
9796         cancel_lru_locks osc
9797 }
9798
9799 test_151() {
9800         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9801         remote_ost_nodsh && skip "remote OST with nodsh" && return
9802
9803         local CPAGES=3
9804         local list=$(comma_list $(osts_nodes))
9805
9806         # check whether obdfilter is cache capable at all
9807         if ! get_osd_param $list '' read_cache_enable >/dev/null; then
9808                 echo "not cache-capable obdfilter"
9809                 return 0
9810         fi
9811
9812         # check cache is enabled on all obdfilters
9813         if get_osd_param $list '' read_cache_enable | grep 0; then
9814                 echo "oss cache is disabled"
9815                 return 0
9816         fi
9817
9818         set_osd_param $list '' writethrough_cache_enable 1
9819
9820         # check write cache is enabled on all obdfilters
9821         if get_osd_param $list '' writethrough_cache_enable | grep 0; then
9822                 echo "oss write cache is NOT enabled"
9823                 return 0
9824         fi
9825
9826         roc_hit_init
9827
9828         #define OBD_FAIL_OBD_NO_LRU  0x609
9829         do_nodes $list $LCTL set_param fail_loc=0x609
9830
9831         # pages should be in the case right after write
9832         dd if=/dev/urandom of=$DIR/$tfile bs=4k count=$CPAGES ||
9833                 error "dd failed"
9834
9835         local BEFORE=$(roc_hit)
9836         cancel_lru_locks osc
9837         cat $DIR/$tfile >/dev/null
9838         local AFTER=$(roc_hit)
9839
9840         do_nodes $list $LCTL set_param fail_loc=0
9841
9842         if ! let "AFTER - BEFORE == CPAGES"; then
9843                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
9844         fi
9845
9846         # the following read invalidates the cache
9847         cancel_lru_locks osc
9848         set_osd_param $list '' read_cache_enable 0
9849         cat $DIR/$tfile >/dev/null
9850
9851         # now data shouldn't be found in the cache
9852         BEFORE=$(roc_hit)
9853         cancel_lru_locks osc
9854         cat $DIR/$tfile >/dev/null
9855         AFTER=$(roc_hit)
9856         if let "AFTER - BEFORE != 0"; then
9857                 error "IN CACHE: before: $BEFORE, after: $AFTER"
9858         fi
9859
9860         set_osd_param $list '' read_cache_enable 1
9861         rm -f $DIR/$tfile
9862 }
9863 run_test 151 "test cache on oss and controls ==============================="
9864
9865 test_152() {
9866         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9867         local TF="$TMP/$tfile"
9868
9869         # simulate ENOMEM during write
9870 #define OBD_FAIL_OST_NOMEM      0x226
9871         lctl set_param fail_loc=0x80000226
9872         dd if=/dev/urandom of=$TF bs=6096 count=1 || error "dd failed"
9873         cp $TF $DIR/$tfile
9874         sync || error "sync failed"
9875         lctl set_param fail_loc=0
9876
9877         # discard client's cache
9878         cancel_lru_locks osc
9879
9880         # simulate ENOMEM during read
9881         lctl set_param fail_loc=0x80000226
9882         cmp $TF $DIR/$tfile || error "cmp failed"
9883         lctl set_param fail_loc=0
9884
9885         rm -f $TF
9886 }
9887 run_test 152 "test read/write with enomem ============================"
9888
9889 test_153() {
9890         $MULTIOP $DIR/$tfile Ow4096Ycu || error "multiop failed"
9891 }
9892 run_test 153 "test if fdatasync does not crash ======================="
9893
9894 dot_lustre_fid_permission_check() {
9895         local fid=$1
9896         local ffid=$MOUNT/.lustre/fid/$fid
9897         local test_dir=$2
9898
9899         echo "stat fid $fid"
9900         stat $ffid > /dev/null || error "stat $ffid failed."
9901         echo "touch fid $fid"
9902         touch $ffid || error "touch $ffid failed."
9903         echo "write to fid $fid"
9904         cat /etc/hosts > $ffid || error "write $ffid failed."
9905         echo "read fid $fid"
9906         diff /etc/hosts $ffid || error "read $ffid failed."
9907         echo "append write to fid $fid"
9908         cat /etc/hosts >> $ffid || error "append write $ffid failed."
9909         echo "rename fid $fid"
9910         mv $ffid $test_dir/$tfile.1 &&
9911                 error "rename $ffid to $tfile.1 should fail."
9912         touch $test_dir/$tfile.1
9913         mv $test_dir/$tfile.1 $ffid &&
9914                 error "rename $tfile.1 to $ffid should fail."
9915         rm -f $test_dir/$tfile.1
9916         echo "truncate fid $fid"
9917         $TRUNCATE $ffid 777 || error "truncate $ffid failed."
9918         if [ $MDSCOUNT -lt 2 ]; then #FIXME when cross-MDT hard link is working
9919                 echo "link fid $fid"
9920                 ln -f $ffid $test_dir/tfile.lnk || error "link $ffid failed."
9921         fi
9922         if [ -n $(lctl get_param -n mdc.*-mdc-*.connect_flags | grep acl) ]; then
9923                 echo "setfacl fid $fid"
9924                 setfacl -R -m u:bin:rwx $ffid || error "setfacl $ffid failed."
9925                 echo "getfacl fid $fid"
9926                 getfacl $ffid >/dev/null || error "getfacl $ffid failed."
9927         fi
9928         echo "unlink fid $fid"
9929         unlink $MOUNT/.lustre/fid/$fid && error "unlink $ffid should fail."
9930         echo "mknod fid $fid"
9931         mknod $ffid c 1 3 && error "mknod $ffid should fail."
9932
9933         fid=[0xf00000400:0x1:0x0]
9934         ffid=$MOUNT/.lustre/fid/$fid
9935
9936         echo "stat non-exist fid $fid"
9937         stat $ffid > /dev/null && error "stat non-exist $ffid should fail."
9938         echo "write to non-exist fid $fid"
9939         cat /etc/hosts > $ffid && error "write non-exist $ffid should fail."
9940         echo "link new fid $fid"
9941         ln $test_dir/$tfile $ffid && error "link $ffid should fail."
9942
9943         mkdir -p $test_dir/$tdir
9944         touch $test_dir/$tdir/$tfile
9945         fid=$($LFS path2fid $test_dir/$tdir)
9946         rc=$?
9947         [ $rc -ne 0 ] &&
9948                 error "error: could not get fid for $test_dir/$dir/$tfile."
9949
9950         ffid=$MOUNT/.lustre/fid/$fid
9951
9952         echo "ls $fid"
9953         ls $ffid > /dev/null || error "ls $ffid failed."
9954         echo "touch $fid/$tfile.1"
9955         touch $ffid/$tfile.1 || error "touch $ffid/$tfile.1 failed."
9956
9957         echo "touch $MOUNT/.lustre/fid/$tfile"
9958         touch $MOUNT/.lustre/fid/$tfile && \
9959                 error "touch $MOUNT/.lustre/fid/$tfile should fail."
9960
9961         echo "setxattr to $MOUNT/.lustre/fid"
9962         setfattr -n trusted.name1 -v value1 $MOUNT/.lustre/fid
9963
9964         echo "listxattr for $MOUNT/.lustre/fid"
9965         getfattr -d -m "^trusted" $MOUNT/.lustre/fid
9966
9967         echo "delxattr from $MOUNT/.lustre/fid"
9968         setfattr -x trusted.name1 $MOUNT/.lustre/fid
9969
9970         echo "touch invalid fid: $MOUNT/.lustre/fid/[0x200000400:0x2:0x3]"
9971         touch $MOUNT/.lustre/fid/[0x200000400:0x2:0x3] &&
9972                 error "touch invalid fid should fail."
9973
9974         echo "touch non-normal fid: $MOUNT/.lustre/fid/[0x1:0x2:0x0]"
9975         touch $MOUNT/.lustre/fid/[0x1:0x2:0x0] &&
9976                 error "touch non-normal fid should fail."
9977
9978         echo "rename $tdir to $MOUNT/.lustre/fid"
9979         mrename $test_dir/$tdir $MOUNT/.lustre/fid &&
9980                 error "rename to $MOUNT/.lustre/fid should fail."
9981
9982         if [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.51) ]
9983         then            # LU-3547
9984                 local old_obf_mode=$(stat --format="%a" $DIR/.lustre/fid)
9985                 local new_obf_mode=777
9986
9987                 echo "change mode of $DIR/.lustre/fid to $new_obf_mode"
9988                 chmod $new_obf_mode $DIR/.lustre/fid ||
9989                         error "chmod $new_obf_mode $DIR/.lustre/fid failed"
9990
9991                 local obf_mode=$(stat --format=%a $DIR/.lustre/fid)
9992                 [ $obf_mode -eq $new_obf_mode ] ||
9993                         error "stat $DIR/.lustre/fid returned wrong mode $obf_mode"
9994
9995                 echo "restore mode of $DIR/.lustre/fid to $old_obf_mode"
9996                 chmod $old_obf_mode $DIR/.lustre/fid ||
9997                         error "chmod $old_obf_mode $DIR/.lustre/fid failed"
9998         fi
9999
10000         $OPENFILE -f O_LOV_DELAY_CREATE:O_CREAT $test_dir/$tfile-2
10001         fid=$($LFS path2fid $test_dir/$tfile-2)
10002
10003         if [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.50) ]
10004         then # LU-5424
10005                 echo "cp /etc/passwd $MOUNT/.lustre/fid/$fid"
10006                 cp /etc/passwd $MOUNT/.lustre/fid/$fid ||
10007                         error "create lov data thru .lustre failed"
10008         fi
10009         echo "cp /etc/passwd $test_dir/$tfile-2"
10010         cp /etc/passwd $test_dir/$tfile-2 ||
10011                 error "copy to $test_dir/$tfile-2 failed."
10012         echo "diff /etc/passwd $MOUNT/.lustre/fid/$fid"
10013         diff /etc/passwd $MOUNT/.lustre/fid/$fid ||
10014                 error "diff /etc/passwd $MOUNT/.lustre/fid/$fid failed."
10015
10016         rm -rf $test_dir/tfile.lnk
10017         rm -rf $test_dir/$tfile-2
10018 }
10019
10020 test_154A() {
10021         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.1) ]] &&
10022                 skip "Need MDS version at least 2.4.1" && return
10023
10024         touch $DIR/$tfile
10025         local FID=$($LFS path2fid $DIR/$tfile)
10026         [ -z "$FID" ] && error "path2fid unable to get $DIR/$tfile FID"
10027
10028         # check that we get the same pathname back
10029         local FOUND=$($LFS fid2path $MOUNT "$FID")
10030         [ -z "$FOUND" ] && error "fid2path unable to get $FID path"
10031         [ "$FOUND" != "$DIR/$tfile" ] &&
10032                 error "fid2path(path2fid($DIR/$tfile)) = $FOUND != $DIR/$tfile"
10033
10034         rm -rf $DIR/$tfile
10035 }
10036 run_test 154A "lfs path2fid and fid2path basic checks"
10037
10038 test_154a() {
10039         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10040         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ]] ||
10041                 { skip "Need MDS version at least 2.2.51"; return 0; }
10042         [ -z "$(which setfacl)" ] && skip "must have setfacl tool" && return
10043         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
10044
10045         cp /etc/hosts $DIR/$tfile
10046
10047         fid=$($LFS path2fid $DIR/$tfile)
10048         rc=$?
10049         [ $rc -ne 0 ] && error "error: could not get fid for $DIR/$tfile."
10050
10051         dot_lustre_fid_permission_check "$fid" $DIR ||
10052                 error "dot lustre permission check $fid failed"
10053
10054         rm -rf $MOUNT/.lustre && error ".lustre is not allowed to be unlinked"
10055
10056         touch $MOUNT/.lustre/file &&
10057                 error "creation is not allowed under .lustre"
10058
10059         mkdir $MOUNT/.lustre/dir &&
10060                 error "mkdir is not allowed under .lustre"
10061
10062         rm -rf $DIR/$tfile
10063 }
10064 run_test 154a "Open-by-FID"
10065
10066 test_154b() {
10067         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10068         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ]] ||
10069                 { skip "Need MDS version at least 2.2.51"; return 0; }
10070         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
10071
10072         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
10073
10074         local remote_dir=$DIR/$tdir/remote_dir
10075         local MDTIDX=1
10076         local rc=0
10077
10078         mkdir -p $DIR/$tdir
10079         $LFS mkdir -i $MDTIDX $remote_dir ||
10080                 error "create remote directory failed"
10081
10082         cp /etc/hosts $remote_dir/$tfile
10083
10084         fid=$($LFS path2fid $remote_dir/$tfile)
10085         rc=$?
10086         [ $rc -ne 0 ] && error "error: could not get fid for $remote_dir/$tfile"
10087
10088         dot_lustre_fid_permission_check "$fid" $remote_dir ||
10089                 error "dot lustre permission check $fid failed"
10090         rm -rf $DIR/$tdir
10091 }
10092 run_test 154b "Open-by-FID for remote directory"
10093
10094 test_154c() {
10095         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.1) ]] &&
10096                 skip "Need MDS version at least 2.4.1" && return
10097
10098         touch $DIR/$tfile.1 $DIR/$tfile.2 $DIR/$tfile.3
10099         local FID1=$($LFS path2fid $DIR/$tfile.1)
10100         local FID2=$($LFS path2fid $DIR/$tfile.2)
10101         local FID3=$($LFS path2fid $DIR/$tfile.3)
10102
10103         local N=1
10104         $LFS path2fid $DIR/$tfile.[123] | while read PATHNAME FID; do
10105                 [ "$PATHNAME" = "$DIR/$tfile.$N:" ] ||
10106                         error "path2fid pathname $PATHNAME != $DIR/$tfile.$N:"
10107                 local want=FID$N
10108                 [ "$FID" = "${!want}" ] ||
10109                         error "path2fid $PATHNAME FID $FID != FID$N ${!want}"
10110                 N=$((N + 1))
10111         done
10112
10113         $LFS fid2path $MOUNT "$FID1" "$FID2" "$FID3" | while read PATHNAME;
10114         do
10115                 [ "$PATHNAME" = "$DIR/$tfile.$N" ] ||
10116                         error "fid2path pathname $PATHNAME != $DIR/$tfile.$N:"
10117                 N=$((N + 1))
10118         done
10119 }
10120 run_test 154c "lfs path2fid and fid2path multiple arguments"
10121
10122 test_154d() {
10123         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.5.53) ]] &&
10124                 skip "Need MDS version at least 2.5.53" && return
10125
10126         if remote_mds; then
10127                 nid=$($LCTL list_nids | sed  "s/\./\\\./g")
10128         else
10129                 nid="0@lo"
10130         fi
10131         local proc_ofile="mdt.*.exports.'$nid'.open_files"
10132         local fd
10133         local cmd
10134
10135         rm -f $DIR/$tfile
10136         touch $DIR/$tfile
10137
10138         local fid=$($LFS path2fid $DIR/$tfile)
10139         # Open the file
10140         fd=$(free_fd)
10141         cmd="exec $fd<$DIR/$tfile"
10142         eval $cmd
10143         local fid_list=$(do_facet $SINGLEMDS $LCTL get_param $proc_ofile)
10144         echo "$fid_list" | grep "$fid"
10145         rc=$?
10146
10147         cmd="exec $fd>/dev/null"
10148         eval $cmd
10149         if [ $rc -ne 0 ]; then
10150                 error "FID $fid not found in open files list $fid_list"
10151         fi
10152 }
10153 run_test 154d "Verify open file fid"
10154
10155 test_154e()
10156 {
10157         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.6.50) ]] &&
10158                 skip "Need MDS version at least 2.6.50" && return
10159
10160         if ls -a $MOUNT | grep -q '^\.lustre$'; then
10161                 error ".lustre returned by readdir"
10162         fi
10163 }
10164 run_test 154e ".lustre is not returned by readdir"
10165
10166 test_154f() {
10167         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
10168         # create parent directory on a single MDT to avoid cross-MDT hardlinks
10169         test_mkdir -p -c1 $DIR/$tdir/d
10170         # test dirs inherit from its stripe
10171         mkdir -p $DIR/$tdir/d/foo1 || error "mkdir error"
10172         mkdir -p $DIR/$tdir/d/foo2 || error "mkdir error"
10173         cp /etc/hosts $DIR/$tdir/d/foo1/$tfile
10174         ln $DIR/$tdir/d/foo1/$tfile $DIR/$tdir/d/foo2/link
10175         touch $DIR/f
10176
10177         # get fid of parents
10178         local FID0=$($LFS path2fid $DIR/$tdir/d)
10179         local FID1=$($LFS path2fid $DIR/$tdir/d/foo1)
10180         local FID2=$($LFS path2fid $DIR/$tdir/d/foo2)
10181         local FID3=$($LFS path2fid $DIR)
10182
10183         # check that path2fid --parents returns expected <parent_fid>/name
10184         # 1) test for a directory (single parent)
10185         local parent=$($LFS path2fid --parents $DIR/$tdir/d/foo1)
10186         [ "$parent" == "$FID0/foo1" ] ||
10187                 error "expected parent: $FID0/foo1, got: $parent"
10188
10189         # 2) test for a file with nlink > 1 (multiple parents)
10190         parent=$($LFS path2fid --parents $DIR/$tdir/d/foo1/$tfile)
10191         echo "$parent" | grep -F "$FID1/$tfile" ||
10192                 error "$FID1/$tfile not returned in parent list"
10193         echo "$parent" | grep -F "$FID2/link" ||
10194                 error "$FID2/link not returned in parent list"
10195
10196         # 3) get parent by fid
10197         local file_fid=$($LFS path2fid $DIR/$tdir/d/foo1/$tfile)
10198         parent=$($LFS path2fid --parents $MOUNT/.lustre/fid/$file_fid)
10199         echo "$parent" | grep -F "$FID1/$tfile" ||
10200                 error "$FID1/$tfile not returned in parent list (by fid)"
10201         echo "$parent" | grep -F "$FID2/link" ||
10202                 error "$FID2/link not returned in parent list (by fid)"
10203
10204         # 4) test for entry in root directory
10205         parent=$($LFS path2fid --parents $DIR/f)
10206         echo "$parent" | grep -F "$FID3/f" ||
10207                 error "$FID3/f not returned in parent list"
10208
10209         # 5) test it on root directory
10210         [ -z "$($LFS path2fid --parents $MOUNT 2>/dev/null)" ] ||
10211                 error "$MOUNT should not have parents"
10212
10213         # enable xattr caching and check that linkea is correctly updated
10214         local save="$TMP/$TESTSUITE-$TESTNAME.parameters"
10215         save_lustre_params client "llite.*.xattr_cache" > $save
10216         lctl set_param llite.*.xattr_cache 1
10217
10218         # 6.1) linkea update on rename
10219         mv $DIR/$tdir/d/foo1/$tfile $DIR/$tdir/d/foo2/$tfile.moved
10220
10221         # get parents by fid
10222         parent=$($LFS path2fid --parents $MOUNT/.lustre/fid/$file_fid)
10223         # foo1 should no longer be returned in parent list
10224         echo "$parent" | grep -F "$FID1" &&
10225                 error "$FID1 should no longer be in parent list"
10226         # the new path should appear
10227         echo "$parent" | grep -F "$FID2/$tfile.moved" ||
10228                 error "$FID2/$tfile.moved is not in parent list"
10229
10230         # 6.2) linkea update on unlink
10231         rm -f $DIR/$tdir/d/foo2/link
10232         parent=$($LFS path2fid --parents $MOUNT/.lustre/fid/$file_fid)
10233         # foo2/link should no longer be returned in parent list
10234         echo "$parent" | grep -F "$FID2/link" &&
10235                 error "$FID2/link should no longer be in parent list"
10236         true
10237
10238         rm -f $DIR/f
10239         restore_lustre_params < $save
10240         rm -f $save
10241 }
10242 run_test 154f "get parent fids by reading link ea"
10243
10244 test_154g()
10245 {
10246         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.92) ]] ||
10247                 { skip "Need MDS version at least 2.6.92"; return 0; }
10248         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
10249
10250         mkdir -p $DIR/$tdir
10251         llapi_fid_test -d $DIR/$tdir
10252 }
10253 run_test 154g "various llapi FID tests"
10254
10255 test_155_small_load() {
10256     local temp=$TMP/$tfile
10257     local file=$DIR/$tfile
10258
10259     dd if=/dev/urandom of=$temp bs=6096 count=1 || \
10260         error "dd of=$temp bs=6096 count=1 failed"
10261     cp $temp $file
10262     cancel_lru_locks osc
10263     cmp $temp $file || error "$temp $file differ"
10264
10265     $TRUNCATE $temp 6000
10266     $TRUNCATE $file 6000
10267     cmp $temp $file || error "$temp $file differ (truncate1)"
10268
10269     echo "12345" >>$temp
10270     echo "12345" >>$file
10271     cmp $temp $file || error "$temp $file differ (append1)"
10272
10273     echo "12345" >>$temp
10274     echo "12345" >>$file
10275     cmp $temp $file || error "$temp $file differ (append2)"
10276
10277     rm -f $temp $file
10278     true
10279 }
10280
10281 test_155_big_load() {
10282     remote_ost_nodsh && skip "remote OST with nodsh" && return
10283     local temp=$TMP/$tfile
10284     local file=$DIR/$tfile
10285
10286     free_min_max
10287     local cache_size=$(do_facet ost$((MAXI+1)) \
10288         "awk '/cache/ {sum+=\\\$4} END {print sum}' /proc/cpuinfo")
10289     local large_file_size=$((cache_size * 2))
10290
10291     echo "OSS cache size: $cache_size KB"
10292     echo "Large file size: $large_file_size KB"
10293
10294     [ $MAXV -le $large_file_size ] && \
10295         skip_env "max available OST size needs > $large_file_size KB" && \
10296         return 0
10297
10298     $SETSTRIPE $file -c 1 -i $MAXI || error "$SETSTRIPE $file failed"
10299
10300     dd if=/dev/urandom of=$temp bs=$large_file_size count=1k || \
10301         error "dd of=$temp bs=$large_file_size count=1k failed"
10302     cp $temp $file
10303     ls -lh $temp $file
10304     cancel_lru_locks osc
10305     cmp $temp $file || error "$temp $file differ"
10306
10307     rm -f $temp $file
10308     true
10309 }
10310
10311 test_155a() {
10312         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10313         set_cache read on
10314         set_cache writethrough on
10315         test_155_small_load
10316 }
10317 run_test 155a "Verify small file correctness: read cache:on write_cache:on"
10318
10319 test_155b() {
10320         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10321         set_cache read on
10322         set_cache writethrough off
10323         test_155_small_load
10324 }
10325 run_test 155b "Verify small file correctness: read cache:on write_cache:off"
10326
10327 test_155c() {
10328         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10329         set_cache read off
10330         set_cache writethrough on
10331         test_155_small_load
10332 }
10333 run_test 155c "Verify small file correctness: read cache:off write_cache:on"
10334
10335 test_155d() {
10336         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10337         set_cache read off
10338         set_cache writethrough off
10339         test_155_small_load
10340 }
10341 run_test 155d "Verify small file correctness: read cache:off write_cache:off"
10342
10343 test_155e() {
10344         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10345         set_cache read on
10346         set_cache writethrough on
10347         test_155_big_load
10348 }
10349 run_test 155e "Verify big file correctness: read cache:on write_cache:on"
10350
10351 test_155f() {
10352         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10353         set_cache read on
10354         set_cache writethrough off
10355         test_155_big_load
10356 }
10357 run_test 155f "Verify big file correctness: read cache:on write_cache:off"
10358
10359 test_155g() {
10360         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10361         set_cache read off
10362         set_cache writethrough on
10363         test_155_big_load
10364 }
10365 run_test 155g "Verify big file correctness: read cache:off write_cache:on"
10366
10367 test_155h() {
10368         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10369         set_cache read off
10370         set_cache writethrough off
10371         test_155_big_load
10372 }
10373 run_test 155h "Verify big file correctness: read cache:off write_cache:off"
10374
10375 test_156() {
10376         remote_ost_nodsh && skip "remote OST with nodsh" && return
10377         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10378         local CPAGES=3
10379         local BEFORE
10380         local AFTER
10381         local file="$DIR/$tfile"
10382
10383         [ "$(facet_fstype ost1)" = "zfs" -a \
10384            $(lustre_version_code ost1 -lt $(version_code 2.6.93)) ] &&
10385                 skip "LU-1956/LU-2261: stats not implemented on OSD ZFS" &&
10386                 return
10387
10388         roc_hit_init
10389
10390         log "Turn on read and write cache"
10391         set_cache read on
10392         set_cache writethrough on
10393
10394         log "Write data and read it back."
10395         log "Read should be satisfied from the cache."
10396         dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
10397         BEFORE=$(roc_hit)
10398         cancel_lru_locks osc
10399         cat $file >/dev/null
10400         AFTER=$(roc_hit)
10401         if ! let "AFTER - BEFORE == CPAGES"; then
10402                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
10403         else
10404                 log "cache hits:: before: $BEFORE, after: $AFTER"
10405         fi
10406
10407         log "Read again; it should be satisfied from the cache."
10408         BEFORE=$AFTER
10409         cancel_lru_locks osc
10410         cat $file >/dev/null
10411         AFTER=$(roc_hit)
10412         if ! let "AFTER - BEFORE == CPAGES"; then
10413                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
10414         else
10415                 log "cache hits:: before: $BEFORE, after: $AFTER"
10416         fi
10417
10418         log "Turn off the read cache and turn on the write cache"
10419         set_cache read off
10420         set_cache writethrough on
10421
10422         log "Read again; it should be satisfied from the cache."
10423         BEFORE=$(roc_hit)
10424         cancel_lru_locks osc
10425         cat $file >/dev/null
10426         AFTER=$(roc_hit)
10427         if ! let "AFTER - BEFORE == CPAGES"; then
10428                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
10429         else
10430                 log "cache hits:: before: $BEFORE, after: $AFTER"
10431         fi
10432
10433         log "Read again; it should not be satisfied from the cache."
10434         BEFORE=$AFTER
10435         cancel_lru_locks osc
10436         cat $file >/dev/null
10437         AFTER=$(roc_hit)
10438         if ! let "AFTER - BEFORE == 0"; then
10439                 error "IN CACHE: before: $BEFORE, after: $AFTER"
10440         else
10441                 log "cache hits:: before: $BEFORE, after: $AFTER"
10442         fi
10443
10444         log "Write data and read it back."
10445         log "Read should be satisfied from the cache."
10446         dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
10447         BEFORE=$(roc_hit)
10448         cancel_lru_locks osc
10449         cat $file >/dev/null
10450         AFTER=$(roc_hit)
10451         if ! let "AFTER - BEFORE == CPAGES"; then
10452                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
10453         else
10454                 log "cache hits:: before: $BEFORE, after: $AFTER"
10455         fi
10456
10457         log "Read again; it should not be satisfied from the cache."
10458         BEFORE=$AFTER
10459         cancel_lru_locks osc
10460         cat $file >/dev/null
10461         AFTER=$(roc_hit)
10462         if ! let "AFTER - BEFORE == 0"; then
10463                 error "IN CACHE: before: $BEFORE, after: $AFTER"
10464         else
10465                 log "cache hits:: before: $BEFORE, after: $AFTER"
10466         fi
10467
10468         log "Turn off read and write cache"
10469         set_cache read off
10470         set_cache writethrough off
10471
10472         log "Write data and read it back"
10473         log "It should not be satisfied from the cache."
10474         rm -f $file
10475         dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
10476         cancel_lru_locks osc
10477         BEFORE=$(roc_hit)
10478         cat $file >/dev/null
10479         AFTER=$(roc_hit)
10480         if ! let "AFTER - BEFORE == 0"; then
10481                 error_ignore bz20762 "IN CACHE: before: $BEFORE, after: $AFTER"
10482         else
10483                 log "cache hits:: before: $BEFORE, after: $AFTER"
10484         fi
10485
10486         log "Turn on the read cache and turn off the write cache"
10487         set_cache read on
10488         set_cache writethrough off
10489
10490         log "Write data and read it back"
10491         log "It should not be satisfied from the cache."
10492         rm -f $file
10493         dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
10494         BEFORE=$(roc_hit)
10495         cancel_lru_locks osc
10496         cat $file >/dev/null
10497         AFTER=$(roc_hit)
10498         if ! let "AFTER - BEFORE == 0"; then
10499                 error_ignore bz20762 "IN CACHE: before: $BEFORE, after: $AFTER"
10500         else
10501                 log "cache hits:: before: $BEFORE, after: $AFTER"
10502         fi
10503
10504         log "Read again; it should be satisfied from the cache."
10505         BEFORE=$(roc_hit)
10506         cancel_lru_locks osc
10507         cat $file >/dev/null
10508         AFTER=$(roc_hit)
10509         if ! let "AFTER - BEFORE == CPAGES"; then
10510                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
10511         else
10512                 log "cache hits:: before: $BEFORE, after: $AFTER"
10513         fi
10514
10515         rm -f $file
10516 }
10517 run_test 156 "Verification of tunables"
10518
10519 #Changelogs
10520 err17935 () {
10521         if [[ $MDSCOUNT -gt 1 ]]; then
10522                 error_ignore bz17935 $*
10523         else
10524                 error $*
10525         fi
10526 }
10527
10528 changelog_chmask()
10529 {
10530         local CL_MASK_PARAM="mdd.$MDT0.changelog_mask"
10531
10532         MASK=$(do_facet $SINGLEMDS $LCTL get_param $CL_MASK_PARAM| grep -c "$1")
10533
10534         if [ $MASK -eq 1 ]; then
10535                 do_facet $SINGLEMDS $LCTL set_param $CL_MASK_PARAM="-$1"
10536         else
10537                 do_facet $SINGLEMDS $LCTL set_param $CL_MASK_PARAM="+$1"
10538         fi
10539 }
10540
10541 changelog_extract_field() {
10542         local mdt=$1
10543         local cltype=$2
10544         local file=$3
10545         local identifier=$4
10546
10547         $LFS changelog $mdt | gawk "/$cltype.*$file$/ {
10548                 print gensub(/^.* "$identifier'(\[[^\]]*\]).*$/,"\\1",1)}' |
10549                 tail -1
10550 }
10551
10552 test_160a() {
10553         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10554         remote_mds_nodsh && skip "remote MDS with nodsh" && return
10555         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] ||
10556                 { skip "Need MDS version at least 2.2.0"; return; }
10557
10558         local CL_USERS="mdd.$MDT0.changelog_users"
10559         local GET_CL_USERS="do_facet $SINGLEMDS $LCTL get_param -n $CL_USERS"
10560         USER=$(do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_register -n)
10561         echo "Registered as changelog user $USER"
10562         $GET_CL_USERS | grep -q $USER ||
10563                 error "User $USER not found in changelog_users"
10564
10565         # change something
10566         test_mkdir -p $DIR/$tdir/pics/2008/zachy
10567         touch $DIR/$tdir/pics/2008/zachy/timestamp
10568         cp /etc/hosts $DIR/$tdir/pics/2008/zachy/pic1.jpg
10569         mv $DIR/$tdir/pics/2008/zachy $DIR/$tdir/pics/zach
10570         ln $DIR/$tdir/pics/zach/pic1.jpg $DIR/$tdir/pics/2008/portland.jpg
10571         ln -s $DIR/$tdir/pics/2008/portland.jpg $DIR/$tdir/pics/desktop.jpg
10572         rm $DIR/$tdir/pics/desktop.jpg
10573
10574         $LFS changelog $MDT0 | tail -5
10575
10576         echo "verifying changelog mask"
10577         changelog_chmask "MKDIR"
10578         changelog_chmask "CLOSE"
10579
10580         test_mkdir -p $DIR/$tdir/pics/zach/sofia
10581         echo "zzzzzz" > $DIR/$tdir/pics/zach/file
10582
10583         changelog_chmask "MKDIR"
10584         changelog_chmask "CLOSE"
10585
10586         test_mkdir -p $DIR/$tdir/pics/2008/sofia
10587         echo "zzzzzz" > $DIR/$tdir/pics/zach/file
10588
10589         $LFS changelog $MDT0
10590         MKDIRS=$($LFS changelog $MDT0 | tail -5 | grep -c "MKDIR")
10591         CLOSES=$($LFS changelog $MDT0 | tail -5 | grep -c "CLOSE")
10592         [ $MKDIRS -eq 1 ] || err17935 "MKDIR changelog mask count $DIRS != 1"
10593         [ $CLOSES -eq 1 ] || err17935 "CLOSE changelog mask count $DIRS != 1"
10594
10595         # verify contents
10596         echo "verifying target fid"
10597         fidc=$(changelog_extract_field $MDT0 "CREAT" "timestamp" "t=")
10598         fidf=$($LFS path2fid $DIR/$tdir/pics/zach/timestamp)
10599         [ "$fidc" == "$fidf" ] ||
10600                 err17935 "fid in changelog $fidc != file fid $fidf"
10601         echo "verifying parent fid"
10602         fidc=$(changelog_extract_field $MDT0 "CREAT" "timestamp" "p=")
10603         fidf=$($LFS path2fid $DIR/$tdir/pics/zach)
10604         [ "$fidc" == "$fidf" ] ||
10605                 err17935 "pfid in changelog $fidc != dir fid $fidf"
10606
10607         USER_REC1=$($GET_CL_USERS | awk "\$1 == \"$USER\" {print \$2}")
10608         $LFS changelog_clear $MDT0 $USER $(($USER_REC1 + 5))
10609         USER_REC2=$($GET_CL_USERS | awk "\$1 == \"$USER\" {print \$2}")
10610         echo "verifying user clear: $(( $USER_REC1 + 5 )) == $USER_REC2"
10611         [ $USER_REC2 == $(($USER_REC1 + 5)) ] ||
10612                 err17935 "user index expected $(($USER_REC1 + 5)) is $USER_REC2"
10613
10614         MIN_REC=$($GET_CL_USERS |
10615                 awk 'min == "" || $2 < min {min = $2}; END {print min}')
10616         FIRST_REC=$($LFS changelog $MDT0 | head -n1 | awk '{print $1}')
10617         echo "verifying min purge: $(( $MIN_REC + 1 )) == $FIRST_REC"
10618         [ $FIRST_REC == $(($MIN_REC + 1)) ] ||
10619                 err17935 "first index should be $(($MIN_REC + 1)) is $FIRST_REC"
10620
10621         # LU-3446 changelog index reset on MDT restart
10622         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
10623         CUR_REC1=$($GET_CL_USERS | head -n1 | cut -f3 -d' ')
10624         $LFS changelog_clear $MDT0 $USER 0
10625         stop $SINGLEMDS || error "Fail to stop MDT."
10626         start $SINGLEMDS $MDT_DEV $MDS_MOUNT_OPTS || error "Fail to start MDT."
10627         CUR_REC2=$($GET_CL_USERS | head -n1 | cut -f3 -d' ')
10628         echo "verifying index survives MDT restart: $CUR_REC1 == $CUR_REC2"
10629         [ $CUR_REC1 == $CUR_REC2 ] ||
10630                 err17935 "current index should be $CUR_REC1 is $CUR_REC2"
10631
10632         echo "verifying user deregister"
10633         do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister $USER
10634         $GET_CL_USERS | grep -q $USER &&
10635                 error "User $USER still in changelog_users"
10636
10637         USERS=$(( $($GET_CL_USERS | wc -l) - 2 ))
10638         if [ $USERS -eq 0 ]; then
10639                 LAST_REC1=$($GET_CL_USERS | head -n1 | cut -f3 -d' ')
10640                 touch $DIR/$tdir/chloe
10641                 LAST_REC2=$($GET_CL_USERS | head -n1 | cut -f3 -d' ')
10642                 echo "verify changelogs are off: $LAST_REC1 == $LAST_REC2"
10643                 [ $LAST_REC1 == $LAST_REC2 ] || error "changelogs not off"
10644         else
10645                 echo "$USERS other changelog users; can't verify off"
10646         fi
10647 }
10648 run_test 160a "changelog sanity"
10649
10650 test_160b() { # LU-3587
10651         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10652         remote_mds_nodsh && skip "remote MDS with nodsh" && return
10653         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] ||
10654                 { skip "Need MDS version at least 2.2.0"; return; }
10655
10656         local CL_USERS="mdd.$MDT0.changelog_users"
10657         local GET_CL_USERS="do_facet $SINGLEMDS $LCTL get_param -n $CL_USERS"
10658         USER=$(do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_register -n)
10659         echo "Registered as changelog user $USER"
10660         $GET_CL_USERS | grep -q $USER ||
10661                 error "User $USER not found in changelog_users"
10662
10663         local LONGNAME1=$(str_repeat a 255)
10664         local LONGNAME2=$(str_repeat b 255)
10665
10666         cd $DIR
10667         echo "creating very long named file"
10668         touch $LONGNAME1 || error "create of $LONGNAME1 failed"
10669         echo "moving very long named file"
10670         mv $LONGNAME1 $LONGNAME2
10671
10672         $LFS changelog $MDT0 | grep RENME
10673
10674         echo "deregistering $USER"
10675         do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister $USER
10676
10677         rm -f $LONGNAME2
10678 }
10679 run_test 160b "Verify that very long rename doesn't crash in changelog"
10680
10681 test_160c() {
10682         remote_mds_nodsh && skip "remote MDS with nodsh" && return
10683
10684         local rc=0
10685         local server_version=$(lustre_version_code $SINGLEMDS)
10686
10687         [[ $server_version -gt $(version_code 2.5.57) ]] ||
10688                 [[ $server_version -gt $(version_code 2.5.1) &&
10689                    $server_version -lt $(version_code 2.5.50) ]] ||
10690                 { skip "Need MDS version at least 2.5.58 or 2.5.2+"; return; }
10691         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10692
10693         # Registration step
10694         local USER=$(do_facet $SINGLEMDS $LCTL --device $MDT0 \
10695                 changelog_register -n)
10696
10697         rm -rf $DIR/$tdir
10698         mkdir -p $DIR/$tdir
10699         $MCREATE $DIR/$tdir/foo_160c
10700         changelog_chmask "TRUNC"
10701         $TRUNCATE $DIR/$tdir/foo_160c 200
10702         changelog_chmask "TRUNC"
10703         $TRUNCATE $DIR/$tdir/foo_160c 199
10704         $LFS changelog $MDT0
10705         TRUNCS=$($LFS changelog $MDT0 | tail -5 | grep -c "TRUNC")
10706         [ $TRUNCS -eq 1 ] || err17935 "TRUNC changelog mask count $TRUNCS != 1"
10707         $LFS changelog_clear $MDT0 $USER 0
10708
10709         # Deregistration step
10710         echo "deregistering $USER"
10711         do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister $USER
10712 }
10713 run_test 160c "verify that changelog log catch the truncate event"
10714
10715 test_160d() {
10716         remote_mds_nodsh && skip "remote MDS with nodsh" && return
10717         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
10718
10719         local server_version=$(lustre_version_code mds1)
10720         local CL_MASK_PARAM="mdd.$MDT0.changelog_mask"
10721
10722         [[ $server_version -ge $(version_code 2.7.60) ]] ||
10723                 { skip "Need MDS version at least 2.7.60+"; return; }
10724         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10725
10726         # Registration step
10727         local USER=$(do_facet mds1 $LCTL --device $MDT0 \
10728                 changelog_register -n)
10729
10730         mkdir -p $DIR/$tdir/migrate_dir
10731         $LFS changelog_clear $MDT0 $USER 0
10732
10733         $LFS migrate -m 1 $DIR/$tdir/migrate_dir || error "migrate fails"
10734         $LFS changelog $MDT0
10735         MIGRATES=$($LFS changelog $MDT0 | tail -5 | grep -c "MIGRT")
10736         $LFS changelog_clear $MDT0 $USER 0
10737         [ $MIGRATES -eq 1 ] ||
10738                 error "MIGRATE changelog mask count $MIGRATES != 1"
10739
10740         # Deregistration step
10741         do_facet mds1 $LCTL --device $MDT0 changelog_deregister $USER
10742 }
10743 run_test 160d "verify that changelog log catch the migrate event"
10744
10745 test_161a() {
10746         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10747         test_mkdir -p -c1 $DIR/$tdir
10748         cp /etc/hosts $DIR/$tdir/$tfile
10749         test_mkdir -c1 $DIR/$tdir/foo1
10750         test_mkdir -c1 $DIR/$tdir/foo2
10751         ln $DIR/$tdir/$tfile $DIR/$tdir/foo1/sofia
10752         ln $DIR/$tdir/$tfile $DIR/$tdir/foo2/zachary
10753         ln $DIR/$tdir/$tfile $DIR/$tdir/foo1/luna
10754         ln $DIR/$tdir/$tfile $DIR/$tdir/foo2/thor
10755         local FID=$($LFS path2fid $DIR/$tdir/$tfile | tr -d '[]')
10756         if [ "$($LFS fid2path $DIR $FID | wc -l)" != "5" ]; then
10757                 $LFS fid2path $DIR $FID
10758                 err17935 "bad link ea"
10759         fi
10760     # middle
10761     rm $DIR/$tdir/foo2/zachary
10762     # last
10763     rm $DIR/$tdir/foo2/thor
10764     # first
10765     rm $DIR/$tdir/$tfile
10766     # rename
10767     mv $DIR/$tdir/foo1/sofia $DIR/$tdir/foo2/maggie
10768     if [ "$($LFS fid2path $FSNAME --link 1 $FID)" != "$tdir/foo2/maggie" ]
10769         then
10770         $LFS fid2path $DIR $FID
10771         err17935 "bad link rename"
10772     fi
10773     rm $DIR/$tdir/foo2/maggie
10774
10775         # overflow the EA
10776         local longname=filename_avg_len_is_thirty_two_
10777         createmany -l$DIR/$tdir/foo1/luna $DIR/$tdir/foo2/$longname 1000 ||
10778                 error "failed to hardlink many files"
10779         links=$($LFS fid2path $DIR $FID | wc -l)
10780         echo -n "${links}/1000 links in link EA"
10781         [[ $links -gt 60 ]] ||
10782                 err17935 "expected at least 60 links in link EA"
10783         unlinkmany $DIR/$tdir/foo2/$longname 1000 ||
10784                 error "failed to unlink many hardlinks"
10785 }
10786 run_test 161a "link ea sanity"
10787
10788 test_161b() {
10789         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10790         [ $MDSCOUNT -lt 2 ] && skip "skipping remote directory test" && return
10791         local MDTIDX=1
10792         local remote_dir=$DIR/$tdir/remote_dir
10793
10794         mkdir -p $DIR/$tdir
10795         $LFS mkdir -i $MDTIDX $remote_dir ||
10796                 error "create remote directory failed"
10797
10798         cp /etc/hosts $remote_dir/$tfile
10799         mkdir -p $remote_dir/foo1
10800         mkdir -p $remote_dir/foo2
10801         ln $remote_dir/$tfile $remote_dir/foo1/sofia
10802         ln $remote_dir/$tfile $remote_dir/foo2/zachary
10803         ln $remote_dir/$tfile $remote_dir/foo1/luna
10804         ln $remote_dir/$tfile $remote_dir/foo2/thor
10805
10806         local FID=$($LFS path2fid $remote_dir/$tfile | tr -d '[' |
10807                      tr -d ']')
10808         if [ "$($LFS fid2path $DIR $FID | wc -l)" != "5" ]; then
10809                 $LFS fid2path $DIR $FID
10810                 err17935 "bad link ea"
10811         fi
10812         # middle
10813         rm $remote_dir/foo2/zachary
10814         # last
10815         rm $remote_dir/foo2/thor
10816         # first
10817         rm $remote_dir/$tfile
10818         # rename
10819         mv $remote_dir/foo1/sofia $remote_dir/foo2/maggie
10820         local link_path=$($LFS fid2path $FSNAME --link 1 $FID)
10821         if [ "$DIR/$link_path" != "$remote_dir/foo2/maggie" ]; then
10822                 $LFS fid2path $DIR $FID
10823                 err17935 "bad link rename"
10824         fi
10825         rm $remote_dir/foo2/maggie
10826
10827         # overflow the EA
10828         local longname=filename_avg_len_is_thirty_two_
10829         createmany -l$remote_dir/foo1/luna $remote_dir/foo2/$longname 1000 ||
10830                 error "failed to hardlink many files"
10831         links=$($LFS fid2path $DIR $FID | wc -l)
10832         echo -n "${links}/1000 links in link EA"
10833         [[ ${links} -gt 60 ]] ||
10834                 err17935 "expected at least 60 links in link EA"
10835         unlinkmany $remote_dir/foo2/$longname 1000 ||
10836         error "failed to unlink many hardlinks"
10837 }
10838 run_test 161b "link ea sanity under remote directory"
10839
10840 test_161c() {
10841         remote_mds_nodsh && skip "remote MDS with nodsh" && return
10842         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10843         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.1.5) ]] &&
10844                 skip "Need MDS version at least 2.1.5" && return
10845
10846         # define CLF_RENAME_LAST 0x0001
10847         # rename overwrite a target having nlink = 1 (changelog flag 0x1)
10848         local USER=$(do_facet $SINGLEMDS $LCTL --device $MDT0 \
10849                 changelog_register -n)
10850         rm -rf $DIR/$tdir
10851         mkdir -p $DIR/$tdir
10852         touch $DIR/$tdir/foo_161c
10853         touch $DIR/$tdir/bar_161c
10854         mv -f $DIR/$tdir/foo_161c $DIR/$tdir/bar_161c
10855         $LFS changelog $MDT0 | grep RENME
10856         local flags=$($LFS changelog $MDT0 | grep RENME | tail -1 | \
10857                 cut -f5 -d' ')
10858         $LFS changelog_clear $MDT0 $USER 0
10859         if [ x$flags != "x0x1" ]; then
10860                 do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister \
10861                         $USER
10862                 error "flag $flags is not 0x1"
10863         fi
10864         echo "rename overwrite a target having nlink = 1," \
10865                 "changelog record has flags of $flags"
10866
10867         # rename overwrite a target having nlink > 1 (changelog flag 0x0)
10868         touch $DIR/$tdir/foo_161c
10869         touch $DIR/$tdir/bar_161c
10870         ln $DIR/$tdir/bar_161c $DIR/$tdir/foobar_161c
10871         mv -f $DIR/$tdir/foo_161c $DIR/$tdir/bar_161c
10872         $LFS changelog $MDT0 | grep RENME
10873         flags=$($LFS changelog $MDT0 | grep RENME | tail -1 | cut -f5 -d' ')
10874         $LFS changelog_clear $MDT0 $USER 0
10875         if [ x$flags != "x0x0" ]; then
10876                 do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister \
10877                         $USER
10878                 error "flag $flags is not 0x0"
10879         fi
10880         echo "rename overwrite a target having nlink > 1," \
10881                 "changelog record has flags of $flags"
10882
10883         # rename doesn't overwrite a target (changelog flag 0x0)
10884         touch $DIR/$tdir/foo_161c
10885         mv -f $DIR/$tdir/foo_161c $DIR/$tdir/foo2_161c
10886         $LFS changelog $MDT0 | grep RENME
10887         flags=$($LFS changelog $MDT0 | grep RENME | tail -1 | cut -f5 -d' ')
10888         $LFS changelog_clear $MDT0 $USER 0
10889         if [ x$flags != "x0x0" ]; then
10890                 do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister \
10891                         $USER
10892                 error "flag $flags is not 0x0"
10893         fi
10894         echo "rename doesn't overwrite a target," \
10895                 "changelog record has flags of $flags"
10896
10897         # define CLF_UNLINK_LAST 0x0001
10898         # unlink a file having nlink = 1 (changelog flag 0x1)
10899         rm -f $DIR/$tdir/foo2_161c
10900         $LFS changelog $MDT0 | grep UNLNK
10901         flags=$($LFS changelog $MDT0 | grep UNLNK | tail -1 | cut -f5 -d' ')
10902         $LFS changelog_clear $MDT0 $USER 0
10903         if [ x$flags != "x0x1" ]; then
10904                 do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister \
10905                         $USER
10906                 error "flag $flags is not 0x1"
10907         fi
10908         echo "unlink a file having nlink = 1," \
10909                 "changelog record has flags of $flags"
10910
10911         # unlink a file having nlink > 1 (changelog flag 0x0)
10912         ln -f $DIR/$tdir/bar_161c $DIR/$tdir/foobar_161c
10913         rm -f $DIR/$tdir/foobar_161c
10914         $LFS changelog $MDT0 | grep UNLNK
10915         flags=$($LFS changelog $MDT0 | grep UNLNK | tail -1 | cut -f5 -d' ')
10916         $LFS changelog_clear $MDT0 $USER 0
10917         if [ x$flags != "x0x0" ]; then
10918                 do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister \
10919                         $USER
10920                 error "flag $flags is not 0x0"
10921         fi
10922         echo "unlink a file having nlink > 1," \
10923                 "changelog record has flags of $flags"
10924         do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister $USER
10925 }
10926 run_test 161c "check CL_RENME[UNLINK] changelog record flags"
10927
10928 check_path() {
10929     local expected=$1
10930     shift
10931     local fid=$2
10932
10933     local path=$(${LFS} fid2path $*)
10934     # Remove the '//' indicating a remote directory
10935     path=$(echo $path | sed 's#//#/#g')
10936     RC=$?
10937
10938     if [ $RC -ne 0 ]; then
10939         err17935 "path looked up of $expected failed. Error $RC"
10940         return $RC
10941     elif [ "${path}" != "${expected}" ]; then
10942         err17935 "path looked up \"${path}\" instead of \"${expected}\""
10943         return 2
10944     fi
10945     echo "fid $fid resolves to path $path (expected $expected)"
10946 }
10947
10948 test_162a() { # was test_162
10949         # Make changes to filesystem
10950         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10951         test_mkdir -p -c1 $DIR/$tdir/d2
10952         touch $DIR/$tdir/d2/$tfile
10953         touch $DIR/$tdir/d2/x1
10954         touch $DIR/$tdir/d2/x2
10955         test_mkdir -p -c1 $DIR/$tdir/d2/a/b/c
10956         test_mkdir -p -c1 $DIR/$tdir/d2/p/q/r
10957         # regular file
10958         FID=$($LFS path2fid $DIR/$tdir/d2/$tfile | tr -d '[]')
10959         check_path "$tdir/d2/$tfile" $FSNAME $FID --link 0 ||
10960                 error "check path $tdir/d2/$tfile failed"
10961
10962         # softlink
10963         ln -s $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/p/q/r/slink
10964         FID=$($LFS path2fid $DIR/$tdir/d2/p/q/r/slink | tr -d '[]')
10965         check_path "$tdir/d2/p/q/r/slink" $FSNAME $FID --link 0 ||
10966                 error "check path $tdir/d2/p/q/r/slink failed"
10967
10968         # softlink to wrong file
10969         ln -s /this/is/garbage $DIR/$tdir/d2/p/q/r/slink.wrong
10970         FID=$($LFS path2fid $DIR/$tdir/d2/p/q/r/slink.wrong | tr -d '[]')
10971         check_path "$tdir/d2/p/q/r/slink.wrong" $FSNAME $FID --link 0 ||
10972                 error "check path $tdir/d2/p/q/r/slink.wrong failed"
10973
10974         # hardlink
10975         ln $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/p/q/r/hlink
10976         mv $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/a/b/c/new_file
10977         FID=$($LFS path2fid $DIR/$tdir/d2/a/b/c/new_file | tr -d '[]')
10978         # fid2path dir/fsname should both work
10979         check_path "$tdir/d2/a/b/c/new_file" $FSNAME $FID --link 1 ||
10980                 error "check path $tdir/d2/a/b/c/new_file failed"
10981         check_path "$DIR/$tdir/d2/p/q/r/hlink" $DIR $FID --link 0 ||
10982                 error "check path $DIR/$tdir/d2/p/q/r/hlink failed"
10983
10984         # hardlink count: check that there are 2 links
10985         # Doesnt work with CMD yet: 17935
10986         ${LFS} fid2path $DIR $FID | wc -l | grep -q 2 || \
10987                 err17935 "expected 2 links"
10988
10989         # hardlink indexing: remove the first link
10990         rm $DIR/$tdir/d2/p/q/r/hlink
10991         check_path "$tdir/d2/a/b/c/new_file" $FSNAME $FID --link 0 ||
10992                 error "check path $DIR/$tdir/d2/a/b/c/new_file failed"
10993
10994         return 0
10995 }
10996 run_test 162a "path lookup sanity"
10997
10998 test_162b() {
10999         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11000         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
11001
11002         mkdir $DIR/$tdir
11003         $LFS setdirstripe -i0 -c$MDSCOUNT -t all_char $DIR/$tdir/striped_dir ||
11004                                 error "create striped dir failed"
11005
11006         local FID=$($LFS getdirstripe $DIR/$tdir/striped_dir |
11007                                         tail -n 1 | awk '{print $2}')
11008         stat $MOUNT/.lustre/fid/$FID && error "sub_stripe can be accessed"
11009
11010         touch $DIR/$tdir/striped_dir/f{0..4} || error "touch f0..4 failed"
11011         mkdir $DIR/$tdir/striped_dir/d{0..4} || error "mkdir d0..4 failed"
11012
11013         # regular file
11014         for ((i=0;i<5;i++)); do
11015                 FID=$($LFS path2fid $DIR/$tdir/striped_dir/f$i | tr -d '[]') ||
11016                         error "get fid for f$i failed"
11017                 check_path "$tdir/striped_dir/f$i" $FSNAME $FID --link 0 ||
11018                         error "check path $tdir/striped_dir/f$i failed"
11019
11020                 FID=$($LFS path2fid $DIR/$tdir/striped_dir/d$i | tr -d '[]') ||
11021                         error "get fid for d$i failed"
11022                 check_path "$tdir/striped_dir/d$i" $FSNAME $FID --link 0 ||
11023                         error "check path $tdir/striped_dir/d$i failed"
11024         done
11025
11026         return 0
11027 }
11028 run_test 162b "striped directory path lookup sanity"
11029
11030 # LU-4239: Verify fid2path works with paths 100 or more directories deep
11031 test_162c() {
11032         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.51) ]] &&
11033                 skip "Need MDS version at least 2.7.51" && return
11034         test_mkdir $DIR/$tdir.local
11035         test_mkdir $DIR/$tdir.remote
11036         local lpath=$tdir.local
11037         local rpath=$tdir.remote
11038
11039         for ((i = 0; i <= 101; i++)); do
11040                 lpath="$lpath/$i"
11041                 mkdir $DIR/$lpath
11042                 FID=$($LFS path2fid $DIR/$lpath | tr -d '[]') ||
11043                         error "get fid for local directory $DIR/$lpath failed"
11044                 check_path "$DIR/$lpath" $MOUNT $FID --link 0 ||
11045                         error "check path for local directory $DIR/$lpath failed"
11046
11047                 rpath="$rpath/$i"
11048                 test_mkdir $DIR/$rpath
11049                 FID=$($LFS path2fid $DIR/$rpath | tr -d '[]') ||
11050                         error "get fid for remote directory $DIR/$rpath failed"
11051                 check_path "$DIR/$rpath" $MOUNT $FID --link 0 ||
11052                         error "check path for remote directory $DIR/$rpath failed"
11053         done
11054
11055         return 0
11056 }
11057 run_test 162c "fid2path works with paths 100 or more directories deep"
11058
11059 test_169() {
11060         # do directio so as not to populate the page cache
11061         log "creating a 10 Mb file"
11062         $MULTIOP $DIR/$tfile oO_CREAT:O_DIRECT:O_RDWR:w$((10*1048576))c || error "multiop failed while creating a file"
11063         log "starting reads"
11064         dd if=$DIR/$tfile of=/dev/null bs=4096 &
11065         log "truncating the file"
11066         $MULTIOP $DIR/$tfile oO_TRUNC:c || error "multiop failed while truncating the file"
11067         log "killing dd"
11068         kill %+ || true # reads might have finished
11069         echo "wait until dd is finished"
11070         wait
11071         log "removing the temporary file"
11072         rm -rf $DIR/$tfile || error "tmp file removal failed"
11073 }
11074 run_test 169 "parallel read and truncate should not deadlock"
11075
11076 test_170() {
11077         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11078         $LCTL clear     # bug 18514
11079         $LCTL debug_daemon start $TMP/${tfile}_log_good
11080         touch $DIR/$tfile
11081         $LCTL debug_daemon stop
11082         sed -e "s/^...../a/g" $TMP/${tfile}_log_good > $TMP/${tfile}_log_bad ||
11083                error "sed failed to read log_good"
11084
11085         $LCTL debug_daemon start $TMP/${tfile}_log_good
11086         rm -rf $DIR/$tfile
11087         $LCTL debug_daemon stop
11088
11089         $LCTL df $TMP/${tfile}_log_bad > $TMP/${tfile}_log_bad.out 2>&1 ||
11090                error "lctl df log_bad failed"
11091
11092         local bad_line=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $9}')
11093         local good_line1=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $5}')
11094
11095         $LCTL df $TMP/${tfile}_log_good > $TMP/${tfile}_log_good.out 2>&1
11096         local good_line2=$(tail -n 1 $TMP/${tfile}_log_good.out | awk '{print $5}')
11097
11098         [ "$bad_line" ] && [ "$good_line1" ] && [ "$good_line2" ] ||
11099                 error "bad_line good_line1 good_line2 are empty"
11100
11101         cat $TMP/${tfile}_log_good >> $TMP/${tfile}_logs_corrupt
11102         cat $TMP/${tfile}_log_bad >> $TMP/${tfile}_logs_corrupt
11103         cat $TMP/${tfile}_log_good >> $TMP/${tfile}_logs_corrupt
11104
11105         $LCTL df $TMP/${tfile}_logs_corrupt > $TMP/${tfile}_log_bad.out 2>&1
11106         local bad_line_new=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $9}')
11107         local good_line_new=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $5}')
11108
11109         [ "$bad_line_new" ] && [ "$good_line_new" ] ||
11110                 error "bad_line_new good_line_new are empty"
11111
11112         local expected_good=$((good_line1 + good_line2*2))
11113
11114         rm -f $TMP/${tfile}*
11115         # LU-231, short malformed line may not be counted into bad lines
11116         if [ $bad_line -ne $bad_line_new ] &&
11117                    [ $bad_line -ne $((bad_line_new - 1)) ]; then
11118                 error "expected $bad_line bad lines, but got $bad_line_new"
11119                 return 1
11120         fi
11121
11122         if [ $expected_good -ne $good_line_new ]; then
11123                 error "expected $expected_good good lines, but got $good_line_new"
11124                 return 2
11125         fi
11126         true
11127 }
11128 run_test 170 "test lctl df to handle corrupted log ====================="
11129
11130 test_171() { # bug20592
11131         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11132 #define OBD_FAIL_PTLRPC_DUMP_LOG         0x50e
11133         $LCTL set_param fail_loc=0x50e
11134         $LCTL set_param fail_val=3000
11135         multiop_bg_pause $DIR/$tfile O_s || true
11136         local MULTIPID=$!
11137         kill -USR1 $MULTIPID
11138         # cause log dump
11139         sleep 3
11140         wait $MULTIPID
11141         if dmesg | grep "recursive fault"; then
11142                 error "caught a recursive fault"
11143         fi
11144         $LCTL set_param fail_loc=0
11145         true
11146 }
11147 run_test 171 "test libcfs_debug_dumplog_thread stuck in do_exit() ======"
11148
11149 # it would be good to share it with obdfilter-survey/iokit-libecho code
11150 setup_obdecho_osc () {
11151         local rc=0
11152         local ost_nid=$1
11153         local obdfilter_name=$2
11154         echo "Creating new osc for $obdfilter_name on $ost_nid"
11155         # make sure we can find loopback nid
11156         $LCTL add_uuid $ost_nid $ost_nid >/dev/null 2>&1
11157
11158         [ $rc -eq 0 ] && { $LCTL attach osc ${obdfilter_name}_osc     \
11159                            ${obdfilter_name}_osc_UUID || rc=2; }
11160         [ $rc -eq 0 ] && { $LCTL --device ${obdfilter_name}_osc setup \
11161                            ${obdfilter_name}_UUID  $ost_nid || rc=3; }
11162         return $rc
11163 }
11164
11165 cleanup_obdecho_osc () {
11166         local obdfilter_name=$1
11167         $LCTL --device ${obdfilter_name}_osc cleanup >/dev/null
11168         $LCTL --device ${obdfilter_name}_osc detach  >/dev/null
11169         return 0
11170 }
11171
11172 obdecho_test() {
11173         local OBD=$1
11174         local node=$2
11175         local pages=${3:-64}
11176         local rc=0
11177         local id
11178
11179         local count=10
11180         local obd_size=$(get_obd_size $node $OBD)
11181         local page_size=$(get_page_size $node)
11182         if [[ -n "$obd_size" ]]; then
11183                 local new_count=$((obd_size / (pages * page_size / 1024)))
11184                 [[ $new_count -ge $count ]] || count=$new_count
11185         fi
11186
11187         do_facet $node "$LCTL attach echo_client ec ec_uuid" || rc=1
11188         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec setup $OBD" ||
11189                            rc=2; }
11190         if [ $rc -eq 0 ]; then
11191             id=$(do_facet $node "$LCTL --device ec create 1"  | awk '/object id/ {print $6}')
11192             [ ${PIPESTATUS[0]} -eq 0 -a -n "$id" ] || rc=3
11193         fi
11194         echo "New object id is $id"
11195         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec getattr $id" ||
11196                            rc=4; }
11197         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec "                 \
11198                            "test_brw $count w v $pages $id" || rc=4; }
11199         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec destroy $id 1" ||
11200                            rc=4; }
11201         [ $rc -eq 0 -o $rc -gt 2 ] && { do_facet $node "$LCTL --device ec "    \
11202                                         "cleanup" || rc=5; }
11203         [ $rc -eq 0 -o $rc -gt 1 ] && { do_facet $node "$LCTL --device ec "    \
11204                                         "detach" || rc=6; }
11205         [ $rc -ne 0 ] && echo "obecho_create_test failed: $rc"
11206         return $rc
11207 }
11208
11209 test_180a() {
11210         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11211         remote_ost_nodsh && skip "remote OST with nodsh" && return
11212         local rc=0
11213         local rmmod_local=0
11214
11215         if ! module_loaded obdecho; then
11216             load_module obdecho/obdecho
11217             rmmod_local=1
11218         fi
11219
11220         local osc=$($LCTL dl | grep -v mdt | awk '$3 == "osc" {print $4; exit}')
11221         local host=$(lctl get_param -n osc.$osc.import |
11222                              awk '/current_connection:/ {print $2}' )
11223         local target=$(lctl get_param -n osc.$osc.import |
11224                              awk '/target:/ {print $2}' )
11225         target=${target%_UUID}
11226
11227         [[ -n $target ]]  && { setup_obdecho_osc $host $target || rc=1; } || rc=1
11228         [ $rc -eq 0 ] && { obdecho_test ${target}_osc client || rc=2; }
11229         [[ -n $target ]] && cleanup_obdecho_osc $target
11230         [ $rmmod_local -eq 1 ] && rmmod obdecho
11231         return $rc
11232 }
11233 run_test 180a "test obdecho on osc"
11234
11235 test_180b() {
11236         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11237         remote_ost_nodsh && skip "remote OST with nodsh" && return
11238         local rc=0
11239         local rmmod_remote=0
11240
11241         do_facet ost1 "lsmod | grep -q obdecho || "                      \
11242                       "{ insmod ${LUSTRE}/obdecho/obdecho.ko || "        \
11243                       "modprobe obdecho; }" && rmmod_remote=1
11244         target=$(do_facet ost1 $LCTL dl | awk '/obdfilter/ {print $4;exit}')
11245         [[ -n $target ]] && { obdecho_test $target ost1 || rc=1; }
11246         [ $rmmod_remote -eq 1 ] && do_facet ost1 "rmmod obdecho"
11247         return $rc
11248 }
11249 run_test 180b "test obdecho directly on obdfilter"
11250
11251 test_180c() { # LU-2598
11252         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11253         remote_ost_nodsh && skip "remote OST with nodsh" && return
11254         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.0) ]] &&
11255                 skip "Need MDS version at least 2.4.0" && return
11256
11257         local rc=0
11258         local rmmod_remote=false
11259         local pages=16384 # 64MB bulk I/O RPC size
11260         local target
11261
11262         do_rpc_nodes $(facet_active_host ost1) load_module obdecho/obdecho &&
11263                 rmmod_remote=true || error "failed to load module obdecho"
11264
11265         target=$(do_facet ost1 $LCTL dl | awk '/obdfilter/ { print $4 }' |
11266                 head -n1)
11267         if [ -n "$target" ]; then
11268                 obdecho_test "$target" ost1 "$pages" || rc=${PIPESTATUS[0]}
11269         else
11270                 echo "there is no obdfilter target on ost1"
11271                 rc=2
11272         fi
11273         $rmmod_remote && do_facet ost1 "rmmod obdecho" || true
11274         return $rc
11275 }
11276 run_test 180c "test huge bulk I/O size on obdfilter, don't LASSERT"
11277
11278 test_181() { # bug 22177
11279         test_mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
11280         # create enough files to index the directory
11281         createmany -o $DIR/$tdir/foobar 4000
11282         # print attributes for debug purpose
11283         lsattr -d .
11284         # open dir
11285         multiop_bg_pause $DIR/$tdir D_Sc || return 1
11286         MULTIPID=$!
11287         # remove the files & current working dir
11288         unlinkmany $DIR/$tdir/foobar 4000
11289         rmdir $DIR/$tdir
11290         kill -USR1 $MULTIPID
11291         wait $MULTIPID
11292         stat $DIR/$tdir && error "open-unlinked dir was not removed!"
11293         return 0
11294 }
11295 run_test 181 "Test open-unlinked dir ========================"
11296
11297 test_182() {
11298         local fcount=1000
11299         local tcount=10
11300
11301         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
11302
11303         $LCTL set_param mdc.*.rpc_stats=clear
11304
11305         for (( i = 0; i < $tcount; i++ )) ; do
11306                 mkdir $DIR/$tdir/$i
11307         done
11308
11309         for (( i = 0; i < $tcount; i++ )) ; do
11310                 createmany -o $DIR/$tdir/$i/f- $fcount &
11311         done
11312         wait
11313
11314         for (( i = 0; i < $tcount; i++ )) ; do
11315                 unlinkmany $DIR/$tdir/$i/f- $fcount &
11316         done
11317         wait
11318
11319         $LCTL get_param mdc.*.rpc_stats
11320
11321         rm -rf $DIR/$tdir
11322 }
11323 run_test 182 "Test parallel modify metadata operations ================"
11324
11325 test_183() { # LU-2275
11326         remote_mds_nodsh && skip "remote MDS with nodsh" && return
11327         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.56) ]] &&
11328                 skip "Need MDS version at least 2.3.56" && return
11329
11330         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11331         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
11332         echo aaa > $DIR/$tdir/$tfile
11333
11334 #define OBD_FAIL_MDS_NEGATIVE_POSITIVE  0x148
11335         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x148
11336
11337         ls -l $DIR/$tdir && error "ls succeeded, should have failed"
11338         cat $DIR/$tdir/$tfile && error "cat succeeded, should have failed"
11339
11340         do_facet $SINGLEMDS $LCTL set_param fail_loc=0
11341
11342         # Flush negative dentry cache
11343         touch $DIR/$tdir/$tfile
11344
11345         # We are not checking for any leaked references here, they'll
11346         # become evident next time we do cleanup with module unload.
11347         rm -rf $DIR/$tdir
11348 }
11349 run_test 183 "No crash or request leak in case of strange dispositions ========"
11350
11351 # test suite 184 is for LU-2016, LU-2017
11352 test_184a() {
11353         check_swap_layouts_support && return 0
11354
11355         dir0=$DIR/$tdir/$testnum
11356         test_mkdir -p -c1 $dir0 || error "creating dir $dir0"
11357         ref1=/etc/passwd
11358         ref2=/etc/group
11359         file1=$dir0/f1
11360         file2=$dir0/f2
11361         $SETSTRIPE -c1 $file1
11362         cp $ref1 $file1
11363         $SETSTRIPE -c2 $file2
11364         cp $ref2 $file2
11365         gen1=$($GETSTRIPE -g $file1)
11366         gen2=$($GETSTRIPE -g $file2)
11367
11368         $LFS swap_layouts $file1 $file2 || error "swap of file layout failed"
11369         gen=$($GETSTRIPE -g $file1)
11370         [[ $gen1 != $gen ]] ||
11371                 "Layout generation on $file1 does not change"
11372         gen=$($GETSTRIPE -g $file2)
11373         [[ $gen2 != $gen ]] ||
11374                 "Layout generation on $file2 does not change"
11375
11376         cmp $ref1 $file2 || error "content compare failed ($ref1 != $file2)"
11377         cmp $ref2 $file1 || error "content compare failed ($ref2 != $file1)"
11378 }
11379 run_test 184a "Basic layout swap"
11380
11381 test_184b() {
11382         check_swap_layouts_support && return 0
11383
11384         dir0=$DIR/$tdir/$testnum
11385         mkdir -p $dir0 || error "creating dir $dir0"
11386         file1=$dir0/f1
11387         file2=$dir0/f2
11388         file3=$dir0/f3
11389         dir1=$dir0/d1
11390         dir2=$dir0/d2
11391         mkdir $dir1 $dir2
11392         $SETSTRIPE -c1 $file1
11393         $SETSTRIPE -c2 $file2
11394         $SETSTRIPE -c1 $file3
11395         chown $RUNAS_ID $file3
11396         gen1=$($GETSTRIPE -g $file1)
11397         gen2=$($GETSTRIPE -g $file2)
11398
11399         $LFS swap_layouts $dir1 $dir2 &&
11400                 error "swap of directories layouts should fail"
11401         $LFS swap_layouts $dir1 $file1 &&
11402                 error "swap of directory and file layouts should fail"
11403         $RUNAS $LFS swap_layouts $file1 $file2 &&
11404                 error "swap of file we cannot write should fail"
11405         $LFS swap_layouts $file1 $file3 &&
11406                 error "swap of file with different owner should fail"
11407         /bin/true # to clear error code
11408 }
11409 run_test 184b "Forbidden layout swap (will generate errors)"
11410
11411 test_184c() {
11412         check_swap_layouts_support && return 0
11413
11414         local dir0=$DIR/$tdir/$testnum
11415         mkdir -p $dir0 || error "creating dir $dir0"
11416
11417         local ref1=$dir0/ref1
11418         local ref2=$dir0/ref2
11419         local file1=$dir0/file1
11420         local file2=$dir0/file2
11421         # create a file large enough for the concurrent test
11422         dd if=/dev/urandom of=$ref1 bs=1M count=$((RANDOM % 50 + 20))
11423         dd if=/dev/urandom of=$ref2 bs=1M count=$((RANDOM % 50 + 20))
11424         echo "ref file size: ref1($(stat -c %s $ref1))," \
11425              "ref2($(stat -c %s $ref2))"
11426
11427         cp $ref2 $file2
11428         dd if=$ref1 of=$file1 bs=16k &
11429         local DD_PID=$!
11430
11431         # Make sure dd starts to copy file
11432         while [ ! -f $file1 ]; do sleep 0.1; done
11433
11434         $LFS swap_layouts $file1 $file2
11435         local rc=$?
11436         wait $DD_PID
11437         [[ $? == 0 ]] || error "concurrent write on $file1 failed"
11438         [[ $rc == 0 ]] || error "swap of $file1 and $file2 failed"
11439
11440         # how many bytes copied before swapping layout
11441         local copied=$(stat -c %s $file2)
11442         local remaining=$(stat -c %s $ref1)
11443         remaining=$((remaining - copied))
11444         echo "Copied $copied bytes before swapping layout..."
11445
11446         cmp -n $copied $file1 $ref2 | grep differ &&
11447                 error "Content mismatch [0, $copied) of ref2 and file1"
11448         cmp -n $copied $file2 $ref1 ||
11449                 error "Content mismatch [0, $copied) of ref1 and file2"
11450         cmp -i $copied:$copied -n $remaining $file1 $ref1 ||
11451                 error "Content mismatch [$copied, EOF) of ref1 and file1"
11452
11453         # clean up
11454         rm -f $ref1 $ref2 $file1 $file2
11455 }
11456 run_test 184c "Concurrent write and layout swap"
11457
11458 test_184d() {
11459         check_swap_layouts_support && return 0
11460         [ -z "$(which getfattr 2>/dev/null)" ] &&
11461                 skip "no getfattr command" && return 0
11462
11463         local file1=$DIR/$tdir/$tfile-1
11464         local file2=$DIR/$tdir/$tfile-2
11465         local file3=$DIR/$tdir/$tfile-3
11466         local lovea1
11467         local lovea2
11468
11469         mkdir -p $DIR/$tdir
11470         touch $file1 || error "create $file1 failed"
11471         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file2 ||
11472                 error "create $file2 failed"
11473         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file3 ||
11474                 error "create $file3 failed"
11475         lovea1=$($LFS getstripe $file1 | sed 1d)
11476
11477         $LFS swap_layouts $file2 $file3 ||
11478                 error "swap $file2 $file3 layouts failed"
11479         $LFS swap_layouts $file1 $file2 ||
11480                 error "swap $file1 $file2 layouts failed"
11481
11482         lovea2=$($LFS getstripe $file2 | sed 1d)
11483         [ "$lovea1" == "$lovea2" ] || error "lovea $lovea1 != $lovea2"
11484
11485         lovea1=$(getfattr -n trusted.lov $file1 | grep ^trusted)
11486         [[ -z "$lovea1" ]] || error "$file1 shouldn't have lovea"
11487 }
11488 run_test 184d "allow stripeless layouts swap"
11489
11490 test_184e() {
11491         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.94) ]] ||
11492                 { skip "Need MDS version at least 2.6.94"; return 0; }
11493         check_swap_layouts_support && return 0
11494         [ -z "$(which getfattr 2>/dev/null)" ] &&
11495                 skip "no getfattr command" && return 0
11496
11497         local file1=$DIR/$tdir/$tfile-1
11498         local file2=$DIR/$tdir/$tfile-2
11499         local file3=$DIR/$tdir/$tfile-3
11500         local lovea
11501
11502         mkdir -p $DIR/$tdir
11503         touch $file1 || error "create $file1 failed"
11504         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file2 ||
11505                 error "create $file2 failed"
11506         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file3 ||
11507                 error "create $file3 failed"
11508
11509         $LFS swap_layouts $file1 $file2 ||
11510                 error "swap $file1 $file2 layouts failed"
11511
11512         lovea=$(getfattr -n trusted.lov $file1 | grep ^trusted)
11513         [[ -z "$lovea" ]] || error "$file1 shouldn't have lovea"
11514
11515         echo 123 > $file1 || error "Should be able to write into $file1"
11516
11517         $LFS swap_layouts $file1 $file3 ||
11518                 error "swap $file1 $file3 layouts failed"
11519
11520         echo 123 > $file1 || error "Should be able to write into $file1"
11521
11522         rm -rf $file1 $file2 $file3
11523 }
11524 run_test 184e "Recreate layout after stripeless layout swaps"
11525
11526 test_185() { # LU-2441
11527         # LU-3553 - no volatile file support in old servers
11528         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.60) ]] ||
11529                 { skip "Need MDS version at least 2.3.60"; return 0; }
11530
11531         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
11532         touch $DIR/$tdir/spoo
11533         local mtime1=$(stat -c "%Y" $DIR/$tdir)
11534         local fid=$($MULTIOP $DIR/$tdir VFw4096c) ||
11535                 error "cannot create/write a volatile file"
11536         [ "$FILESET" == "" ] &&
11537         $CHECKSTAT -t file $MOUNT/.lustre/fid/$fid 2>/dev/null &&
11538                 error "FID is still valid after close"
11539
11540         multiop_bg_pause $DIR/$tdir vVw4096_c
11541         local multi_pid=$!
11542
11543         local OLD_IFS=$IFS
11544         IFS=":"
11545         local fidv=($fid)
11546         IFS=$OLD_IFS
11547         # assume that the next FID for this client is sequential, since stdout
11548         # is unfortunately eaten by multiop_bg_pause
11549         local n=$((${fidv[1]} + 1))
11550         local next_fid="${fidv[0]}:$(printf "0x%x" $n):${fidv[2]}"
11551         if [ "$FILESET" == "" ]; then
11552                 $CHECKSTAT -t file $MOUNT/.lustre/fid/$next_fid ||
11553                         error "FID is missing before close"
11554         fi
11555         kill -USR1 $multi_pid
11556         # 1 second delay, so if mtime change we will see it
11557         sleep 1
11558         local mtime2=$(stat -c "%Y" $DIR/$tdir)
11559         [[ $mtime1 == $mtime2 ]] || error "mtime has changed"
11560 }
11561 run_test 185 "Volatile file support"
11562
11563 test_187a() {
11564         remote_mds_nodsh && skip "remote MDS with nodsh" && return
11565         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.0) ] &&
11566                 skip "Need MDS version at least 2.3.0" && return
11567
11568         local dir0=$DIR/$tdir/$testnum
11569         mkdir -p $dir0 || error "creating dir $dir0"
11570
11571         local file=$dir0/file1
11572         dd if=/dev/urandom of=$file count=10 bs=1M conv=fsync
11573         local dv1=$($LFS data_version $file)
11574         dd if=/dev/urandom of=$file seek=10 count=1 bs=1M conv=fsync
11575         local dv2=$($LFS data_version $file)
11576         [[ $dv1 != $dv2 ]] ||
11577                 error "data version did not change on write $dv1 == $dv2"
11578
11579         # clean up
11580         rm -f $file1
11581 }
11582 run_test 187a "Test data version change"
11583
11584 test_187b() {
11585         remote_mds_nodsh && skip "remote MDS with nodsh" && return
11586         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.0) ] &&
11587                 skip "Need MDS version at least 2.3.0" && return
11588
11589         local dir0=$DIR/$tdir/$testnum
11590         mkdir -p $dir0 || error "creating dir $dir0"
11591
11592         declare -a DV=$($MULTIOP $dir0 Vw1000xYw1000xY | cut -f3 -d" ")
11593         [[ ${DV[0]} != ${DV[1]} ]] ||
11594                 error "data version did not change on write"\
11595                       " ${DV[0]} == ${DV[1]}"
11596
11597         # clean up
11598         rm -f $file1
11599 }
11600 run_test 187b "Test data version change on volatile file"
11601
11602 test_200() {
11603         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11604         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
11605         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
11606
11607         local POOL=${POOL:-cea1}
11608         local POOL_ROOT=${POOL_ROOT:-$DIR/d200.pools}
11609         local POOL_DIR_NAME=${POOL_DIR_NAME:-dir_tst}
11610         # Pool OST targets
11611         local first_ost=0
11612         local last_ost=$(($OSTCOUNT - 1))
11613         local ost_step=2
11614         local ost_list=$(seq $first_ost $ost_step $last_ost)
11615         local ost_range="$first_ost $last_ost $ost_step"
11616         local test_path=$POOL_ROOT/$POOL_DIR_NAME
11617         local file_dir=$POOL_ROOT/file_tst
11618         local subdir=$test_path/subdir
11619
11620         local rc=0
11621         while : ; do
11622                 # former test_200a test_200b
11623                 pool_add $POOL                          || { rc=$? ; break; }
11624                 pool_add_targets  $POOL $ost_range      || { rc=$? ; break; }
11625                 # former test_200c test_200d
11626                 mkdir -p $test_path
11627                 pool_set_dir      $POOL $test_path      || { rc=$? ; break; }
11628                 pool_check_dir    $POOL $test_path      || { rc=$? ; break; }
11629                 mkdir -p $subdir
11630                 pool_check_dir    $POOL $subdir         || { rc=$? ; break; }
11631                 pool_dir_rel_path $POOL $POOL_DIR_NAME $POOL_ROOT \
11632                                                         || { rc=$? ; break; }
11633                 # former test_200e test_200f
11634                 local files=$((OSTCOUNT*3))
11635                 pool_alloc_files  $POOL $test_path $files "$ost_list" \
11636                                                         || { rc=$? ; break; }
11637                 pool_create_files $POOL $file_dir $files "$ost_list" \
11638                                                         || { rc=$? ; break; }
11639                 # former test_200g test_200h
11640                 pool_lfs_df $POOL                       || { rc=$? ; break; }
11641                 pool_file_rel_path $POOL $test_path     || { rc=$? ; break; }
11642
11643                 # former test_201a test_201b test_201c
11644                 pool_remove_first_target $POOL          || { rc=$? ; break; }
11645
11646                 local f=$test_path/$tfile
11647                 pool_remove_all_targets $POOL $f        || { rc=$? ; break; }
11648                 pool_remove $POOL $f                    || { rc=$? ; break; }
11649                 break
11650         done
11651
11652         cleanup_pools
11653         return $rc
11654 }
11655 run_test 200 "OST pools"
11656
11657 # usage: default_attr <count | size | offset>
11658 default_attr() {
11659         $LCTL get_param -n lov.$FSNAME-clilov-\*.stripe${1}
11660 }
11661
11662 # usage: check_default_stripe_attr
11663 check_default_stripe_attr() {
11664         ACTUAL=$($GETSTRIPE $* $DIR/$tdir)
11665         case $1 in
11666         --stripe-count|--count)
11667                 [ -n "$2" ] && EXPECTED=0 || EXPECTED=$(default_attr count);;
11668         --stripe-size|--size)
11669                 [ -n "$2" ] && EXPECTED=0 || EXPECTED=$(default_attr size);;
11670         --stripe-index|--index)
11671                 EXPECTED=-1;;
11672         *)
11673                 error "unknown getstripe attr '$1'"
11674         esac
11675
11676         [ $ACTUAL != $EXPECTED ] &&
11677                 error "$DIR/$tdir has $1 '$ACTUAL', not '$EXPECTED'"
11678 }
11679
11680 test_204a() {
11681         test_mkdir -p $DIR/$tdir
11682         $SETSTRIPE --stripe-count 0 --stripe-size 0 --stripe-index -1 $DIR/$tdir
11683
11684         check_default_stripe_attr --stripe-count
11685         check_default_stripe_attr --stripe-size
11686         check_default_stripe_attr --stripe-index
11687
11688         return 0
11689 }
11690 run_test 204a "Print default stripe attributes ================="
11691
11692 test_204b() {
11693         test_mkdir -p $DIR/$tdir
11694         $SETSTRIPE --stripe-count 1 $DIR/$tdir
11695
11696         check_default_stripe_attr --stripe-size
11697         check_default_stripe_attr --stripe-index
11698
11699         return 0
11700 }
11701 run_test 204b "Print default stripe size and offset  ==========="
11702
11703 test_204c() {
11704         test_mkdir -p $DIR/$tdir
11705         $SETSTRIPE --stripe-size 65536 $DIR/$tdir
11706
11707         check_default_stripe_attr --stripe-count
11708         check_default_stripe_attr --stripe-index
11709
11710         return 0
11711 }
11712 run_test 204c "Print default stripe count and offset ==========="
11713
11714 test_204d() {
11715         test_mkdir -p $DIR/$tdir
11716         $SETSTRIPE --stripe-index 0 $DIR/$tdir
11717
11718         check_default_stripe_attr --stripe-count
11719         check_default_stripe_attr --stripe-size
11720
11721         return 0
11722 }
11723 run_test 204d "Print default stripe count and size ============="
11724
11725 test_204e() {
11726         test_mkdir -p $DIR/$tdir
11727         $SETSTRIPE -d $DIR/$tdir
11728
11729         check_default_stripe_attr --stripe-count --raw
11730         check_default_stripe_attr --stripe-size --raw
11731         check_default_stripe_attr --stripe-index --raw
11732
11733         return 0
11734 }
11735 run_test 204e "Print raw stripe attributes ================="
11736
11737 test_204f() {
11738         test_mkdir -p $DIR/$tdir
11739         $SETSTRIPE --stripe-count 1 $DIR/$tdir
11740
11741         check_default_stripe_attr --stripe-size --raw
11742         check_default_stripe_attr --stripe-index --raw
11743
11744         return 0
11745 }
11746 run_test 204f "Print raw stripe size and offset  ==========="
11747
11748 test_204g() {
11749         test_mkdir -p $DIR/$tdir
11750         $SETSTRIPE --stripe-size 65536 $DIR/$tdir
11751
11752         check_default_stripe_attr --stripe-count --raw
11753         check_default_stripe_attr --stripe-index --raw
11754
11755         return 0
11756 }
11757 run_test 204g "Print raw stripe count and offset ==========="
11758
11759 test_204h() {
11760         test_mkdir -p $DIR/$tdir
11761         $SETSTRIPE --stripe-index 0 $DIR/$tdir
11762
11763         check_default_stripe_attr --stripe-count --raw
11764         check_default_stripe_attr --stripe-size --raw
11765
11766         return 0
11767 }
11768 run_test 204h "Print raw stripe count and size ============="
11769
11770 # Figure out which job scheduler is being used, if any,
11771 # or use a fake one
11772 if [ -n "$SLURM_JOB_ID" ]; then # SLURM
11773         JOBENV=SLURM_JOB_ID
11774 elif [ -n "$LSB_JOBID" ]; then # Load Sharing Facility
11775         JOBENV=LSB_JOBID
11776 elif [ -n "$PBS_JOBID" ]; then # PBS/Maui/Moab
11777         JOBENV=PBS_JOBID
11778 elif [ -n "$LOADL_STEPID" ]; then # LoadLeveller
11779         JOBENV=LOADL_STEP_ID
11780 elif [ -n "$JOB_ID" ]; then # Sun Grid Engine
11781         JOBENV=JOB_ID
11782 else
11783         $LCTL list_param jobid_name > /dev/null 2>&1
11784         if [ $? -eq 0 ]; then
11785                 JOBENV=nodelocal
11786         else
11787                 JOBENV=FAKE_JOBID
11788         fi
11789 fi
11790
11791 verify_jobstats() {
11792         local cmd=($1)
11793         shift
11794         local facets="$@"
11795
11796 # we don't really need to clear the stats for this test to work, since each
11797 # command has a unique jobid, but it makes debugging easier if needed.
11798 #       for facet in $facets; do
11799 #               local dev=$(convert_facet2label $facet)
11800 #               # clear old jobstats
11801 #               do_facet $facet lctl set_param *.$dev.job_stats="clear"
11802 #       done
11803
11804         # use a new JobID for each test, or we might see an old one
11805         [ "$JOBENV" = "FAKE_JOBID" ] &&
11806                 FAKE_JOBID=id.$testnum.$(basename ${cmd[0]}).$RANDOM
11807
11808         JOBVAL=${!JOBENV}
11809
11810         [ "$JOBENV" = "nodelocal" ] && {
11811                 FAKE_JOBID=id.$testnum.$(basename ${cmd[0]}).$RANDOM
11812                 $LCTL set_param jobid_name=$FAKE_JOBID
11813                 JOBVAL=$FAKE_JOBID
11814         }
11815
11816         log "Test: ${cmd[*]}"
11817         log "Using JobID environment variable $JOBENV=$JOBVAL"
11818
11819         if [ $JOBENV = "FAKE_JOBID" ]; then
11820                 FAKE_JOBID=$JOBVAL ${cmd[*]}
11821         else
11822                 ${cmd[*]}
11823         fi
11824
11825         # all files are created on OST0000
11826         for facet in $facets; do
11827                 local stats="*.$(convert_facet2label $facet).job_stats"
11828                 if [ $(do_facet $facet lctl get_param $stats |
11829                        grep -c $JOBVAL) -ne 1 ]; then
11830                         do_facet $facet lctl get_param $stats
11831                         error "No jobstats for $JOBVAL found on $facet::$stats"
11832                 fi
11833         done
11834 }
11835
11836 jobstats_set() {
11837         trap 0
11838         NEW_JOBENV=${1:-$OLD_JOBENV}
11839         do_facet mgs $LCTL conf_param $FSNAME.sys.jobid_var=$NEW_JOBENV
11840         wait_update $HOSTNAME "$LCTL get_param -n jobid_var" $NEW_JOBENV
11841 }
11842
11843 cleanup_205() {
11844         do_facet $SINGLEMDS \
11845                 $LCTL set_param mdt.*.job_cleanup_interval=$OLD_INTERVAL
11846         [ $OLD_JOBENV != $JOBENV ] && jobstats_set $OLD_JOBENV
11847         do_facet $SINGLEMDS lctl --device $MDT0 changelog_deregister $CL_USER
11848 }
11849
11850 test_205() { # Job stats
11851         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11852         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
11853         remote_mds_nodsh && skip "remote MDS with nodsh" && return
11854         remote_ost_nodsh && skip "remote OST with nodsh" && return
11855
11856         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep jobstats)" ] &&
11857                 skip "Server doesn't support jobstats" && return 0
11858         [[ $JOBID_VAR = disable ]] && skip "jobstats is disabled" && return
11859
11860         OLD_JOBENV=$($LCTL get_param -n jobid_var)
11861         if [ $OLD_JOBENV != $JOBENV ]; then
11862                 jobstats_set $JOBENV
11863                 trap cleanup_205 EXIT
11864         fi
11865
11866         CL_USER=$(do_facet $SINGLEMDS lctl --device $MDT0 changelog_register -n)
11867         echo "Registered as changelog user $CL_USER"
11868
11869         OLD_INTERVAL=$(do_facet $SINGLEMDS \
11870                        lctl get_param -n mdt.*.job_cleanup_interval)
11871         local interval_new=5
11872         do_facet $SINGLEMDS \
11873                 $LCTL set_param mdt.*.job_cleanup_interval=$interval_new
11874         local start=$SECONDS
11875
11876         local cmd
11877         # mkdir
11878         cmd="mkdir $DIR/$tdir"
11879         verify_jobstats "$cmd" "$SINGLEMDS"
11880         # rmdir
11881         cmd="rmdir $DIR/$tdir"
11882         verify_jobstats "$cmd" "$SINGLEMDS"
11883         # mkdir on secondary MDT
11884         if [ $MDSCOUNT -gt 1 ]; then
11885                 cmd="lfs mkdir -i 1 $DIR/$tdir.remote"
11886                 verify_jobstats "$cmd" "mds2"
11887         fi
11888         # mknod
11889         cmd="mknod $DIR/$tfile c 1 3"
11890         verify_jobstats "$cmd" "$SINGLEMDS"
11891         # unlink
11892         cmd="rm -f $DIR/$tfile"
11893         verify_jobstats "$cmd" "$SINGLEMDS"
11894         # create all files on OST0000 so verify_jobstats can find OST stats
11895         # open & close
11896         cmd="$SETSTRIPE -i 0 -c 1 $DIR/$tfile"
11897         verify_jobstats "$cmd" "$SINGLEMDS"
11898         # setattr
11899         cmd="touch $DIR/$tfile"
11900         verify_jobstats "$cmd" "$SINGLEMDS ost1"
11901         # write
11902         cmd="dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 oflag=sync"
11903         verify_jobstats "$cmd" "ost1"
11904         # read
11905         cancel_lru_locks osc
11906         cmd="dd if=$DIR/$tfile of=/dev/null bs=1M count=1 iflag=direct"
11907         verify_jobstats "$cmd" "ost1"
11908         # truncate
11909         cmd="$TRUNCATE $DIR/$tfile 0"
11910         verify_jobstats "$cmd" "$SINGLEMDS ost1"
11911         # rename
11912         cmd="mv -f $DIR/$tfile $DIR/$tdir.rename"
11913         verify_jobstats "$cmd" "$SINGLEMDS"
11914         # jobstats expiry - sleep until old stats should be expired
11915         local left=$((interval_new + 2 - (SECONDS - start)))
11916         [ $left -ge 0 ] && echo "sleep $left for expiry" && sleep $((left + 1))
11917         cmd="mkdir $DIR/$tdir.expire"
11918         verify_jobstats "$cmd" "$SINGLEMDS"
11919         [ $(do_facet $SINGLEMDS lctl get_param *.*.job_stats |
11920             grep -c "job_id.*mkdir") -gt 1 ] && error "old jobstats not expired"
11921
11922         # Ensure that jobid are present in changelog (if supported by MDS)
11923         if [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.52) ]
11924         then
11925                 $LFS changelog $MDT0 | tail -9
11926                 jobids=$($LFS changelog $MDT0 | tail -9 | grep -c "j=")
11927                 [ $jobids -eq 9 ] ||
11928                         error "Wrong changelog jobid count $jobids != 9"
11929
11930                 # LU-5862
11931                 JOBENV="disable"
11932                 jobstats_set $JOBENV
11933                 touch $DIR/$tfile
11934                 $LFS changelog $MDT0 | tail -1
11935                 jobids=$($LFS changelog $MDT0 | tail -1 | grep -c "j=")
11936                 [ $jobids -eq 0 ] ||
11937                         error "Unexpected jobids when jobid_var=$JOBENV"
11938         fi
11939
11940         cleanup_205
11941 }
11942 run_test 205 "Verify job stats"
11943
11944 # LU-1480, LU-1773 and LU-1657
11945 test_206() {
11946         mkdir -p $DIR/$tdir
11947         $SETSTRIPE -c -1 $DIR/$tdir
11948 #define OBD_FAIL_LOV_INIT 0x1403
11949         $LCTL set_param fail_loc=0xa0001403
11950         $LCTL set_param fail_val=1
11951         touch $DIR/$tdir/$tfile || true
11952 }
11953 run_test 206 "fail lov_init_raid0() doesn't lbug"
11954
11955 test_207a() {
11956         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((RANDOM%10+1))
11957         local fsz=`stat -c %s $DIR/$tfile`
11958         cancel_lru_locks mdc
11959
11960         # do not return layout in getattr intent
11961 #define OBD_FAIL_MDS_NO_LL_GETATTR 0x170
11962         $LCTL set_param fail_loc=0x170
11963         local sz=`stat -c %s $DIR/$tfile`
11964
11965         [ $fsz -eq $sz ] || error "file size expected $fsz, actual $sz"
11966
11967         rm -rf $DIR/$tfile
11968 }
11969 run_test 207a "can refresh layout at glimpse"
11970
11971 test_207b() {
11972         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((RANDOM%10+1))
11973         local cksum=`md5sum $DIR/$tfile`
11974         local fsz=`stat -c %s $DIR/$tfile`
11975         cancel_lru_locks mdc
11976         cancel_lru_locks osc
11977
11978         # do not return layout in getattr intent
11979 #define OBD_FAIL_MDS_NO_LL_OPEN 0x171
11980         $LCTL set_param fail_loc=0x171
11981
11982         # it will refresh layout after the file is opened but before read issues
11983         echo checksum is "$cksum"
11984         echo "$cksum" |md5sum -c --quiet || error "file differs"
11985
11986         rm -rf $DIR/$tfile
11987 }
11988 run_test 207b "can refresh layout at open"
11989
11990 test_208() {
11991         # FIXME: in this test suite, only RD lease is used. This is okay
11992         # for now as only exclusive open is supported. After generic lease
11993         # is done, this test suite should be revised. - Jinshan
11994
11995         remote_mds_nodsh && skip "remote MDS with nodsh" && return
11996         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.4.52) ]] ||
11997                 { skip "Need MDS version at least 2.4.52"; return 0; }
11998
11999         echo "==== test 1: verify get lease work"
12000         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:eRE+eU || error "get lease error"
12001
12002         echo "==== test 2: verify lease can be broken by upcoming open"
12003         $MULTIOP $DIR/$tfile oO_RDONLY:eR_E-eUc &
12004         local PID=$!
12005         sleep 1
12006
12007         $MULTIOP $DIR/$tfile oO_RDONLY:c
12008         kill -USR1 $PID && wait $PID || error "break lease error"
12009
12010         echo "==== test 3: verify lease can't be granted if an open already exists"
12011         $MULTIOP $DIR/$tfile oO_RDONLY:_c &
12012         local PID=$!
12013         sleep 1
12014
12015         $MULTIOP $DIR/$tfile oO_RDONLY:eReUc && error "apply lease should fail"
12016         kill -USR1 $PID && wait $PID || error "open file error"
12017
12018         echo "==== test 4: lease can sustain over recovery"
12019         $MULTIOP $DIR/$tfile oO_RDONLY:eR_E+eUc &
12020         PID=$!
12021         sleep 1
12022
12023         fail mds1
12024
12025         kill -USR1 $PID && wait $PID || error "lease broken over recovery"
12026
12027         echo "==== test 5: lease broken can't be regained by replay"
12028         $MULTIOP $DIR/$tfile oO_RDONLY:eR_E-eUc &
12029         PID=$!
12030         sleep 1
12031
12032         # open file to break lease and then recovery
12033         $MULTIOP $DIR/$tfile oO_RDWR:c || error "open file error"
12034         fail mds1
12035
12036         kill -USR1 $PID && wait $PID || error "lease not broken over recovery"
12037
12038         rm -f $DIR/$tfile
12039 }
12040 run_test 208 "Exclusive open"
12041
12042 test_209() {
12043         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep disp_stripe)" ] &&
12044                 skip_env "must have disp_stripe" && return
12045
12046         touch $DIR/$tfile
12047         sync; sleep 5; sync;
12048
12049         echo 3 > /proc/sys/vm/drop_caches
12050         req_before=$(awk '/ptlrpc_cache / { print $2 }' /proc/slabinfo)
12051
12052         # open/close 500 times
12053         for i in $(seq 500); do
12054                 cat $DIR/$tfile
12055         done
12056
12057         echo 3 > /proc/sys/vm/drop_caches
12058         req_after=$(awk '/ptlrpc_cache / { print $2 }' /proc/slabinfo)
12059
12060         echo "before: $req_before, after: $req_after"
12061         [ $((req_after - req_before)) -ge 300 ] &&
12062                 error "open/close requests are not freed"
12063         return 0
12064 }
12065 run_test 209 "read-only open/close requests should be freed promptly"
12066
12067 test_212() {
12068         size=`date +%s`
12069         size=$((size % 8192 + 1))
12070         dd if=/dev/urandom of=$DIR/f212 bs=1k count=$size
12071         sendfile $DIR/f212 $DIR/f212.xyz || error "sendfile wrong"
12072         rm -f $DIR/f212 $DIR/f212.xyz
12073 }
12074 run_test 212 "Sendfile test ============================================"
12075
12076 test_213() {
12077         dd if=/dev/zero of=$DIR/$tfile bs=4k count=4
12078         cancel_lru_locks osc
12079         lctl set_param fail_loc=0x8000040f
12080         # generate a read lock
12081         cat $DIR/$tfile > /dev/null
12082         # write to the file, it will try to cancel the above read lock.
12083         cat /etc/hosts >> $DIR/$tfile
12084 }
12085 run_test 213 "OSC lock completion and cancel race don't crash - bug 18829"
12086
12087 test_214() { # for bug 20133
12088         mkdir -p $DIR/$tdir/d214c || error "mkdir $DIR/$tdir/d214c failed"
12089         for (( i=0; i < 340; i++ )) ; do
12090                 touch $DIR/$tdir/d214c/a$i
12091         done
12092
12093         ls -l $DIR/$tdir || error "ls -l $DIR/d214p failed"
12094         mv $DIR/$tdir/d214c $DIR/ || error "mv $DIR/d214p/d214c $DIR/ failed"
12095         ls $DIR/d214c || error "ls $DIR/d214c failed"
12096         rm -rf $DIR/$tdir || error "rm -rf $DIR/d214* failed"
12097         rm -rf $DIR/d214* || error "rm -rf $DIR/d214* failed"
12098 }
12099 run_test 214 "hash-indexed directory test - bug 20133"
12100
12101 # having "abc" as 1st arg, creates $TMP/lnet_abc.out and $TMP/lnet_abc.sys
12102 create_lnet_proc_files() {
12103         lctl get_param -n $1 >$TMP/lnet_$1.out || error "cannot read lnet.$1"
12104         sysctl lnet.$1 >$TMP/lnet_$1.sys_tmp || error "cannot read lnet.$1"
12105
12106         sed "s/^lnet.$1\ =\ //g" "$TMP/lnet_$1.sys_tmp" >$TMP/lnet_$1.sys
12107         rm -f "$TMP/lnet_$1.sys_tmp"
12108 }
12109
12110 # counterpart of create_lnet_proc_files
12111 remove_lnet_proc_files() {
12112         rm -f $TMP/lnet_$1.out $TMP/lnet_$1.sys
12113 }
12114
12115 # uses 1st arg as trailing part of filename, 2nd arg as description for reports,
12116 # 3rd arg as regexp for body
12117 check_lnet_proc_stats() {
12118         local l=$(cat "$TMP/lnet_$1" |wc -l)
12119         [ $l = 1 ] || (cat "$TMP/lnet_$1" && error "$2 is not of 1 line: $l")
12120
12121         grep -E "$3" "$TMP/lnet_$1" || (cat "$TMP/lnet_$1" && error "$2 misformatted")
12122 }
12123
12124 # uses 1st arg as trailing part of filename, 2nd arg as description for reports,
12125 # 3rd arg as regexp for body, 4th arg as regexp for 1st line, 5th arg is
12126 # optional and can be regexp for 2nd line (lnet.routes case)
12127 check_lnet_proc_entry() {
12128         local blp=2          # blp stands for 'position of 1st line of body'
12129         [ -z "$5" ] || blp=3 # lnet.routes case
12130
12131         local l=$(cat "$TMP/lnet_$1" |wc -l)
12132         # subtracting one from $blp because the body can be empty
12133         [ "$l" -ge "$(($blp - 1))" ] || (cat "$TMP/lnet_$1" && error "$2 is too short: $l")
12134
12135         sed -n '1 p' "$TMP/lnet_$1" |grep -E "$4" >/dev/null ||
12136                 (cat "$TMP/lnet_$1" && error "1st line of $2 misformatted")
12137
12138         [ "$5" = "" ] || sed -n '2 p' "$TMP/lnet_$1" |grep -E "$5" >/dev/null ||
12139                 (cat "$TMP/lnet_$1" && error "2nd line of $2 misformatted")
12140
12141         # bail out if any unexpected line happened
12142         sed -n "$blp p" "$TMP/lnet_$1" | grep -Ev "$3"
12143         [ "$?" != 0 ] || error "$2 misformatted"
12144 }
12145
12146 test_215() { # for bugs 18102, 21079, 21517
12147         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12148         local N='(0|[1-9][0-9]*)'       # non-negative numeric
12149         local P='[1-9][0-9]*'           # positive numeric
12150         local I='(0|-?[1-9][0-9]*|NA)'  # any numeric (0 | >0 | <0) or NA if no value
12151         local NET='[a-z][a-z0-9]*'      # LNET net like o2ib2
12152         local ADDR='[0-9.]+'            # LNET addr like 10.0.0.1
12153         local NID="$ADDR@$NET"          # LNET nid like 10.0.0.1@o2ib2
12154
12155         local L1 # regexp for 1st line
12156         local L2 # regexp for 2nd line (optional)
12157         local BR # regexp for the rest (body)
12158
12159         # lnet.stats should look as 11 space-separated non-negative numerics
12160         BR="^$N $N $N $N $N $N $N $N $N $N $N$"
12161         create_lnet_proc_files "stats"
12162         check_lnet_proc_stats "stats.sys" "lnet.stats" "$BR"
12163         remove_lnet_proc_files "stats"
12164
12165         # lnet.routes should look like this:
12166         # Routing disabled/enabled
12167         # net hops priority state router
12168         # where net is a string like tcp0, hops > 0, priority >= 0,
12169         # state is up/down,
12170         # router is a string like 192.168.1.1@tcp2
12171         L1="^Routing (disabled|enabled)$"
12172         L2="^net +hops +priority +state +router$"
12173         BR="^$NET +$N +(0|1) +(up|down) +$NID$"
12174         create_lnet_proc_files "routes"
12175         check_lnet_proc_entry "routes.sys" "lnet.routes" "$BR" "$L1" "$L2"
12176         remove_lnet_proc_files "routes"
12177
12178         # lnet.routers should look like this:
12179         # ref rtr_ref alive_cnt state last_ping ping_sent deadline down_ni router
12180         # where ref > 0, rtr_ref > 0, alive_cnt >= 0, state is up/down,
12181         # last_ping >= 0, ping_sent is boolean (0/1), deadline and down_ni are
12182         # numeric (0 or >0 or <0), router is a string like 192.168.1.1@tcp2
12183         L1="^ref +rtr_ref +alive_cnt +state +last_ping +ping_sent +deadline +down_ni +router$"
12184         BR="^$P +$P +$N +(up|down) +$N +(0|1) +$I +$I +$NID$"
12185         create_lnet_proc_files "routers"
12186         check_lnet_proc_entry "routers.sys" "lnet.routers" "$BR" "$L1"
12187         remove_lnet_proc_files "routers"
12188
12189         # lnet.peers should look like this:
12190         # nid refs state last max rtr min tx min queue
12191         # where nid is a string like 192.168.1.1@tcp2, refs > 0,
12192         # state is up/down/NA, max >= 0. last, rtr, min, tx, min are
12193         # numeric (0 or >0 or <0), queue >= 0.
12194         L1="^nid +refs +state +last +max +rtr +min +tx +min +queue$"
12195         BR="^$NID +$P +(up|down|NA) +$I +$N +$I +$I +$I +$I +$N$"
12196         create_lnet_proc_files "peers"
12197         check_lnet_proc_entry "peers.sys" "lnet.peers" "$BR" "$L1"
12198         remove_lnet_proc_files "peers"
12199
12200         # lnet.buffers  should look like this:
12201         # pages count credits min
12202         # where pages >=0, count >=0, credits and min are numeric (0 or >0 or <0)
12203         L1="^pages +count +credits +min$"
12204         BR="^ +$N +$N +$I +$I$"
12205         create_lnet_proc_files "buffers"
12206         check_lnet_proc_entry "buffers.sys" "lnet.buffers" "$BR" "$L1"
12207         remove_lnet_proc_files "buffers"
12208
12209         # lnet.nis should look like this:
12210         # nid status alive refs peer rtr max tx min
12211         # where nid is a string like 192.168.1.1@tcp2, status is up/down,
12212         # alive is numeric (0 or >0 or <0), refs >= 0, peer >= 0,
12213         # rtr >= 0, max >=0, tx and min are numeric (0 or >0 or <0).
12214         L1="^nid +status +alive +refs +peer +rtr +max +tx +min$"
12215         BR="^$NID +(up|down) +$I +$N +$N +$N +$N +$I +$I$"
12216         create_lnet_proc_files "nis"
12217         check_lnet_proc_entry "nis.sys" "lnet.nis" "$BR" "$L1"
12218         remove_lnet_proc_files "nis"
12219
12220         # can we successfully write to lnet.stats?
12221         lctl set_param -n stats=0 || error "cannot write to lnet.stats"
12222         sysctl -w lnet.stats=0 || error "cannot write to lnet.stats"
12223 }
12224 run_test 215 "lnet exists and has proper content - bugs 18102, 21079, 21517"
12225
12226 test_216() { # bug 20317
12227         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12228         remote_ost_nodsh && skip "remote OST with nodsh" && return
12229
12230         local node
12231         local facets=$(get_facets OST)
12232         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
12233
12234         save_lustre_params client "osc.*.contention_seconds" > $p
12235         save_lustre_params $facets \
12236                 "ldlm.namespaces.filter-*.max_nolock_bytes" >> $p
12237         save_lustre_params $facets \
12238                 "ldlm.namespaces.filter-*.contended_locks" >> $p
12239         save_lustre_params $facets \
12240                 "ldlm.namespaces.filter-*.contention_seconds" >> $p
12241         clear_osc_stats
12242
12243         # agressive lockless i/o settings
12244         for node in $(osts_nodes); do
12245                 do_node $node 'lctl set_param -n ldlm.namespaces.filter-*.max_nolock_bytes 2000000; lctl set_param -n ldlm.namespaces.filter-*.contended_locks 0; lctl set_param -n ldlm.namespaces.filter-*.contention_seconds 60'
12246         done
12247         lctl set_param -n osc.*.contention_seconds 60
12248
12249         $DIRECTIO write $DIR/$tfile 0 10 4096
12250         $CHECKSTAT -s 40960 $DIR/$tfile
12251
12252         # disable lockless i/o
12253         for node in $(osts_nodes); do
12254                 do_node $node 'lctl set_param -n ldlm.namespaces.filter-*.max_nolock_bytes 0; lctl set_param -n ldlm.namespaces.filter-*.contended_locks 32; lctl set_param -n ldlm.namespaces.filter-*.contention_seconds 0'
12255         done
12256         lctl set_param -n osc.*.contention_seconds 0
12257         clear_osc_stats
12258
12259         dd if=/dev/zero of=$DIR/$tfile count=0
12260         $CHECKSTAT -s 0 $DIR/$tfile
12261
12262         restore_lustre_params <$p
12263         rm -f $p
12264         rm $DIR/$tfile
12265 }
12266 run_test 216 "check lockless direct write works and updates file size and kms correctly"
12267
12268 test_217() { # bug 22430
12269         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12270         local node
12271         local nid
12272
12273         for node in $(nodes_list); do
12274                 nid=$(host_nids_address $node $NETTYPE)
12275                 if [[ $nid = *-* ]] ; then
12276                         echo "lctl ping $nid@$NETTYPE"
12277                         lctl ping $nid@$NETTYPE
12278                 else
12279                         echo "skipping $node (no hyphen detected)"
12280                 fi
12281         done
12282 }
12283 run_test 217 "check lctl ping for hostnames with hiphen ('-')"
12284
12285 test_218() {
12286        # do directio so as not to populate the page cache
12287        log "creating a 10 Mb file"
12288        $MULTIOP $DIR/$tfile oO_CREAT:O_DIRECT:O_RDWR:w$((10*1048576))c || error "multiop failed while creating a file"
12289        log "starting reads"
12290        dd if=$DIR/$tfile of=/dev/null bs=4096 &
12291        log "truncating the file"
12292        $MULTIOP $DIR/$tfile oO_TRUNC:c || error "multiop failed while truncating the file"
12293        log "killing dd"
12294        kill %+ || true # reads might have finished
12295        echo "wait until dd is finished"
12296        wait
12297        log "removing the temporary file"
12298        rm -rf $DIR/$tfile || error "tmp file removal failed"
12299 }
12300 run_test 218 "parallel read and truncate should not deadlock ======================="
12301
12302 test_219() {
12303         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12304         # write one partial page
12305         dd if=/dev/zero of=$DIR/$tfile bs=1024 count=1
12306         # set no grant so vvp_io_commit_write will do sync write
12307         $LCTL set_param fail_loc=0x411
12308         # write a full page at the end of file
12309         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 seek=1 conv=notrunc
12310
12311         $LCTL set_param fail_loc=0
12312         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 seek=3
12313         $LCTL set_param fail_loc=0x411
12314         dd if=/dev/zero of=$DIR/$tfile bs=1024 count=1 seek=2 conv=notrunc
12315
12316         # LU-4201
12317         dd if=/dev/zero of=$DIR/$tfile-2 bs=1024 count=1
12318         $CHECKSTAT -s 1024 $DIR/$tfile-2 || error "checkstat wrong size"
12319 }
12320 run_test 219 "LU-394: Write partial won't cause uncontiguous pages vec at LND"
12321
12322 test_220() { #LU-325
12323         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12324         remote_ost_nodsh && skip "remote OST with nodsh" && return
12325         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12326         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
12327         local OSTIDX=0
12328
12329         # create on MDT0000 so the last_id and next_id are correct
12330         mkdir $DIR/$tdir
12331         local OST=$($LFS df $DIR | awk '/OST:'$OSTIDX'/ { print $1 }')
12332         OST=${OST%_UUID}
12333
12334         # on the mdt's osc
12335         local mdtosc_proc1=$(get_mdtosc_proc_path $SINGLEMDS $OST)
12336         local last_id=$(do_facet $SINGLEMDS lctl get_param -n \
12337                         osc.$mdtosc_proc1.prealloc_last_id)
12338         local next_id=$(do_facet $SINGLEMDS lctl get_param -n \
12339                         osc.$mdtosc_proc1.prealloc_next_id)
12340
12341         $LFS df -i
12342
12343         do_facet ost$((OSTIDX + 1)) lctl set_param fail_val=-1
12344         #define OBD_FAIL_OST_ENOINO              0x229
12345         do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=0x229
12346         do_facet mgs $LCTL pool_new $FSNAME.$TESTNAME || return 1
12347         do_facet mgs $LCTL pool_add $FSNAME.$TESTNAME $OST || return 2
12348
12349         $SETSTRIPE $DIR/$tdir -i $OSTIDX -c 1 -p $FSNAME.$TESTNAME
12350
12351         MDSOBJS=$((last_id - next_id))
12352         echo "preallocated objects on MDS is $MDSOBJS" "($last_id - $next_id)"
12353
12354         blocks=$($LFS df $MOUNT | awk '($1 == '$OSTIDX') { print $4 }')
12355         echo "OST still has $count kbytes free"
12356
12357         echo "create $MDSOBJS files @next_id..."
12358         createmany -o $DIR/$tdir/f $MDSOBJS || return 3
12359
12360         local last_id2=$(do_facet mds${MDSIDX} lctl get_param -n \
12361                         osc.$mdtosc_proc1.prealloc_last_id)
12362         local next_id2=$(do_facet mds${MDSIDX} lctl get_param -n \
12363                         osc.$mdtosc_proc1.prealloc_next_id)
12364
12365         echo "after creation, last_id=$last_id2, next_id=$next_id2"
12366         $LFS df -i
12367
12368         echo "cleanup..."
12369
12370         do_facet ost$((OSTIDX + 1)) lctl set_param fail_val=0
12371         do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=0
12372
12373         do_facet mgs $LCTL pool_remove $FSNAME.$TESTNAME $OST || return 4
12374         do_facet mgs $LCTL pool_destroy $FSNAME.$TESTNAME || return 5
12375         echo "unlink $MDSOBJS files @$next_id..."
12376         unlinkmany $DIR/$tdir/f $MDSOBJS || return 6
12377 }
12378 run_test 220 "preallocated MDS objects still used if ENOSPC from OST"
12379
12380 test_221() {
12381         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12382         dd if=`which date` of=$MOUNT/date oflag=sync
12383         chmod +x $MOUNT/date
12384
12385         #define OBD_FAIL_LLITE_FAULT_TRUNC_RACE  0x1401
12386         $LCTL set_param fail_loc=0x80001401
12387
12388         $MOUNT/date > /dev/null
12389         rm -f $MOUNT/date
12390 }
12391 run_test 221 "make sure fault and truncate race to not cause OOM"
12392
12393 test_222a () {
12394         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12395        rm -rf $DIR/$tdir
12396        test_mkdir -p $DIR/$tdir
12397        $SETSTRIPE -c 1 -i 0 $DIR/$tdir
12398        createmany -o $DIR/$tdir/$tfile 10
12399        cancel_lru_locks mdc
12400        cancel_lru_locks osc
12401        #define OBD_FAIL_LDLM_AGL_DELAY           0x31a
12402        $LCTL set_param fail_loc=0x31a
12403        ls -l $DIR/$tdir > /dev/null || error "AGL for ls failed"
12404        $LCTL set_param fail_loc=0
12405        rm -r $DIR/$tdir
12406 }
12407 run_test 222a "AGL for ls should not trigger CLIO lock failure ================"
12408
12409 test_222b () {
12410         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12411        rm -rf $DIR/$tdir
12412        test_mkdir -p $DIR/$tdir
12413        $SETSTRIPE -c 1 -i 0 $DIR/$tdir
12414        createmany -o $DIR/$tdir/$tfile 10
12415        cancel_lru_locks mdc
12416        cancel_lru_locks osc
12417        #define OBD_FAIL_LDLM_AGL_DELAY           0x31a
12418        $LCTL set_param fail_loc=0x31a
12419        rm -r $DIR/$tdir || "AGL for rmdir failed"
12420        $LCTL set_param fail_loc=0
12421 }
12422 run_test 222b "AGL for rmdir should not trigger CLIO lock failure ============="
12423
12424 test_223 () {
12425         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12426        rm -rf $DIR/$tdir
12427        test_mkdir -p $DIR/$tdir
12428        $SETSTRIPE -c 1 -i 0 $DIR/$tdir
12429        createmany -o $DIR/$tdir/$tfile 10
12430        cancel_lru_locks mdc
12431        cancel_lru_locks osc
12432        #define OBD_FAIL_LDLM_AGL_NOLOCK          0x31b
12433        $LCTL set_param fail_loc=0x31b
12434        ls -l $DIR/$tdir > /dev/null || error "reenqueue failed"
12435        $LCTL set_param fail_loc=0
12436        rm -r $DIR/$tdir
12437 }
12438 run_test 223 "osc reenqueue if without AGL lock granted ======================="
12439
12440 test_224a() { # LU-1039, MRP-303
12441         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12442         #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB   0x508
12443         $LCTL set_param fail_loc=0x508
12444         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 conv=fsync
12445         $LCTL set_param fail_loc=0
12446         df $DIR
12447 }
12448 run_test 224a "Don't panic on bulk IO failure"
12449
12450 test_224b() { # LU-1039, MRP-303
12451         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12452         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1
12453         cancel_lru_locks osc
12454         #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB2   0x515
12455         $LCTL set_param fail_loc=0x515
12456         dd of=/dev/null if=$DIR/$tfile bs=4096 count=1
12457         $LCTL set_param fail_loc=0
12458         df $DIR
12459 }
12460 run_test 224b "Don't panic on bulk IO failure"
12461
12462 test_224c() { # LU-6441
12463         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12464         local pages_per_rpc=$($LCTL get_param \
12465                                 osc.*.max_pages_per_rpc)
12466         local at_max=$($LCTL get_param -n at_max)
12467         local timeout=$($LCTL get_param -n timeout)
12468         local test_at="$LCTL get_param -n at_max"
12469         local param_at="$FSNAME.sys.at_max"
12470         local test_timeout="$LCTL get_param -n timeout"
12471         local param_timeout="$FSNAME.sys.timeout"
12472
12473         $LCTL set_param -n osc.*.max_pages_per_rpc=1024
12474
12475         set_conf_param_and_check client "$test_at" "$param_at" 0 ||
12476                 error "conf_param at_max=0 failed"
12477         set_conf_param_and_check client "$test_timeout" "$param_timeout" 5 ||
12478                 error "conf_param timeout=5 failed"
12479
12480         #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB3   0x520
12481         $LCTL set_param fail_loc=0x520
12482         dd if=/dev/zero of=$DIR/$tfile bs=8MB count=1
12483         sync
12484         $LCTL set_param fail_loc=0
12485
12486         set_conf_param_and_check client "$test_at" "$param_at" $at_max ||
12487                 error "conf_param at_max=$at_max failed"
12488         set_conf_param_and_check client "$test_timeout" "$param_timeout" \
12489                 $timeout || error "conf_param timeout=$timeout failed"
12490
12491         $LCTL set_param -n $pages_per_rpc
12492 }
12493 run_test 224c "Don't hang if one of md lost during large bulk RPC"
12494
12495 MDSSURVEY=${MDSSURVEY:-$(which mds-survey 2>/dev/null || true)}
12496 test_225a () {
12497         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12498         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12499         if [ -z ${MDSSURVEY} ]; then
12500               skip_env "mds-survey not found" && return
12501         fi
12502
12503         [ $MDSCOUNT -ge 2 ] &&
12504                 skip "skipping now for more than one MDT" && return
12505
12506        [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ] ||
12507             { skip "Need MDS version at least 2.2.51"; return; }
12508
12509        local mds=$(facet_host $SINGLEMDS)
12510        local target=$(do_nodes $mds 'lctl dl' | \
12511                       awk "{if (\$2 == \"UP\" && \$3 == \"mdt\") {print \$4}}")
12512
12513        local cmd1="file_count=1000 thrhi=4"
12514        local cmd2="dir_count=2 layer=mdd stripe_count=0"
12515        local cmd3="rslt_loc=${TMP} targets=\"$mds:$target\" $MDSSURVEY"
12516        local cmd="$cmd1 $cmd2 $cmd3"
12517
12518        rm -f ${TMP}/mds_survey*
12519        echo + $cmd
12520        eval $cmd || error "mds-survey with zero-stripe failed"
12521        cat ${TMP}/mds_survey*
12522        rm -f ${TMP}/mds_survey*
12523 }
12524 run_test 225a "Metadata survey sanity with zero-stripe"
12525
12526 test_225b () {
12527         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12528         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12529         if [ -z ${MDSSURVEY} ]; then
12530               skip_env "mds-survey not found" && return
12531         fi
12532         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ] ||
12533             { skip "Need MDS version at least 2.2.51"; return; }
12534
12535         if [ $($LCTL dl | grep -c osc) -eq 0 ]; then
12536               skip_env "Need to mount OST to test" && return
12537         fi
12538
12539         [ $MDSCOUNT -ge 2 ] &&
12540                 skip "skipping now for more than one MDT" && return
12541        local mds=$(facet_host $SINGLEMDS)
12542        local target=$(do_nodes $mds 'lctl dl' | \
12543                       awk "{if (\$2 == \"UP\" && \$3 == \"mdt\") {print \$4}}")
12544
12545        local cmd1="file_count=1000 thrhi=4"
12546        local cmd2="dir_count=2 layer=mdd stripe_count=1"
12547        local cmd3="rslt_loc=${TMP} targets=\"$mds:$target\" $MDSSURVEY"
12548        local cmd="$cmd1 $cmd2 $cmd3"
12549
12550        rm -f ${TMP}/mds_survey*
12551        echo + $cmd
12552        eval $cmd || error "mds-survey with stripe_count failed"
12553        cat ${TMP}/mds_survey*
12554        rm -f ${TMP}/mds_survey*
12555 }
12556 run_test 225b "Metadata survey sanity with stripe_count = 1"
12557
12558 mcreate_path2fid () {
12559         local mode=$1
12560         local major=$2
12561         local minor=$3
12562         local name=$4
12563         local desc=$5
12564         local path=$DIR/$tdir/$name
12565         local fid
12566         local rc
12567         local fid_path
12568
12569         $MCREATE --mode=$1 --major=$2 --minor=$3 $path ||
12570                 error "cannot create $desc"
12571
12572         fid=$($LFS path2fid $path | tr -d '[' | tr -d ']')
12573         rc=$?
12574         [ $rc -ne 0 ] && error "cannot get fid of a $desc"
12575
12576         fid_path=$($LFS fid2path $MOUNT $fid)
12577         rc=$?
12578         [ $rc -ne 0 ] && error "cannot get path of $desc by $DIR $path $fid"
12579
12580         [ "$path" == "$fid_path" ] ||
12581                 error "fid2path returned $fid_path, expected $path"
12582
12583         echo "pass with $path and $fid"
12584 }
12585
12586 test_226a () {
12587         rm -rf $DIR/$tdir
12588         mkdir -p $DIR/$tdir
12589
12590         mcreate_path2fid 0010666 0 0 fifo "FIFO"
12591         mcreate_path2fid 0020666 1 3 null "character special file (null)"
12592         mcreate_path2fid 0020666 1 255 none "character special file (no device)"
12593         mcreate_path2fid 0040666 0 0 dir "directory"
12594         mcreate_path2fid 0060666 7 0 loop0 "block special file (loop)"
12595         mcreate_path2fid 0100666 0 0 file "regular file"
12596         mcreate_path2fid 0120666 0 0 link "symbolic link"
12597         mcreate_path2fid 0140666 0 0 sock "socket"
12598 }
12599 run_test 226a "call path2fid and fid2path on files of all type"
12600
12601 test_226b () {
12602         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
12603         rm -rf $DIR/$tdir
12604         local MDTIDX=1
12605
12606         mkdir -p $DIR/$tdir
12607         $LFS setdirstripe -i $MDTIDX $DIR/$tdir/remote_dir ||
12608                 error "create remote directory failed"
12609         mcreate_path2fid 0010666 0 0 "remote_dir/fifo" "FIFO"
12610         mcreate_path2fid 0020666 1 3 "remote_dir/null" \
12611                                 "character special file (null)"
12612         mcreate_path2fid 0020666 1 255 "remote_dir/none" \
12613                                 "character special file (no device)"
12614         mcreate_path2fid 0040666 0 0 "remote_dir/dir" "directory"
12615         mcreate_path2fid 0060666 7 0 "remote_dir/loop0" \
12616                                 "block special file (loop)"
12617         mcreate_path2fid 0100666 0 0 "remote_dir/file" "regular file"
12618         mcreate_path2fid 0120666 0 0 "remote_dir/link" "symbolic link"
12619         mcreate_path2fid 0140666 0 0 "remote_dir/sock" "socket"
12620 }
12621 run_test 226b "call path2fid and fid2path on files of all type under remote dir"
12622
12623 # LU-1299 Executing or running ldd on a truncated executable does not
12624 # cause an out-of-memory condition.
12625 test_227() {
12626         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12627         [ -z "$(which ldd)" ] && skip "should have ldd tool" && return
12628         dd if=$(which date) of=$MOUNT/date bs=1k count=1
12629         chmod +x $MOUNT/date
12630
12631         $MOUNT/date > /dev/null
12632         ldd $MOUNT/date > /dev/null
12633         rm -f $MOUNT/date
12634 }
12635 run_test 227 "running truncated executable does not cause OOM"
12636
12637 # LU-1512 try to reuse idle OI blocks
12638 test_228a() {
12639         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12640         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12641         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
12642                 skip "non-ldiskfs backend" && return
12643
12644         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
12645         local myDIR=$DIR/$tdir
12646
12647         mkdir -p $myDIR
12648         #define OBD_FAIL_SEQ_EXHAUST             0x1002
12649         $LCTL set_param fail_loc=0x80001002
12650         createmany -o $myDIR/t- 10000
12651         $LCTL set_param fail_loc=0
12652         # The guard is current the largest FID holder
12653         touch $myDIR/guard
12654         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
12655                     tr -d '[')
12656         local IDX=$(($SEQ % 64))
12657
12658         do_facet $SINGLEMDS sync
12659         # Make sure journal flushed.
12660         sleep 6
12661         local blk1=$(do_facet $SINGLEMDS \
12662                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
12663                      grep Blockcount | awk '{print $4}')
12664
12665         # Remove old files, some OI blocks will become idle.
12666         unlinkmany $myDIR/t- 10000
12667         # Create new files, idle OI blocks should be reused.
12668         createmany -o $myDIR/t- 2000
12669         do_facet $SINGLEMDS sync
12670         # Make sure journal flushed.
12671         sleep 6
12672         local blk2=$(do_facet $SINGLEMDS \
12673                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
12674                      grep Blockcount | awk '{print $4}')
12675
12676         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
12677 }
12678 run_test 228a "try to reuse idle OI blocks"
12679
12680 test_228b() {
12681         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12682         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12683         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
12684                 skip "non-ldiskfs backend" && return
12685
12686         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
12687         local myDIR=$DIR/$tdir
12688
12689         mkdir -p $myDIR
12690         #define OBD_FAIL_SEQ_EXHAUST             0x1002
12691         $LCTL set_param fail_loc=0x80001002
12692         createmany -o $myDIR/t- 10000
12693         $LCTL set_param fail_loc=0
12694         # The guard is current the largest FID holder
12695         touch $myDIR/guard
12696         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
12697                     tr -d '[')
12698         local IDX=$(($SEQ % 64))
12699
12700         do_facet $SINGLEMDS sync
12701         # Make sure journal flushed.
12702         sleep 6
12703         local blk1=$(do_facet $SINGLEMDS \
12704                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
12705                      grep Blockcount | awk '{print $4}')
12706
12707         # Remove old files, some OI blocks will become idle.
12708         unlinkmany $myDIR/t- 10000
12709
12710         # stop the MDT
12711         stop $SINGLEMDS || error "Fail to stop MDT."
12712         # remount the MDT
12713         start $SINGLEMDS $MDT_DEV $MDS_MOUNT_OPTS || error "Fail to start MDT."
12714
12715         df $MOUNT || error "Fail to df."
12716         # Create new files, idle OI blocks should be reused.
12717         createmany -o $myDIR/t- 2000
12718         do_facet $SINGLEMDS sync
12719         # Make sure journal flushed.
12720         sleep 6
12721         local blk2=$(do_facet $SINGLEMDS \
12722                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
12723                      grep Blockcount | awk '{print $4}')
12724
12725         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
12726 }
12727 run_test 228b "idle OI blocks can be reused after MDT restart"
12728
12729 #LU-1881
12730 test_228c() {
12731         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12732         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12733         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
12734                 skip "non-ldiskfs backend" && return
12735
12736         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
12737         local myDIR=$DIR/$tdir
12738
12739         mkdir -p $myDIR
12740         #define OBD_FAIL_SEQ_EXHAUST             0x1002
12741         $LCTL set_param fail_loc=0x80001002
12742         # 20000 files can guarantee there are index nodes in the OI file
12743         createmany -o $myDIR/t- 20000
12744         $LCTL set_param fail_loc=0
12745         # The guard is current the largest FID holder
12746         touch $myDIR/guard
12747         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
12748                     tr -d '[')
12749         local IDX=$(($SEQ % 64))
12750
12751         do_facet $SINGLEMDS sync
12752         # Make sure journal flushed.
12753         sleep 6
12754         local blk1=$(do_facet $SINGLEMDS \
12755                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
12756                      grep Blockcount | awk '{print $4}')
12757
12758         # Remove old files, some OI blocks will become idle.
12759         unlinkmany $myDIR/t- 20000
12760         rm -f $myDIR/guard
12761         # The OI file should become empty now
12762
12763         # Create new files, idle OI blocks should be reused.
12764         createmany -o $myDIR/t- 2000
12765         do_facet $SINGLEMDS sync
12766         # Make sure journal flushed.
12767         sleep 6
12768         local blk2=$(do_facet $SINGLEMDS \
12769                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
12770                      grep Blockcount | awk '{print $4}')
12771
12772         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
12773 }
12774 run_test 228c "NOT shrink the last entry in OI index node to recycle idle leaf"
12775
12776 test_229() { # LU-2482, LU-3448
12777         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.53) ] &&
12778                 skip "No HSM $(lustre_build_version $SINGLEMDS) MDS < 2.4.53" &&
12779                 return
12780         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12781         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
12782
12783         rm -f $DIR/$tfile
12784
12785         # Create a file with a released layout and stripe count 2.
12786         $MULTIOP $DIR/$tfile H2c ||
12787                 error "failed to create file with released layout"
12788
12789         $GETSTRIPE -v $DIR/$tfile
12790
12791         local pattern=$($GETSTRIPE -L $DIR/$tfile)
12792         [ X"$pattern" = X"80000001" ] || error "pattern error ($pattern)"
12793
12794         local stripe_count=$($GETSTRIPE -c $DIR/$tfile) || error "getstripe"
12795         [ $stripe_count -eq 2 ] || error "stripe count not 2 ($stripe_count)"
12796         stat $DIR/$tfile || error "failed to stat released file"
12797
12798         chown $RUNAS_ID $DIR/$tfile ||
12799                 error "chown $RUNAS_ID $DIR/$tfile failed"
12800
12801         chgrp $RUNAS_ID $DIR/$tfile ||
12802                 error "chgrp $RUNAS_ID $DIR/$tfile failed"
12803
12804         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
12805         rm $DIR/$tfile || error "failed to remove released file"
12806 }
12807 run_test 229 "getstripe/stat/rm/attr changes work on released files"
12808
12809 test_230a() {
12810         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12811         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
12812         local MDTIDX=1
12813
12814         test_mkdir $DIR/$tdir
12815         test_mkdir -i0 -c1 $DIR/$tdir/test_230_local
12816         local mdt_idx=$($GETSTRIPE -M $DIR/$tdir/test_230_local)
12817         [ $mdt_idx -ne 0 ] &&
12818                 error "create local directory on wrong MDT $mdt_idx"
12819
12820         $LFS mkdir -i $MDTIDX $DIR/$tdir/test_230 ||
12821                         error "create remote directory failed"
12822         local mdt_idx=$($GETSTRIPE -M $DIR/$tdir/test_230)
12823         [ $mdt_idx -ne $MDTIDX ] &&
12824                 error "create remote directory on wrong MDT $mdt_idx"
12825
12826         createmany -o $DIR/$tdir/test_230/t- 10 ||
12827                 error "create files on remote directory failed"
12828         mdt_idx=$($GETSTRIPE -M $DIR/$tdir/test_230/t-0)
12829         [ $mdt_idx -ne $MDTIDX ] && error "create files on wrong MDT $mdt_idx"
12830         rm -r $DIR/$tdir || error "unlink remote directory failed"
12831 }
12832 run_test 230a "Create remote directory and files under the remote directory"
12833
12834 test_230b() {
12835         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12836         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
12837         local MDTIDX=1
12838         local mdt_index
12839         local i
12840         local file
12841         local pid
12842         local stripe_count
12843         local migrate_dir=$DIR/$tdir/migrate_dir
12844         local other_dir=$DIR/$tdir/other_dir
12845
12846         test_mkdir $DIR/$tdir
12847         test_mkdir -i0 -c1 $migrate_dir
12848         test_mkdir -i0 -c1 $other_dir
12849         for ((i=0; i<10; i++)); do
12850                 mkdir -p $migrate_dir/dir_${i}
12851                 createmany -o $migrate_dir/dir_${i}/f 10 ||
12852                         error "create files under remote dir failed $i"
12853         done
12854
12855         cp /etc/passwd $migrate_dir/$tfile
12856         cp /etc/passwd $other_dir/$tfile
12857         chattr +SAD $migrate_dir
12858         chattr +SAD $migrate_dir/$tfile
12859
12860         local old_dir_flag=$(lsattr -a $migrate_dir | awk '/\/\.$/ {print $1}')
12861         local old_file_flag=$(lsattr $migrate_dir/$tfile | awk '{print $1}')
12862         local old_dir_mode=$(stat -c%f $migrate_dir)
12863         local old_file_mode=$(stat -c%f $migrate_dir/$tfile)
12864
12865         mkdir -p $migrate_dir/dir_default_stripe2
12866         $SETSTRIPE -c 2 $migrate_dir/dir_default_stripe2
12867         $SETSTRIPE -c 2 $migrate_dir/${tfile}_stripe2
12868
12869         mkdir -p $other_dir
12870         ln $migrate_dir/$tfile $other_dir/luna
12871         ln $migrate_dir/$tfile $migrate_dir/sofia
12872         ln $other_dir/$tfile $migrate_dir/david
12873         ln -s $migrate_dir/$tfile $other_dir/zachary
12874         ln -s $migrate_dir/$tfile $migrate_dir/${tfile}_ln
12875         ln -s $other_dir/$tfile $migrate_dir/${tfile}_ln_other
12876
12877         $LFS migrate -m $MDTIDX $migrate_dir ||
12878                 error "fails on migrating remote dir to MDT1"
12879
12880         echo "migratate to MDT1, then checking.."
12881         for ((i = 0; i < 10; i++)); do
12882                 for file in $(find $migrate_dir/dir_${i}); do
12883                         mdt_index=$($LFS getstripe -M $file)
12884                         [ $mdt_index == $MDTIDX ] ||
12885                                 error "$file is not on MDT${MDTIDX}"
12886                 done
12887         done
12888
12889         # the multiple link file should still in MDT0
12890         mdt_index=$($LFS getstripe -M $migrate_dir/$tfile)
12891         [ $mdt_index == 0 ] ||
12892                 error "$file is not on MDT${MDTIDX}"
12893
12894         local new_dir_flag=$(lsattr -a $migrate_dir | awk '/\/\.$/ {print $1}')
12895         [ "$old_dir_flag" = "$new_dir_flag" ] ||
12896                 error " expect $old_dir_flag get $new_dir_flag"
12897
12898         local new_file_flag=$(lsattr $migrate_dir/$tfile | awk '{print $1}')
12899         [ "$old_file_flag" = "$new_file_flag" ] ||
12900                 error " expect $old_file_flag get $new_file_flag"
12901
12902         local new_dir_mode=$(stat -c%f $migrate_dir)
12903         [ "$old_dir_mode" = "$new_dir_mode" ] ||
12904                 error "expect mode $old_dir_mode get $new_dir_mode"
12905
12906         local new_file_mode=$(stat -c%f $migrate_dir/$tfile)
12907         [ "$old_file_mode" = "$new_file_mode" ] ||
12908                 error "expect mode $old_file_mode get $new_file_mode"
12909
12910         diff /etc/passwd $migrate_dir/$tfile ||
12911                 error "$tfile different after migration"
12912
12913         diff /etc/passwd $other_dir/luna ||
12914                 error "luna different after migration"
12915
12916         diff /etc/passwd $migrate_dir/sofia ||
12917                 error "sofia different after migration"
12918
12919         diff /etc/passwd $migrate_dir/david ||
12920                 error "david different after migration"
12921
12922         diff /etc/passwd $other_dir/zachary ||
12923                 error "zachary different after migration"
12924
12925         diff /etc/passwd $migrate_dir/${tfile}_ln ||
12926                 error "${tfile}_ln different after migration"
12927
12928         diff /etc/passwd $migrate_dir/${tfile}_ln_other ||
12929                 error "${tfile}_ln_other different after migration"
12930
12931         stripe_count=$($LFS getstripe -c $migrate_dir/dir_default_stripe2)
12932         [ $stripe_count = 2 ] ||
12933                 error "dir strpe_count $d != 2 after migration."
12934
12935         stripe_count=$($LFS getstripe -c $migrate_dir/${tfile}_stripe2)
12936         [ $stripe_count = 2 ] ||
12937                 error "file strpe_count $d != 2 after migration."
12938
12939         #migrate back to MDT0
12940         MDTIDX=0
12941
12942         $LFS migrate -m $MDTIDX $migrate_dir ||
12943                 error "fails on migrating remote dir to MDT0"
12944
12945         echo "migrate back to MDT0, checking.."
12946         for file in $(find $migrate_dir); do
12947                 mdt_index=$($LFS getstripe -M $file)
12948                 [ $mdt_index == $MDTIDX ] ||
12949                         error "$file is not on MDT${MDTIDX}"
12950         done
12951
12952         local new_dir_flag=$(lsattr -a $migrate_dir | awk '/\/\.$/ {print $1}')
12953         [ "$old_dir_flag" = "$new_dir_flag" ] ||
12954                 error " expect $old_dir_flag get $new_dir_flag"
12955
12956         local new_file_flag=$(lsattr $migrate_dir/$tfile | awk '{print $1}')
12957         [ "$old_file_flag" = "$new_file_flag" ] ||
12958                 error " expect $old_file_flag get $new_file_flag"
12959
12960         local new_dir_mode=$(stat -c%f $migrate_dir)
12961         [ "$old_dir_mode" = "$new_dir_mode" ] ||
12962                 error "expect mode $old_dir_mode get $new_dir_mode"
12963
12964         local new_file_mode=$(stat -c%f $migrate_dir/$tfile)
12965         [ "$old_file_mode" = "$new_file_mode" ] ||
12966                 error "expect mode $old_file_mode get $new_file_mode"
12967
12968         diff /etc/passwd ${migrate_dir}/$tfile ||
12969                 error "$tfile different after migration"
12970
12971         diff /etc/passwd ${other_dir}/luna ||
12972                 error "luna different after migration"
12973
12974         diff /etc/passwd ${migrate_dir}/sofia ||
12975                 error "sofia different after migration"
12976
12977         diff /etc/passwd ${other_dir}/zachary ||
12978                 error "zachary different after migration"
12979
12980         diff /etc/passwd $migrate_dir/${tfile}_ln ||
12981                 error "${tfile}_ln different after migration"
12982
12983         diff /etc/passwd $migrate_dir/${tfile}_ln_other ||
12984                 error "${tfile}_ln_other different after migration"
12985
12986         stripe_count=$($LFS getstripe -c ${migrate_dir}/dir_default_stripe2)
12987         [ $stripe_count = 2 ] ||
12988                 error "dir strpe_count $d != 2 after migration."
12989
12990         stripe_count=$($LFS getstripe -c ${migrate_dir}/${tfile}_stripe2)
12991         [ $stripe_count = 2 ] ||
12992                 error "file strpe_count $d != 2 after migration."
12993
12994         rm -rf $DIR/$tdir || error "rm dir failed after migration"
12995 }
12996 run_test 230b "migrate directory"
12997
12998 test_230c() {
12999         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13000         remote_mds_nodsh && skip "remote MDS with nodsh" && return
13001         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13002         local MDTIDX=1
13003         local mdt_index
13004         local file
13005         local migrate_dir=$DIR/$tdir/migrate_dir
13006
13007         #If migrating directory fails in the middle, all entries of
13008         #the directory is still accessiable.
13009         test_mkdir $DIR/$tdir
13010         test_mkdir -i0 -c1 $migrate_dir
13011         stat $migrate_dir
13012         createmany -o $migrate_dir/f 10 ||
13013                 error "create files under ${migrate_dir} failed"
13014
13015         #failed after migrating 5 entries
13016         #OBD_FAIL_MIGRATE_ENTRIES       0x1801
13017         do_facet mds1 lctl set_param fail_loc=0x20001801
13018         do_facet mds1 lctl  set_param fail_val=5
13019         local t=$(ls $migrate_dir | wc -l)
13020         $LFS migrate --mdt-index $MDTIDX $migrate_dir &&
13021                 error "migrate should fail after 5 entries"
13022
13023         mkdir $migrate_dir/dir &&
13024                 error "mkdir succeeds under migrating directory"
13025         touch $migrate_dir/file &&
13026                 error "touch file succeeds under migrating directory"
13027
13028         local u=$(ls $migrate_dir | wc -l)
13029         [ "$u" == "$t" ] || error "$u != $t during migration"
13030
13031         for file in $(find $migrate_dir); do
13032                 stat $file || error "stat $file failed"
13033         done
13034
13035         do_facet mds1 lctl set_param fail_loc=0
13036         do_facet mds1 lctl set_param fail_val=0
13037
13038         $LFS migrate -m $MDTIDX $migrate_dir ||
13039                 error "migrate open files should failed with open files"
13040
13041         echo "Finish migration, then checking.."
13042         for file in $(find $migrate_dir); do
13043                 mdt_index=$($LFS getstripe -M $file)
13044                 [ $mdt_index == $MDTIDX ] ||
13045                         error "$file is not on MDT${MDTIDX}"
13046         done
13047
13048         rm -rf $DIR/$tdir || error "rm dir failed after migration"
13049 }
13050 run_test 230c "check directory accessiblity if migration is failed"
13051
13052 test_230d() {
13053         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13054         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13055         local MDTIDX=1
13056         local mdt_index
13057         local migrate_dir=$DIR/$tdir/migrate_dir
13058         local i
13059         local j
13060
13061         test_mkdir $DIR/$tdir
13062         test_mkdir -i0 -c1 $migrate_dir
13063
13064         for ((i=0; i<100; i++)); do
13065                 test_mkdir -i0 -c1 $migrate_dir/dir_${i}
13066                 createmany -o $migrate_dir/dir_${i}/f 100 ||
13067                         error "create files under remote dir failed $i"
13068         done
13069
13070         $LFS migrate -m $MDTIDX $migrate_dir ||
13071                 error "migrate remote dir error"
13072
13073         echo "Finish migration, then checking.."
13074         for file in $(find $migrate_dir); do
13075                 mdt_index=$($LFS getstripe -M $file)
13076                 [ $mdt_index == $MDTIDX ] ||
13077                         error "$file is not on MDT${MDTIDX}"
13078         done
13079
13080         rm -rf $DIR/$tdir || error "rm dir failed after migration"
13081 }
13082 run_test 230d "check migrate big directory"
13083
13084 test_230e() {
13085         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13086         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13087         local i
13088         local j
13089         local a_fid
13090         local b_fid
13091
13092         mkdir -p $DIR/$tdir
13093         mkdir $DIR/$tdir/migrate_dir
13094         mkdir $DIR/$tdir/other_dir
13095         touch $DIR/$tdir/migrate_dir/a
13096         ln $DIR/$tdir/migrate_dir/a $DIR/$tdir/other_dir/b
13097         ls $DIR/$tdir/other_dir
13098
13099         $LFS migrate -m 1 $DIR/$tdir/migrate_dir ||
13100                 error "migrate dir fails"
13101
13102         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir)
13103         [ $mdt_index == 1 ] || error "migrate_dir is not on MDT1"
13104
13105         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir/a)
13106         [ $mdt_index == 0 ] || error "a is not on MDT0"
13107
13108         $LFS migrate -m 1 $DIR/$tdir/other_dir ||
13109                 error "migrate dir fails"
13110
13111         mdt_index=$($LFS getstripe -M $DIR/$tdir/other_dir)
13112         [ $mdt_index == 1 ] || error "other_dir is not on MDT1"
13113
13114         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir/a)
13115         [ $mdt_index == 1 ] || error "a is not on MDT1"
13116
13117         mdt_index=$($LFS getstripe -M $DIR/$tdir/other_dir/b)
13118         [ $mdt_index == 1 ] || error "b is not on MDT1"
13119
13120         a_fid=$($LFS path2fid $DIR/$tdir/migrate_dir/a)
13121         b_fid=$($LFS path2fid $DIR/$tdir/other_dir/b)
13122
13123         [ "$a_fid" = "$b_fid" ] || error "different fid after migration"
13124
13125         rm -rf $DIR/$tdir || error "rm dir failed after migration"
13126 }
13127 run_test 230e "migrate mulitple local link files"
13128
13129 test_230f() {
13130         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13131         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13132         local a_fid
13133         local ln_fid
13134
13135         mkdir -p $DIR/$tdir
13136         mkdir $DIR/$tdir/migrate_dir
13137         $LFS mkdir -i1 $DIR/$tdir/other_dir
13138         touch $DIR/$tdir/migrate_dir/a
13139         ln $DIR/$tdir/migrate_dir/a $DIR/$tdir/other_dir/ln1
13140         ln $DIR/$tdir/migrate_dir/a $DIR/$tdir/other_dir/ln2
13141         ls $DIR/$tdir/other_dir
13142
13143         # a should be migrated to MDT1, since no other links on MDT0
13144         $LFS migrate -m 1 $DIR/$tdir/migrate_dir ||
13145                 error "migrate dir fails"
13146         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir)
13147         [ $mdt_index == 1 ] || error "migrate_dir is not on MDT1"
13148         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir/a)
13149         [ $mdt_index == 1 ] || error "a is not on MDT1"
13150
13151         # a should stay on MDT1, because it is a mulitple link file
13152         $LFS migrate -m 0 $DIR/$tdir/migrate_dir ||
13153                 error "migrate dir fails"
13154         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir/a)
13155         [ $mdt_index == 1 ] || error "a is not on MDT1"
13156
13157         $LFS migrate -m 1 $DIR/$tdir/migrate_dir ||
13158                 error "migrate dir fails"
13159
13160         a_fid=$($LFS path2fid $DIR/$tdir/migrate_dir/a)
13161         ln_fid=$($LFS path2fid $DIR/$tdir/other_dir/ln1)
13162         [ "$a_fid" = "$ln_fid" ] || error "different fid after migrate to MDT1"
13163
13164         rm -rf $DIR/$tdir/other_dir/ln1 || error "unlink ln1 fails"
13165         rm -rf $DIR/$tdir/other_dir/ln2 || error "unlink ln2 fails"
13166
13167         # a should be migrated to MDT0, since no other links on MDT1
13168         $LFS migrate -m 0 $DIR/$tdir/migrate_dir ||
13169                 error "migrate dir fails"
13170         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir/a)
13171         [ $mdt_index == 0 ] || error "a is not on MDT0"
13172
13173         rm -rf $DIR/$tdir || error "rm dir failed after migration"
13174 }
13175 run_test 230f "migrate mulitple remote link files"
13176
13177 test_230g() {
13178         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13179         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13180
13181         mkdir -p $DIR/$tdir/migrate_dir
13182
13183         $LFS migrate -m 1000 $DIR/$tdir/migrate_dir &&
13184                 error "migrating dir to non-exist MDT succeeds"
13185         true
13186 }
13187 run_test 230g "migrate dir to non-exist MDT"
13188
13189 test_230h() {
13190         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13191         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13192         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.64) ] &&
13193                 skip "Need MDS version at least 2.7.64" && return
13194         local mdt_index
13195
13196         mkdir -p $DIR/$tdir/migrate_dir
13197
13198         $LFS migrate -m1 $DIR &&
13199                 error "migrating mountpoint1 should fail"
13200
13201         $LFS migrate -m1 $DIR/$tdir/.. &&
13202                 error "migrating mountpoint2 should fail"
13203
13204         $LFS migrate -m1 $DIR/$tdir/migrate_dir/.. ||
13205                 error "migrating $tdir fail"
13206
13207         mdt_index=$($LFS getstripe -M $DIR/$tdir)
13208         [ $mdt_index == 1 ] || error "$mdt_index != 1 after migration"
13209
13210         mdt_index=$($LFS getstripe -M $DIR/$tdir/migrate_dir)
13211         [ $mdt_index == 1 ] || error "$mdt_index != 1 after migration"
13212
13213 }
13214 run_test 230h "migrate .. and root"
13215
13216 test_230i() {
13217         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13218         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13219
13220         mkdir -p $DIR/$tdir/migrate_dir
13221
13222         $LFS migrate -m 1 $DIR/$tdir/migrate_dir/ ||
13223                 error "migration fails with a tailing slash"
13224
13225         $LFS migrate -m 0 $DIR/$tdir/migrate_dir// ||
13226                 error "migration fails with two tailing slashes"
13227 }
13228 run_test 230i "lfs migrate -m tolerates trailing slashes"
13229
13230 test_231a()
13231 {
13232         # For simplicity this test assumes that max_pages_per_rpc
13233         # is the same across all OSCs
13234         local max_pages=$($LCTL get_param -n osc.*.max_pages_per_rpc | head -n1)
13235         local bulk_size=$((max_pages * 4096))
13236
13237         mkdir -p $DIR/$tdir
13238
13239         # clear the OSC stats
13240         $LCTL set_param osc.*.stats=0 &>/dev/null
13241         stop_writeback
13242
13243         # Client writes $bulk_size - there must be 1 rpc for $max_pages.
13244         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=$bulk_size count=1 \
13245                 oflag=direct &>/dev/null || error "dd failed"
13246
13247         sync; sleep 1; sync # just to be safe
13248         local nrpcs=$($LCTL get_param osc.*.stats |awk '/ost_write/ {print $2}')
13249         if [ x$nrpcs != "x1" ]; then
13250                 $LCTL get_param osc.*.stats
13251                 error "found $nrpcs ost_write RPCs, not 1 as expected"
13252         fi
13253
13254         start_writeback
13255         # Drop the OSC cache, otherwise we will read from it
13256         cancel_lru_locks osc
13257
13258         # clear the OSC stats
13259         $LCTL set_param osc.*.stats=0 &>/dev/null
13260
13261         # Client reads $bulk_size.
13262         dd if=$DIR/$tdir/$tfile of=/dev/null bs=$bulk_size count=1 \
13263                 iflag=direct &>/dev/null || error "dd failed"
13264
13265         nrpcs=$($LCTL get_param osc.*.stats | awk '/ost_read/ { print $2 }')
13266         if [ x$nrpcs != "x1" ]; then
13267                 $LCTL get_param osc.*.stats
13268                 error "found $nrpcs ost_read RPCs, not 1 as expected"
13269         fi
13270 }
13271 run_test 231a "checking that reading/writing of BRW RPC size results in one RPC"
13272
13273 test_231b() {
13274         mkdir -p $DIR/$tdir
13275         local i
13276         for i in {0..1023}; do
13277                 dd if=/dev/zero of=$DIR/$tdir/$tfile conv=notrunc \
13278                         seek=$((2 * i)) bs=4096 count=1 &>/dev/null ||
13279                         error "dd of=$DIR/$tdir/$tfile seek=$((2 * i)) failed"
13280         done
13281         sync
13282 }
13283 run_test 231b "must not assert on fully utilized OST request buffer"
13284
13285 test_232() {
13286         mkdir -p $DIR/$tdir
13287         #define OBD_FAIL_LDLM_OST_LVB            0x31c
13288         $LCTL set_param fail_loc=0x31c
13289
13290         # ignore dd failure
13291         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=1 || true
13292
13293         $LCTL set_param fail_loc=0
13294         umount_client $MOUNT || error "umount failed"
13295         mount_client $MOUNT || error "mount failed"
13296 }
13297 run_test 232 "failed lock should not block umount"
13298
13299 test_233a() {
13300         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.64) ] ||
13301         { skip "Need MDS version at least 2.3.64"; return; }
13302         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
13303
13304         local fid=$($LFS path2fid $MOUNT)
13305         stat $MOUNT/.lustre/fid/$fid > /dev/null ||
13306                 error "cannot access $MOUNT using its FID '$fid'"
13307 }
13308 run_test 233a "checking that OBF of the FS root succeeds"
13309
13310 test_233b() {
13311         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.5.90) ] ||
13312         { skip "Need MDS version at least 2.5.90"; return; }
13313         [ -n "$FILESET" ] && skip "SKIP due to FILESET set" && return
13314
13315         local fid=$($LFS path2fid $MOUNT/.lustre)
13316         stat $MOUNT/.lustre/fid/$fid > /dev/null ||
13317                 error "cannot access $MOUNT/.lustre using its FID '$fid'"
13318
13319         fid=$($LFS path2fid $MOUNT/.lustre/fid)
13320         stat $MOUNT/.lustre/fid/$fid > /dev/null ||
13321                 error "cannot access $MOUNT/.lustre/fid using its FID '$fid'"
13322 }
13323 run_test 233b "checking that OBF of the FS .lustre succeeds"
13324
13325 test_234() {
13326         local p="$TMP/sanityN-$TESTNAME.parameters"
13327         save_lustre_params client "llite.*.xattr_cache" > $p
13328         lctl set_param llite.*.xattr_cache 1 ||
13329                 { skip "xattr cache is not supported"; return 0; }
13330
13331         mkdir -p $DIR/$tdir || error "mkdir failed"
13332         touch $DIR/$tdir/$tfile || error "touch failed"
13333         # OBD_FAIL_LLITE_XATTR_ENOMEM
13334         $LCTL set_param fail_loc=0x1405
13335         # output of the form: attr 2 4 44 3 fc13 x86_64
13336         V=($(IFS=".-" rpm -q attr))
13337         if [[ ${V[1]} > 2 || ${V[2]} > 4 || ${V[3]} > 44 ||
13338               ${V[1]} = 2 && ${V[2]} = 4 && ${V[3]} = 44 && ${V[4]} > 6 ]]; then
13339                 # attr pre-2.4.44-7 had a bug with rc
13340                 # LU-3703 - SLES 11 and FC13 clients have older attr
13341                 getfattr -n user.attr $DIR/$tdir/$tfile &&
13342                         error "getfattr should have failed with ENOMEM"
13343         else
13344                 skip "LU-3703: attr version $(getfattr --version) too old"
13345         fi
13346         $LCTL set_param fail_loc=0x0
13347         rm -rf $DIR/$tdir
13348
13349         restore_lustre_params < $p
13350         rm -f $p
13351 }
13352 run_test 234 "xattr cache should not crash on ENOMEM"
13353
13354 test_235() {
13355         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.52) ] &&
13356                 skip "Need MDS version at least 2.4.52" && return
13357         flock_deadlock $DIR/$tfile
13358         local RC=$?
13359         case $RC in
13360                 0)
13361                 ;;
13362                 124) error "process hangs on a deadlock"
13363                 ;;
13364                 *) error "error executing flock_deadlock $DIR/$tfile"
13365                 ;;
13366         esac
13367 }
13368 run_test 235 "LU-1715: flock deadlock detection does not work properly"
13369
13370 #LU-2935
13371 test_236() {
13372         check_swap_layouts_support && return 0
13373         test_mkdir -p -c1 $DIR/$tdir || error "mkdir $tdir failed"
13374
13375         local ref1=/etc/passwd
13376         local ref2=/etc/group
13377         local file1=$DIR/$tdir/f1
13378         local file2=$DIR/$tdir/f2
13379
13380         $SETSTRIPE -c 1 $file1 || error "cannot setstripe on '$file1': rc = $?"
13381         cp $ref1 $file1 || error "cp $ref1 $file1 failed: rc = $?"
13382         $SETSTRIPE -c 2 $file2 || error "cannot setstripe on '$file2': rc = $?"
13383         cp $ref2 $file2 || error "cp $ref2 $file2 failed: rc = $?"
13384         local fd=$(free_fd)
13385         local cmd="exec $fd<>$file2"
13386         eval $cmd
13387         rm $file2
13388         $LFS swap_layouts $file1 /proc/self/fd/${fd} ||
13389                 error "cannot swap layouts of '$file1' and /proc/self/fd/${fd}"
13390         cmd="exec $fd>&-"
13391         eval $cmd
13392         cmp $ref2 $file1 || error "content compare failed ($ref2 != $file1)"
13393
13394         #cleanup
13395         rm -rf $DIR/$tdir
13396 }
13397 run_test 236 "Layout swap on open unlinked file"
13398
13399 # test to verify file handle related system calls
13400 # (name_to_handle_at/open_by_handle_at)
13401 # The new system calls are supported in glibc >= 2.14.
13402
13403 test_237() {
13404         echo "Test file_handle syscalls" > $DIR/$tfile ||
13405                 error "write failed"
13406         check_fhandle_syscalls $DIR/$tfile ||
13407                 error "check_fhandle_syscalls failed"
13408 }
13409 run_test 237 "Verify name_to_handle_at/open_by_handle_at syscalls"
13410
13411 # LU-4659 linkea consistency
13412 test_238() {
13413         local server_version=$(lustre_version_code $SINGLEMDS)
13414
13415         [[ $server_version -gt $(version_code 2.5.57) ]] ||
13416                 [[ $server_version -gt $(version_code 2.5.1) &&
13417                    $server_version -lt $(version_code 2.5.50) ]] ||
13418                 { skip "Need MDS version at least 2.5.58 or 2.5.2+"; return; }
13419
13420         touch $DIR/$tfile
13421         ln $DIR/$tfile $DIR/$tfile.lnk
13422         touch $DIR/$tfile.new
13423         mv $DIR/$tfile.new $DIR/$tfile
13424         local fid1=$($LFS path2fid $DIR/$tfile)
13425         local fid2=$($LFS path2fid $DIR/$tfile.lnk)
13426         local path1=$($LFS fid2path $FSNAME "$fid1")
13427         [ $tfile == $path1 ] || error "linkea inconsistent: $tfile $fid1 $path1"
13428         local path2=$($LFS fid2path $FSNAME "$fid2")
13429         [ $tfile.lnk == $path2 ] ||
13430                 error "linkea inconsistent: $tfile.lnk $fid2 $path2!"
13431         rm -f $DIR/$tfile*
13432 }
13433 run_test 238 "Verify linkea consistency"
13434
13435 test_239() {
13436         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.5.60) ] &&
13437                 skip "Need MDS version at least 2.5.60" && return
13438         local list=$(comma_list $(mdts_nodes))
13439
13440         mkdir -p $DIR/$tdir
13441         createmany -o $DIR/$tdir/f- 5000
13442         unlinkmany $DIR/$tdir/f- 5000
13443         do_nodes $list "lctl set_param -n osp*.*.sync_changes 1"
13444         changes=$(do_nodes $list "lctl get_param -n osc.*MDT*.sync_changes \
13445                         osc.*MDT*.sync_in_flight" | calc_sum)
13446         [ "$changes" -eq 0 ] || error "$changes not synced"
13447 }
13448 run_test 239 "osp_sync test"
13449
13450 test_239a() { #LU-5297
13451         touch $DIR/$tfile
13452         #define OBD_FAIL_OSP_CHECK_INVALID_REC     0x2100
13453         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x2100
13454         chgrp $RUNAS_GID $DIR/$tfile
13455         wait_delete_completed
13456 }
13457 run_test 239a "process invalid osp sync record correctly"
13458
13459 test_239b() { #LU-5297
13460         touch $DIR/$tfile1
13461         #define OBD_FAIL_OSP_CHECK_ENOMEM     0x2101
13462         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x2101
13463         chgrp $RUNAS_GID $DIR/$tfile1
13464         wait_delete_completed
13465         do_facet $SINGLEMDS $LCTL set_param fail_loc=0
13466         touch $DIR/$tfile2
13467         chgrp $RUNAS_GID $DIR/$tfile2
13468         wait_delete_completed
13469 }
13470 run_test 239b "process osp sync record with ENOMEM error correctly"
13471
13472 test_240() {
13473         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13474
13475         mkdir -p $DIR/$tdir
13476
13477         $LFS mkdir -i 0 $DIR/$tdir/d0 ||
13478                 error "failed to mkdir $DIR/$tdir/d0 on MDT0"
13479         $LFS mkdir -i 1 $DIR/$tdir/d0/d1 ||
13480                 error "failed to mkdir $DIR/$tdir/d0/d1 on MDT1"
13481
13482         umount_client $MOUNT || error "umount failed"
13483         #define OBD_FAIL_TGT_DELAY_CONDITIONAL   0x713
13484         do_facet mds2 lctl set_param fail_loc=0x713 fail_val=1
13485         mount_client $MOUNT || error "failed to mount client"
13486
13487         echo "stat $DIR/$tdir/d0/d1, should not fail/ASSERT"
13488         stat $DIR/$tdir/d0/d1 || error "fail to stat $DIR/$tdir/d0/d1"
13489 }
13490 run_test 240 "race between ldlm enqueue and the connection RPC (no ASSERT)"
13491
13492 test_241_bio() {
13493         for LOOP in $(seq $1); do
13494                 dd if=$DIR/$tfile of=/dev/null bs=40960 count=1 2>/dev/null
13495                 cancel_lru_locks osc || true
13496         done
13497 }
13498
13499 test_241_dio() {
13500         for LOOP in $(seq $1); do
13501                 dd if=$DIR/$tfile of=/dev/null bs=40960 count=1 \
13502                                                 iflag=direct 2>/dev/null
13503         done
13504 }
13505
13506 test_241() {
13507         dd if=/dev/zero of=$DIR/$tfile count=1 bs=40960
13508         ls -la $DIR/$tfile
13509         cancel_lru_locks osc
13510         test_241_bio 1000 &
13511         PID=$!
13512         test_241_dio 1000
13513         wait $PID
13514 }
13515 run_test 241 "bio vs dio"
13516
13517 test_241b() {
13518         dd if=/dev/zero of=$DIR/$tfile count=1 bs=40960
13519         ls -la $DIR/$tfile
13520         test_241_dio 1000 &
13521         PID=$!
13522         test_241_dio 1000
13523         wait $PID
13524 }
13525 run_test 241b "dio vs dio"
13526
13527 test_242() {
13528         mkdir -p $DIR/$tdir
13529         touch $DIR/$tdir/$tfile
13530
13531         #define OBD_FAIL_MDS_READPAGE_PACK      0x105
13532         do_facet mds1 lctl set_param fail_loc=0x105
13533         /bin/ls $DIR/$tdir && error "ls $DIR/$tdir should fail"
13534
13535         do_facet mds1 lctl set_param fail_loc=0
13536         /bin/ls $DIR/$tdir || error "ls $DIR/$tdir failed"
13537 }
13538 run_test 242 "mdt_readpage failure should not cause directory unreadable"
13539
13540 test_243()
13541 {
13542         test_mkdir -p $DIR/$tdir
13543         group_lock_test -d $DIR/$tdir || error "A group lock test failed"
13544 }
13545 run_test 243 "various group lock tests"
13546
13547 test_244()
13548 {
13549         test_mkdir -p $DIR/$tdir
13550         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=35
13551         sendfile_grouplock $DIR/$tdir/$tfile || \
13552                 error "sendfile+grouplock failed"
13553         rm -rf $DIR/$tdir
13554 }
13555 run_test 244 "sendfile with group lock tests"
13556
13557 test_245() {
13558         local flagname="multi_mod_rpcs"
13559         local connect_data_name="max_mod_rpcs"
13560         local out
13561
13562         # check if multiple modify RPCs flag is set
13563         out=$($LCTL get_param mdc.$FSNAME-MDT0000-*.import |
13564                 grep "connect_flags:")
13565         echo "$out"
13566
13567         echo "$out" | grep -qw $flagname
13568         if [ $? -ne 0 ]; then
13569                 echo "connect flag $flagname is not set"
13570                 return
13571         fi
13572
13573         # check if multiple modify RPCs data is set
13574         out=$($LCTL get_param mdc.$FSNAME-MDT0000-*.import)
13575         echo "$out"
13576
13577         echo "$out" | grep -qw $connect_data_name ||
13578                 error "import should have connect data $connect_data_name"
13579 }
13580 run_test 245 "check mdc connection flag/data: multiple modify RPCs"
13581
13582 test_246() { # LU-7371
13583         [ $(lustre_version_code ost1) -lt $(version_code 2.7.62) ] &&
13584                 skip "Need OST version >= 2.7.62" && return 0
13585         do_facet ost1 $LCTL set_param fail_val=4095
13586 #define OBD_FAIL_OST_READ_SIZE          0x234
13587         do_facet ost1 $LCTL set_param fail_loc=0x234
13588         $LFS setstripe $DIR/$tfile -i 0 -c 1
13589         dd if=/dev/zero of=$DIR/$tfile bs=4095 count=1 > /dev/null 2>&1
13590         cancel_lru_locks $FSNAME-OST0000
13591         dd if=$DIR/$tfile of=/dev/null bs=1048576 || error "Read failed"
13592 }
13593 run_test 246 "Read file of size 4095 should return right length"
13594
13595 test_247a() {
13596         lctl get_param -n mdc.$FSNAME-MDT0000*.import |
13597                 grep -q subtree ||
13598                 { skip "Fileset feature is not supported"; return; }
13599
13600         local submount=${MOUNT}_$tdir
13601
13602         mkdir $MOUNT/$tdir
13603         mkdir -p $submount || error "mkdir $submount failed"
13604         FILESET="$FILESET/$tdir" mount_client $submount ||
13605                 error "mount $submount failed"
13606         echo foo > $submount/$tfile || error "write $submount/$tfile failed"
13607         [ $(cat $MOUNT/$tdir/$tfile) = "foo" ] ||
13608                 error "read $MOUNT/$tdir/$tfile failed"
13609         umount_client $submount || error "umount $submount failed"
13610         rmdir $submount
13611 }
13612 run_test 247a "mount subdir as fileset"
13613
13614 test_247b() {
13615         lctl get_param -n mdc.$FSNAME-MDT0000*.import | grep -q subtree ||
13616                 { skip "Fileset feature is not supported"; return; }
13617
13618         local submount=${MOUNT}_$tdir
13619
13620         rm -rf $MOUNT/$tdir
13621         mkdir -p $submount || error "mkdir $submount failed"
13622         SKIP_FILESET=1
13623         FILESET="$FILESET/$tdir" mount_client $submount &&
13624                 error "mount $submount should fail"
13625         rmdir $submount
13626 }
13627 run_test 247b "mount subdir that dose not exist"
13628
13629 test_247c() {
13630         lctl get_param -n mdc.$FSNAME-MDT0000*.import | grep -q subtree ||
13631                 { skip "Fileset feature is not supported"; return; }
13632
13633         local submount=${MOUNT}_$tdir
13634
13635         mkdir -p $MOUNT/$tdir/dir1
13636         mkdir -p $submount || error "mkdir $submount failed"
13637         FILESET="$FILESET/$tdir" mount_client $submount ||
13638                 error "mount $submount failed"
13639         local fid=$($LFS path2fid $MOUNT/)
13640         $LFS fid2path $submount $fid && error "fid2path should fail"
13641         umount_client $submount || error "umount $submount failed"
13642         rmdir $submount
13643 }
13644 run_test 247c "running fid2path outside root"
13645
13646 test_247d() {
13647         lctl get_param -n mdc.$FSNAME-MDT0000*.import | grep -q subtree ||
13648                 { skip "Fileset feature is not supported"; return; }
13649
13650         local submount=${MOUNT}_$tdir
13651
13652         mkdir -p $MOUNT/$tdir/dir1
13653         mkdir -p $submount || error "mkdir $submount failed"
13654         FILESET="$FILESET/$tdir" mount_client $submount ||
13655                 error "mount $submount failed"
13656         local fid=$($LFS path2fid $submount/dir1)
13657         $LFS fid2path $submount $fid || error "fid2path should succeed"
13658         umount_client $submount || error "umount $submount failed"
13659         rmdir $submount
13660 }
13661 run_test 247d "running fid2path inside root"
13662
13663 # LU-8037
13664 test_247e() {
13665         lctl get_param -n mdc.$FSNAME-MDT0000*.import |
13666                 grep -q subtree ||
13667                 { skip "Fileset feature is not supported"; return; }
13668
13669         local submount=${MOUNT}_$tdir
13670
13671         mkdir $MOUNT/$tdir
13672         mkdir -p $submount || error "mkdir $submount failed"
13673         FILESET="$FILESET/.." mount_client $submount &&
13674                 error "mount $submount should fail"
13675         rmdir $submount
13676 }
13677 run_test 247e "mount .. as fileset"
13678
13679 test_250() {
13680         [ "$(facet_fstype ost$(($($GETSTRIPE -i $DIR/$tfile) + 1)))" = "zfs" ] \
13681          && skip "no 16TB file size limit on ZFS" && return
13682
13683         $SETSTRIPE -c 1 $DIR/$tfile
13684         # ldiskfs extent file size limit is (16TB - 4KB - 1) bytes
13685         local size=$((16 * 1024 * 1024 * 1024 * 1024 - 4096 - 1))
13686         $TRUNCATE $DIR/$tfile $size || error "truncate $tfile to $size failed"
13687         dd if=/dev/zero of=$DIR/$tfile bs=10 count=1 oflag=append \
13688                 conv=notrunc,fsync && error "append succeeded"
13689         return 0
13690 }
13691 run_test 250 "Write above 16T limit"
13692
13693 test_251() {
13694         $SETSTRIPE -c -1 -S 1048576 $DIR/$tfile
13695
13696         #define OBD_FAIL_LLITE_LOST_LAYOUT 0x1407
13697         #Skip once - writing the first stripe will succeed
13698         $LCTL set_param fail_loc=0xa0001407 fail_val=1
13699         $MULTIOP $DIR/$tfile o:O_RDWR:w2097152c 2>&1 | grep -q "short write" &&
13700                 error "short write happened"
13701
13702         $LCTL set_param fail_loc=0xa0001407 fail_val=1
13703         $MULTIOP $DIR/$tfile or2097152c 2>&1 | grep -q "short read" &&
13704                 error "short read happened"
13705
13706         rm -f $DIR/$tfile
13707 }
13708 run_test 251 "Handling short read and write correctly"
13709
13710 test_252() {
13711         local tgt
13712         local dev
13713         local out
13714         local uuid
13715         local num
13716         local gen
13717
13718         if [ "$(facet_fstype ost1)" != "ldiskfs" -o \
13719              "$(facet_fstype mds1)" != "ldiskfs" ]; then
13720                 skip "can only run lr_reader on ldiskfs target"
13721                 return
13722         fi
13723
13724         # check lr_reader on OST0000
13725         tgt=ost1
13726         dev=$(facet_device $tgt)
13727         out=$(do_facet $tgt $LR_READER $dev)
13728         [ $? -eq 0 ] || error "$LR_READER failed on target $tgt device $dev"
13729         echo "$out"
13730         uuid=$(echo "$out" | grep -i uuid | awk '{ print $2 }')
13731         [ "$uuid" == "$(ostuuid_from_index 0)" ] ||
13732                 error "Invalid uuid returned by $LR_READER on target $tgt"
13733         echo -e "uuid returned by $LR_READER is '$uuid'\n"
13734
13735         # check lr_reader -c on MDT0000
13736         tgt=mds1
13737         dev=$(facet_device $tgt)
13738         if ! do_facet $tgt $LR_READER -h | grep -q OPTIONS; then
13739                 echo "$LR_READER does not support additional options"
13740                 return 0
13741         fi
13742         out=$(do_facet $tgt $LR_READER -c $dev)
13743         [ $? -eq 0 ] || error "$LR_READER failed on target $tgt device $dev"
13744         echo "$out"
13745         num=$(echo "$out" | grep -c "mdtlov")
13746         [ "$num" -eq $((MDSCOUNT - 1)) ] ||
13747                 error "Invalid number of mdtlov clients returned by $LR_READER"
13748         echo -e "Number of mdtlov clients returned by $LR_READER is '$num'\n"
13749
13750         # check lr_reader -cr on MDT0000
13751         out=$(do_facet $tgt $LR_READER -cr $dev)
13752         [ $? -eq 0 ] || error "$LR_READER failed on target $tgt device $dev"
13753         echo "$out"
13754         echo "$out" | grep -q "^reply_data:$" ||
13755                 error "$LR_READER should have returned 'reply_data' section"
13756         num=$(echo "$out" | grep -c "client_generation")
13757         echo -e "Number of reply data returned by $LR_READER is '$num'\n"
13758 }
13759 run_test 252 "check lr_reader tool"
13760
13761 test_254() {
13762         local cl_user
13763
13764         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13765         remote_mds_nodsh && skip "remote MDS with nodsh" && return
13766         do_facet mds1 $LCTL get_param -n mdd.$MDT0.changelog_size ||
13767                 { skip "MDS does not support changelog_size" && return; }
13768
13769         cl_user=$(do_facet mds1 $LCTL --device $MDT0 changelog_register -n)
13770         echo "Registered as changelog user $cl_user"
13771
13772         $LFS changelog_clear $MDT0 $cl_user 0
13773
13774         local size1=$(do_facet mds1 \
13775                       $LCTL get_param -n mdd.$MDT0.changelog_size)
13776         echo "Changelog size $size1"
13777
13778         rm -rf $DIR/$tdir
13779         $LFS mkdir -i 0 $DIR/$tdir
13780         # change something
13781         mkdir -p $DIR/$tdir/pics/2008/zachy
13782         touch $DIR/$tdir/pics/2008/zachy/timestamp
13783         cp /etc/hosts $DIR/$tdir/pics/2008/zachy/pic1.jpg
13784         mv $DIR/$tdir/pics/2008/zachy $DIR/$tdir/pics/zach
13785         ln $DIR/$tdir/pics/zach/pic1.jpg $DIR/$tdir/pics/2008/portland.jpg
13786         ln -s $DIR/$tdir/pics/2008/portland.jpg $DIR/$tdir/pics/desktop.jpg
13787         rm $DIR/$tdir/pics/desktop.jpg
13788
13789         local size2=$(do_facet mds1 \
13790                       $LCTL get_param -n mdd.$MDT0.changelog_size)
13791         echo "Changelog size after work $size2"
13792
13793         do_facet mds1 $LCTL --device $MDT0 changelog_deregister $cl_user
13794
13795         if (( size2 <= size1 )); then
13796                 error "Changelog size after work should be greater than original"
13797         fi
13798         return 0
13799 }
13800 run_test 254 "Check changelog size"
13801
13802 test_256() {
13803         local cl_user
13804         local cat_sl
13805         local mdt_dev
13806
13807         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13808         remote_mds_nodsh && skip "remote MDS with nodsh" && return
13809         [ "$(facet_fstype mds1)" != "ldiskfs" ] &&
13810                 skip "non-ldiskfs backend" && return
13811
13812         mdt_dev=$(mdsdevname 1)
13813         echo $mdt_dev
13814         cl_user=$(do_facet mds1 \
13815         "$LCTL get_param -n mdd.$MDT0.changelog_users | grep cl")
13816         if [[ -n $cl_user ]]; then
13817                 skip "active changelog user"
13818                 return
13819         fi
13820
13821         cl_user=$(do_facet mds1 $LCTL --device $MDT0 changelog_register -n)
13822         echo "Registered as changelog user $cl_user"
13823
13824         rm -rf $DIR/$tdir
13825         mkdir -p $DIR/$tdir
13826
13827         $LFS changelog_clear $MDT0 $cl_user 0
13828
13829         # change something
13830         touch $DIR/$tdir/{1..10}
13831
13832         # stop the MDT
13833         stop mds1 || error "Fail to stop MDT."
13834
13835         # remount the MDT
13836         start mds1 $mdt_dev $MDS_MOUNT_OPTS || error "Fail to start MDT."
13837
13838         #after mount new plainllog is used
13839         touch $DIR/$tdir/{11..19}
13840         cat_sl=$(do_facet mds1 \
13841         "$DEBUGFS -R \\\"dump changelog_catalog cat.dmp\\\" $mdt_dev; \
13842          llog_reader cat.dmp | grep \\\"type=1064553b\\\" | wc -l")
13843
13844         if (( cat_sl != 2 )); then
13845                 do_facet mds1 $LCTL --device $MDT0 changelog_deregister $cl_user
13846                 error "Changelog catalog has wrong number of slots $cat_sl"
13847         fi
13848
13849         $LFS changelog_clear $MDT0 $cl_user 0
13850
13851         cat_sl=$(do_facet mds1 \
13852         "$DEBUGFS -R \\\"dump changelog_catalog cat.dmp\\\" $mdt_dev; \
13853          llog_reader cat.dmp | grep \\\"type=1064553b\\\" | wc -l")
13854
13855         do_facet mds1 $LCTL --device $MDT0 changelog_deregister $cl_user
13856
13857         if (( cat_sl == 2 )); then
13858                 error "Empty plain llog was not deleted from changelog catalog"
13859         fi
13860         if (( cat_sl != 1 )); then
13861                 error "Active plain llog shouldn\`t be deleted from catalog"
13862         fi
13863 }
13864 run_test 256 "Check llog delete for empty and not full state"
13865
13866 cleanup_test_300() {
13867         trap 0
13868         umask $SAVE_UMASK
13869 }
13870 test_striped_dir() {
13871         local mdt_index=$1
13872         local stripe_count
13873         local stripe_index
13874
13875         mkdir -p $DIR/$tdir
13876
13877         SAVE_UMASK=$(umask)
13878         trap cleanup_test_300 RETURN EXIT
13879
13880         $LFS setdirstripe -i $mdt_index -c 2 -t all_char -m 755 \
13881                                                 $DIR/$tdir/striped_dir ||
13882                 error "set striped dir error"
13883
13884         local mode=$(stat -c%a $DIR/$tdir/striped_dir)
13885         [ "$mode" = "755" ] || error "expect 755 got $mode"
13886
13887         $LFS getdirstripe $DIR/$tdir/striped_dir > /dev/null 2>&1 ||
13888                 error "getdirstripe failed"
13889         stripe_count=$($LFS getdirstripe -c $DIR/$tdir/striped_dir)
13890         if [ "$stripe_count" != "2" ]; then
13891                 error "stripe_count is $stripe_count, expect 2"
13892         fi
13893
13894         stripe_index=$($LFS getdirstripe -i $DIR/$tdir/striped_dir)
13895         if [ "$stripe_index" != "$mdt_index" ]; then
13896                 error "stripe_index is $stripe_index, expect $mdt_index"
13897         fi
13898
13899         [ $(stat -c%h $DIR/$tdir/striped_dir) == '2' ] ||
13900                 error "nlink error after create striped dir"
13901
13902         mkdir $DIR/$tdir/striped_dir/a
13903         mkdir $DIR/$tdir/striped_dir/b
13904
13905         stat $DIR/$tdir/striped_dir/a ||
13906                 error "create dir under striped dir failed"
13907         stat $DIR/$tdir/striped_dir/b ||
13908                 error "create dir under striped dir failed"
13909
13910         [ $(stat -c%h $DIR/$tdir/striped_dir) == '4' ] ||
13911                 error "nlink error after mkdir"
13912
13913         rmdir $DIR/$tdir/striped_dir/a
13914         [ $(stat -c%h $DIR/$tdir/striped_dir) == '3' ] ||
13915                 error "nlink error after rmdir"
13916
13917         rmdir $DIR/$tdir/striped_dir/b
13918         [ $(stat -c%h $DIR/$tdir/striped_dir) == '2' ] ||
13919                 error "nlink error after rmdir"
13920
13921         chattr +i $DIR/$tdir/striped_dir
13922         createmany -o $DIR/$tdir/striped_dir/f 10 &&
13923                 error "immutable flags not working under striped dir!"
13924         chattr -i $DIR/$tdir/striped_dir
13925
13926         rmdir $DIR/$tdir/striped_dir ||
13927                 error "rmdir striped dir error"
13928
13929         cleanup_test_300
13930
13931         true
13932 }
13933
13934 test_300a() {
13935         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.0) ] &&
13936                 skip "skipped for lustre < 2.7.0" && return
13937         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13938         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13939
13940         test_striped_dir 0 || error "failed on striped dir on MDT0"
13941         test_striped_dir 1 || error "failed on striped dir on MDT0"
13942 }
13943 run_test 300a "basic striped dir sanity test"
13944
13945 test_300b() {
13946         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.0) ] &&
13947                 skip "skipped for lustre < 2.7.0" && return
13948         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13949         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13950         local i
13951         local mtime1
13952         local mtime2
13953         local mtime3
13954
13955         test_mkdir $DIR/$tdir || error "mkdir fail"
13956         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir ||
13957                 error "set striped dir error"
13958         for ((i=0; i<10; i++)); do
13959                 mtime1=$(stat -c %Y $DIR/$tdir/striped_dir)
13960                 sleep 1
13961                 touch $DIR/$tdir/striped_dir/file_$i ||
13962                                         error "touch error $i"
13963                 mtime2=$(stat -c %Y $DIR/$tdir/striped_dir)
13964                 [ $mtime1 -eq $mtime2 ] &&
13965                         error "mtime not change after create"
13966                 sleep 1
13967                 rm -f $DIR/$tdir/striped_dir/file_$i ||
13968                                         error "unlink error $i"
13969                 mtime3=$(stat -c %Y $DIR/$tdir/striped_dir)
13970                 [ $mtime2 -eq $mtime3 ] &&
13971                         error "mtime did not change after unlink"
13972         done
13973         true
13974 }
13975 run_test 300b "check ctime/mtime for striped dir"
13976
13977 test_300c() {
13978         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.0) ] &&
13979                 skip "skipped for lustre < 2.7.0" && return
13980         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13981         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13982         local file_count
13983
13984         mkdir -p $DIR/$tdir
13985         $LFS setdirstripe -i 0 -c 2 $DIR/$tdir/striped_dir ||
13986                 error "set striped dir error"
13987
13988         chown $RUNAS_ID:$RUNAS_GID $DIR/$tdir/striped_dir ||
13989                 error "chown striped dir failed"
13990
13991         $RUNAS createmany -o $DIR/$tdir/striped_dir/f 5000 ||
13992                 error "create 5k files failed"
13993
13994         file_count=$(ls $DIR/$tdir/striped_dir | wc -l)
13995
13996         [ "$file_count" = 5000 ] || error "file count $file_count != 5000"
13997
13998         rm -rf $DIR/$tdir
13999 }
14000 run_test 300c "chown && check ls under striped directory"
14001
14002 test_300d() {
14003         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.0) ] &&
14004                 skip "skipped for lustre < 2.7.0" && return
14005         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14006         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
14007         local stripe_count
14008         local file
14009
14010         mkdir -p $DIR/$tdir
14011         $SETSTRIPE -c 2 $DIR/$tdir
14012
14013         #local striped directory
14014         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir ||
14015                 error "set striped dir error"
14016         createmany -o $DIR/$tdir/striped_dir/f 10 ||
14017                 error "create 10 files failed"
14018
14019         #remote striped directory
14020         $LFS setdirstripe -i 1 -c 2 $DIR/$tdir/remote_striped_dir ||
14021                 error "set striped dir error"
14022         createmany -o $DIR/$tdir/remote_striped_dir/f 10 ||
14023                 error "create 10 files failed"
14024
14025         for file in $(find $DIR/$tdir); do
14026                 stripe_count=$($GETSTRIPE -c $file)
14027                 [ $stripe_count -eq 2 ] ||
14028                         error "wrong stripe $stripe_count for $file"
14029         done
14030
14031         rm -rf $DIR/$tdir
14032 }
14033 run_test 300d "check default stripe under striped directory"
14034
14035 test_300e() {
14036         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
14037                 skip "Need MDS version at least 2.7.55" && return
14038         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14039         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
14040         local stripe_count
14041         local file
14042
14043         mkdir -p $DIR/$tdir
14044
14045         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir ||
14046                 error "set striped dir error"
14047
14048         touch $DIR/$tdir/striped_dir/a
14049         touch $DIR/$tdir/striped_dir/b
14050         touch $DIR/$tdir/striped_dir/c
14051
14052         mkdir $DIR/$tdir/striped_dir/dir_a
14053         mkdir $DIR/$tdir/striped_dir/dir_b
14054         mkdir $DIR/$tdir/striped_dir/dir_c
14055
14056         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir/stp_a ||
14057                 error "set striped dir under striped dir error"
14058
14059         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir/stp_b ||
14060                 error "set striped dir under striped dir error"
14061
14062         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir/stp_c ||
14063                 error "set striped dir under striped dir error"
14064
14065         mrename $DIR/$tdir/striped_dir/dir_a $DIR/$tdir/striped_dir/dir_b ||
14066                 error "rename dir under striped dir fails"
14067
14068         mrename $DIR/$tdir/striped_dir/stp_a $DIR/$tdir/striped_dir/stp_b ||
14069                 error "rename dir under different stripes fails"
14070
14071         mrename $DIR/$tdir/striped_dir/a $DIR/$tdir/striped_dir/c ||
14072                 error "rename file under striped dir should succeed"
14073
14074         mrename $DIR/$tdir/striped_dir/dir_b $DIR/$tdir/striped_dir/dir_c ||
14075                 error "rename dir under striped dir should succeed"
14076
14077         rm -rf $DIR/$tdir
14078 }
14079 run_test 300e "check rename under striped directory"
14080
14081 test_300f() {
14082         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
14083                 skip "Need MDS version at least 2.7.55" && return
14084         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14085         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
14086         local stripe_count
14087         local file
14088
14089         rm -rf $DIR/$tdir
14090         mkdir -p $DIR/$tdir
14091
14092         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir ||
14093                 error "set striped dir error"
14094
14095         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir1 ||
14096                 error "set striped dir error"
14097
14098         touch $DIR/$tdir/striped_dir/a
14099         mkdir $DIR/$tdir/striped_dir/dir_a
14100         $LFS setdirstripe -i 0 -c 2 $DIR/$tdir/striped_dir/stp_a ||
14101                 error "create striped dir under striped dir fails"
14102
14103         touch $DIR/$tdir/striped_dir1/b
14104         mkdir $DIR/$tdir/striped_dir1/dir_b
14105         $LFS setdirstripe -i 0 -c 2 $DIR/$tdir/striped_dir/stp_b ||
14106                 error "create striped dir under striped dir fails"
14107
14108         mrename $DIR/$tdir/striped_dir/dir_a $DIR/$tdir/striped_dir1/dir_b ||
14109                 error "rename dir under different striped dir should fail"
14110
14111         mrename $DIR/$tdir/striped_dir/stp_a $DIR/$tdir/striped_dir1/stp_b ||
14112                 error "rename striped dir under diff striped dir should fail"
14113
14114         mrename $DIR/$tdir/striped_dir/a $DIR/$tdir/striped_dir1/a ||
14115                 error "rename file under diff striped dirs fails"
14116
14117         rm -rf $DIR/$tdir
14118 }
14119 run_test 300f "check rename cross striped directory"
14120
14121 test_300_check_default_striped_dir()
14122 {
14123         local dirname=$1
14124         local default_count=$2
14125         local default_index=$3
14126         local stripe_count
14127         local stripe_index
14128         local dir_stripe_index
14129         local dir
14130
14131         echo "checking $dirname $default_count $default_index"
14132         $LFS setdirstripe -D -c $default_count -i $default_index \
14133                                 -t all_char $DIR/$tdir/$dirname ||
14134                 error "set default stripe on striped dir error"
14135         stripe_count=$($LFS getdirstripe -D -c $DIR/$tdir/$dirname)
14136         [ $stripe_count -eq $default_count ] ||
14137                 error "expect $default_count get $stripe_count for $dirname"
14138
14139         stripe_index=$($LFS getdirstripe -D -i $DIR/$tdir/$dirname)
14140         [ $stripe_index -eq $default_index ] ||
14141                 error "expect $default_index get $stripe_index for $dirname"
14142
14143         mkdir $DIR/$tdir/$dirname/{test1,test2,test3,test4} ||
14144                                                 error "create dirs failed"
14145
14146         createmany -o $DIR/$tdir/$dirname/f- 10 || error "create files failed"
14147         unlinkmany $DIR/$tdir/$dirname/f- 10    || error "unlink files failed"
14148         for dir in $(find $DIR/$tdir/$dirname/*); do
14149                 stripe_count=$($LFS getdirstripe -c $dir)
14150                 [ $stripe_count -eq $default_count ] ||
14151                 [ $stripe_count -eq 0 -o $default_count -eq 1 ] ||
14152                 error "stripe count $default_count != $stripe_count for $dir"
14153
14154                 stripe_index=$($LFS getdirstripe -i $dir)
14155                 [ $default_index -eq -1 -o $stripe_index -eq $default_index ] ||
14156                         error "$stripe_index != $default_index for $dir"
14157
14158                 #check default stripe
14159                 stripe_count=$($LFS getdirstripe -D -c $dir)
14160                 [ $stripe_count -eq $default_count ] ||
14161                 error "default count $default_count != $stripe_count for $dir"
14162
14163                 stripe_index=$($LFS getdirstripe -D -i $dir)
14164                 [ $stripe_index -eq $default_index ] ||
14165                 error "default index $default_index != $stripe_index for $dir"
14166         done
14167         rmdir $DIR/$tdir/$dirname/* || error "rmdir failed"
14168 }
14169
14170 test_300g() {
14171         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
14172                 skip "Need MDS version at least 2.7.55" && return
14173         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
14174         local dir
14175         local stripe_count
14176         local stripe_index
14177
14178         mkdir $DIR/$tdir
14179         mkdir $DIR/$tdir/normal_dir
14180
14181         test_300_check_default_striped_dir normal_dir $MDSCOUNT 1
14182         test_300_check_default_striped_dir normal_dir 1 0
14183         test_300_check_default_striped_dir normal_dir 2 1
14184         test_300_check_default_striped_dir normal_dir 2 -1
14185
14186         #delete default stripe information
14187         echo "delete default stripeEA"
14188         $LFS setdirstripe -d $DIR/$tdir/normal_dir ||
14189                 error "set default stripe on striped dir error"
14190
14191         mkdir -p $DIR/$tdir/normal_dir/{test1,test2,test3,test4}
14192         for dir in $(find $DIR/$tdir/normal_dir/*); do
14193                 stripe_count=$($LFS getdirstripe -c $dir)
14194                 [ $stripe_count -eq 0 ] ||
14195                         error "expect 1 get $stripe_count for $dir"
14196                 stripe_index=$($LFS getdirstripe -i $dir)
14197                 [ $stripe_index -eq 0 ] ||
14198                         error "expect 0 get $stripe_index for $dir"
14199         done
14200 }
14201 run_test 300g "check default striped directory for normal directory"
14202
14203 test_300h() {
14204         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
14205                 skip "Need MDS version at least 2.7.55" && return
14206         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
14207         local dir
14208         local stripe_count
14209
14210         mkdir $DIR/$tdir
14211         $LFS setdirstripe -i 0 -c $MDSCOUNT -t all_char \
14212                                         $DIR/$tdir/striped_dir ||
14213                 error "set striped dir error"
14214
14215         test_300_check_default_striped_dir striped_dir $MDSCOUNT 1
14216         test_300_check_default_striped_dir striped_dir 1 0
14217         test_300_check_default_striped_dir striped_dir 2 1
14218         test_300_check_default_striped_dir striped_dir 2 -1
14219
14220         #delete default stripe information
14221         $LFS setdirstripe -d $DIR/$tdir/striped_dir ||
14222                 error "set default stripe on striped dir error"
14223
14224         mkdir -p $DIR/$tdir/striped_dir/{test1,test2,test3,test4}
14225         for dir in $(find $DIR/$tdir/striped_dir/*); do
14226                 stripe_count=$($LFS getdirstripe -c $dir)
14227                 [ $stripe_count -eq 0 ] ||
14228                         error "expect 1 get $stripe_count for $dir"
14229         done
14230 }
14231 run_test 300h "check default striped directory for striped directory"
14232
14233 test_300i() {
14234         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
14235                 skip "Need MDS version at least 2.7.55" && return
14236         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14237         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
14238         local stripe_count
14239         local file
14240
14241         mkdir $DIR/$tdir
14242
14243         $LFS setdirstripe -i 0 -c$MDSCOUNT -t all_char $DIR/$tdir/striped_dir ||
14244                 error "set striped dir error"
14245
14246         createmany -o $DIR/$tdir/striped_dir/f- 10 ||
14247                 error "create files under striped dir failed"
14248
14249         # unfortunately, we need to umount to clear dir layout cache for now
14250         # once we fully implement dir layout, we can drop this
14251         umount_client $MOUNT || error "umount failed"
14252         mount_client $MOUNT || error "mount failed"
14253
14254         #set the stripe to be unknown hash type
14255         #define OBD_FAIL_UNKNOWN_LMV_STRIPE     0x1901
14256         $LCTL set_param fail_loc=0x1901
14257         for ((i = 0; i < 10; i++)); do
14258                 $CHECKSTAT -t file $DIR/$tdir/striped_dir/f-$i ||
14259                         error "stat f-$i failed"
14260                 rm $DIR/$tdir/striped_dir/f-$i || error "unlink f-$i failed"
14261         done
14262
14263         touch $DIR/$tdir/striped_dir/f0 &&
14264                 error "create under striped dir with unknown hash should fail"
14265
14266         $LCTL set_param fail_loc=0
14267
14268         umount_client $MOUNT || error "umount failed"
14269         mount_client $MOUNT || error "mount failed"
14270
14271         return 0
14272 }
14273 run_test 300i "client handle unknown hash type striped directory"
14274
14275 test_300j() {
14276         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14277         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
14278                 skip "Need MDS version at least 2.7.55" && return
14279         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
14280         local stripe_count
14281         local file
14282
14283         mkdir $DIR/$tdir
14284
14285         #define OBD_FAIL_SPLIT_UPDATE_REC       0x1702
14286         $LCTL set_param fail_loc=0x1702
14287         $LFS setdirstripe -i 0 -c$MDSCOUNT -t all_char $DIR/$tdir/striped_dir ||
14288                 error "set striped dir error"
14289
14290         createmany -o $DIR/$tdir/striped_dir/f- 10 ||
14291                 error "create files under striped dir failed"
14292
14293         $LCTL set_param fail_loc=0
14294
14295         rm -rf $DIR/$tdir || error "unlink striped dir fails"
14296
14297         return 0
14298 }
14299 run_test 300j "test large update record"
14300
14301 test_300k() {
14302         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
14303                 skip "Need MDS version at least 2.7.55" && return
14304         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14305         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
14306         local stripe_count
14307         local file
14308
14309         mkdir $DIR/$tdir
14310
14311         #define OBD_FAIL_LARGE_STRIPE   0x1703
14312         $LCTL set_param fail_loc=0x1703
14313         $LFS setdirstripe -i 0 -c512 $DIR/$tdir/striped_dir ||
14314                 error "set striped dir error"
14315         $LCTL set_param fail_loc=0
14316
14317         $LFS getdirstripe $DIR/$tdir/striped_dir ||
14318                 error "getstripeddir fails"
14319         rm -rf $DIR/$tdir/striped_dir ||
14320                 error "unlink striped dir fails"
14321
14322         return 0
14323 }
14324 run_test 300k "test large striped directory"
14325
14326 test_300l() {
14327         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
14328                 skip "Need MDS version at least 2.7.55" && return
14329         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14330         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
14331         local stripe_index
14332
14333         test_mkdir -p $DIR/$tdir/striped_dir
14334         chown $RUNAS_ID $DIR/$tdir/striped_dir ||
14335                         error "chown $RUNAS_ID failed"
14336         $LFS setdirstripe -i 1 -D $DIR/$tdir/striped_dir ||
14337                 error "set default striped dir failed"
14338
14339         #define OBD_FAIL_MDS_STALE_DIR_LAYOUT    0x158
14340         $LCTL set_param fail_loc=0x80000158
14341         $RUNAS mkdir $DIR/$tdir/striped_dir/test_dir || error "create dir fails"
14342
14343         stripe_index=$($LFS getdirstripe -i $DIR/$tdir/striped_dir/test_dir)
14344         [ $stripe_index -eq 1 ] ||
14345                 error "expect 1 get $stripe_index for $dir"
14346 }
14347 run_test 300l "non-root user to create dir under striped dir with stale layout"
14348
14349 test_300m() {
14350         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
14351                 skip "Need MDS version at least 2.7.55" && return
14352         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14353         [ $MDSCOUNT -ge 2 ] && skip "Only for single MDT" && return
14354
14355         mkdir -p $DIR/$tdir/striped_dir
14356         $LFS setdirstripe -D -c 1 $DIR/$tdir/striped_dir ||
14357                 error "set default stripes dir error"
14358
14359         mkdir $DIR/$tdir/striped_dir/a || error "mkdir a fails"
14360
14361         stripe_count=$($LFS getdirstripe -c $DIR/$tdir/striped_dir/a)
14362         [ $stripe_count -eq 0 ] ||
14363                         error "expect 0 get $stripe_count for a"
14364
14365         $LFS setdirstripe -D -c 2 $DIR/$tdir/striped_dir ||
14366                 error "set default stripes dir error"
14367
14368         mkdir $DIR/$tdir/striped_dir/b || error "mkdir b fails"
14369
14370         stripe_count=$($LFS getdirstripe -c $DIR/$tdir/striped_dir/b)
14371         [ $stripe_count -eq 0 ] ||
14372                         error "expect 0 get $stripe_count for b"
14373
14374         $LFS setdirstripe -D -c1 -i2 $DIR/$tdir/striped_dir ||
14375                 error "set default stripes dir error"
14376
14377         mkdir $DIR/$tdir/striped_dir/c &&
14378                 error "default stripe_index is invalid, mkdir c should fails"
14379
14380         rm -rf $DIR/$tdir || error "rmdir fails"
14381 }
14382 run_test 300m "setstriped directory on single MDT FS"
14383
14384 cleanup_300n() {
14385         local list=$(comma_list $(mdts_nodes))
14386
14387         trap 0
14388         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=0
14389 }
14390
14391 test_300n() {
14392         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
14393                 skip "Need MDS version at least 2.7.55" && return
14394         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14395         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
14396         local stripe_index
14397         local list=$(comma_list $(mdts_nodes))
14398
14399         trap cleanup_300n RETURN EXIT
14400         mkdir -p $DIR/$tdir
14401         chmod 777 $DIR/$tdir
14402         $RUNAS $LFS setdirstripe -i0 -c$MDSCOUNT \
14403                                 $DIR/$tdir/striped_dir > /dev/null 2>&1 &&
14404                 error "create striped dir succeeds with gid=0"
14405
14406         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=-1
14407         $RUNAS $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/striped_dir ||
14408                 error "create striped dir fails with gid=-1"
14409
14410         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=0
14411         $RUNAS $LFS setdirstripe -i 1 -c$MDSCOUNT -D \
14412                                 $DIR/$tdir/striped_dir > /dev/null 2>&1 &&
14413                 error "set default striped dir succeeds with gid=0"
14414
14415
14416         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=-1
14417         $RUNAS $LFS setdirstripe -i 1 -c$MDSCOUNT -D $DIR/$tdir/striped_dir ||
14418                 error "set default striped dir fails with gid=-1"
14419
14420
14421         do_nodes $list $LCTL set_param -n mdt.*.enable_remote_dir_gid=0
14422         $RUNAS mkdir $DIR/$tdir/striped_dir/test_dir ||
14423                                         error "create test_dir fails"
14424         $RUNAS mkdir $DIR/$tdir/striped_dir/test_dir1 ||
14425                                         error "create test_dir1 fails"
14426         $RUNAS mkdir $DIR/$tdir/striped_dir/test_dir2 ||
14427                                         error "create test_dir2 fails"
14428         cleanup_300n
14429 }
14430 run_test 300n "non-root user to create dir under striped dir with default EA"
14431
14432 test_300o() {
14433         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
14434                 skip "Need MDS version at least 2.7.55" && return
14435         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14436         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
14437         local numfree1
14438         local numfree2
14439
14440         mkdir -p $DIR/$tdir
14441
14442         numfree1=$(lctl get_param -n mdc.*MDT0000*.filesfree)
14443         numfree2=$(lctl get_param -n mdc.*MDT0001*.filesfree)
14444         if [ $numfree1 -lt 66000 -o $numfree2 -lt 66000 ]; then
14445                 skip "not enough free inodes $numfree1 $numfree2"
14446                 return
14447         fi
14448
14449         numfree1=$(lctl get_param -n mdc.*MDT0000-mdc-*.kbytesfree)
14450         numfree2=$(lctl get_param -n mdc.*MDT0001-mdc-*.kbytesfree)
14451         if [ $numfree1 -lt 300000 -o $numfree2 -lt 300000 ]; then
14452                 skip "not enough free space $numfree1 $numfree2"
14453                 return
14454         fi
14455
14456         $LFS setdirstripe -c2 $DIR/$tdir/striped_dir ||
14457                 error "setdirstripe fails"
14458
14459         createmany -d $DIR/$tdir/striped_dir/d 131000 ||
14460                 error "create dirs fails"
14461
14462         $LCTL set_param ldlm.namespaces.*mdc-*.lru_size=0
14463         ls $DIR/$tdir/striped_dir > /dev/null ||
14464                 error "ls striped dir fails"
14465         unlinkmany -d $DIR/$tdir/striped_dir/d 131000 ||
14466                 error "unlink big striped dir fails"
14467 }
14468 run_test 300o "unlink big sub stripe(> 65000 subdirs)"
14469
14470 test_300p() {
14471         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14472         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
14473
14474         mkdir -p $DIR/$tdir
14475
14476         #define OBD_FAIL_OUT_ENOSPC     0x1704
14477         do_facet mds2 lctl set_param fail_loc=0x80001704
14478         $LFS setdirstripe -c2 $DIR/$tdir/bad_striped_dir > /dev/null 2>&1 &&
14479                         error "create striped directory should fail"
14480
14481         [ -e $DIR/$tdir/bad_striped_dir ] && error "striped dir exists"
14482
14483         $LFS setdirstripe -c2 $DIR/$tdir/bad_striped_dir
14484         true
14485 }
14486 run_test 300p "create striped directory without space"
14487
14488 test_300q() {
14489         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14490         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
14491
14492         local fd=$(free_fd)
14493         local cmd="exec $fd<$tdir"
14494         cd $DIR
14495         $LFS mkdir -c $MDSCOUNT $tdir || error "create $tdir fails"
14496         eval $cmd
14497         cmd="exec $fd<&-"
14498         trap "eval $cmd" EXIT
14499         cd $tdir || error "cd $tdir fails"
14500         rmdir  ../$tdir || error "rmdir $tdir fails"
14501         mkdir local_dir && error "create dir succeeds"
14502         $LFS setdirstripe -i1 remote_dir && error "create remote dir succeeds"
14503         eval $cmd
14504         return 0
14505 }
14506 run_test 300q "create remote directory under orphan directory"
14507
14508 prepare_remote_file() {
14509         mkdir $DIR/$tdir/src_dir ||
14510                 error "create remote source failed"
14511
14512         cp /etc/hosts $DIR/$tdir/src_dir/a || error
14513         touch $DIR/$tdir/src_dir/a
14514
14515         $LFS mkdir -i 1 $DIR/$tdir/tgt_dir ||
14516                 error "create remote target dir failed"
14517
14518         touch $DIR/$tdir/tgt_dir/b
14519
14520         mrename $DIR/$tdir/src_dir/a $DIR/$tdir/tgt_dir/b ||
14521                 error "rename dir cross MDT failed!"
14522
14523         $CHECKSTAT -t file $DIR/$tdir/src_dir/a &&
14524                 error "src_child still exists after rename"
14525
14526         $CHECKSTAT -t file $DIR/$tdir/tgt_dir/b ||
14527                 error "missing file(a) after rename"
14528
14529         diff /etc/hosts $DIR/$tdir/tgt_dir/b ||
14530                 error "diff after rename"
14531 }
14532
14533 test_310a() {
14534         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 4 MDTs" && return
14535         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14536         local remote_file=$DIR/$tdir/tgt_dir/b
14537
14538         mkdir -p $DIR/$tdir
14539
14540         prepare_remote_file || error "prepare remote file failed"
14541
14542         #open-unlink file
14543         $OPENUNLINK $remote_file $remote_file || error
14544         $CHECKSTAT -a $remote_file || error
14545 }
14546 run_test 310a "open unlink remote file"
14547
14548 test_310b() {
14549         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 4 MDTs" && return
14550         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14551         local remote_file=$DIR/$tdir/tgt_dir/b
14552
14553         mkdir -p $DIR/$tdir
14554
14555         prepare_remote_file || error "prepare remote file failed"
14556
14557         ln $remote_file $DIR/$tfile || error "link failed for remote file"
14558         $MULTIOP $DIR/$tfile Ouc || error "mulitop failed"
14559         $CHECKSTAT -t file $remote_file || error "check file failed"
14560 }
14561 run_test 310b "unlink remote file with multiple links while open"
14562
14563 test_310c() {
14564         [[ $MDSCOUNT -lt 4 ]] && skip "needs >= 4 MDTs" && return
14565         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14566         local remote_file=$DIR/$tdir/tgt_dir/b
14567
14568         mkdir -p $DIR/$tdir
14569
14570         prepare_remote_file || error "prepare remote file failed"
14571
14572         ln $remote_file $DIR/$tfile || error "link failed for remote file"
14573         multiop_bg_pause $remote_file O_uc ||
14574                         error "mulitop failed for remote file"
14575         MULTIPID=$!
14576         $MULTIOP $DIR/$tfile Ouc
14577         kill -USR1 $MULTIPID
14578         wait $MULTIPID
14579 }
14580 run_test 310c "open-unlink remote file with multiple links"
14581
14582 test_400a() { # LU-1606, was conf-sanity test_74
14583         local extra_flags=''
14584         local out=$TMP/$tfile
14585         local prefix=/usr/include/lustre
14586         local prog
14587
14588         if ! which $CC > /dev/null 2>&1; then
14589                 skip_env "$CC is not installed"
14590                 return 0
14591         fi
14592
14593         if ! [[ -d $prefix ]]; then
14594                 # Assume we're running in tree and fixup the include path.
14595                 extra_flags+=" -I$LUSTRE/../libcfs/include"
14596                 extra_flags+=" -I$LUSTRE/include"
14597                 extra_flags+=" -L$LUSTRE/utils"
14598         fi
14599
14600         for prog in $LUSTRE_TESTS_API_DIR/*.c; do
14601                 $CC -Wall -Werror $extra_flags -llustreapi -o $out $prog ||
14602                         error "client api broken"
14603         done
14604         rm -f $out
14605 }
14606 run_test 400a "Lustre client api program can compile and link"
14607
14608 test_400b() { # LU-1606, LU-5011
14609         local header
14610         local out=$TMP/$tfile
14611         local prefix=/usr/include/lustre
14612
14613         # We use a hard coded prefix so that this test will not fail
14614         # when run in tree. There are headers in lustre/include/lustre/
14615         # that are not packaged (like lustre_idl.h) and have more
14616         # complicated include dependencies (like config.h and lnet/types.h).
14617         # Since this test about correct packaging we just skip them when
14618         # they don't exist (see below) rather than try to fixup cppflags.
14619
14620         if ! which $CC > /dev/null 2>&1; then
14621                 skip_env "$CC is not installed"
14622                 return 0
14623         fi
14624
14625         for header in $prefix/*.h; do
14626                 if ! [[ -f "$header" ]]; then
14627                         continue
14628                 fi
14629
14630                 if [[ "$(basename $header)" == liblustreapi.h ]]; then
14631                         continue # liblustreapi.h is deprecated.
14632                 fi
14633
14634                 $CC -Wall -Werror -include $header -c -x c /dev/null -o $out ||
14635                         error "cannot compile '$header'"
14636         done
14637         rm -f $out
14638 }
14639 run_test 400b "packaged headers can be compiled"
14640
14641 test_401a() { #LU-7437
14642         #count the number of parameters by "list_param -R"
14643         local params=$($LCTL list_param -R '*' 2>/dev/null | wc -l)
14644         #count the number of parameters by listing proc files
14645         local procs=$(find -L $proc_dirs -mindepth 1 -printf '%P\n' 2>/dev/null|
14646                       sort -u | wc -l)
14647
14648         [ $params -eq $procs ] ||
14649                 error "found $params parameters vs. $procs proc files"
14650
14651         # test the list_param -D option only returns directories
14652         params=$($LCTL list_param -R -D '*' 2>/dev/null | wc -l)
14653         #count the number of parameters by listing proc directories
14654         procs=$(find -L $proc_dirs -mindepth 1 -type d -printf '%P\n' 2>/dev/null |
14655                 sort -u | wc -l)
14656
14657         [ $params -eq $procs ] ||
14658                 error "found $params parameters vs. $procs proc files"
14659 }
14660 run_test 401a "Verify if 'lctl list_param -R' can list parameters recursively"
14661
14662 test_401b() {
14663         local save=$($LCTL get_param -n jobid_var)
14664         local tmp=testing
14665
14666         $LCTL set_param foo=bar jobid_var=$tmp bar=baz &&
14667                 error "no error returned when setting bad parameters"
14668
14669         local jobid_new=$($LCTL get_param -n foe jobid_var baz)
14670         [[ "$jobid_new" == "$tmp" ]] || error "jobid tmp $jobid_new != $tmp"
14671
14672         $LCTL set_param -n fog=bam jobid_var=$save bat=fog
14673         local jobid_old=$($LCTL get_param -n foe jobid_var bag)
14674         [[ "$jobid_old" == "$save" ]] || error "jobid new $jobid_old != $save"
14675 }
14676 run_test 401b "Verify 'lctl {get,set}_param' continue after error"
14677
14678 test_401c() {
14679         local jobid_var_old=$($LCTL get_param -n jobid_var)
14680         local jobid_var_new
14681
14682         $LCTL set_param jobid_var= &&
14683                 error "no error returned for 'set_param a='"
14684
14685         jobid_var_new=$($LCTL get_param -n jobid_var)
14686         [[ "$jobid_var_old" == "$jobid_var_new" ]] ||
14687                 error "jobid_var was changed by setting without value"
14688
14689         $LCTL set_param jobid_var &&
14690                 error "no error returned for 'set_param a'"
14691
14692         jobid_var_new=$($LCTL get_param -n jobid_var)
14693         [[ "$jobid_var_old" == "$jobid_var_new" ]] ||
14694                 error "jobid_var was changed by setting without value"
14695 }
14696 run_test 401c "Verify 'lctl set_param' without value fails in either format."
14697
14698 test_401d() {
14699         local jobid_var_old=$($LCTL get_param -n jobid_var)
14700         local jobid_var_new
14701         local new_value="foo=bar"
14702
14703         $LCTL set_param jobid_var=$new_value ||
14704                 error "'set_param a=b' did not accept a value containing '='"
14705
14706         jobid_var_new=$($LCTL get_param -n jobid_var)
14707         [[ "$jobid_var_new" == "$new_value" ]] ||
14708                 error "'set_param a=b' failed on a value containing '='"
14709
14710         # Reset the jobid_var to test the other format
14711         $LCTL set_param jobid_var=$jobid_var_old
14712         jobid_var_new=$($LCTL get_param -n jobid_var)
14713         [[ "$jobid_var_new" == "$jobid_var_old" ]] ||
14714                 error "failed to reset jobid_var"
14715
14716         $LCTL set_param jobid_var $new_value ||
14717                 error "'set_param a b' did not accept a value containing '='"
14718
14719         jobid_var_new=$($LCTL get_param -n jobid_var)
14720         [[ "$jobid_var_new" == "$new_value" ]] ||
14721                 error "'set_param a b' failed on a value containing '='"
14722
14723         $LCTL set_param jobid_var $jobid_var_old
14724         jobid_var_new=$($LCTL get_param -n jobid_var)
14725         [[ "$jobid_var_new" == "$jobid_var_old" ]] ||
14726                 error "failed to reset jobid_var"
14727 }
14728 run_test 401d "Verify 'lctl set_param' accepts values containing '='"
14729
14730 test_402() {
14731         $LFS setdirstripe -i 0 $DIR/$tdir || error "setdirstripe -i 0 failed"
14732 #define OBD_FAIL_MDS_FLD_LOOKUP 0x15c
14733         do_facet mds1 "lctl set_param fail_loc=0x8000015c"
14734         touch $DIR/$tdir/$tfile && error "touch should fail with ENOENT" ||
14735                 echo "Touch failed - OK"
14736 }
14737 run_test 402 "Return ENOENT to lod_generate_and_set_lovea"
14738
14739 test_403() {
14740         local file1=$DIR/$tfile.1
14741         local file2=$DIR/$tfile.2
14742         local tfile=$TMP/$tfile
14743
14744         rm -f $file1 $file2 $tfile
14745
14746         touch $file1
14747         ln $file1 $file2
14748
14749         # 30 sec OBD_TIMEOUT in ll_getattr()
14750         # right before populating st_nlink
14751         $LCTL set_param fail_loc=0x80001409
14752         stat -c %h $file1 > $tfile &
14753
14754         # create an alias, drop all locks and reclaim the dentry
14755         < $file2
14756         cancel_lru_locks mdc
14757         cancel_lru_locks osc
14758         sysctl -w vm.drop_caches=2
14759
14760         wait
14761
14762         [ `cat $tfile` -gt 0 ] || error "wrong nlink count: `cat $tfile`"
14763
14764         rm -f $tfile $file1 $file2
14765 }
14766 run_test 403 "i_nlink should not drop to zero due to aliasing"
14767
14768 test_404() { # LU-6601
14769         local mosps=$(do_facet $SINGLEMDS $LCTL dl |
14770                 awk '/osp .*-osc-MDT/ { print $4}')
14771
14772         local osp
14773         for osp in $mosps; do
14774                 echo "Deactivate: " $osp
14775                 do_facet $SINGLEMDS $LCTL --device %$osp deactivate
14776                 local stat=$(do_facet $SINGLEMDS $LCTL dl |
14777                         awk -vp=$osp '$4 == p { print $2 }')
14778                 [ $stat = IN ] || {
14779                         do_facet $SINGLEMDS $LCTL dl | grep -w $osp
14780                         error "deactivate error"
14781                 }
14782                 echo "Activate: " $osp
14783                 do_facet $SINGLEMDS $LCTL --device %$osp activate
14784                 local stat=$(do_facet $SINGLEMDS $LCTL dl |
14785                         awk -vp=$osp '$4 == p { print $2 }')
14786                 [ $stat = UP ] || {
14787                         do_facet $SINGLEMDS $LCTL dl | grep -w $osp
14788                         error "activate error"
14789                 }
14790         done
14791 }
14792 run_test 404 "validate manual {de}activated works properly for OSPs"
14793
14794 #
14795 # tests that do cleanup/setup should be run at the end
14796 #
14797
14798 test_900() {
14799         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
14800         local ls
14801         #define OBD_FAIL_MGC_PAUSE_PROCESS_LOG   0x903
14802         $LCTL set_param fail_loc=0x903
14803
14804         cancel_lru_locks MGC
14805
14806         FAIL_ON_ERROR=true cleanup
14807         FAIL_ON_ERROR=true setup
14808 }
14809 run_test 900 "umount should not race with any mgc requeue thread"
14810
14811 complete $SECONDS
14812 [ -f $EXT2_DEV ] && rm $EXT2_DEV || true
14813 check_and_cleanup_lustre
14814 if [ "$I_MOUNTED" != "yes" ]; then
14815         lctl set_param debug="$OLDDEBUG" 2> /dev/null || true
14816 fi
14817 exit_status