Whamcloud - gitweb
0d4dad93b19a15abdbcd9571a40a9a426129b08e
[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 12622 5188
12 ALWAYS_EXCEPT="                42a  42b  42c  42d  45   51d   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
17 ALWAYS_EXCEPT="                 76     $ALWAYS_EXCEPT"
18
19 SRCDIR=$(cd $(dirname $0); echo $PWD)
20 export PATH=$PATH:/sbin
21
22 TMP=${TMP:-/tmp}
23
24 CC=${CC:-cc}
25 CHECKSTAT=${CHECKSTAT:-"checkstat -v"}
26 CREATETEST=${CREATETEST:-createtest}
27 LFS=${LFS:-lfs}
28 LFIND=${LFIND:-"$LFS find"}
29 LVERIFY=${LVERIFY:-ll_dirstripe_verify}
30 LCTL=${LCTL:-lctl}
31 OPENFILE=${OPENFILE:-openfile}
32 OPENUNLINK=${OPENUNLINK:-openunlink}
33 export MULTIOP=${MULTIOP:-multiop}
34 READS=${READS:-"reads"}
35 MUNLINK=${MUNLINK:-munlink}
36 SOCKETSERVER=${SOCKETSERVER:-socketserver}
37 SOCKETCLIENT=${SOCKETCLIENT:-socketclient}
38 MEMHOG=${MEMHOG:-memhog}
39 DIRECTIO=${DIRECTIO:-directio}
40 ACCEPTOR_PORT=${ACCEPTOR_PORT:-988}
41 UMOUNT=${UMOUNT:-"umount -d"}
42 STRIPES_PER_OBJ=-1
43 CHECK_GRANT=${CHECK_GRANT:-"yes"}
44 GRANT_CHECK_LIST=${GRANT_CHECK_LIST:-""}
45 export PARALLEL=${PARALLEL:-"no"}
46
47 export NAME=${NAME:-local}
48
49 SAVE_PWD=$PWD
50
51 CLEANUP=${CLEANUP:-:}
52 SETUP=${SETUP:-:}
53 TRACE=${TRACE:-""}
54 LUSTRE=${LUSTRE:-$(cd $(dirname $0)/..; echo $PWD)}
55 LUSTRE_TESTS_API_DIR=${LUSTRE_TESTS_API_DIR:-${LUSTRE}/tests/clientapi}
56 . $LUSTRE/tests/test-framework.sh
57 init_test_env $@
58 . ${CONFIG:=$LUSTRE/tests/cfg/${NAME}.sh}
59 init_logging
60
61 [ "$SLOW" = "no" ] && EXCEPT_SLOW="24o 24D 27m 64b 68 71 77f 78 115 124b 230d"
62
63 if [ $(facet_fstype $SINGLEMDS) = "zfs" ]; then
64         # bug number for skipped test: LU-4536 LU-5242   LU-1957 LU-2805
65         ALWAYS_EXCEPT="$ALWAYS_EXCEPT  65ic     78 79 80 180     184c"
66         [ "$SLOW" = "no" ] && EXCEPT_SLOW="$EXCEPT_SLOW 51b 51ba"
67 fi
68
69 FAIL_ON_ERROR=false
70
71 cleanup() {
72         echo -n "cln.."
73         pgrep ll_sa > /dev/null && { echo "There are ll_sa thread not exit!"; exit 20; }
74         cleanupall ${FORCE} $* || { echo "FAILed to clean up"; exit 20; }
75 }
76 setup() {
77         echo -n "mnt.."
78         load_modules
79         setupall || exit 10
80         echo "done"
81 }
82
83 check_swap_layouts_support()
84 {
85         $LCTL get_param -n llite.*.sbi_flags | grep -q layout ||
86                 { skip "Does not support layout lock."; return 0; }
87         return 1
88 }
89
90 check_and_setup_lustre
91
92 DIR=${DIR:-$MOUNT}
93 assert_DIR
94
95 MDT0=$($LCTL get_param -n mdc.*.mds_server_uuid |
96         awk '{ gsub(/_UUID/,""); print $1 }' | head -n1)
97 LOVNAME=$($LCTL get_param -n llite.*.lov.common_name | tail -n 1)
98 OSTCOUNT=$($LCTL get_param -n lov.$LOVNAME.numobd)
99 STRIPECOUNT=$($LCTL get_param -n lov.$LOVNAME.stripecount)
100 STRIPESIZE=$($LCTL get_param -n lov.$LOVNAME.stripesize)
101 ORIGFREE=$($LCTL get_param -n lov.$LOVNAME.kbytesavail)
102 MAXFREE=${MAXFREE:-$((200000 * $OSTCOUNT))}
103
104 [ -f $DIR/d52a/foo ] && chattr -a $DIR/d52a/foo
105 [ -f $DIR/d52b/foo ] && chattr -i $DIR/d52b/foo
106 rm -rf $DIR/[Rdfs][0-9]*
107
108 # $RUNAS_ID may get set incorrectly somewhere else
109 [ $UID -eq 0 -a $RUNAS_ID -eq 0 ] && error "\$RUNAS_ID set to 0, but \$UID is also 0!"
110
111 check_runas_id $RUNAS_ID $RUNAS_GID $RUNAS
112
113 build_test_filter
114
115 if [ "${ONLY}" = "MOUNT" ] ; then
116         echo "Lustre is up, please go on"
117         exit
118 fi
119
120 echo "preparing for tests involving mounts"
121 EXT2_DEV=${EXT2_DEV:-$TMP/SANITY.LOOP}
122 touch $EXT2_DEV
123 mke2fs -j -F $EXT2_DEV 8000 > /dev/null
124 echo # add a newline after mke2fs.
125
126 umask 077
127
128 OLDDEBUG=$(lctl get_param -n debug 2> /dev/null)
129 lctl set_param debug=-1 2> /dev/null || true
130 test_0a() {
131         touch $DIR/$tfile
132         $CHECKSTAT -t file $DIR/$tfile || error "$tfile is not a file"
133         rm $DIR/$tfile
134         $CHECKSTAT -a $DIR/$tfile || error "$tfile was not removed"
135 }
136 run_test 0a "touch; rm ====================="
137
138 test_0b() {
139         chmod 0755 $DIR || error "chmod 0755 $DIR failed"
140         $CHECKSTAT -p 0755 $DIR || error "$DIR permission is not 0755"
141 }
142 run_test 0b "chmod 0755 $DIR ============================="
143
144 test_0c() {
145         $LCTL get_param mdc.*.import | grep "state: FULL" ||
146                 error "import not FULL"
147         $LCTL get_param mdc.*.import | grep "target: $FSNAME-MDT" ||
148                 error "bad target"
149 }
150 run_test 0c "check import proc ============================="
151
152 test_1() {
153         test_mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
154         test_mkdir -p $DIR/$tdir/d2 || error "mkdir $tdir/d2 failed"
155         test_mkdir $DIR/$tdir/d2 && error "we expect EEXIST, but not returned"
156         $CHECKSTAT -t dir $DIR/$tdir/d2 || error "$tdir/d2 is not a dir"
157         rmdir $DIR/$tdir/d2
158         rmdir $DIR/$tdir
159         $CHECKSTAT -a $DIR/$tdir || error "$tdir was not removed"
160 }
161 run_test 1 "mkdir; remkdir; rmdir =============================="
162
163 test_2() {
164         test_mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
165         touch $DIR/$tdir/$tfile || error "touch $tdir/$tfile failed"
166         $CHECKSTAT -t file $DIR/$tdir/$tfile || error "$tdir/$tfile not a file"
167         rm -r $DIR/$tdir
168         $CHECKSTAT -a $DIR/$tdir/$tfile || error "$tdir/$file is not removed"
169 }
170 run_test 2 "mkdir; touch; rmdir; check file ===================="
171
172 test_3() {
173         test_mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
174         $CHECKSTAT -t dir $DIR/$tdir || error "$tdir is not a directory"
175         touch $DIR/$tdir/$tfile
176         $CHECKSTAT -t file $DIR/$tdir/$tfile || error "$tdir/$tfile not a file"
177         rm -r $DIR/$tdir
178         $CHECKSTAT -a $DIR/$tdir || error "$tdir is not removed"
179 }
180 run_test 3 "mkdir; touch; rmdir; check dir ====================="
181
182 # LU-4471 - failed rmdir on remote directories still removes directory on MDT0
183 test_4() {
184         local MDTIDX=1
185
186         test_mkdir $DIR/$tdir ||
187                 error "Create remote directory failed"
188
189         touch $DIR/$tdir/$tfile ||
190                 error "Create file under remote directory failed"
191
192         rmdir $DIR/$tdir &&
193                 error "Expect error removing in-use dir $DIR/$tdir"
194
195         test -d $DIR/$tdir || error "Remote directory disappeared"
196
197         rm -rf $DIR/$tdir || error "remove remote dir error"
198 }
199 run_test 4 "mkdir; touch dir/file; rmdir; checkdir (expect error)"
200
201 test_5() {
202         test_mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
203         test_mkdir $DIR/$tdir/d2 || error "mkdir $tdir/d2 failed"
204         chmod 0707 $DIR/$tdir/d2 || error "chmod 0707 $tdir/d2 failed"
205         $CHECKSTAT -t dir -p 0707 $DIR/$tdir/d2 || error "$tdir/d2 not mode 707"
206         $CHECKSTAT -t dir $DIR/$tdir/d2 || error "$tdir/d2 is not a directory"
207 }
208 run_test 5 "mkdir .../d5 .../d5/d2; chmod .../d5/d2 ============"
209
210 test_6a() {
211         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
212         chmod 0666 $DIR/$tfile || error "chmod 0666 $tfile failed"
213         $CHECKSTAT -t file -p 0666 -u \#$UID $DIR/$tfile ||
214                 error "$tfile does not have perm 0666 or UID $UID"
215         $RUNAS chmod 0444 $DIR/$tfile && error "chmod $tfile worked on UID $UID"
216         $CHECKSTAT -t file -p 0666 -u \#$UID $DIR/$tfile ||
217                 error "$tfile should be 0666 and owned by UID $UID"
218 }
219 run_test 6a "touch f6a; chmod f6a; $RUNAS chmod f6a (should return error) =="
220
221 test_6c() {
222         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID" && return
223         touch $DIR/$tfile
224         chown $RUNAS_ID $DIR/$tfile || error "chown $RUNAS_ID $file failed"
225         $CHECKSTAT -t file -u \#$RUNAS_ID $DIR/$tfile ||
226                 error "$tfile should be owned by UID $RUNAS_ID"
227         $RUNAS chown $UID $DIR/$tfile && error "chown $UID $file succeeded"
228         $CHECKSTAT -t file -u \#$RUNAS_ID $DIR/$tfile ||
229                 error "$tfile should be owned by UID $RUNAS_ID"
230 }
231 run_test 6c "touch f6c; chown f6c; $RUNAS chown f6c (should return error) =="
232
233 test_6e() {
234         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID" && return
235         touch $DIR/$tfile
236         chgrp $RUNAS_ID $DIR/$tfile || error "chgrp $RUNAS_ID $file failed"
237         $CHECKSTAT -t file -u \#$UID -g \#$RUNAS_ID $DIR/$tfile ||
238                 error "$tfile should be owned by GID $UID"
239         $RUNAS chgrp $UID $DIR/$tfile && error "chgrp $UID $file succeeded"
240         $CHECKSTAT -t file -u \#$UID -g \#$RUNAS_ID $DIR/$tfile ||
241                 error "$tfile should be owned by UID $UID and GID $RUNAS_ID"
242 }
243 run_test 6e "touch f6e; chgrp f6e; $RUNAS chgrp f6e (should return error) =="
244
245 test_6g() {
246         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID" && return
247         test_mkdir $DIR/$tdir || error "mkdir $tfile failed"
248         chmod 777 $DIR/$tdir || error "chmod 0777 $tdir failed"
249         $RUNAS mkdir $DIR/$tdir/d || error "mkdir $tdir/d failed"
250         chmod g+s $DIR/$tdir/d || error "chmod g+s $tdir/d failed"
251         test_mkdir $DIR/$tdir/d/subdir || error "mkdir $tdir/d/subdir failed"
252         $CHECKSTAT -g \#$RUNAS_GID $DIR/$tdir/d/subdir ||
253                 error "$tdir/d/subdir should be GID $RUNAS_GID"
254 }
255 run_test 6g "Is new dir in sgid dir inheriting group?"
256
257 test_6h() { # bug 7331
258         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID" && return
259         touch $DIR/$tfile || error "touch failed"
260         chown $RUNAS_ID:$RUNAS_GID $DIR/$tfile || error "initial chown failed"
261         $RUNAS -G$RUNAS_GID chown $RUNAS_ID:0 $DIR/$tfile &&
262                 error "chown $RUNAS_ID:0 $tfile worked as GID $RUNAS_GID"
263         $CHECKSTAT -t file -u \#$RUNAS_ID -g \#$RUNAS_GID $DIR/$tfile ||
264                 error "$tdir/$tfile should be UID $RUNAS_UID GID $RUNAS_GID"
265 }
266 run_test 6h "$RUNAS chown RUNAS_ID.0 .../f6h (should return error)"
267
268 test_7a() {
269         test_mkdir $DIR/$tdir
270         $MCREATE $DIR/$tdir/$tfile
271         chmod 0666 $DIR/$tdir/$tfile
272         $CHECKSTAT -t file -p 0666 $DIR/$tdir/$tfile ||
273                 error "$tdir/$tfile should be mode 0666"
274 }
275 run_test 7a "mkdir .../d7; mcreate .../d7/f; chmod .../d7/f ===="
276
277 test_7b() {
278         if [ ! -d $DIR/$tdir ]; then
279                 mkdir $DIR/$tdir
280         fi
281         $MCREATE $DIR/$tdir/$tfile
282         echo -n foo > $DIR/$tdir/$tfile
283         [ "$(cat $DIR/$tdir/$tfile)" = "foo" ] || error "$tdir/$tfile not 'foo'"
284         $CHECKSTAT -t file -s 3 $DIR/$tdir/$tfile || error "$tfile size not 3"
285 }
286 run_test 7b "mkdir .../d7; mcreate d7/f2; echo foo > d7/f2 ====="
287
288 test_8() {
289         test_mkdir $DIR/$tdir
290         touch $DIR/$tdir/$tfile
291         chmod 0666 $DIR/$tdir/$tfile
292         $CHECKSTAT -t file -p 0666 $DIR/$tdir/$tfile ||
293                 error "$tfile mode not 0666"
294 }
295 run_test 8 "mkdir .../d8; touch .../d8/f; chmod .../d8/f ======="
296
297 test_9() {
298         test_mkdir $DIR/$tdir
299         test_mkdir $DIR/$tdir/d2
300         test_mkdir $DIR/$tdir/d2/d3
301         $CHECKSTAT -t dir $DIR/$tdir/d2/d3 || error "$tdir/d2/d3 not a dir"
302 }
303 run_test 9 "mkdir .../d9 .../d9/d2 .../d9/d2/d3 ================"
304
305 test_10() {
306         test_mkdir $DIR/$tdir
307         test_mkdir $DIR/$tdir/d2
308         touch $DIR/$tdir/d2/$tfile
309         $CHECKSTAT -t file $DIR/$tdir/d2/$tfile ||
310                 error "$tdir/d2/$tfile not a file"
311 }
312 run_test 10 "mkdir .../d10 .../d10/d2; touch .../d10/d2/f ======"
313
314 test_11() {
315         test_mkdir $DIR/$tdir
316         test_mkdir $DIR/$tdir/d2
317         chmod 0666 $DIR/$tdir/d2
318         chmod 0705 $DIR/$tdir/d2
319         $CHECKSTAT -t dir -p 0705 $DIR/$tdir/d2 ||
320                 error "$tdir/d2 mode not 0705"
321 }
322 run_test 11 "mkdir .../d11 d11/d2; chmod .../d11/d2 ============"
323
324 test_12() {
325         test_mkdir $DIR/$tdir
326         touch $DIR/$tdir/$tfile
327         chmod 0666 $DIR/$tdir/$tfile
328         chmod 0654 $DIR/$tdir/$tfile
329         $CHECKSTAT -t file -p 0654 $DIR/$tdir/$tfile ||
330                 error "$tdir/d2 mode not 0654"
331 }
332 run_test 12 "touch .../d12/f; chmod .../d12/f .../d12/f ========"
333
334 test_13() {
335         test_mkdir $DIR/$tdir
336         dd if=/dev/zero of=$DIR/$tdir/$tfile count=10
337         >  $DIR/$tdir/$tfile
338         $CHECKSTAT -t file -s 0 $DIR/$tdir/$tfile ||
339                 error "$tdir/$tfile size not 0 after truncate"
340 }
341 run_test 13 "creat .../d13/f; dd .../d13/f; > .../d13/f ========"
342
343 test_14() {
344         test_mkdir $DIR/$tdir
345         touch $DIR/$tdir/$tfile
346         rm $DIR/$tdir/$tfile
347         $CHECKSTAT -a $DIR/$tdir/$tfile || error "$tdir/$tfile not removed"
348 }
349 run_test 14 "touch .../d14/f; rm .../d14/f; rm .../d14/f ======="
350
351 test_15() {
352         test_mkdir $DIR/$tdir
353         touch $DIR/$tdir/$tfile
354         mv $DIR/$tdir/$tfile $DIR/$tdir/${tfile}_2
355         $CHECKSTAT -t file $DIR/$tdir/${tfile}_2 ||
356                 error "$tdir/${tfile_2} not a file after rename"
357 }
358 run_test 15 "touch .../d15/f; mv .../d15/f .../d15/f2 =========="
359
360 test_16() {
361         test_mkdir $DIR/$tdir
362         touch $DIR/$tdir/$tfile
363         rm -rf $DIR/$tdir/$tfile
364         $CHECKSTAT -a $DIR/$tdir/$tfile || error "$tdir/$tfile not removed"
365 }
366 run_test 16 "touch .../d16/f; rm -rf .../d16/f ================="
367
368 test_17a() {
369         test_mkdir -p $DIR/$tdir
370         touch $DIR/$tdir/$tfile
371         ln -s $DIR/$tdir/$tfile $DIR/$tdir/l-exist
372         ls -l $DIR/$tdir
373         $CHECKSTAT -l $DIR/$tdir/$tfile $DIR/$tdir/l-exist ||
374                 error "$tdir/l-exist not a symlink"
375         $CHECKSTAT -f -t f $DIR/$tdir/l-exist ||
376                 error "$tdir/l-exist not referencing a file"
377         rm -f $DIR/$tdir/l-exist
378         $CHECKSTAT -a $DIR/$tdir/l-exist || error "$tdir/l-exist not removed"
379 }
380 run_test 17a "symlinks: create, remove (real) =================="
381
382 test_17b() {
383         test_mkdir -p $DIR/$tdir
384         ln -s no-such-file $DIR/$tdir/l-dangle
385         ls -l $DIR/$tdir
386         $CHECKSTAT -l no-such-file $DIR/$tdir/l-dangle ||
387                 error "$tdir/l-dangle not referencing no-such-file"
388         $CHECKSTAT -fa $DIR/$tdir/l-dangle ||
389                 error "$tdir/l-dangle not referencing non-existent file"
390         rm -f $DIR/$tdir/l-dangle
391         $CHECKSTAT -a $DIR/$tdir/l-dangle || error "$tdir/l-dangle not removed"
392 }
393 run_test 17b "symlinks: create, remove (dangling) =============="
394
395 test_17c() { # bug 3440 - don't save failed open RPC for replay
396         test_mkdir -p $DIR/$tdir
397         ln -s foo $DIR/$tdir/$tfile
398         cat $DIR/$tdir/$tfile && error "opened non-existent symlink" || true
399 }
400 run_test 17c "symlinks: open dangling (should return error) ===="
401
402 test_17d() {
403         test_mkdir -p $DIR/$tdir
404         ln -s foo $DIR/$tdir/$tfile
405         touch $DIR/$tdir/$tfile || error "creating to new symlink"
406 }
407 run_test 17d "symlinks: create dangling ========================"
408
409 test_17e() {
410         test_mkdir -p $DIR/$tdir
411         local foo=$DIR/$tdir/$tfile
412         ln -s $foo $foo || error "create symlink failed"
413         ls -l $foo || error "ls -l failed"
414         ls $foo && error "ls not failed" || true
415 }
416 run_test 17e "symlinks: create recursive symlink (should return error) ===="
417
418 test_17f() {
419         test_mkdir -p $DIR/$tdir
420         ln -s 1234567890/2234567890/3234567890/4234567890 $DIR/$tdir/111
421         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890 $DIR/$tdir/222
422         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890 $DIR/$tdir/333
423         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890/9234567890/a234567890/b234567890 $DIR/$tdir/444
424         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890/9234567890/a234567890/b234567890/c234567890/d234567890/f234567890 $DIR/$tdir/555
425         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
426         ls -l  $DIR/$tdir
427 }
428 run_test 17f "symlinks: long and very long symlink name ========================"
429
430 # str_repeat(S, N) generate a string that is string S repeated N times
431 str_repeat() {
432         local s=$1
433         local n=$2
434         local ret=''
435         while [ $((n -= 1)) -ge 0 ]; do
436                 ret=$ret$s
437         done
438         echo $ret
439 }
440
441 # Long symlinks and LU-2241
442 test_17g() {
443         test_mkdir -p $DIR/$tdir
444         local TESTS="59 60 61 4094 4095"
445
446         # Fix for inode size boundary in 2.1.4
447         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.1.4) ] &&
448                 TESTS="4094 4095"
449
450         # Patch not applied to 2.2 or 2.3 branches
451         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] &&
452         [ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.3.55) ] &&
453                 TESTS="4094 4095"
454
455         # skip long symlink name for rhel6.5.
456         # rhel6.5 has a limit (PATH_MAX - sizeof(struct filename))
457         grep -q '6.5' /etc/redhat-release &>/dev/null &&
458                 TESTS="59 60 61 4062 4063"
459
460         for i in $TESTS; do
461                 local SYMNAME=$(str_repeat 'x' $i)
462                 ln -s $SYMNAME $DIR/$tdir/f$i || error "failed $i-char symlink"
463                 readlink $DIR/$tdir/f$i || error "failed $i-char readlink"
464         done
465 }
466 run_test 17g "symlinks: really long symlink name and inode boundaries"
467
468 test_17h() { #bug 17378
469         remote_mds_nodsh && skip "remote MDS with nodsh" && return
470         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
471         local mdt_idx
472         test_mkdir -p $DIR/$tdir
473         if [[ $MDSCOUNT -gt 1 ]]; then
474                 mdt_idx=$($LFS getdirstripe -i $DIR/$tdir)
475         else
476                 mdt_idx=0
477         fi
478         $SETSTRIPE -c -1 $DIR/$tdir
479 #define OBD_FAIL_MDS_LOV_PREP_CREATE 0x141
480         do_facet mds$((mdt_idx + 1)) lctl set_param fail_loc=0x80000141
481         touch $DIR/$tdir/$tfile || true
482 }
483 run_test 17h "create objects: lov_free_memmd() doesn't lbug"
484
485 test_17i() { #bug 20018
486         remote_mds_nodsh && skip "remote MDS with nodsh" && return
487         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
488         test_mkdir -c1 $DIR/$tdir
489         local foo=$DIR/$tdir/$tfile
490         local mdt_idx
491         if [[ $MDSCOUNT -gt 1 ]]; then
492                 mdt_idx=$($LFS getdirstripe -i $DIR/$tdir)
493         else
494                 mdt_idx=0
495         fi
496         ln -s $foo $foo || error "create symlink failed"
497 #define OBD_FAIL_MDS_READLINK_EPROTO     0x143
498         do_facet mds$((mdt_idx + 1)) lctl set_param fail_loc=0x80000143
499         ls -l $foo && error "error not detected"
500         return 0
501 }
502 run_test 17i "don't panic on short symlink"
503
504 test_17k() { #bug 22301
505         [[ -z "$(which rsync 2>/dev/null)" ]] &&
506                 skip "no rsync command" && return 0
507         rsync --help | grep -q xattr ||
508                 skip_env "$(rsync --version | head -n1) does not support xattrs"
509         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return 0
510         test_mkdir -p $DIR/$tdir
511         test_mkdir -p $DIR/$tdir.new
512         touch $DIR/$tdir/$tfile
513         ln -s $DIR/$tdir/$tfile $DIR/$tdir/$tfile.lnk
514         rsync -av -X $DIR/$tdir/ $DIR/$tdir.new ||
515                 error "rsync failed with xattrs enabled"
516 }
517 run_test 17k "symlinks: rsync with xattrs enabled ========================="
518
519 test_17l() { # LU-279
520         [[ -z "$(which getfattr 2>/dev/null)" ]] &&
521                 skip "no getfattr command" && return 0
522         mkdir -p $DIR/$tdir
523         touch $DIR/$tdir/$tfile
524         ln -s $DIR/$tdir/$tfile $DIR/$tdir/$tfile.lnk
525         for path in "$DIR/$tdir" "$DIR/$tdir/$tfile" "$DIR/$tdir/$tfile.lnk"; do
526                 # -h to not follow symlinks. -m '' to list all the xattrs.
527                 # grep to remove first line: '# file: $path'.
528                 for xattr in `getfattr -hm '' $path 2>/dev/null | grep -v '^#'`;
529                 do
530                         lgetxattr_size_check $path $xattr ||
531                                 error "lgetxattr_size_check $path $xattr failed"
532                 done
533         done
534 }
535 run_test 17l "Ensure lgetxattr's returned xattr size is consistent ========"
536
537 # LU-1540
538 test_17m() {
539         local short_sym="0123456789"
540         local WDIR=$DIR/${tdir}m
541         local mds_index
542         local devname
543         local cmd
544         local i
545         local rc=0
546
547         remote_mds_nodsh && skip "remote MDS with nodsh" && return
548         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] &&
549         [ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.2.93) ] &&
550                 skip "MDS 2.2.0-2.2.93 do not NUL-terminate symlinks" && return
551
552         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
553                 skip "only for ldiskfs MDT" && return 0
554
555         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
556
557         mkdir -p $WDIR
558         long_sym=$short_sym
559         # create a long symlink file
560         for ((i = 0; i < 4; ++i)); do
561                 long_sym=${long_sym}${long_sym}
562         done
563
564         echo "create 512 short and long symlink files under $WDIR"
565         for ((i = 0; i < 256; ++i)); do
566                 ln -sf ${long_sym}"a5a5" $WDIR/long-$i
567                 ln -sf ${short_sym}"a5a5" $WDIR/short-$i
568         done
569
570         echo "erase them"
571         rm -f $WDIR/*
572         sync
573         wait_delete_completed
574
575         echo "recreate the 512 symlink files with a shorter string"
576         for ((i = 0; i < 512; ++i)); do
577                 # rewrite the symlink file with a shorter string
578                 ln -sf ${long_sym} $WDIR/long-$i
579                 ln -sf ${short_sym} $WDIR/short-$i
580         done
581
582         mds_index=$($LFS getstripe -M $WDIR)
583         mds_index=$((mds_index+1))
584         devname=$(mdsdevname $mds_index)
585         cmd="$E2FSCK -fnvd $devname"
586
587         echo "stop and checking mds${mds_index}: $cmd"
588         # e2fsck should not return error
589         stop mds${mds_index}
590         do_facet mds${mds_index} $cmd || rc=$?
591
592         start mds${mds_index} $devname $MDS_MOUNT_OPTS || error "start failed"
593         df $MOUNT > /dev/null 2>&1
594         [ $rc -ne 0 ] && error "e2fsck should not report error upon "\
595                 "short/long symlink MDT: rc=$rc"
596         return $rc
597 }
598 run_test 17m "run e2fsck against MDT which contains short/long symlink"
599
600 check_fs_consistency_17n() {
601         local mdt_index
602         local devname
603         local cmd
604         local rc=0
605
606         # create/unlink in 17n only change 2 MDTs(MDT1/MDT2),
607         # so it only check MDT1/MDT2 instead of all of MDTs.
608         for mdt_index in $(seq 1 2); do
609                 devname=$(mdsdevname $mdt_index)
610                 cmd="$E2FSCK -fnvd $devname"
611
612                 echo "stop and checking mds${mdt_index}: $cmd"
613                 # e2fsck should not return error
614                 stop mds${mdt_index}
615                 do_facet mds${mdt_index} $cmd || rc=$?
616
617                 start mds${mdt_index} $devname $MDS_MOUNT_OPTS ||
618                         error "mount mds${mdt_index} failed"
619                 df $MOUNT > /dev/null 2>&1
620                 [ $rc -ne 0 ] && break
621         done
622         return $rc
623 }
624
625 test_17n() {
626         local i
627
628         remote_mds_nodsh && skip "remote MDS with nodsh" && return
629         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] &&
630         [ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.2.93) ] &&
631                 skip "MDS 2.2.0-2.2.93 do not NUL-terminate symlinks" && return
632
633         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
634                 skip "only for ldiskfs MDT" && return 0
635
636         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 2 MDTs" && return
637
638         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
639
640         mkdir $DIR/$tdir
641         for ((i=0; i<10; i++)); do
642                 $LFS mkdir -i1 -c2 $DIR/$tdir/remote_dir_${i} ||
643                         error "create remote dir error $i"
644                 createmany -o $DIR/$tdir/remote_dir_${i}/f 10 ||
645                         error "create files under remote dir failed $i"
646         done
647
648         check_fs_consistency_17n ||
649                 error "e2fsck report error after create files under remote dir"
650
651         for ((i = 0; i < 10; i++)); do
652                 rm -rf $DIR/$tdir/remote_dir_${i} ||
653                         error "destroy remote dir error $i"
654         done
655
656         check_fs_consistency_17n ||
657                 error "e2fsck report error after unlink files under remote dir"
658
659         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.50) ] &&
660                 skip "lustre < 2.4.50 does not support migrate mv " && return
661
662         for ((i = 0; i < 10; i++)); do
663                 mkdir -p $DIR/$tdir/remote_dir_${i}
664                 createmany -o $DIR/$tdir/remote_dir_${i}/f 10 ||
665                         error "create files under remote dir failed $i"
666                 $LFS mv --mdt-index 1 $DIR/$tdir/remote_dir_${i} ||
667                         error "migrate remote dir error $i"
668         done
669         check_fs_consistency_17n || error "e2fsck report error after migration"
670
671         for ((i = 0; i < 10; i++)); do
672                 rm -rf $DIR/$tdir/remote_dir_${i} ||
673                         error "destroy remote dir error $i"
674         done
675
676         check_fs_consistency_17n || error "e2fsck report error after unlink"
677 }
678 run_test 17n "run e2fsck against master/slave MDT which contains remote dir"
679
680 test_17o() {
681         remote_mds_nodsh && skip "remote MDS with nodsh" && return
682         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.64) ] &&
683                 skip "Need MDS version at least 2.3.64" && return
684
685         local WDIR=$DIR/${tdir}o
686         local mdt_index
687         local mdtdevname
688         local rc=0
689
690         mkdir -p $WDIR
691         mdt_index=$($LFS getstripe -M $WDIR)
692         mdt_index=$((mdt_index+1))
693         mdtdevname=$(mdsdevname $mdt_index)
694
695         touch $WDIR/$tfile
696         stop mds${mdt_index}
697         start mds${mdt_index} $mdtdevname $MDS_MOUNT_OPTS ||
698                 error "mount mds${mdt_index} failed"
699
700         #define OBD_FAIL_OSD_LMA_INCOMPAT 0x194
701         do_facet mds${mdt_index} lctl set_param fail_loc=0x194
702         ls -l $WDIR/$tfile && rc=1
703         do_facet mds${mdt_index} lctl set_param fail_loc=0
704         [[ $rc -ne 0 ]] && error "stat file should fail"
705         true
706 }
707 run_test 17o "stat file with incompat LMA feature"
708
709 test_18() {
710         touch $DIR/$tfile || error "Failed to touch $DIR/$tfile: $?"
711         ls $DIR || error "Failed to ls $DIR: $?"
712 }
713 run_test 18 "touch .../f ; ls ... =============================="
714
715 test_19a() {
716         touch $DIR/$tfile
717         ls -l $DIR
718         rm $DIR/$tfile
719         $CHECKSTAT -a $DIR/$tfile || error "$tfile was not removed"
720 }
721 run_test 19a "touch .../f19 ; ls -l ... ; rm .../f19 ==========="
722
723 test_19b() {
724         ls -l $DIR/$tfile && error "ls -l $tfile failed"|| true
725 }
726 run_test 19b "ls -l .../f19 (should return error) =============="
727
728 test_19c() {
729         [ $RUNAS_ID -eq $UID ] &&
730                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
731         $RUNAS touch $DIR/$tfile && error "create non-root file failed" || true
732 }
733 run_test 19c "$RUNAS touch .../f19 (should return error) =="
734
735 test_19d() {
736         cat $DIR/f19 && error || true
737 }
738 run_test 19d "cat .../f19 (should return error) =============="
739
740 test_20() {
741         touch $DIR/$tfile
742         rm $DIR/$tfile
743         log "1 done"
744         touch $DIR/$tfile
745         rm $DIR/$tfile
746         log "2 done"
747         touch $DIR/$tfile
748         rm $DIR/$tfile
749         log "3 done"
750         $CHECKSTAT -a $DIR/$tfile || error "$tfile was not removed"
751 }
752 run_test 20 "touch .../f ; ls -l ... ==========================="
753
754 test_21() {
755         test_mkdir -p $DIR/$tdir
756         [ -f $DIR/$tdir/dangle ] && rm -f $DIR/$tdir/dangle
757         ln -s dangle $DIR/$tdir/link
758         echo foo >> $DIR/$tdir/link
759         cat $DIR/$tdir/dangle
760         $CHECKSTAT -t link $DIR/$tdir/link || error "$tdir/link not a link"
761         $CHECKSTAT -f -t file $DIR/$tdir/link ||
762                 error "$tdir/link not linked to a file"
763 }
764 run_test 21 "write to dangling link ============================"
765
766 test_22() {
767         WDIR=$DIR/$tdir
768         test_mkdir -p $DIR/$tdir
769         chown $RUNAS_ID:$RUNAS_GID $WDIR
770         (cd $WDIR || error "cd $WDIR failed";
771         $RUNAS tar cf - /etc/hosts /etc/sysconfig/network | \
772         $RUNAS tar xf -)
773         ls -lR $WDIR/etc || error "ls -lR $WDIR/etc failed"
774         $CHECKSTAT -t dir $WDIR/etc || error "checkstat -t dir failed"
775         $CHECKSTAT -u \#$RUNAS_ID -g \#$RUNAS_GID $WDIR/etc || error "checkstat -u failed"
776 }
777 run_test 22 "unpack tar archive as non-root user ==============="
778
779 # was test_23
780 test_23a() {
781         test_mkdir -p $DIR/$tdir
782         local file=$DIR/$tdir/$tfile
783
784         openfile -f O_CREAT:O_EXCL $file || error "$file create failed"
785         openfile -f O_CREAT:O_EXCL $file &&
786                 error "$file recreate succeeded" || true
787 }
788 run_test 23a "O_CREAT|O_EXCL in subdir =========================="
789
790 test_23b() { # bug 18988
791         test_mkdir -p $DIR/$tdir
792         local file=$DIR/$tdir/$tfile
793
794         rm -f $file
795         echo foo > $file || error "write filed"
796         echo bar >> $file || error "append filed"
797         $CHECKSTAT -s 8 $file || error "wrong size"
798         rm $file
799 }
800 run_test 23b "O_APPEND check =========================="
801
802 # rename sanity
803 test_24a() {
804         echo '-- same directory rename'
805         test_mkdir $DIR/$tdir
806         touch $DIR/$tdir/$tfile.1
807         mv $DIR/$tdir/$tfile.1 $DIR/$tdir/$tfile.2
808         $CHECKSTAT -t file $DIR/$tdir/$tfile.2 || error "$tfile.2 not a file"
809 }
810 run_test 24a "rename file to non-existent target"
811
812 test_24b() {
813         test_mkdir $DIR/$tdir
814         touch $DIR/$tdir/$tfile.{1,2}
815         mv $DIR/$tdir/$tfile.1 $DIR/$tdir/$tfile.2
816         $CHECKSTAT -a $DIR/$tdir/$tfile.1 || error "$tfile.1 exists"
817         $CHECKSTAT -t file $DIR/$tdir/$tfile.2 || error "$tfile.2 not a file"
818 }
819 run_test 24b "rename file to existing target"
820
821 test_24c() {
822         test_mkdir $DIR/$tdir
823         test_mkdir $DIR/$tdir/d$testnum.1
824         mv $DIR/$tdir/d$testnum.1 $DIR/$tdir/d$testnum.2
825         $CHECKSTAT -a $DIR/$tdir/d$testnum.1 || error "d$testnum.1 exists"
826         $CHECKSTAT -t dir $DIR/$tdir/d$testnum.2 || error "d$testnum.2 not dir"
827 }
828 run_test 24c "rename directory to non-existent target"
829
830 test_24d() {
831         test_mkdir -c1 $DIR/$tdir
832         test_mkdir -c1 $DIR/$tdir/d$testnum.1
833         test_mkdir -c1 $DIR/$tdir/d$testnum.2
834         mrename $DIR/$tdir/d$testnum.1 $DIR/$tdir/d$testnum.2
835         $CHECKSTAT -a $DIR/$tdir/d$testnum.1 || error "d$testnum.1 exists"
836         $CHECKSTAT -t dir $DIR/$tdir/d$testnum.2 || error "d$testnum.2 not dir"
837 }
838 run_test 24d "rename directory to existing target"
839
840 test_24e() {
841         echo '-- cross directory renames --'
842         test_mkdir $DIR/R5a
843         test_mkdir $DIR/R5b
844         touch $DIR/R5a/f
845         mv $DIR/R5a/f $DIR/R5b/g
846         $CHECKSTAT -a $DIR/R5a/f || error
847         $CHECKSTAT -t file $DIR/R5b/g || error
848 }
849 run_test 24e "touch .../R5a/f; rename .../R5a/f .../R5b/g ======"
850
851 test_24f() {
852         test_mkdir $DIR/R6a
853         test_mkdir $DIR/R6b
854         touch $DIR/R6a/f $DIR/R6b/g
855         mv $DIR/R6a/f $DIR/R6b/g
856         $CHECKSTAT -a $DIR/R6a/f || error
857         $CHECKSTAT -t file $DIR/R6b/g || error
858 }
859 run_test 24f "touch .../R6a/f R6b/g; mv .../R6a/f .../R6b/g ===="
860
861 test_24g() {
862         test_mkdir $DIR/R7a
863         test_mkdir $DIR/R7b
864         test_mkdir $DIR/R7a/d
865         mv $DIR/R7a/d $DIR/R7b/e
866         $CHECKSTAT -a $DIR/R7a/d || error
867         $CHECKSTAT -t dir $DIR/R7b/e || error
868 }
869 run_test 24g "mkdir .../R7{a,b}/d; mv .../R7a/d .../R7b/e ======"
870
871 test_24h() {
872         test_mkdir -c1 $DIR/R8a
873         test_mkdir -c1 $DIR/R8b
874         test_mkdir -c1 $DIR/R8a/d
875         test_mkdir -c1 $DIR/R8b/e
876         mrename $DIR/R8a/d $DIR/R8b/e
877         $CHECKSTAT -a $DIR/R8a/d || error
878         $CHECKSTAT -t dir $DIR/R8b/e || error
879 }
880 run_test 24h "mkdir .../R8{a,b}/{d,e}; rename .../R8a/d .../R8b/e"
881
882 test_24i() {
883         echo "-- rename error cases"
884         test_mkdir $DIR/R9
885         test_mkdir $DIR/R9/a
886         touch $DIR/R9/f
887         mrename $DIR/R9/f $DIR/R9/a
888         $CHECKSTAT -t file $DIR/R9/f || error
889         $CHECKSTAT -t dir  $DIR/R9/a || error
890         $CHECKSTAT -a $DIR/R9/a/f || error
891 }
892 run_test 24i "rename file to dir error: touch f ; mkdir a ; rename f a"
893
894 test_24j() {
895         test_mkdir $DIR/R10
896         mrename $DIR/R10/f $DIR/R10/g
897         $CHECKSTAT -t dir $DIR/R10 || error
898         $CHECKSTAT -a $DIR/R10/f || error
899         $CHECKSTAT -a $DIR/R10/g || error
900 }
901 run_test 24j "source does not exist ============================"
902
903 test_24k() {
904         test_mkdir $DIR/R11a
905         test_mkdir $DIR/R11a/d
906         touch $DIR/R11a/f
907         mv $DIR/R11a/f $DIR/R11a/d
908         $CHECKSTAT -a $DIR/R11a/f || error
909         $CHECKSTAT -t file $DIR/R11a/d/f || error
910 }
911 run_test 24k "touch .../R11a/f; mv .../R11a/f .../R11a/d ======="
912
913 # bug 2429 - rename foo foo foo creates invalid file
914 test_24l() {
915         f="$DIR/f24l"
916         $MULTIOP $f OcNs || error
917 }
918 run_test 24l "Renaming a file to itself ========================"
919
920 test_24m() {
921         f="$DIR/f24m"
922         $MULTIOP $f OcLN ${f}2 ${f}2 || error "link ${f}2 ${f}2 failed"
923         # on ext3 this does not remove either the source or target files
924         # though the "expected" operation would be to remove the source
925         $CHECKSTAT -t file ${f} || error "${f} missing"
926         $CHECKSTAT -t file ${f}2 || error "${f}2 missing"
927 }
928 run_test 24m "Renaming a file to a hard link to itself ========="
929
930 test_24n() {
931     f="$DIR/f24n"
932     # this stats the old file after it was renamed, so it should fail
933     touch ${f}
934     $CHECKSTAT ${f}
935     mv ${f} ${f}.rename
936     $CHECKSTAT ${f}.rename
937     $CHECKSTAT -a ${f}
938 }
939 run_test 24n "Statting the old file after renaming (Posix rename 2)"
940
941 test_24o() {
942         test_mkdir -p $DIR/d24o
943         rename_many -s random -v -n 10 $DIR/d24o
944 }
945 run_test 24o "rename of files during htree split ==============="
946
947 test_24p() {
948         test_mkdir $DIR/R12a
949         test_mkdir $DIR/R12b
950         DIRINO=`ls -lid $DIR/R12a | awk '{ print $1 }'`
951         mrename $DIR/R12a $DIR/R12b
952         $CHECKSTAT -a $DIR/R12a || error
953         $CHECKSTAT -t dir $DIR/R12b || error
954         DIRINO2=`ls -lid $DIR/R12b | awk '{ print $1 }'`
955         [ "$DIRINO" = "$DIRINO2" ] || error "R12a $DIRINO != R12b $DIRINO2"
956 }
957 run_test 24p "mkdir .../R12{a,b}; rename .../R12a .../R12b"
958
959 cleanup_multiop_pause() {
960         trap 0
961         kill -USR1 $MULTIPID
962 }
963
964 test_24q() {
965         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
966         test_mkdir $DIR/R13a
967         test_mkdir $DIR/R13b
968         local DIRINO=$(ls -lid $DIR/R13a | awk '{ print $1 }')
969         multiop_bg_pause $DIR/R13b D_c || error "multiop failed to start"
970         MULTIPID=$!
971
972         trap cleanup_multiop_pause EXIT
973         mrename $DIR/R13a $DIR/R13b
974         $CHECKSTAT -a $DIR/R13a || error "R13a still exists"
975         $CHECKSTAT -t dir $DIR/R13b || error "R13b does not exist"
976         local DIRINO2=$(ls -lid $DIR/R13b | awk '{ print $1 }')
977         [ "$DIRINO" = "$DIRINO2" ] || error "R13a $DIRINO != R13b $DIRINO2"
978         cleanup_multiop_pause
979         wait $MULTIPID || error "multiop close failed"
980 }
981 run_test 24q "mkdir .../R13{a,b}; open R13b rename R13a R13b ==="
982
983 test_24r() { #bug 3789
984         test_mkdir $DIR/R14a
985         test_mkdir $DIR/R14a/b
986         mrename $DIR/R14a $DIR/R14a/b && error "rename to subdir worked!"
987         $CHECKSTAT -t dir $DIR/R14a || error "$DIR/R14a missing"
988         $CHECKSTAT -t dir $DIR/R14a/b || error "$DIR/R14a/b missing"
989 }
990 run_test 24r "mkdir .../R14a/b; rename .../R14a .../R14a/b ====="
991
992 test_24s() {
993         test_mkdir $DIR/R15a
994         test_mkdir $DIR/R15a/b
995         test_mkdir $DIR/R15a/b/c
996         mrename $DIR/R15a $DIR/R15a/b/c && error "rename to sub-subdir worked!"
997         $CHECKSTAT -t dir $DIR/R15a || error "$DIR/R15a missing"
998         $CHECKSTAT -t dir $DIR/R15a/b/c || error "$DIR/R15a/b/c missing"
999 }
1000 run_test 24s "mkdir .../R15a/b/c; rename .../R15a .../R15a/b/c ="
1001 test_24t() {
1002         test_mkdir $DIR/R16a
1003         test_mkdir $DIR/R16a/b
1004         test_mkdir $DIR/R16a/b/c
1005         mrename $DIR/R16a/b/c $DIR/R16a && error "rename to sub-subdir worked!"
1006         $CHECKSTAT -t dir $DIR/R16a || error "$DIR/R16a missing"
1007         $CHECKSTAT -t dir $DIR/R16a/b/c || error "$DIR/R16a/b/c missing"
1008 }
1009 run_test 24t "mkdir .../R16a/b/c; rename .../R16a/b/c .../R16a ="
1010
1011 test_24u() { # bug12192
1012         $MULTIOP $DIR/$tfile C2w$((2048 * 1024))c || error
1013         $CHECKSTAT -s $((2048 * 1024)) $DIR/$tfile || error "wrong file size"
1014 }
1015 run_test 24u "create stripe file"
1016
1017 page_size() {
1018         getconf PAGE_SIZE
1019 }
1020
1021 simple_cleanup_common() {
1022         trap 0
1023         rm -rf $DIR/$tdir
1024         wait_delete_completed
1025 }
1026
1027 max_pages_per_rpc() {
1028         $LCTL get_param -n mdc.*.max_pages_per_rpc | head -n1
1029 }
1030
1031 test_24v() {
1032         local NRFILES=100000
1033         local FREE_INODES=$(mdt_free_inodes 0)
1034         [[ $FREE_INODES -lt $NRFILES ]] &&
1035                 skip "not enough free inodes $FREE_INODES required $NRFILES" &&
1036                 return
1037
1038         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1039         trap simple_cleanup_common EXIT
1040
1041         # Performance issue on ZFS see LU-4072 (c.f. LU-2887)
1042         [ $(facet_fstype $SINGLEMDS) = "zfs" ] && NRFILES=10000
1043
1044         mkdir -p $DIR/$tdir
1045         createmany -m $DIR/$tdir/$tfile $NRFILES
1046
1047         cancel_lru_locks mdc
1048         lctl set_param mdc.*.stats clear
1049
1050         ls $DIR/$tdir >/dev/null || error "error in listing large dir"
1051
1052         # LU-5 large readdir
1053         # DIRENT_SIZE = 32 bytes for sizeof(struct lu_dirent) +
1054         #               8 bytes for name(filename is mostly 5 in this test) +
1055         #               8 bytes for luda_type
1056         # take into account of overhead in lu_dirpage header and end mark in
1057         # each page, plus one in RPC_NUM calculation.
1058         DIRENT_SIZE=48
1059         RPC_SIZE=$(($(max_pages_per_rpc) * $(page_size)))
1060         RPC_NUM=$(((NRFILES * DIRENT_SIZE + RPC_SIZE - 1) / RPC_SIZE + 1))
1061         mds_readpage=$(lctl get_param mdc.*MDT0000*.stats |
1062                                 awk '/^mds_readpage/ {print $2}')
1063         [[ $mds_readpage -gt $RPC_NUM ]] &&
1064                 error "large readdir doesn't take effect"
1065
1066         simple_cleanup_common
1067 }
1068 run_test 24v "list directory with large files (handle hash collision, bug: 17560)"
1069
1070 test_24w() { # bug21506
1071         SZ1=234852
1072         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=4096 || return 1
1073         dd if=/dev/zero bs=$SZ1 count=1 >> $DIR/$tfile || return 2
1074         dd if=$DIR/$tfile of=$DIR/${tfile}_left bs=1M skip=4097 || return 3
1075         SZ2=`ls -l $DIR/${tfile}_left | awk '{print $5}'`
1076         [[ "$SZ1" -eq "$SZ2" ]] ||
1077                 error "Error reading at the end of the file $tfile"
1078 }
1079 run_test 24w "Reading a file larger than 4Gb"
1080
1081 test_24x() {
1082         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 2 MDTs" && return
1083         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1084         local MDTIDX=1
1085         local remote_dir=$DIR/$tdir/remote_dir
1086
1087         mkdir -p $DIR/$tdir
1088         $LFS mkdir -i $MDTIDX $remote_dir ||
1089                 error "create remote directory failed"
1090
1091         mkdir -p $DIR/$tdir/src_dir
1092         touch $DIR/$tdir/src_file
1093         mkdir -p $remote_dir/tgt_dir
1094         touch $remote_dir/tgt_file
1095
1096         mrename $remote_dir $DIR/ &&
1097                 error "rename dir cross MDT works!"
1098
1099         mrename $DIR/$tdir/src_dir $remote_dir/tgt_dir &&
1100                 error "rename dir cross MDT works!"
1101
1102         mrename $DIR/$tdir/src_file $remote_dir/tgt_file &&
1103                 error "rename file cross MDT works!"
1104
1105         ln $DIR/$tdir/src_file $remote_dir/tgt_file1 &&
1106                 error "ln file cross MDT should not work!"
1107
1108         rm -rf $DIR/$tdir || error "Can not delete directories"
1109 }
1110 run_test 24x "cross rename/link should be failed"
1111
1112 test_24y() {
1113         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 2 MDTs" && return
1114         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1115         local MDTIDX=1
1116         local remote_dir=$DIR/$tdir/remote_dir
1117
1118         mkdir -p $DIR/$tdir
1119         $LFS mkdir -i $MDTIDX $remote_dir ||
1120                    error "create remote directory failed"
1121
1122         mkdir -p $remote_dir/src_dir
1123         touch $remote_dir/src_file
1124         mkdir -p $remote_dir/tgt_dir
1125         touch $remote_dir/tgt_file
1126
1127         mrename $remote_dir/src_dir $remote_dir/tgt_dir ||
1128                 error "rename subdir in the same remote dir failed!"
1129
1130         mrename $remote_dir/src_file $remote_dir/tgt_file ||
1131                 error "rename files in the same remote dir failed!"
1132
1133         ln $remote_dir/tgt_file $remote_dir/tgt_file1 ||
1134                 error "link files in the same remote dir failed!"
1135
1136         rm -rf $DIR/$tdir || error "Can not delete directories"
1137 }
1138 run_test 24y "rename/link on the same dir should succeed"
1139
1140 test_24z() {
1141         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 2 MDTs" && return
1142         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1143         local MDTIDX=1
1144         local remote_src=$DIR/$tdir/remote_dir
1145         local remote_tgt=$DIR/$tdir/remote_tgt
1146
1147         mkdir -p $DIR/$tdir
1148         $LFS mkdir -i $MDTIDX $remote_src ||
1149                    error "create remote directory failed"
1150
1151         $LFS mkdir -i $MDTIDX $remote_tgt ||
1152                    error "create remote directory failed"
1153
1154         mrename $remote_src $remote_tgt &&
1155                 error "rename remote dirs should not work!"
1156
1157         # If target dir does not exists, it should succeed
1158         rm -rf $remote_tgt
1159         mrename $remote_src $remote_tgt ||
1160                 error "rename remote dirs(tgt dir does not exists) failed!"
1161
1162         rm -rf $DIR/$tdir || error "Can not delete directories"
1163 }
1164 run_test 24z "rename one remote dir to another remote dir should fail"
1165
1166 test_24A() { # LU-3182
1167         local NFILES=5000
1168
1169         rm -rf $DIR/$tdir
1170         mkdir -p $DIR/$tdir
1171         createmany -m $DIR/$tdir/$tfile $NFILES
1172         local t=$(ls $DIR/$tdir | wc -l)
1173         local u=$(ls $DIR/$tdir | sort -u | wc -l)
1174         local v=$(ls -ai $DIR/$tdir | sort -u | wc -l)
1175         if [ $t -ne $NFILES -o $u -ne $NFILES -o $v -ne $((NFILES + 2)) ] ; then
1176                 error "Expected $NFILES files, got $t ($u unique $v .&..)"
1177         fi
1178
1179         rm -rf $DIR/$tdir || error "Can not delete directories"
1180 }
1181 run_test 24A "readdir() returns correct number of entries."
1182
1183 test_24B() { # LU-4805
1184         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
1185         local count
1186
1187         mkdir $DIR/$tdir
1188         $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/striped_dir ||
1189                 error "create striped dir failed"
1190
1191         count=$(ls -ai $DIR/$tdir/striped_dir | wc -l)
1192         [ $count -eq 2 ] || error "Expected 2, got $count"
1193
1194         touch $DIR/$tdir/striped_dir/a
1195
1196         count=$(ls -ai $DIR/$tdir/striped_dir | wc -l)
1197         [ $count -eq 3 ] || error "Expected 3, got $count"
1198
1199         touch $DIR/$tdir/striped_dir/.f
1200
1201         count=$(ls -ai $DIR/$tdir/striped_dir | wc -l)
1202         [ $count -eq 4 ] || error "Expected 4, got $count"
1203
1204         rm -rf $DIR/$tdir || error "Can not delete directories"
1205 }
1206 run_test 24B "readdir for striped dir return correct number of entries"
1207
1208 test_24C() {
1209         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
1210
1211         mkdir $DIR/$tdir
1212         mkdir $DIR/$tdir/d0
1213         mkdir $DIR/$tdir/d1
1214
1215         $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/d0/striped_dir ||
1216                 error "create striped dir failed"
1217
1218         cd $DIR/$tdir/d0/striped_dir
1219
1220         local d0_ino=$(ls -i -l -a $DIR/$tdir | grep "d0" | awk '{print $1}')
1221         local d1_ino=$(ls -i -l -a $DIR/$tdir | grep "d1" | awk '{print $1}')
1222         local parent_ino=$(ls -i -l -a | grep "\.\." | awk '{print $1}')
1223
1224         [ "$d0_ino" = "$parent_ino" ] ||
1225                 error ".. wrong, expect $d0_ino, get $parent_ino"
1226
1227         mv $DIR/$tdir/d0/striped_dir $DIR/$tdir/d1/ ||
1228                 error "mv striped dir failed"
1229
1230         parent_ino=$(ls -i -l -a | grep "\.\." | awk '{print $1}')
1231
1232         [ "$d1_ino" = "$parent_ino" ] ||
1233                 error ".. wrong after mv, expect $d1_ino, get $parent_ino"
1234 }
1235 run_test 24C "check .. in striped dir"
1236
1237 test_24D() { # LU-6101
1238         local NFILES=50000
1239
1240         rm -rf $DIR/$tdir
1241         mkdir -p $DIR/$tdir
1242         createmany -m $DIR/$tdir/$tfile $NFILES
1243         local t=$(ls $DIR/$tdir | wc -l)
1244         local u=$(ls $DIR/$tdir | sort -u | wc -l)
1245         local v=$(ls -ai $DIR/$tdir | sort -u | wc -l)
1246         if [ $t -ne $NFILES -o $u -ne $NFILES -o $v -ne $((NFILES + 2)) ] ; then
1247                 error "Expected $NFILES files, got $t ($u unique $v .&..)"
1248         fi
1249
1250         rm -rf $DIR/$tdir || error "Can not delete directories"
1251 }
1252 run_test 24D "readdir() returns correct number of entries after cursor reload"
1253
1254 test_25a() {
1255         echo '== symlink sanity ============================================='
1256
1257         test_mkdir $DIR/d25
1258         ln -s d25 $DIR/s25
1259         touch $DIR/s25/foo || error
1260 }
1261 run_test 25a "create file in symlinked directory ==============="
1262
1263 test_25b() {
1264         [ ! -d $DIR/d25 ] && test_25a
1265         $CHECKSTAT -t file $DIR/s25/foo || error
1266 }
1267 run_test 25b "lookup file in symlinked directory ==============="
1268
1269 test_26a() {
1270         test_mkdir $DIR/d26
1271         test_mkdir $DIR/d26/d26-2
1272         ln -s d26/d26-2 $DIR/s26
1273         touch $DIR/s26/foo || error
1274 }
1275 run_test 26a "multiple component symlink ======================="
1276
1277 test_26b() {
1278         test_mkdir -p $DIR/d26b/d26-2
1279         ln -s d26b/d26-2/foo $DIR/s26-2
1280         touch $DIR/s26-2 || error
1281 }
1282 run_test 26b "multiple component symlink at end of lookup ======"
1283
1284 test_26c() {
1285         test_mkdir $DIR/d26.2
1286         touch $DIR/d26.2/foo
1287         ln -s d26.2 $DIR/s26.2-1
1288         ln -s s26.2-1 $DIR/s26.2-2
1289         ln -s s26.2-2 $DIR/s26.2-3
1290         chmod 0666 $DIR/s26.2-3/foo
1291 }
1292 run_test 26c "chain of symlinks ================================"
1293
1294 # recursive symlinks (bug 439)
1295 test_26d() {
1296         ln -s d26-3/foo $DIR/d26-3
1297 }
1298 run_test 26d "create multiple component recursive symlink ======"
1299
1300 test_26e() {
1301         [ ! -h $DIR/d26-3 ] && test_26d
1302         rm $DIR/d26-3
1303 }
1304 run_test 26e "unlink multiple component recursive symlink ======"
1305
1306 # recursive symlinks (bug 7022)
1307 test_26f() {
1308         test_mkdir -p $DIR/$tdir
1309         test_mkdir $DIR/$tdir/$tfile   || error "mkdir $DIR/$tdir/$tfile failed"
1310         cd $DIR/$tdir/$tfile           || error "cd $DIR/$tdir/$tfile failed"
1311         test_mkdir -p lndir/bar1      || error "mkdir lndir/bar1 failed"
1312         test_mkdir $DIR/$tdir/$tfile/$tfile   || error "mkdir $tfile failed"
1313         cd $tfile                || error "cd $tfile failed"
1314         ln -s .. dotdot          || error "ln dotdot failed"
1315         ln -s dotdot/lndir lndir || error "ln lndir failed"
1316         cd $DIR/$tdir                 || error "cd $DIR/$tdir failed"
1317         output=`ls $tfile/$tfile/lndir/bar1`
1318         [ "$output" = bar1 ] && error "unexpected output"
1319         rm -r $tfile             || error "rm $tfile failed"
1320         $CHECKSTAT -a $DIR/$tfile || error "$tfile not gone"
1321 }
1322 run_test 26f "rm -r of a directory which has recursive symlink ="
1323
1324 test_27a() {
1325         echo '== stripe sanity =============================================='
1326         test_mkdir -p $DIR/d27 || error "mkdir failed"
1327         $GETSTRIPE $DIR/d27
1328         $SETSTRIPE -c 1 $DIR/d27/f0 || error "setstripe failed"
1329         $CHECKSTAT -t file $DIR/d27/f0 || error "checkstat failed"
1330         log "== test_27a: write to one stripe file ========================="
1331         cp /etc/hosts $DIR/d27/f0 || error
1332 }
1333 run_test 27a "one stripe file =================================="
1334
1335 test_27b() {
1336         [[ $OSTCOUNT -lt 2 ]] && skip_env "skipping 2-stripe test" && return
1337         test_mkdir -p $DIR/d27
1338         $SETSTRIPE -c 2 $DIR/d27/f01 || error "setstripe failed"
1339         $GETSTRIPE -c $DIR/d27/f01
1340         [ $($GETSTRIPE -c $DIR/d27/f01) -eq 2 ] ||
1341                 error "two-stripe file doesn't have two stripes"
1342
1343         dd if=/dev/zero of=$DIR/d27/f01 bs=4k count=4 || error "dd failed"
1344 }
1345 run_test 27b "create and write to two stripe file"
1346
1347 test_27d() {
1348         test_mkdir -p $DIR/d27
1349         $SETSTRIPE -c 0 -i -1 -S 0 $DIR/d27/fdef || error "setstripe failed"
1350         $CHECKSTAT -t file $DIR/d27/fdef || error "checkstat failed"
1351         dd if=/dev/zero of=$DIR/d27/fdef bs=4k count=4 || error
1352 }
1353 run_test 27d "create file with default settings ================"
1354
1355 test_27e() {
1356         test_mkdir -p $DIR/d27
1357         $SETSTRIPE -c 2 $DIR/d27/f12 || error "setstripe failed"
1358         $SETSTRIPE -c 2 $DIR/d27/f12 && error "setstripe succeeded twice"
1359         $CHECKSTAT -t file $DIR/d27/f12 || error "checkstat failed"
1360 }
1361 run_test 27e "setstripe existing file (should return error) ======"
1362
1363 test_27f() {
1364         test_mkdir $DIR/$tdir
1365         $SETSTRIPE -S 100 -i 0 -c 1 $DIR/$tdir/$tfile &&
1366                 error "$SETSTRIPE $DIR/$tdir/$tfile failed"
1367         $CHECKSTAT -t file $DIR/$tdir/$tfile &&
1368                 error "$CHECKSTAT -t file $DIR/$tdir/$tfile should fail"
1369         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=4k count=4 || error "dd failed"
1370         $GETSTRIPE $DIR/$tdir/$tfile || error "$GETSTRIPE failed"
1371 }
1372 run_test 27f "setstripe with bad stripe size (should return error)"
1373
1374 test_27g() {
1375         test_mkdir -p $DIR/d27
1376         $MCREATE $DIR/d27/fnone || error "mcreate failed"
1377         $GETSTRIPE $DIR/d27/fnone 2>&1 | grep "no stripe info" ||
1378                 error "$DIR/d27/fnone has object"
1379 }
1380 run_test 27g "$GETSTRIPE with no objects"
1381
1382 test_27i() {
1383         test_mkdir $DIR/$tdir
1384         touch $DIR/$tdir/$tfile || error "touch failed"
1385         [[ $($GETSTRIPE -c $DIR/$tdir/$tfile) -gt 0 ]] ||
1386                 error "missing objects"
1387 }
1388 run_test 27i "$GETSTRIPE with some objects"
1389
1390 test_27j() {
1391         test_mkdir -p $DIR/d27
1392         $SETSTRIPE -i $OSTCOUNT $DIR/d27/f27j && error "setstripe failed"||true
1393 }
1394 run_test 27j "setstripe with bad stripe offset (should return error)"
1395
1396 test_27k() { # bug 2844
1397         test_mkdir -p $DIR/d27
1398         FILE=$DIR/d27/f27k
1399         LL_MAX_BLKSIZE=$((4 * 1024 * 1024))
1400         [ ! -d $DIR/d27 ] && test_mkdir -p $DIR d27
1401         $SETSTRIPE -S 67108864 $FILE || error "setstripe failed"
1402         BLKSIZE=`stat $FILE | awk '/IO Block:/ { print $7 }'`
1403         [ $BLKSIZE -le $LL_MAX_BLKSIZE ] || error "1:$BLKSIZE > $LL_MAX_BLKSIZE"
1404         dd if=/dev/zero of=$FILE bs=4k count=1
1405         BLKSIZE=`stat $FILE | awk '/IO Block:/ { print $7 }'`
1406         [ $BLKSIZE -le $LL_MAX_BLKSIZE ] || error "2:$BLKSIZE > $LL_MAX_BLKSIZE"
1407 }
1408 run_test 27k "limit i_blksize for broken user apps ============="
1409
1410 test_27l() {
1411         test_mkdir -p $DIR/d27
1412         mcreate $DIR/f27l || error "creating file"
1413         $RUNAS $SETSTRIPE -c 1 $DIR/f27l && \
1414                 error "setstripe should have failed" || true
1415 }
1416 run_test 27l "check setstripe permissions (should return error)"
1417
1418 test_27m() {
1419         [[ $OSTCOUNT -lt 2 ]] && skip_env "$OSTCOUNT < 2 OSTs -- skipping" &&
1420                 return
1421         if [[ $ORIGFREE -gt $MAXFREE ]]; then
1422                 skip "$ORIGFREE > $MAXFREE skipping out-of-space test on OST0"
1423                 return
1424         fi
1425         trap simple_cleanup_common EXIT
1426         test_mkdir -p $DIR/$tdir
1427         $SETSTRIPE -i 0 -c 1 $DIR/$tdir/f27m_1
1428         dd if=/dev/zero of=$DIR/$tdir/f27m_1 bs=1024 count=$MAXFREE &&
1429                 error "dd should fill OST0"
1430         i=2
1431         while $SETSTRIPE -i 0 -c 1 $DIR/$tdir/f27m_$i; do
1432                 i=$((i + 1))
1433                 [ $i -gt 256 ] && break
1434         done
1435         i=$((i + 1))
1436         touch $DIR/$tdir/f27m_$i
1437         [ `$GETSTRIPE $DIR/$tdir/f27m_$i | grep -A 10 obdidx | awk '{print $1}'| grep -w "0"` ] &&
1438                 error "OST0 was full but new created file still use it"
1439         i=$((i + 1))
1440         touch $DIR/$tdir/f27m_$i
1441         [ `$GETSTRIPE $DIR/$tdir/f27m_$i | grep -A 10 obdidx | awk '{print $1}'| grep -w "0"` ] &&
1442                 error "OST0 was full but new created file still use it"
1443         simple_cleanup_common
1444 }
1445 run_test 27m "create file while OST0 was full =================="
1446
1447 sleep_maxage() {
1448         local DELAY=$(do_facet $SINGLEMDS lctl get_param -n lov.*.qos_maxage | head -n 1 | awk '{print $1 * 2}')
1449         sleep $DELAY
1450 }
1451
1452 # OSCs keep a NOSPC flag that will be reset after ~5s (qos_maxage)
1453 # if the OST isn't full anymore.
1454 reset_enospc() {
1455         local OSTIDX=${1:-""}
1456
1457         local list=$(comma_list $(osts_nodes))
1458         [ "$OSTIDX" ] && list=$(facet_host ost$((OSTIDX + 1)))
1459
1460         do_nodes $list lctl set_param fail_loc=0
1461         sync    # initiate all OST_DESTROYs from MDS to OST
1462         sleep_maxage
1463 }
1464
1465 exhaust_precreations() {
1466         local OSTIDX=$1
1467         local FAILLOC=$2
1468         local FAILIDX=${3:-$OSTIDX}
1469         local ofacet=ost$((OSTIDX + 1))
1470
1471         test_mkdir -p -c1 $DIR/$tdir
1472         local mdtidx=$($LFS getstripe -M $DIR/$tdir)
1473         local mfacet=mds$((mdtidx + 1))
1474         echo OSTIDX=$OSTIDX MDTIDX=$mdtidx
1475
1476         local OST=$(ostname_from_index $OSTIDX)
1477
1478         # on the mdt's osc
1479         local mdtosc_proc1=$(get_mdtosc_proc_path $mfacet $OST)
1480         local last_id=$(do_facet $mfacet lctl get_param -n \
1481                         osc.$mdtosc_proc1.prealloc_last_id)
1482         local next_id=$(do_facet $mfacet lctl get_param -n \
1483                         osc.$mdtosc_proc1.prealloc_next_id)
1484
1485         local mdtosc_proc2=$(get_mdtosc_proc_path $mfacet)
1486         do_facet $mfacet lctl get_param osc.$mdtosc_proc2.prealloc*
1487
1488         test_mkdir -p $DIR/$tdir/${OST}
1489         $SETSTRIPE -i $OSTIDX -c 1 $DIR/$tdir/${OST}
1490 #define OBD_FAIL_OST_ENOSPC              0x215
1491         do_facet $ofacet lctl set_param fail_val=$FAILIDX fail_loc=0x215
1492         echo "Creating to objid $last_id on ost $OST..."
1493         createmany -o $DIR/$tdir/${OST}/f $next_id $((last_id - next_id + 2))
1494         do_facet $mfacet lctl get_param osc.$mdtosc_proc2.prealloc*
1495         do_facet $ofacet lctl set_param fail_loc=$FAILLOC
1496         sleep_maxage
1497 }
1498
1499 exhaust_all_precreations() {
1500         local i
1501         for (( i=0; i < OSTCOUNT; i++ )) ; do
1502                 exhaust_precreations $i $1 -1
1503         done
1504 }
1505
1506 test_27n() {
1507         [[ $OSTCOUNT -lt 2 ]] && skip_env "too few OSTs" && return
1508         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1509         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1510         remote_ost_nodsh && skip "remote OST with nodsh" && return
1511
1512         reset_enospc
1513         rm -f $DIR/$tdir/$tfile
1514         exhaust_precreations 0 0x80000215
1515         $SETSTRIPE -c -1 $DIR/$tdir
1516         touch $DIR/$tdir/$tfile || error
1517         $GETSTRIPE $DIR/$tdir/$tfile
1518         reset_enospc
1519 }
1520 run_test 27n "create file with some full OSTs =================="
1521
1522 test_27o() {
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_all_precreations 0x215
1531
1532         touch $DIR/$tdir/$tfile && error "able to create $DIR/$tdir/$tfile"
1533
1534         reset_enospc
1535         rm -rf $DIR/$tdir/*
1536 }
1537 run_test 27o "create file with all full OSTs (should error) ===="
1538
1539 test_27p() {
1540         [[ $OSTCOUNT -lt 2 ]] && skip_env "too few OSTs" && return
1541         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1542         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1543         remote_ost_nodsh && skip "remote OST with nodsh" && return
1544
1545         reset_enospc
1546         rm -f $DIR/$tdir/$tfile
1547         test_mkdir -p $DIR/$tdir
1548
1549         $MCREATE $DIR/$tdir/$tfile || error "mcreate failed"
1550         $TRUNCATE $DIR/$tdir/$tfile 80000000 || error "truncate failed"
1551         $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat failed"
1552
1553         exhaust_precreations 0 0x80000215
1554         echo foo >> $DIR/$tdir/$tfile || error "append failed"
1555         $CHECKSTAT -s 80000004 $DIR/$tdir/$tfile || error "checkstat failed"
1556         $GETSTRIPE $DIR/$tdir/$tfile
1557
1558         reset_enospc
1559 }
1560 run_test 27p "append to a truncated file with some full OSTs ==="
1561
1562 test_27q() {
1563         [[ $OSTCOUNT -lt 2 ]] && skip_env "too few OSTs" && return
1564         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1565         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1566         remote_ost_nodsh && skip "remote OST with nodsh" && return
1567
1568         reset_enospc
1569         rm -f $DIR/$tdir/$tfile
1570
1571         test_mkdir -p $DIR/$tdir
1572         $MCREATE $DIR/$tdir/$tfile || error "mcreate $DIR/$tdir/$tfile failed"
1573         $TRUNCATE $DIR/$tdir/$tfile 80000000 ||error "truncate $DIR/$tdir/$tfile failed"
1574         $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat failed"
1575
1576         exhaust_all_precreations 0x215
1577
1578         echo foo >> $DIR/$tdir/$tfile && error "append succeeded"
1579         $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat 2 failed"
1580
1581         reset_enospc
1582 }
1583 run_test 27q "append to truncated file with all OSTs full (should error) ==="
1584
1585 test_27r() {
1586         [[ $OSTCOUNT -lt 2 ]] && skip_env "too few OSTs" && return
1587         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1588         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1589         remote_ost_nodsh && skip "remote OST with nodsh" && return
1590
1591         reset_enospc
1592         rm -f $DIR/$tdir/$tfile
1593         exhaust_precreations 0 0x80000215
1594
1595         $SETSTRIPE -i 0 -c 2 $DIR/$tdir/$tfile # && error
1596
1597         reset_enospc
1598 }
1599 run_test 27r "stripe file with some full OSTs (shouldn't LBUG) ="
1600
1601 test_27s() { # bug 10725
1602         test_mkdir -p $DIR/$tdir
1603         local stripe_size=$((4096 * 1024 * 1024))       # 2^32
1604         local stripe_count=0
1605         [ $OSTCOUNT -eq 1 ] || stripe_count=2
1606         $SETSTRIPE -S $stripe_size -c $stripe_count $DIR/$tdir &&
1607                 error "stripe width >= 2^32 succeeded" || true
1608
1609 }
1610 run_test 27s "lsm_xfersize overflow (should error) (bug 10725)"
1611
1612 test_27t() { # bug 10864
1613         WDIR=$(pwd)
1614         WLFS=$(which lfs)
1615         cd $DIR
1616         touch $tfile
1617         $WLFS getstripe $tfile
1618         cd $WDIR
1619 }
1620 run_test 27t "check that utils parse path correctly"
1621
1622 test_27u() { # bug 4900
1623         [[ $OSTCOUNT -lt 2 ]] && skip_env "too few OSTs" && return
1624         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1625         local index
1626         local list=$(comma_list $(mdts_nodes))
1627
1628 #define OBD_FAIL_MDS_OSC_PRECREATE      0x139
1629         do_nodes $list $LCTL set_param fail_loc=0x139
1630         test_mkdir -p $DIR/$tdir
1631         rm -rf $DIR/$tdir/*
1632         createmany -o $DIR/$tdir/t- 1000
1633         do_nodes $list $LCTL set_param fail_loc=0
1634
1635         TLOG=$DIR/$tfile.getstripe
1636         $GETSTRIPE $DIR/$tdir > $TLOG
1637         OBJS=$(awk -vobj=0 '($1 == 0) { obj += 1 } END { print obj; }' $TLOG)
1638         unlinkmany $DIR/$tdir/t- 1000
1639         [[ $OBJS -gt 0 ]] &&
1640                 error "$OBJS objects created on OST-0. See $TLOG" || pass
1641 }
1642 run_test 27u "skip object creation on OSC w/o objects =========="
1643
1644 test_27v() { # bug 4900
1645         [[ $OSTCOUNT -lt 2 ]] && skip_env "too few OSTs" && return
1646         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1647         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1648         remote_ost_nodsh && skip "remote OST with nodsh" && return
1649
1650         exhaust_all_precreations 0x215
1651         reset_enospc
1652
1653         test_mkdir -p $DIR/$tdir
1654         $SETSTRIPE -c 1 $DIR/$tdir         # 1 stripe / file
1655
1656         touch $DIR/$tdir/$tfile
1657         #define OBD_FAIL_TGT_DELAY_PRECREATE     0x705
1658         # all except ost1
1659         for (( i=1; i < OSTCOUNT; i++ )); do
1660                 do_facet ost$i lctl set_param fail_loc=0x705
1661         done
1662         local START=`date +%s`
1663         createmany -o $DIR/$tdir/$tfile 32
1664
1665         local FINISH=`date +%s`
1666         local TIMEOUT=`lctl get_param -n timeout`
1667         local PROCESS=$((FINISH - START))
1668         [ $PROCESS -ge $((TIMEOUT / 2)) ] && \
1669                error "$FINISH - $START >= $TIMEOUT / 2"
1670         sleep $((TIMEOUT / 2 - PROCESS))
1671         reset_enospc
1672 }
1673 run_test 27v "skip object creation on slow OST ================="
1674
1675 test_27w() { # bug 10997
1676         test_mkdir -p $DIR/$tdir || error "mkdir failed"
1677         $SETSTRIPE -S 65536 $DIR/$tdir/f0 || error "setstripe failed"
1678         [ $($GETSTRIPE -S $DIR/$tdir/f0) -ne 65536 ] &&
1679                 error "stripe size $size != 65536" || true
1680         [ $($GETSTRIPE -d $DIR/$tdir | grep -c "stripe_count") -ne 1 ] &&
1681                 error "$GETSTRIPE -d $DIR/$tdir failed" || true
1682 }
1683 run_test 27w "check $SETSTRIPE -S option"
1684
1685 test_27wa() {
1686         [[ $OSTCOUNT -lt 2 ]] &&
1687                 skip_env "skipping multiple stripe count/offset test" && return
1688
1689         test_mkdir -p $DIR/$tdir || error "mkdir failed"
1690         for i in $(seq 1 $OSTCOUNT); do
1691                 offset=$((i - 1))
1692                 $SETSTRIPE -c $i -i $offset $DIR/$tdir/f$i ||
1693                         error "setstripe -c $i -i $offset failed"
1694                 count=$($GETSTRIPE -c $DIR/$tdir/f$i)
1695                 index=$($GETSTRIPE -i $DIR/$tdir/f$i)
1696                 [ $count -ne $i ] && error "stripe count $count != $i" || true
1697                 [ $index -ne $offset ] &&
1698                         error "stripe offset $index != $offset" || true
1699         done
1700 }
1701 run_test 27wa "check $SETSTRIPE -c -i options"
1702
1703 test_27x() {
1704         remote_ost_nodsh && skip "remote OST with nodsh" && return
1705         [[ $OSTCOUNT -lt 2 ]] && skip_env "$OSTCOUNT < 2 OSTs" && return
1706         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1707         OFFSET=$(($OSTCOUNT - 1))
1708         OSTIDX=0
1709         local OST=$(ostname_from_index $OSTIDX)
1710
1711         test_mkdir -p $DIR/$tdir
1712         $SETSTRIPE -c 1 $DIR/$tdir      # 1 stripe per file
1713         do_facet ost$((OSTIDX + 1)) lctl set_param -n obdfilter.$OST.degraded 1
1714         sleep_maxage
1715         createmany -o $DIR/$tdir/$tfile $OSTCOUNT
1716         for i in `seq 0 $OFFSET`; do
1717                 [ `$GETSTRIPE $DIR/$tdir/$tfile$i | grep -A 10 obdidx | awk '{print $1}' | grep -w "$OSTIDX"` ] &&
1718                 error "OST0 was degraded but new created file still use it"
1719         done
1720         do_facet ost$((OSTIDX + 1)) lctl set_param -n obdfilter.$OST.degraded 0
1721 }
1722 run_test 27x "create files while OST0 is degraded"
1723
1724 test_27y() {
1725         [[ $OSTCOUNT -lt 2 ]] &&
1726                 skip_env "$OSTCOUNT < 2 OSTs -- skipping" && return
1727         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1728         remote_ost_nodsh && skip "remote OST with nodsh" && return
1729         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1730
1731         local mdtosc=$(get_mdtosc_proc_path $SINGLEMDS $FSNAME-OST0000)
1732         local last_id=$(do_facet $SINGLEMDS lctl get_param -n \
1733             osc.$mdtosc.prealloc_last_id)
1734         local next_id=$(do_facet $SINGLEMDS lctl get_param -n \
1735             osc.$mdtosc.prealloc_next_id)
1736         local fcount=$((last_id - next_id))
1737         [[ $fcount -eq 0 ]] && skip "not enough space on OST0" && return
1738         [[ $fcount -gt $OSTCOUNT ]] && fcount=$OSTCOUNT
1739
1740         local MDS_OSCS=$(do_facet $SINGLEMDS lctl dl |
1741                          awk '/[oO][sS][cC].*md[ts]/ { print $4 }')
1742         local OST_DEACTIVE_IDX=-1
1743         local OSC
1744         local OSTIDX
1745         local OST
1746
1747         for OSC in $MDS_OSCS; do
1748                 OST=$(osc_to_ost $OSC)
1749                 OSTIDX=$(index_from_ostuuid $OST)
1750                 if [ $OST_DEACTIVE_IDX == -1 ]; then
1751                         OST_DEACTIVE_IDX=$OSTIDX
1752                 fi
1753                 if [ $OSTIDX != $OST_DEACTIVE_IDX ]; then
1754                         echo $OSC "is Deactivated:"
1755                         do_facet $SINGLEMDS lctl --device  %$OSC deactivate
1756                 fi
1757         done
1758
1759         OSTIDX=$(index_from_ostuuid $OST)
1760         mkdir -p $DIR/$tdir
1761         $SETSTRIPE -c 1 $DIR/$tdir      # 1 stripe / file
1762
1763         for OSC in $MDS_OSCS; do
1764                 OST=$(osc_to_ost $OSC)
1765                 OSTIDX=$(index_from_ostuuid $OST)
1766                 if [ $OSTIDX == $OST_DEACTIVE_IDX ]; then
1767                         echo $OST "is degraded:"
1768                         do_facet ost$((OSTIDX+1)) lctl set_param -n \
1769                                                 obdfilter.$OST.degraded=1
1770                 fi
1771         done
1772
1773         sleep_maxage
1774         createmany -o $DIR/$tdir/$tfile $fcount
1775
1776         for OSC in $MDS_OSCS; do
1777                 OST=$(osc_to_ost $OSC)
1778                 OSTIDX=$(index_from_ostuuid $OST)
1779                 if [ $OSTIDX == $OST_DEACTIVE_IDX ]; then
1780                         echo $OST "is recovered from degraded:"
1781                         do_facet ost$((OSTIDX+1)) lctl set_param -n \
1782                                                 obdfilter.$OST.degraded=0
1783                 else
1784                         do_facet $SINGLEMDS lctl --device %$OSC activate
1785                 fi
1786         done
1787
1788         # all osp devices get activated, hence -1 stripe count restored
1789         local stripecnt=0
1790
1791         # sleep 2*lod_qos_maxage seconds waiting for lod qos to notice osp
1792         # devices get activated.
1793         sleep_maxage
1794         $SETSTRIPE -c -1 $DIR/$tfile
1795         stripecnt=$($GETSTRIPE -c $DIR/$tfile)
1796         rm -f $DIR/$tfile
1797         [ $stripecnt -ne $OSTCOUNT ] &&
1798                 error "Of $OSTCOUNT OSTs, only $stripecnt is available"
1799         return 0
1800 }
1801 run_test 27y "create files while OST0 is degraded and the rest inactive"
1802
1803 check_seq_oid()
1804 {
1805         log "check file $1"
1806
1807         lmm_count=$($GETSTRIPE -c $1)
1808         lmm_seq=$($GETSTRIPE -v $1 | awk '/lmm_seq/ { print $2 }')
1809         lmm_oid=$($GETSTRIPE -v $1 | awk '/lmm_object_id/ { print $2 }')
1810
1811         local old_ifs="$IFS"
1812         IFS=$'[:]'
1813         fid=($($LFS path2fid $1))
1814         IFS="$old_ifs"
1815
1816         log "FID seq ${fid[1]}, oid ${fid[2]} ver ${fid[3]}"
1817         log "LOV seq $lmm_seq, oid $lmm_oid, count: $lmm_count"
1818
1819         # compare lmm_seq and lu_fid->f_seq
1820         [ $lmm_seq = ${fid[1]} ] || { error "SEQ mismatch"; return 1; }
1821         # compare lmm_object_id and lu_fid->oid
1822         [ $lmm_oid = ${fid[2]} ] || { error "OID mismatch"; return 2; }
1823
1824         # check the trusted.fid attribute of the OST objects of the file
1825         local have_obdidx=false
1826         local stripe_nr=0
1827         $GETSTRIPE $1 | while read obdidx oid hex seq; do
1828                 # skip lines up to and including "obdidx"
1829                 [ -z "$obdidx" ] && break
1830                 [ "$obdidx" = "obdidx" ] && have_obdidx=true && continue
1831                 $have_obdidx || continue
1832
1833                 local ost=$((obdidx + 1))
1834                 local dev=$(ostdevname $ost)
1835                 local oid_hex
1836
1837                 log "want: stripe:$stripe_nr ost:$obdidx oid:$oid/$hex seq:$seq"
1838
1839                 seq=$(echo $seq | sed -e "s/^0x//g")
1840                 if [ $seq == 0 ]; then
1841                         oid_hex=$(echo $oid)
1842                 else
1843                         oid_hex=$(echo $hex | sed -e "s/^0x//g")
1844                 fi
1845                 local obj_file="O/$seq/d$((oid %32))/$oid_hex"
1846
1847                 local ff
1848                 #
1849                 # Don't unmount/remount the OSTs if we don't need to do that.
1850                 # LU-2577 changes filter_fid to be smaller, so debugfs needs
1851                 # update too, until that use mount/ll_decode_filter_fid/mount.
1852                 # Re-enable when debugfs will understand new filter_fid.
1853                 #
1854                 if false && [ $(facet_fstype ost$ost) == ldiskfs ]; then
1855                         ff=$(do_facet ost$ost "$DEBUGFS -c -R 'stat $obj_file' \
1856                                 $dev 2>/dev/null" | grep "parent=")
1857                 else
1858                         stop ost$ost
1859                         mount_fstype ost$ost
1860                         ff=$(do_facet ost$ost $LL_DECODE_FILTER_FID \
1861                                 $(facet_mntpt ost$ost)/$obj_file)
1862                         unmount_fstype ost$ost
1863                         start ost$ost $dev $OST_MOUNT_OPTS
1864                 fi
1865
1866                 [ -z "$ff" ] && error "$obj_file: no filter_fid info"
1867
1868                 echo "$ff" | sed -e 's#.*objid=#got: objid=#'
1869
1870                 # /mnt/O/0/d23/23: objid=23 seq=0 parent=[0x200000400:0x1e:0x1]
1871                 # fid: objid=23 seq=0 parent=[0x200000400:0x1e:0x0] stripe=1
1872                 local ff_parent=$(echo $ff|sed -e 's/.*parent=.//')
1873                 local ff_pseq=$(echo $ff_parent | cut -d: -f1)
1874                 local ff_poid=$(echo $ff_parent | cut -d: -f2)
1875                 local ff_pstripe
1876                 if echo $ff_parent | grep -q 'stripe='; then
1877                         ff_pstripe=$(echo $ff_parent | sed -e 's/.*stripe=//')
1878                 else
1879                         #
1880                         # $LL_DECODE_FILTER_FID does not print "stripe="; look
1881                         # into f_ver in this case.  See the comment on
1882                         # ff_parent.
1883                         #
1884                         ff_pstripe=$(echo $ff_parent | cut -d: -f3 |
1885                                 sed -e 's/\]//')
1886                 fi
1887
1888                 # compare lmm_seq and filter_fid->ff_parent.f_seq
1889                 [ $ff_pseq = $lmm_seq ] ||
1890                         error "FF parent SEQ $ff_pseq != $lmm_seq"
1891                 # compare lmm_object_id and filter_fid->ff_parent.f_oid
1892                 [ $ff_poid = $lmm_oid ] ||
1893                         error "FF parent OID $ff_poid != $lmm_oid"
1894                 (($ff_pstripe == $stripe_nr)) ||
1895                         error "FF stripe $ff_pstripe != $stripe_nr"
1896
1897                 stripe_nr=$((stripe_nr + 1))
1898         done
1899 }
1900
1901 test_27z() {
1902         remote_ost_nodsh && skip "remote OST with nodsh" && return
1903         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1904         test_mkdir -p $DIR/$tdir
1905
1906         $SETSTRIPE -c 1 -i 0 -S 64k $DIR/$tdir/$tfile-1 ||
1907                 { error "setstripe -c -1 failed"; return 1; }
1908         # We need to send a write to every object to get parent FID info set.
1909         # This _should_ also work for setattr, but does not currently.
1910         # touch $DIR/$tdir/$tfile-1 ||
1911         dd if=/dev/zero of=$DIR/$tdir/$tfile-1 bs=1M count=1 ||
1912                 { error "dd $tfile-1 failed"; return 2; }
1913         $SETSTRIPE -c -1 -i $((OSTCOUNT - 1)) -S 1M $DIR/$tdir/$tfile-2 ||
1914                 { error "setstripe -c -1 failed"; return 3; }
1915         dd if=/dev/zero of=$DIR/$tdir/$tfile-2 bs=1M count=$OSTCOUNT ||
1916                 { error "dd $tfile-2 failed"; return 4; }
1917
1918         # make sure write RPCs have been sent to OSTs
1919         sync; sleep 5; sync
1920
1921         check_seq_oid $DIR/$tdir/$tfile-1 || return 5
1922         check_seq_oid $DIR/$tdir/$tfile-2 || return 6
1923 }
1924 run_test 27z "check SEQ/OID on the MDT and OST filesystems"
1925
1926 test_27A() { # b=19102
1927         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1928         local restore_size=$($GETSTRIPE -S $MOUNT)
1929         local restore_count=$($GETSTRIPE -c $MOUNT)
1930         local restore_offset=$($GETSTRIPE -i $MOUNT)
1931         $SETSTRIPE -c 0 -i -1 -S 0 $MOUNT
1932         wait_update $HOSTNAME "$GETSTRIPE -c $MOUNT | sed 's/  *//g'" "1" 20 ||
1933                 error "stripe count $($GETSTRIPE -c $MOUNT) != 1"
1934         local default_size=$($GETSTRIPE -S $MOUNT)
1935         local default_offset=$($GETSTRIPE -i $MOUNT)
1936         local dsize=$((1024 * 1024))
1937         [ $default_size -eq $dsize ] ||
1938                 error "stripe size $default_size != $dsize"
1939         [ $default_offset -eq -1 ] ||error "stripe offset $default_offset != -1"
1940         $SETSTRIPE -c $restore_count -i $restore_offset -S $restore_size $MOUNT
1941 }
1942 run_test 27A "check filesystem-wide default LOV EA values"
1943
1944 test_27B() { # LU-2523
1945         test_mkdir -p $DIR/$tdir
1946         rm -f $DIR/$tdir/f0 $DIR/$tdir/f1
1947         touch $DIR/$tdir/f0
1948         # open f1 with O_LOV_DELAY_CREATE
1949         # rename f0 onto f1
1950         # call setstripe ioctl on open file descriptor for f1
1951         # close
1952         multiop $DIR/$tdir/f1 oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:nB1c \
1953                 $DIR/$tdir/f0
1954
1955         rm -f $DIR/$tdir/f1
1956         # open f1 with O_LOV_DELAY_CREATE
1957         # unlink f1
1958         # call setstripe ioctl on open file descriptor for f1
1959         # close
1960         multiop $DIR/$tdir/f1 oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:uB1c
1961
1962         # Allow multiop to fail in imitation of NFS's busted semantics.
1963         true
1964 }
1965 run_test 27B "call setstripe on open unlinked file/rename victim"
1966
1967 test_27C() { #LU-2871
1968         [[ $OSTCOUNT -lt 2 ]] && skip "needs >= 2 OSTs" && return
1969
1970         declare -a ost_idx
1971         local index
1972         local found
1973         local i
1974         local j
1975
1976         test_mkdir -p $DIR/$tdir
1977         cd $DIR/$tdir
1978         for i in $(seq 0 $((OSTCOUNT - 1))); do
1979                 # set stripe across all OSTs starting from OST$i
1980                 $SETSTRIPE -i $i -c -1 $tfile$i
1981                 # get striping information
1982                 ost_idx=($($GETSTRIPE $tfile$i |
1983                          tail -n $((OSTCOUNT + 1)) | awk '{print $1}'))
1984                 echo ${ost_idx[@]}
1985
1986                 # check the layout
1987                 [ ${#ost_idx[@]} -eq $OSTCOUNT ] ||
1988                         error "${#ost_idx[@]} != $OSTCOUNT"
1989
1990                 for index in $(seq 0 $((OSTCOUNT - 1))); do
1991                         found=0
1992                         for j in $(echo ${ost_idx[@]}); do
1993                                 if [ $index -eq $j ]; then
1994                                         found=1
1995                                         break
1996                                 fi
1997                         done
1998                         [ $found = 1 ] ||
1999                                 error "Can not find $index in ${ost_idx[@]}"
2000                 done
2001         done
2002 }
2003 run_test 27C "check full striping across all OSTs"
2004
2005 test_27D() {
2006         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
2007         local POOL=${POOL:-testpool}
2008         local first_ost=0
2009         local last_ost=$(($OSTCOUNT - 1))
2010         local ost_step=1
2011         local ost_list=$(seq $first_ost $ost_step $last_ost)
2012         local ost_range="$first_ost $last_ost $ost_step"
2013
2014         mkdir -p $DIR/$tdir
2015         pool_add $POOL || error "pool_add failed"
2016         pool_add_targets $POOL $ost_range || error "pool_add_targets failed"
2017         llapi_layout_test -d$DIR/$tdir -p$POOL -o$OSTCOUNT ||
2018                 error "llapi_layout_test failed"
2019         cleanup_pools || error "cleanup_pools failed"
2020 }
2021 run_test 27D "validate llapi_layout API"
2022
2023 # Verify that default_easize is increased from its initial value after
2024 # accessing a widely striped file.
2025 test_27E() {
2026         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
2027
2028         # 72 bytes is the minimum space required to store striping
2029         # information for a file striped across one OST:
2030         # (sizeof(struct lov_user_md_v3) +
2031         #  sizeof(struct lov_user_ost_data_v1))
2032         local min_easize=72
2033         $LCTL set_param -n llite.*.default_easize $min_easize ||
2034                 error "lctl set_param failed"
2035         local easize=$($LCTL get_param -n llite.*.default_easize)
2036
2037         [ $easize -eq $min_easize ] ||
2038                 error "failed to set default_easize"
2039
2040         $LFS setstripe -c $OSTCOUNT $DIR/$tfile ||
2041                 error "setstripe failed"
2042         cat $DIR/$tfile
2043         rm $DIR/$tfile
2044
2045         easize=$($LCTL get_param -n llite.*.default_easize)
2046
2047         [ $easize -gt $min_easize ] ||
2048                 error "default_easize not updated"
2049 }
2050 run_test 27E "check that default extended attribute size properly increases"
2051
2052 # createtest also checks that device nodes are created and
2053 # then visible correctly (#2091)
2054 test_28() { # bug 2091
2055         test_mkdir $DIR/d28
2056         $CREATETEST $DIR/d28/ct || error
2057 }
2058 run_test 28 "create/mknod/mkdir with bad file types ============"
2059
2060 test_29() {
2061         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2062         cancel_lru_locks mdc
2063         test_mkdir $DIR/d29
2064         touch $DIR/d29/foo
2065         log 'first d29'
2066         ls -l $DIR/d29
2067
2068         declare -i LOCKCOUNTORIG=0
2069         for lock_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_count); do
2070                 let LOCKCOUNTORIG=$LOCKCOUNTORIG+$lock_count
2071         done
2072         [ $LOCKCOUNTORIG -eq 0 ] && echo "No mdc lock count" && return 1
2073
2074         declare -i LOCKUNUSEDCOUNTORIG=0
2075         for unused_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_unused_count); do
2076                 let LOCKUNUSEDCOUNTORIG=$LOCKUNUSEDCOUNTORIG+$unused_count
2077         done
2078
2079         log 'second d29'
2080         ls -l $DIR/d29
2081         log 'done'
2082
2083         declare -i LOCKCOUNTCURRENT=0
2084         for lock_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_count); do
2085                 let LOCKCOUNTCURRENT=$LOCKCOUNTCURRENT+$lock_count
2086         done
2087
2088         declare -i LOCKUNUSEDCOUNTCURRENT=0
2089         for unused_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_unused_count); do
2090                 let LOCKUNUSEDCOUNTCURRENT=$LOCKUNUSEDCOUNTCURRENT+$unused_count
2091         done
2092
2093         if [[ $LOCKCOUNTCURRENT -gt $LOCKCOUNTORIG ]]; then
2094                 $LCTL set_param -n ldlm.dump_namespaces ""
2095                 error "CURRENT: $LOCKCOUNTCURRENT > $LOCKCOUNTORIG"
2096                 $LCTL dk | sort -k4 -t: > $TMP/test_29.dk
2097                 log "dumped log to $TMP/test_29.dk (bug 5793)"
2098                 return 2
2099         fi
2100         if [[ $LOCKUNUSEDCOUNTCURRENT -gt $LOCKUNUSEDCOUNTORIG ]]; then
2101                 error "UNUSED: $LOCKUNUSEDCOUNTCURRENT > $LOCKUNUSEDCOUNTORIG"
2102                 $LCTL dk | sort -k4 -t: > $TMP/test_29.dk
2103                 log "dumped log to $TMP/test_29.dk (bug 5793)"
2104                 return 3
2105         fi
2106 }
2107 run_test 29 "IT_GETATTR regression  ============================"
2108
2109 test_30a() { # was test_30
2110         cp $(which ls) $DIR || cp /bin/ls $DIR
2111         $DIR/ls / || error
2112         rm $DIR/ls
2113 }
2114 run_test 30a "execute binary from Lustre (execve) =============="
2115
2116 test_30b() {
2117         cp `which ls` $DIR || cp /bin/ls $DIR
2118         chmod go+rx $DIR/ls
2119         $RUNAS $DIR/ls / || error
2120         rm $DIR/ls
2121 }
2122 run_test 30b "execute binary from Lustre as non-root ==========="
2123
2124 test_30c() { # b=22376
2125         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2126         cp `which ls` $DIR || cp /bin/ls $DIR
2127         chmod a-rw $DIR/ls
2128         cancel_lru_locks mdc
2129         cancel_lru_locks osc
2130         $RUNAS $DIR/ls / || error
2131         rm -f $DIR/ls
2132 }
2133 run_test 30c "execute binary from Lustre without read perms ===="
2134
2135 test_31a() {
2136         $OPENUNLINK $DIR/f31 $DIR/f31 || error
2137         $CHECKSTAT -a $DIR/f31 || error
2138 }
2139 run_test 31a "open-unlink file =================================="
2140
2141 test_31b() {
2142         touch $DIR/f31 || error
2143         ln $DIR/f31 $DIR/f31b || error
2144         $MULTIOP $DIR/f31b Ouc || error
2145         $CHECKSTAT -t file $DIR/f31 || error
2146 }
2147 run_test 31b "unlink file with multiple links while open ======="
2148
2149 test_31c() {
2150         touch $DIR/f31 || error
2151         ln $DIR/f31 $DIR/f31c || error
2152         multiop_bg_pause $DIR/f31 O_uc || return 1
2153         MULTIPID=$!
2154         $MULTIOP $DIR/f31c Ouc
2155         kill -USR1 $MULTIPID
2156         wait $MULTIPID
2157 }
2158 run_test 31c "open-unlink file with multiple links ============="
2159
2160 test_31d() {
2161         opendirunlink $DIR/d31d $DIR/d31d || error
2162         $CHECKSTAT -a $DIR/d31d || error
2163 }
2164 run_test 31d "remove of open directory ========================="
2165
2166 test_31e() { # bug 2904
2167         openfilleddirunlink $DIR/d31e || error
2168 }
2169 run_test 31e "remove of open non-empty directory ==============="
2170
2171 test_31f() { # bug 4554
2172         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2173         set -vx
2174         test_mkdir $DIR/d31f
2175         $SETSTRIPE -S 1048576 -c 1 $DIR/d31f
2176         cp /etc/hosts $DIR/d31f
2177         ls -l $DIR/d31f
2178         $GETSTRIPE $DIR/d31f/hosts
2179         multiop_bg_pause $DIR/d31f D_c || return 1
2180         MULTIPID=$!
2181
2182         rm -rv $DIR/d31f || error "first of $DIR/d31f"
2183         test_mkdir $DIR/d31f
2184         $SETSTRIPE -S 1048576 -c 1 $DIR/d31f
2185         cp /etc/hosts $DIR/d31f
2186         ls -l $DIR/d31f
2187         $GETSTRIPE $DIR/d31f/hosts
2188         multiop_bg_pause $DIR/d31f D_c || return 1
2189         MULTIPID2=$!
2190
2191         kill -USR1 $MULTIPID || error "first opendir $MULTIPID not running"
2192         wait $MULTIPID || error "first opendir $MULTIPID failed"
2193
2194         sleep 6
2195
2196         kill -USR1 $MULTIPID2 || error "second opendir $MULTIPID not running"
2197         wait $MULTIPID2 || error "second opendir $MULTIPID2 failed"
2198         set +vx
2199 }
2200 run_test 31f "remove of open directory with open-unlink file ==="
2201
2202 test_31g() {
2203         echo "-- cross directory link --"
2204         test_mkdir -c1 $DIR/${tdir}ga
2205         test_mkdir -c1 $DIR/${tdir}gb
2206         touch $DIR/${tdir}ga/f
2207         ln $DIR/${tdir}ga/f $DIR/${tdir}gb/g
2208         $CHECKSTAT -t file $DIR/${tdir}ga/f || error "source"
2209         [ `stat -c%h $DIR/${tdir}ga/f` == '2' ] || error "source nlink"
2210         $CHECKSTAT -t file $DIR/${tdir}gb/g || error "target"
2211         [ `stat -c%h $DIR/${tdir}gb/g` == '2' ] || error "target nlink"
2212 }
2213 run_test 31g "cross directory link==============="
2214
2215 test_31h() {
2216         echo "-- cross directory link --"
2217         test_mkdir -c1 $DIR/${tdir}
2218         test_mkdir -c1 $DIR/${tdir}/dir
2219         touch $DIR/${tdir}/f
2220         ln $DIR/${tdir}/f $DIR/${tdir}/dir/g
2221         $CHECKSTAT -t file $DIR/${tdir}/f || error "source"
2222         [ `stat -c%h $DIR/${tdir}/f` == '2' ] || error "source nlink"
2223         $CHECKSTAT -t file $DIR/${tdir}/dir/g || error "target"
2224         [ `stat -c%h $DIR/${tdir}/dir/g` == '2' ] || error "target nlink"
2225 }
2226 run_test 31h "cross directory link under child==============="
2227
2228 test_31i() {
2229         echo "-- cross directory link --"
2230         test_mkdir -c1 $DIR/$tdir
2231         test_mkdir -c1 $DIR/$tdir/dir
2232         touch $DIR/$tdir/dir/f
2233         ln $DIR/$tdir/dir/f $DIR/$tdir/g
2234         $CHECKSTAT -t file $DIR/$tdir/dir/f || error "source"
2235         [ `stat -c%h $DIR/$tdir/dir/f` == '2' ] || error "source nlink"
2236         $CHECKSTAT -t file $DIR/$tdir/g || error "target"
2237         [ `stat -c%h $DIR/$tdir/g` == '2' ] || error "target nlink"
2238 }
2239 run_test 31i "cross directory link under parent==============="
2240
2241 test_31j() {
2242         test_mkdir -c1 -p $DIR/$tdir
2243         test_mkdir -c1 -p $DIR/$tdir/dir1
2244         ln $DIR/$tdir/dir1 $DIR/$tdir/dir2 && error "ln for dir"
2245         link $DIR/$tdir/dir1 $DIR/$tdir/dir3 && error "link for dir"
2246         mlink $DIR/$tdir/dir1 $DIR/$tdir/dir4 && error "mlink for dir"
2247         mlink $DIR/$tdir/dir1 $DIR/$tdir/dir1 && error "mlink to the same dir"
2248         return 0
2249 }
2250 run_test 31j "link for directory==============="
2251
2252 test_31k() {
2253         test_mkdir -c1 -p $DIR/$tdir
2254         touch $DIR/$tdir/s
2255         touch $DIR/$tdir/exist
2256         mlink $DIR/$tdir/s $DIR/$tdir/t || error "mlink"
2257         mlink $DIR/$tdir/s $DIR/$tdir/exist && error "mlink to exist file"
2258         mlink $DIR/$tdir/s $DIR/$tdir/s && error "mlink to the same file"
2259         mlink $DIR/$tdir/s $DIR/$tdir && error "mlink to parent dir"
2260         mlink $DIR/$tdir $DIR/$tdir/s && error "mlink parent dir to target"
2261         mlink $DIR/$tdir/not-exist $DIR/$tdir/foo && error "mlink non-existing to new"
2262         mlink $DIR/$tdir/not-exist $DIR/$tdir/s && error "mlink non-existing to exist"
2263         return 0
2264 }
2265 run_test 31k "link to file: the same, non-existing, dir==============="
2266
2267 test_31m() {
2268         mkdir $DIR/d31m
2269         touch $DIR/d31m/s
2270         mkdir $DIR/d31m2
2271         touch $DIR/d31m2/exist
2272         mlink $DIR/d31m/s $DIR/d31m2/t || error "mlink"
2273         mlink $DIR/d31m/s $DIR/d31m2/exist && error "mlink to exist file"
2274         mlink $DIR/d31m/s $DIR/d31m2 && error "mlink to parent dir"
2275         mlink $DIR/d31m2 $DIR/d31m/s && error "mlink parent dir to target"
2276         mlink $DIR/d31m/not-exist $DIR/d31m2/foo && error "mlink non-existing to new"
2277         mlink $DIR/d31m/not-exist $DIR/d31m2/s && error "mlink non-existing to exist"
2278         return 0
2279 }
2280 run_test 31m "link to file: the same, non-existing, dir==============="
2281
2282 test_31n() {
2283         touch $DIR/$tfile || error "cannot create '$DIR/$tfile'"
2284         nlink=$(stat --format=%h $DIR/$tfile)
2285         [ ${nlink:--1} -eq 1 ] || error "nlink is $nlink, expected 1"
2286         local fd=$(free_fd)
2287         local cmd="exec $fd<$DIR/$tfile"
2288         eval $cmd
2289         cmd="exec $fd<&-"
2290         trap "eval $cmd" EXIT
2291         nlink=$(stat --dereference --format=%h /proc/self/fd/$fd)
2292         [ ${nlink:--1} -eq 1 ] || error "nlink is $nlink, expected 1"
2293         rm $DIR/$tfile || error "cannot remove '$DIR/$tfile'"
2294         nlink=$(stat --dereference --format=%h /proc/self/fd/$fd)
2295         [ ${nlink:--1} -eq 0 ] || error "nlink is $nlink, expected 0"
2296         eval $cmd
2297 }
2298 run_test 31n "check link count of unlinked file"
2299
2300 link_one() {
2301         local TEMPNAME=$(mktemp $1_XXXXXX)
2302         mlink $TEMPNAME $1 2> /dev/null &&
2303                 echo "$BASHPID: link $TEMPNAME to $1 succeeded"
2304         munlink $TEMPNAME
2305 }
2306
2307 test_31o() { # LU-2901
2308         mkdir -p $DIR/$tdir
2309         for LOOP in $(seq 100); do
2310                 rm -f $DIR/$tdir/$tfile*
2311                 for THREAD in $(seq 8); do
2312                         link_one $DIR/$tdir/$tfile.$LOOP &
2313                 done
2314                 wait
2315                 local LINKS=$(ls -1 $DIR/$tdir | grep -c $tfile.$LOOP)
2316                 [[ $LINKS -gt 1 ]] && ls $DIR/$tdir &&
2317                         error "$LINKS duplicate links to $tfile.$LOOP" &&
2318                         break || true
2319         done
2320 }
2321 run_test 31o "duplicate hard links with same filename"
2322
2323 test_31p() {
2324         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
2325
2326         mkdir $DIR/$tdir
2327         $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
2328         $LFS setdirstripe -D -c2 -t all_char $DIR/$tdir/striped_dir
2329
2330         opendirunlink $DIR/$tdir/striped_dir/test1 ||
2331                 error "open unlink test1 failed"
2332         opendirunlink $DIR/$tdir/striped_dir/test2 ||
2333                 error "open unlink test2 failed"
2334
2335         $CHECKSTAT -a $DIR/$tdir/striped_dir/test1 ||
2336                 error "test1 still exists"
2337         $CHECKSTAT -a $DIR/$tdir/striped_dir/test2 ||
2338                 error "test2 still exists"
2339 }
2340 run_test 31p "remove of open striped directory"
2341
2342 cleanup_test32_mount() {
2343         trap 0
2344         $UMOUNT -d $DIR/$tdir/ext2-mountpoint
2345 }
2346
2347 test_32a() {
2348         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2349         echo "== more mountpoints and symlinks ================="
2350         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2351         trap cleanup_test32_mount EXIT
2352         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2353         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2354         $CHECKSTAT -t dir $DIR/$tdir/ext2-mountpoint/.. || error
2355         cleanup_test32_mount
2356 }
2357 run_test 32a "stat d32a/ext2-mountpoint/.. ====================="
2358
2359 test_32b() {
2360         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2361         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2362         trap cleanup_test32_mount EXIT
2363         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2364         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2365         ls -al $DIR/$tdir/ext2-mountpoint/.. || error
2366         cleanup_test32_mount
2367 }
2368 run_test 32b "open d32b/ext2-mountpoint/.. ====================="
2369
2370 test_32c() {
2371         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2372         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2373         trap cleanup_test32_mount EXIT
2374         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2375         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2376         test_mkdir -p $DIR/$tdir/d2/test_dir
2377         $CHECKSTAT -t dir $DIR/$tdir/ext2-mountpoint/../d2/test_dir || error
2378         cleanup_test32_mount
2379 }
2380 run_test 32c "stat d32c/ext2-mountpoint/../d2/test_dir ========="
2381
2382 test_32d() {
2383         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2384         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2385         trap cleanup_test32_mount EXIT
2386         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2387         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2388         test_mkdir -p $DIR/$tdir/d2/test_dir
2389         ls -al $DIR/$tdir/ext2-mountpoint/../d2/test_dir || error
2390         cleanup_test32_mount
2391 }
2392 run_test 32d "open d32d/ext2-mountpoint/../d2/test_dir ========="
2393
2394 test_32e() {
2395         [ -e $DIR/d32e ] && rm -fr $DIR/d32e
2396         test_mkdir -p $DIR/d32e/tmp
2397         TMP_DIR=$DIR/d32e/tmp
2398         ln -s $DIR/d32e $TMP_DIR/symlink11
2399         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2400         $CHECKSTAT -t link $DIR/d32e/tmp/symlink11 || error
2401         $CHECKSTAT -t link $DIR/d32e/symlink01 || error
2402 }
2403 run_test 32e "stat d32e/symlink->tmp/symlink->lustre-subdir ===="
2404
2405 test_32f() {
2406         [ -e $DIR/d32f ] && rm -fr $DIR/d32f
2407         test_mkdir -p $DIR/d32f/tmp
2408         TMP_DIR=$DIR/d32f/tmp
2409         ln -s $DIR/d32f $TMP_DIR/symlink11
2410         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2411         ls $DIR/d32f/tmp/symlink11  || error
2412         ls $DIR/d32f/symlink01 || error
2413 }
2414 run_test 32f "open d32f/symlink->tmp/symlink->lustre-subdir ===="
2415
2416 test_32g() {
2417         TMP_DIR=$DIR/$tdir/tmp
2418         test_mkdir -p $DIR/$tdir/tmp
2419         test_mkdir $DIR/${tdir}2
2420         ln -s $DIR/${tdir}2 $TMP_DIR/symlink12
2421         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2422         $CHECKSTAT -t link $TMP_DIR/symlink12 || error
2423         $CHECKSTAT -t link $DIR/$tdir/symlink02 || error
2424         $CHECKSTAT -t dir -f $TMP_DIR/symlink12 || error
2425         $CHECKSTAT -t dir -f $DIR/$tdir/symlink02 || error
2426 }
2427 run_test 32g "stat d32g/symlink->tmp/symlink->lustre-subdir/${tdir}2"
2428
2429 test_32h() {
2430         rm -fr $DIR/$tdir $DIR/${tdir}2
2431         TMP_DIR=$DIR/$tdir/tmp
2432         test_mkdir -p $DIR/$tdir/tmp
2433         test_mkdir $DIR/${tdir}2
2434         ln -s $DIR/${tdir}2 $TMP_DIR/symlink12
2435         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2436         ls $TMP_DIR/symlink12 || error
2437         ls $DIR/$tdir/symlink02  || error
2438 }
2439 run_test 32h "open d32h/symlink->tmp/symlink->lustre-subdir/${tdir}2"
2440
2441 test_32i() {
2442         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2443         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2444         trap cleanup_test32_mount EXIT
2445         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2446         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2447         touch $DIR/$tdir/test_file
2448         $CHECKSTAT -t file $DIR/$tdir/ext2-mountpoint/../test_file || error
2449         cleanup_test32_mount
2450 }
2451 run_test 32i "stat d32i/ext2-mountpoint/../test_file ==========="
2452
2453 test_32j() {
2454         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2455         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2456         trap cleanup_test32_mount EXIT
2457         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2458         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2459         touch $DIR/$tdir/test_file
2460         cat $DIR/$tdir/ext2-mountpoint/../test_file || error
2461         cleanup_test32_mount
2462 }
2463 run_test 32j "open d32j/ext2-mountpoint/../test_file ==========="
2464
2465 test_32k() {
2466         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2467         rm -fr $DIR/$tdir
2468         trap cleanup_test32_mount EXIT
2469         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2470         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint
2471         test_mkdir -p $DIR/$tdir/d2
2472         touch $DIR/$tdir/d2/test_file || error
2473         $CHECKSTAT -t file $DIR/$tdir/ext2-mountpoint/../d2/test_file || error
2474         cleanup_test32_mount
2475 }
2476 run_test 32k "stat d32k/ext2-mountpoint/../d2/test_file ========"
2477
2478 test_32l() {
2479         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2480         rm -fr $DIR/$tdir
2481         trap cleanup_test32_mount EXIT
2482         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2483         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2484         test_mkdir -p $DIR/$tdir/d2
2485         touch $DIR/$tdir/d2/test_file
2486         cat  $DIR/$tdir/ext2-mountpoint/../d2/test_file || error
2487         cleanup_test32_mount
2488 }
2489 run_test 32l "open d32l/ext2-mountpoint/../d2/test_file ========"
2490
2491 test_32m() {
2492         rm -fr $DIR/d32m
2493         test_mkdir -p $DIR/d32m/tmp
2494         TMP_DIR=$DIR/d32m/tmp
2495         ln -s $DIR $TMP_DIR/symlink11
2496         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2497         $CHECKSTAT -t link $DIR/d32m/tmp/symlink11 || error
2498         $CHECKSTAT -t link $DIR/d32m/symlink01 || error
2499 }
2500 run_test 32m "stat d32m/symlink->tmp/symlink->lustre-root ======"
2501
2502 test_32n() {
2503         rm -fr $DIR/d32n
2504         test_mkdir -p $DIR/d32n/tmp
2505         TMP_DIR=$DIR/d32n/tmp
2506         ln -s $DIR $TMP_DIR/symlink11
2507         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2508         ls -l $DIR/d32n/tmp/symlink11  || error
2509         ls -l $DIR/d32n/symlink01 || error
2510 }
2511 run_test 32n "open d32n/symlink->tmp/symlink->lustre-root ======"
2512
2513 test_32o() {
2514         touch $DIR/$tfile
2515         test_mkdir -p $DIR/d32o/tmp
2516         TMP_DIR=$DIR/d32o/tmp
2517         ln -s $DIR/$tfile $TMP_DIR/symlink12
2518         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2519         $CHECKSTAT -t link $DIR/d32o/tmp/symlink12 || error
2520         $CHECKSTAT -t link $DIR/d32o/symlink02 || error
2521         $CHECKSTAT -t file -f $DIR/d32o/tmp/symlink12 || error
2522         $CHECKSTAT -t file -f $DIR/d32o/symlink02 || error
2523 }
2524 run_test 32o "stat d32o/symlink->tmp/symlink->lustre-root/$tfile"
2525
2526 test_32p() {
2527     log 32p_1
2528         rm -fr $DIR/d32p
2529     log 32p_2
2530         rm -f $DIR/$tfile
2531     log 32p_3
2532         touch $DIR/$tfile
2533     log 32p_4
2534         test_mkdir -p $DIR/d32p/tmp
2535     log 32p_5
2536         TMP_DIR=$DIR/d32p/tmp
2537     log 32p_6
2538         ln -s $DIR/$tfile $TMP_DIR/symlink12
2539     log 32p_7
2540         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2541     log 32p_8
2542         cat $DIR/d32p/tmp/symlink12 || error
2543     log 32p_9
2544         cat $DIR/d32p/symlink02 || error
2545     log 32p_10
2546 }
2547 run_test 32p "open d32p/symlink->tmp/symlink->lustre-root/$tfile"
2548
2549 cleanup_testdir_mount() {
2550         trap 0
2551         $UMOUNT -d $DIR/$tdir
2552 }
2553
2554 test_32q() {
2555         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2556         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2557         trap cleanup_testdir_mount EXIT
2558         test_mkdir -p $DIR/$tdir
2559         touch $DIR/$tdir/under_the_mount
2560         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir
2561         ls $DIR/$tdir | grep "\<under_the_mount\>" && error
2562         cleanup_testdir_mount
2563 }
2564 run_test 32q "stat follows mountpoints in Lustre (should return error)"
2565
2566 test_32r() {
2567         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2568         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2569         trap cleanup_testdir_mount EXIT
2570         test_mkdir -p $DIR/$tdir
2571         touch $DIR/$tdir/under_the_mount
2572         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir
2573         ls $DIR/$tdir | grep -q under_the_mount && error || true
2574         cleanup_testdir_mount
2575 }
2576 run_test 32r "opendir follows mountpoints in Lustre (should return error)"
2577
2578 test_33aa() {
2579         rm -f $DIR/$tfile
2580         touch $DIR/$tfile
2581         chmod 444 $DIR/$tfile
2582         chown $RUNAS_ID $DIR/$tfile
2583         log 33_1
2584         $RUNAS $OPENFILE -f O_RDWR $DIR/$tfile && error || true
2585         log 33_2
2586 }
2587 run_test 33aa "write file with mode 444 (should return error) ===="
2588
2589 test_33a() {
2590         rm -fr $DIR/d33
2591         test_mkdir -p $DIR/d33
2592         chown $RUNAS_ID $DIR/d33
2593         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $DIR/d33/f33|| error "create"
2594         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $DIR/d33/f33 && \
2595                 error "open RDWR" || true
2596 }
2597 run_test 33a "test open file(mode=0444) with O_RDWR (should return error)"
2598
2599 test_33b() {
2600         rm -fr $DIR/d33
2601         test_mkdir -p $DIR/d33
2602         chown $RUNAS_ID $DIR/d33
2603         $RUNAS $OPENFILE -f 1286739555 $DIR/d33/f33 || true
2604 }
2605 run_test 33b "test open file with malformed flags (No panic)"
2606
2607 test_33c() {
2608         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2609         local ostnum
2610         local ostname
2611         local write_bytes
2612         local all_zeros
2613
2614         remote_ost_nodsh && skip "remote OST with nodsh" && return
2615         all_zeros=:
2616         rm -fr $DIR/d33
2617         test_mkdir -p $DIR/d33
2618         # Read: 0, Write: 4, create/destroy: 2/0, stat: 1, punch: 0
2619
2620         sync
2621         for ostnum in $(seq $OSTCOUNT); do
2622                 # test-framework's OST numbering is one-based, while Lustre's
2623                 # is zero-based
2624                 ostname=$(printf "$FSNAME-OST%.4x" $((ostnum - 1)))
2625                 # Parsing llobdstat's output sucks; we could grep the /proc
2626                 # path, but that's likely to not be as portable as using the
2627                 # llobdstat utility.  So we parse lctl output instead.
2628                 write_bytes=$(do_facet ost$ostnum lctl get_param -n \
2629                         obdfilter/$ostname/stats |
2630                         awk '/^write_bytes/ {print $7}' )
2631                 echo "baseline_write_bytes@$OSTnum/$ostname=$write_bytes"
2632                 if (( ${write_bytes:-0} > 0 ))
2633                 then
2634                         all_zeros=false
2635                         break;
2636                 fi
2637         done
2638
2639         $all_zeros || return 0
2640
2641         # Write four bytes
2642         echo foo > $DIR/d33/bar
2643         # Really write them
2644         sync
2645
2646         # Total up write_bytes after writing.  We'd better find non-zeros.
2647         for ostnum in $(seq $OSTCOUNT); do
2648                 ostname=$(printf "$FSNAME-OST%.4x" $((ostnum - 1)))
2649                 write_bytes=$(do_facet ost$ostnum lctl get_param -n \
2650                         obdfilter/$ostname/stats |
2651                         awk '/^write_bytes/ {print $7}' )
2652                 echo "write_bytes@$OSTnum/$ostname=$write_bytes"
2653                 if (( ${write_bytes:-0} > 0 ))
2654                 then
2655                         all_zeros=false
2656                         break;
2657                 fi
2658         done
2659
2660         if $all_zeros
2661         then
2662                 for ostnum in $(seq $OSTCOUNT); do
2663                         ostname=$(printf "$FSNAME-OST%.4x" $((ostnum - 1)))
2664                         echo "Check that write_bytes is present in obdfilter/*/stats:"
2665                         do_facet ost$ostnum lctl get_param -n \
2666                                 obdfilter/$ostname/stats
2667                 done
2668                 error "OST not keeping write_bytes stats (b22312)"
2669         fi
2670 }
2671 run_test 33c "test llobdstat and write_bytes"
2672
2673 test_33d() {
2674         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 2 MDTs" && return
2675         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2676         local MDTIDX=1
2677         local remote_dir=$DIR/$tdir/remote_dir
2678
2679         mkdir -p $DIR/$tdir
2680         $LFS mkdir -i $MDTIDX $remote_dir ||
2681                 error "create remote directory failed"
2682
2683         touch $remote_dir/$tfile
2684         chmod 444 $remote_dir/$tfile
2685         chown $RUNAS_ID $remote_dir/$tfile
2686
2687         $RUNAS $OPENFILE -f O_RDWR $DIR/$tfile && error || true
2688
2689         chown $RUNAS_ID $remote_dir
2690         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $remote_dir/f33 ||
2691                                         error "create" || true
2692         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $remote_dir/f33 &&
2693                                     error "open RDWR" || true
2694         $RUNAS $OPENFILE -f 1286739555 $remote_dir/f33 &&
2695                                     error "create" || true
2696 }
2697 run_test 33d "openfile with 444 modes and malformed flags under remote dir"
2698
2699 test_33e() {
2700         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
2701
2702         mkdir $DIR/$tdir
2703
2704         $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
2705         $LFS setdirstripe -i1 -c2 $DIR/$tdir/striped_dir1
2706         mkdir $DIR/$tdir/local_dir
2707
2708         local s0_mode=$(stat -c%f $DIR/$tdir/striped_dir)
2709         local s1_mode=$(stat -c%f $DIR/$tdir/striped_dir1)
2710         local l_mode=$(stat -c%f $DIR/$tdir/local_dir)
2711
2712         [ "$l_mode" = "$s0_mode" -a "$l_mode" = "$s1_mode" ] ||
2713                 error "mkdir $l_mode striped0 $s0_mode striped1 $s1_mode"
2714
2715         rmdir $DIR/$tdir/* || error "rmdir failed"
2716
2717         umask 777
2718         $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
2719         $LFS setdirstripe -i1 -c2 $DIR/$tdir/striped_dir1
2720         mkdir $DIR/$tdir/local_dir
2721
2722         s0_mode=$(stat -c%f $DIR/$tdir/striped_dir)
2723         s1_mode=$(stat -c%f $DIR/$tdir/striped_dir1)
2724         l_mode=$(stat -c%f $DIR/$tdir/local_dir)
2725
2726         [ "$l_mode" = "$s0_mode" -a "$l_mode" = "$s1_mode" ] ||
2727                 error "mkdir $l_mode striped0 $s0_mode striped1 $s1_mode 777"
2728
2729         rmdir $DIR/$tdir/* || error "rmdir(umask 777) failed"
2730
2731         umask 000
2732         $LFS setdirstripe -i0 -c2 $DIR/$tdir/striped_dir
2733         $LFS setdirstripe -i1 -c2 $DIR/$tdir/striped_dir1
2734         mkdir $DIR/$tdir/local_dir
2735
2736         s0_mode=$(stat -c%f $DIR/$tdir/striped_dir)
2737         s1_mode=$(stat -c%f $DIR/$tdir/striped_dir1)
2738         l_mode=$(stat -c%f $DIR/$tdir/local_dir)
2739
2740         [ "$l_mode" = "$s0_mode" -a "$l_mode" = "$s1_mode" ] ||
2741                 error "mkdir $l_mode striped0 $s0_mode striped1 $s1_mode 0"
2742 }
2743 run_test 33e "mkdir and striped directory should have same mode"
2744
2745 cleanup_33f() {
2746         trap 0
2747         do_facet $SINGLEMDS $LCTL set_param mdt.*.enable_remote_dir_gid=0
2748 }
2749
2750 test_33f() {
2751         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
2752
2753         mkdir $DIR/$tdir
2754         chmod go+rwx $DIR/$tdir
2755         do_facet $SINGLEMDS $LCTL set_param mdt.*.enable_remote_dir_gid=-1
2756         trap cleanup_33f EXIT
2757
2758         $RUNAS lfs mkdir -c$MDSCOUNT $DIR/$tdir/striped_dir ||
2759                 error "cannot create striped directory"
2760
2761         $RUNAS touch $DIR/$tdir/striped_dir/{0..16} ||
2762                 error "cannot create files in striped directory"
2763
2764         $RUNAS rm $DIR/$tdir/striped_dir/{0..16} ||
2765                 error "cannot remove files in striped directory"
2766
2767         $RUNAS rmdir $DIR/$tdir/striped_dir ||
2768                 error "cannot remove striped directory"
2769
2770         cleanup_33f
2771 }
2772 run_test 33f "nonroot user can create, access, and remove a striped directory"
2773
2774 TEST_34_SIZE=${TEST_34_SIZE:-2000000000000}
2775 test_34a() {
2776         rm -f $DIR/f34
2777         $MCREATE $DIR/f34 || error
2778         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" || error
2779         $TRUNCATE $DIR/f34 $TEST_34_SIZE || error
2780         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" || error
2781         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2782 }
2783 run_test 34a "truncate file that has not been opened ==========="
2784
2785 test_34b() {
2786         [ ! -f $DIR/f34 ] && test_34a
2787         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2788         $OPENFILE -f O_RDONLY $DIR/f34
2789         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" || error
2790         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2791 }
2792 run_test 34b "O_RDONLY opening file doesn't create objects ====="
2793
2794 test_34c() {
2795         [ ! -f $DIR/f34 ] && test_34a
2796         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2797         $OPENFILE -f O_RDWR $DIR/f34
2798         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" && error
2799         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2800 }
2801 run_test 34c "O_RDWR opening file-with-size works =============="
2802
2803 test_34d() {
2804         [ ! -f $DIR/f34 ] && test_34a
2805         dd if=/dev/zero of=$DIR/f34 conv=notrunc bs=4k count=1 || error
2806         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2807         rm $DIR/f34
2808 }
2809 run_test 34d "write to sparse file ============================="
2810
2811 test_34e() {
2812         rm -f $DIR/f34e
2813         $MCREATE $DIR/f34e || error
2814         $TRUNCATE $DIR/f34e 1000 || error
2815         $CHECKSTAT -s 1000 $DIR/f34e || error
2816         $OPENFILE -f O_RDWR $DIR/f34e
2817         $CHECKSTAT -s 1000 $DIR/f34e || error
2818 }
2819 run_test 34e "create objects, some with size and some without =="
2820
2821 test_34f() { # bug 6242, 6243
2822         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2823         SIZE34F=48000
2824         rm -f $DIR/f34f
2825         $MCREATE $DIR/f34f || error
2826         $TRUNCATE $DIR/f34f $SIZE34F || error "truncating $DIR/f3f to $SIZE34F"
2827         dd if=$DIR/f34f of=$TMP/f34f
2828         $CHECKSTAT -s $SIZE34F $TMP/f34f || error "$TMP/f34f not $SIZE34F bytes"
2829         dd if=/dev/zero of=$TMP/f34fzero bs=$SIZE34F count=1
2830         cmp $DIR/f34f $TMP/f34fzero || error "$DIR/f34f not all zero"
2831         cmp $TMP/f34f $TMP/f34fzero || error "$TMP/f34f not all zero"
2832         rm $TMP/f34f $TMP/f34fzero $DIR/f34f
2833 }
2834 run_test 34f "read from a file with no objects until EOF ======="
2835
2836 test_34g() {
2837         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2838         dd if=/dev/zero of=$DIR/$tfile bs=1 count=100 seek=$TEST_34_SIZE || error
2839         $TRUNCATE $DIR/$tfile $((TEST_34_SIZE / 2))|| error
2840         $CHECKSTAT -s $((TEST_34_SIZE / 2)) $DIR/$tfile || error "truncate failed"
2841         cancel_lru_locks osc
2842         $CHECKSTAT -s $((TEST_34_SIZE / 2)) $DIR/$tfile || \
2843                 error "wrong size after lock cancel"
2844
2845         $TRUNCATE $DIR/$tfile $TEST_34_SIZE || error
2846         $CHECKSTAT -s $TEST_34_SIZE $DIR/$tfile || \
2847                 error "expanding truncate failed"
2848         cancel_lru_locks osc
2849         $CHECKSTAT -s $TEST_34_SIZE $DIR/$tfile || \
2850                 error "wrong expanded size after lock cancel"
2851 }
2852 run_test 34g "truncate long file ==============================="
2853
2854 test_34h() {
2855         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2856         local gid=10
2857         local sz=1000
2858
2859         dd if=/dev/zero of=$DIR/$tfile bs=1M count=10 || error
2860         sync # Flush the cache so that multiop below does not block on cache
2861              # flush when getting the group lock
2862         $MULTIOP $DIR/$tfile OG${gid}T${sz}g${gid}c &
2863         MULTIPID=$!
2864
2865         # Since just timed wait is not good enough, let's do a sync write
2866         # that way we are sure enough time for a roundtrip + processing
2867         # passed + 2 seconds of extra margin.
2868         dd if=/dev/zero of=$DIR/${tfile}-1 bs=4096 oflag=direct count=1
2869         rm $DIR/${tfile}-1
2870         sleep 2
2871
2872         if [[ `ps h -o comm -p $MULTIPID` == "multiop" ]]; then
2873                 error "Multiop blocked on ftruncate, pid=$MULTIPID"
2874                 kill -9 $MULTIPID
2875         fi
2876         wait $MULTIPID
2877         local nsz=`stat -c %s $DIR/$tfile`
2878         [[ $nsz == $sz ]] || error "New size wrong $nsz != $sz"
2879 }
2880 run_test 34h "ftruncate file under grouplock should not block"
2881
2882 test_35a() {
2883         cp /bin/sh $DIR/f35a
2884         chmod 444 $DIR/f35a
2885         chown $RUNAS_ID $DIR/f35a
2886         $RUNAS $DIR/f35a && error || true
2887         rm $DIR/f35a
2888 }
2889 run_test 35a "exec file with mode 444 (should return and not leak) ====="
2890
2891 test_36a() {
2892         rm -f $DIR/f36
2893         utime $DIR/f36 || error
2894 }
2895 run_test 36a "MDS utime check (mknod, utime) ==================="
2896
2897 test_36b() {
2898         echo "" > $DIR/f36
2899         utime $DIR/f36 || error
2900 }
2901 run_test 36b "OST utime check (open, utime) ===================="
2902
2903 test_36c() {
2904         rm -f $DIR/d36/f36
2905         test_mkdir $DIR/d36
2906         chown $RUNAS_ID $DIR/d36
2907         $RUNAS utime $DIR/d36/f36 || error
2908 }
2909 run_test 36c "non-root MDS utime check (mknod, utime) =========="
2910
2911 test_36d() {
2912         [ ! -d $DIR/d36 ] && test_36c
2913         echo "" > $DIR/d36/f36
2914         $RUNAS utime $DIR/d36/f36 || error
2915 }
2916 run_test 36d "non-root OST utime check (open, utime) ==========="
2917
2918 test_36e() {
2919         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID -- skipping" && return
2920         test_mkdir -p $DIR/$tdir
2921         touch $DIR/$tdir/$tfile
2922         $RUNAS utime $DIR/$tdir/$tfile && \
2923                 error "utime worked, expected failure" || true
2924 }
2925 run_test 36e "utime on non-owned file (should return error) ===="
2926
2927 subr_36fh() {
2928         local fl="$1"
2929         local LANG_SAVE=$LANG
2930         local LC_LANG_SAVE=$LC_LANG
2931         export LANG=C LC_LANG=C # for date language
2932
2933         DATESTR="Dec 20  2000"
2934         test_mkdir -p $DIR/$tdir
2935         lctl set_param fail_loc=$fl
2936         date; date +%s
2937         cp /etc/hosts $DIR/$tdir/$tfile
2938         sync & # write RPC generated with "current" inode timestamp, but delayed
2939         sleep 1
2940         touch --date="$DATESTR" $DIR/$tdir/$tfile # setattr timestamp in past
2941         LS_BEFORE="`ls -l $DIR/$tdir/$tfile`" # old timestamp from client cache
2942         cancel_lru_locks osc
2943         LS_AFTER="`ls -l $DIR/$tdir/$tfile`"  # timestamp from OST object
2944         date; date +%s
2945         [ "$LS_BEFORE" != "$LS_AFTER" ] && \
2946                 echo "BEFORE: $LS_BEFORE" && \
2947                 echo "AFTER : $LS_AFTER" && \
2948                 echo "WANT  : $DATESTR" && \
2949                 error "$DIR/$tdir/$tfile timestamps changed" || true
2950
2951         export LANG=$LANG_SAVE LC_LANG=$LC_LANG_SAVE
2952 }
2953
2954 test_36f() {
2955         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2956         #define OBD_FAIL_OST_BRW_PAUSE_BULK 0x214
2957         subr_36fh "0x80000214"
2958 }
2959 run_test 36f "utime on file racing with OST BRW write =========="
2960
2961 test_36g() {
2962         remote_ost_nodsh && skip "remote OST with nodsh" && return
2963         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2964         local fmd_max_age
2965         local fmd_before
2966         local fmd_after
2967
2968         test_mkdir -p $DIR/$tdir
2969         fmd_max_age=$(do_facet ost1 \
2970                 "lctl get_param -n obdfilter.*.client_cache_seconds 2> /dev/null | \
2971                 head -n 1")
2972
2973         fmd_before=$(do_facet ost1 \
2974                 "awk '/ll_fmd_cache/ {print \\\$2}' /proc/slabinfo")
2975         touch $DIR/$tdir/$tfile
2976         sleep $((fmd_max_age + 12))
2977         fmd_after=$(do_facet ost1 \
2978                 "awk '/ll_fmd_cache/ {print \\\$2}' /proc/slabinfo")
2979
2980         echo "fmd_before: $fmd_before"
2981         echo "fmd_after: $fmd_after"
2982         [[ $fmd_after -gt $fmd_before ]] &&
2983                 echo "AFTER: $fmd_after > BEFORE: $fmd_before" &&
2984                 error "fmd didn't expire after ping" || true
2985 }
2986 run_test 36g "filter mod data cache expiry ====================="
2987
2988 test_36h() {
2989         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2990         #define OBD_FAIL_OST_BRW_PAUSE_BULK2 0x227
2991         subr_36fh "0x80000227"
2992 }
2993 run_test 36h "utime on file racing with OST BRW write =========="
2994
2995 test_36i() {
2996         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
2997
2998         mkdir $DIR/$tdir
2999         $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/striped_dir
3000
3001         local mtime=$(stat -c%Y $DIR/$tdir/striped_dir)
3002         local new_mtime=$((mtime + 200))
3003
3004         #change Modify time of striped dir
3005         touch -m -d @$new_mtime $DIR/$tdir/striped_dir ||
3006                         error "change mtime failed"
3007
3008         local got=$(stat -c%Y $DIR/$tdir/striped_dir)
3009
3010         [ "$new_mtime" = "$got" ] || error "expect $new_mtime got $got"
3011 }
3012 run_test 36i "change mtime on striped directory"
3013
3014 # test_37 - duplicate with tests 32q 32r
3015
3016 test_38() {
3017         local file=$DIR/$tfile
3018         touch $file
3019         openfile -f O_DIRECTORY $file
3020         local RC=$?
3021         local ENOTDIR=20
3022         [ $RC -eq 0 ] && error "opened file $file with O_DIRECTORY" || true
3023         [ $RC -eq $ENOTDIR ] || error "error $RC should be ENOTDIR ($ENOTDIR)"
3024 }
3025 run_test 38 "open a regular file with O_DIRECTORY should return -ENOTDIR ==="
3026
3027 test_39() {
3028         touch $DIR/$tfile
3029         touch $DIR/${tfile}2
3030 #       ls -l  $DIR/$tfile $DIR/${tfile}2
3031 #       ls -lu  $DIR/$tfile $DIR/${tfile}2
3032 #       ls -lc  $DIR/$tfile $DIR/${tfile}2
3033         sleep 2
3034         $OPENFILE -f O_CREAT:O_TRUNC:O_WRONLY $DIR/${tfile}2
3035         if [ ! $DIR/${tfile}2 -nt $DIR/$tfile ]; then
3036                 echo "mtime"
3037                 ls -l --full-time $DIR/$tfile $DIR/${tfile}2
3038                 echo "atime"
3039                 ls -lu --full-time $DIR/$tfile $DIR/${tfile}2
3040                 echo "ctime"
3041                 ls -lc --full-time $DIR/$tfile $DIR/${tfile}2
3042                 error "O_TRUNC didn't change timestamps"
3043         fi
3044 }
3045 run_test 39 "mtime changed on create ==========================="
3046
3047 test_39b() {
3048         test_mkdir -p -c1 $DIR/$tdir
3049         cp -p /etc/passwd $DIR/$tdir/fopen
3050         cp -p /etc/passwd $DIR/$tdir/flink
3051         cp -p /etc/passwd $DIR/$tdir/funlink
3052         cp -p /etc/passwd $DIR/$tdir/frename
3053         ln $DIR/$tdir/funlink $DIR/$tdir/funlink2
3054
3055         sleep 1
3056         echo "aaaaaa" >> $DIR/$tdir/fopen
3057         echo "aaaaaa" >> $DIR/$tdir/flink
3058         echo "aaaaaa" >> $DIR/$tdir/funlink
3059         echo "aaaaaa" >> $DIR/$tdir/frename
3060
3061         local open_new=`stat -c %Y $DIR/$tdir/fopen`
3062         local link_new=`stat -c %Y $DIR/$tdir/flink`
3063         local unlink_new=`stat -c %Y $DIR/$tdir/funlink`
3064         local rename_new=`stat -c %Y $DIR/$tdir/frename`
3065
3066         cat $DIR/$tdir/fopen > /dev/null
3067         ln $DIR/$tdir/flink $DIR/$tdir/flink2
3068         rm -f $DIR/$tdir/funlink2
3069         mv -f $DIR/$tdir/frename $DIR/$tdir/frename2
3070
3071         for (( i=0; i < 2; i++ )) ; do
3072                 local open_new2=`stat -c %Y $DIR/$tdir/fopen`
3073                 local link_new2=`stat -c %Y $DIR/$tdir/flink`
3074                 local unlink_new2=`stat -c %Y $DIR/$tdir/funlink`
3075                 local rename_new2=`stat -c %Y $DIR/$tdir/frename2`
3076
3077                 [ $open_new2 -eq $open_new ] || error "open file reverses mtime"
3078                 [ $link_new2 -eq $link_new ] || error "link file reverses mtime"
3079                 [ $unlink_new2 -eq $unlink_new ] || error "unlink file reverses mtime"
3080                 [ $rename_new2 -eq $rename_new ] || error "rename file reverses mtime"
3081
3082                 cancel_lru_locks osc
3083                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3084         done
3085 }
3086 run_test 39b "mtime change on open, link, unlink, rename  ======"
3087
3088 # this should be set to past
3089 TEST_39_MTIME=`date -d "1 year ago" +%s`
3090
3091 # bug 11063
3092 test_39c() {
3093         touch $DIR1/$tfile
3094         sleep 2
3095         local mtime0=`stat -c %Y $DIR1/$tfile`
3096
3097         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3098         local mtime1=`stat -c %Y $DIR1/$tfile`
3099         [ "$mtime1" = $TEST_39_MTIME ] || \
3100                 error "mtime is not set to past: $mtime1, should be $TEST_39_MTIME"
3101
3102         local d1=`date +%s`
3103         echo hello >> $DIR1/$tfile
3104         local d2=`date +%s`
3105         local mtime2=`stat -c %Y $DIR1/$tfile`
3106         [ "$mtime2" -ge "$d1" ] && [ "$mtime2" -le "$d2" ] || \
3107                 error "mtime is not updated on write: $d1 <= $mtime2 <= $d2"
3108
3109         mv $DIR1/$tfile $DIR1/$tfile-1
3110
3111         for (( i=0; i < 2; i++ )) ; do
3112                 local mtime3=`stat -c %Y $DIR1/$tfile-1`
3113                 [ "$mtime2" = "$mtime3" ] || \
3114                         error "mtime ($mtime2) changed (to $mtime3) on rename"
3115
3116                 cancel_lru_locks osc
3117                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3118         done
3119 }
3120 run_test 39c "mtime change on rename ==========================="
3121
3122 # bug 21114
3123 test_39d() {
3124         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3125         touch $DIR1/$tfile
3126
3127         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3128
3129         for (( i=0; i < 2; i++ )) ; do
3130                 local mtime=`stat -c %Y $DIR1/$tfile`
3131                 [ $mtime = $TEST_39_MTIME ] || \
3132                         error "mtime($mtime) is not set to $TEST_39_MTIME"
3133
3134                 cancel_lru_locks osc
3135                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3136         done
3137 }
3138 run_test 39d "create, utime, stat =============================="
3139
3140 # bug 21114
3141 test_39e() {
3142         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3143         touch $DIR1/$tfile
3144         local mtime1=`stat -c %Y $DIR1/$tfile`
3145
3146         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3147
3148         for (( i=0; i < 2; i++ )) ; do
3149                 local mtime2=`stat -c %Y $DIR1/$tfile`
3150                 [ $mtime2 = $TEST_39_MTIME ] || \
3151                         error "mtime($mtime2) 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 39e "create, stat, utime, stat ========================"
3158
3159 # bug 21114
3160 test_39f() {
3161         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3162         touch $DIR1/$tfile
3163         mtime1=`stat -c %Y $DIR1/$tfile`
3164
3165         sleep 2
3166         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3167
3168         for (( i=0; i < 2; i++ )) ; do
3169                 local mtime2=`stat -c %Y $DIR1/$tfile`
3170                 [ $mtime2 = $TEST_39_MTIME ] || \
3171                         error "mtime($mtime2) is not set to $TEST_39_MTIME"
3172
3173                 cancel_lru_locks osc
3174                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3175         done
3176 }
3177 run_test 39f "create, stat, sleep, utime, stat ================="
3178
3179 # bug 11063
3180 test_39g() {
3181         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3182         echo hello >> $DIR1/$tfile
3183         local mtime1=`stat -c %Y $DIR1/$tfile`
3184
3185         sleep 2
3186         chmod o+r $DIR1/$tfile
3187
3188         for (( i=0; i < 2; i++ )) ; do
3189                 local mtime2=`stat -c %Y $DIR1/$tfile`
3190                 [ "$mtime1" = "$mtime2" ] || \
3191                         error "lost mtime: $mtime2, should be $mtime1"
3192
3193                 cancel_lru_locks osc
3194                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3195         done
3196 }
3197 run_test 39g "write, chmod, stat ==============================="
3198
3199 # bug 11063
3200 test_39h() {
3201         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3202         touch $DIR1/$tfile
3203         sleep 1
3204
3205         local d1=`date`
3206         echo hello >> $DIR1/$tfile
3207         local mtime1=`stat -c %Y $DIR1/$tfile`
3208
3209         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3210         local d2=`date`
3211         if [ "$d1" != "$d2" ]; then
3212                 echo "write and touch not within one second"
3213         else
3214                 for (( i=0; i < 2; i++ )) ; do
3215                         local mtime2=`stat -c %Y $DIR1/$tfile`
3216                         [ "$mtime2" = $TEST_39_MTIME ] || \
3217                                 error "lost mtime: $mtime2, should be $TEST_39_MTIME"
3218
3219                         cancel_lru_locks osc
3220                         if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3221                 done
3222         fi
3223 }
3224 run_test 39h "write, utime within one second, stat ============="
3225
3226 test_39i() {
3227         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3228         touch $DIR1/$tfile
3229         sleep 1
3230
3231         echo hello >> $DIR1/$tfile
3232         local mtime1=`stat -c %Y $DIR1/$tfile`
3233
3234         mv $DIR1/$tfile $DIR1/$tfile-1
3235
3236         for (( i=0; i < 2; i++ )) ; do
3237                 local mtime2=`stat -c %Y $DIR1/$tfile-1`
3238
3239                 [ "$mtime1" = "$mtime2" ] || \
3240                         error "lost mtime: $mtime2, should be $mtime1"
3241
3242                 cancel_lru_locks osc
3243                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3244         done
3245 }
3246 run_test 39i "write, rename, stat =============================="
3247
3248 test_39j() {
3249         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3250         start_full_debug_logging
3251         touch $DIR1/$tfile
3252         sleep 1
3253
3254         #define OBD_FAIL_OSC_DELAY_SETTIME       0x412
3255         lctl set_param fail_loc=0x80000412
3256         multiop_bg_pause $DIR1/$tfile oO_RDWR:w2097152_c ||
3257                 error "multiop failed"
3258         local multipid=$!
3259         local mtime1=`stat -c %Y $DIR1/$tfile`
3260
3261         mv $DIR1/$tfile $DIR1/$tfile-1
3262
3263         kill -USR1 $multipid
3264         wait $multipid || error "multiop close failed"
3265
3266         for (( i=0; i < 2; i++ )) ; do
3267                 local mtime2=`stat -c %Y $DIR1/$tfile-1`
3268                 [ "$mtime1" = "$mtime2" ] ||
3269                         error "mtime is lost on close: $mtime2, " \
3270                               "should be $mtime1"
3271
3272                 cancel_lru_locks osc
3273                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3274         done
3275         lctl set_param fail_loc=0
3276         stop_full_debug_logging
3277 }
3278 run_test 39j "write, rename, close, stat ======================="
3279
3280 test_39k() {
3281         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3282         touch $DIR1/$tfile
3283         sleep 1
3284
3285         multiop_bg_pause $DIR1/$tfile oO_RDWR:w2097152_c || error "multiop failed"
3286         local multipid=$!
3287         local mtime1=`stat -c %Y $DIR1/$tfile`
3288
3289         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3290
3291         kill -USR1 $multipid
3292         wait $multipid || error "multiop close failed"
3293
3294         for (( i=0; i < 2; i++ )) ; do
3295                 local mtime2=`stat -c %Y $DIR1/$tfile`
3296
3297                 [ "$mtime2" = $TEST_39_MTIME ] || \
3298                         error "mtime is lost on close: $mtime2, should be $TEST_39_MTIME"
3299
3300                 cancel_lru_locks osc
3301                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3302         done
3303 }
3304 run_test 39k "write, utime, close, stat ========================"
3305
3306 # this should be set to future
3307 TEST_39_ATIME=`date -d "1 year" +%s`
3308
3309 test_39l() {
3310         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3311         remote_mds_nodsh && skip "remote MDS with nodsh" && return
3312         local atime_diff=$(do_facet $SINGLEMDS \
3313                                 lctl get_param -n mdd.*MDT0000*.atime_diff)
3314         rm -rf $DIR/$tdir
3315         mkdir -p $DIR/$tdir
3316
3317         # test setting directory atime to future
3318         touch -a -d @$TEST_39_ATIME $DIR/$tdir
3319         local atime=$(stat -c %X $DIR/$tdir)
3320         [ "$atime" = $TEST_39_ATIME ] || \
3321                 error "atime is not set to future: $atime, $TEST_39_ATIME"
3322
3323         # test setting directory atime from future to now
3324         local d1=$(date +%s)
3325         ls $DIR/$tdir
3326         local d2=$(date +%s)
3327
3328         cancel_lru_locks mdc
3329         atime=$(stat -c %X $DIR/$tdir)
3330         [ "$atime" -ge "$d1" -a "$atime" -le "$d2" ] || \
3331                 error "atime is not updated from future: $atime, $d1<atime<$d2"
3332
3333         do_facet $SINGLEMDS lctl set_param -n mdd.*MDT0000*.atime_diff=2
3334         sleep 3
3335
3336         # test setting directory atime when now > dir atime + atime_diff
3337         d1=$(date +%s)
3338         ls $DIR/$tdir
3339         d2=$(date +%s)
3340         cancel_lru_locks mdc
3341         atime=$(stat -c %X $DIR/$tdir)
3342         [ "$atime" -ge "$d1" -a "$atime" -le "$d2" ] || \
3343                 error "atime is not updated  : $atime, should be $d2"
3344
3345         do_facet $SINGLEMDS lctl set_param -n mdd.*MDT0000*.atime_diff=60
3346         sleep 3
3347
3348         # test not setting directory atime when now < dir atime + atime_diff
3349         ls $DIR/$tdir
3350         cancel_lru_locks mdc
3351         atime=$(stat -c %X $DIR/$tdir)
3352         [ "$atime" -ge "$d1" -a "$atime" -le "$d2" ] || \
3353                 error "atime is updated to $atime, should remain $d1<atime<$d2"
3354
3355         do_facet $SINGLEMDS \
3356                 lctl set_param -n mdd.*MDT0000*.atime_diff=$atime_diff
3357 }
3358 run_test 39l "directory atime update ==========================="
3359
3360 test_39m() {
3361         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3362         touch $DIR1/$tfile
3363         sleep 2
3364         local far_past_mtime=$(date -d "May 29 1953" +%s)
3365         local far_past_atime=$(date -d "Dec 17 1903" +%s)
3366
3367         touch -m -d @$far_past_mtime $DIR1/$tfile
3368         touch -a -d @$far_past_atime $DIR1/$tfile
3369
3370         for (( i=0; i < 2; i++ )) ; do
3371                 local timestamps=$(stat -c "%X %Y" $DIR1/$tfile)
3372                 [ "$timestamps" = "$far_past_atime $far_past_mtime" ] || \
3373                         error "atime or mtime set incorrectly"
3374
3375                 cancel_lru_locks osc
3376                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3377         done
3378 }
3379 run_test 39m "test atime and mtime before 1970"
3380
3381 test_39n() { # LU-3832
3382         local atime_diff=$(do_facet $SINGLEMDS \
3383                 lctl get_param -n mdd.*MDT0000*.atime_diff)
3384         local atime0
3385         local atime1
3386         local atime2
3387
3388         do_facet $SINGLEMDS lctl set_param -n mdd.*MDT0000*.atime_diff=1
3389
3390         rm -rf $DIR/$tfile
3391         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 status=noxfer
3392         atime0=$(stat -c %X $DIR/$tfile)
3393
3394         sleep 5
3395         $MULTIOP $DIR/$tfile oO_RDONLY:O_NOATIME:r4096c
3396         atime1=$(stat -c %X $DIR/$tfile)
3397
3398         sleep 5
3399         cancel_lru_locks mdc
3400         cancel_lru_locks osc
3401         $MULTIOP $DIR/$tfile oO_RDONLY:O_NOATIME:r4096c
3402         atime2=$(stat -c %X $DIR/$tfile)
3403
3404         do_facet $SINGLEMDS \
3405                 lctl set_param -n mdd.*MDT0000*.atime_diff=$atime_diff
3406
3407         [ "$atime0" -eq "$atime1" ] || error "atime0 $atime0 != atime1 $atime1"
3408         [ "$atime1" -eq "$atime2" ] || error "atime0 $atime0 != atime1 $atime1"
3409 }
3410 run_test 39n "check that O_NOATIME is honored"
3411
3412 test_39o() {
3413         TESTDIR=$DIR/$tdir/$tfile
3414         [ -e $TESTDIR ] && rm -rf $TESTDIR
3415         test_mkdir -p $TESTDIR
3416         cd $TESTDIR
3417         links1=2
3418         ls
3419         mkdir a b
3420         ls
3421         links2=$(stat -c %h .)
3422         [ $(($links1 + 2)) != $links2 ] &&
3423                 error "wrong links count $(($links1 + 2)) != $links2"
3424         rmdir b
3425         links3=$(stat -c %h .)
3426         [ $(($links1 + 1)) != $links3 ] &&
3427                 error "wrong links count $links1 != $links3"
3428         return 0
3429 }
3430 run_test 39o "directory cached attributes updated after create ========"
3431
3432 test_39p() {
3433         [[ $MDSCOUNT -lt 2 ]] && skip "needs >= 2 MDTs" && return
3434         local MDTIDX=1
3435         TESTDIR=$DIR/$tdir/$tfile
3436         [ -e $TESTDIR ] && rm -rf $TESTDIR
3437         mkdir -p $TESTDIR
3438         cd $TESTDIR
3439         links1=2
3440         ls
3441         $LFS mkdir -i $MDTIDX $TESTDIR/remote_dir1
3442         $LFS mkdir -i $MDTIDX $TESTDIR/remote_dir2
3443         ls
3444         links2=$(stat -c %h .)
3445         [ $(($links1 + 2)) != $links2 ] &&
3446                 error "wrong links count $(($links1 + 2)) != $links2"
3447         rmdir remote_dir2
3448         links3=$(stat -c %h .)
3449         [ $(($links1 + 1)) != $links3 ] &&
3450                 error "wrong links count $links1 != $links3"
3451         return 0
3452 }
3453 run_test 39p "remote directory cached attributes updated after create ========"
3454
3455
3456 test_40() {
3457         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1
3458         $RUNAS $OPENFILE -f O_WRONLY:O_TRUNC $DIR/$tfile &&
3459                 error "openfile O_WRONLY:O_TRUNC $tfile failed"
3460         $CHECKSTAT -t file -s 4096 $DIR/$tfile ||
3461                 error "$tfile is not 4096 bytes in size"
3462 }
3463 run_test 40 "failed open(O_TRUNC) doesn't truncate ============="
3464
3465 test_41() {
3466         # bug 1553
3467         small_write $DIR/f41 18
3468 }
3469 run_test 41 "test small file write + fstat ====================="
3470
3471 count_ost_writes() {
3472         lctl get_param -n osc.*.stats |
3473                 awk -vwrites=0 '/ost_write/ { writes += $2 } \
3474                         END { printf("%0.0f", writes) }'
3475 }
3476
3477 # decent default
3478 WRITEBACK_SAVE=500
3479 DIRTY_RATIO_SAVE=40
3480 MAX_DIRTY_RATIO=50
3481 BG_DIRTY_RATIO_SAVE=10
3482 MAX_BG_DIRTY_RATIO=25
3483
3484 start_writeback() {
3485         trap 0
3486         # in 2.6, restore /proc/sys/vm/dirty_writeback_centisecs,
3487         # dirty_ratio, dirty_background_ratio
3488         if [ -f /proc/sys/vm/dirty_writeback_centisecs ]; then
3489                 sysctl -w vm.dirty_writeback_centisecs=$WRITEBACK_SAVE
3490                 sysctl -w vm.dirty_background_ratio=$BG_DIRTY_RATIO_SAVE
3491                 sysctl -w vm.dirty_ratio=$DIRTY_RATIO_SAVE
3492         else
3493                 # if file not here, we are a 2.4 kernel
3494                 kill -CONT `pidof kupdated`
3495         fi
3496 }
3497
3498 stop_writeback() {
3499         # setup the trap first, so someone cannot exit the test at the
3500         # exact wrong time and mess up a machine
3501         trap start_writeback EXIT
3502         # in 2.6, save and 0 /proc/sys/vm/dirty_writeback_centisecs
3503         if [ -f /proc/sys/vm/dirty_writeback_centisecs ]; then
3504                 WRITEBACK_SAVE=`sysctl -n vm.dirty_writeback_centisecs`
3505                 sysctl -w vm.dirty_writeback_centisecs=0
3506                 sysctl -w vm.dirty_writeback_centisecs=0
3507                 # save and increase /proc/sys/vm/dirty_ratio
3508                 DIRTY_RATIO_SAVE=`sysctl -n vm.dirty_ratio`
3509                 sysctl -w vm.dirty_ratio=$MAX_DIRTY_RATIO
3510                 # save and increase /proc/sys/vm/dirty_background_ratio
3511                 BG_DIRTY_RATIO_SAVE=`sysctl -n vm.dirty_background_ratio`
3512                 sysctl -w vm.dirty_background_ratio=$MAX_BG_DIRTY_RATIO
3513         else
3514                 # if file not here, we are a 2.4 kernel
3515                 kill -STOP `pidof kupdated`
3516         fi
3517 }
3518
3519 # ensure that all stripes have some grant before we test client-side cache
3520 setup_test42() {
3521         for i in `seq -f $DIR/f42-%g 1 $OSTCOUNT`; do
3522                 dd if=/dev/zero of=$i bs=4k count=1
3523                 rm $i
3524         done
3525 }
3526
3527 # Tests 42* verify that our behaviour is correct WRT caching, file closure,
3528 # file truncation, and file removal.
3529 test_42a() {
3530         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3531         setup_test42
3532         cancel_lru_locks osc
3533         stop_writeback
3534         sync; sleep 1; sync # just to be safe
3535         BEFOREWRITES=`count_ost_writes`
3536         lctl get_param -n osc.*[oO][sS][cC][_-]*.cur_grant_bytes | grep "[0-9]"
3537         dd if=/dev/zero of=$DIR/f42a bs=1024 count=100
3538         AFTERWRITES=`count_ost_writes`
3539         [ $BEFOREWRITES -eq $AFTERWRITES ] || \
3540                 error "$BEFOREWRITES < $AFTERWRITES"
3541         start_writeback
3542 }
3543 run_test 42a "ensure that we don't flush on close =============="
3544
3545 test_42b() {
3546         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3547         setup_test42
3548         cancel_lru_locks osc
3549         stop_writeback
3550         sync
3551         dd if=/dev/zero of=$DIR/f42b bs=1024 count=100
3552         BEFOREWRITES=$(count_ost_writes)
3553         $MUNLINK $DIR/f42b || error "$MUNLINK $DIR/f42b: $?"
3554         AFTERWRITES=$(count_ost_writes)
3555         if [[ $BEFOREWRITES -lt $AFTERWRITES ]]; then
3556                 error "$BEFOREWRITES < $AFTERWRITES on unlink"
3557         fi
3558         BEFOREWRITES=$(count_ost_writes)
3559         sync || error "sync: $?"
3560         AFTERWRITES=$(count_ost_writes)
3561         if [[ $BEFOREWRITES -lt $AFTERWRITES ]]; then
3562                 error "$BEFOREWRITES < $AFTERWRITES on sync"
3563         fi
3564         dmesg | grep 'error from obd_brw_async' && error 'error writing back'
3565         start_writeback
3566         return 0
3567 }
3568 run_test 42b "test destroy of file with cached dirty data ======"
3569
3570 # if these tests just want to test the effect of truncation,
3571 # they have to be very careful.  consider:
3572 # - the first open gets a {0,EOF}PR lock
3573 # - the first write conflicts and gets a {0, count-1}PW
3574 # - the rest of the writes are under {count,EOF}PW
3575 # - the open for truncate tries to match a {0,EOF}PR
3576 #   for the filesize and cancels the PWs.
3577 # any number of fixes (don't get {0,EOF} on open, match
3578 # composite locks, do smarter file size management) fix
3579 # this, but for now we want these tests to verify that
3580 # the cancellation with truncate intent works, so we
3581 # start the file with a full-file pw lock to match against
3582 # until the truncate.
3583 trunc_test() {
3584         test=$1
3585         file=$DIR/$test
3586         offset=$2
3587         cancel_lru_locks osc
3588         stop_writeback
3589         # prime the file with 0,EOF PW to match
3590         touch $file
3591         $TRUNCATE $file 0
3592         sync; sync
3593         # now the real test..
3594         dd if=/dev/zero of=$file bs=1024 count=100
3595         BEFOREWRITES=`count_ost_writes`
3596         $TRUNCATE $file $offset
3597         cancel_lru_locks osc
3598         AFTERWRITES=`count_ost_writes`
3599         start_writeback
3600 }
3601
3602 test_42c() {
3603         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3604         trunc_test 42c 1024
3605         [ $BEFOREWRITES -eq $AFTERWRITES ] && \
3606             error "beforewrites $BEFOREWRITES == afterwrites $AFTERWRITES on truncate"
3607         rm $file
3608 }
3609 run_test 42c "test partial truncate of file with cached dirty data"
3610
3611 test_42d() {
3612         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3613         trunc_test 42d 0
3614         [ $BEFOREWRITES -eq $AFTERWRITES ] || \
3615             error "beforewrites $BEFOREWRITES != afterwrites $AFTERWRITES on truncate"
3616         rm $file
3617 }
3618 run_test 42d "test complete truncate of file with cached dirty data"
3619
3620 test_42e() { # bug22074
3621         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3622         local TDIR=$DIR/${tdir}e
3623         local pagesz=$(page_size)
3624         local pages=16 # hardcoded 16 pages, don't change it.
3625         local files=$((OSTCOUNT * 500)) # hopefully 500 files on each OST
3626         local proc_osc0="osc.${FSNAME}-OST0000-osc-[^MDT]*"
3627         local max_dirty_mb
3628         local warmup_files
3629
3630         test_mkdir -p $DIR/${tdir}e
3631         $SETSTRIPE -c 1 $TDIR
3632         createmany -o $TDIR/f $files
3633
3634         max_dirty_mb=$($LCTL get_param -n $proc_osc0/max_dirty_mb)
3635
3636         # we assume that with $OSTCOUNT files, at least one of them will
3637         # be allocated on OST0.
3638         warmup_files=$((OSTCOUNT * max_dirty_mb))
3639         createmany -o $TDIR/w $warmup_files
3640
3641         # write a large amount of data into one file and sync, to get good
3642         # avail_grant number from OST.
3643         for ((i=0; i<$warmup_files; i++)); do
3644                 idx=$($GETSTRIPE -i $TDIR/w$i)
3645                 [ $idx -ne 0 ] && continue
3646                 dd if=/dev/zero of=$TDIR/w$i bs="$max_dirty_mb"M count=1
3647                 break
3648         done
3649         [[ $i -gt $warmup_files ]] && error "OST0 is still cold"
3650         sync
3651         $LCTL get_param $proc_osc0/cur_dirty_bytes
3652         $LCTL get_param $proc_osc0/cur_grant_bytes
3653
3654         # create as much dirty pages as we can while not to trigger the actual
3655         # RPCs directly. but depends on the env, VFS may trigger flush during this
3656         # period, hopefully we are good.
3657         for ((i=0; i<$warmup_files; i++)); do
3658                 idx=$($GETSTRIPE -i $TDIR/w$i)
3659                 [ $idx -ne 0 ] && continue
3660                 dd if=/dev/zero of=$TDIR/w$i bs=1M count=1 2>/dev/null
3661         done
3662         $LCTL get_param $proc_osc0/cur_dirty_bytes
3663         $LCTL get_param $proc_osc0/cur_grant_bytes
3664
3665         # perform the real test
3666         $LCTL set_param $proc_osc0/rpc_stats 0
3667         for ((;i<$files; i++)); do
3668                 [ $($GETSTRIPE -i $TDIR/f$i) -eq 0 ] || continue
3669                 dd if=/dev/zero of=$TDIR/f$i bs=$pagesz count=$pages 2>/dev/null
3670         done
3671         sync
3672         $LCTL get_param $proc_osc0/rpc_stats
3673
3674         local percent=0
3675         local have_ppr=false
3676         $LCTL get_param $proc_osc0/rpc_stats |
3677                 while read PPR RRPC RPCT RCUM BAR WRPC WPCT WCUM; do
3678                         # skip lines until we are at the RPC histogram data
3679                         [ "$PPR" == "pages" ] && have_ppr=true && continue
3680                         $have_ppr || continue
3681
3682                         # we only want the percent stat for < 16 pages
3683                         [[ $(echo $PPR | tr -d ':') -ge $pages ]] && break
3684
3685                         percent=$((percent + WPCT))
3686                         if [[ $percent -gt 15 ]]; then
3687                                 error "less than 16-pages write RPCs" \
3688                                       "$percent% > 15%"
3689                                 break
3690                         fi
3691                 done
3692         rm -rf $TDIR
3693 }
3694 run_test 42e "verify sub-RPC writes are not done synchronously"
3695
3696 test_43() {
3697         test_mkdir -p $DIR/$tdir
3698         cp -p /bin/ls $DIR/$tdir/$tfile
3699         $MULTIOP $DIR/$tdir/$tfile Ow_c &
3700         pid=$!
3701         # give multiop a chance to open
3702         sleep 1
3703
3704         $DIR/$tdir/$tfile && error || true
3705         kill -USR1 $pid
3706 }
3707 run_test 43 "execution of file opened for write should return -ETXTBSY"
3708
3709 test_43a() {
3710         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3711         test_mkdir -p $DIR/$tdir
3712         cp -p `which $MULTIOP` $DIR/$tdir/multiop ||
3713                         cp -p multiop $DIR/$tdir/multiop
3714         MULTIOP_PROG=$DIR/$tdir/multiop multiop_bg_pause $TMP/$tfile.junk O_c ||
3715                         return 1
3716         MULTIOP_PID=$!
3717         $MULTIOP $DIR/$tdir/multiop Oc && error "expected error, got success"
3718         kill -USR1 $MULTIOP_PID || return 2
3719         wait $MULTIOP_PID || return 3
3720         rm $TMP/$tfile.junk $DIR/$tdir/multiop
3721 }
3722 run_test 43a "open(RDWR) of file being executed should return -ETXTBSY"
3723
3724 test_43b() {
3725         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3726         test_mkdir -p $DIR/$tdir
3727         cp -p `which $MULTIOP` $DIR/$tdir/multiop ||
3728                         cp -p multiop $DIR/$tdir/multiop
3729         MULTIOP_PROG=$DIR/$tdir/multiop multiop_bg_pause $TMP/$tfile.junk O_c ||
3730                         return 1
3731         MULTIOP_PID=$!
3732         $TRUNCATE $DIR/$tdir/multiop 0 && error "expected error, got success"
3733         kill -USR1 $MULTIOP_PID || return 2
3734         wait $MULTIOP_PID || return 3
3735         rm $TMP/$tfile.junk $DIR/$tdir/multiop
3736 }
3737 run_test 43b "truncate of file being executed should return -ETXTBSY"
3738
3739 test_43c() {
3740         local testdir="$DIR/$tdir"
3741         test_mkdir -p $DIR/$tdir
3742         cp $SHELL $testdir/
3743         ( cd $(dirname $SHELL) && md5sum $(basename $SHELL) ) | \
3744                 ( cd $testdir && md5sum -c)
3745 }
3746 run_test 43c "md5sum of copy into lustre========================"
3747
3748 test_44() {
3749         [[ $OSTCOUNT -lt 2 ]] && skip_env "skipping 2-stripe test" && return
3750         dd if=/dev/zero of=$DIR/f1 bs=4k count=1 seek=1023
3751         dd if=$DIR/f1 bs=4k count=1 > /dev/null
3752 }
3753 run_test 44 "zero length read from a sparse stripe ============="
3754
3755 test_44a() {
3756         local nstripe=$($LCTL lov_getconfig $DIR | grep default_stripe_count: |
3757                 awk '{ print $2 }')
3758         [ -z "$nstripe" ] && skip "can't get stripe info" && return
3759         [[ $nstripe -gt $OSTCOUNT ]] &&
3760             skip "Wrong default_stripe_count: $nstripe (OSTCOUNT: $OSTCOUNT)" &&
3761             return
3762         local stride=$($LCTL lov_getconfig $DIR | grep default_stripe_size: |
3763                 awk '{ print $2 }')
3764         if [[ $nstripe -eq 0 || $nstripe -eq -1 ]]; then
3765                 nstripe=$($LCTL lov_getconfig $DIR | grep obd_count: |
3766                         awk '{ print $2 }')
3767         fi
3768
3769         OFFSETS="0 $((stride/2)) $((stride-1))"
3770         for offset in $OFFSETS; do
3771                 for i in $(seq 0 $((nstripe-1))); do
3772                         local GLOBALOFFSETS=""
3773                         # size in Bytes
3774                         local size=$((((i + 2 * $nstripe )*$stride + $offset)))
3775                         local myfn=$DIR/d44a-$size
3776                         echo "--------writing $myfn at $size"
3777                         ll_sparseness_write $myfn $size ||
3778                                 error "ll_sparseness_write"
3779                         GLOBALOFFSETS="$GLOBALOFFSETS $size"
3780                         ll_sparseness_verify $myfn $GLOBALOFFSETS ||
3781                                 error "ll_sparseness_verify $GLOBALOFFSETS"
3782
3783                         for j in $(seq 0 $((nstripe-1))); do
3784                                 # size in Bytes
3785                                 size=$((((j + $nstripe )*$stride + $offset)))
3786                                 ll_sparseness_write $myfn $size ||
3787                                         error "ll_sparseness_write"
3788                                 GLOBALOFFSETS="$GLOBALOFFSETS $size"
3789                         done
3790                         ll_sparseness_verify $myfn $GLOBALOFFSETS ||
3791                                 error "ll_sparseness_verify $GLOBALOFFSETS"
3792                         rm -f $myfn
3793                 done
3794         done
3795 }
3796 run_test 44a "test sparse pwrite ==============================="
3797
3798 dirty_osc_total() {
3799         tot=0
3800         for d in `lctl get_param -n osc.*.cur_dirty_bytes`; do
3801                 tot=$(($tot + $d))
3802         done
3803         echo $tot
3804 }
3805 do_dirty_record() {
3806         before=`dirty_osc_total`
3807         echo executing "\"$*\""
3808         eval $*
3809         after=`dirty_osc_total`
3810         echo before $before, after $after
3811 }
3812 test_45() {
3813         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3814         f="$DIR/f45"
3815         # Obtain grants from OST if it supports it
3816         echo blah > ${f}_grant
3817         stop_writeback
3818         sync
3819         do_dirty_record "echo blah > $f"
3820         [[ $before -eq $after ]] && error "write wasn't cached"
3821         do_dirty_record "> $f"
3822         [[ $before -gt $after ]] || error "truncate didn't lower dirty count"
3823         do_dirty_record "echo blah > $f"
3824         [[ $before -eq $after ]] && error "write wasn't cached"
3825         do_dirty_record "sync"
3826         [[ $before -gt $after ]] || error "writeback didn't lower dirty count"
3827         do_dirty_record "echo blah > $f"
3828         [[ $before -eq $after ]] && error "write wasn't cached"
3829         do_dirty_record "cancel_lru_locks osc"
3830         [[ $before -gt $after ]] ||
3831                 error "lock cancellation didn't lower dirty count"
3832         start_writeback
3833 }
3834 run_test 45 "osc io page accounting ============================"
3835
3836 # in a 2 stripe file (lov.sh), page 1023 maps to page 511 in its object.  this
3837 # test tickles a bug where re-dirtying a page was failing to be mapped to the
3838 # objects offset and an assert hit when an rpc was built with 1023's mapped
3839 # offset 511 and 511's raw 511 offset. it also found general redirtying bugs.
3840 test_46() {
3841         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3842         f="$DIR/f46"
3843         stop_writeback
3844         sync
3845         dd if=/dev/zero of=$f bs=`page_size` seek=511 count=1
3846         sync
3847         dd conv=notrunc if=/dev/zero of=$f bs=`page_size` seek=1023 count=1
3848         dd conv=notrunc if=/dev/zero of=$f bs=`page_size` seek=511 count=1
3849         sync
3850         start_writeback
3851 }
3852 run_test 46 "dirtying a previously written page ================"
3853
3854 # test_47 is removed "Device nodes check" is moved to test_28
3855
3856 test_48a() { # bug 2399
3857         [ $(facet_fstype $SINGLEMDS) = "zfs" ] &&
3858         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.63) ] &&
3859                 skip "MDS prior to 2.3.63 handle ZFS dir .. incorrectly" &&
3860                 return
3861         test_mkdir $DIR/$tdir
3862         cd $DIR/$tdir
3863         mv $DIR/$tdir $DIR/$tdir.new || error "move directory failed"
3864         test_mkdir $DIR/$tdir || error "recreate directory failed"
3865         touch foo || error "'touch foo' failed after recreating cwd"
3866         test_mkdir bar || error "'mkdir foo' failed after recreating cwd"
3867         touch .foo || error "'touch .foo' failed after recreating cwd"
3868         test_mkdir .bar || error "'mkdir .foo' failed after recreating cwd"
3869         ls . > /dev/null || error "'ls .' failed after recreating cwd"
3870         ls .. > /dev/null || error "'ls ..' failed after removing cwd"
3871         cd . || error "'cd .' failed after recreating cwd"
3872         test_mkdir . && error "'mkdir .' worked after recreating cwd"
3873         rmdir . && error "'rmdir .' worked after recreating cwd"
3874         ln -s . baz || error "'ln -s .' failed after recreating cwd"
3875         cd .. || error "'cd ..' failed after recreating cwd"
3876 }
3877 run_test 48a "Access renamed working dir (should return errors)="
3878
3879 test_48b() { # bug 2399
3880         rm -rf $DIR/$tdir
3881         test_mkdir $DIR/$tdir
3882         cd $DIR/$tdir
3883         rmdir $DIR/$tdir || error "remove cwd $DIR/$tdir failed"
3884         touch foo && error "'touch foo' worked after removing cwd"
3885         test_mkdir foo && error "'mkdir foo' worked after removing cwd"
3886         touch .foo && error "'touch .foo' worked after removing cwd"
3887         test_mkdir .foo && error "'mkdir .foo' worked after removing cwd"
3888         ls . > /dev/null && error "'ls .' worked after removing cwd"
3889         ls .. > /dev/null || error "'ls ..' failed after removing cwd"
3890         is_patchless || ( cd . && error "'cd .' worked after removing cwd" )
3891         test_mkdir . && error "'mkdir .' worked after removing cwd"
3892         rmdir . && error "'rmdir .' worked after removing cwd"
3893         ln -s . foo && error "'ln -s .' worked after removing cwd"
3894         cd .. || echo "'cd ..' failed after removing cwd `pwd`"  #bug 3517
3895 }
3896 run_test 48b "Access removed working dir (should return errors)="
3897
3898 test_48c() { # bug 2350
3899         #lctl set_param debug=-1
3900         #set -vx
3901         rm -rf $DIR/$tdir
3902         test_mkdir -p $DIR/$tdir/dir
3903         cd $DIR/$tdir/dir
3904         $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
3905         $TRACE touch foo && error "touch foo worked after removing cwd"
3906         $TRACE test_mkdir foo && error "'mkdir foo' worked after removing cwd"
3907         touch .foo && error "touch .foo worked after removing cwd"
3908         test_mkdir .foo && error "mkdir .foo worked after removing cwd"
3909         $TRACE ls . && error "'ls .' worked after removing cwd"
3910         $TRACE ls .. || error "'ls ..' failed after removing cwd"
3911         is_patchless || ( $TRACE cd . &&
3912                         error "'cd .' worked after removing cwd" )
3913         $TRACE test_mkdir . && error "'mkdir .' worked after removing cwd"
3914         $TRACE rmdir . && error "'rmdir .' worked after removing cwd"
3915         $TRACE ln -s . foo && error "'ln -s .' worked after removing cwd"
3916         $TRACE cd .. || echo "'cd ..' failed after removing cwd `pwd`" #bug 3415
3917 }
3918 run_test 48c "Access removed working subdir (should return errors)"
3919
3920 test_48d() { # bug 2350
3921         #lctl set_param debug=-1
3922         #set -vx
3923         rm -rf $DIR/$tdir
3924         test_mkdir -p $DIR/$tdir/dir
3925         cd $DIR/$tdir/dir
3926         $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
3927         $TRACE rmdir $DIR/$tdir || error "remove parent $DIR/$tdir failed"
3928         $TRACE touch foo && error "'touch foo' worked after removing parent"
3929         $TRACE test_mkdir foo && error "mkdir foo worked after removing parent"
3930         touch .foo && error "'touch .foo' worked after removing parent"
3931         test_mkdir .foo && error "mkdir .foo worked after removing parent"
3932         $TRACE ls . && error "'ls .' worked after removing parent"
3933         $TRACE ls .. && error "'ls ..' worked after removing parent"
3934         is_patchless || ( $TRACE cd . &&
3935                         error "'cd .' worked after recreate parent" )
3936         $TRACE test_mkdir . && error "'mkdir .' worked after removing parent"
3937         $TRACE rmdir . && error "'rmdir .' worked after removing parent"
3938         $TRACE ln -s . foo && error "'ln -s .' worked after removing parent"
3939         is_patchless || ( $TRACE cd .. &&
3940                         error "'cd ..' worked after removing parent" || true )
3941 }
3942 run_test 48d "Access removed parent subdir (should return errors)"
3943
3944 test_48e() { # bug 4134
3945         #lctl set_param debug=-1
3946         #set -vx
3947         rm -rf $DIR/$tdir
3948         test_mkdir -p $DIR/$tdir/dir
3949         cd $DIR/$tdir/dir
3950         $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
3951         $TRACE rmdir $DIR/$tdir || error "remove parent $DIR/$tdir failed"
3952         $TRACE touch $DIR/$tdir || error "'touch $DIR/$tdir' failed"
3953         $TRACE chmod +x $DIR/$tdir || error "'chmod +x $DIR/$tdir' failed"
3954         # On a buggy kernel addition of "touch foo" after cd .. will
3955         # produce kernel oops in lookup_hash_it
3956         touch ../foo && error "'cd ..' worked after recreate parent"
3957         cd $DIR
3958         $TRACE rm $DIR/$tdir || error "rm '$DIR/$tdir' failed"
3959 }
3960 run_test 48e "Access to recreated parent subdir (should return errors)"
3961
3962 test_49() { # LU-1030
3963         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3964         # get ost1 size - lustre-OST0000
3965         ost1_size=$(do_facet ost1 $LFS df | grep ${ost1_svc} |
3966                 awk '{ print $4 }')
3967         # write 800M at maximum
3968         [[ $ost1_size -lt 2 ]] && ost1_size=2
3969         [[ $ost1_size -gt 819200 ]] && ost1_size=819200
3970
3971         $SETSTRIPE -c 1 -i 0 $DIR/$tfile
3972         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((ost1_size >> 2)) &
3973         local dd_pid=$!
3974
3975         # change max_pages_per_rpc while writing the file
3976         local osc1_mppc=osc.$(get_osc_import_name client ost1).max_pages_per_rpc
3977         local orig_mppc=$($LCTL get_param -n $osc1_mppc)
3978         # loop until dd process exits
3979         while ps ax -opid | grep -wq $dd_pid; do
3980                 $LCTL set_param $osc1_mppc=$((RANDOM % 256 + 1))
3981                 sleep $((RANDOM % 5 + 1))
3982         done
3983         # restore original max_pages_per_rpc
3984         $LCTL set_param $osc1_mppc=$orig_mppc
3985         rm $DIR/$tfile || error "rm $DIR/$tfile failed"
3986 }
3987 run_test 49 "Change max_pages_per_rpc won't break osc extent"
3988
3989 test_50() {
3990         # bug 1485
3991         test_mkdir $DIR/$tdir
3992         cd $DIR/$tdir
3993         ls /proc/$$/cwd || error "ls /proc/$$/cwd failed"
3994 }
3995 run_test 50 "special situations: /proc symlinks  ==============="
3996
3997 test_51a() {    # was test_51
3998         # bug 1516 - create an empty entry right after ".." then split dir
3999         test_mkdir -c1 $DIR/$tdir
4000         touch $DIR/$tdir/foo
4001         $MCREATE $DIR/$tdir/bar
4002         rm $DIR/$tdir/foo
4003         createmany -m $DIR/$tdir/longfile 201
4004         FNUM=202
4005         while [[ $(ls -sd $DIR/$tdir | awk '{ print $1 }') -eq 4 ]]; do
4006                 $MCREATE $DIR/$tdir/longfile$FNUM
4007                 FNUM=$(($FNUM + 1))
4008                 echo -n "+"
4009         done
4010         echo
4011         ls -l $DIR/$tdir > /dev/null || error "ls -l $DIR/$tdir failed"
4012 }
4013 run_test 51a "special situations: split htree with empty entry =="
4014
4015 export NUMTEST=70000
4016 test_51b() {
4017         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4018         local BASE=$DIR/d${base}.${TESTSUITE}
4019
4020         # cleanup the directory
4021         rm -fr $BASE
4022
4023         test_mkdir -p -c1 $BASE
4024
4025         $LFS df
4026         $LFS df -i
4027         local mdtidx=$(printf "%04x" $($LFS getstripe -M $BASE))
4028         local numfree=$(lctl get_param -n mdc.$FSNAME-MDT$mdtidx*.filesfree)
4029         [[ $numfree -lt 21000 ]] &&
4030                 skip "not enough free inodes ($numfree) on MDT$mdtidx" &&
4031                 return
4032
4033         [[ $numfree -lt $NUMTEST ]] && NUMTEST=$(($numfree - 50)) &&
4034                 echo "reduced count to $NUMTEST due to inodes on MDT$mdtidx"
4035
4036         # need to check free space for the directories as well
4037         local blkfree=$(lctl get_param -n mdc.$FSNAME-MDT$mdtidx*.kbytesavail)
4038         numfree=$((blkfree / 4))
4039         [[ $numfree -lt $NUMTEST ]] && NUMTEST=$((numfree - 50)) &&
4040                 echo "reduced count to $NUMTEST due to blocks on MDT$mdtidx"
4041
4042         createmany -d $BASE/d $NUMTEST && echo $NUMTEST > $BASE/fnum ||
4043         {
4044                 $LFS df
4045                 $LFS df -i
4046                 echo "failed" > $BASE/fnum
4047                 error "failed to create $NUMTEST subdirs in MDT$mdtidx:$BASE"
4048         }
4049 }
4050 run_test 51b "exceed 64k subdirectory nlink limit"
4051
4052 test_51ba() { # LU-993
4053         local BASE=$DIR/d${base}.${TESTSUITE}
4054         # unlink all but 100 subdirectories, then check it still works
4055         local LEFT=100
4056         [ -f $BASE/fnum ] && local NUMPREV=$(cat $BASE/fnum) && rm $BASE/fnum
4057
4058         [ "$NUMPREV" != "failed" ] && NUMTEST=$NUMPREV
4059         local DELETE=$((NUMTEST - LEFT))
4060
4061         # continue on to run this test even if 51b didn't finish,
4062         # just to delete the many subdirectories created.
4063         [ ! -d "${BASE}/d1" ] && skip "test_51b() not run" && return 0
4064
4065         # for ldiskfs the nlink count should be 1, but this is OSD specific
4066         # and so this is listed for informational purposes only
4067         echo "nlink before: $(stat -c %h $BASE), created before: $NUMTEST"
4068         unlinkmany -d $BASE/d $DELETE
4069         RC=$?
4070
4071         if [ $RC -ne 0 ]; then
4072                 if [ "$NUMPREV" == "failed" ]; then
4073                         skip "previous setup failed"
4074                         return 0
4075                 else
4076                         error "unlink of first $DELETE subdirs failed"
4077                         return $RC
4078                 fi
4079         fi
4080
4081         echo "nlink between: $(stat -c %h $BASE)"
4082         # trim the first line of ls output
4083         local FOUND=$(($(ls -l ${BASE} | wc -l) - 1))
4084         [ $FOUND -ne $LEFT ] &&
4085                 error "can't find subdirs: found only $FOUND/$LEFT"
4086
4087         unlinkmany -d $BASE/d $DELETE $LEFT ||
4088                 error "unlink of second $LEFT subdirs failed"
4089         # regardless of whether the backing filesystem tracks nlink accurately
4090         # or not, the nlink count shouldn't be more than "." and ".." here
4091         local AFTER=$(stat -c %h $BASE)
4092         [[ $AFTER -gt 2 ]] && error "nlink after: $AFTER > 2" ||
4093                 echo "nlink after: $AFTER"
4094 }
4095 run_test 51ba "verify nlink for many subdirectory cleanup"
4096
4097 test_51d() {
4098         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4099         [[ $OSTCOUNT -lt 3 ]] &&
4100                 skip_env "skipping test with few OSTs" && return
4101         test_mkdir -p $DIR/$tdir
4102         createmany -o $DIR/$tdir/t- 1000
4103         $GETSTRIPE $DIR/$tdir > $TMP/files
4104         for N in $(seq 0 $((OSTCOUNT - 1))); do
4105                 OBJS[$N]=$(awk -vobjs=0 '($1 == '$N') { objs += 1 } \
4106                         END { printf("%0.0f", objs) }' $TMP/files)
4107                 OBJS0[$N]=$(grep -A 1 idx $TMP/files | awk -vobjs=0 \
4108                         '($1 == '$N') { objs += 1 } \
4109                         END { printf("%0.0f", objs) }')
4110                 log "OST$N has ${OBJS[$N]} objects, ${OBJS0[$N]} are index 0"
4111         done
4112         unlinkmany $DIR/$tdir/t- 1000
4113
4114         NLAST=0
4115         for N in $(seq 1 $((OSTCOUNT - 1))); do
4116                 [[ ${OBJS[$N]} -lt $((${OBJS[$NLAST]} - 20)) ]] &&
4117                         error "OST $N has less objects vs OST $NLAST" \
4118                               " (${OBJS[$N]} < ${OBJS[$NLAST]}"
4119                 [[ ${OBJS[$N]} -gt $((${OBJS[$NLAST]} + 20)) ]] &&
4120                         error "OST $N has less objects vs OST $NLAST" \
4121                               " (${OBJS[$N]} < ${OBJS[$NLAST]}"
4122
4123                 [[ ${OBJS0[$N]} -lt $((${OBJS0[$NLAST]} - 20)) ]] &&
4124                         error "OST $N has less #0 objects vs OST $NLAST" \
4125                               " (${OBJS0[$N]} < ${OBJS0[$NLAST]}"
4126                 [[ ${OBJS0[$N]} -gt $((${OBJS0[$NLAST]} + 20)) ]] &&
4127                         error "OST $N has less #0 objects vs OST $NLAST" \
4128                               " (${OBJS0[$N]} < ${OBJS0[$NLAST]}"
4129                 NLAST=$N
4130         done
4131 }
4132 run_test 51d "check object distribution ===================="
4133
4134 test_51e() {
4135         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
4136                 skip "Only applicable to ldiskfs-based MDTs"
4137                 return
4138         fi
4139
4140         test_mkdir -c1 $DIR/$tdir       || error "create $tdir failed"
4141         test_mkdir -c1 $DIR/$tdir/d0    || error "create d0 failed"
4142
4143         touch $DIR/$tdir/d0/foo
4144         createmany -l $DIR/$tdir/d0/foo $DIR/$tdir/d0/f- 65001 &&
4145                 error "file exceed 65000 nlink limit!"
4146         unlinkmany $DIR/$tdir/d0/f- 65001
4147         return 0
4148 }
4149 run_test 51e "check file nlink limit"
4150
4151 test_52a() {
4152         [ -f $DIR/$tdir/foo ] && chattr -a $DIR/$tdir/foo
4153         test_mkdir -p $DIR/$tdir
4154         touch $DIR/$tdir/foo
4155         chattr +a $DIR/$tdir/foo || error "chattr +a failed"
4156         echo bar >> $DIR/$tdir/foo || error "append bar failed"
4157         cp /etc/hosts $DIR/$tdir/foo && error "cp worked"
4158         rm -f $DIR/$tdir/foo 2>/dev/null && error "rm worked"
4159         link $DIR/$tdir/foo $DIR/$tdir/foo_link 2>/dev/null &&
4160                                         error "link worked"
4161         echo foo >> $DIR/$tdir/foo || error "append foo failed"
4162         mrename $DIR/$tdir/foo $DIR/$tdir/foo_ren && error "rename worked"
4163         lsattr $DIR/$tdir/foo | egrep -q "^-+a[-e]+ $DIR/$tdir/foo" ||
4164                                                      error "lsattr"
4165         chattr -a $DIR/$tdir/foo || error "chattr -a failed"
4166         cp -r $DIR/$tdir /tmp/
4167         rm -fr $DIR/$tdir || error "cleanup rm failed"
4168 }
4169 run_test 52a "append-only flag test (should return errors) ====="
4170
4171 test_52b() {
4172         [ -f $DIR/$tdir/foo ] && chattr -i $DIR/$tdir/foo
4173         test_mkdir -p $DIR/$tdir
4174         touch $DIR/$tdir/foo
4175         chattr +i $DIR/$tdir/foo || error "chattr +i failed"
4176         cat test > $DIR/$tdir/foo && error "cat test worked"
4177         cp /etc/hosts $DIR/$tdir/foo && error "cp worked"
4178         rm -f $DIR/$tdir/foo 2>/dev/null && error "rm worked"
4179         link $DIR/$tdir/foo $DIR/$tdir/foo_link 2>/dev/null &&
4180                                         error "link worked"
4181         echo foo >> $DIR/$tdir/foo && error "echo worked"
4182         mrename $DIR/$tdir/foo $DIR/$tdir/foo_ren && error "rename worked"
4183         [ -f $DIR/$tdir/foo ] || error "$tdir/foo is not a file"
4184         [ -f $DIR/$tdir/foo_ren ] && error "$tdir/foo_ren is not a file"
4185         lsattr $DIR/$tdir/foo | egrep -q "^-+i[-e]+ $DIR/$tdir/foo" ||
4186                                                         error "lsattr"
4187         chattr -i $DIR/$tdir/foo || error "chattr failed"
4188
4189         rm -fr $DIR/$tdir || error "unable to remove $DIR/$tdir"
4190 }
4191 run_test 52b "immutable flag test (should return errors) ======="
4192
4193 test_53() {
4194         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4195         remote_mds_nodsh && skip "remote MDS with nodsh" && return
4196         remote_ost_nodsh && skip "remote OST with nodsh" && return
4197
4198         local param
4199         local param_seq
4200         local ostname
4201         local mds_last
4202         local mds_last_seq
4203         local ost_last
4204         local ost_last_seq
4205         local ost_last_id
4206         local ostnum
4207         local node
4208         local found=false
4209         local support_last_seq=true
4210
4211         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.60) ]] ||
4212                 support_last_seq=false
4213
4214         # only test MDT0000
4215         local mdtosc=$(get_mdtosc_proc_path $SINGLEMDS)
4216         local value
4217         for value in $(do_facet $SINGLEMDS \
4218                        $LCTL get_param osc.$mdtosc.prealloc_last_id) ; do
4219                 param=$(echo ${value[0]} | cut -d "=" -f1)
4220                 ostname=$(echo $param | cut -d "." -f2 | cut -d - -f 1-2)
4221
4222                 if $support_last_seq; then
4223                         param_seq=$(echo $param |
4224                                 sed -e s/prealloc_last_id/prealloc_last_seq/g)
4225                         mds_last_seq=$(do_facet $SINGLEMDS \
4226                                        $LCTL get_param -n $param_seq)
4227                 fi
4228                 mds_last=$(do_facet $SINGLEMDS $LCTL get_param -n $param)
4229
4230                 ostnum=$(index_from_ostuuid ${ostname}_UUID)
4231                 node=$(facet_active_host ost$((ostnum+1)))
4232                 param="obdfilter.$ostname.last_id"
4233                 for ost_last in $(do_node $node $LCTL get_param -n $param) ; do
4234                         echo "$ostname.last_id=$ost_last; MDS.last_id=$mds_last"
4235                         ost_last_id=$ost_last
4236
4237                         if $support_last_seq; then
4238                                 ost_last_id=$(echo $ost_last |
4239                                               awk -F':' '{print $2}' |
4240                                               sed -e "s/^0x//g")
4241                                 ost_last_seq=$(echo $ost_last |
4242                                                awk -F':' '{print $1}')
4243                                 [[ $ost_last_seq = $mds_last_seq ]] || continue
4244                         fi
4245
4246                         if [[ $ost_last_id != $mds_last ]]; then
4247                                 error "$ost_last_id != $mds_last"
4248                         else
4249                                 found=true
4250                                 break
4251                         fi
4252                 done
4253         done
4254         $found || error "can not match last_seq/last_id for $mdtosc"
4255         return 0
4256 }
4257 run_test 53 "verify that MDS and OSTs agree on pre-creation ===="
4258
4259 test_54a() {
4260         $SOCKETSERVER $DIR/socket ||
4261                 error "$SOCKETSERVER $DIR/socket failed: $?"
4262         $SOCKETCLIENT $DIR/socket ||
4263                 error "$SOCKETCLIENT $DIR/socket failed: $?"
4264         $MUNLINK $DIR/socket || error "$MUNLINK $DIR/socket failed: $?"
4265 }
4266 run_test 54a "unix domain socket test =========================="
4267
4268 test_54b() {
4269         f="$DIR/f54b"
4270         mknod $f c 1 3
4271         chmod 0666 $f
4272         dd if=/dev/zero of=$f bs=$(page_size) count=1
4273 }
4274 run_test 54b "char device works in lustre ======================"
4275
4276 find_loop_dev() {
4277         [ -b /dev/loop/0 ] && LOOPBASE=/dev/loop/
4278         [ -b /dev/loop0 ] && LOOPBASE=/dev/loop
4279         [ -z "$LOOPBASE" ] && echo "/dev/loop/0 and /dev/loop0 gone?" && return
4280
4281         for i in $(seq 3 7); do
4282                 losetup $LOOPBASE$i > /dev/null 2>&1 && continue
4283                 LOOPDEV=$LOOPBASE$i
4284                 LOOPNUM=$i
4285                 break
4286         done
4287 }
4288
4289 cleanup_54c() {
4290         loopdev="$DIR/loop54c"
4291
4292         trap 0
4293         $UMOUNT -d $DIR/$tdir || rc=$?
4294         losetup -d $loopdev || true
4295         losetup -d $LOOPDEV || true
4296         rm -rf $loopdev $DIR/$tfile $DIR/$tdir
4297         return $rc
4298 }
4299
4300 test_54c() {
4301         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4302         loopdev="$DIR/loop54c"
4303
4304         find_loop_dev
4305         [ -z "$LOOPNUM" ] && echo "couldn't find empty loop device" && return
4306         trap cleanup_54c EXIT
4307         mknod $loopdev b 7 $LOOPNUM
4308         echo "make a loop file system with $DIR/$tfile on $loopdev ($LOOPNUM)."
4309         dd if=/dev/zero of=$DIR/$tfile bs=$(get_page_size client) seek=1024 count=1 > /dev/null
4310         losetup $loopdev $DIR/$tfile ||
4311                 error "can't set up $loopdev for $DIR/$tfile"
4312         mkfs.ext2 $loopdev || error "mke2fs on $loopdev"
4313         test_mkdir -p $DIR/$tdir
4314         mount -t ext2 $loopdev $DIR/$tdir ||
4315                 error "error mounting $loopdev on $DIR/$tdir"
4316         dd if=/dev/zero of=$DIR/$tdir/tmp bs=$(get_page_size client) count=30 ||
4317                 error "dd write"
4318         df $DIR/$tdir
4319         dd if=$DIR/$tdir/tmp of=/dev/zero bs=$(get_page_size client) count=30 ||
4320                 error "dd read"
4321         cleanup_54c
4322 }
4323 run_test 54c "block device works in lustre ====================="
4324
4325 test_54d() {
4326         f="$DIR/f54d"
4327         string="aaaaaa"
4328         mknod $f p
4329         [ "$string" = $(echo $string > $f | cat $f) ] || error "$f != $string"
4330 }
4331 run_test 54d "fifo device works in lustre ======================"
4332
4333 test_54e() {
4334         f="$DIR/f54e"
4335         string="aaaaaa"
4336         cp -aL /dev/console $f
4337         echo $string > $f || error "echo $string to $f failed"
4338 }
4339 run_test 54e "console/tty device works in lustre ======================"
4340
4341 #The test_55 used to be iopen test and it was removed by bz#24037.
4342 #run_test 55 "check iopen_connect_dentry() ======================"
4343
4344 test_56a() {    # was test_56
4345         rm -rf $DIR/$tdir
4346         $SETSTRIPE -d $DIR
4347         test_mkdir -p $DIR/$tdir/dir
4348         NUMFILES=3
4349         NUMFILESx2=$(($NUMFILES * 2))
4350         for i in $(seq 1 $NUMFILES); do
4351                 touch $DIR/$tdir/file$i
4352                 touch $DIR/$tdir/dir/file$i
4353         done
4354
4355         # test lfs getstripe with --recursive
4356         FILENUM=$($GETSTRIPE --recursive $DIR/$tdir | grep -c obdidx)
4357         [[ $FILENUM -eq $NUMFILESx2 ]] ||
4358                 error "$GETSTRIPE --recursive: found $FILENUM, not $NUMFILESx2"
4359         FILENUM=$($GETSTRIPE $DIR/$tdir | grep -c obdidx)
4360         [[ $FILENUM -eq $NUMFILES ]] ||
4361                 error "$GETSTRIPE $DIR/$tdir: found $FILENUM, not $NUMFILES"
4362         echo "$GETSTRIPE --recursive passed."
4363
4364         # test lfs getstripe with file instead of dir
4365         FILENUM=$($GETSTRIPE $DIR/$tdir/file1 | grep -c obdidx)
4366         [[ $FILENUM -eq 1 ]] ||
4367                 error "$GETSTRIPE $DIR/$tdir/file1: found $FILENUM, not 1"
4368         echo "$GETSTRIPE file1 passed."
4369
4370         #test lfs getstripe with --verbose
4371         [[ $($GETSTRIPE --verbose $DIR/$tdir |
4372                 grep -c lmm_magic) -eq $NUMFILES ]] ||
4373                 error "$GETSTRIPE --verbose $DIR/$tdir: want $NUMFILES"
4374         [[ $($GETSTRIPE $DIR/$tdir | grep -c lmm_magic) -eq 0 ]] ||
4375                 rror "$GETSTRIPE $DIR/$tdir: showed lmm_magic"
4376         echo "$GETSTRIPE --verbose passed."
4377
4378         #test lfs getstripe with --obd
4379         $GETSTRIPE --obd wrong_uuid $DIR/$tdir 2>&1 |
4380                 grep -q "unknown obduuid" ||
4381                 error "$GETSTRIPE --obd wrong_uuid should return error message"
4382
4383         [[ $OSTCOUNT -lt 2 ]] &&
4384                 skip_env "skipping other $GETSTRIPE --obd test" && return
4385
4386         OSTIDX=1
4387         OBDUUID=$(ostuuid_from_index $OSTIDX)
4388         FILENUM=$($GETSTRIPE -ir $DIR/$tdir | grep "^$OSTIDX\$" | wc -l)
4389         FOUND=$($GETSTRIPE -r --obd $OBDUUID $DIR/$tdir | grep obdidx | wc -l)
4390         [[ $FOUND -eq $FILENUM ]] ||
4391                 error "$GETSTRIPE --obd wrong: found $FOUND, expected $FILENUM"
4392         [[ $($GETSTRIPE -r -v --obd $OBDUUID $DIR/$tdir |
4393                 sed '/^[         ]*'${OSTIDX}'[  ]/d' |
4394                 sed -n '/^[      ]*[0-9][0-9]*[  ]/p' | wc -l) -eq 0 ]] ||
4395                 error "$GETSTRIPE --obd: should not show file on other obd"
4396         echo "$GETSTRIPE --obd passed"
4397 }
4398 run_test 56a "check $GETSTRIPE"
4399
4400 NUMFILES=3
4401 NUMDIRS=3
4402 setup_56() {
4403         local LOCAL_NUMFILES="$1"
4404         local LOCAL_NUMDIRS="$2"
4405         local MKDIR_PARAMS="$3"
4406         local DIR_STRIPE_PARAMS="$4"
4407
4408         if [ ! -d "$TDIR" ] ; then
4409                 test_mkdir -p $DIR_STRIPE_PARAMS $TDIR
4410                 [ "$MKDIR_PARAMS" ] && $SETSTRIPE $MKDIR_PARAMS $TDIR
4411                 for i in `seq 1 $LOCAL_NUMFILES` ; do
4412                         touch $TDIR/file$i
4413                 done
4414                 for i in `seq 1 $LOCAL_NUMDIRS` ; do
4415                         test_mkdir $DIR_STRIPE_PARAMS $TDIR/dir$i
4416                         for j in `seq 1 $LOCAL_NUMFILES` ; do
4417                                 touch $TDIR/dir$i/file$j
4418                         done
4419                 done
4420         fi
4421 }
4422
4423 setup_56_special() {
4424         LOCAL_NUMFILES=$1
4425         LOCAL_NUMDIRS=$2
4426         setup_56 $1 $2
4427         if [ ! -e "$TDIR/loop1b" ] ; then
4428                 for i in `seq 1 $LOCAL_NUMFILES` ; do
4429                         mknod $TDIR/loop${i}b b 7 $i
4430                         mknod $TDIR/null${i}c c 1 3
4431                         ln -s $TDIR/file1 $TDIR/link${i}l
4432                 done
4433                 for i in `seq 1 $LOCAL_NUMDIRS` ; do
4434                         mknod $TDIR/dir$i/loop${i}b b 7 $i
4435                         mknod $TDIR/dir$i/null${i}c c 1 3
4436                         ln -s $TDIR/dir$i/file1 $TDIR/dir$i/link${i}l
4437                 done
4438         fi
4439 }
4440
4441 test_56g() {
4442         $SETSTRIPE -d $DIR
4443
4444         TDIR=$DIR/${tdir}g
4445         setup_56 $NUMFILES $NUMDIRS
4446
4447         EXPECTED=$(($NUMDIRS + 2))
4448         # test lfs find with -name
4449         for i in $(seq 1 $NUMFILES) ; do
4450                 NUMS=$($LFIND -name "*$i" $TDIR | wc -l)
4451                 [ $NUMS -eq $EXPECTED ] ||
4452                         error "lfs find -name \"*$i\" $TDIR wrong: "\
4453                               "found $NUMS, expected $EXPECTED"
4454         done
4455 }
4456 run_test 56g "check lfs find -name ============================="
4457
4458 test_56h() {
4459         $SETSTRIPE -d $DIR
4460
4461         TDIR=$DIR/${tdir}g
4462         setup_56 $NUMFILES $NUMDIRS
4463
4464         EXPECTED=$(((NUMDIRS + 1) * (NUMFILES - 1) + NUMFILES))
4465         # test lfs find with ! -name
4466         for i in $(seq 1 $NUMFILES) ; do
4467                 NUMS=$($LFIND ! -name "*$i" $TDIR | wc -l)
4468                 [ $NUMS -eq $EXPECTED ] ||
4469                         error "lfs find ! -name \"*$i\" $TDIR wrong: "\
4470                               "found $NUMS, expected $EXPECTED"
4471         done
4472 }
4473 run_test 56h "check lfs find ! -name ============================="
4474
4475 test_56i() {
4476        tdir=${tdir}i
4477        test_mkdir -p $DIR/$tdir
4478        UUID=$(ostuuid_from_index 0 $DIR/$tdir)
4479        CMD="$LFIND -ost $UUID $DIR/$tdir"
4480        OUT=$($CMD)
4481        [ -z "$OUT" ] || error "\"$CMD\" returned directory '$OUT'"
4482 }
4483 run_test 56i "check 'lfs find -ost UUID' skips directories ======="
4484
4485 test_56j() {
4486         TDIR=$DIR/${tdir}g
4487         setup_56_special $NUMFILES $NUMDIRS
4488
4489         EXPECTED=$((NUMDIRS + 1))
4490         CMD="$LFIND -type d $TDIR"
4491         NUMS=$($CMD | wc -l)
4492         [ $NUMS -eq $EXPECTED ] ||
4493                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4494 }
4495 run_test 56j "check lfs find -type d ============================="
4496
4497 test_56k() {
4498         TDIR=$DIR/${tdir}g
4499         setup_56_special $NUMFILES $NUMDIRS
4500
4501         EXPECTED=$(((NUMDIRS + 1) * NUMFILES))
4502         CMD="$LFIND -type f $TDIR"
4503         NUMS=$($CMD | wc -l)
4504         [ $NUMS -eq $EXPECTED ] ||
4505                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4506 }
4507 run_test 56k "check lfs find -type f ============================="
4508
4509 test_56l() {
4510         TDIR=$DIR/${tdir}g
4511         setup_56_special $NUMFILES $NUMDIRS
4512
4513         EXPECTED=$((NUMDIRS + NUMFILES))
4514         CMD="$LFIND -type b $TDIR"
4515         NUMS=$($CMD | wc -l)
4516         [ $NUMS -eq $EXPECTED ] ||
4517                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4518 }
4519 run_test 56l "check lfs find -type b ============================="
4520
4521 test_56m() {
4522         TDIR=$DIR/${tdir}g
4523         setup_56_special $NUMFILES $NUMDIRS
4524
4525         EXPECTED=$((NUMDIRS + NUMFILES))
4526         CMD="$LFIND -type c $TDIR"
4527         NUMS=$($CMD | wc -l)
4528         [ $NUMS -eq $EXPECTED ] ||
4529                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4530 }
4531 run_test 56m "check lfs find -type c ============================="
4532
4533 test_56n() {
4534         TDIR=$DIR/${tdir}g
4535         setup_56_special $NUMFILES $NUMDIRS
4536
4537         EXPECTED=$((NUMDIRS + NUMFILES))
4538         CMD="$LFIND -type l $TDIR"
4539         NUMS=$($CMD | wc -l)
4540         [ $NUMS -eq $EXPECTED ] ||
4541                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4542 }
4543 run_test 56n "check lfs find -type l ============================="
4544
4545 test_56o() {
4546         TDIR=$DIR/${tdir}o
4547         setup_56 $NUMFILES $NUMDIRS
4548         utime $TDIR/file1 > /dev/null || error "utime (1)"
4549         utime $TDIR/file2 > /dev/null || error "utime (2)"
4550         utime $TDIR/dir1 > /dev/null || error "utime (3)"
4551         utime $TDIR/dir2 > /dev/null || error "utime (4)"
4552         utime $TDIR/dir1/file1 > /dev/null || error "utime (5)"
4553         dd if=/dev/zero count=1 >> $TDIR/dir1/file1 && sync
4554
4555         EXPECTED=4
4556         NUMS=`$LFIND -mtime +0 $TDIR | wc -l`
4557         [ $NUMS -eq $EXPECTED ] || \
4558                 error "lfs find -mtime +0 $TDIR wrong: found $NUMS, expected $EXPECTED"
4559
4560         EXPECTED=12
4561         CMD="$LFIND -mtime 0 $TDIR"
4562         NUMS=$($CMD | wc -l)
4563         [ $NUMS -eq $EXPECTED ] ||
4564                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4565 }
4566 run_test 56o "check lfs find -mtime for old files =========================="
4567
4568 test_56p() {
4569         [ $RUNAS_ID -eq $UID ] &&
4570                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
4571
4572         TDIR=$DIR/${tdir}p
4573         setup_56 $NUMFILES $NUMDIRS
4574
4575         chown $RUNAS_ID $TDIR/file* || error "chown $DIR/${tdir}g/file$i failed"
4576         EXPECTED=$NUMFILES
4577         CMD="$LFIND -uid $RUNAS_ID $TDIR"
4578         NUMS=$($CMD | wc -l)
4579         [ $NUMS -eq $EXPECTED ] || \
4580                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4581
4582         EXPECTED=$(((NUMFILES + 1) * NUMDIRS + 1))
4583         CMD="$LFIND ! -uid $RUNAS_ID $TDIR"
4584         NUMS=$($CMD | wc -l)
4585         [ $NUMS -eq $EXPECTED ] || \
4586                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4587 }
4588 run_test 56p "check lfs find -uid and ! -uid ==============================="
4589
4590 test_56q() {
4591         [ $RUNAS_ID -eq $UID ] &&
4592                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
4593
4594         TDIR=$DIR/${tdir}q
4595         setup_56 $NUMFILES $NUMDIRS
4596
4597         chgrp $RUNAS_GID $TDIR/file* || error "chown $TDIR/file$i failed"
4598
4599         EXPECTED=$NUMFILES
4600         CMD="$LFIND -gid $RUNAS_GID $TDIR"
4601         NUMS=$($CMD | wc -l)
4602         [ $NUMS -eq $EXPECTED ] ||
4603                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4604
4605         EXPECTED=$(( ($NUMFILES+1) * $NUMDIRS + 1))
4606         CMD="$LFIND ! -gid $RUNAS_GID $TDIR"
4607         NUMS=$($CMD | wc -l)
4608         [ $NUMS -eq $EXPECTED ] ||
4609                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4610 }
4611 run_test 56q "check lfs find -gid and ! -gid ==============================="
4612
4613 test_56r() {
4614         TDIR=$DIR/${tdir}r
4615         setup_56 $NUMFILES $NUMDIRS
4616
4617         EXPECTED=12
4618         CMD="$LFIND -size 0 -type f $TDIR"
4619         NUMS=$($CMD | wc -l)
4620         [ $NUMS -eq $EXPECTED ] ||
4621                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4622         EXPECTED=0
4623         CMD="$LFIND ! -size 0 -type f $TDIR"
4624         NUMS=$($CMD | wc -l)
4625         [ $NUMS -eq $EXPECTED ] ||
4626                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4627         echo "test" > $TDIR/$tfile
4628         echo "test2" > $TDIR/$tfile.2 && sync
4629         EXPECTED=1
4630         CMD="$LFIND -size 5 -type f $TDIR"
4631         NUMS=$($CMD | wc -l)
4632         [ $NUMS -eq $EXPECTED ] ||
4633                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4634         EXPECTED=1
4635         CMD="$LFIND -size +5 -type f $TDIR"
4636         NUMS=$($CMD | wc -l)
4637         [ $NUMS -eq $EXPECTED ] ||
4638                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4639         EXPECTED=2
4640         CMD="$LFIND -size +0 -type f $TDIR"
4641         NUMS=$($CMD | wc -l)
4642         [ $NUMS -eq $EXPECTED ] ||
4643                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4644         EXPECTED=2
4645         CMD="$LFIND ! -size -5 -type f $TDIR"
4646         NUMS=$($CMD | wc -l)
4647         [ $NUMS -eq $EXPECTED ] ||
4648                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4649         EXPECTED=12
4650         CMD="$LFIND -size -5 -type f $TDIR"
4651         NUMS=$($CMD | wc -l)
4652         [ $NUMS -eq $EXPECTED ] ||
4653                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4654 }
4655 run_test 56r "check lfs find -size works =========================="
4656
4657 test_56s() { # LU-611
4658         TDIR=$DIR/${tdir}s
4659         setup_56 $NUMFILES $NUMDIRS "-c $OSTCOUNT"
4660
4661         if [[ $OSTCOUNT -gt 1 ]]; then
4662                 $SETSTRIPE -c 1 $TDIR/$tfile.{0,1,2,3}
4663                 ONESTRIPE=4
4664                 EXTRA=4
4665         else
4666                 ONESTRIPE=$(((NUMDIRS + 1) * NUMFILES))
4667                 EXTRA=0
4668         fi
4669
4670         EXPECTED=$(((NUMDIRS + 1) * NUMFILES))
4671         CMD="$LFIND -stripe-count $OSTCOUNT -type f $TDIR"
4672         NUMS=$($CMD | wc -l)
4673         [ $NUMS -eq $EXPECTED ] || {
4674                 $GETSTRIPE -R $TDIR
4675                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4676         }
4677
4678         EXPECTED=$(((NUMDIRS + 1) * NUMFILES + EXTRA))
4679         CMD="$LFIND -stripe-count +0 -type f $TDIR"
4680         NUMS=$($CMD | wc -l)
4681         [ $NUMS -eq $EXPECTED ] || {
4682                 $GETSTRIPE -R $TDIR
4683                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4684         }
4685
4686         EXPECTED=$ONESTRIPE
4687         CMD="$LFIND -stripe-count 1 -type f $TDIR"
4688         NUMS=$($CMD | wc -l)
4689         [ $NUMS -eq $EXPECTED ] || {
4690                 $GETSTRIPE -R $TDIR
4691                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4692         }
4693
4694         CMD="$LFIND -stripe-count -2 -type f $TDIR"
4695         NUMS=$($CMD | wc -l)
4696         [ $NUMS -eq $EXPECTED ] || {
4697                 $GETSTRIPE -R $TDIR
4698                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4699         }
4700
4701         EXPECTED=0
4702         CMD="$LFIND -stripe-count $((OSTCOUNT + 1)) -type f $TDIR"
4703         NUMS=$($CMD | wc -l)
4704         [ $NUMS -eq $EXPECTED ] || {
4705                 $GETSTRIPE -R $TDIR
4706                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4707         }
4708 }
4709 run_test 56s "check lfs find -stripe-count works"
4710
4711 test_56t() { # LU-611
4712         TDIR=$DIR/${tdir}t
4713         setup_56 $NUMFILES $NUMDIRS "-s 512k"
4714
4715         $SETSTRIPE -S 256k $TDIR/$tfile.{0,1,2,3}
4716
4717         EXPECTED=$(((NUMDIRS + 1) * NUMFILES))
4718         CMD="$LFIND -stripe-size 512k -type f $TDIR"
4719         NUMS=$($CMD | wc -l)
4720         [ $NUMS -eq $EXPECTED ] ||
4721                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4722
4723         CMD="$LFIND -stripe-size +320k -type f $TDIR"
4724         NUMS=$($CMD | wc -l)
4725         [ $NUMS -eq $EXPECTED ] ||
4726                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4727
4728         EXPECTED=$(((NUMDIRS + 1) * NUMFILES + 4))
4729         CMD="$LFIND -stripe-size +200k -type f $TDIR"
4730         NUMS=$($CMD | wc -l)
4731         [ $NUMS -eq $EXPECTED ] ||
4732                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4733
4734         CMD="$LFIND -stripe-size -640k -type f $TDIR"
4735         NUMS=$($CMD | wc -l)
4736         [ $NUMS -eq $EXPECTED ] ||
4737                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4738
4739         EXPECTED=4
4740         CMD="$LFIND -stripe-size 256k -type f $TDIR"
4741         NUMS=$($CMD | wc -l)
4742         [ $NUMS -eq $EXPECTED ] ||
4743                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4744
4745         CMD="$LFIND -stripe-size -320k -type f $TDIR"
4746         NUMS=$($CMD | wc -l)
4747         [ $NUMS -eq $EXPECTED ] ||
4748                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4749
4750         EXPECTED=0
4751         CMD="$LFIND -stripe-size 1024k -type f $TDIR"
4752         NUMS=$($CMD | wc -l)
4753         [ $NUMS -eq $EXPECTED ] ||
4754                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4755 }
4756 run_test 56t "check lfs find -stripe-size works"
4757
4758 test_56u() { # LU-611
4759         TDIR=$DIR/${tdir}u
4760         setup_56 $NUMFILES $NUMDIRS "-i 0"
4761
4762         if [[ $OSTCOUNT -gt 1 ]]; then
4763                 $SETSTRIPE -i 1 $TDIR/$tfile.{0,1,2,3}
4764                 ONESTRIPE=4
4765         else
4766                 ONESTRIPE=0
4767         fi
4768
4769         EXPECTED=$(((NUMDIRS + 1) * NUMFILES))
4770         CMD="$LFIND -stripe-index 0 -type f $TDIR"
4771         NUMS=$($CMD | wc -l)
4772         [ $NUMS -eq $EXPECTED ] ||
4773                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4774
4775         EXPECTED=$ONESTRIPE
4776         CMD="$LFIND -stripe-index 1 -type f $TDIR"
4777         NUMS=$($CMD | wc -l)
4778         [ $NUMS -eq $EXPECTED ] ||
4779                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4780
4781         CMD="$LFIND ! -stripe-index 0 -type f $TDIR"
4782         NUMS=$($CMD | wc -l)
4783         [ $NUMS -eq $EXPECTED ] ||
4784                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4785
4786         EXPECTED=0
4787         # This should produce an error and not return any files
4788         CMD="$LFIND -stripe-index $OSTCOUNT -type f $TDIR"
4789         NUMS=$($CMD 2>/dev/null | wc -l)
4790         [ $NUMS -eq $EXPECTED ] ||
4791                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4792
4793         if [[ $OSTCOUNT -gt 1 ]]; then
4794                 EXPECTED=$(((NUMDIRS + 1) * NUMFILES + ONESTRIPE))
4795                 CMD="$LFIND -stripe-index 0,1 -type f $TDIR"
4796                 NUMS=$($CMD | wc -l)
4797                 [ $NUMS -eq $EXPECTED ] ||
4798                         error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4799         fi
4800 }
4801 run_test 56u "check lfs find -stripe-index works"
4802
4803 test_56v() {
4804     local MDT_IDX=0
4805
4806     TDIR=$DIR/${tdir}v
4807     rm -rf $TDIR
4808     setup_56 $NUMFILES $NUMDIRS
4809
4810     UUID=$(mdtuuid_from_index $MDT_IDX $TDIR)
4811     [ -z "$UUID" ] && error "mdtuuid_from_index cannot find MDT index $MDT_IDX"
4812
4813     for file in $($LFIND -mdt $UUID $TDIR); do
4814         file_mdt_idx=$($GETSTRIPE -M $file)
4815         [ $file_mdt_idx -eq $MDT_IDX ] ||
4816             error "'lfind -mdt $UUID' != 'getstripe -M' ($file_mdt_idx)"
4817     done
4818 }
4819 run_test 56v "check 'lfs find -mdt match with lfs getstripe -M' ======="
4820
4821 test_56w() {
4822         [[ $OSTCOUNT -lt 2 ]] && skip_env "$OSTCOUNT < 2 OSTs -- skipping" &&
4823                 return
4824         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4825         TDIR=$DIR/${tdir}w
4826
4827     rm -rf $TDIR || error "remove $TDIR failed"
4828     setup_56 $NUMFILES $NUMDIRS "-c $OSTCOUNT" "-c1"
4829
4830     local stripe_size
4831     stripe_size=$($GETSTRIPE -S -d $TDIR) ||
4832         error "$GETSTRIPE -S -d $TDIR failed"
4833     stripe_size=${stripe_size%% *}
4834
4835     local file_size=$((stripe_size * OSTCOUNT))
4836     local file_num=$((NUMDIRS * NUMFILES + NUMFILES))
4837     local required_space=$((file_num * file_size))
4838     local free_space=$($LCTL get_param -n lov.$LOVNAME.kbytesavail)
4839     [[ $free_space -le $((required_space / 1024)) ]] &&
4840         skip_env "need at least $required_space bytes free space," \
4841                  "have $free_space kbytes" && return
4842
4843     local dd_bs=65536
4844     local dd_count=$((file_size / dd_bs))
4845
4846     # write data into the files
4847     local i
4848     local j
4849     local file
4850     for i in $(seq 1 $NUMFILES); do
4851         file=$TDIR/file$i
4852         yes | dd bs=$dd_bs count=$dd_count of=$file >/dev/null 2>&1 ||
4853             error "write data into $file failed"
4854     done
4855     for i in $(seq 1 $NUMDIRS); do
4856         for j in $(seq 1 $NUMFILES); do
4857             file=$TDIR/dir$i/file$j
4858             yes | dd bs=$dd_bs count=$dd_count of=$file \
4859                 >/dev/null 2>&1 ||
4860                 error "write data into $file failed"
4861         done
4862     done
4863
4864     local expected=-1
4865     [[ $OSTCOUNT -gt 1 ]] && expected=$((OSTCOUNT - 1))
4866
4867     # lfs_migrate file
4868     local cmd="$LFS_MIGRATE -y -c $expected $TDIR/file1"
4869     echo "$cmd"
4870     eval $cmd || error "$cmd failed"
4871
4872     check_stripe_count $TDIR/file1 $expected
4873
4874         if [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.90) ];
4875         then
4876                 # lfs_migrate file onto OST 0 if it is on OST 1, or onto
4877                 # OST 1 if it is on OST 0. This file is small enough to
4878                 # be on only one stripe.
4879                 file=$TDIR/migr_1_ost
4880                 dd bs=$dd_bs count=1 if=/dev/urandom of=$file >/dev/null 2>&1 ||
4881                         error "write data into $file failed"
4882                 local obdidx=$($LFS getstripe -i $file)
4883                 local oldmd5=$(md5sum $file)
4884                 local newobdidx=0
4885                 [[ $obdidx -eq 0 ]] && newobdidx=1
4886                 cmd="$LFS migrate -i $newobdidx $file"
4887                 echo $cmd
4888                 eval $cmd || error "$cmd failed"
4889                 local realobdix=$($LFS getstripe -i $file)
4890                 local newmd5=$(md5sum $file)
4891                 [[ $newobdidx -ne $realobdix ]] &&
4892                         error "new OST is different (was=$obdidx, wanted=$newobdidx, got=$realobdix)"
4893                 [[ "$oldmd5" != "$newmd5" ]] &&
4894                         error "md5sum differ: $oldmd5, $newmd5"
4895         fi
4896
4897     # lfs_migrate dir
4898     cmd="$LFS_MIGRATE -y -c $expected $TDIR/dir1"
4899     echo "$cmd"
4900     eval $cmd || error "$cmd failed"
4901
4902     for j in $(seq 1 $NUMFILES); do
4903         check_stripe_count $TDIR/dir1/file$j $expected
4904     done
4905
4906     # lfs_migrate works with lfs find
4907     cmd="$LFIND -stripe_count $OSTCOUNT -type f $TDIR |
4908          $LFS_MIGRATE -y -c $expected"
4909     echo "$cmd"
4910     eval $cmd || error "$cmd failed"
4911
4912     for i in $(seq 2 $NUMFILES); do
4913         check_stripe_count $TDIR/file$i $expected
4914     done
4915     for i in $(seq 2 $NUMDIRS); do
4916         for j in $(seq 1 $NUMFILES); do
4917             check_stripe_count $TDIR/dir$i/file$j $expected
4918         done
4919     done
4920 }
4921 run_test 56w "check lfs_migrate -c stripe_count works"
4922
4923 test_56x() {
4924         check_swap_layouts_support && return 0
4925         [[ $OSTCOUNT -lt 2 ]] &&
4926                 skip_env "need 2 OST, skipping test" && return
4927
4928         local dir0=$DIR/$tdir/$testnum
4929         mkdir -p $dir0 || error "creating dir $dir0"
4930
4931         local ref1=/etc/passwd
4932         local file1=$dir0/file1
4933
4934         $SETSTRIPE -c 2 $file1
4935         cp $ref1 $file1
4936         $LFS migrate -c 1 $file1 || error "migrate failed rc = $?"
4937         stripe=$($GETSTRIPE -c $file1)
4938         [[ $stripe == 1 ]] || error "stripe of $file1 is $stripe != 1"
4939         cmp $file1 $ref1 || error "content mismatch $file1 differs from $ref1"
4940
4941         # clean up
4942         rm -f $file1
4943 }
4944 run_test 56x "lfs migration support"
4945
4946 test_56y() {
4947         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.53) ] &&
4948                 skip "No HSM support on MDS of $(get_lustre_version)," \
4949                          "need 2.4.53 at least" && return
4950         local res=""
4951
4952         local dir0=$DIR/$tdir/$testnum
4953         mkdir -p $dir0 || error "creating dir $dir0"
4954         local f1=$dir0/file1
4955         local f2=$dir0/file2
4956
4957         touch $f1 || error "creating std file $f1"
4958         $MULTIOP $f2 H2c || error "creating released file $f2"
4959
4960         # a directory can be raid0, so ask only for files
4961         res=$($LFIND $dir0 -L raid0 -type f | wc -l)
4962         [[ $res == 2 ]] || error "search raid0: found $res files != 2"
4963
4964         res=$($LFIND $dir0 \! -L raid0 -type f | wc -l)
4965         [[ $res == 0 ]] || error "search !raid0: found $res files != 0"
4966
4967         # only files can be released, so no need to force file search
4968         res=$($LFIND $dir0 -L released)
4969         [[ $res == $f2 ]] || error "search released: found $res != $f2"
4970
4971         res=$($LFIND $dir0 \! -L released)
4972         [[ $res == $f1 ]] || error "search !released: found $res != $f1"
4973
4974 }
4975 run_test 56y "lfs find -L raid0|released"
4976
4977 test_56z() { # LU-4824
4978         # This checks to make sure 'lfs find' continues after errors
4979         # There are two classes of errors that should be caught:
4980         # - If multiple paths are provided, all should be searched even if one
4981         #   errors out
4982         # - If errors are encountered during the search, it should not terminate
4983         #   early
4984         local i
4985         test_mkdir $DIR/$tdir
4986         for i in d{0..9}; do
4987                 test_mkdir $DIR/$tdir/$i
4988         done
4989         touch $DIR/$tdir/d{0..9}/$tfile
4990         $LFS find $DIR/non_existent_dir $DIR/$tdir &&
4991                 error "$LFS find did not return an error"
4992         # Make a directory unsearchable. This should NOT be the last entry in
4993         # directory order.  Arbitrarily pick the 6th entry
4994         chmod 700 $($LFS find $DIR/$tdir -type d | sed '6!d')
4995         local count=$($RUNAS $LFS find $DIR/non_existent $DIR/$tdir | wc -l)
4996         # The user should be able to see 10 directories and 9 files
4997         [ $count == 19 ] || error "$LFS find did not continue after error"
4998 }
4999 run_test 56z "lfs find should continue after an error"
5000
5001 test_56aa() { # LU-5937
5002         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
5003
5004         mkdir $DIR/$tdir
5005         $LFS setdirstripe -c$MDSCOUNT $DIR/$tdir/striped_dir
5006
5007         createmany -o $DIR/$tdir/striped_dir/${tfile}- 1024
5008         local dirs=$(lfs find --size +8k $DIR/$tdir/)
5009
5010         [ -n "$dirs" ] || error "lfs find --size wrong under striped dir"
5011 }
5012 run_test 56aa "lfs find --size under striped dir"
5013
5014 test_57a() {
5015         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5016         # note test will not do anything if MDS is not local
5017         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
5018                 skip "Only applicable to ldiskfs-based MDTs"
5019                 return
5020         fi
5021
5022         remote_mds_nodsh && skip "remote MDS with nodsh" && return
5023         local MNTDEV="osd*.*MDT*.mntdev"
5024         DEV=$(do_facet $SINGLEMDS lctl get_param -n $MNTDEV)
5025         [ -z "$DEV" ] && error "can't access $MNTDEV"
5026         for DEV in $(do_facet $SINGLEMDS lctl get_param -n $MNTDEV); do
5027                 do_facet $SINGLEMDS $DUMPE2FS -h $DEV > $TMP/t57a.dump ||
5028                         error "can't access $DEV"
5029                 DEVISIZE=$(awk '/Inode size:/ { print $3 }' $TMP/t57a.dump)
5030                 [[ $DEVISIZE -gt 128 ]] || error "inode size $DEVISIZE"
5031                 rm $TMP/t57a.dump
5032         done
5033 }
5034 run_test 57a "verify MDS filesystem created with large inodes =="
5035
5036 test_57b() {
5037         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5038         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
5039                 skip "Only applicable to ldiskfs-based MDTs"
5040                 return
5041         fi
5042
5043         remote_mds_nodsh && skip "remote MDS with nodsh" && return
5044         local dir=$DIR/$tdir
5045
5046         local FILECOUNT=100
5047         local FILE1=$dir/f1
5048         local FILEN=$dir/f$FILECOUNT
5049
5050         rm -rf $dir || error "removing $dir"
5051         test_mkdir -p -c1 $dir || error "creating $dir"
5052         local mdtidx=$($LFS getstripe -M $dir)
5053         local mdtname=MDT$(printf %04x $mdtidx)
5054         local facet=mds$((mdtidx + 1))
5055
5056         echo "mcreating $FILECOUNT files"
5057         createmany -m $dir/f 1 $FILECOUNT || \
5058                 error "creating files in $dir"
5059
5060         # verify that files do not have EAs yet
5061         $GETSTRIPE $FILE1 2>&1 | grep -q "no stripe" || error "$FILE1 has an EA"
5062         $GETSTRIPE $FILEN 2>&1 | grep -q "no stripe" || error "$FILEN has an EA"
5063
5064         sync
5065         sleep 1
5066         df $dir  #make sure we get new statfs data
5067         local MDSFREE=$(do_facet $facet \
5068                 lctl get_param -n osd*.*$mdtname.kbytesfree)
5069         local MDCFREE=$(lctl get_param -n mdc.*$mdtname-mdc-*.kbytesfree)
5070         echo "opening files to create objects/EAs"
5071         local FILE
5072         for FILE in `seq -f $dir/f%g 1 $FILECOUNT`; do
5073                 $OPENFILE -f O_RDWR $FILE > /dev/null 2>&1 || error "opening $FILE"
5074         done
5075
5076         # verify that files have EAs now
5077         $GETSTRIPE $FILE1 | grep -q "obdidx" || error "$FILE1 missing EA"
5078         $GETSTRIPE $FILEN | grep -q "obdidx" || error "$FILEN missing EA"
5079
5080         sleep 1  #make sure we get new statfs data
5081         df $dir
5082         local MDSFREE2=$(do_facet $facet \
5083                 lctl get_param -n osd*.*$mdtname.kbytesfree)
5084         local MDCFREE2=$(lctl get_param -n mdc.*$mdtname-mdc-*.kbytesfree)
5085         if [[ $MDCFREE2 -lt $((MDCFREE - 16)) ]]; then
5086                 if [ "$MDSFREE" != "$MDSFREE2" ]; then
5087                         error "MDC before $MDCFREE != after $MDCFREE2"
5088                 else
5089                         echo "MDC before $MDCFREE != after $MDCFREE2"
5090                         echo "unable to confirm if MDS has large inodes"
5091                 fi
5092         fi
5093         rm -rf $dir
5094 }
5095 run_test 57b "default LOV EAs are stored inside large inodes ==="
5096
5097 test_58() {
5098         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5099         [ -z "$(which wiretest 2>/dev/null)" ] &&
5100                         skip_env "could not find wiretest" && return
5101         wiretest
5102 }
5103 run_test 58 "verify cross-platform wire constants =============="
5104
5105 test_59() {
5106         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5107         echo "touch 130 files"
5108         createmany -o $DIR/f59- 130
5109         echo "rm 130 files"
5110         unlinkmany $DIR/f59- 130
5111         sync
5112         # wait for commitment of removal
5113         wait_delete_completed
5114 }
5115 run_test 59 "verify cancellation of llog records async ========="
5116
5117 TEST60_HEAD="test_60 run $RANDOM"
5118 test_60a() {
5119         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5120         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
5121         do_facet mgs "! which run-llog.sh &> /dev/null" &&
5122                 skip_env "missing subtest run-llog.sh" && return
5123         log "$TEST60_HEAD - from kernel mode"
5124         do_facet mgs sh run-llog.sh
5125 }
5126 run_test 60a "llog sanity tests run from kernel module =========="
5127
5128 test_60b() { # bug 6411
5129         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5130         dmesg > $DIR/$tfile
5131         LLOG_COUNT=`dmesg | awk "/$TEST60_HEAD/{marker = 1; from_marker = 0;}
5132                                  /llog.test/ {
5133                                          if (marker)
5134                                                  from_marker++
5135                                          from_begin++
5136                                  }
5137                                  END {
5138                                          if (marker)
5139                                                  print from_marker
5140                                          else
5141                                                  print from_begin
5142                                  }"`
5143         [[ $LLOG_COUNT -gt 50 ]] &&
5144                 error "CDEBUG_LIMIT not limiting messages ($LLOG_COUNT)" || true
5145 }
5146 run_test 60b "limit repeated messages from CERROR/CWARN ========"
5147
5148 test_60c() {
5149         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5150         echo "create 5000 files"
5151         createmany -o $DIR/f60c- 5000
5152 #define OBD_FAIL_MDS_LLOG_CREATE_FAILED  0x137
5153         lctl set_param fail_loc=0x80000137
5154         unlinkmany $DIR/f60c- 5000
5155         lctl set_param fail_loc=0
5156 }
5157 run_test 60c "unlink file when mds full"
5158
5159 test_60d() {
5160         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5161         SAVEPRINTK=$(lctl get_param -n printk)
5162
5163         # verify "lctl mark" is even working"
5164         MESSAGE="test message ID $RANDOM $$"
5165         $LCTL mark "$MESSAGE" || error "$LCTL mark failed"
5166         dmesg | grep -q "$MESSAGE" || error "didn't find debug marker in log"
5167
5168         lctl set_param printk=0 || error "set lnet.printk failed"
5169         lctl get_param -n printk | grep emerg || error "lnet.printk dropped emerg"
5170         MESSAGE="new test message ID $RANDOM $$"
5171         # Assume here that libcfs_debug_mark_buffer() uses D_WARNING
5172         $LCTL mark "$MESSAGE" || error "$LCTL mark failed"
5173         dmesg | grep -q "$MESSAGE" && error "D_WARNING wasn't masked" || true
5174
5175         lctl set_param -n printk="$SAVEPRINTK"
5176 }
5177 run_test 60d "test printk console message masking"
5178
5179 test_61() {
5180         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5181         f="$DIR/f61"
5182         dd if=/dev/zero of=$f bs=$(page_size) count=1 || error "dd $f failed"
5183         cancel_lru_locks osc
5184         $MULTIOP $f OSMWUc || error "$MULTIOP $f failed"
5185         sync
5186 }
5187 run_test 61 "mmap() writes don't make sync hang ================"
5188
5189 # bug 2330 - insufficient obd_match error checking causes LBUG
5190 test_62() {
5191         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5192         f="$DIR/f62"
5193         echo foo > $f
5194         cancel_lru_locks osc
5195         lctl set_param fail_loc=0x405
5196         cat $f && error "cat succeeded, expect -EIO"
5197         lctl set_param fail_loc=0
5198 }
5199 # This test is now irrelevant (as of bug 10718 inclusion), we no longer
5200 # match every page all of the time.
5201 #run_test 62 "verify obd_match failure doesn't LBUG (should -EIO)"
5202
5203 # bug 2319 - oig_wait() interrupted causes crash because of invalid waitq.
5204 # Though this test is irrelevant anymore, it helped to reveal some
5205 # other grant bugs (LU-4482), let's keep it.
5206 test_63a() {   # was test_63
5207         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5208         MAX_DIRTY_MB=`lctl get_param -n osc.*.max_dirty_mb | head -n 1`
5209         for i in `seq 10` ; do
5210                 dd if=/dev/zero of=$DIR/f63 bs=8k &
5211                 sleep 5
5212                 kill $!
5213                 sleep 1
5214         done
5215
5216         rm -f $DIR/f63 || true
5217 }
5218 run_test 63a "Verify oig_wait interruption does not crash ======="
5219
5220 # bug 2248 - async write errors didn't return to application on sync
5221 # bug 3677 - async write errors left page locked
5222 test_63b() {
5223         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5224         debugsave
5225         lctl set_param debug=-1
5226
5227         # ensure we have a grant to do async writes
5228         dd if=/dev/zero of=$DIR/$tfile bs=4k count=1
5229         rm $DIR/$tfile
5230
5231         #define OBD_FAIL_OSC_BRW_PREP_REQ        0x406
5232         lctl set_param fail_loc=0x80000406
5233         $MULTIOP $DIR/$tfile Owy && \
5234                 error "sync didn't return ENOMEM"
5235         sync; sleep 2; sync     # do a real sync this time to flush page
5236         lctl get_param -n llite.*.dump_page_cache | grep locked && \
5237                 error "locked page left in cache after async error" || true
5238         debugrestore
5239 }
5240 run_test 63b "async write errors should be returned to fsync ==="
5241
5242 test_64a () {
5243         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5244         df $DIR
5245         lctl get_param -n osc.*[oO][sS][cC][_-]*.cur* | grep "[0-9]"
5246 }
5247 run_test 64a "verify filter grant calculations (in kernel) ====="
5248
5249 test_64b () {
5250         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5251         sh oos.sh $MOUNT || error "oos.sh failed: $?"
5252 }
5253 run_test 64b "check out-of-space detection on client ==========="
5254
5255 test_64c() {
5256         $LCTL set_param osc.*OST0000-osc-[^mM]*.cur_grant_bytes=0
5257 }
5258 run_test 64c "verify grant shrink ========================------"
5259
5260 # bug 1414 - set/get directories' stripe info
5261 test_65a() {
5262         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5263         test_mkdir -p $DIR/$tdir
5264         touch $DIR/$tdir/f1
5265         $LVERIFY $DIR/$tdir $DIR/$tdir/f1 || error "lverify failed"
5266 }
5267 run_test 65a "directory with no stripe info ===================="
5268
5269 test_65b() {
5270         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5271         test_mkdir -p $DIR/$tdir
5272         $SETSTRIPE -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
5273                                                 error "setstripe"
5274         touch $DIR/$tdir/f2
5275         $LVERIFY $DIR/$tdir $DIR/$tdir/f2 || error "lverify failed"
5276 }
5277 run_test 65b "directory setstripe -S $((STRIPESIZE * 2)) -i 0 -c 1"
5278
5279 test_65c() {
5280         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5281         if [[ $OSTCOUNT -gt 1 ]]; then
5282                 test_mkdir -p $DIR/$tdir
5283                 $SETSTRIPE -S $(($STRIPESIZE * 4)) -i 1 \
5284                         -c $(($OSTCOUNT - 1)) $DIR/$tdir || error "setstripe"
5285                 touch $DIR/$tdir/f3
5286                 $LVERIFY $DIR/$tdir $DIR/$tdir/f3 || error "lverify failed"
5287         fi
5288 }
5289 run_test 65c "directory setstripe -S $((STRIPESIZE*4)) -i 1 -c $((OSTCOUNT-1))"
5290
5291 test_65d() {
5292         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5293         test_mkdir -p $DIR/$tdir
5294         if [[ $STRIPECOUNT -le 0 ]]; then
5295                 sc=1
5296         elif [[ $STRIPECOUNT -gt 2000 ]]; then
5297 #LOV_MAX_STRIPE_COUNT is 2000
5298                 [[ $OSTCOUNT -gt 2000 ]] && sc=2000 || sc=$(($OSTCOUNT - 1))
5299         else
5300                 sc=$(($STRIPECOUNT - 1))
5301         fi
5302         $SETSTRIPE -S $STRIPESIZE -c $sc $DIR/$tdir || error "setstripe"
5303         touch $DIR/$tdir/f4 $DIR/$tdir/f5
5304         $LVERIFY $DIR/$tdir $DIR/$tdir/f4 $DIR/$tdir/f5 ||
5305                 error "lverify failed"
5306 }
5307 run_test 65d "directory setstripe -S $STRIPESIZE -c stripe_count"
5308
5309 test_65e() {
5310         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5311         test_mkdir -p $DIR/$tdir
5312
5313         $SETSTRIPE $DIR/$tdir || error "setstripe"
5314         $GETSTRIPE -v $DIR/$tdir | grep "Default" ||
5315                                         error "no stripe info failed"
5316         touch $DIR/$tdir/f6
5317         $LVERIFY $DIR/$tdir $DIR/$tdir/f6 || error "lverify failed"
5318 }
5319 run_test 65e "directory setstripe defaults ======================="
5320
5321 test_65f() {
5322         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5323         test_mkdir -p $DIR/${tdir}f
5324         $RUNAS $SETSTRIPE $DIR/${tdir}f && error "setstripe succeeded" || true
5325 }
5326 run_test 65f "dir setstripe permission (should return error) ==="
5327
5328 test_65g() {
5329         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5330         test_mkdir -p $DIR/$tdir
5331         $SETSTRIPE -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
5332                                                         error "setstripe"
5333         $SETSTRIPE -d $DIR/$tdir || error "setstripe"
5334         $GETSTRIPE -v $DIR/$tdir | grep "Default" ||
5335                 error "delete default stripe failed"
5336 }
5337 run_test 65g "directory setstripe -d ==========================="
5338
5339 test_65h() {
5340         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5341         test_mkdir -p $DIR/$tdir
5342         $SETSTRIPE -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
5343                                                         error "setstripe"
5344         test_mkdir -p $DIR/$tdir/dd1
5345         [ $($GETSTRIPE -c $DIR/$tdir) == $($GETSTRIPE -c $DIR/$tdir/dd1) ] ||
5346                 error "stripe info inherit failed"
5347 }
5348 run_test 65h "directory stripe info inherit ===================="
5349
5350 test_65i() { # bug6367
5351         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5352         $SETSTRIPE -S 65536 -c -1 $MOUNT
5353 }
5354 run_test 65i "set non-default striping on root directory (bug 6367)="
5355
5356 test_65ia() { # bug12836
5357         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5358         $GETSTRIPE $MOUNT || error "getstripe $MOUNT failed"
5359 }
5360 run_test 65ia "getstripe on -1 default directory striping"
5361
5362 test_65ib() { # bug12836
5363         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5364         $GETSTRIPE -v $MOUNT || error "getstripe -v $MOUNT failed"
5365 }
5366 run_test 65ib "getstripe -v on -1 default directory striping"
5367
5368 test_65ic() { # bug12836
5369         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5370         $LFS find -mtime -1 $MOUNT > /dev/null || error "find $MOUNT failed"
5371 }
5372 run_test 65ic "new find on -1 default directory striping"
5373
5374 test_65j() { # bug6367
5375         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5376         sync; sleep 1
5377         # if we aren't already remounting for each test, do so for this test
5378         if [ "$CLEANUP" = ":" -a "$I_MOUNTED" = "yes" ]; then
5379                 cleanup || error "failed to unmount"
5380                 setup
5381         fi
5382         $SETSTRIPE -d $MOUNT || error "setstripe failed"
5383 }
5384 run_test 65j "set default striping on root directory (bug 6367)="
5385
5386 test_65k() { # bug11679
5387         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5388         [[ $OSTCOUNT -lt 2 ]] && skip_env "too few OSTs" && return
5389         remote_mds_nodsh && skip "remote MDS with nodsh" && return
5390
5391     echo "Check OST status: "
5392     local MDS_OSCS=`do_facet $SINGLEMDS lctl dl |
5393               awk '/[oO][sS][cC].*md[ts]/ { print $4 }'`
5394
5395     for OSC in $MDS_OSCS; do
5396         echo $OSC "is activate"
5397         do_facet $SINGLEMDS lctl --device %$OSC activate
5398     done
5399
5400     mkdir -p $DIR/$tdir
5401     for INACTIVE_OSC in $MDS_OSCS; do
5402         echo "Deactivate: " $INACTIVE_OSC
5403         do_facet $SINGLEMDS lctl --device %$INACTIVE_OSC deactivate
5404         for STRIPE_OSC in $MDS_OSCS; do
5405             OST=`osc_to_ost $STRIPE_OSC`
5406             IDX=`do_facet $SINGLEMDS lctl get_param -n lov.*md*.target_obd |
5407                  awk -F: /$OST/'{ print $1 }' | head -n 1`
5408
5409             [ -f $DIR/$tdir/$IDX ] && continue
5410             echo "$SETSTRIPE -i $IDX -c 1 $DIR/$tdir/$IDX"
5411             $SETSTRIPE -i $IDX -c 1 $DIR/$tdir/$IDX
5412             RC=$?
5413             [ $RC -ne 0 ] && error "setstripe should have succeeded"
5414         done
5415         rm -f $DIR/$tdir/*
5416         echo $INACTIVE_OSC "is Activate."
5417         do_facet $SINGLEMDS lctl --device  %$INACTIVE_OSC activate
5418     done
5419 }
5420 run_test 65k "validate manual striping works properly with deactivated OSCs"
5421
5422 test_65l() { # bug 12836
5423         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5424         test_mkdir -p $DIR/$tdir/test_dir
5425         $SETSTRIPE -c -1 $DIR/$tdir/test_dir
5426         $LFS find -mtime -1 $DIR/$tdir >/dev/null
5427 }
5428 run_test 65l "lfs find on -1 stripe dir ========================"
5429
5430 # bug 2543 - update blocks count on client
5431 test_66() {
5432         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5433         COUNT=${COUNT:-8}
5434         dd if=/dev/zero of=$DIR/f66 bs=1k count=$COUNT
5435         sync; sync_all_data; sync; sync_all_data
5436         cancel_lru_locks osc
5437         BLOCKS=`ls -s $DIR/f66 | awk '{ print $1 }'`
5438         [ $BLOCKS -ge $COUNT ] || error "$DIR/f66 blocks $BLOCKS < $COUNT"
5439 }
5440 run_test 66 "update inode blocks count on client ==============="
5441
5442 LLOOP=
5443 LLITELOOPLOAD=
5444 cleanup_68() {
5445         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5446         trap 0
5447         if [ ! -z "$LLOOP" ]; then
5448                 if swapon -s | grep -q $LLOOP; then
5449                         swapoff $LLOOP || error "swapoff failed"
5450                 fi
5451
5452                 $LCTL blockdev_detach $LLOOP || error "detach failed"
5453                 rm -f $LLOOP
5454                 unset LLOOP
5455         fi
5456         if [ ! -z "$LLITELOOPLOAD" ]; then
5457                 rmmod llite_lloop
5458                 unset LLITELOOPLOAD
5459         fi
5460         rm -f $DIR/f68*
5461 }
5462
5463 meminfo() {
5464         awk '($1 == "'$1':") { print $2 }' /proc/meminfo
5465 }
5466
5467 swap_used() {
5468         swapon -s | awk '($1 == "'$1'") { print $4 }'
5469 }
5470
5471 # test case for lloop driver, basic function
5472 test_68a() {
5473         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5474         [ "$UID" != 0 ] && skip_env "must run as root" && return
5475         llite_lloop_enabled || \
5476                 { skip_env "llite_lloop module disabled" && return; }
5477
5478         trap cleanup_68 EXIT
5479
5480         if ! module_loaded llite_lloop; then
5481                 if load_module llite/llite_lloop; then
5482                         LLITELOOPLOAD=yes
5483                 else
5484                         skip_env "can't find module llite_lloop"
5485                         return
5486                 fi
5487         fi
5488
5489         LLOOP=$TMP/lloop.`date +%s`.`date +%N`
5490         dd if=/dev/zero of=$DIR/f68a bs=4k count=1024
5491         $LCTL blockdev_attach $DIR/f68a $LLOOP || error "attach failed"
5492
5493         directio rdwr $LLOOP 0 1024 4096 || error "direct write failed"
5494         directio rdwr $LLOOP 0 1025 4096 && error "direct write should fail"
5495
5496         cleanup_68
5497 }
5498 run_test 68a "lloop driver - basic test ========================"
5499
5500 # excercise swapping to lustre by adding a high priority swapfile entry
5501 # and then consuming memory until it is used.
5502 test_68b() {  # was test_68
5503         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5504         [ "$UID" != 0 ] && skip_env "must run as root" && return
5505         lctl get_param -n devices | grep -q obdfilter && \
5506                 skip "local OST" && return
5507
5508         grep -q llite_lloop /proc/modules
5509         [ $? -ne 0 ] && skip "can't find module llite_lloop" && return
5510
5511         [ -z "`$LCTL list_nids | grep -v tcp`" ] && \
5512                 skip "can't reliably test swap with TCP" && return
5513
5514         MEMTOTAL=`meminfo MemTotal`
5515         NR_BLOCKS=$((MEMTOTAL>>8))
5516         [[ $NR_BLOCKS -le 2048 ]] && NR_BLOCKS=2048
5517
5518         LLOOP=$TMP/lloop.`date +%s`.`date +%N`
5519         dd if=/dev/zero of=$DIR/f68b bs=64k seek=$NR_BLOCKS count=1
5520         mkswap $DIR/f68b
5521
5522         $LCTL blockdev_attach $DIR/f68b $LLOOP || error "attach failed"
5523
5524         trap cleanup_68 EXIT
5525
5526         swapon -p 32767 $LLOOP || error "swapon $LLOOP failed"
5527
5528         echo "before: `swapon -s | grep $LLOOP`"
5529         $MEMHOG $MEMTOTAL || error "error allocating $MEMTOTAL kB"
5530         echo "after: `swapon -s | grep $LLOOP`"
5531         SWAPUSED=`swap_used $LLOOP`
5532
5533         cleanup_68
5534
5535         [ $SWAPUSED -eq 0 ] && echo "no swap used???" || true
5536 }
5537 run_test 68b "support swapping to Lustre ========================"
5538
5539 # bug5265, obdfilter oa2dentry return -ENOENT
5540 # #define OBD_FAIL_OST_ENOENT 0x217
5541 test_69() {
5542         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5543         remote_ost_nodsh && skip "remote OST with nodsh" && return
5544
5545         f="$DIR/$tfile"
5546         $SETSTRIPE -c 1 -i 0 $f
5547
5548         $DIRECTIO write ${f}.2 0 1 || error "directio write error"
5549
5550         do_facet ost1 lctl set_param fail_loc=0x217
5551         $TRUNCATE $f 1 # vmtruncate() will ignore truncate() error.
5552         $DIRECTIO write $f 0 2 && error "write succeeded, expect -ENOENT"
5553
5554         do_facet ost1 lctl set_param fail_loc=0
5555         $DIRECTIO write $f 0 2 || error "write error"
5556
5557         cancel_lru_locks osc
5558         $DIRECTIO read $f 0 1 || error "read error"
5559
5560         do_facet ost1 lctl set_param fail_loc=0x217
5561         $DIRECTIO read $f 1 1 && error "read succeeded, expect -ENOENT"
5562
5563         do_facet ost1 lctl set_param fail_loc=0
5564         rm -f $f
5565 }
5566 run_test 69 "verify oa2dentry return -ENOENT doesn't LBUG ======"
5567
5568 test_71() {
5569     test_mkdir -p $DIR/$tdir
5570     sh rundbench -C -D $DIR/$tdir 2 || error "dbench failed!"
5571 }
5572 run_test 71 "Running dbench on lustre (don't segment fault) ===="
5573
5574 test_72a() { # bug 5695 - Test that on 2.6 remove_suid works properly
5575         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5576         [ "$RUNAS_ID" = "$UID" ] &&
5577                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
5578
5579         # Check that testing environment is properly set up. Skip if not
5580         FAIL_ON_ERROR=false check_runas_id_ret $RUNAS_ID $RUNAS_GID $RUNAS || {
5581                 skip_env "User $RUNAS_ID does not exist - skipping"
5582                 return 0
5583         }
5584         touch $DIR/$tfile
5585         chmod 777 $DIR/$tfile
5586         chmod ug+s $DIR/$tfile
5587         $RUNAS dd if=/dev/zero of=$DIR/$tfile bs=512 count=1 ||
5588                 error "$RUNAS dd $DIR/$tfile failed"
5589         # See if we are still setuid/sgid
5590         test -u $DIR/$tfile -o -g $DIR/$tfile &&
5591                 error "S/gid is not dropped on write"
5592         # Now test that MDS is updated too
5593         cancel_lru_locks mdc
5594         test -u $DIR/$tfile -o -g $DIR/$tfile &&
5595                 error "S/gid is not dropped on MDS"
5596         rm -f $DIR/$tfile
5597 }
5598 run_test 72a "Test that remove suid works properly (bug5695) ===="
5599
5600 test_72b() { # bug 24226 -- keep mode setting when size is not changing
5601         local perm
5602
5603         [ "$RUNAS_ID" = "$UID" ] && \
5604                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
5605         [ "$RUNAS_ID" -eq 0 ] && \
5606                 skip_env "RUNAS_ID = 0 -- skipping" && return
5607
5608         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5609         # Check that testing environment is properly set up. Skip if not
5610         FAIL_ON_ERROR=false check_runas_id_ret $RUNAS_ID $RUNAS_ID $RUNAS || {
5611                 skip_env "User $RUNAS_ID does not exist - skipping"
5612                 return 0
5613         }
5614         touch $DIR/${tfile}-f{g,u}
5615         test_mkdir $DIR/${tfile}-dg
5616         test_mkdir $DIR/${tfile}-du
5617         chmod 770 $DIR/${tfile}-{f,d}{g,u}
5618         chmod g+s $DIR/${tfile}-{f,d}g
5619         chmod u+s $DIR/${tfile}-{f,d}u
5620         for perm in 777 2777 4777; do
5621                 $RUNAS chmod $perm $DIR/${tfile}-fg && error "S/gid file allowed improper chmod to $perm"
5622                 $RUNAS chmod $perm $DIR/${tfile}-fu && error "S/uid file allowed improper chmod to $perm"
5623                 $RUNAS chmod $perm $DIR/${tfile}-dg && error "S/gid dir allowed improper chmod to $perm"
5624                 $RUNAS chmod $perm $DIR/${tfile}-du && error "S/uid dir allowed improper chmod to $perm"
5625         done
5626         true
5627 }
5628 run_test 72b "Test that we keep mode setting if without file data changed (bug 24226)"
5629
5630 # bug 3462 - multiple simultaneous MDC requests
5631 test_73() {
5632         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5633         test_mkdir $DIR/d73-1
5634         test_mkdir $DIR/d73-2
5635         multiop_bg_pause $DIR/d73-1/f73-1 O_c || return 1
5636         pid1=$!
5637
5638         lctl set_param fail_loc=0x80000129
5639         $MULTIOP $DIR/d73-1/f73-2 Oc &
5640         sleep 1
5641         lctl set_param fail_loc=0
5642
5643         $MULTIOP $DIR/d73-2/f73-3 Oc &
5644         pid3=$!
5645
5646         kill -USR1 $pid1
5647         wait $pid1 || return 1
5648
5649         sleep 25
5650
5651         $CHECKSTAT -t file $DIR/d73-1/f73-1 || return 4
5652         $CHECKSTAT -t file $DIR/d73-1/f73-2 || return 5
5653         $CHECKSTAT -t file $DIR/d73-2/f73-3 || return 6
5654
5655         rm -rf $DIR/d73-*
5656 }
5657 run_test 73 "multiple MDC requests (should not deadlock)"
5658
5659 test_74a() { # bug 6149, 6184
5660         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5661         #define OBD_FAIL_LDLM_ENQUEUE_OLD_EXPORT 0x30e
5662         #
5663         # very important to OR with OBD_FAIL_ONCE (0x80000000) -- otherwise it
5664         # will spin in a tight reconnection loop
5665         touch $DIR/f74a
5666         $LCTL set_param fail_loc=0x8000030e
5667         # get any lock that won't be difficult - lookup works.
5668         ls $DIR/f74a
5669         $LCTL set_param fail_loc=0
5670         rm -f $DIR/f74a
5671         true
5672 }
5673 run_test 74a "ldlm_enqueue freed-export error path, ls (shouldn't LBUG)"
5674
5675 test_74b() { # bug 13310
5676         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5677         #define OBD_FAIL_LDLM_ENQUEUE_OLD_EXPORT 0x30e
5678         #
5679         # very important to OR with OBD_FAIL_ONCE (0x80000000) -- otherwise it
5680         # will spin in a tight reconnection loop
5681         $LCTL set_param fail_loc=0x8000030e
5682         # get a "difficult" lock
5683         touch $DIR/f74b
5684         $LCTL set_param fail_loc=0
5685         rm -f $DIR/f74b
5686         true
5687 }
5688 run_test 74b "ldlm_enqueue freed-export error path, touch (shouldn't LBUG)"
5689
5690 test_74c() {
5691         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5692         #define OBD_FAIL_LDLM_NEW_LOCK
5693         $LCTL set_param fail_loc=0x319
5694         touch $DIR/$tfile && error "touch successful"
5695         $LCTL set_param fail_loc=0
5696         true
5697 }
5698 run_test 74c "ldlm_lock_create error path, (shouldn't LBUG)"
5699
5700 num_inodes() {
5701         awk '/lustre_inode_cache/ {print $2; exit}' /proc/slabinfo
5702 }
5703
5704 get_inode_slab_tunables() {
5705         awk '/lustre_inode_cache/ {print $9," ",$10," ",$11; exit}' /proc/slabinfo
5706 }
5707
5708 set_inode_slab_tunables() {
5709         echo "lustre_inode_cache $1" > /proc/slabinfo
5710 }
5711
5712 test_76() { # Now for bug 20433, added originally in bug 1443
5713         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5714         local SLAB_SETTINGS=`get_inode_slab_tunables`
5715         local CPUS=`getconf _NPROCESSORS_ONLN`
5716         # we cannot set limit below 1 which means 1 inode in each
5717         # per-cpu cache is still allowed
5718         set_inode_slab_tunables "1 1 0"
5719         cancel_lru_locks osc
5720         BEFORE_INODES=$(num_inodes)
5721         echo "before inodes: $BEFORE_INODES"
5722         local COUNT=1000
5723         [ "$SLOW" = "no" ] && COUNT=100
5724         for i in $(seq $COUNT); do
5725                 touch $DIR/$tfile
5726                 rm -f $DIR/$tfile
5727         done
5728         cancel_lru_locks osc
5729         AFTER_INODES=$(num_inodes)
5730         echo "after inodes: $AFTER_INODES"
5731         local wait=0
5732         while [[ $((AFTER_INODES-1*CPUS)) -gt $BEFORE_INODES ]]; do
5733                 sleep 2
5734                 AFTER_INODES=$(num_inodes)
5735                 wait=$((wait+2))
5736                 echo "wait $wait seconds inodes: $AFTER_INODES"
5737                 if [ $wait -gt 30 ]; then
5738                         error "inode slab grew from $BEFORE_INODES to $AFTER_INODES"
5739                 fi
5740         done
5741         set_inode_slab_tunables "$SLAB_SETTINGS"
5742 }
5743 run_test 76 "confirm clients recycle inodes properly ===="
5744
5745
5746 export ORIG_CSUM=""
5747 set_checksums()
5748 {
5749         # Note: in sptlrpc modes which enable its own bulk checksum, the
5750         # original crc32_le bulk checksum will be automatically disabled,
5751         # and the OBD_FAIL_OSC_CHECKSUM_SEND/OBD_FAIL_OSC_CHECKSUM_RECEIVE
5752         # will be checked by sptlrpc code against sptlrpc bulk checksum.
5753         # In this case set_checksums() will not be no-op, because sptlrpc
5754         # bulk checksum will be enabled all through the test.
5755
5756         [ "$ORIG_CSUM" ] || ORIG_CSUM=`lctl get_param -n osc.*.checksums | head -n1`
5757         lctl set_param -n osc.*.checksums $1
5758         return 0
5759 }
5760
5761 export ORIG_CSUM_TYPE="`lctl get_param -n osc.*osc-[^mM]*.checksum_type |
5762                         sed 's/.*\[\(.*\)\].*/\1/g' | head -n1`"
5763 CKSUM_TYPES=${CKSUM_TYPES:-"crc32 adler"}
5764 [ "$ORIG_CSUM_TYPE" = "crc32c" ] && CKSUM_TYPES="$CKSUM_TYPES crc32c"
5765 set_checksum_type()
5766 {
5767         lctl set_param -n osc.*osc-[^mM]*.checksum_type $1
5768         log "set checksum type to $1"
5769         return 0
5770 }
5771 F77_TMP=$TMP/f77-temp
5772 F77SZ=8
5773 setup_f77() {
5774         dd if=/dev/urandom of=$F77_TMP bs=1M count=$F77SZ || \
5775                 error "error writing to $F77_TMP"
5776 }
5777
5778 test_77a() { # bug 10889
5779         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5780         $GSS && skip "could not run with gss" && return
5781         [ ! -f $F77_TMP ] && setup_f77
5782         set_checksums 1
5783         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ || error "dd error"
5784         set_checksums 0
5785         rm -f $DIR/$tfile
5786 }
5787 run_test 77a "normal checksum read/write operation"
5788
5789 test_77b() { # bug 10889
5790         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5791         $GSS && skip "could not run with gss" && return
5792         [ ! -f $F77_TMP ] && setup_f77
5793         #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
5794         $LCTL set_param fail_loc=0x80000409
5795         set_checksums 1
5796
5797         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ conv=sync ||
5798                 error "dd error: $?"
5799         $LCTL set_param fail_loc=0
5800
5801         for algo in $CKSUM_TYPES; do
5802                 cancel_lru_locks osc
5803                 set_checksum_type $algo
5804                 #define OBD_FAIL_OSC_CHECKSUM_RECEIVE    0x408
5805                 $LCTL set_param fail_loc=0x80000408
5806                 cmp $F77_TMP $DIR/$tfile || error "file compare failed"
5807                 $LCTL set_param fail_loc=0
5808         done
5809         set_checksums 0
5810         set_checksum_type $ORIG_CSUM_TYPE
5811         rm -f $DIR/$tfile
5812 }
5813 run_test 77b "checksum error on client write, read"
5814
5815 test_77d() { # bug 10889
5816         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5817         $GSS && skip "could not run with gss" && return
5818         #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
5819         $LCTL set_param fail_loc=0x80000409
5820         set_checksums 1
5821         $DIRECTIO write $DIR/$tfile 0 $F77SZ $((1024 * 1024)) ||
5822                 error "direct write: rc=$?"
5823         $LCTL set_param fail_loc=0
5824         set_checksums 0
5825
5826         #define OBD_FAIL_OSC_CHECKSUM_RECEIVE    0x408
5827         $LCTL set_param fail_loc=0x80000408
5828         set_checksums 1
5829         cancel_lru_locks osc
5830         $DIRECTIO read $DIR/$tfile 0 $F77SZ $((1024 * 1024)) ||
5831                 error "direct read: rc=$?"
5832         $LCTL set_param fail_loc=0
5833         set_checksums 0
5834 }
5835 run_test 77d "checksum error on OST direct write, read"
5836
5837 test_77f() { # bug 10889
5838         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5839         $GSS && skip "could not run with gss" && return
5840         set_checksums 1
5841         for algo in $CKSUM_TYPES; do
5842                 cancel_lru_locks osc
5843                 set_checksum_type $algo
5844                 #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
5845                 $LCTL set_param fail_loc=0x409
5846                 $DIRECTIO write $DIR/$tfile 0 $F77SZ $((1024 * 1024)) &&
5847                         error "direct write succeeded"
5848                 $LCTL set_param fail_loc=0
5849         done
5850         set_checksum_type $ORIG_CSUM_TYPE
5851         set_checksums 0
5852 }
5853 run_test 77f "repeat checksum error on write (expect error)"
5854
5855 test_77g() { # bug 10889
5856         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5857         $GSS && skip "could not run with gss" && return
5858         remote_ost_nodsh && skip "remote OST with nodsh" && return
5859
5860         [ ! -f $F77_TMP ] && setup_f77
5861
5862         $SETSTRIPE -c 1 -i 0 $DIR/$tfile
5863         #define OBD_FAIL_OST_CHECKSUM_RECEIVE       0x21a
5864         do_facet ost1 lctl set_param fail_loc=0x8000021a
5865         set_checksums 1
5866         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ ||
5867                 error "write error: rc=$?"
5868         do_facet ost1 lctl set_param fail_loc=0
5869         set_checksums 0
5870
5871         cancel_lru_locks osc
5872         #define OBD_FAIL_OST_CHECKSUM_SEND          0x21b
5873         do_facet ost1 lctl set_param fail_loc=0x8000021b
5874         set_checksums 1
5875         cmp $F77_TMP $DIR/$tfile || error "file compare failed"
5876         do_facet ost1 lctl set_param fail_loc=0
5877         set_checksums 0
5878 }
5879 run_test 77g "checksum error on OST write, read"
5880
5881 test_77i() { # bug 13805
5882         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5883         $GSS && skip "could not run with gss" && return
5884         #define OBD_FAIL_OSC_CONNECT_CKSUM       0x40b
5885         lctl set_param fail_loc=0x40b
5886         remount_client $MOUNT
5887         lctl set_param fail_loc=0
5888         for VALUE in `lctl get_param osc.*osc-[^mM]*.checksum_type`; do
5889                 PARAM=`echo ${VALUE[0]} | cut -d "=" -f1`
5890                 algo=`lctl get_param -n $PARAM | sed 's/.*\[\(.*\)\].*/\1/g'`
5891                 [ "$algo" = "adler" ] || error "algo set to $algo instead of adler"
5892         done
5893         remount_client $MOUNT
5894 }
5895 run_test 77i "client not supporting OSD_CONNECT_CKSUM"
5896
5897 test_77j() { # bug 13805
5898         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5899         $GSS && skip "could not run with gss" && return
5900         #define OBD_FAIL_OSC_CKSUM_ADLER_ONLY    0x40c
5901         lctl set_param fail_loc=0x40c
5902         remount_client $MOUNT
5903         lctl set_param fail_loc=0
5904         sleep 2 # wait async osc connect to finish
5905         for VALUE in `lctl get_param osc.*osc-[^mM]*.checksum_type`; do
5906                 PARAM=`echo ${VALUE[0]} | cut -d "=" -f1`
5907                 algo=`lctl get_param -n $PARAM | sed 's/.*\[\(.*\)\].*/\1/g'`
5908                 [ "$algo" = "adler" ] || error "algo set to $algo instead of adler"
5909         done
5910         remount_client $MOUNT
5911 }
5912 run_test 77j "client only supporting ADLER32"
5913
5914 [ "$ORIG_CSUM" ] && set_checksums $ORIG_CSUM || true
5915 rm -f $F77_TMP
5916 unset F77_TMP
5917
5918 test_78() { # bug 10901
5919         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5920         remote_ost || { skip_env "local OST" && return; }
5921
5922         NSEQ=5
5923         F78SIZE=$(($(awk '/MemFree:/ { print $2 }' /proc/meminfo) / 1024))
5924         echo "MemFree: $F78SIZE, Max file size: $MAXFREE"
5925         MEMTOTAL=$(($(awk '/MemTotal:/ { print $2 }' /proc/meminfo) / 1024))
5926         echo "MemTotal: $MEMTOTAL"
5927
5928         # reserve 256MB of memory for the kernel and other running processes,
5929         # and then take 1/2 of the remaining memory for the read/write buffers.
5930         if [ $MEMTOTAL -gt 512 ] ;then
5931                 MEMTOTAL=$(((MEMTOTAL - 256 ) / 2))
5932         else
5933                 # for those poor memory-starved high-end clusters...
5934                 MEMTOTAL=$((MEMTOTAL / 2))
5935         fi
5936         echo "Mem to use for directio: $MEMTOTAL"
5937
5938         [[ $F78SIZE -gt $MEMTOTAL ]] && F78SIZE=$MEMTOTAL
5939         [[ $F78SIZE -gt 512 ]] && F78SIZE=512
5940         [[ $F78SIZE -gt $((MAXFREE / 1024)) ]] && F78SIZE=$((MAXFREE / 1024))
5941         SMALLESTOST=$($LFS df $DIR | grep OST | awk '{ print $4 }' | sort -n |
5942                 head -n1)
5943         echo "Smallest OST: $SMALLESTOST"
5944         [[ $SMALLESTOST -lt 10240 ]] &&
5945                 skip "too small OSTSIZE, useless to run large O_DIRECT test" && return 0
5946
5947         [[ $F78SIZE -gt $((SMALLESTOST * $OSTCOUNT / 1024 - 80)) ]] &&
5948                 F78SIZE=$((SMALLESTOST * $OSTCOUNT / 1024 - 80))
5949
5950         [ "$SLOW" = "no" ] && NSEQ=1 && [ $F78SIZE -gt 32 ] && F78SIZE=32
5951         echo "File size: $F78SIZE"
5952         $SETSTRIPE -c $OSTCOUNT $DIR/$tfile || error "setstripe failed"
5953         for i in $(seq 1 $NSEQ); do
5954                 FSIZE=$(($F78SIZE / ($NSEQ - $i + 1)))
5955                 echo directIO rdwr round $i of $NSEQ
5956                 $DIRECTIO rdwr $DIR/$tfile 0 $FSIZE 1048576||error "rdwr failed"
5957         done
5958
5959         rm -f $DIR/$tfile
5960 }
5961 run_test 78 "handle large O_DIRECT writes correctly ============"
5962
5963 test_79() { # bug 12743
5964         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5965         wait_delete_completed
5966
5967         BKTOTAL=$(calc_osc_kbytes kbytestotal)
5968         BKFREE=$(calc_osc_kbytes kbytesfree)
5969         BKAVAIL=$(calc_osc_kbytes kbytesavail)
5970
5971         STRING=`df -P $MOUNT | tail -n 1 | awk '{print $2","$3","$4}'`
5972         DFTOTAL=`echo $STRING | cut -d, -f1`
5973         DFUSED=`echo $STRING  | cut -d, -f2`
5974         DFAVAIL=`echo $STRING | cut -d, -f3`
5975         DFFREE=$(($DFTOTAL - $DFUSED))
5976
5977         ALLOWANCE=$((64 * $OSTCOUNT))
5978
5979         if [ $DFTOTAL -lt $(($BKTOTAL - $ALLOWANCE)) ] ||
5980            [ $DFTOTAL -gt $(($BKTOTAL + $ALLOWANCE)) ] ; then
5981                 error "df total($DFTOTAL) mismatch OST total($BKTOTAL)"
5982         fi
5983         if [ $DFFREE -lt $(($BKFREE - $ALLOWANCE)) ] ||
5984            [ $DFFREE -gt $(($BKFREE + $ALLOWANCE)) ] ; then
5985                 error "df free($DFFREE) mismatch OST free($BKFREE)"
5986         fi
5987         if [ $DFAVAIL -lt $(($BKAVAIL - $ALLOWANCE)) ] ||
5988            [ $DFAVAIL -gt $(($BKAVAIL + $ALLOWANCE)) ] ; then
5989                 error "df avail($DFAVAIL) mismatch OST avail($BKAVAIL)"
5990         fi
5991 }
5992 run_test 79 "df report consistency check ======================="
5993
5994 test_80() { # bug 10718
5995         remote_ost_nodsh && skip "remote OST with nodsh" && return
5996         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5997         # relax strong synchronous semantics for slow backends like ZFS
5998         local soc="obdfilter.*.sync_on_lock_cancel"
5999         local soc_old=$(do_facet ost1 lctl get_param -n $soc | head -n1)
6000         local hosts=
6001         if [ "$soc_old" != "never" -a "$(facet_fstype ost1)" != "ldiskfs" ]; then
6002                 hosts=$(for host in $(seq -f "ost%g" 1 $OSTCOUNT); do
6003                           facet_active_host $host; done | sort -u)
6004                 do_nodes $hosts lctl set_param $soc=never
6005         fi
6006
6007         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=1M
6008         sync; sleep 1; sync
6009         local BEFORE=`date +%s`
6010         cancel_lru_locks osc
6011         local AFTER=`date +%s`
6012         local DIFF=$((AFTER-BEFORE))
6013         if [ $DIFF -gt 1 ] ; then
6014                 error "elapsed for 1M@1T = $DIFF"
6015         fi
6016
6017         [ -n "$hosts" ] && do_nodes $hosts lctl set_param $soc=$soc_old
6018
6019         rm -f $DIR/$tfile
6020 }
6021 run_test 80 "Page eviction is equally fast at high offsets too  ===="
6022
6023 test_81a() { # LU-456
6024         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6025         remote_ost_nodsh && skip "remote OST with nodsh" && return
6026         # define OBD_FAIL_OST_MAPBLK_ENOSPC    0x228
6027         # MUST OR with the OBD_FAIL_ONCE (0x80000000)
6028         do_facet ost1 lctl set_param fail_loc=0x80000228
6029
6030         # write should trigger a retry and success
6031         $SETSTRIPE -i 0 -c 1 $DIR/$tfile
6032         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
6033         RC=$?
6034         if [ $RC -ne 0 ] ; then
6035                 error "write should success, but failed for $RC"
6036         fi
6037 }
6038 run_test 81a "OST should retry write when get -ENOSPC ==============="
6039
6040 test_81b() { # LU-456
6041         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6042         remote_ost_nodsh && skip "remote OST with nodsh" && return
6043         # define OBD_FAIL_OST_MAPBLK_ENOSPC    0x228
6044         # Don't OR with the OBD_FAIL_ONCE (0x80000000)
6045         do_facet ost1 lctl set_param fail_loc=0x228
6046
6047         # write should retry several times and return -ENOSPC finally
6048         $SETSTRIPE -i 0 -c 1 $DIR/$tfile
6049         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
6050         RC=$?
6051         ENOSPC=28
6052         if [ $RC -ne $ENOSPC ] ; then
6053                 error "dd should fail for -ENOSPC, but succeed."
6054         fi
6055 }
6056 run_test 81b "OST should return -ENOSPC when retry still fails ======="
6057
6058 test_82() { # LU-1031
6059         dd if=/dev/zero of=$DIR/$tfile bs=1M count=10
6060         local gid1=14091995
6061         local gid2=16022000
6062
6063         multiop_bg_pause $DIR/$tfile OG${gid1}_g${gid1}c || return 1
6064         local MULTIPID1=$!
6065         multiop_bg_pause $DIR/$tfile O_G${gid2}r10g${gid2}c || return 2
6066         local MULTIPID2=$!
6067         kill -USR1 $MULTIPID2
6068         sleep 2
6069         if [[ `ps h -o comm -p $MULTIPID2` == "" ]]; then
6070                 error "First grouplock does not block second one"
6071         else
6072                 echo "Second grouplock blocks first one"
6073         fi
6074         kill -USR1 $MULTIPID1
6075         wait $MULTIPID1
6076         wait $MULTIPID2
6077 }
6078 run_test 82 "Basic grouplock test ==============================="
6079
6080 test_99a() {
6081         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" &&
6082                 return
6083         test_mkdir -p $DIR/d99cvsroot
6084         chown $RUNAS_ID $DIR/d99cvsroot
6085         local oldPWD=$PWD       # bug 13584, use $TMP as working dir
6086         cd $TMP
6087
6088         $RUNAS cvs -d $DIR/d99cvsroot init || error "cvs init failed"
6089         cd $oldPWD
6090 }
6091 run_test 99a "cvs init ========================================="
6092
6093 test_99b() {
6094         [ -z "$(which cvs 2>/dev/null)" ] &&
6095                 skip_env "could not find cvs" && return
6096         [ ! -d $DIR/d99cvsroot ] && test_99a
6097         cd /etc/init.d
6098         # some versions of cvs import exit(1) when asked to import links or
6099         # files they can't read.  ignore those files.
6100         TOIGNORE=$(find . -type l -printf '-I %f\n' -o \
6101                         ! -perm +4 -printf '-I %f\n')
6102         $RUNAS cvs -d $DIR/d99cvsroot import -m "nomesg" $TOIGNORE \
6103                 d99reposname vtag rtag
6104 }
6105 run_test 99b "cvs import ======================================="
6106
6107 test_99c() {
6108         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && return
6109         [ ! -d $DIR/d99cvsroot ] && test_99b
6110         cd $DIR
6111         test_mkdir -p $DIR/d99reposname
6112         chown $RUNAS_ID $DIR/d99reposname
6113         $RUNAS cvs -d $DIR/d99cvsroot co d99reposname
6114 }
6115 run_test 99c "cvs checkout ====================================="
6116
6117 test_99d() {
6118         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && return
6119         [ ! -d $DIR/d99cvsroot ] && test_99c
6120         cd $DIR/d99reposname
6121         $RUNAS touch foo99
6122         $RUNAS cvs add -m 'addmsg' foo99
6123 }
6124 run_test 99d "cvs add =========================================="
6125
6126 test_99e() {
6127         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && return
6128         [ ! -d $DIR/d99cvsroot ] && test_99c
6129         cd $DIR/d99reposname
6130         $RUNAS cvs update
6131 }
6132 run_test 99e "cvs update ======================================="
6133
6134 test_99f() {
6135         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && return
6136         [ ! -d $DIR/d99cvsroot ] && test_99d
6137         cd $DIR/d99reposname
6138         $RUNAS cvs commit -m 'nomsg' foo99
6139     rm -fr $DIR/d99cvsroot
6140 }
6141 run_test 99f "cvs commit ======================================="
6142
6143 test_100() {
6144         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6145         [ "$NETTYPE" = tcp ] || \
6146                 { skip "TCP secure port test, not useful for NETTYPE=$NETTYPE" && \
6147                         return ; }
6148
6149         remote_ost_nodsh && skip "remote OST with nodsh" && return
6150         remote_mds_nodsh && skip "remote MDS with nodsh" && return
6151         remote_servers || \
6152                 { skip "useless for local single node setup" && return; }
6153
6154         netstat -tna | ( rc=1; while read PROT SND RCV LOCAL REMOTE STAT; do
6155                 [ "$PROT" != "tcp" ] && continue
6156                 RPORT=$(echo $REMOTE | cut -d: -f2)
6157                 [ "$RPORT" != "$ACCEPTOR_PORT" ] && continue
6158
6159                 rc=0
6160                 LPORT=`echo $LOCAL | cut -d: -f2`
6161                 if [ $LPORT -ge 1024 ]; then
6162                         echo "bad: $PROT $SND $RCV $LOCAL $REMOTE $STAT"
6163                         netstat -tna
6164                         error_exit "local: $LPORT > 1024, remote: $RPORT"
6165                 fi
6166         done
6167         [ "$rc" = 0 ] || error_exit "privileged port not found" )
6168 }
6169 run_test 100 "check local port using privileged port ==========="
6170
6171 function get_named_value()
6172 {
6173     local tag
6174
6175     tag=$1
6176     while read ;do
6177         line=$REPLY
6178         case $line in
6179         $tag*)
6180             echo $line | sed "s/^$tag[ ]*//"
6181             break
6182             ;;
6183         esac
6184     done
6185 }
6186
6187 export CACHE_MAX=$($LCTL get_param -n llite.*.max_cached_mb |
6188                    awk '/^max_cached_mb/ { print $2 }')
6189
6190 cleanup_101a() {
6191         $LCTL set_param -n llite.*.max_cached_mb $CACHE_MAX
6192         trap 0
6193 }
6194
6195 test_101a() {
6196         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6197         [ $MDSCOUNT -ge 2 ] && skip "skip now for >= 2 MDTs" && return #LU-4322
6198         local s
6199         local discard
6200         local nreads=10000
6201         local cache_limit=32
6202
6203         $LCTL set_param -n osc.*-osc*.rpc_stats 0
6204         trap cleanup_101a EXIT
6205         $LCTL set_param -n llite.*.read_ahead_stats 0
6206         $LCTL set_param -n llite.*.max_cached_mb $cache_limit
6207
6208         #
6209         # randomly read 10000 of 64K chunks from file 3x 32MB in size
6210         #
6211         echo "nreads: $nreads file size: $((cache_limit * 3))MB"
6212         $READS -f $DIR/$tfile -s$((cache_limit * 3192 * 1024)) -b65536 -C -n$nreads -t 180
6213
6214         discard=0
6215         for s in $($LCTL get_param -n llite.*.read_ahead_stats |
6216                 get_named_value 'read but discarded' | cut -d" " -f1); do
6217                         discard=$(($discard + $s))
6218         done
6219         cleanup_101a
6220
6221         if [[ $(($discard * 10)) -gt $nreads ]]; then
6222                 $LCTL get_param osc.*-osc*.rpc_stats
6223                 $LCTL get_param llite.*.read_ahead_stats
6224                 error "too many ($discard) discarded pages"
6225         fi
6226         rm -f $DIR/$tfile || true
6227 }
6228 run_test 101a "check read-ahead for random reads ================"
6229
6230 setup_test101bc() {
6231         test_mkdir -p $DIR/$tdir
6232         local STRIPE_SIZE=$1
6233         local FILE_LENGTH=$2
6234         STRIPE_OFFSET=0
6235
6236         local FILE_SIZE_MB=$((FILE_LENGTH / STRIPE_SIZE))
6237
6238         local list=$(comma_list $(osts_nodes))
6239         set_osd_param $list '' read_cache_enable 0
6240         set_osd_param $list '' writethrough_cache_enable 0
6241
6242         trap cleanup_test101bc EXIT
6243         # prepare the read-ahead file
6244         $SETSTRIPE -S $STRIPE_SIZE -i $STRIPE_OFFSET -c $OSTCOUNT $DIR/$tfile
6245
6246         dd if=/dev/zero of=$DIR/$tfile bs=$STRIPE_SIZE \
6247                                 count=$FILE_SIZE_MB 2> /dev/null
6248
6249 }
6250
6251 cleanup_test101bc() {
6252         trap 0
6253         rm -rf $DIR/$tdir
6254         rm -f $DIR/$tfile
6255
6256         local list=$(comma_list $(osts_nodes))
6257         set_osd_param $list '' read_cache_enable 1
6258         set_osd_param $list '' writethrough_cache_enable 1
6259 }
6260
6261 calc_total() {
6262         awk 'BEGIN{total=0}; {total+=$1}; END{print total}'
6263 }
6264
6265 ra_check_101() {
6266         local READ_SIZE=$1
6267         local STRIPE_SIZE=$2
6268         local FILE_LENGTH=$3
6269         local RA_INC=1048576
6270         local STRIDE_LENGTH=$((STRIPE_SIZE/READ_SIZE))
6271         local discard_limit=$((((STRIDE_LENGTH - 1)*3/(STRIDE_LENGTH*OSTCOUNT))* \
6272                              (STRIDE_LENGTH*OSTCOUNT - STRIDE_LENGTH)))
6273         DISCARD=$($LCTL get_param -n llite.*.read_ahead_stats |
6274                         get_named_value 'read but discarded' |
6275                         cut -d" " -f1 | calc_total)
6276         if [[ $DISCARD -gt $discard_limit ]]; then
6277                 $LCTL get_param llite.*.read_ahead_stats
6278                 error "Too many ($DISCARD) discarded pages with size (${READ_SIZE})"
6279         else
6280                 echo "Read-ahead success for size ${READ_SIZE}"
6281         fi
6282 }
6283
6284 test_101b() {
6285         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6286         [[ $OSTCOUNT -lt 2 ]] &&
6287                 skip_env "skipping stride IO stride-ahead test" && return
6288         local STRIPE_SIZE=1048576
6289         local STRIDE_SIZE=$((STRIPE_SIZE*OSTCOUNT))
6290         if [ $SLOW == "yes" ]; then
6291                 local FILE_LENGTH=$((STRIDE_SIZE * 64))
6292         else
6293                 local FILE_LENGTH=$((STRIDE_SIZE * 8))
6294         fi
6295
6296         local ITERATION=$((FILE_LENGTH / STRIDE_SIZE))
6297
6298         # prepare the read-ahead file
6299         setup_test101bc $STRIPE_SIZE $FILE_LENGTH
6300         cancel_lru_locks osc
6301         for BIDX in 2 4 8 16 32 64 128 256
6302         do
6303                 local BSIZE=$((BIDX*4096))
6304                 local READ_COUNT=$((STRIPE_SIZE/BSIZE))
6305                 local STRIDE_LENGTH=$((STRIDE_SIZE/BSIZE))
6306                 local OFFSET=$((STRIPE_SIZE/BSIZE*(OSTCOUNT - 1)))
6307                 $LCTL set_param -n llite.*.read_ahead_stats 0
6308                 $READS -f $DIR/$tfile  -l $STRIDE_LENGTH -o $OFFSET \
6309                               -s $FILE_LENGTH -b $STRIPE_SIZE -a $READ_COUNT -n $ITERATION
6310                 cancel_lru_locks osc
6311                 ra_check_101 $BSIZE $STRIPE_SIZE $FILE_LENGTH
6312         done
6313         cleanup_test101bc
6314         true
6315 }
6316 run_test 101b "check stride-io mode read-ahead ================="
6317
6318 test_101c() {
6319         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6320         local STRIPE_SIZE=1048576
6321         local FILE_LENGTH=$((STRIPE_SIZE*100))
6322         local nreads=10000
6323         local osc_rpc_stats
6324
6325         setup_test101bc $STRIPE_SIZE $FILE_LENGTH
6326
6327         cancel_lru_locks osc
6328         $LCTL set_param osc.*.rpc_stats 0
6329         $READS -f $DIR/$tfile -s$FILE_LENGTH -b65536 -n$nreads -t 180
6330         for osc_rpc_stats in $($LCTL get_param -N osc.*.rpc_stats); do
6331                 local stats=$($LCTL get_param -n $osc_rpc_stats)
6332                 local lines=$(echo "$stats" | awk 'END {print NR;}')
6333                 local size
6334
6335                 if [ $lines -le 20 ]; then
6336                         continue
6337                 fi
6338                 for size in 1 2 4 8; do
6339                         local rpc=$(echo "$stats" |
6340                                     awk '($1 == "'$size':") {print $2; exit; }')
6341                         [ $rpc != 0 ] &&
6342                                 error "Small $((size*4))k read IO $rpc !"
6343                 done
6344                 echo "$osc_rpc_stats check passed!"
6345         done
6346         cleanup_test101bc
6347         true
6348 }
6349 run_test 101c "check stripe_size aligned read-ahead ================="
6350
6351 set_read_ahead() {
6352         $LCTL get_param -n llite.*.max_read_ahead_mb | head -n 1
6353         $LCTL set_param -n llite.*.max_read_ahead_mb $1 > /dev/null 2>&1
6354 }
6355
6356 test_101d() {
6357         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6358         local file=$DIR/$tfile
6359         local sz_MB=${FILESIZE_101d:-500}
6360         local ra_MB=${READAHEAD_MB:-40}
6361
6362         local free_MB=$(($(df -P $DIR | tail -n 1 | awk '{ print $4 }') / 1024))
6363         [ $free_MB -lt $sz_MB ] &&
6364                 skip "Need free space ${sz_MB}M, have ${free_MB}M" && return
6365
6366         echo "Create test file $file size ${sz_MB}M, ${free_MB}M free"
6367         $SETSTRIPE -c -1 $file || error "setstripe failed"
6368
6369         dd if=/dev/zero of=$file bs=1M count=$sz_MB || error "dd failed"
6370         echo Cancel LRU locks on lustre client to flush the client cache
6371         cancel_lru_locks osc
6372
6373         echo Disable read-ahead
6374         local old_READAHEAD=$(set_read_ahead 0)
6375
6376         echo Reading the test file $file with read-ahead disabled
6377         local raOFF=$(do_and_time "dd if=$file of=/dev/null bs=1M count=$sz_MB")
6378
6379         echo Cancel LRU locks on lustre client to flush the client cache
6380         cancel_lru_locks osc
6381         echo Enable read-ahead with ${ra_MB}MB
6382         set_read_ahead $ra_MB
6383
6384         echo Reading the test file $file with read-ahead enabled
6385         local raON=$(do_and_time "dd if=$file of=/dev/null bs=1M count=$sz_MB")
6386
6387         echo "read-ahead disabled time read $raOFF"
6388         echo "read-ahead enabled  time read $raON"
6389
6390         set_read_ahead $old_READAHEAD
6391         rm -f $file
6392         wait_delete_completed
6393
6394         [ $raOFF -le 1 -o $raON -lt $raOFF ] ||
6395                 error "readahead ${raON}s > no-readahead ${raOFF}s ${sz_MB}M"
6396 }
6397 run_test 101d "file read with and without read-ahead enabled"
6398
6399 test_101e() {
6400         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6401         local file=$DIR/$tfile
6402         local size_KB=500  #KB
6403         local count=100
6404         local bsize=1024
6405
6406         local free_KB=$(df -P $DIR | tail -n 1 | awk '{ print $4 }')
6407         local need_KB=$((count * size_KB))
6408         [[ $free_KB -le $need_KB ]] &&
6409                 skip_env "Need free space $need_KB, have $free_KB" && return
6410
6411         echo "Creating $count ${size_KB}K test files"
6412         for ((i = 0; i < $count; i++)); do
6413                 dd if=/dev/zero of=$file.$i bs=$bsize count=$size_KB 2>/dev/null
6414         done
6415
6416         echo "Cancel LRU locks on lustre client to flush the client cache"
6417         cancel_lru_locks osc
6418
6419         echo "Reset readahead stats"
6420         $LCTL set_param -n llite.*.read_ahead_stats 0
6421
6422         for ((i = 0; i < $count; i++)); do
6423                 dd if=$file.$i of=/dev/null bs=$bsize count=$size_KB 2>/dev/null
6424         done
6425
6426         local miss=$($LCTL get_param -n llite.*.read_ahead_stats |
6427                      get_named_value 'misses' | cut -d" " -f1 | calc_total)
6428
6429         for ((i = 0; i < $count; i++)); do
6430                 rm -rf $file.$i 2>/dev/null
6431         done
6432
6433         #10000 means 20% reads are missing in readahead
6434         [[ $miss -lt 10000 ]] ||  error "misses too much for small reads"
6435 }
6436 run_test 101e "check read-ahead for small read(1k) for small files(500k)"
6437
6438 cleanup_test101f() {
6439     trap 0
6440     $LCTL set_param -n llite.*.max_read_ahead_whole_mb $MAX_WHOLE_MB
6441     rm -rf $DIR/$tfile 2>/dev/null
6442 }
6443
6444 test_101f() {
6445         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6446     local file=$DIR/$tfile
6447     local nreads=1000
6448
6449     MAX_WHOLE_MB=$($LCTL get_param -n llite.*.max_read_ahead_whole_mb)
6450     $LCTL set_param -n llite.*.max_read_ahead_whole_mb 2
6451     dd if=/dev/zero of=${file} bs=2097152 count=1 2>/dev/null
6452     trap cleanup_test101f EXIT
6453
6454     echo Cancel LRU locks on lustre client to flush the client cache
6455     cancel_lru_locks osc
6456
6457     echo Reset readahead stats
6458     $LCTL set_param -n llite.*.read_ahead_stats 0
6459     # Random read in a 2M file, because max_read_ahead_whole_mb = 2M,
6460     # readahead should read in 2M file on second read, so only miss
6461     # 2 pages.
6462     echo Random 4K reads on 2M file for 1000 times
6463     $READS -f $file -s 2097152 -b 4096 -n $nreads
6464
6465     echo checking missing pages
6466     local miss=$($LCTL get_param -n llite.*.read_ahead_stats |
6467           get_named_value 'misses' | cut -d" " -f1 | calc_total)
6468
6469     [ $miss -lt 3 ] || error "misses too much pages!"
6470     cleanup_test101f
6471 }
6472 run_test 101f "check read-ahead for max_read_ahead_whole_mb"
6473
6474 setup_test102() {
6475         test_mkdir -p $DIR/$tdir
6476         chown $RUNAS_ID $DIR/$tdir
6477         STRIPE_SIZE=65536
6478         STRIPE_OFFSET=1
6479         STRIPE_COUNT=$OSTCOUNT
6480         [[ $OSTCOUNT -gt 4 ]] && STRIPE_COUNT=4
6481
6482         trap cleanup_test102 EXIT
6483         cd $DIR
6484         $1 $SETSTRIPE -S $STRIPE_SIZE -i $STRIPE_OFFSET -c $STRIPE_COUNT $tdir
6485         cd $DIR/$tdir
6486         for num in 1 2 3 4; do
6487                 for count in $(seq 1 $STRIPE_COUNT); do
6488                         for idx in $(seq 0 $[$STRIPE_COUNT - 1]); do
6489                                 local size=`expr $STRIPE_SIZE \* $num`
6490                                 local file=file"$num-$idx-$count"
6491                                 $1 $SETSTRIPE -S $size -i $idx -c $count $file
6492                         done
6493                 done
6494         done
6495
6496         cd $DIR
6497         $1 $TAR cf $TMP/f102.tar $tdir --xattrs
6498 }
6499
6500 cleanup_test102() {
6501         trap 0
6502         rm -f $TMP/f102.tar
6503         rm -rf $DIR/d0.sanity/d102
6504 }
6505
6506 test_102a() {
6507         local testfile=$DIR/$tfile
6508
6509         touch $testfile
6510
6511         [ "$UID" != 0 ] && skip_env "must run as root" && return
6512         [ -z "$(lctl get_param -n mdc.*-mdc-*.connect_flags | grep xattr)" ] &&
6513                 skip_env "must have user_xattr" && return
6514
6515         [ -z "$(which setfattr 2>/dev/null)" ] &&
6516                 skip_env "could not find setfattr" && return
6517
6518         echo "set/get xattr..."
6519         setfattr -n trusted.name1 -v value1 $testfile ||
6520                 error "setfattr -n trusted.name1=value1 $testfile failed"
6521         getfattr -n trusted.name1 $testfile 2> /dev/null |
6522           grep "trusted.name1=.value1" ||
6523                 error "$testfile missing trusted.name1=value1"
6524
6525         setfattr -n user.author1 -v author1 $testfile ||
6526                 error "setfattr -n user.author1=author1 $testfile failed"
6527         getfattr -n user.author1 $testfile 2> /dev/null |
6528           grep "user.author1=.author1" ||
6529                 error "$testfile missing trusted.author1=author1"
6530
6531         echo "listxattr..."
6532         setfattr -n trusted.name2 -v value2 $testfile ||
6533                 error "$testfile unable to set trusted.name2"
6534         setfattr -n trusted.name3 -v value3 $testfile ||
6535                 error "$testfile unable to set trusted.name3"
6536         [ $(getfattr -d -m "^trusted" $testfile 2> /dev/null |
6537             grep "trusted.name" | wc -l) -eq 3 ] ||
6538                 error "$testfile missing 3 trusted.name xattrs"
6539
6540         setfattr -n user.author2 -v author2 $testfile ||
6541                 error "$testfile unable to set user.author2"
6542         setfattr -n user.author3 -v author3 $testfile ||
6543                 error "$testfile unable to set user.author3"
6544         [ $(getfattr -d -m "^user" $testfile 2> /dev/null |
6545             grep "user.author" | wc -l) -eq 3 ] ||
6546                 error "$testfile missing 3 user.author xattrs"
6547
6548         echo "remove xattr..."
6549         setfattr -x trusted.name1 $testfile ||
6550                 error "$testfile error deleting trusted.name1"
6551         getfattr -d -m trusted $testfile 2> /dev/null | grep "trusted.name1" &&
6552                 error "$testfile did not delete trusted.name1 xattr"
6553
6554         setfattr -x user.author1 $testfile ||
6555                 error "$testfile error deleting user.author1"
6556         getfattr -d -m user $testfile 2> /dev/null | grep "user.author1" &&
6557                 error "$testfile did not delete trusted.name1 xattr"
6558
6559         # b10667: setting lustre special xattr be silently discarded
6560         echo "set lustre special xattr ..."
6561         setfattr -n "trusted.lov" -v "invalid value" $testfile ||
6562                 error "$testfile allowed setting trusted.lov"
6563 }
6564 run_test 102a "user xattr test =================================="
6565
6566 test_102b() {
6567         [ -z "$(which setfattr 2>/dev/null)" ] &&
6568                 skip_env "could not find setfattr" && return
6569
6570         # b10930: get/set/list trusted.lov xattr
6571         echo "get/set/list trusted.lov xattr ..."
6572         [[ $OSTCOUNT -lt 2 ]] && skip_env "skipping 2-stripe test" && return
6573         local testfile=$DIR/$tfile
6574         $SETSTRIPE -S 65536 -i 1 -c $OSTCOUNT $testfile ||
6575                 error "setstripe failed"
6576         local STRIPECOUNT=$($GETSTRIPE -c $testfile) ||
6577                 error "getstripe failed"
6578         getfattr -d -m "^trusted" $testfile 2>/dev/null | grep "trusted.lov" ||
6579                 error "can't get trusted.lov from $testfile"
6580
6581         local testfile2=${testfile}2
6582         local value=$(getfattr -n trusted.lov $testfile 2>/dev/null |
6583                         grep "trusted.lov" | sed -e 's/[^=]\+=//')
6584
6585         $MCREATE $testfile2
6586         setfattr -n trusted.lov -v $value $testfile2
6587         local stripe_size=$($GETSTRIPE -S $testfile2)
6588         local stripe_count=$($GETSTRIPE -c $testfile2)
6589         [[ $stripe_size -eq 65536 ]] ||
6590                 error "stripe size $stripe_size != 65536"
6591         [[ $stripe_count -eq $STRIPECOUNT ]] ||
6592                 error "stripe count $stripe_count != $STRIPECOUNT"
6593         rm -f $DIR/$tfile
6594 }
6595 run_test 102b "getfattr/setfattr for trusted.lov EAs ============"
6596
6597 test_102c() {
6598         [ -z "$(which setfattr 2>/dev/null)" ] &&
6599                 skip_env "could not find setfattr" && return
6600
6601         # b10930: get/set/list lustre.lov xattr
6602         echo "get/set/list lustre.lov xattr ..."
6603         [[ $OSTCOUNT -lt 2 ]] && skip_env "skipping 2-stripe test" && return
6604         test_mkdir -p $DIR/$tdir
6605         chown $RUNAS_ID $DIR/$tdir
6606         local testfile=$DIR/$tdir/$tfile
6607         $RUNAS $SETSTRIPE -S 65536 -i 1 -c $OSTCOUNT $testfile ||
6608                 error "setstripe failed"
6609         local STRIPECOUNT=$($RUNAS $GETSTRIPE -c $testfile) ||
6610                 error "getstripe failed"
6611         $RUNAS getfattr -d -m "^lustre" $testfile 2> /dev/null | \
6612         grep "lustre.lov" || error "can't get lustre.lov from $testfile"
6613
6614         local testfile2=${testfile}2
6615         local value=`getfattr -n lustre.lov $testfile 2> /dev/null | \
6616                      grep "lustre.lov" |sed -e 's/[^=]\+=//'  `
6617
6618         $RUNAS $MCREATE $testfile2
6619         $RUNAS setfattr -n lustre.lov -v $value $testfile2
6620         local stripe_size=$($RUNAS $GETSTRIPE -S $testfile2)
6621         local stripe_count=$($RUNAS $GETSTRIPE -c $testfile2)
6622         [ $stripe_size -eq 65536 ] || error "stripe size $stripe_size != 65536"
6623         [ $stripe_count -eq $STRIPECOUNT ] ||
6624                 error "stripe count $stripe_count != $STRIPECOUNT"
6625 }
6626 run_test 102c "non-root getfattr/setfattr for lustre.lov EAs ==========="
6627
6628 compare_stripe_info1() {
6629         local stripe_index_all_zero=true
6630
6631         for num in 1 2 3 4; do
6632                 for count in $(seq 1 $STRIPE_COUNT); do
6633                         for offset in $(seq 0 $[$STRIPE_COUNT - 1]); do
6634                                 local size=$((STRIPE_SIZE * num))
6635                                 local file=file"$num-$offset-$count"
6636                                 stripe_size=$($LFS getstripe -S $PWD/$file)
6637                                 [[ $stripe_size -ne $size ]] &&
6638                                     error "$file: size $stripe_size != $size"
6639                                 stripe_count=$($LFS getstripe -c $PWD/$file)
6640                                 # allow fewer stripes to be created, ORI-601
6641                                 [[ $stripe_count -lt $(((3 * count + 3) / 4)) ]] &&
6642                                     error "$file: count $stripe_count != $count"
6643                                 stripe_index=$($LFS getstripe -i $PWD/$file)
6644                                 [[ $stripe_index -ne 0 ]] &&
6645                                         stripe_index_all_zero=false
6646                         done
6647                 done
6648         done
6649         $stripe_index_all_zero &&
6650                 error "all files are being extracted starting from OST index 0"
6651         return 0
6652 }
6653
6654 find_lustre_tar() {
6655         [ -n "$(which tar 2>/dev/null)" ] &&
6656                 strings $(which tar) | grep -q "lustre" && echo tar
6657 }
6658
6659 test_102d() {
6660         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6661         # b10930: tar test for trusted.lov xattr
6662         TAR=$(find_lustre_tar)
6663         [ -z "$TAR" ] && skip_env "lustre-aware tar is not installed" && return
6664         [[ $OSTCOUNT -lt 2 ]] && skip_env "skipping N-stripe test" && return
6665         setup_test102
6666         test_mkdir -p $DIR/d102d
6667         $TAR xf $TMP/f102.tar -C $DIR/d102d --xattrs
6668         cd $DIR/d102d/$tdir
6669         compare_stripe_info1
6670 }
6671 run_test 102d "tar restore stripe info from tarfile,not keep osts ==========="
6672
6673 test_102f() {
6674         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6675         # b10930: tar test for trusted.lov xattr
6676         TAR=$(find_lustre_tar)
6677         [ -z "$TAR" ] && skip_env "lustre-aware tar is not installed" && return
6678         [[ $OSTCOUNT -lt 2 ]] && skip_env "skipping N-stripe test" && return
6679         setup_test102
6680         test_mkdir -p $DIR/d102f
6681         cd $DIR
6682         $TAR cf - --xattrs $tdir | $TAR xf - --xattrs -C $DIR/d102f
6683         cd $DIR/d102f/$tdir
6684         compare_stripe_info1
6685 }
6686 run_test 102f "tar copy files, not keep osts ==========="
6687
6688 grow_xattr() {
6689         local xsize=${1:-1024}  # in bytes
6690         local file=$DIR/$tfile
6691
6692         [ -z $(lctl get_param -n mdc.*.connect_flags | grep xattr) ] &&
6693                 skip "must have user_xattr" && return 0
6694         [ -z "$(which setfattr 2>/dev/null)" ] &&
6695                 skip_env "could not find setfattr" && return 0
6696         [ -z "$(which getfattr 2>/dev/null)" ] &&
6697                 skip_env "could not find getfattr" && return 0
6698
6699         touch $file
6700
6701         local value="$(generate_string $xsize)"
6702
6703         local xbig=trusted.big
6704         log "save $xbig on $file"
6705         setfattr -n $xbig -v $value $file ||
6706                 error "saving $xbig on $file failed"
6707
6708         local orig=$(get_xattr_value $xbig $file)
6709         [[ "$orig" != "$value" ]] && error "$xbig different after saving $xbig"
6710
6711         local xsml=trusted.sml
6712         log "save $xsml on $file"
6713         setfattr -n $xsml -v val $file || error "saving $xsml on $file failed"
6714
6715         local new=$(get_xattr_value $xbig $file)
6716         [[ "$new" != "$orig" ]] && error "$xbig different after saving $xsml"
6717
6718         log "grow $xsml on $file"
6719         setfattr -n $xsml -v "$value" $file ||
6720                 error "growing $xsml on $file failed"
6721
6722         new=$(get_xattr_value $xbig $file)
6723         [[ "$new" != "$orig" ]] && error "$xbig different after growing $xsml"
6724         log "$xbig still valid after growing $xsml"
6725
6726         rm -f $file
6727 }
6728
6729 test_102h() { # bug 15777
6730         grow_xattr 1024
6731 }
6732 run_test 102h "grow xattr from inside inode to external block"
6733
6734 test_102ha() {
6735         large_xattr_enabled || { skip "large_xattr disabled" && return; }
6736         grow_xattr $(max_xattr_size)
6737 }
6738 run_test 102ha "grow xattr from inside inode to external inode"
6739
6740 test_102i() { # bug 17038
6741         [ -z "$(which getfattr 2>/dev/null)" ] &&
6742                 skip "could not find getfattr" && return
6743         touch $DIR/$tfile
6744         ln -s $DIR/$tfile $DIR/${tfile}link
6745         getfattr -n trusted.lov $DIR/$tfile ||
6746                 error "lgetxattr on $DIR/$tfile failed"
6747         getfattr -h -n trusted.lov $DIR/${tfile}link 2>&1 |
6748                 grep -i "no such attr" ||
6749                 error "error for lgetxattr on $DIR/${tfile}link is not ENODATA"
6750         rm -f $DIR/$tfile $DIR/${tfile}link
6751 }
6752 run_test 102i "lgetxattr test on symbolic link ============"
6753
6754 test_102j() {
6755         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6756         TAR=$(find_lustre_tar)
6757         [ -z "$TAR" ] && skip_env "lustre-aware tar is not installed" && return
6758         [[ $OSTCOUNT -lt 2 ]] && skip_env "skipping N-stripe test" && return
6759         setup_test102 "$RUNAS"
6760         test_mkdir -p $DIR/d102j
6761         chown $RUNAS_ID $DIR/d102j
6762         $RUNAS $TAR xf $TMP/f102.tar -C $DIR/d102j --xattrs
6763         cd $DIR/d102j/$tdir
6764         compare_stripe_info1 "$RUNAS"
6765 }
6766 run_test 102j "non-root tar restore stripe info from tarfile, not keep osts ==="
6767
6768 test_102k() {
6769         [ -z "$(which setfattr 2>/dev/null)" ] &&
6770                 skip "could not find setfattr" && return
6771         touch $DIR/$tfile
6772         # b22187 just check that does not crash for regular file.
6773         setfattr -n trusted.lov $DIR/$tfile
6774         # b22187 'setfattr -n trusted.lov' should work as remove LOV EA for directories
6775         local test_kdir=$DIR/d102k
6776         test_mkdir $test_kdir
6777         local default_size=`$GETSTRIPE -S $test_kdir`
6778         local default_count=`$GETSTRIPE -c $test_kdir`
6779         local default_offset=`$GETSTRIPE -i $test_kdir`
6780         $SETSTRIPE -S 65536 -i 0 -c $OSTCOUNT $test_kdir ||
6781                 error 'dir setstripe failed'
6782         setfattr -n trusted.lov $test_kdir
6783         local stripe_size=`$GETSTRIPE -S $test_kdir`
6784         local stripe_count=`$GETSTRIPE -c $test_kdir`
6785         local stripe_offset=`$GETSTRIPE -i $test_kdir`
6786         [ $stripe_size -eq $default_size ] ||
6787                 error "stripe size $stripe_size != $default_size"
6788         [ $stripe_count -eq $default_count ] ||
6789                 error "stripe count $stripe_count != $default_count"
6790         [ $stripe_offset -eq $default_offset ] ||
6791                 error "stripe offset $stripe_offset != $default_offset"
6792         rm -rf $DIR/$tfile $test_kdir
6793 }
6794 run_test 102k "setfattr without parameter of value shouldn't cause a crash"
6795
6796 test_102l() {
6797         [ -z "$(which getfattr 2>/dev/null)" ] &&
6798                 skip "could not find getfattr" && return
6799
6800         # LU-532 trusted. xattr is invisible to non-root
6801         local testfile=$DIR/$tfile
6802
6803         touch $testfile
6804
6805         echo "listxattr as user..."
6806         chown $RUNAS_ID $testfile
6807         $RUNAS getfattr -d -m '.*' $testfile 2>&1 |
6808             grep -q "trusted" &&
6809                 error "$testfile trusted xattrs are user visible"
6810
6811         return 0;
6812 }
6813 run_test 102l "listxattr size test =================================="
6814
6815 test_102m() { # LU-3403 llite: error of listxattr when buffer is small
6816         local path=$DIR/$tfile
6817         touch $path
6818
6819         listxattr_size_check $path || error "listattr_size_check $path failed"
6820 }
6821 run_test 102m "Ensure listxattr fails on small bufffer ========"
6822
6823 cleanup_test102
6824
6825 getxattr() { # getxattr path name
6826         # Return the base64 encoding of the value of xattr name on path.
6827         local path=$1
6828         local name=$2
6829
6830         # # getfattr --absolute-names --encoding=base64 --name=trusted.lov $path
6831         # file: $path
6832         # trusted.lov=0s0AvRCwEAAAAGAAAAAAAAAAAEAAACAAAAAAAQAAEAA...AAAAAAAAA=
6833         #
6834         # We print just 0s0AvRCwEAAAAGAAAAAAAAAAAEAAACAAAAAAAQAAEAA...AAAAAAAAA=
6835
6836         getfattr --absolute-names --encoding=base64 --name=$name $path |
6837                 awk -F= -v name=$name '$1 == name {
6838                         print substr($0, index($0, "=") + 1);
6839         }'
6840 }
6841
6842 test_102n() { # LU-4101 mdt: protect internal xattrs
6843         local file0=$DIR/$tfile.0
6844         local file1=$DIR/$tfile.1
6845         local xattr0=$TMP/$tfile.0
6846         local xattr1=$TMP/$tfile.1
6847         local name
6848         local value
6849
6850         [ -z "$(which setfattr 2>/dev/null)" ] &&
6851                 skip "could not find setfattr" && return
6852
6853         if [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.5.50) ]
6854         then
6855                 skip "MDT < 2.5.50 allows setxattr on internal trusted xattrs"
6856                 return
6857         fi
6858
6859         rm -rf $file0 $file1 $xattr0 $xattr1
6860         touch $file0 $file1
6861
6862         # Get 'before' xattrs of $file1.
6863         getfattr --absolute-names --dump --match=- $file1 > $xattr0
6864
6865         for name in lov lma lmv link fid version som hsm lfsck_namespace; do
6866                 # Try to copy xattr from $file0 to $file1.
6867                 value=$(getxattr $file0 trusted.$name 2> /dev/null)
6868
6869                 setfattr --name=trusted.$name --value="$value" $file1 ||
6870                         error "setxattr 'trusted.$name' failed"
6871
6872                 # Try to set a garbage xattr.
6873                 value=0sVGhlIHF1aWNrIGJyb3duIGZveCBqdW1wcyBvdmVyIGl0c2VsZi4=
6874
6875                 setfattr --name=trusted.$name --value="$value" $file1 ||
6876                         error "setxattr 'trusted.$name' failed"
6877
6878                 # Try to remove the xattr from $file1. We don't care if this
6879                 # appears to succeed or fail, we just don't want there to be
6880                 # any changes or crashes.
6881                 setfattr --remove=$trusted.$name $file1 2> /dev/null
6882         done
6883
6884         if [ $(lustre_version_code $SINGLEMDS) -gt $(version_code 2.6.50) ]
6885         then
6886                 name="lfsck_ns"
6887                 # Try to copy xattr from $file0 to $file1.
6888                 value=$(getxattr $file0 trusted.$name 2> /dev/null)
6889
6890                 setfattr --name=trusted.$name --value="$value" $file1 ||
6891                         error "setxattr 'trusted.$name' failed"
6892
6893                 # Try to set a garbage xattr.
6894                 value=0sVGhlIHF1aWNrIGJyb3duIGZveCBqdW1wcyBvdmVyIGl0c2VsZi4=
6895
6896                 setfattr --name=trusted.$name --value="$value" $file1 ||
6897                         error "setxattr 'trusted.$name' failed"
6898
6899                 # Try to remove the xattr from $file1. We don't care if this
6900                 # appears to succeed or fail, we just don't want there to be
6901                 # any changes or crashes.
6902                 setfattr --remove=$trusted.$name $file1 2> /dev/null
6903         fi
6904
6905         # Get 'after' xattrs of file1.
6906         getfattr --absolute-names --dump --match=- $file1 > $xattr1
6907
6908         if ! diff $xattr0 $xattr1; then
6909                 error "before and after xattrs of '$file1' differ"
6910         fi
6911
6912         rm -rf $file0 $file1 $xattr0 $xattr1
6913
6914         return 0
6915 }
6916 run_test 102n "silently ignore setxattr on internal trusted xattrs"
6917
6918 test_102p() { # LU-4703 setxattr did not check ownership
6919         local testfile=$DIR/$tfile
6920
6921         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.5.56) ] &&
6922                 skip "MDS needs to be at least 2.5.56" && return
6923
6924         touch $testfile
6925
6926         echo "setfacl as user..."
6927         $RUNAS setfacl -m "u:$RUNAS_ID:rwx" $testfile
6928         [ $? -ne 0 ] || error "setfacl by $RUNAS_ID was allowed on $testfile"
6929
6930         echo "setfattr as user..."
6931         setfacl -m "u:$RUNAS_ID:---" $testfile
6932         $RUNAS setfattr -x system.posix_acl_access $testfile
6933         [ $? -ne 0 ] || error "setfattr by $RUNAS_ID was allowed on $testfile"
6934 }
6935 run_test 102p "check setxattr(2) correctly fails without permission"
6936
6937 test_102q() {
6938         orphan_linkea_check $DIR/$tfile || error "orphan_linkea_check"
6939 }
6940 run_test 102q "flistxattr should not return trusted.link EAs for orphans"
6941
6942 test_102r() {
6943         touch $DIR/$tfile || error "touch"
6944         setfattr -n user.$(basename $tfile) $DIR/$tfile || error "setfattr"
6945         getfattr -n user.$(basename $tfile) $DIR/$tfile || error "getfattr"
6946         rm $DIR/$tfile || error "rm"
6947 }
6948 run_test 102r "set EAs with empty values"
6949
6950 run_acl_subtest()
6951 {
6952     $LUSTRE/tests/acl/run $LUSTRE/tests/acl/$1.test
6953     return $?
6954 }
6955
6956 test_103a() {
6957         [ "$UID" != 0 ] && skip_env "must run as root" && return
6958         [ -z "$(lctl get_param -n mdc.*-mdc-*.connect_flags | grep acl)" ] &&
6959                 skip "must have acl enabled" && return
6960         [ -z "$(which setfacl 2>/dev/null)" ] &&
6961                 skip_env "could not find setfacl" && return
6962         $GSS && skip "could not run under gss" && return
6963
6964         gpasswd -a daemon bin                           # LU-5641
6965         do_facet $SINGLEMDS gpasswd -a daemon bin       # LU-5641
6966
6967         declare -a identity_old
6968
6969         for num in $(seq $MDSCOUNT); do
6970                 switch_identity $num true || identity_old[$num]=$?
6971         done
6972
6973         SAVE_UMASK=$(umask)
6974         umask 0022
6975         cd $DIR
6976
6977         echo "performing cp ..."
6978         run_acl_subtest cp || error "run_acl_subtest cp failed"
6979         echo "performing getfacl-noacl..."
6980         run_acl_subtest getfacl-noacl || error "getfacl-noacl test failed"
6981         echo "performing misc..."
6982         run_acl_subtest misc || error  "misc test failed"
6983         echo "performing permissions..."
6984         run_acl_subtest permissions || error "permissions failed"
6985         echo "performing setfacl..."
6986         run_acl_subtest setfacl || error  "setfacl test failed"
6987
6988         # inheritance test got from HP
6989         echo "performing inheritance..."
6990         cp $LUSTRE/tests/acl/make-tree . || error "cannot copy make-tree"
6991         chmod +x make-tree || error "chmod +x failed"
6992         run_acl_subtest inheritance || error "inheritance test failed"
6993         rm -f make-tree
6994
6995         echo "LU-974 ignore umask when acl is enabled..."
6996         run_acl_subtest 974 || error "LU-974 umask test failed"
6997         if [ $MDSCOUNT -ge 2 ]; then
6998                 run_acl_subtest 974_remote ||
6999                         error "LU-974 umask test failed under remote dir"
7000         fi
7001
7002         echo "LU-2561 newly created file is same size as directory..."
7003         if [ $(facet_fstype $SINGLEMDS) != "zfs" ]; then
7004                 run_acl_subtest 2561 || error "LU-2561 test failed"
7005         else
7006                 run_acl_subtest 2561_zfs || error "LU-2561 zfs test failed"
7007         fi
7008
7009         run_acl_subtest 4924 || error "LU-4924 test failed"
7010
7011         cd $SAVE_PWD
7012         umask $SAVE_UMASK
7013
7014         for num in $(seq $MDSCOUNT); do
7015                 if [ "${identity_old[$num]}" = 1 ]; then
7016                         switch_identity $num false || identity_old[$num]=$?
7017                 fi
7018         done
7019 }
7020 run_test 103a "acl test ========================================="
7021
7022 test_103b() {
7023         local noacl=false
7024         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
7025         local mountopts=$MDS_MOUNT_OPTS
7026
7027         if [[ "$MDS_MOUNT_OPTS" =~ "noacl" ]]; then
7028                 noacl=true
7029         else
7030                 # stop the MDT
7031                 stop $SINGLEMDS || error "failed to stop MDT."
7032                 # remount the MDT
7033                 if [ -z "$MDS_MOUNT_OPTS" ]; then
7034                         MDS_MOUNT_OPTS="-o noacl"
7035                 else
7036                         MDS_MOUNT_OPTS="${MDS_MOUNT_OPTS},noacl"
7037                 fi
7038                 start $SINGLEMDS $MDT_DEV $MDS_MOUNT_OPTS ||
7039                         error "failed to start MDT."
7040                 MDS_MOUNT_OPTS=$mountopts
7041         fi
7042
7043         touch $DIR/$tfile
7044         setfacl -m u:bin:rw $DIR/$tfile && error "setfacl should fail"
7045
7046         if ! $noacl; then
7047                 # stop the MDT
7048                 stop $SINGLEMDS || error "failed to stop MDT."
7049                 # remount the MDT
7050                 start $SINGLEMDS $MDT_DEV $MDS_MOUNT_OPTS ||
7051                         error "failed to start MDT."
7052         fi
7053
7054         true
7055 }
7056 run_test 103b "MDS mount option 'noacl'"
7057
7058 test_103c() {
7059         mkdir -p $DIR/$tdir
7060         cp -rp $DIR/$tdir $DIR/$tdir.bak
7061
7062         [ -n "$(getfattr -d -m. $DIR/$tdir | grep posix_acl_default)" ] &&
7063                 error "$DIR/$tdir shouldn't contain default ACL"
7064         [ -n "$(getfattr -d -m. $DIR/$tdir.bak | grep posix_acl_default)" ] &&
7065                 error "$DIR/$tdir.bak shouldn't contain default ACL"
7066         true
7067 }
7068 run_test 103c "'cp -rp' won't set empty acl"
7069
7070 test_104a() {
7071         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7072         touch $DIR/$tfile
7073         lfs df || error "lfs df failed"
7074         lfs df -ih || error "lfs df -ih failed"
7075         lfs df -h $DIR || error "lfs df -h $DIR failed"
7076         lfs df -i $DIR || error "lfs df -i $DIR failed"
7077         lfs df $DIR/$tfile || error "lfs df $DIR/$tfile failed"
7078         lfs df -ih $DIR/$tfile || error "lfs df -ih $DIR/$tfile failed"
7079
7080         local OSC=$(lctl dl | grep OST0000-osc-[^M] | awk '{ print $4 }')
7081         lctl --device %$OSC deactivate
7082         lfs df || error "lfs df with deactivated OSC failed"
7083         lctl --device %$OSC activate
7084         # wait the osc back to normal
7085         wait_osc_import_state client ost FULL
7086
7087         lfs df || error "lfs df with reactivated OSC failed"
7088         rm -f $DIR/$tfile
7089 }
7090 run_test 104a "lfs df [-ih] [path] test ========================="
7091
7092 test_104b() {
7093         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7094         [ $RUNAS_ID -eq $UID ] &&
7095                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
7096         chmod 666 /dev/obd
7097         denied_cnt=$(($($RUNAS $LFS check servers 2>&1 |
7098                         grep "Permission denied" | wc -l)))
7099         if [ $denied_cnt -ne 0 ]; then
7100                 error "lfs check servers test failed"
7101         fi
7102 }
7103 run_test 104b "$RUNAS lfs check servers test ===================="
7104
7105 test_105a() {
7106         # doesn't work on 2.4 kernels
7107         touch $DIR/$tfile
7108         if $(flock_is_enabled); then
7109                 flocks_test 1 on -f $DIR/$tfile || error "fail flock on"
7110         else
7111                 flocks_test 1 off -f $DIR/$tfile || error "fail flock off"
7112         fi
7113         rm -f $DIR/$tfile
7114 }
7115 run_test 105a "flock when mounted without -o flock test ========"
7116
7117 test_105b() {
7118         touch $DIR/$tfile
7119         if $(flock_is_enabled); then
7120                 flocks_test 1 on -c $DIR/$tfile || error "fail flock on"
7121         else
7122                 flocks_test 1 off -c $DIR/$tfile || error "fail flock off"
7123         fi
7124         rm -f $DIR/$tfile
7125 }
7126 run_test 105b "fcntl when mounted without -o flock test ========"
7127
7128 test_105c() {
7129         touch $DIR/$tfile
7130         if $(flock_is_enabled); then
7131                 flocks_test 1 on -l $DIR/$tfile || error "fail flock on"
7132         else
7133                 flocks_test 1 off -l $DIR/$tfile || error "fail flock off"
7134         fi
7135         rm -f $DIR/$tfile
7136 }
7137 run_test 105c "lockf when mounted without -o flock test ========"
7138
7139 test_105d() { # bug 15924
7140         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7141         test_mkdir -p $DIR/$tdir
7142         flock_is_enabled || { skip "mount w/o flock enabled" && return; }
7143         #define OBD_FAIL_LDLM_CP_CB_WAIT  0x315
7144         $LCTL set_param fail_loc=0x80000315
7145         flocks_test 2 $DIR/$tdir
7146 }
7147 run_test 105d "flock race (should not freeze) ========"
7148
7149 test_105e() { # bug 22660 && 22040
7150         flock_is_enabled || { skip "mount w/o flock enabled" && return; }
7151         touch $DIR/$tfile
7152         flocks_test 3 $DIR/$tfile
7153 }
7154 run_test 105e "Two conflicting flocks from same process ======="
7155
7156 test_106() { #bug 10921
7157         test_mkdir -p $DIR/$tdir
7158         $DIR/$tdir && error "exec $DIR/$tdir succeeded"
7159         chmod 777 $DIR/$tdir || error "chmod $DIR/$tdir failed"
7160 }
7161 run_test 106 "attempt exec of dir followed by chown of that dir"
7162
7163 test_107() {
7164         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7165         CDIR=`pwd`
7166         cd $DIR
7167
7168         local file=core
7169         rm -f $file
7170
7171         local save_pattern=$(sysctl -n kernel.core_pattern)
7172         local save_uses_pid=$(sysctl -n kernel.core_uses_pid)
7173         sysctl -w kernel.core_pattern=$file
7174         sysctl -w kernel.core_uses_pid=0
7175
7176         ulimit -c unlimited
7177         sleep 60 &
7178         SLEEPPID=$!
7179
7180         sleep 1
7181
7182         kill -s 11 $SLEEPPID
7183         wait $SLEEPPID
7184         if [ -e $file ]; then
7185                 size=`stat -c%s $file`
7186                 [ $size -eq 0 ] && error "Fail to create core file $file"
7187         else
7188                 error "Fail to create core file $file"
7189         fi
7190         rm -f $file
7191         sysctl -w kernel.core_pattern=$save_pattern
7192         sysctl -w kernel.core_uses_pid=$save_uses_pid
7193         cd $CDIR
7194 }
7195 run_test 107 "Coredump on SIG"
7196
7197 test_110() {
7198         test_mkdir -p $DIR/$tdir
7199         test_mkdir $DIR/$tdir/$(str_repeat 'a' 255) ||
7200                 error "mkdir with 255 char failed"
7201         test_mkdir $DIR/$tdir/$(str_repeat 'b' 256) &&
7202                 error "mkdir with 256 char should fail, but did not"
7203         touch $DIR/$tdir/$(str_repeat 'x' 255) ||
7204                 error "create with 255 char failed"
7205         touch $DIR/$tdir/$(str_repeat 'y' 256) &&
7206                 error "create with 256 char should fail, but did not"
7207
7208         ls -l $DIR/$tdir
7209         rm -rf $DIR/$tdir
7210 }
7211 run_test 110 "filename length checking"
7212
7213 test_115() {
7214         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7215         OSTIO_pre=$(ps -e | grep ll_ost_io | awk '{ print $4 }'| sort -n |
7216                 tail -1 | cut -c11-20)
7217         [ -z "$OSTIO_pre" ] && skip "no OSS threads" && return
7218         echo "Starting with $OSTIO_pre threads"
7219
7220         NUMTEST=20000
7221         NUMFREE=$(df -i -P $DIR | tail -n 1 | awk '{ print $4 }')
7222         [[ $NUMFREE -lt $NUMTEST ]] && NUMTEST=$(($NUMFREE - 1000))
7223         echo "$NUMTEST creates/unlinks"
7224         test_mkdir -p $DIR/$tdir
7225         createmany -o $DIR/$tdir/$tfile $NUMTEST
7226         unlinkmany $DIR/$tdir/$tfile $NUMTEST
7227
7228         OSTIO_post=$(ps -e | grep ll_ost_io | awk '{ print $4 }' | sort -n |
7229                 tail -1 | cut -c11-20)
7230
7231         # don't return an error
7232         [ $OSTIO_post == $OSTIO_pre ] && echo \
7233             "WARNING: No new ll_ost_io threads were created ($OSTIO_pre)" &&
7234             echo "This may be fine, depending on what ran before this test" &&
7235             echo "and how fast this system is." && return
7236
7237         echo "Started with $OSTIO_pre threads, ended with $OSTIO_post"
7238 }
7239 run_test 115 "verify dynamic thread creation===================="
7240
7241 free_min_max () {
7242         wait_delete_completed
7243         AVAIL=($(lctl get_param -n osc.*[oO][sS][cC]-[^M]*.kbytesavail))
7244         echo OST kbytes available: ${AVAIL[@]}
7245         MAXI=0; MAXV=${AVAIL[0]}
7246         MINI=0; MINV=${AVAIL[0]}
7247         for ((i = 0; i < ${#AVAIL[@]}; i++)); do
7248                 #echo OST $i: ${AVAIL[i]}kb
7249                 if [[ ${AVAIL[i]} -gt $MAXV ]]; then
7250                         MAXV=${AVAIL[i]}; MAXI=$i
7251                 fi
7252                 if [[ ${AVAIL[i]} -lt $MINV ]]; then
7253                         MINV=${AVAIL[i]}; MINI=$i
7254                 fi
7255         done
7256         echo Min free space: OST $MINI: $MINV
7257         echo Max free space: OST $MAXI: $MAXV
7258 }
7259
7260 test_116a() { # was previously test_116()
7261         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7262         [[ $OSTCOUNT -lt 2 ]] && skip_env "$OSTCOUNT < 2 OSTs" && return
7263
7264         echo -n "Free space priority "
7265         do_facet $SINGLEMDS lctl get_param -n lo*.*-mdtlov.qos_prio_free |
7266                 head -n1
7267         declare -a AVAIL
7268         free_min_max
7269
7270         [ $MINV -eq 0 ] && skip "no free space in OST$MINI, skip" && return
7271         [ $MINV -gt 10000000 ] && skip "too much free space in OST$MINI, skip" \
7272                 && return
7273         trap simple_cleanup_common EXIT
7274
7275
7276         # Check if we need to generate uneven OSTs
7277         test_mkdir -p $DIR/$tdir/OST${MINI}
7278         local FILL=$(($MINV / 4))
7279         local DIFF=$(($MAXV - $MINV))
7280         local DIFF2=$(($DIFF * 100 / $MINV))
7281
7282         local threshold=$(do_facet $SINGLEMDS \
7283                 lctl get_param -n *.*MDT0000-mdtlov.qos_threshold_rr | head -n1)
7284         threshold=${threshold%%%}
7285         echo -n "Check for uneven OSTs: "
7286         echo -n "diff=${DIFF}KB (${DIFF2}%) must be > ${threshold}% ..."
7287
7288         if [[ $DIFF2 -gt $threshold ]]; then
7289                 echo "ok"
7290                 echo "Don't need to fill OST$MINI"
7291         else
7292                 # generate uneven OSTs. Write 2% over the QOS threshold value
7293                 echo "no"
7294                 DIFF=$(($threshold - $DIFF2 + 2))
7295                 DIFF2=$(( ($MINV * $DIFF)/100 ))
7296                 echo "Fill ${DIFF}% remaining space in OST${MINI} with ${DIFF2}KB"
7297                 $SETSTRIPE -i $MINI -c 1 $DIR/$tdir/OST${MINI} ||
7298                         error "setstripe failed"
7299                 DIFF=$(($DIFF2 / 2048))
7300                 i=0
7301                 while [ $i -lt $DIFF ]; do
7302                         i=$(($i + 1))
7303                         dd if=/dev/zero of=$DIR/$tdir/OST${MINI}/$tfile-$i \
7304                                 bs=2M count=1 2>/dev/null
7305                         echo -n .
7306                 done
7307                 echo .
7308                 sync
7309                 sleep_maxage
7310                 free_min_max
7311         fi
7312
7313         DIFF=$(($MAXV - $MINV))
7314         DIFF2=$(($DIFF * 100 / $MINV))
7315         echo -n "diff=${DIFF}=${DIFF2}% must be > ${threshold}% for QOS mode..."
7316         if [[ $DIFF2 -gt $threshold ]]; then
7317                 echo "ok"
7318         else
7319                 echo "failed - QOS mode won't be used"
7320                 skip "QOS imbalance criteria not met"
7321                 simple_cleanup_common
7322                 return
7323         fi
7324
7325         MINI1=$MINI; MINV1=$MINV
7326         MAXI1=$MAXI; MAXV1=$MAXV
7327
7328         # now fill using QOS
7329         $SETSTRIPE -c 1 $DIR/$tdir
7330         FILL=$(($FILL / 200))
7331         if [ $FILL -gt 600 ]; then
7332                 FILL=600
7333         fi
7334         echo "writing $FILL files to QOS-assigned OSTs"
7335         i=0
7336         while [ $i -lt $FILL ]; do
7337                 i=$((i + 1))
7338                 dd if=/dev/zero of=$DIR/$tdir/$tfile-$i bs=200k \
7339                         count=1 2>/dev/null
7340                 echo -n .
7341         done
7342         echo "wrote $i 200k files"
7343         sync
7344         sleep_maxage
7345
7346         echo "Note: free space may not be updated, so measurements might be off"
7347         free_min_max
7348         DIFF2=$(($MAXV - $MINV))
7349         echo "free space delta: orig $DIFF final $DIFF2"
7350         [ $DIFF2 -gt $DIFF ] && echo "delta got worse!"
7351         DIFF=$(($MINV1 - ${AVAIL[$MINI1]}))
7352         echo "Wrote ${DIFF}KB to smaller OST $MINI1"
7353         DIFF2=$(($MAXV1 - ${AVAIL[$MAXI1]}))
7354         echo "Wrote ${DIFF2}KB to larger OST $MAXI1"
7355         FILL=$(($DIFF2 * 100 / $DIFF - 100))
7356         [ $DIFF -gt 0 ] &&
7357                 echo "Wrote ${FILL}% more data to larger OST $MAXI1"
7358
7359         # Figure out which files were written where
7360         UUID=$(lctl get_param -n lov.${FSNAME}-clilov-*.target_obd |
7361                   awk '/'$MINI1': / {print $2; exit}')
7362         echo $UUID
7363         MINC=$($GETSTRIPE --ost $UUID $DIR/$tdir | grep $DIR | wc -l)
7364         echo "$MINC files created on smaller OST $MINI1"
7365         UUID=$(lctl get_param -n lov.${FSNAME}-clilov-*.target_obd |
7366                   awk '/'$MAXI1': / {print $2; exit}')
7367         echo $UUID
7368         MAXC=$($GETSTRIPE --ost $UUID $DIR/$tdir | grep $DIR | wc -l)
7369         echo "$MAXC files created on larger OST $MAXI1"
7370         FILL=$(($MAXC * 100 / $MINC - 100))
7371         [[ $MINC -gt 0 ]] &&
7372                 echo "Wrote ${FILL}% more files to larger OST $MAXI1"
7373         [[ $MAXC -gt $MINC ]] ||
7374                 error_ignore LU-9 "stripe QOS didn't balance free space"
7375         simple_cleanup_common
7376 }
7377 run_test 116a "stripe QOS: free space balance ==================="
7378
7379 test_116b() { # LU-2093
7380         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7381 #define OBD_FAIL_MDS_OSC_CREATE_FAIL     0x147
7382         local old_rr=$(do_facet $SINGLEMDS lctl get_param -n \
7383                        lo*.$FSNAME-MDT0000-mdtlov.qos_threshold_rr | head -1)
7384         [ -z "$old_rr" ] && skip "no QOS" && return 0
7385         do_facet $SINGLEMDS lctl set_param \
7386                 lo*.$FSNAME-MDT0000-mdtlov.qos_threshold_rr=0
7387         mkdir -p $DIR/$tdir
7388         do_facet $SINGLEMDS lctl set_param fail_loc=0x147
7389         createmany -o $DIR/$tdir/f- 20 || error "can't create"
7390         do_facet $SINGLEMDS lctl set_param fail_loc=0
7391         rm -rf $DIR/$tdir
7392         do_facet $SINGLEMDS lctl set_param \
7393                 lo*.$FSNAME-MDT0000-mdtlov.qos_threshold_rr=$old_rr
7394 }
7395 run_test 116b "QoS shouldn't LBUG if not enough OSTs found on the 2nd pass"
7396
7397 test_117() # bug 10891
7398 {
7399         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7400         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1
7401         #define OBD_FAIL_OST_SETATTR_CREDITS 0x21e
7402         lctl set_param fail_loc=0x21e
7403         > $DIR/$tfile || error "truncate failed"
7404         lctl set_param fail_loc=0
7405         echo "Truncate succeeded."
7406         rm -f $DIR/$tfile
7407 }
7408 run_test 117 "verify osd extend =========="
7409
7410 NO_SLOW_RESENDCOUNT=4
7411 export OLD_RESENDCOUNT=""
7412 set_resend_count () {
7413         local PROC_RESENDCOUNT="osc.${FSNAME}-OST*-osc-*.resend_count"
7414         OLD_RESENDCOUNT=$(lctl get_param -n $PROC_RESENDCOUNT | head -n1)
7415         lctl set_param -n $PROC_RESENDCOUNT $1
7416         echo resend_count is set to $(lctl get_param -n $PROC_RESENDCOUNT)
7417 }
7418
7419 # for reduce test_118* time (b=14842)
7420 [ "$SLOW" = "no" ] && set_resend_count $NO_SLOW_RESENDCOUNT
7421
7422 # Reset async IO behavior after error case
7423 reset_async() {
7424         FILE=$DIR/reset_async
7425
7426         # Ensure all OSCs are cleared
7427         $SETSTRIPE -c -1 $FILE
7428         dd if=/dev/zero of=$FILE bs=64k count=$OSTCOUNT
7429         sync
7430         rm $FILE
7431 }
7432
7433 test_118a() #bug 11710
7434 {
7435         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7436         reset_async
7437
7438         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
7439         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
7440         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
7441
7442         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
7443                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
7444                 return 1;
7445         fi
7446         rm -f $DIR/$tfile
7447 }
7448 run_test 118a "verify O_SYNC works =========="
7449
7450 test_118b()
7451 {
7452         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7453         remote_ost_nodsh && skip "remote OST with nodsh" && return
7454
7455         reset_async
7456
7457         #define OBD_FAIL_OST_ENOENT 0x217
7458         set_nodes_failloc "$(osts_nodes)" 0x217
7459         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
7460         RC=$?
7461         set_nodes_failloc "$(osts_nodes)" 0
7462         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
7463         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
7464                     grep -c writeback)
7465
7466         if [[ $RC -eq 0 ]]; then
7467                 error "Must return error due to dropped pages, rc=$RC"
7468                 return 1;
7469         fi
7470
7471         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
7472                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
7473                 return 1;
7474         fi
7475
7476         echo "Dirty pages not leaked on ENOENT"
7477
7478         # Due to the above error the OSC will issue all RPCs syncronously
7479         # until a subsequent RPC completes successfully without error.
7480         $MULTIOP $DIR/$tfile Ow4096yc
7481         rm -f $DIR/$tfile
7482
7483         return 0
7484 }
7485 run_test 118b "Reclaim dirty pages on fatal error =========="
7486
7487 test_118c()
7488 {
7489         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7490
7491         # for 118c, restore the original resend count, LU-1940
7492         [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] &&
7493                                 set_resend_count $OLD_RESENDCOUNT
7494         remote_ost_nodsh && skip "remote OST with nodsh" && return
7495
7496         reset_async
7497
7498         #define OBD_FAIL_OST_EROFS               0x216
7499         set_nodes_failloc "$(osts_nodes)" 0x216
7500
7501         # multiop should block due to fsync until pages are written
7502         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
7503         MULTIPID=$!
7504         sleep 1
7505
7506         if [[ `ps h -o comm -p $MULTIPID` != "multiop" ]]; then
7507                 error "Multiop failed to block on fsync, pid=$MULTIPID"
7508         fi
7509
7510         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
7511                     grep -c writeback)
7512         if [[ $WRITEBACK -eq 0 ]]; then
7513                 error "No page in writeback, writeback=$WRITEBACK"
7514         fi
7515
7516         set_nodes_failloc "$(osts_nodes)" 0
7517         wait $MULTIPID
7518         RC=$?
7519         if [[ $RC -ne 0 ]]; then
7520                 error "Multiop fsync failed, rc=$RC"
7521         fi
7522
7523         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
7524         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
7525                     grep -c writeback)
7526         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
7527                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
7528         fi
7529
7530         rm -f $DIR/$tfile
7531         echo "Dirty pages flushed via fsync on EROFS"
7532         return 0
7533 }
7534 run_test 118c "Fsync blocks on EROFS until dirty pages are flushed =========="
7535
7536 # continue to use small resend count to reduce test_118* time (b=14842)
7537 [ "$SLOW" = "no" ] && set_resend_count $NO_SLOW_RESENDCOUNT
7538
7539 test_118d()
7540 {
7541         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7542         remote_ost_nodsh && skip "remote OST with nodsh" && return
7543
7544         reset_async
7545
7546         #define OBD_FAIL_OST_BRW_PAUSE_BULK
7547         set_nodes_failloc "$(osts_nodes)" 0x214
7548         # multiop should block due to fsync until pages are written
7549         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
7550         MULTIPID=$!
7551         sleep 1
7552
7553         if [[ `ps h -o comm -p $MULTIPID` != "multiop" ]]; then
7554                 error "Multiop failed to block on fsync, pid=$MULTIPID"
7555         fi
7556
7557         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
7558                     grep -c writeback)
7559         if [[ $WRITEBACK -eq 0 ]]; then
7560                 error "No page in writeback, writeback=$WRITEBACK"
7561         fi
7562
7563         wait $MULTIPID || error "Multiop fsync failed, rc=$?"
7564         set_nodes_failloc "$(osts_nodes)" 0
7565
7566         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
7567         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
7568                     grep -c writeback)
7569         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
7570                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
7571         fi
7572
7573         rm -f $DIR/$tfile
7574         echo "Dirty pages gaurenteed flushed via fsync"
7575         return 0
7576 }
7577 run_test 118d "Fsync validation inject a delay of the bulk =========="
7578
7579 test_118f() {
7580         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7581         reset_async
7582
7583         #define OBD_FAIL_OSC_BRW_PREP_REQ2        0x40a
7584         lctl set_param fail_loc=0x8000040a
7585
7586         # Should simulate EINVAL error which is fatal
7587         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
7588         RC=$?
7589         if [[ $RC -eq 0 ]]; then
7590                 error "Must return error due to dropped pages, rc=$RC"
7591         fi
7592
7593         lctl set_param fail_loc=0x0
7594
7595         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
7596         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
7597         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
7598                     grep -c writeback)
7599         if [[ $LOCKED -ne 0 ]]; then
7600                 error "Locked pages remain in cache, locked=$LOCKED"
7601         fi
7602
7603         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
7604                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
7605         fi
7606
7607         rm -f $DIR/$tfile
7608         echo "No pages locked after fsync"
7609
7610         reset_async
7611         return 0
7612 }
7613 run_test 118f "Simulate unrecoverable OSC side error =========="
7614
7615 test_118g() {
7616         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7617         reset_async
7618
7619         #define OBD_FAIL_OSC_BRW_PREP_REQ        0x406
7620         lctl set_param fail_loc=0x406
7621
7622         # simulate local -ENOMEM
7623         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
7624         RC=$?
7625
7626         lctl set_param fail_loc=0
7627         if [[ $RC -eq 0 ]]; then
7628                 error "Must return error due to dropped pages, rc=$RC"
7629         fi
7630
7631         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
7632         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
7633         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
7634                         grep -c writeback)
7635         if [[ $LOCKED -ne 0 ]]; then
7636                 error "Locked pages remain in cache, locked=$LOCKED"
7637         fi
7638
7639         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
7640                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
7641         fi
7642
7643         rm -f $DIR/$tfile
7644         echo "No pages locked after fsync"
7645
7646         reset_async
7647         return 0
7648 }
7649 run_test 118g "Don't stay in wait if we got local -ENOMEM  =========="
7650
7651 test_118h() {
7652         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7653         remote_ost_nodsh && skip "remote OST with nodsh" && return
7654
7655         reset_async
7656
7657         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
7658         set_nodes_failloc "$(osts_nodes)" 0x20e
7659         # Should simulate ENOMEM error which is recoverable and should be handled by timeout
7660         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
7661         RC=$?
7662
7663         set_nodes_failloc "$(osts_nodes)" 0
7664         if [[ $RC -eq 0 ]]; then
7665                 error "Must return error due to dropped pages, rc=$RC"
7666         fi
7667
7668         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
7669         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
7670         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
7671                     grep -c writeback)
7672         if [[ $LOCKED -ne 0 ]]; then
7673                 error "Locked pages remain in cache, locked=$LOCKED"
7674         fi
7675
7676         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
7677                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
7678         fi
7679
7680         rm -f $DIR/$tfile
7681         echo "No pages locked after fsync"
7682
7683         return 0
7684 }
7685 run_test 118h "Verify timeout in handling recoverables errors  =========="
7686
7687 [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] && set_resend_count $OLD_RESENDCOUNT
7688
7689 test_118i() {
7690         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7691         remote_ost_nodsh && skip "remote OST with nodsh" && return
7692
7693         reset_async
7694
7695         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
7696         set_nodes_failloc "$(osts_nodes)" 0x20e
7697
7698         # Should simulate ENOMEM error which is recoverable and should be handled by timeout
7699         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
7700         PID=$!
7701         sleep 5
7702         set_nodes_failloc "$(osts_nodes)" 0
7703
7704         wait $PID
7705         RC=$?
7706         if [[ $RC -ne 0 ]]; then
7707                 error "got error, but should be not, rc=$RC"
7708         fi
7709
7710         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
7711         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
7712         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
7713         if [[ $LOCKED -ne 0 ]]; then
7714                 error "Locked pages remain in cache, locked=$LOCKED"
7715         fi
7716
7717         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
7718                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
7719         fi
7720
7721         rm -f $DIR/$tfile
7722         echo "No pages locked after fsync"
7723
7724         return 0
7725 }
7726 run_test 118i "Fix error before timeout in recoverable error  =========="
7727
7728 [ "$SLOW" = "no" ] && set_resend_count 4
7729
7730 test_118j() {
7731         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7732         remote_ost_nodsh && skip "remote OST with nodsh" && return
7733
7734         reset_async
7735
7736         #define OBD_FAIL_OST_BRW_WRITE_BULK2     0x220
7737         set_nodes_failloc "$(osts_nodes)" 0x220
7738
7739         # return -EIO from OST
7740         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
7741         RC=$?
7742         set_nodes_failloc "$(osts_nodes)" 0x0
7743         if [[ $RC -eq 0 ]]; then
7744                 error "Must return error due to dropped pages, rc=$RC"
7745         fi
7746
7747         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
7748         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
7749         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
7750         if [[ $LOCKED -ne 0 ]]; then
7751                 error "Locked pages remain in cache, locked=$LOCKED"
7752         fi
7753
7754         # in recoverable error on OST we want resend and stay until it finished
7755         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
7756                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
7757         fi
7758
7759         rm -f $DIR/$tfile
7760         echo "No pages locked after fsync"
7761
7762         return 0
7763 }
7764 run_test 118j "Simulate unrecoverable OST side error =========="
7765
7766 test_118k()
7767 {
7768         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7769         remote_ost_nodsh && skip "remote OSTs with nodsh" && return
7770
7771         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
7772         set_nodes_failloc "$(osts_nodes)" 0x20e
7773         test_mkdir -p $DIR/$tdir
7774
7775         for ((i=0;i<10;i++)); do
7776                 (dd if=/dev/zero of=$DIR/$tdir/$tfile-$i bs=1M count=10 || \
7777                         error "dd to $DIR/$tdir/$tfile-$i failed" )&
7778                 SLEEPPID=$!
7779                 sleep 0.500s
7780                 kill $SLEEPPID
7781                 wait $SLEEPPID
7782         done
7783
7784         set_nodes_failloc "$(osts_nodes)" 0
7785         rm -rf $DIR/$tdir
7786 }
7787 run_test 118k "bio alloc -ENOMEM and IO TERM handling ========="
7788
7789 test_118l()
7790 {
7791         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7792         # LU-646
7793         test_mkdir -p $DIR/$tdir
7794         $MULTIOP $DIR/$tdir Dy || error "fsync dir failed"
7795         rm -rf $DIR/$tdir
7796 }
7797 run_test 118l "fsync dir ========="
7798
7799 test_118m() # LU-3066
7800 {
7801         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7802         test_mkdir -p $DIR/$tdir
7803         $MULTIOP $DIR/$tdir DY || error "fdatasync dir failed"
7804         rm -rf $DIR/$tdir
7805 }
7806 run_test 118m "fdatasync dir ========="
7807
7808 [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] && set_resend_count $OLD_RESENDCOUNT
7809
7810 test_119a() # bug 11737
7811 {
7812         BSIZE=$((512 * 1024))
7813         directio write $DIR/$tfile 0 1 $BSIZE
7814         # We ask to read two blocks, which is more than a file size.
7815         # directio will indicate an error when requested and actual
7816         # sizes aren't equeal (a normal situation in this case) and
7817         # print actual read amount.
7818         NOB=`directio read $DIR/$tfile 0 2 $BSIZE | awk '/error/ {print $6}'`
7819         if [ "$NOB" != "$BSIZE" ]; then
7820                 error "read $NOB bytes instead of $BSIZE"
7821         fi
7822         rm -f $DIR/$tfile
7823 }
7824 run_test 119a "Short directIO read must return actual read amount"
7825
7826 test_119b() # bug 11737
7827 {
7828         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping 2-stripe test" && return
7829
7830         $SETSTRIPE -c 2 $DIR/$tfile || error "setstripe failed"
7831         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=1 || error "dd failed"
7832         sync
7833         $MULTIOP $DIR/$tfile oO_RDONLY:O_DIRECT:r$((2048 * 1024)) || \
7834                 error "direct read failed"
7835         rm -f $DIR/$tfile
7836 }
7837 run_test 119b "Sparse directIO read must return actual read amount"
7838
7839 test_119c() # bug 13099
7840 {
7841         BSIZE=1048576
7842         directio write $DIR/$tfile 3 1 $BSIZE || error "direct write failed"
7843         directio readhole $DIR/$tfile 0 2 $BSIZE || error "reading hole failed"
7844         rm -f $DIR/$tfile
7845 }
7846 run_test 119c "Testing for direct read hitting hole"
7847
7848 test_119d() # bug 15950
7849 {
7850         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7851         MAX_RPCS_IN_FLIGHT=`$LCTL get_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight`
7852         $LCTL set_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight 1
7853         BSIZE=1048576
7854         $SETSTRIPE $DIR/$tfile -i 0 -c 1 || error "setstripe failed"
7855         $DIRECTIO write $DIR/$tfile 0 1 $BSIZE || error "first directio failed"
7856         #define OBD_FAIL_OSC_DIO_PAUSE           0x40d
7857         lctl set_param fail_loc=0x40d
7858         $DIRECTIO write $DIR/$tfile 1 4 $BSIZE &
7859         pid_dio=$!
7860         sleep 1
7861         cat $DIR/$tfile > /dev/null &
7862         lctl set_param fail_loc=0
7863         pid_reads=$!
7864         wait $pid_dio
7865         log "the DIO writes have completed, now wait for the reads (should not block very long)"
7866         sleep 2
7867         [ -n "`ps h -p $pid_reads -o comm`" ] && \
7868         error "the read rpcs have not completed in 2s"
7869         rm -f $DIR/$tfile
7870         $LCTL set_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight $MAX_RPCS_IN_FLIGHT
7871 }
7872 run_test 119d "The DIO path should try to send a new rpc once one is completed"
7873
7874 test_120a() {
7875         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7876         test_mkdir -p $DIR/$tdir
7877         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
7878                skip "no early lock cancel on server" && return 0
7879
7880         lru_resize_disable mdc
7881         lru_resize_disable osc
7882         cancel_lru_locks mdc
7883         # asynchronous object destroy at MDT could cause bl ast to client
7884         cancel_lru_locks osc
7885
7886         stat $DIR/$tdir > /dev/null
7887         can1=$(do_facet $SINGLEMDS \
7888                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
7889                awk '/ldlm_cancel/ {print $2}')
7890         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
7891                awk '/ldlm_bl_callback/ {print $2}')
7892         test_mkdir -c1 $DIR/$tdir/d1
7893         can2=$(do_facet $SINGLEMDS \
7894                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
7895                awk '/ldlm_cancel/ {print $2}')
7896         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
7897                awk '/ldlm_bl_callback/ {print $2}')
7898         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
7899         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
7900         lru_resize_enable mdc
7901         lru_resize_enable osc
7902 }
7903 run_test 120a "Early Lock Cancel: mkdir test"
7904
7905 test_120b() {
7906         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7907         test_mkdir $DIR/$tdir
7908         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel)" ] && \
7909                skip "no early lock cancel on server" && return 0
7910         lru_resize_disable mdc
7911         lru_resize_disable osc
7912         cancel_lru_locks mdc
7913         stat $DIR/$tdir > /dev/null
7914         can1=$(do_facet $SINGLEMDS \
7915                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
7916                awk '/ldlm_cancel/ {print $2}')
7917         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
7918                awk '/ldlm_bl_callback/ {print $2}')
7919         touch $DIR/$tdir/f1
7920         can2=$(do_facet $SINGLEMDS \
7921                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
7922                awk '/ldlm_cancel/ {print $2}')
7923         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
7924                awk '/ldlm_bl_callback/ {print $2}')
7925         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
7926         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
7927         lru_resize_enable mdc
7928         lru_resize_enable osc
7929 }
7930 run_test 120b "Early Lock Cancel: create test"
7931
7932 test_120c() {
7933         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7934         test_mkdir -c1 $DIR/$tdir
7935         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel)" ] && \
7936                skip "no early lock cancel on server" && return 0
7937         lru_resize_disable mdc
7938         lru_resize_disable osc
7939         test_mkdir -p -c1 $DIR/$tdir/d1
7940         test_mkdir -p -c1 $DIR/$tdir/d2
7941         touch $DIR/$tdir/d1/f1
7942         cancel_lru_locks mdc
7943         stat $DIR/$tdir/d1 $DIR/$tdir/d2 $DIR/$tdir/d1/f1 > /dev/null
7944         can1=$(do_facet $SINGLEMDS \
7945                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
7946                awk '/ldlm_cancel/ {print $2}')
7947         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
7948                awk '/ldlm_bl_callback/ {print $2}')
7949         ln $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2
7950         can2=$(do_facet $SINGLEMDS \
7951                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
7952                awk '/ldlm_cancel/ {print $2}')
7953         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
7954                awk '/ldlm_bl_callback/ {print $2}')
7955         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
7956         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
7957         lru_resize_enable mdc
7958         lru_resize_enable osc
7959 }
7960 run_test 120c "Early Lock Cancel: link test"
7961
7962 test_120d() {
7963         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7964         test_mkdir -p -c1 $DIR/$tdir
7965         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel)" ] && \
7966                skip "no early lock cancel on server" && return 0
7967         lru_resize_disable mdc
7968         lru_resize_disable osc
7969         touch $DIR/$tdir
7970         cancel_lru_locks mdc
7971         stat $DIR/$tdir > /dev/null
7972         can1=$(do_facet $SINGLEMDS \
7973                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
7974                awk '/ldlm_cancel/ {print $2}')
7975         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
7976                awk '/ldlm_bl_callback/ {print $2}')
7977         chmod a+x $DIR/$tdir
7978         can2=$(do_facet $SINGLEMDS \
7979                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
7980                awk '/ldlm_cancel/ {print $2}')
7981         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
7982                awk '/ldlm_bl_callback/ {print $2}')
7983         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
7984         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
7985         lru_resize_enable mdc
7986         lru_resize_enable osc
7987 }
7988 run_test 120d "Early Lock Cancel: setattr test"
7989
7990 test_120e() {
7991         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7992         test_mkdir -p -c1 $DIR/$tdir
7993         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
7994                skip "no early lock cancel on server" && return 0
7995         lru_resize_disable mdc
7996         lru_resize_disable osc
7997         dd if=/dev/zero of=$DIR/$tdir/f1 count=1
7998         cancel_lru_locks mdc
7999         cancel_lru_locks osc
8000         dd if=$DIR/$tdir/f1 of=/dev/null
8001         stat $DIR/$tdir $DIR/$tdir/f1 > /dev/null
8002         # XXX client can not do early lock cancel of OST lock
8003         # during unlink (LU-4206), so cancel osc lock now.
8004         cancel_lru_locks osc
8005         can1=$(do_facet $SINGLEMDS \
8006                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8007                awk '/ldlm_cancel/ {print $2}')
8008         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8009                awk '/ldlm_bl_callback/ {print $2}')
8010         unlink $DIR/$tdir/f1
8011         sleep 5
8012         can2=$(do_facet $SINGLEMDS \
8013                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8014                awk '/ldlm_cancel/ {print $2}')
8015         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8016                awk '/ldlm_bl_callback/ {print $2}')
8017         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
8018         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
8019         lru_resize_enable mdc
8020         lru_resize_enable osc
8021 }
8022 run_test 120e "Early Lock Cancel: unlink test"
8023
8024 test_120f() {
8025         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8026         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
8027                skip "no early lock cancel on server" && return 0
8028         test_mkdir -p -c1 $DIR/$tdir
8029         lru_resize_disable mdc
8030         lru_resize_disable osc
8031         test_mkdir -p -c1 $DIR/$tdir/d1
8032         test_mkdir -p -c1 $DIR/$tdir/d2
8033         dd if=/dev/zero of=$DIR/$tdir/d1/f1 count=1
8034         dd if=/dev/zero of=$DIR/$tdir/d2/f2 count=1
8035         cancel_lru_locks mdc
8036         cancel_lru_locks osc
8037         dd if=$DIR/$tdir/d1/f1 of=/dev/null
8038         dd if=$DIR/$tdir/d2/f2 of=/dev/null
8039         stat $DIR/$tdir/d1 $DIR/$tdir/d2 $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2 > /dev/null
8040         # XXX client can not do early lock cancel of OST lock
8041         # during rename (LU-4206), so cancel osc lock now.
8042         cancel_lru_locks osc
8043         can1=$(do_facet $SINGLEMDS \
8044                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8045                awk '/ldlm_cancel/ {print $2}')
8046         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8047                awk '/ldlm_bl_callback/ {print $2}')
8048         mrename $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2
8049         sleep 5
8050         can2=$(do_facet $SINGLEMDS \
8051                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8052                awk '/ldlm_cancel/ {print $2}')
8053         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8054                awk '/ldlm_bl_callback/ {print $2}')
8055         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
8056         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
8057         lru_resize_enable mdc
8058         lru_resize_enable osc
8059 }
8060 run_test 120f "Early Lock Cancel: rename test"
8061
8062 test_120g() {
8063         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8064         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
8065                skip "no early lock cancel on server" && return 0
8066         lru_resize_disable mdc
8067         lru_resize_disable osc
8068         count=10000
8069         echo create $count files
8070         test_mkdir -p $DIR/$tdir
8071         cancel_lru_locks mdc
8072         cancel_lru_locks osc
8073         t0=`date +%s`
8074
8075         can0=$(do_facet $SINGLEMDS \
8076                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8077                awk '/ldlm_cancel/ {print $2}')
8078         blk0=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8079                awk '/ldlm_bl_callback/ {print $2}')
8080         createmany -o $DIR/$tdir/f $count
8081         sync
8082         can1=$(do_facet $SINGLEMDS \
8083                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8084                awk '/ldlm_cancel/ {print $2}')
8085         blk1=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8086                awk '/ldlm_bl_callback/ {print $2}')
8087         t1=$(date +%s)
8088         echo total: $((can1-can0)) cancels, $((blk1-blk0)) blockings
8089         echo rm $count files
8090         rm -r $DIR/$tdir
8091         sync
8092         can2=$(do_facet $SINGLEMDS \
8093                "$LCTL get_param -n ldlm.services.ldlm_canceld.stats" |
8094                awk '/ldlm_cancel/ {print $2}')
8095         blk2=$($LCTL get_param -n ldlm.services.ldlm_cbd.stats |
8096                awk '/ldlm_bl_callback/ {print $2}')
8097         t2=$(date +%s)
8098         echo total: $count removes in $((t2-t1))
8099         echo total: $((can2-can1)) cancels, $((blk2-blk1)) blockings
8100         sleep 2
8101         # wait for commitment of removal
8102         lru_resize_enable mdc
8103         lru_resize_enable osc
8104 }
8105 run_test 120g "Early Lock Cancel: performance test"
8106
8107 test_121() { #bug #10589
8108         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8109         rm -rf $DIR/$tfile
8110         writes=$(LANG=C dd if=/dev/zero of=$DIR/$tfile count=1 2>&1 | awk -F '+' '/out$/ {print $1}')
8111 #define OBD_FAIL_LDLM_CANCEL_RACE        0x310
8112         lctl set_param fail_loc=0x310
8113         cancel_lru_locks osc > /dev/null
8114         reads=$(LANG=C dd if=$DIR/$tfile of=/dev/null 2>&1 | awk -F '+' '/in$/ {print $1}')
8115         lctl set_param fail_loc=0
8116         [[ $reads -eq $writes ]] ||
8117                 error "read $reads blocks, must be $writes blocks"
8118 }
8119 run_test 121 "read cancel race ========="
8120
8121 test_123a() { # was test 123, statahead(bug 11401)
8122         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8123         SLOWOK=0
8124         if [ -z "$(grep "processor.*: 1" /proc/cpuinfo)" ]; then
8125             log "testing on UP system. Performance may be not as good as expected."
8126                         SLOWOK=1
8127         fi
8128
8129         rm -rf $DIR/$tdir
8130         test_mkdir -p $DIR/$tdir
8131         NUMFREE=$(df -i -P $DIR | tail -n 1 | awk '{ print $4 }')
8132         [[ $NUMFREE -gt 100000 ]] && NUMFREE=100000 || NUMFREE=$((NUMFREE-1000))
8133         MULT=10
8134         for ((i=100, j=0; i<=$NUMFREE; j=$i, i=$((i * MULT)) )); do
8135                 createmany -o $DIR/$tdir/$tfile $j $((i - j))
8136
8137                 max=`lctl get_param -n llite.*.statahead_max | head -n 1`
8138                 lctl set_param -n llite.*.statahead_max 0
8139                 lctl get_param llite.*.statahead_max
8140                 cancel_lru_locks mdc
8141                 cancel_lru_locks osc
8142                 stime=`date +%s`
8143                 time ls -l $DIR/$tdir | wc -l
8144                 etime=`date +%s`
8145                 delta=$((etime - stime))
8146                 log "ls $i files without statahead: $delta sec"
8147                 lctl set_param llite.*.statahead_max=$max
8148
8149                 swrong=`lctl get_param -n llite.*.statahead_stats | grep "statahead wrong:" | awk '{print $3}'`
8150                 lctl get_param -n llite.*.statahead_max | grep '[0-9]'
8151                 cancel_lru_locks mdc
8152                 cancel_lru_locks osc
8153                 stime=`date +%s`
8154                 time ls -l $DIR/$tdir | wc -l
8155                 etime=`date +%s`
8156                 delta_sa=$((etime - stime))
8157                 log "ls $i files with statahead: $delta_sa sec"
8158                 lctl get_param -n llite.*.statahead_stats
8159                 ewrong=`lctl get_param -n llite.*.statahead_stats | grep "statahead wrong:" | awk '{print $3}'`
8160
8161                 [[ $swrong -lt $ewrong ]] &&
8162                         log "statahead was stopped, maybe too many locks held!"
8163                 [[ $delta -eq 0 || $delta_sa -eq 0 ]] && continue
8164
8165                 if [ $((delta_sa * 100)) -gt $((delta * 105)) -a $delta_sa -gt $((delta + 2)) ]; then
8166                     max=`lctl get_param -n llite.*.statahead_max | head -n 1`
8167                     lctl set_param -n llite.*.statahead_max 0
8168                     lctl get_param llite.*.statahead_max
8169                     cancel_lru_locks mdc
8170                     cancel_lru_locks osc
8171                     stime=`date +%s`
8172                     time ls -l $DIR/$tdir | wc -l
8173                     etime=`date +%s`
8174                     delta=$((etime - stime))
8175                     log "ls $i files again without statahead: $delta sec"
8176                     lctl set_param llite.*.statahead_max=$max
8177                     if [ $((delta_sa * 100)) -gt $((delta * 105)) -a $delta_sa -gt $((delta + 2)) ]; then
8178                         if [  $SLOWOK -eq 0 ]; then
8179                                 error "ls $i files is slower with statahead!"
8180                         else
8181                                 log "ls $i files is slower with statahead!"
8182                         fi
8183                         break
8184                     fi
8185                 fi
8186
8187                 [ $delta -gt 20 ] && break
8188                 [ $delta -gt 8 ] && MULT=$((50 / delta))
8189                 [ "$SLOW" = "no" -a $delta -gt 5 ] && break
8190         done
8191         log "ls done"
8192
8193         stime=`date +%s`
8194         rm -r $DIR/$tdir
8195         sync
8196         etime=`date +%s`
8197         delta=$((etime - stime))
8198         log "rm -r $DIR/$tdir/: $delta seconds"
8199         log "rm done"
8200         lctl get_param -n llite.*.statahead_stats
8201 }
8202 run_test 123a "verify statahead work"
8203
8204 test_123b () { # statahead(bug 15027)
8205         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8206         test_mkdir -p $DIR/$tdir
8207         createmany -o $DIR/$tdir/$tfile-%d 1000
8208
8209         cancel_lru_locks mdc
8210         cancel_lru_locks osc
8211
8212 #define OBD_FAIL_MDC_GETATTR_ENQUEUE     0x803
8213         lctl set_param fail_loc=0x80000803
8214         ls -lR $DIR/$tdir > /dev/null
8215         log "ls done"
8216         lctl set_param fail_loc=0x0
8217         lctl get_param -n llite.*.statahead_stats
8218         rm -r $DIR/$tdir
8219         sync
8220
8221 }
8222 run_test 123b "not panic with network error in statahead enqueue (bug 15027)"
8223
8224 test_124a() {
8225         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8226         [ -z "$($LCTL get_param -n mdc.*.connect_flags | grep lru_resize)" ] &&
8227                 skip "no lru resize on server" && return 0
8228         local NR=2000
8229         test_mkdir -p $DIR/$tdir || error "failed to create $DIR/$tdir"
8230
8231         log "create $NR files at $DIR/$tdir"
8232         createmany -o $DIR/$tdir/f $NR ||
8233                 error "failed to create $NR files in $DIR/$tdir"
8234
8235         cancel_lru_locks mdc
8236         ls -l $DIR/$tdir > /dev/null
8237
8238         local NSDIR=""
8239         local LRU_SIZE=0
8240         for VALUE in $($LCTL get_param ldlm.namespaces.*mdc-*.lru_size); do
8241                 local PARAM=$(echo ${VALUE[0]} | cut -d "=" -f1)
8242                 LRU_SIZE=$($LCTL get_param -n $PARAM)
8243                 if [[ $LRU_SIZE -gt $(default_lru_size) ]]; then
8244                         NSDIR=$(echo $PARAM | cut -d "." -f1-3)
8245                         log "NSDIR=$NSDIR"
8246                         log "NS=$(basename $NSDIR)"
8247                         break
8248                 fi
8249         done
8250
8251         if [[ -z "$NSDIR" || $LRU_SIZE -lt $(default_lru_size) ]]; then
8252                 skip "Not enough cached locks created!"
8253                 return 0
8254         fi
8255         log "LRU=$LRU_SIZE"
8256
8257         local SLEEP=30
8258
8259         # We know that lru resize allows one client to hold $LIMIT locks
8260         # for 10h. After that locks begin to be killed by client.
8261         local MAX_HRS=10
8262         local LIMIT=$($LCTL get_param -n $NSDIR.pool.limit)
8263         log "LIMIT=$LIMIT"
8264         if [ $LIMIT -lt $LRU_SIZE ]; then
8265             skip "Limit is too small $LIMIT"
8266             return 0
8267         fi
8268
8269         # Make LVF so higher that sleeping for $SLEEP is enough to _start_
8270         # killing locks. Some time was spent for creating locks. This means
8271         # that up to the moment of sleep finish we must have killed some of
8272         # them (10-100 locks). This depends on how fast ther were created.
8273         # Many of them were touched in almost the same moment and thus will
8274         # be killed in groups.
8275         local LVF=$(($MAX_HRS * 60 * 60 / $SLEEP * $LIMIT / $LRU_SIZE))
8276
8277         # Use $LRU_SIZE_B here to take into account real number of locks
8278         # created in the case of CMD, LRU_SIZE_B != $NR in most of cases
8279         local LRU_SIZE_B=$LRU_SIZE
8280         log "LVF=$LVF"
8281         local OLD_LVF=$($LCTL get_param -n $NSDIR.pool.lock_volume_factor)
8282         log "OLD_LVF=$OLD_LVF"
8283         $LCTL set_param -n $NSDIR.pool.lock_volume_factor $LVF
8284
8285         # Let's make sure that we really have some margin. Client checks
8286         # cached locks every 10 sec.
8287         SLEEP=$((SLEEP+20))
8288         log "Sleep ${SLEEP} sec"
8289         local SEC=0
8290         while ((SEC<$SLEEP)); do
8291                 echo -n "..."
8292                 sleep 5
8293                 SEC=$((SEC+5))
8294                 LRU_SIZE=$($LCTL get_param -n $NSDIR/lru_size)
8295                 echo -n "$LRU_SIZE"
8296         done
8297         echo ""
8298         $LCTL set_param -n $NSDIR.pool.lock_volume_factor $OLD_LVF
8299         local LRU_SIZE_A=$($LCTL get_param -n $NSDIR.lru_size)
8300
8301         [[ $LRU_SIZE_B -gt $LRU_SIZE_A ]] || {
8302                 error "No locks dropped in ${SLEEP}s. LRU size: $LRU_SIZE_A"
8303                 unlinkmany $DIR/$tdir/f $NR
8304                 return
8305         }
8306
8307         log "Dropped "$((LRU_SIZE_B-LRU_SIZE_A))" locks in ${SLEEP}s"
8308         log "unlink $NR files at $DIR/$tdir"
8309         unlinkmany $DIR/$tdir/f $NR
8310 }
8311 run_test 124a "lru resize ======================================="
8312
8313 get_max_pool_limit()
8314 {
8315         local limit=$($LCTL get_param \
8316                       -n ldlm.namespaces.*-MDT0000-mdc-*.pool.limit)
8317         local max=0
8318         for l in $limit; do
8319                 if [[ $l -gt $max ]]; then
8320                         max=$l
8321                 fi
8322         done
8323         echo $max
8324 }
8325
8326 test_124b() {
8327         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8328         [ -z "$($LCTL get_param -n mdc.*.connect_flags | grep lru_resize)" ] &&
8329                 skip "no lru resize on server" && return 0
8330
8331         LIMIT=$(get_max_pool_limit)
8332
8333         NR=$(($(default_lru_size)*20))
8334         if [[ $NR -gt $LIMIT ]]; then
8335                 log "Limit lock number by $LIMIT locks"
8336                 NR=$LIMIT
8337         fi
8338         lru_resize_disable mdc
8339         test_mkdir -p $DIR/$tdir/disable_lru_resize ||
8340                 error "failed to create $DIR/$tdir/disable_lru_resize"
8341
8342         createmany -o $DIR/$tdir/disable_lru_resize/f $NR
8343         log "doing ls -la $DIR/$tdir/disable_lru_resize 3 times"
8344         cancel_lru_locks mdc
8345         stime=`date +%s`
8346         PID=""
8347         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
8348         PID="$PID $!"
8349         sleep 2
8350         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
8351         PID="$PID $!"
8352         sleep 2
8353         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
8354         PID="$PID $!"
8355         wait $PID
8356         etime=`date +%s`
8357         nolruresize_delta=$((etime-stime))
8358         log "ls -la time: $nolruresize_delta seconds"
8359         log "lru_size = $(lctl get_param -n ldlm.namespaces.*mdc*.lru_size)"
8360         unlinkmany $DIR/$tdir/disable_lru_resize/f $NR
8361
8362         lru_resize_enable mdc
8363         test_mkdir -p $DIR/$tdir/enable_lru_resize ||
8364                 error "failed to create $DIR/$tdir/enable_lru_resize"
8365
8366         createmany -o $DIR/$tdir/enable_lru_resize/f $NR
8367         log "doing ls -la $DIR/$tdir/enable_lru_resize 3 times"
8368         cancel_lru_locks mdc
8369         stime=`date +%s`
8370         PID=""
8371         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
8372         PID="$PID $!"
8373         sleep 2
8374         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
8375         PID="$PID $!"
8376         sleep 2
8377         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
8378         PID="$PID $!"
8379         wait $PID
8380         etime=`date +%s`
8381         lruresize_delta=$((etime-stime))
8382         log "ls -la time: $lruresize_delta seconds"
8383         log "lru_size = $(lctl get_param -n ldlm.namespaces.*mdc*.lru_size)"
8384
8385         if [ $lruresize_delta -gt $nolruresize_delta ]; then
8386                 log "ls -la is $(((lruresize_delta - $nolruresize_delta) * 100 / $nolruresize_delta))% slower with lru resize enabled"
8387         elif [ $nolruresize_delta -gt $lruresize_delta ]; then
8388                 log "ls -la is $(((nolruresize_delta - $lruresize_delta) * 100 / $nolruresize_delta))% faster with lru resize enabled"
8389         else
8390                 log "lru resize performs the same with no lru resize"
8391         fi
8392         unlinkmany $DIR/$tdir/enable_lru_resize/f $NR
8393 }
8394 run_test 124b "lru resize (performance test) ======================="
8395
8396 test_125() { # 13358
8397         [ -z "$(lctl get_param -n llite.*.client_type | grep local)" ] && skip "must run as local client" && return
8398         [ -z "$(lctl get_param -n mdc.*-mdc-*.connect_flags | grep acl)" ] && skip "must have acl enabled" && return
8399         [ -z "$(which setfacl)" ] && skip "must have setfacl tool" && return
8400         test_mkdir -p $DIR/d125 || error "mkdir failed"
8401         $SETSTRIPE -S 65536 -c -1 $DIR/d125 || error "setstripe failed"
8402         setfacl -R -m u:bin:rwx $DIR/d125 || error "setfacl $DIR/d125 failed"
8403         ls -ld $DIR/d125 || error "cannot access $DIR/d125"
8404 }
8405 run_test 125 "don't return EPROTO when a dir has a non-default striping and ACLs"
8406
8407 test_126() { # bug 12829/13455
8408         [ -z "$(lctl get_param -n llite.*.client_type | grep local)" ] && skip "must run as local client" && return
8409         [ "$UID" != 0 ] && skip_env "skipping $TESTNAME (must run as root)" && return
8410         $GSS && skip "must run as gss disabled" && return
8411
8412         $RUNAS -u 0 -g 1 touch $DIR/$tfile || error "touch failed"
8413         gid=`ls -n $DIR/$tfile | awk '{print $4}'`
8414         rm -f $DIR/$tfile
8415         [ $gid -eq "1" ] || error "gid is set to" $gid "instead of 1"
8416 }
8417 run_test 126 "check that the fsgid provided by the client is taken into account"
8418
8419 test_127a() { # bug 15521
8420         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8421         $SETSTRIPE -i 0 -c 1 $DIR/$tfile || error "setstripe failed"
8422         $LCTL set_param osc.*.stats=0
8423         FSIZE=$((2048 * 1024))
8424         dd if=/dev/zero of=$DIR/$tfile bs=$FSIZE count=1
8425         cancel_lru_locks osc
8426         dd if=$DIR/$tfile of=/dev/null bs=$FSIZE
8427
8428         $LCTL get_param osc.*0000-osc-*.stats | grep samples > $DIR/${tfile}.tmp
8429         while read NAME COUNT SAMP UNIT MIN MAX SUM SUMSQ; do
8430                 echo "got $COUNT $NAME"
8431                 [ ! $MIN ] && error "Missing min value for $NAME proc entry"
8432                 eval $NAME=$COUNT || error "Wrong proc format"
8433
8434                 case $NAME in
8435                         read_bytes|write_bytes)
8436                         [ $MIN -lt 4096 ] && error "min is too small: $MIN"
8437                         [ $MIN -gt $FSIZE ] && error "min is too big: $MIN"
8438                         [ $MAX -lt 4096 ] && error "max is too small: $MAX"
8439                         [ $MAX -gt $FSIZE ] && error "max is too big: $MAX"
8440                         [ $SUM -ne $FSIZE ] && error "sum is wrong: $SUM"
8441                         [ $SUMSQ -lt $(((FSIZE /4096) * (4096 * 4096))) ] &&
8442                                 error "sumsquare is too small: $SUMSQ"
8443                         [ $SUMSQ -gt $((FSIZE * FSIZE)) ] &&
8444                                 error "sumsquare is too big: $SUMSQ"
8445                         ;;
8446                         *) ;;
8447                 esac
8448         done < $DIR/${tfile}.tmp
8449
8450         #check that we actually got some stats
8451         [ "$read_bytes" ] || error "Missing read_bytes stats"
8452         [ "$write_bytes" ] || error "Missing write_bytes stats"
8453         [ "$read_bytes" != 0 ] || error "no read done"
8454         [ "$write_bytes" != 0 ] || error "no write done"
8455 }
8456 run_test 127a "verify the client stats are sane"
8457
8458 test_127b() { # bug LU-333
8459         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8460         $LCTL set_param llite.*.stats=0
8461         FSIZE=65536 # sized fixed to match PAGE_SIZE for most clients
8462         # perform 2 reads and writes so MAX is different from SUM.
8463         dd if=/dev/zero of=$DIR/$tfile bs=$FSIZE count=1
8464         dd if=/dev/zero of=$DIR/$tfile bs=$FSIZE count=1
8465         cancel_lru_locks osc
8466         dd if=$DIR/$tfile of=/dev/null bs=$FSIZE count=1
8467         dd if=$DIR/$tfile of=/dev/null bs=$FSIZE count=1
8468
8469         $LCTL get_param llite.*.stats | grep samples > $TMP/${tfile}.tmp
8470         while read NAME COUNT SAMP UNIT MIN MAX SUM SUMSQ; do
8471                 echo "got $COUNT $NAME"
8472                 eval $NAME=$COUNT || error "Wrong proc format"
8473
8474         case $NAME in
8475                 read_bytes)
8476                         [ $COUNT -ne 2 ] && error "count is not 2: $COUNT"
8477                         [ $MIN -ne $FSIZE ] && error "min is not $FSIZE: $MIN"
8478                         [ $MAX -ne $FSIZE ] && error "max is incorrect: $MAX"
8479                         [ $SUM -ne $((FSIZE * 2)) ] && error "sum is wrong: $SUM"
8480                         ;;
8481                 write_bytes)
8482                         [ $COUNT -ne 2 ] && error "count is not 2: $COUNT"
8483                         [ $MIN -ne $FSIZE ] && error "min is not $FSIZE: $MIN"
8484                         [ $MAX -ne $FSIZE ] && error "max is incorrect: $MAX"
8485                         [ $SUM -ne $((FSIZE * 2)) ] && error "sum is wrong: $SUM"
8486                         ;;
8487                         *) ;;
8488                 esac
8489         done < $TMP/${tfile}.tmp
8490
8491         #check that we actually got some stats
8492         [ "$read_bytes" ] || error "Missing read_bytes stats"
8493         [ "$write_bytes" ] || error "Missing write_bytes stats"
8494         [ "$read_bytes" != 0 ] || error "no read done"
8495         [ "$write_bytes" != 0 ] || error "no write done"
8496 }
8497 run_test 127b "verify the llite client stats are sane"
8498
8499 test_128() { # bug 15212
8500         touch $DIR/$tfile
8501         $LFS 2>&1 <<-EOF | tee $TMP/$tfile.log
8502                 find $DIR/$tfile
8503                 find $DIR/$tfile
8504         EOF
8505
8506         result=$(grep error $TMP/$tfile.log)
8507         rm -f $DIR/$tfile
8508         [ -z "$result" ] || error "consecutive find's under interactive lfs failed"
8509 }
8510 run_test 128 "interactive lfs for 2 consecutive find's"
8511
8512 set_dir_limits () {
8513         local mntdev
8514         local canondev
8515         local node
8516
8517         local LDPROC=/proc/fs/ldiskfs
8518         local facets=$(get_facets MDS)
8519
8520         for facet in ${facets//,/ }; do
8521                 canondev=$(ldiskfs_canon \
8522                            *.$(convert_facet2label $facet).mntdev $facet)
8523                 do_facet $facet "test -e $LDPROC/$canondev/max_dir_size" ||
8524                                                 LDPROC=/sys/fs/ldiskfs
8525                 do_facet $facet "echo $1 >$LDPROC/$canondev/max_dir_size"
8526         done
8527 }
8528
8529 test_129() {
8530         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8531         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
8532                 skip "Only applicable to ldiskfs-based MDTs"
8533                 return
8534         fi
8535         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8536         ENOSPC=28
8537         EFBIG=27
8538
8539         rm -rf $DIR/$tdir
8540         test_mkdir -p $DIR/$tdir
8541
8542         # block size of mds1
8543         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
8544         local MDSBLOCKSIZE=$($LCTL get_param -n mdc.*MDT0000*.blocksize)
8545         local MAX=$((MDSBLOCKSIZE * 3))
8546         set_dir_limits $MAX
8547         local I=$(stat -c%s "$DIR/$tdir")
8548         local J=0
8549         local STRIPE_COUNT=1
8550         [[ $MDSCOUNT -ge 2 ]] && STRIPE_COUNT=$($LFS getdirstripe -c $DIR/$tdir)
8551         MAX=$((MAX*STRIPE_COUNT))
8552         while [[ $I -le $MAX ]]; do
8553                 $MULTIOP $DIR/$tdir/$J Oc
8554                 rc=$?
8555                 #check two errors ENOSPC for new version of ext4 max_dir_size patch
8556                 #mainline kernel commit df981d03eeff7971ac7e6ff37000bfa702327ef1
8557                 #and EFBIG for previous versions
8558                 if [ $rc -eq $EFBIG -o $rc -eq $ENOSPC ]; then
8559                         set_dir_limits 0
8560                         echo "return code $rc received as expected"
8561                         multiop $DIR/$tdir/$J Oc ||
8562                                 error_exit "multiop failed w/o dir size limit"
8563
8564                         I=$(stat -c%s "$DIR/$tdir")
8565
8566                         if [ $(lustre_version_code $SINGLEMDS) -lt \
8567                                         $(version_code 2.4.51) ]
8568                         then
8569                                 [[ $I -eq $MAX ]] && return 0
8570                         else
8571                                 [[ $I -gt $MAX ]] && return 0
8572                         fi
8573                         error_exit "current dir size $I, previous limit $MAX"
8574                 elif [ $rc -ne 0 ]; then
8575                         set_dir_limits 0
8576                         error_exit "return code $rc received instead of expected " \
8577                                    "$EFBIG or $ENOSPC, files in dir $I"
8578                 fi
8579                 J=$((J+1))
8580                 I=$(stat -c%s "$DIR/$tdir")
8581         done
8582
8583         set_dir_limits 0
8584         error "exceeded dir size limit $MAX($MDSCOUNT) : $I bytes"
8585 }
8586 run_test 129 "test directory size limit ========================"
8587
8588 OLDIFS="$IFS"
8589 cleanup_130() {
8590         trap 0
8591         IFS="$OLDIFS"
8592 }
8593
8594 test_130a() {
8595         local filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
8596         [ -n "$filefrag_op" ] && skip_env "filefrag does not support FIEMAP" &&
8597                 return
8598
8599         trap cleanup_130 EXIT RETURN
8600
8601         local fm_file=$DIR/$tfile
8602         $SETSTRIPE -S 65536 -c 1 $fm_file || error "setstripe on $fm_file"
8603         dd if=/dev/zero of=$fm_file bs=65536 count=1 ||
8604                 error "dd failed for $fm_file"
8605
8606         # LU-1795: test filefrag/FIEMAP once, even if unsupported
8607         filefrag -ves $fm_file
8608         RC=$?
8609         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
8610                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
8611         [ $RC != 0 ] && error "filefrag $fm_file failed"
8612
8613         filefrag_op=$(filefrag -ve $fm_file | grep -A 100 "ext:" |
8614                       grep -v "ext:" | grep -v "found")
8615         lun=$($GETSTRIPE -i $fm_file)
8616
8617         start_blk=`echo $filefrag_op | cut -d: -f2 | cut -d. -f1`
8618         IFS=$'\n'
8619         tot_len=0
8620         for line in $filefrag_op
8621         do
8622                 frag_lun=`echo $line | cut -d: -f5`
8623                 ext_len=`echo $line | cut -d: -f4`
8624                 if (( $frag_lun != $lun )); then
8625                         cleanup_130
8626                         error "FIEMAP on 1-stripe file($fm_file) failed"
8627                         return
8628                 fi
8629                 (( tot_len += ext_len ))
8630         done
8631
8632         if (( lun != frag_lun || start_blk != 0 || tot_len != 64 )); then
8633                 cleanup_130
8634                 error "FIEMAP on 1-stripe file($fm_file) failed;"
8635                 return
8636         fi
8637
8638         cleanup_130
8639
8640         echo "FIEMAP on single striped file succeeded"
8641 }
8642 run_test 130a "FIEMAP (1-stripe file)"
8643
8644 test_130b() {
8645         [ "$OSTCOUNT" -lt "2" ] &&
8646                 skip_env "skipping FIEMAP on 2-stripe file test" && return
8647
8648         [ "$OSTCOUNT" -ge "10" ] &&
8649                 skip_env "skipping FIEMAP with >= 10 OSTs" && return
8650
8651         local filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
8652         [ -n "$filefrag_op" ] && skip_env "filefrag does not support FIEMAP" &&
8653                 return
8654
8655         trap cleanup_130 EXIT RETURN
8656
8657         local fm_file=$DIR/$tfile
8658         $SETSTRIPE -S 65536 -c 2 $fm_file || error "setstripe on $fm_file"
8659         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
8660                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
8661
8662         dd if=/dev/zero of=$fm_file bs=1M count=2 ||
8663                 error "dd failed on $fm_file"
8664
8665         filefrag -ves $fm_file || error "filefrag $fm_file failed"
8666         filefrag_op=$(filefrag -ve $fm_file | grep -A 100 "ext:" |
8667                       grep -v "ext:" | grep -v "found")
8668
8669         last_lun=$(echo $filefrag_op | cut -d: -f5)
8670
8671         IFS=$'\n'
8672         tot_len=0
8673         num_luns=1
8674         for line in $filefrag_op
8675         do
8676                 frag_lun=`echo $line | cut -d: -f5`
8677                 ext_len=`echo $line | cut -d: -f4`
8678                 if (( $frag_lun != $last_lun )); then
8679                         if (( tot_len != 1024 )); then
8680                                 cleanup_130
8681                                 error "FIEMAP on $fm_file failed; returned len $tot_len for OST $last_lun instead of 256"
8682                                 return
8683                         else
8684                                 (( num_luns += 1 ))
8685                                 tot_len=0
8686                         fi
8687                 fi
8688                 (( tot_len += ext_len ))
8689                 last_lun=$frag_lun
8690         done
8691         if (( num_luns != 2 || tot_len != 1024 )); then
8692                 cleanup_130
8693                 error "FIEMAP on $fm_file failed; returned wrong number of luns or wrong len for OST $last_lun"
8694                 return
8695         fi
8696
8697         cleanup_130
8698
8699         echo "FIEMAP on 2-stripe file succeeded"
8700 }
8701 run_test 130b "FIEMAP (2-stripe file)"
8702
8703 test_130c() {
8704         [ "$OSTCOUNT" -lt "2" ] &&
8705                 skip_env "skipping FIEMAP on 2-stripe file" && return
8706
8707         [ "$OSTCOUNT" -ge "10" ] &&
8708                 skip_env "skipping FIEMAP with >= 10 OSTs" && return
8709
8710         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
8711         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP" &&
8712                 return
8713
8714         trap cleanup_130 EXIT RETURN
8715
8716         local fm_file=$DIR/$tfile
8717         $SETSTRIPE -S 65536 -c 2 $fm_file || error "setstripe on $fm_file"
8718         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
8719                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
8720
8721         dd if=/dev/zero of=$fm_file seek=1 bs=1M count=1 || error "dd failed on $fm_file"
8722
8723         filefrag -ves $fm_file || error "filefrag $fm_file failed"
8724         filefrag_op=`filefrag -ve $fm_file | grep -A 100 "ext:" | grep -v "ext:" | grep -v "found"`
8725
8726         last_lun=`echo $filefrag_op | cut -d: -f5`
8727
8728         IFS=$'\n'
8729         tot_len=0
8730         num_luns=1
8731         for line in $filefrag_op
8732         do
8733                 frag_lun=`echo $line | cut -d: -f5`
8734                 ext_len=`echo $line | cut -d: -f4`
8735                 if (( $frag_lun != $last_lun )); then
8736                         logical=`echo $line | cut -d: -f2 | cut -d. -f1`
8737                         if (( logical != 512 )); then
8738                                 cleanup_130
8739                                 error "FIEMAP on $fm_file failed; returned logical start for lun $logical instead of 512"
8740                                 return
8741                         fi
8742                         if (( tot_len != 512 )); then
8743                                 cleanup_130
8744                                 error "FIEMAP on $fm_file failed; returned len $tot_len for OST $last_lun instead of 1024"
8745                                 return
8746                         else
8747                                 (( num_luns += 1 ))
8748                                 tot_len=0
8749                         fi
8750                 fi
8751                 (( tot_len += ext_len ))
8752                 last_lun=$frag_lun
8753         done
8754         if (( num_luns != 2 || tot_len != 512 )); then
8755                 cleanup_130
8756                 error "FIEMAP on $fm_file failed; returned wrong number of luns or wrong len for OST $last_lun"
8757                 return
8758         fi
8759
8760         cleanup_130
8761
8762         echo "FIEMAP on 2-stripe file with hole succeeded"
8763 }
8764 run_test 130c "FIEMAP (2-stripe file with hole)"
8765
8766 test_130d() {
8767         [ "$OSTCOUNT" -lt "3" ] && skip_env "skipping FIEMAP on N-stripe file test" && return
8768
8769         [ "$OSTCOUNT" -ge "10" ] &&
8770                 skip_env "skipping FIEMAP with >= 10 OSTs" && return
8771
8772         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
8773         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP" && return
8774
8775         trap cleanup_130 EXIT RETURN
8776
8777         local fm_file=$DIR/$tfile
8778         $SETSTRIPE -S 65536 -c $OSTCOUNT $fm_file||error "setstripe on $fm_file"
8779         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
8780                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
8781
8782         local actual_stripecnt=$($GETSTRIPE -c $fm_file)
8783         dd if=/dev/zero of=$fm_file bs=1M count=$actual_stripecnt ||
8784                 error "dd failed on $fm_file"
8785
8786         filefrag -ves $fm_file || error "filefrag $fm_file failed"
8787         filefrag_op=`filefrag -ve $fm_file | grep -A 100 "ext:" |
8788                 grep -v "ext:" | grep -v "found"`
8789
8790         last_lun=`echo $filefrag_op | cut -d: -f5`
8791
8792         IFS=$'\n'
8793         tot_len=0
8794         num_luns=1
8795         for line in $filefrag_op
8796         do
8797                 frag_lun=`echo $line | cut -d: -f5`
8798                 ext_len=`echo $line | cut -d: -f4`
8799                 if (( $frag_lun != $last_lun )); then
8800                         if (( tot_len != 1024 )); then
8801                                 cleanup_130
8802                                 error "FIEMAP on $fm_file failed; returned len $tot_len for OST $last_lun instead of 1024"
8803                                 return
8804                         else
8805                                 (( num_luns += 1 ))
8806                                 tot_len=0
8807                         fi
8808                 fi
8809                 (( tot_len += ext_len ))
8810                 last_lun=$frag_lun
8811         done
8812         if (( num_luns != actual_stripecnt || tot_len != 1024 )); then
8813                 cleanup_130
8814                 error "FIEMAP on $fm_file failed; returned wrong number of luns or wrong len for OST $last_lun"
8815                 return
8816         fi
8817
8818         cleanup_130
8819
8820         echo "FIEMAP on N-stripe file succeeded"
8821 }
8822 run_test 130d "FIEMAP (N-stripe file)"
8823
8824 test_130e() {
8825         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping continuation FIEMAP test" && return
8826
8827         [ "$OSTCOUNT" -ge "10" ] &&
8828                 skip_env "skipping FIEMAP with >= 10 OSTs" && return
8829
8830         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
8831         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP" && return
8832
8833         trap cleanup_130 EXIT RETURN
8834
8835         local fm_file=$DIR/$tfile
8836         $SETSTRIPE -S 131072 -c 2 $fm_file || error "setstripe on $fm_file"
8837         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
8838                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
8839
8840         NUM_BLKS=512
8841         EXPECTED_LEN=$(( (NUM_BLKS / 2) * 64 ))
8842         for ((i = 0; i < $NUM_BLKS; i++))
8843         do
8844                 dd if=/dev/zero of=$fm_file count=1 bs=64k seek=$((2*$i)) conv=notrunc > /dev/null 2>&1
8845         done
8846
8847         filefrag -ves $fm_file || error "filefrag $fm_file failed"
8848         filefrag_op=`filefrag -ve $fm_file | grep -A 12000 "ext:" | grep -v "ext:" | grep -v "found"`
8849
8850         last_lun=`echo $filefrag_op | cut -d: -f5`
8851
8852         IFS=$'\n'
8853         tot_len=0
8854         num_luns=1
8855         for line in $filefrag_op
8856         do
8857                 frag_lun=`echo $line | cut -d: -f5`
8858                 ext_len=`echo $line | cut -d: -f4`
8859                 if (( $frag_lun != $last_lun )); then
8860                         if (( tot_len != $EXPECTED_LEN )); then
8861                                 cleanup_130
8862                                 error "FIEMAP on $fm_file failed; returned len $tot_len for OST $last_lun instead of $EXPECTED_LEN"
8863                                 return
8864                         else
8865                                 (( num_luns += 1 ))
8866                                 tot_len=0
8867                         fi
8868                 fi
8869                 (( tot_len += ext_len ))
8870                 last_lun=$frag_lun
8871         done
8872         if (( num_luns != 2 || tot_len != $EXPECTED_LEN )); then
8873                 cleanup_130
8874                 error "FIEMAP on $fm_file failed; returned wrong number of luns or wrong len for OST $last_lun"
8875                 return
8876         fi
8877
8878         cleanup_130
8879
8880         echo "FIEMAP with continuation calls succeeded"
8881 }
8882 run_test 130e "FIEMAP (test continuation FIEMAP calls)"
8883
8884 # Test for writev/readv
8885 test_131a() {
8886         rwv -f $DIR/$tfile -w -n 3 524288 1048576 1572864 || \
8887         error "writev test failed"
8888         rwv -f $DIR/$tfile -r -v -n 2 1572864 1048576 || \
8889         error "readv failed"
8890         rm -f $DIR/$tfile
8891 }
8892 run_test 131a "test iov's crossing stripe boundary for writev/readv"
8893
8894 test_131b() {
8895         rwv -f $DIR/$tfile -w -a -n 3 524288 1048576 1572864 || \
8896         error "append writev test failed"
8897         rwv -f $DIR/$tfile -w -a -n 2 1572864 1048576 || \
8898         error "append writev test failed"
8899         rm -f $DIR/$tfile
8900 }
8901 run_test 131b "test append writev"
8902
8903 test_131c() {
8904         rwv -f $DIR/$tfile -w -d -n 1 1048576 || return 0
8905         error "NOT PASS"
8906 }
8907 run_test 131c "test read/write on file w/o objects"
8908
8909 test_131d() {
8910         rwv -f $DIR/$tfile -w -n 1 1572864
8911         NOB=`rwv -f $DIR/$tfile -r -n 3 524288 524288 1048576 | awk '/error/ {print $6}'`
8912         if [ "$NOB" != 1572864 ]; then
8913                 error "Short read filed: read $NOB bytes instead of 1572864"
8914         fi
8915         rm -f $DIR/$tfile
8916 }
8917 run_test 131d "test short read"
8918
8919 test_131e() {
8920         rwv -f $DIR/$tfile -w -s 1048576 -n 1 1048576
8921         rwv -f $DIR/$tfile -r -z -s 0 -n 1 524288 || \
8922         error "read hitting hole failed"
8923         rm -f $DIR/$tfile
8924 }
8925 run_test 131e "test read hitting hole"
8926
8927 check_stats() {
8928         local res
8929         local count
8930         case $1 in
8931         $SINGLEMDS) res=`do_facet $SINGLEMDS $LCTL get_param mdt.$FSNAME-MDT0000.md_stats | grep "$2"`
8932                  ;;
8933         ost) res=`do_facet ost1 $LCTL get_param obdfilter.$FSNAME-OST0000.stats | grep "$2"`
8934                  ;;
8935         *) error "Wrong argument $1" ;;
8936         esac
8937         echo $res
8938         [ -z "$res" ] && error "The counter for $2 on $1 was not incremented"
8939         # if the argument $3 is zero, it means any stat increment is ok.
8940         if [[ $3 -gt 0 ]]; then
8941                 count=$(echo $res | awk '{ print $2 }')
8942                 [[ $count -ne $3 ]] &&
8943                         error "The $2 counter on $1 is wrong - expected $3"
8944         fi
8945 }
8946
8947 test_133a() {
8948         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8949         remote_ost_nodsh && skip "remote OST with nodsh" && return
8950         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8951
8952         do_facet $SINGLEMDS $LCTL list_param mdt.*.rename_stats ||
8953                 { skip "MDS doesn't support rename stats"; return; }
8954         local testdir=$DIR/${tdir}/stats_testdir
8955         mkdir -p $DIR/${tdir}
8956
8957         # clear stats.
8958         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
8959         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
8960
8961         # verify mdt stats first.
8962         mkdir ${testdir} || error "mkdir failed"
8963         check_stats $SINGLEMDS "mkdir" 1
8964         touch ${testdir}/${tfile} || "touch failed"
8965         check_stats $SINGLEMDS "open" 1
8966         check_stats $SINGLEMDS "close" 1
8967         mknod ${testdir}/${tfile}-pipe p || "mknod failed"
8968         check_stats $SINGLEMDS "mknod" 1
8969         rm -f ${testdir}/${tfile}-pipe || "pipe remove failed"
8970         check_stats $SINGLEMDS "unlink" 1
8971         rm -f ${testdir}/${tfile} || error "file remove failed"
8972         check_stats $SINGLEMDS "unlink" 2
8973
8974         # remove working dir and check mdt stats again.
8975         rmdir ${testdir} || error "rmdir failed"
8976         check_stats $SINGLEMDS "rmdir" 1
8977
8978         local testdir1=$DIR/${tdir}/stats_testdir1
8979         mkdir -p ${testdir}
8980         mkdir -p ${testdir1}
8981         touch ${testdir1}/test1
8982         mv ${testdir1}/test1 ${testdir} || error "file crossdir rename"
8983         check_stats $SINGLEMDS "crossdir_rename" 1
8984
8985         mv ${testdir}/test1 ${testdir}/test0 || error "file samedir rename"
8986         check_stats $SINGLEMDS "samedir_rename" 1
8987
8988         rm -rf $DIR/${tdir}
8989 }
8990 run_test 133a "Verifying MDT stats ========================================"
8991
8992 test_133b() {
8993         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8994         remote_ost_nodsh && skip "remote OST with nodsh" && return
8995         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8996         local testdir=$DIR/${tdir}/stats_testdir
8997         mkdir -p ${testdir} || error "mkdir failed"
8998         touch ${testdir}/${tfile} || "touch failed"
8999         cancel_lru_locks mdc
9000
9001         # clear stats.
9002         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
9003         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
9004
9005         # extra mdt stats verification.
9006         chmod 444 ${testdir}/${tfile} || error "chmod failed"
9007         check_stats $SINGLEMDS "setattr" 1
9008         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
9009         if [ $(lustre_version_code $SINGLEMDS) -ne $(version_code 2.2.0) ]
9010         then            # LU-1740
9011                 ls -l ${testdir}/${tfile} > /dev/null|| error "ls failed"
9012                 check_stats $SINGLEMDS "getattr" 1
9013         fi
9014         $LFS df || error "lfs failed"
9015         check_stats $SINGLEMDS "statfs" 1
9016
9017         rm -rf $DIR/${tdir}
9018 }
9019 run_test 133b "Verifying extra MDT stats =================================="
9020
9021 test_133c() {
9022         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9023         remote_ost_nodsh && skip "remote OST with nodsh" && return
9024         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9025         local testdir=$DIR/${tdir}/stats_testdir
9026         test_mkdir -p ${testdir} || error "mkdir failed"
9027
9028         # verify obdfilter stats.
9029         $SETSTRIPE -c 1 -i 0 ${testdir}/${tfile}
9030         sync
9031         cancel_lru_locks osc
9032         wait_delete_completed
9033
9034         # clear stats.
9035         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
9036         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
9037
9038         dd if=/dev/zero of=${testdir}/${tfile} conv=notrunc bs=512k count=1 || error "dd failed"
9039         sync
9040         cancel_lru_locks osc
9041         check_stats ost "write" 1
9042
9043         dd if=${testdir}/${tfile} of=/dev/null bs=1k count=1 || error "dd failed"
9044         check_stats ost "read" 1
9045
9046         > ${testdir}/${tfile} || error "truncate failed"
9047         check_stats ost "punch" 1
9048
9049         rm -f ${testdir}/${tfile} || error "file remove failed"
9050         wait_delete_completed
9051         check_stats ost "destroy" 1
9052
9053         rm -rf $DIR/${tdir}
9054 }
9055 run_test 133c "Verifying OST stats ========================================"
9056
9057 order_2() {
9058         local value=$1
9059         local orig=$value
9060         local order=1
9061
9062         while [ $value -ge 2 ]; do
9063                 order=$((order*2))
9064                 value=$((value/2))
9065         done
9066
9067         if [ $orig -gt $order ]; then
9068                 order=$((order*2))
9069         fi
9070         echo $order
9071 }
9072
9073 size_in_KMGT() {
9074     local value=$1
9075     local size=('K' 'M' 'G' 'T');
9076     local i=0
9077     local size_string=$value
9078
9079     while [ $value -ge 1024 ]; do
9080         if [ $i -gt 3 ]; then
9081             #T is the biggest unit we get here, if that is bigger,
9082             #just return XXXT
9083             size_string=${value}T
9084             break
9085         fi
9086         value=$((value >> 10))
9087         if [ $value -lt 1024 ]; then
9088             size_string=${value}${size[$i]}
9089             break
9090         fi
9091         i=$((i + 1))
9092     done
9093
9094     echo $size_string
9095 }
9096
9097 get_rename_size() {
9098     local size=$1
9099     local context=${2:-.}
9100     local sample=$(do_facet $SINGLEMDS $LCTL get_param mdt.*.rename_stats |
9101                 grep -A1 $context |
9102                 awk '/ '${size}'/ {print $4}' | sed -e "s/,//g")
9103     echo $sample
9104 }
9105
9106 test_133d() {
9107         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9108         remote_ost_nodsh && skip "remote OST with nodsh" && return
9109         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9110         do_facet $SINGLEMDS $LCTL list_param mdt.*.rename_stats ||
9111         { skip "MDS doesn't support rename stats"; return; }
9112
9113         local testdir1=$DIR/${tdir}/stats_testdir1
9114         local testdir2=$DIR/${tdir}/stats_testdir2
9115
9116         do_facet $SINGLEMDS $LCTL set_param mdt.*.rename_stats=clear
9117
9118         mkdir -p ${testdir1} || error "mkdir failed"
9119         mkdir -p ${testdir2} || error "mkdir failed"
9120
9121         createmany -o $testdir1/test 512 || error "createmany failed"
9122
9123         # check samedir rename size
9124         mv ${testdir1}/test0 ${testdir1}/test_0
9125
9126         local testdir1_size=$(ls -l $DIR/${tdir} |
9127                 awk '/stats_testdir1/ {print $5}')
9128         local testdir2_size=$(ls -l $DIR/${tdir} |
9129                 awk '/stats_testdir2/ {print $5}')
9130
9131         testdir1_size=$(order_2 $testdir1_size)
9132         testdir2_size=$(order_2 $testdir2_size)
9133
9134         testdir1_size=$(size_in_KMGT $testdir1_size)
9135         testdir2_size=$(size_in_KMGT $testdir2_size)
9136
9137         echo "source rename dir size: ${testdir1_size}"
9138         echo "target rename dir size: ${testdir2_size}"
9139
9140         local cmd="do_facet $SINGLEMDS $LCTL get_param mdt.*.rename_stats"
9141         eval $cmd || error "$cmd failed"
9142         local samedir=$($cmd | grep 'same_dir')
9143         local same_sample=$(get_rename_size $testdir1_size)
9144         [ -z "$samedir" ] && error "samedir_rename_size count error"
9145         [[ $same_sample -eq 1 ]] ||
9146                 error "samedir_rename_size error $same_sample"
9147         echo "Check same dir rename stats success"
9148
9149         do_facet $SINGLEMDS $LCTL set_param mdt.*.rename_stats=clear
9150
9151         # check crossdir rename size
9152         mv ${testdir1}/test_0 ${testdir2}/test_0
9153
9154         testdir1_size=$(ls -l $DIR/${tdir} |
9155                 awk '/stats_testdir1/ {print $5}')
9156         testdir2_size=$(ls -l $DIR/${tdir} |
9157                 awk '/stats_testdir2/ {print $5}')
9158
9159         testdir1_size=$(order_2 $testdir1_size)
9160         testdir2_size=$(order_2 $testdir2_size)
9161
9162         testdir1_size=$(size_in_KMGT $testdir1_size)
9163         testdir2_size=$(size_in_KMGT $testdir2_size)
9164
9165         echo "source rename dir size: ${testdir1_size}"
9166         echo "target rename dir size: ${testdir2_size}"
9167
9168         eval $cmd || error "$cmd failed"
9169         local crossdir=$($cmd | grep 'crossdir')
9170         local src_sample=$(get_rename_size $testdir1_size crossdir_src)
9171         local tgt_sample=$(get_rename_size $testdir2_size crossdir_tgt)
9172         [ -z "$crossdir" ] && error "crossdir_rename_size count error"
9173         [[ $src_sample -eq 1 ]] ||
9174                 error "crossdir_rename_size error $src_sample"
9175         [[ $tgt_sample -eq 1 ]] ||
9176                 error "crossdir_rename_size error $tgt_sample"
9177         echo "Check cross dir rename stats success"
9178         rm -rf $DIR/${tdir}
9179 }
9180 run_test 133d "Verifying rename_stats ========================================"
9181
9182 test_133e() {
9183         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9184         remote_ost_nodsh && skip "remote OST with nodsh" && return
9185         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9186         local testdir=$DIR/${tdir}/stats_testdir
9187         local ctr f0 f1 bs=32768 count=42 sum
9188
9189         mkdir -p ${testdir} || error "mkdir failed"
9190
9191         $SETSTRIPE -c 1 -i 0 ${testdir}/${tfile}
9192
9193         for ctr in {write,read}_bytes; do
9194                 sync
9195                 cancel_lru_locks osc
9196
9197                 do_facet ost1 $LCTL set_param -n \
9198                         "obdfilter.*.exports.clear=clear"
9199
9200                 if [ $ctr = write_bytes ]; then
9201                         f0=/dev/zero
9202                         f1=${testdir}/${tfile}
9203                 else
9204                         f0=${testdir}/${tfile}
9205                         f1=/dev/null
9206                 fi
9207
9208                 dd if=$f0 of=$f1 conv=notrunc bs=$bs count=$count || \
9209                         error "dd failed"
9210                 sync
9211                 cancel_lru_locks osc
9212
9213                 sum=$(do_facet ost1 $LCTL get_param \
9214                         "obdfilter.*.exports.*.stats" |
9215                         awk -v ctr=$ctr 'BEGIN { sum = 0 }
9216                                 $1 == ctr { sum += $7 }
9217                                 END { printf("%0.0f", sum) }')
9218
9219                 if ((sum != bs * count)); then
9220                         error "Bad $ctr sum, expected $((bs * count)), got $sum"
9221                 fi
9222         done
9223
9224         rm -rf $DIR/${tdir}
9225 }
9226 run_test 133e "Verifying OST {read,write}_bytes nid stats ================="
9227
9228 test_133f() {
9229         local proc_dirs
9230
9231         local dirs="/proc/fs/lustre/ /proc/sys/lnet/ /proc/sys/lustre/ \
9232 /sys/fs/lustre/ /sys/fs/lnet/"
9233         local dir
9234         for dir in $dirs; do
9235                 if [ -d $dir ]; then
9236                         proc_dirs="$proc_dirs $dir"
9237                 fi
9238         done
9239
9240         local facet
9241
9242         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9243         remote_ost_nodsh && skip "remote OST with nodsh" && return
9244         # First without trusting modes.
9245         find $proc_dirs -exec cat '{}' \; &> /dev/null
9246
9247         # Second verifying readability.
9248         find $proc_dirs \
9249                 -type f \
9250                 -exec cat '{}' \; &> /dev/null ||
9251                         error "proc file read failed"
9252
9253         for facet in $SINGLEMDS ost1; do
9254                 do_facet $facet find $proc_dirs \
9255                         ! -name req_history \
9256                         -exec cat '{}' \\\; &> /dev/null
9257
9258                 do_facet $facet find $proc_dirs \
9259                         ! -name req_history \
9260                         -type f \
9261                         -exec cat '{}' \\\; &> /dev/null ||
9262                                 error "proc file read failed"
9263         done
9264 }
9265 run_test 133f "Check for LBUGs/Oopses/unreadable files in /proc"
9266
9267 test_133g() {
9268         local proc_dirs
9269
9270         local dirs="/proc/fs/lustre/ /proc/sys/lnet/ /proc/sys/lustre/ \
9271 /sys/fs/lustre/ /sys/fs/lnet/"
9272         local dir
9273         for dir in $dirs; do
9274                 if [ -d $dir ]; then
9275                         proc_dirs="$proc_dirs $dir"
9276                 fi
9277         done
9278
9279         local facet
9280
9281         # Second verifying readability.
9282         find $proc_dirs \
9283                 -type f \
9284                 -not -name force_lbug \
9285                 -not -name changelog_mask \
9286                 -exec badarea_io '{}' \; &> /dev/null ||
9287                 error "find $proc_dirs failed"
9288
9289         [ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.5.54) ] &&
9290                 skip "Too old lustre on MDS" && return
9291
9292         [ $(lustre_version_code ost1) -le $(version_code 2.5.54) ] &&
9293                 skip "Too old lustre on ost1" && return
9294
9295         for facet in $SINGLEMDS ost1; do
9296                 do_facet $facet find $proc_dirs \
9297                         -type f \
9298                         -not -name force_lbug \
9299                         -not -name changelog_mask \
9300                         -exec badarea_io '{}' \\\; &> /dev/null ||
9301                 error "$facet find $proc_dirs failed"
9302
9303         done
9304
9305         # remount the FS in case writes/reads /proc break the FS
9306         cleanup || error "failed to unmount"
9307         setup || error "failed to setup"
9308         true
9309 }
9310 run_test 133g "Check for Oopses on bad io area writes/reads in /proc"
9311
9312 test_140() { #bug-17379
9313         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9314         test_mkdir -p $DIR/$tdir || error "Creating dir $DIR/$tdir"
9315         cd $DIR/$tdir || error "Changing to $DIR/$tdir"
9316         cp /usr/bin/stat . || error "Copying stat to $DIR/$tdir"
9317
9318         # VFS limits max symlink depth to 5(4KSTACK) or 7(8KSTACK) or 8
9319         # For kernel > 3.5, bellow only tests consecutive symlink (MAX 40)
9320         local i=0
9321         while i=`expr $i + 1`; do
9322                 test_mkdir -p $i || error "Creating dir $i"
9323                 cd $i || error "Changing to $i"
9324                 ln -s ../stat stat || error "Creating stat symlink"
9325                 # Read the symlink until ELOOP present,
9326                 # not LBUGing the system is considered success,
9327                 # we didn't overrun the stack.
9328                 $OPENFILE -f O_RDONLY stat >/dev/null 2>&1; ret=$?
9329                 [ $ret -ne 0 ] && {
9330                         if [ $ret -eq 40 ]; then
9331                                 break  # -ELOOP
9332                         else
9333                                 error "Open stat symlink"
9334                                 return
9335                         fi
9336                 }
9337         done
9338         i=`expr $i - 1`
9339         echo "The symlink depth = $i"
9340         [ $i -eq 5 -o $i -eq 7 -o $i -eq 8 -o $i -eq 40 ] ||
9341                                         error "Invalid symlink depth"
9342
9343         # Test recursive symlink
9344         ln -s symlink_self symlink_self
9345         $OPENFILE -f O_RDONLY symlink_self >/dev/null 2>&1; ret=$?
9346         echo "open symlink_self returns $ret"
9347         [ $ret -eq 40 ] || error "recursive symlink doesn't return -ELOOP"
9348 }
9349 run_test 140 "Check reasonable stack depth (shouldn't LBUG) ===="
9350
9351 test_150() {
9352         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9353         local TF="$TMP/$tfile"
9354
9355         dd if=/dev/urandom of=$TF bs=6096 count=1 || error "dd failed"
9356         cp $TF $DIR/$tfile
9357         cancel_lru_locks osc
9358         cmp $TF $DIR/$tfile || error "$TMP/$tfile $DIR/$tfile differ"
9359         remount_client $MOUNT
9360         df -P $MOUNT
9361         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (remount)"
9362
9363         $TRUNCATE $TF 6000
9364         $TRUNCATE $DIR/$tfile 6000
9365         cancel_lru_locks osc
9366         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (truncate1)"
9367
9368         echo "12345" >>$TF
9369         echo "12345" >>$DIR/$tfile
9370         cancel_lru_locks osc
9371         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (append1)"
9372
9373         echo "12345" >>$TF
9374         echo "12345" >>$DIR/$tfile
9375         cancel_lru_locks osc
9376         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (append2)"
9377
9378         rm -f $TF
9379         true
9380 }
9381 run_test 150 "truncate/append tests"
9382
9383 #LU-2902 roc_hit was not able to read all values from lproc
9384 function roc_hit_init() {
9385         local list=$(comma_list $(osts_nodes))
9386         local dir=$DIR/$tdir-check
9387         local file=$dir/file
9388         local BEFORE
9389         local AFTER
9390         local idx
9391
9392         test_mkdir -p $dir
9393         #use setstripe to do a write to every ost
9394         for i in $(seq 0 $((OSTCOUNT-1))); do
9395                 $SETSTRIPE -c 1 -i $i $dir || error "$SETSTRIPE $file failed"
9396                 dd if=/dev/urandom of=$file bs=4k count=4 2>&1 > /dev/null
9397                 idx=$(printf %04x $i)
9398                 BEFORE=$(get_osd_param $list *OST*$idx stats |
9399                         awk '$1 == "cache_access" {sum += $7}
9400                                 END { printf("%0.0f", sum) }')
9401
9402                 cancel_lru_locks osc
9403                 cat $file >/dev/null
9404
9405                 AFTER=$(get_osd_param $list *OST*$idx stats |
9406                         awk '$1 == "cache_access" {sum += $7}
9407                                 END { printf("%0.0f", sum) }')
9408
9409                 echo BEFORE:$BEFORE AFTER:$AFTER
9410                 if ! let "AFTER - BEFORE == 4"; then
9411                         rm -rf $dir
9412                         error "roc_hit is not safe to use"
9413                 fi
9414                 rm $file
9415         done
9416
9417         rm -rf $dir
9418 }
9419
9420 function roc_hit() {
9421         local list=$(comma_list $(osts_nodes))
9422         echo $(get_osd_param $list '' stats |
9423                 awk '$1 == "cache_hit" {sum += $7}
9424                         END { printf("%0.0f", sum) }')
9425 }
9426
9427 function set_cache() {
9428         local on=1
9429
9430         if [ "$2" == "off" ]; then
9431                 on=0;
9432         fi
9433         local list=$(comma_list $(osts_nodes))
9434         set_osd_param $list '' $1_cache_enable $on
9435
9436         cancel_lru_locks osc
9437 }
9438
9439 test_151() {
9440         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9441         remote_ost_nodsh && skip "remote OST with nodsh" && return
9442
9443         local CPAGES=3
9444         local list=$(comma_list $(osts_nodes))
9445
9446         # check whether obdfilter is cache capable at all
9447         if ! get_osd_param $list '' read_cache_enable >/dev/null; then
9448                 echo "not cache-capable obdfilter"
9449                 return 0
9450         fi
9451
9452         # check cache is enabled on all obdfilters
9453         if get_osd_param $list '' read_cache_enable | grep 0; then
9454                 echo "oss cache is disabled"
9455                 return 0
9456         fi
9457
9458         set_osd_param $list '' writethrough_cache_enable 1
9459
9460         # check write cache is enabled on all obdfilters
9461         if get_osd_param $list '' writethrough_cache_enable | grep 0; then
9462                 echo "oss write cache is NOT enabled"
9463                 return 0
9464         fi
9465
9466         roc_hit_init
9467
9468         #define OBD_FAIL_OBD_NO_LRU  0x609
9469         do_nodes $list $LCTL set_param fail_loc=0x609
9470
9471         # pages should be in the case right after write
9472         dd if=/dev/urandom of=$DIR/$tfile bs=4k count=$CPAGES ||
9473                 error "dd failed"
9474
9475         local BEFORE=$(roc_hit)
9476         cancel_lru_locks osc
9477         cat $DIR/$tfile >/dev/null
9478         local AFTER=$(roc_hit)
9479
9480         do_nodes $list $LCTL set_param fail_loc=0
9481
9482         if ! let "AFTER - BEFORE == CPAGES"; then
9483                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
9484         fi
9485
9486         # the following read invalidates the cache
9487         cancel_lru_locks osc
9488         set_osd_param $list '' read_cache_enable 0
9489         cat $DIR/$tfile >/dev/null
9490
9491         # now data shouldn't be found in the cache
9492         BEFORE=$(roc_hit)
9493         cancel_lru_locks osc
9494         cat $DIR/$tfile >/dev/null
9495         AFTER=$(roc_hit)
9496         if let "AFTER - BEFORE != 0"; then
9497                 error "IN CACHE: before: $BEFORE, after: $AFTER"
9498         fi
9499
9500         set_osd_param $list '' read_cache_enable 1
9501         rm -f $DIR/$tfile
9502 }
9503 run_test 151 "test cache on oss and controls ==============================="
9504
9505 test_152() {
9506         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9507         local TF="$TMP/$tfile"
9508
9509         # simulate ENOMEM during write
9510 #define OBD_FAIL_OST_NOMEM      0x226
9511         lctl set_param fail_loc=0x80000226
9512         dd if=/dev/urandom of=$TF bs=6096 count=1 || error "dd failed"
9513         cp $TF $DIR/$tfile
9514         sync || error "sync failed"
9515         lctl set_param fail_loc=0
9516
9517         # discard client's cache
9518         cancel_lru_locks osc
9519
9520         # simulate ENOMEM during read
9521         lctl set_param fail_loc=0x80000226
9522         cmp $TF $DIR/$tfile || error "cmp failed"
9523         lctl set_param fail_loc=0
9524
9525         rm -f $TF
9526 }
9527 run_test 152 "test read/write with enomem ============================"
9528
9529 test_153() {
9530         $MULTIOP $DIR/$tfile Ow4096Ycu || error "multiop failed"
9531 }
9532 run_test 153 "test if fdatasync does not crash ======================="
9533
9534 dot_lustre_fid_permission_check() {
9535         local fid=$1
9536         local ffid=$MOUNT/.lustre/fid/$fid
9537         local test_dir=$2
9538
9539         echo "stat fid $fid"
9540         stat $ffid > /dev/null || error "stat $ffid failed."
9541         echo "touch fid $fid"
9542         touch $ffid || error "touch $ffid failed."
9543         echo "write to fid $fid"
9544         cat /etc/hosts > $ffid || error "write $ffid failed."
9545         echo "read fid $fid"
9546         diff /etc/hosts $ffid || error "read $ffid failed."
9547         echo "append write to fid $fid"
9548         cat /etc/hosts >> $ffid || error "append write $ffid failed."
9549         echo "rename fid $fid"
9550         mv $ffid $test_dir/$tfile.1 &&
9551                 error "rename $ffid to $tfile.1 should fail."
9552         touch $test_dir/$tfile.1
9553         mv $test_dir/$tfile.1 $ffid &&
9554                 error "rename $tfile.1 to $ffid should fail."
9555         rm -f $test_dir/$tfile.1
9556         echo "truncate fid $fid"
9557         $TRUNCATE $ffid 777 || error "truncate $ffid failed."
9558         if [ $MDSCOUNT -lt 2 ]; then #FIXME when cross-MDT hard link is working
9559                 echo "link fid $fid"
9560                 ln -f $ffid $test_dir/tfile.lnk || error "link $ffid failed."
9561         fi
9562         if [ -n $(lctl get_param -n mdc.*-mdc-*.connect_flags | grep acl) ]; then
9563                 echo "setfacl fid $fid"
9564                 setfacl -R -m u:bin:rwx $ffid || error "setfacl $ffid failed."
9565                 echo "getfacl fid $fid"
9566                 getfacl $ffid >/dev/null || error "getfacl $ffid failed."
9567         fi
9568         echo "unlink fid $fid"
9569         unlink $MOUNT/.lustre/fid/$fid && error "unlink $ffid should fail."
9570         echo "mknod fid $fid"
9571         mknod $ffid c 1 3 && error "mknod $ffid should fail."
9572
9573         fid=[0xf00000400:0x1:0x0]
9574         ffid=$MOUNT/.lustre/fid/$fid
9575
9576         echo "stat non-exist fid $fid"
9577         stat $ffid > /dev/null && error "stat non-exist $ffid should fail."
9578         echo "write to non-exist fid $fid"
9579         cat /etc/hosts > $ffid && error "write non-exist $ffid should fail."
9580         echo "link new fid $fid"
9581         ln $test_dir/$tfile $ffid && error "link $ffid should fail."
9582
9583         mkdir -p $test_dir/$tdir
9584         touch $test_dir/$tdir/$tfile
9585         fid=$($LFS path2fid $test_dir/$tdir)
9586         rc=$?
9587         [ $rc -ne 0 ] &&
9588                 error "error: could not get fid for $test_dir/$dir/$tfile."
9589
9590         ffid=$MOUNT/.lustre/fid/$fid
9591
9592         echo "ls $fid"
9593         ls $ffid > /dev/null || error "ls $ffid failed."
9594         echo "touch $fid/$tfile.1"
9595         touch $ffid/$tfile.1 || error "touch $ffid/$tfile.1 failed."
9596
9597         echo "touch $MOUNT/.lustre/fid/$tfile"
9598         touch $MOUNT/.lustre/fid/$tfile && \
9599                 error "touch $MOUNT/.lustre/fid/$tfile should fail."
9600
9601         echo "setxattr to $MOUNT/.lustre/fid"
9602         setfattr -n trusted.name1 -v value1 $MOUNT/.lustre/fid
9603
9604         echo "listxattr for $MOUNT/.lustre/fid"
9605         getfattr -d -m "^trusted" $MOUNT/.lustre/fid
9606
9607         echo "delxattr from $MOUNT/.lustre/fid"
9608         setfattr -x trusted.name1 $MOUNT/.lustre/fid
9609
9610         echo "touch invalid fid: $MOUNT/.lustre/fid/[0x200000400:0x2:0x3]"
9611         touch $MOUNT/.lustre/fid/[0x200000400:0x2:0x3] &&
9612                 error "touch invalid fid should fail."
9613
9614         echo "touch non-normal fid: $MOUNT/.lustre/fid/[0x1:0x2:0x0]"
9615         touch $MOUNT/.lustre/fid/[0x1:0x2:0x0] &&
9616                 error "touch non-normal fid should fail."
9617
9618         echo "rename $tdir to $MOUNT/.lustre/fid"
9619         mrename $test_dir/$tdir $MOUNT/.lustre/fid &&
9620                 error "rename to $MOUNT/.lustre/fid should fail."
9621
9622         if [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.51) ]
9623         then            # LU-3547
9624                 local old_obf_mode=$(stat --format="%a" $DIR/.lustre/fid)
9625                 local new_obf_mode=777
9626
9627                 echo "change mode of $DIR/.lustre/fid to $new_obf_mode"
9628                 chmod $new_obf_mode $DIR/.lustre/fid ||
9629                         error "chmod $new_obf_mode $DIR/.lustre/fid failed"
9630
9631                 local obf_mode=$(stat --format=%a $DIR/.lustre/fid)
9632                 [ $obf_mode -eq $new_obf_mode ] ||
9633                         error "stat $DIR/.lustre/fid returned wrong mode $obf_mode"
9634
9635                 echo "restore mode of $DIR/.lustre/fid to $old_obf_mode"
9636                 chmod $old_obf_mode $DIR/.lustre/fid ||
9637                         error "chmod $old_obf_mode $DIR/.lustre/fid failed"
9638         fi
9639
9640         $OPENFILE -f O_LOV_DELAY_CREATE:O_CREAT $test_dir/$tfile-2
9641         fid=$($LFS path2fid $test_dir/$tfile-2)
9642
9643         if [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.50) ]
9644         then # LU-5424
9645                 echo "cp /etc/passwd $MOUNT/.lustre/fid/$fid"
9646                 cp /etc/passwd $MOUNT/.lustre/fid/$fid ||
9647                         error "create lov data thru .lustre failed"
9648         fi
9649         echo "cp /etc/passwd $test_dir/$tfile-2"
9650         cp /etc/passwd $test_dir/$tfile-2 ||
9651                 error "copy to $test_dir/$tfile-2 failed."
9652         echo "diff /etc/passwd $MOUNT/.lustre/fid/$fid"
9653         diff /etc/passwd $MOUNT/.lustre/fid/$fid ||
9654                 error "diff /etc/passwd $MOUNT/.lustre/fid/$fid failed."
9655
9656         rm -rf $test_dir/tfile.lnk
9657         rm -rf $test_dir/$tfile-2
9658 }
9659
9660 test_154A() {
9661         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.1) ]] &&
9662                 skip "Need MDS version at least 2.4.1" && return
9663
9664         touch $DIR/$tfile
9665         local FID=$($LFS path2fid $DIR/$tfile)
9666         [ -z "$FID" ] && error "path2fid unable to get $DIR/$tfile FID"
9667
9668         # check that we get the same pathname back
9669         local FOUND=$($LFS fid2path $MOUNT "$FID")
9670         [ -z "$FOUND" ] && error "fid2path unable to get $FID path"
9671         [ "$FOUND" != "$DIR/$tfile" ] &&
9672                 error "fid2path(path2fid($DIR/$tfile)) = $FOUND != $DIR/$tfile"
9673
9674         rm -rf $DIR/$tfile
9675 }
9676 run_test 154A "lfs path2fid and fid2path basic checks"
9677
9678 test_154a() {
9679         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9680         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ]] ||
9681                 { skip "Need MDS version at least 2.2.51"; return 0; }
9682         [ -z "$(which setfacl)" ] && skip "must have setfacl tool" && return
9683
9684         cp /etc/hosts $DIR/$tfile
9685
9686         fid=$($LFS path2fid $DIR/$tfile)
9687         rc=$?
9688         [ $rc -ne 0 ] && error "error: could not get fid for $DIR/$tfile."
9689
9690         dot_lustre_fid_permission_check "$fid" $DIR ||
9691                 error "dot lustre permission check $fid failed"
9692
9693         rm -rf $MOUNT/.lustre && error ".lustre is not allowed to be unlinked"
9694
9695         touch $MOUNT/.lustre/file &&
9696                 error "creation is not allowed under .lustre"
9697
9698         mkdir $MOUNT/.lustre/dir &&
9699                 error "mkdir is not allowed under .lustre"
9700
9701         rm -rf $DIR/$tfile
9702 }
9703 run_test 154a "Open-by-FID"
9704
9705 test_154b() {
9706         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9707         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ]] ||
9708                 { skip "Need MDS version at least 2.2.51"; return 0; }
9709
9710         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
9711
9712         local remote_dir=$DIR/$tdir/remote_dir
9713         local MDTIDX=1
9714         local rc=0
9715
9716         mkdir -p $DIR/$tdir
9717         $LFS mkdir -i $MDTIDX $remote_dir ||
9718                 error "create remote directory failed"
9719
9720         cp /etc/hosts $remote_dir/$tfile
9721
9722         fid=$($LFS path2fid $remote_dir/$tfile)
9723         rc=$?
9724         [ $rc -ne 0 ] && error "error: could not get fid for $remote_dir/$tfile"
9725
9726         dot_lustre_fid_permission_check "$fid" $remote_dir ||
9727                 error "dot lustre permission check $fid failed"
9728         rm -rf $DIR/$tdir
9729 }
9730 run_test 154b "Open-by-FID for remote directory"
9731
9732 test_154c() {
9733         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.1) ]] &&
9734                 skip "Need MDS version at least 2.4.1" && return
9735
9736         touch $DIR/$tfile.1 $DIR/$tfile.2 $DIR/$tfile.3
9737         local FID1=$($LFS path2fid $DIR/$tfile.1)
9738         local FID2=$($LFS path2fid $DIR/$tfile.2)
9739         local FID3=$($LFS path2fid $DIR/$tfile.3)
9740
9741         local N=1
9742         $LFS path2fid $DIR/$tfile.[123] | while read PATHNAME FID; do
9743                 [ "$PATHNAME" = "$DIR/$tfile.$N:" ] ||
9744                         error "path2fid pathname $PATHNAME != $DIR/$tfile.$N:"
9745                 local want=FID$N
9746                 [ "$FID" = "${!want}" ] ||
9747                         error "path2fid $PATHNAME FID $FID != FID$N ${!want}"
9748                 N=$((N + 1))
9749         done
9750
9751         $LFS fid2path $MOUNT "$FID1" "$FID2" "$FID3" | while read PATHNAME;
9752         do
9753                 [ "$PATHNAME" = "$DIR/$tfile.$N" ] ||
9754                         error "fid2path pathname $PATHNAME != $DIR/$tfile.$N:"
9755                 N=$((N + 1))
9756         done
9757 }
9758 run_test 154c "lfs path2fid and fid2path multiple arguments"
9759
9760 test_154d() {
9761         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.5.53) ]] &&
9762                 skip "Need MDS version at least 2.5.53" && return
9763
9764         if remote_mds; then
9765                 nid=$($LCTL list_nids | sed  "s/\./\\\./g")
9766         else
9767                 nid="0@lo"
9768         fi
9769         local proc_ofile="mdt.*.exports.'$nid'.open_files"
9770         local fd
9771         local cmd
9772
9773         rm -f $DIR/$tfile
9774         touch $DIR/$tfile
9775
9776         local fid=$($LFS path2fid $DIR/$tfile)
9777         # Open the file
9778         fd=$(free_fd)
9779         cmd="exec $fd<$DIR/$tfile"
9780         eval $cmd
9781         local fid_list=$(do_facet $SINGLEMDS $LCTL get_param $proc_ofile)
9782         echo "$fid_list" | grep "$fid"
9783         rc=$?
9784
9785         cmd="exec $fd>/dev/null"
9786         eval $cmd
9787         if [ $rc -ne 0 ]; then
9788                 error "FID $fid not found in open files list $fid_list"
9789         fi
9790 }
9791 run_test 154d "Verify open file fid"
9792
9793 test_154e()
9794 {
9795         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.6.50) ]] &&
9796                 skip "Need MDS version at least 2.6.50" && return
9797
9798         if ls -a $MOUNT | grep -q '^\.lustre$'; then
9799                 error ".lustre returned by readdir"
9800         fi
9801 }
9802 run_test 154e ".lustre is not returned by readdir"
9803
9804 test_154f() {
9805         # create parent directory on a single MDT to avoid cross-MDT hardlinks
9806         test_mkdir -p -c1 $DIR/$tdir/d
9807         # test dirs inherit from its stripe
9808         mkdir -p $DIR/$tdir/d/foo1 || error "mkdir error"
9809         mkdir -p $DIR/$tdir/d/foo2 || error "mkdir error"
9810         cp /etc/hosts $DIR/$tdir/d/foo1/$tfile
9811         ln $DIR/$tdir/d/foo1/$tfile $DIR/$tdir/d/foo2/link
9812         touch $DIR/f
9813
9814         # get fid of parents
9815         local FID0=$($LFS path2fid $DIR/$tdir/d)
9816         local FID1=$($LFS path2fid $DIR/$tdir/d/foo1)
9817         local FID2=$($LFS path2fid $DIR/$tdir/d/foo2)
9818         local FID3=$($LFS path2fid $DIR)
9819
9820         # check that path2fid --parents returns expected <parent_fid>/name
9821         # 1) test for a directory (single parent)
9822         local parent=$($LFS path2fid --parents $DIR/$tdir/d/foo1)
9823         [ "$parent" == "$FID0/foo1" ] ||
9824                 error "expected parent: $FID0/foo1, got: $parent"
9825
9826         # 2) test for a file with nlink > 1 (multiple parents)
9827         parent=$($LFS path2fid --parents $DIR/$tdir/d/foo1/$tfile)
9828         echo "$parent" | grep -F "$FID1/$tfile" ||
9829                 error "$FID1/$tfile not returned in parent list"
9830         echo "$parent" | grep -F "$FID2/link" ||
9831                 error "$FID2/link not returned in parent list"
9832
9833         # 3) get parent by fid
9834         local file_fid=$($LFS path2fid $DIR/$tdir/d/foo1/$tfile)
9835         parent=$($LFS path2fid --parents $MOUNT/.lustre/fid/$file_fid)
9836         echo "$parent" | grep -F "$FID1/$tfile" ||
9837                 error "$FID1/$tfile not returned in parent list (by fid)"
9838         echo "$parent" | grep -F "$FID2/link" ||
9839                 error "$FID2/link not returned in parent list (by fid)"
9840
9841         # 4) test for entry in root directory
9842         parent=$($LFS path2fid --parents $DIR/f)
9843         echo "$parent" | grep -F "$FID3/f" ||
9844                 error "$FID3/f not returned in parent list"
9845
9846         # 5) test it on root directory
9847         [ -z "$($LFS path2fid --parents $MOUNT 2>/dev/null)" ] ||
9848                 error "$MOUNT should not have parents"
9849
9850         # enable xattr caching and check that linkea is correctly updated
9851         local save="$TMP/$TESTSUITE-$TESTNAME.parameters"
9852         save_lustre_params client "llite.*.xattr_cache" > $save
9853         lctl set_param llite.*.xattr_cache 1
9854
9855         # 6.1) linkea update on rename
9856         mv $DIR/$tdir/d/foo1/$tfile $DIR/$tdir/d/foo2/$tfile.moved
9857
9858         # get parents by fid
9859         parent=$($LFS path2fid --parents $MOUNT/.lustre/fid/$file_fid)
9860         # foo1 should no longer be returned in parent list
9861         echo "$parent" | grep -F "$FID1" &&
9862                 error "$FID1 should no longer be in parent list"
9863         # the new path should appear
9864         echo "$parent" | grep -F "$FID2/$tfile.moved" ||
9865                 error "$FID2/$tfile.moved is not in parent list"
9866
9867         # 6.2) linkea update on unlink
9868         rm -f $DIR/$tdir/d/foo2/link
9869         parent=$($LFS path2fid --parents $MOUNT/.lustre/fid/$file_fid)
9870         # foo2/link should no longer be returned in parent list
9871         echo "$parent" | grep -F "$FID2/link" &&
9872                 error "$FID2/link should no longer be in parent list"
9873         true
9874
9875         rm -f $DIR/f
9876         restore_lustre_params < $save
9877 }
9878 run_test 154f "get parent fids by reading link ea"
9879
9880 test_154g()
9881 {
9882         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.92) ]] ||
9883                 { skip "Need MDS version at least 2.6.92"; return 0; }
9884
9885         mkdir -p $DIR/$tdir
9886         llapi_fid_test -d $DIR/$tdir
9887 }
9888 run_test 154g "various llapi FID tests"
9889
9890 test_155_small_load() {
9891     local temp=$TMP/$tfile
9892     local file=$DIR/$tfile
9893
9894     dd if=/dev/urandom of=$temp bs=6096 count=1 || \
9895         error "dd of=$temp bs=6096 count=1 failed"
9896     cp $temp $file
9897     cancel_lru_locks osc
9898     cmp $temp $file || error "$temp $file differ"
9899
9900     $TRUNCATE $temp 6000
9901     $TRUNCATE $file 6000
9902     cmp $temp $file || error "$temp $file differ (truncate1)"
9903
9904     echo "12345" >>$temp
9905     echo "12345" >>$file
9906     cmp $temp $file || error "$temp $file differ (append1)"
9907
9908     echo "12345" >>$temp
9909     echo "12345" >>$file
9910     cmp $temp $file || error "$temp $file differ (append2)"
9911
9912     rm -f $temp $file
9913     true
9914 }
9915
9916 test_155_big_load() {
9917     remote_ost_nodsh && skip "remote OST with nodsh" && return
9918     local temp=$TMP/$tfile
9919     local file=$DIR/$tfile
9920
9921     free_min_max
9922     local cache_size=$(do_facet ost$((MAXI+1)) \
9923         "awk '/cache/ {sum+=\\\$4} END {print sum}' /proc/cpuinfo")
9924     local large_file_size=$((cache_size * 2))
9925
9926     echo "OSS cache size: $cache_size KB"
9927     echo "Large file size: $large_file_size KB"
9928
9929     [ $MAXV -le $large_file_size ] && \
9930         skip_env "max available OST size needs > $large_file_size KB" && \
9931         return 0
9932
9933     $SETSTRIPE $file -c 1 -i $MAXI || error "$SETSTRIPE $file failed"
9934
9935     dd if=/dev/urandom of=$temp bs=$large_file_size count=1k || \
9936         error "dd of=$temp bs=$large_file_size count=1k failed"
9937     cp $temp $file
9938     ls -lh $temp $file
9939     cancel_lru_locks osc
9940     cmp $temp $file || error "$temp $file differ"
9941
9942     rm -f $temp $file
9943     true
9944 }
9945
9946 test_155a() {
9947         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9948         set_cache read on
9949         set_cache writethrough on
9950         test_155_small_load
9951 }
9952 run_test 155a "Verify small file correctness: read cache:on write_cache:on"
9953
9954 test_155b() {
9955         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9956         set_cache read on
9957         set_cache writethrough off
9958         test_155_small_load
9959 }
9960 run_test 155b "Verify small file correctness: read cache:on write_cache:off"
9961
9962 test_155c() {
9963         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9964         set_cache read off
9965         set_cache writethrough on
9966         test_155_small_load
9967 }
9968 run_test 155c "Verify small file correctness: read cache:off write_cache:on"
9969
9970 test_155d() {
9971         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9972         set_cache read off
9973         set_cache writethrough off
9974         test_155_small_load
9975 }
9976 run_test 155d "Verify small file correctness: read cache:off write_cache:off"
9977
9978 test_155e() {
9979         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9980         set_cache read on
9981         set_cache writethrough on
9982         test_155_big_load
9983 }
9984 run_test 155e "Verify big file correctness: read cache:on write_cache:on"
9985
9986 test_155f() {
9987         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9988         set_cache read on
9989         set_cache writethrough off
9990         test_155_big_load
9991 }
9992 run_test 155f "Verify big file correctness: read cache:on write_cache:off"
9993
9994 test_155g() {
9995         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9996         set_cache read off
9997         set_cache writethrough on
9998         test_155_big_load
9999 }
10000 run_test 155g "Verify big file correctness: read cache:off write_cache:on"
10001
10002 test_155h() {
10003         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10004         set_cache read off
10005         set_cache writethrough off
10006         test_155_big_load
10007 }
10008 run_test 155h "Verify big file correctness: read cache:off write_cache:off"
10009
10010 test_156() {
10011         remote_ost_nodsh && skip "remote OST with nodsh" && return
10012         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10013         local CPAGES=3
10014         local BEFORE
10015         local AFTER
10016         local file="$DIR/$tfile"
10017
10018         [ "$(facet_fstype ost1)" = "zfs" ] &&
10019                 skip "LU-1956/LU-2261: stats unimplemented on OSD ZFS" &&
10020                 return
10021
10022         roc_hit_init
10023
10024     log "Turn on read and write cache"
10025     set_cache read on
10026     set_cache writethrough on
10027
10028     log "Write data and read it back."
10029     log "Read should be satisfied from the cache."
10030     dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
10031     BEFORE=`roc_hit`
10032     cancel_lru_locks osc
10033     cat $file >/dev/null
10034     AFTER=`roc_hit`
10035     if ! let "AFTER - BEFORE == CPAGES"; then
10036         error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
10037     else
10038         log "cache hits:: before: $BEFORE, after: $AFTER"
10039     fi
10040
10041     log "Read again; it should be satisfied from the cache."
10042     BEFORE=$AFTER
10043     cancel_lru_locks osc
10044     cat $file >/dev/null
10045     AFTER=`roc_hit`
10046     if ! let "AFTER - BEFORE == CPAGES"; then
10047         error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
10048     else
10049         log "cache hits:: before: $BEFORE, after: $AFTER"
10050     fi
10051
10052
10053     log "Turn off the read cache and turn on the write cache"
10054     set_cache read off
10055     set_cache writethrough on
10056
10057     log "Read again; it should be satisfied from the cache."
10058     BEFORE=`roc_hit`
10059     cancel_lru_locks osc
10060     cat $file >/dev/null
10061     AFTER=`roc_hit`
10062     if ! let "AFTER - BEFORE == CPAGES"; then
10063         error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
10064     else
10065         log "cache hits:: before: $BEFORE, after: $AFTER"
10066     fi
10067
10068     log "Read again; it should not be satisfied from the cache."
10069     BEFORE=$AFTER
10070     cancel_lru_locks osc
10071     cat $file >/dev/null
10072     AFTER=`roc_hit`
10073     if ! let "AFTER - BEFORE == 0"; then
10074         error "IN CACHE: before: $BEFORE, after: $AFTER"
10075     else
10076         log "cache hits:: before: $BEFORE, after: $AFTER"
10077     fi
10078
10079     log "Write data and read it back."
10080     log "Read should be satisfied from the cache."
10081     dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
10082     BEFORE=`roc_hit`
10083     cancel_lru_locks osc
10084     cat $file >/dev/null
10085     AFTER=`roc_hit`
10086     if ! let "AFTER - BEFORE == CPAGES"; then
10087         error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
10088     else
10089         log "cache hits:: before: $BEFORE, after: $AFTER"
10090     fi
10091
10092     log "Read again; it should not be satisfied from the cache."
10093     BEFORE=$AFTER
10094     cancel_lru_locks osc
10095     cat $file >/dev/null
10096     AFTER=`roc_hit`
10097     if ! let "AFTER - BEFORE == 0"; then
10098         error "IN CACHE: before: $BEFORE, after: $AFTER"
10099     else
10100         log "cache hits:: before: $BEFORE, after: $AFTER"
10101     fi
10102
10103
10104     log "Turn off read and write cache"
10105     set_cache read off
10106     set_cache writethrough off
10107
10108     log "Write data and read it back"
10109     log "It should not be satisfied from the cache."
10110     rm -f $file
10111     dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
10112     cancel_lru_locks osc
10113     BEFORE=`roc_hit`
10114     cat $file >/dev/null
10115     AFTER=`roc_hit`
10116         if ! let "AFTER - BEFORE == 0"; then
10117                 error_ignore bz20762 "IN CACHE: before: $BEFORE, after: $AFTER"
10118         else
10119                 log "cache hits:: before: $BEFORE, after: $AFTER"
10120         fi
10121
10122     log "Turn on the read cache and turn off the write cache"
10123     set_cache read on
10124     set_cache writethrough off
10125
10126     log "Write data and read it back"
10127     log "It should not be satisfied from the cache."
10128     rm -f $file
10129     dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
10130     BEFORE=`roc_hit`
10131     cancel_lru_locks osc
10132     cat $file >/dev/null
10133     AFTER=`roc_hit`
10134         if ! let "AFTER - BEFORE == 0"; then
10135                 error_ignore bz20762 "IN CACHE: before: $BEFORE, after: $AFTER"
10136         else
10137                 log "cache hits:: before: $BEFORE, after: $AFTER"
10138         fi
10139
10140     log "Read again; it should be satisfied from the cache."
10141     BEFORE=`roc_hit`
10142     cancel_lru_locks osc
10143     cat $file >/dev/null
10144     AFTER=`roc_hit`
10145     if ! let "AFTER - BEFORE == CPAGES"; then
10146         error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
10147     else
10148         log "cache hits:: before: $BEFORE, after: $AFTER"
10149     fi
10150
10151     rm -f $file
10152 }
10153 run_test 156 "Verification of tunables ============================"
10154
10155 #Changelogs
10156 err17935 () {
10157         if [[ $MDSCOUNT -gt 1 ]]; then
10158                 error_ignore bz17935 $*
10159         else
10160                 error $*
10161         fi
10162 }
10163
10164 changelog_chmask()
10165 {
10166         local CL_MASK_PARAM="mdd.$MDT0.changelog_mask"
10167
10168         MASK=$(do_facet $SINGLEMDS $LCTL get_param $CL_MASK_PARAM| grep -c "$1")
10169
10170         if [ $MASK -eq 1 ]; then
10171                 do_facet $SINGLEMDS $LCTL set_param $CL_MASK_PARAM="-$1"
10172         else
10173                 do_facet $SINGLEMDS $LCTL set_param $CL_MASK_PARAM="+$1"
10174         fi
10175 }
10176
10177 changelog_extract_field() {
10178         local mdt=$1
10179         local cltype=$2
10180         local file=$3
10181         local identifier=$4
10182
10183         $LFS changelog $mdt | gawk "/$cltype.*$file$/ {
10184                 print gensub(/^.* "$identifier'(\[[^\]]*\]).*$/,"\\1",1)}' |
10185                 tail -1
10186 }
10187
10188 test_160a() {
10189         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10190         remote_mds_nodsh && skip "remote MDS with nodsh" && return
10191         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] ||
10192                 { skip "Need MDS version at least 2.2.0"; return; }
10193
10194         local CL_USERS="mdd.$MDT0.changelog_users"
10195         local GET_CL_USERS="do_facet $SINGLEMDS $LCTL get_param -n $CL_USERS"
10196         USER=$(do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_register -n)
10197         echo "Registered as changelog user $USER"
10198         $GET_CL_USERS | grep -q $USER ||
10199                 error "User $USER not found in changelog_users"
10200
10201         # change something
10202         test_mkdir -p $DIR/$tdir/pics/2008/zachy
10203         touch $DIR/$tdir/pics/2008/zachy/timestamp
10204         cp /etc/hosts $DIR/$tdir/pics/2008/zachy/pic1.jpg
10205         mv $DIR/$tdir/pics/2008/zachy $DIR/$tdir/pics/zach
10206         ln $DIR/$tdir/pics/zach/pic1.jpg $DIR/$tdir/pics/2008/portland.jpg
10207         ln -s $DIR/$tdir/pics/2008/portland.jpg $DIR/$tdir/pics/desktop.jpg
10208         rm $DIR/$tdir/pics/desktop.jpg
10209
10210         $LFS changelog $MDT0 | tail -5
10211
10212         echo "verifying changelog mask"
10213         changelog_chmask "MKDIR"
10214         changelog_chmask "CLOSE"
10215
10216         test_mkdir -p $DIR/$tdir/pics/zach/sofia
10217         echo "zzzzzz" > $DIR/$tdir/pics/zach/file
10218
10219         changelog_chmask "MKDIR"
10220         changelog_chmask "CLOSE"
10221
10222         test_mkdir -p $DIR/$tdir/pics/2008/sofia
10223         echo "zzzzzz" > $DIR/$tdir/pics/zach/file
10224
10225         $LFS changelog $MDT0
10226         MKDIRS=$($LFS changelog $MDT0 | tail -5 | grep -c "MKDIR")
10227         CLOSES=$($LFS changelog $MDT0 | tail -5 | grep -c "CLOSE")
10228         [ $MKDIRS -eq 1 ] || err17935 "MKDIR changelog mask count $DIRS != 1"
10229         [ $CLOSES -eq 1 ] || err17935 "CLOSE changelog mask count $DIRS != 1"
10230
10231         # verify contents
10232         echo "verifying target fid"
10233         fidc=$(changelog_extract_field $MDT0 "CREAT" "timestamp" "t=")
10234         fidf=$($LFS path2fid $DIR/$tdir/pics/zach/timestamp)
10235         [ "$fidc" == "$fidf" ] ||
10236                 err17935 "fid in changelog $fidc != file fid $fidf"
10237         echo "verifying parent fid"
10238         fidc=$(changelog_extract_field $MDT0 "CREAT" "timestamp" "p=")
10239         fidf=$($LFS path2fid $DIR/$tdir/pics/zach)
10240         [ "$fidc" == "$fidf" ] ||
10241                 err17935 "pfid in changelog $fidc != dir fid $fidf"
10242
10243         USER_REC1=$($GET_CL_USERS | awk "\$1 == \"$USER\" {print \$2}")
10244         $LFS changelog_clear $MDT0 $USER $(($USER_REC1 + 5))
10245         USER_REC2=$($GET_CL_USERS | awk "\$1 == \"$USER\" {print \$2}")
10246         echo "verifying user clear: $(( $USER_REC1 + 5 )) == $USER_REC2"
10247         [ $USER_REC2 == $(($USER_REC1 + 5)) ] ||
10248                 err17935 "user index expected $(($USER_REC1 + 5)) is $USER_REC2"
10249
10250         MIN_REC=$($GET_CL_USERS |
10251                 awk 'min == "" || $2 < min {min = $2}; END {print min}')
10252         FIRST_REC=$($LFS changelog $MDT0 | head -n1 | awk '{print $1}')
10253         echo "verifying min purge: $(( $MIN_REC + 1 )) == $FIRST_REC"
10254         [ $FIRST_REC == $(($MIN_REC + 1)) ] ||
10255                 err17935 "first index should be $(($MIN_REC + 1)) is $FIRST_REC"
10256
10257         # LU-3446 changelog index reset on MDT restart
10258         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
10259         CUR_REC1=$($GET_CL_USERS | head -n1 | cut -f3 -d' ')
10260         $LFS changelog_clear $MDT0 $USER 0
10261         stop $SINGLEMDS || error "Fail to stop MDT."
10262         start $SINGLEMDS $MDT_DEV $MDS_MOUNT_OPTS || error "Fail to start MDT."
10263         CUR_REC2=$($GET_CL_USERS | head -n1 | cut -f3 -d' ')
10264         echo "verifying index survives MDT restart: $CUR_REC1 == $CUR_REC2"
10265         [ $CUR_REC1 == $CUR_REC2 ] ||
10266                 err17935 "current index should be $CUR_REC1 is $CUR_REC2"
10267
10268         echo "verifying user deregister"
10269         do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister $USER
10270         $GET_CL_USERS | grep -q $USER &&
10271                 error "User $USER still in changelog_users"
10272
10273         USERS=$(( $($GET_CL_USERS | wc -l) - 2 ))
10274         if [ $USERS -eq 0 ]; then
10275                 LAST_REC1=$($GET_CL_USERS | head -n1 | cut -f3 -d' ')
10276                 touch $DIR/$tdir/chloe
10277                 LAST_REC2=$($GET_CL_USERS | head -n1 | cut -f3 -d' ')
10278                 echo "verify changelogs are off: $LAST_REC1 == $LAST_REC2"
10279                 [ $LAST_REC1 == $LAST_REC2 ] || error "changelogs not off"
10280         else
10281                 echo "$USERS other changelog users; can't verify off"
10282         fi
10283 }
10284 run_test 160a "changelog sanity"
10285
10286 test_160b() { # LU-3587
10287         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10288         remote_mds_nodsh && skip "remote MDS with nodsh" && return
10289         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] ||
10290                 { skip "Need MDS version at least 2.2.0"; return; }
10291
10292         local CL_USERS="mdd.$MDT0.changelog_users"
10293         local GET_CL_USERS="do_facet $SINGLEMDS $LCTL get_param -n $CL_USERS"
10294         USER=$(do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_register -n)
10295         echo "Registered as changelog user $USER"
10296         $GET_CL_USERS | grep -q $USER ||
10297                 error "User $USER not found in changelog_users"
10298
10299         local LONGNAME1=$(str_repeat a 255)
10300         local LONGNAME2=$(str_repeat b 255)
10301
10302         cd $DIR
10303         echo "creating very long named file"
10304         touch $LONGNAME1 || error "create of $LONGNAME1 failed"
10305         echo "moving very long named file"
10306         mv $LONGNAME1 $LONGNAME2
10307
10308         $LFS changelog $MDT0 | grep RENME
10309
10310         echo "deregistering $USER"
10311         do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister $USER
10312
10313         rm -f $LONGNAME2
10314 }
10315 run_test 160b "Verify that very long rename doesn't crash in changelog"
10316
10317 test_160c() {
10318         local rc=0
10319         local server_version=$(lustre_version_code $SINGLEMDS)
10320
10321         [[ $server_version -gt $(version_code 2.5.57) ]] ||
10322                 [[ $server_version -gt $(version_code 2.5.1) &&
10323                    $server_version -lt $(version_code 2.5.50) ]] ||
10324                 { skip "Need MDS version at least 2.5.58 or 2.5.2+"; return; }
10325         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10326
10327         # Registration step
10328         local USER=$(do_facet $SINGLEMDS $LCTL --device $MDT0 \
10329                 changelog_register -n)
10330
10331         rm -rf $DIR/$tdir
10332         mkdir -p $DIR/$tdir
10333         $MCREATE $DIR/$tdir/foo_160c
10334         changelog_chmask "TRUNC"
10335         $TRUNCATE $DIR/$tdir/foo_160c 200
10336         changelog_chmask "TRUNC"
10337         $TRUNCATE $DIR/$tdir/foo_160c 199
10338         $LFS changelog $MDT0
10339         TRUNCS=$($LFS changelog $MDT0 | tail -5 | grep -c "TRUNC")
10340         [ $TRUNCS -eq 1 ] || err17935 "TRUNC changelog mask count $TRUNCS != 1"
10341         $LFS changelog_clear $MDT0 $USER 0
10342
10343         # Deregistration step
10344         echo "deregistering $USER"
10345         do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister $USER
10346 }
10347 run_test 160c "verify that changelog log catch the truncate event"
10348
10349 test_161a() {
10350         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10351         test_mkdir -p -c1 $DIR/$tdir
10352         cp /etc/hosts $DIR/$tdir/$tfile
10353         test_mkdir -c1 $DIR/$tdir/foo1
10354         test_mkdir -c1 $DIR/$tdir/foo2
10355         ln $DIR/$tdir/$tfile $DIR/$tdir/foo1/sofia
10356         ln $DIR/$tdir/$tfile $DIR/$tdir/foo2/zachary
10357         ln $DIR/$tdir/$tfile $DIR/$tdir/foo1/luna
10358         ln $DIR/$tdir/$tfile $DIR/$tdir/foo2/thor
10359         local FID=$($LFS path2fid $DIR/$tdir/$tfile | tr -d '[]')
10360         if [ "$($LFS fid2path $DIR $FID | wc -l)" != "5" ]; then
10361                 $LFS fid2path $DIR $FID
10362                 err17935 "bad link ea"
10363         fi
10364     # middle
10365     rm $DIR/$tdir/foo2/zachary
10366     # last
10367     rm $DIR/$tdir/foo2/thor
10368     # first
10369     rm $DIR/$tdir/$tfile
10370     # rename
10371     mv $DIR/$tdir/foo1/sofia $DIR/$tdir/foo2/maggie
10372     if [ "$($LFS fid2path $FSNAME --link 1 $FID)" != "$tdir/foo2/maggie" ]
10373         then
10374         $LFS fid2path $DIR $FID
10375         err17935 "bad link rename"
10376     fi
10377     rm $DIR/$tdir/foo2/maggie
10378
10379         # overflow the EA
10380         local longname=filename_avg_len_is_thirty_two_
10381         createmany -l$DIR/$tdir/foo1/luna $DIR/$tdir/foo2/$longname 1000 ||
10382                 error "failed to hardlink many files"
10383         links=$($LFS fid2path $DIR $FID | wc -l)
10384         echo -n "${links}/1000 links in link EA"
10385         [[ $links -gt 60 ]] ||
10386                 err17935 "expected at least 60 links in link EA"
10387         unlinkmany $DIR/$tdir/foo2/$longname 1000 ||
10388                 error "failed to unlink many hardlinks"
10389 }
10390 run_test 161a "link ea sanity"
10391
10392 test_161b() {
10393         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10394         [ $MDSCOUNT -lt 2 ] &&
10395                 skip "skipping remote directory test" && return
10396         local MDTIDX=1
10397         local remote_dir=$DIR/$tdir/remote_dir
10398
10399         mkdir -p $DIR/$tdir
10400         $LFS mkdir -i $MDTIDX $remote_dir ||
10401                 error "create remote directory failed"
10402
10403         cp /etc/hosts $remote_dir/$tfile
10404         mkdir -p $remote_dir/foo1
10405         mkdir -p $remote_dir/foo2
10406         ln $remote_dir/$tfile $remote_dir/foo1/sofia
10407         ln $remote_dir/$tfile $remote_dir/foo2/zachary
10408         ln $remote_dir/$tfile $remote_dir/foo1/luna
10409         ln $remote_dir/$tfile $remote_dir/foo2/thor
10410
10411         local FID=$($LFS path2fid $remote_dir/$tfile | tr -d '[' |
10412                      tr -d ']')
10413         if [ "$($LFS fid2path $DIR $FID | wc -l)" != "5" ]; then
10414                 $LFS fid2path $DIR $FID
10415                 err17935 "bad link ea"
10416         fi
10417         # middle
10418         rm $remote_dir/foo2/zachary
10419         # last
10420         rm $remote_dir/foo2/thor
10421         # first
10422         rm $remote_dir/$tfile
10423         # rename
10424         mv $remote_dir/foo1/sofia $remote_dir/foo2/maggie
10425         local link_path=$($LFS fid2path $FSNAME --link 1 $FID)
10426         if [ "$DIR/$link_path" != "$remote_dir/foo2/maggie" ]; then
10427                 $LFS fid2path $DIR $FID
10428                 err17935 "bad link rename"
10429         fi
10430         rm $remote_dir/foo2/maggie
10431
10432         # overflow the EA
10433         local longname=filename_avg_len_is_thirty_two_
10434         createmany -l$remote_dir/foo1/luna $remote_dir/foo2/$longname 1000 ||
10435                 error "failed to hardlink many files"
10436         links=$($LFS fid2path $DIR $FID | wc -l)
10437         echo -n "${links}/1000 links in link EA"
10438         [[ ${links} -gt 60 ]] ||
10439                 err17935 "expected at least 60 links in link EA"
10440         unlinkmany $remote_dir/foo2/$longname 1000 ||
10441         error "failed to unlink many hardlinks"
10442 }
10443 run_test 161b "link ea sanity under remote directory"
10444
10445 test_161c() {
10446         remote_mds_nodsh && skip "remote MDS with nodsh" && return
10447         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10448         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.1.5) ]] &&
10449                 skip "Need MDS version at least 2.1.5" && return
10450
10451         # define CLF_RENAME_LAST 0x0001
10452         # rename overwrite a target having nlink = 1 (changelog flag 0x1)
10453         local USER=$(do_facet $SINGLEMDS $LCTL --device $MDT0 \
10454                 changelog_register -n)
10455         rm -rf $DIR/$tdir
10456         mkdir -p $DIR/$tdir
10457         touch $DIR/$tdir/foo_161c
10458         touch $DIR/$tdir/bar_161c
10459         mv -f $DIR/$tdir/foo_161c $DIR/$tdir/bar_161c
10460         $LFS changelog $MDT0 | grep RENME
10461         local flags=$($LFS changelog $MDT0 | grep RENME | tail -1 | \
10462                 cut -f5 -d' ')
10463         $LFS changelog_clear $MDT0 $USER 0
10464         if [ x$flags != "x0x1" ]; then
10465                 do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister \
10466                         $USER
10467                 error "flag $flags is not 0x1"
10468         fi
10469         echo "rename overwrite a target having nlink = 1," \
10470                 "changelog record has flags of $flags"
10471
10472         # rename overwrite a target having nlink > 1 (changelog flag 0x0)
10473         touch $DIR/$tdir/foo_161c
10474         touch $DIR/$tdir/bar_161c
10475         ln $DIR/$tdir/bar_161c $DIR/$tdir/foobar_161c
10476         mv -f $DIR/$tdir/foo_161c $DIR/$tdir/bar_161c
10477         $LFS changelog $MDT0 | grep RENME
10478         flags=$($LFS changelog $MDT0 | grep RENME | tail -1 | cut -f5 -d' ')
10479         $LFS changelog_clear $MDT0 $USER 0
10480         if [ x$flags != "x0x0" ]; then
10481                 do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister \
10482                         $USER
10483                 error "flag $flags is not 0x0"
10484         fi
10485         echo "rename overwrite a target having nlink > 1," \
10486                 "changelog record has flags of $flags"
10487
10488         # rename doesn't overwrite a target (changelog flag 0x0)
10489         touch $DIR/$tdir/foo_161c
10490         mv -f $DIR/$tdir/foo_161c $DIR/$tdir/foo2_161c
10491         $LFS changelog $MDT0 | grep RENME
10492         flags=$($LFS changelog $MDT0 | grep RENME | tail -1 | cut -f5 -d' ')
10493         $LFS changelog_clear $MDT0 $USER 0
10494         if [ x$flags != "x0x0" ]; then
10495                 do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister \
10496                         $USER
10497                 error "flag $flags is not 0x0"
10498         fi
10499         echo "rename doesn't overwrite a target," \
10500                 "changelog record has flags of $flags"
10501
10502         # define CLF_UNLINK_LAST 0x0001
10503         # unlink a file having nlink = 1 (changelog flag 0x1)
10504         rm -f $DIR/$tdir/foo2_161c
10505         $LFS changelog $MDT0 | grep UNLNK
10506         flags=$($LFS changelog $MDT0 | grep UNLNK | tail -1 | cut -f5 -d' ')
10507         $LFS changelog_clear $MDT0 $USER 0
10508         if [ x$flags != "x0x1" ]; then
10509                 do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister \
10510                         $USER
10511                 error "flag $flags is not 0x1"
10512         fi
10513         echo "unlink a file having nlink = 1," \
10514                 "changelog record has flags of $flags"
10515
10516         # unlink a file having nlink > 1 (changelog flag 0x0)
10517         ln -f $DIR/$tdir/bar_161c $DIR/$tdir/foobar_161c
10518         rm -f $DIR/$tdir/foobar_161c
10519         $LFS changelog $MDT0 | grep UNLNK
10520         flags=$($LFS changelog $MDT0 | grep UNLNK | tail -1 | cut -f5 -d' ')
10521         $LFS changelog_clear $MDT0 $USER 0
10522         if [ x$flags != "x0x0" ]; then
10523                 do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister \
10524                         $USER
10525                 error "flag $flags is not 0x0"
10526         fi
10527         echo "unlink a file having nlink > 1," \
10528                 "changelog record has flags of $flags"
10529         do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister $USER
10530 }
10531 run_test 161c "check CL_RENME[UNLINK] changelog record flags"
10532
10533 check_path() {
10534     local expected=$1
10535     shift
10536     local fid=$2
10537
10538     local path=$(${LFS} fid2path $*)
10539     # Remove the '//' indicating a remote directory
10540     path=$(echo $path | sed 's#//#/#g')
10541     RC=$?
10542
10543     if [ $RC -ne 0 ]; then
10544         err17935 "path looked up of $expected failed. Error $RC"
10545         return $RC
10546     elif [ "${path}" != "${expected}" ]; then
10547         err17935 "path looked up \"${path}\" instead of \"${expected}\""
10548         return 2
10549     fi
10550     echo "fid $fid resolves to path $path (expected $expected)"
10551 }
10552
10553 test_162() {
10554         # Make changes to filesystem
10555         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10556         test_mkdir -p -c1 $DIR/$tdir/d2
10557         touch $DIR/$tdir/d2/$tfile
10558         touch $DIR/$tdir/d2/x1
10559         touch $DIR/$tdir/d2/x2
10560         test_mkdir -p -c1 $DIR/$tdir/d2/a/b/c
10561         test_mkdir -p -c1 $DIR/$tdir/d2/p/q/r
10562         # regular file
10563         FID=$($LFS path2fid $DIR/$tdir/d2/$tfile | tr -d '[]')
10564         check_path "$tdir/d2/$tfile" $FSNAME $FID --link 0 ||
10565                 error "check path $tdir/d2/$tfile failed"
10566
10567         # softlink
10568         ln -s $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/p/q/r/slink
10569         FID=$($LFS path2fid $DIR/$tdir/d2/p/q/r/slink | tr -d '[]')
10570         check_path "$tdir/d2/p/q/r/slink" $FSNAME $FID --link 0 ||
10571                 error "check path $tdir/d2/p/q/r/slink failed"
10572
10573         # softlink to wrong file
10574         ln -s /this/is/garbage $DIR/$tdir/d2/p/q/r/slink.wrong
10575         FID=$($LFS path2fid $DIR/$tdir/d2/p/q/r/slink.wrong | tr -d '[]')
10576         check_path "$tdir/d2/p/q/r/slink.wrong" $FSNAME $FID --link 0 ||
10577                 error "check path $tdir/d2/p/q/r/slink.wrong failed"
10578
10579         # hardlink
10580         ln $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/p/q/r/hlink
10581         mv $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/a/b/c/new_file
10582         FID=$($LFS path2fid $DIR/$tdir/d2/a/b/c/new_file | tr -d '[]')
10583         # fid2path dir/fsname should both work
10584         check_path "$tdir/d2/a/b/c/new_file" $FSNAME $FID --link 1 ||
10585                 error "check path $tdir/d2/a/b/c/new_file failed"
10586         check_path "$DIR/$tdir/d2/p/q/r/hlink" $DIR $FID --link 0 ||
10587                 error "check path $DIR/$tdir/d2/p/q/r/hlink failed"
10588
10589         # hardlink count: check that there are 2 links
10590         # Doesnt work with CMD yet: 17935
10591         ${LFS} fid2path $DIR $FID | wc -l | grep -q 2 || \
10592                 err17935 "expected 2 links"
10593
10594         # hardlink indexing: remove the first link
10595         rm $DIR/$tdir/d2/p/q/r/hlink
10596         check_path "$tdir/d2/a/b/c/new_file" $FSNAME $FID --link 0 ||
10597                 error "check path $DIR/$tdir/d2/a/b/c/new_file failed"
10598
10599         return 0
10600 }
10601 run_test 162 "path lookup sanity"
10602
10603 test_162b() {
10604         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10605         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
10606
10607         mkdir $DIR/$tdir
10608         $LFS setdirstripe -i0 -c$MDSCOUNT -t all_char $DIR/$tdir/striped_dir ||
10609                                 error "create striped dir failed"
10610
10611         local FID=$($LFS getdirstripe $DIR/$tdir/striped_dir |
10612                                         tail -n 1 | awk '{print $2}')
10613         stat $MOUNT/.lustre/fid/$FID && error "sub_stripe can be accessed"
10614
10615         touch $DIR/$tdir/striped_dir/f{0..4} || error "touch f0..4 failed"
10616         mkdir $DIR/$tdir/striped_dir/d{0..4} || error "mkdir d0..4 failed"
10617
10618         # regular file
10619         for ((i=0;i<5;i++)); do
10620                 FID=$($LFS path2fid $DIR/$tdir/striped_dir/f$i | tr -d '[]') ||
10621                         error "get fid for f$i failed"
10622                 check_path "$tdir/striped_dir/f$i" $FSNAME $FID --link 0 ||
10623                         error "check path $tdir/striped_dir/f$i failed"
10624
10625                 FID=$($LFS path2fid $DIR/$tdir/striped_dir/d$i | tr -d '[]') ||
10626                         error "get fid for d$i failed"
10627                 check_path "$tdir/striped_dir/d$i" $FSNAME $FID --link 0 ||
10628                         error "check path $tdir/striped_dir/d$i failed"
10629         done
10630
10631         return 0
10632 }
10633 run_test 162b "striped directory path lookup sanity"
10634
10635 # LU-4239: Verify fid2path works with paths 100 or more directories deep
10636 test_162c() {
10637         test_mkdir $DIR/$tdir.local
10638         test_mkdir $DIR/$tdir.remote
10639         local lpath=$tdir.local
10640         local rpath=$tdir.remote
10641
10642         for ((i = 0; i <= 101; i++)); do
10643                 lpath="$lpath/$i"
10644                 mkdir $DIR/$lpath
10645                 FID=$($LFS path2fid $DIR/$lpath | tr -d '[]') ||
10646                         error "get fid for local directory $DIR/$lpath failed"
10647                 check_path "$DIR/$lpath" $MOUNT $FID --link 0 ||
10648                         error "check path for local directory $DIR/$lpath failed"
10649
10650                 rpath="$rpath/$i"
10651                 test_mkdir $DIR/$rpath
10652                 FID=$($LFS path2fid $DIR/$rpath | tr -d '[]') ||
10653                         error "get fid for remote directory $DIR/$rpath failed"
10654                 check_path "$DIR/$rpath" $MOUNT $FID --link 0 ||
10655                         error "check path for remote directory $DIR/$rpath failed"
10656         done
10657
10658         return 0
10659 }
10660 run_test 162c "fid2path works with paths 100 or more directories deep"
10661
10662 test_169() {
10663         # do directio so as not to populate the page cache
10664         log "creating a 10 Mb file"
10665         $MULTIOP $DIR/$tfile oO_CREAT:O_DIRECT:O_RDWR:w$((10*1048576))c || error "multiop failed while creating a file"
10666         log "starting reads"
10667         dd if=$DIR/$tfile of=/dev/null bs=4096 &
10668         log "truncating the file"
10669         $MULTIOP $DIR/$tfile oO_TRUNC:c || error "multiop failed while truncating the file"
10670         log "killing dd"
10671         kill %+ || true # reads might have finished
10672         echo "wait until dd is finished"
10673         wait
10674         log "removing the temporary file"
10675         rm -rf $DIR/$tfile || error "tmp file removal failed"
10676 }
10677 run_test 169 "parallel read and truncate should not deadlock"
10678
10679 test_170() {
10680         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10681         $LCTL clear     # bug 18514
10682         $LCTL debug_daemon start $TMP/${tfile}_log_good
10683         touch $DIR/$tfile
10684         $LCTL debug_daemon stop
10685         sed -e "s/^...../a/g" $TMP/${tfile}_log_good > $TMP/${tfile}_log_bad ||
10686                error "sed failed to read log_good"
10687
10688         $LCTL debug_daemon start $TMP/${tfile}_log_good
10689         rm -rf $DIR/$tfile
10690         $LCTL debug_daemon stop
10691
10692         $LCTL df $TMP/${tfile}_log_bad > $TMP/${tfile}_log_bad.out 2>&1 ||
10693                error "lctl df log_bad failed"
10694
10695         local bad_line=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $9}')
10696         local good_line1=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $5}')
10697
10698         $LCTL df $TMP/${tfile}_log_good > $TMP/${tfile}_log_good.out 2>&1
10699         local good_line2=$(tail -n 1 $TMP/${tfile}_log_good.out | awk '{print $5}')
10700
10701         [ "$bad_line" ] && [ "$good_line1" ] && [ "$good_line2" ] ||
10702                 error "bad_line good_line1 good_line2 are empty"
10703
10704         cat $TMP/${tfile}_log_good >> $TMP/${tfile}_logs_corrupt
10705         cat $TMP/${tfile}_log_bad >> $TMP/${tfile}_logs_corrupt
10706         cat $TMP/${tfile}_log_good >> $TMP/${tfile}_logs_corrupt
10707
10708         $LCTL df $TMP/${tfile}_logs_corrupt > $TMP/${tfile}_log_bad.out 2>&1
10709         local bad_line_new=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $9}')
10710         local good_line_new=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $5}')
10711
10712         [ "$bad_line_new" ] && [ "$good_line_new" ] ||
10713                 error "bad_line_new good_line_new are empty"
10714
10715         local expected_good=$((good_line1 + good_line2*2))
10716
10717         rm -f $TMP/${tfile}*
10718         # LU-231, short malformed line may not be counted into bad lines
10719         if [ $bad_line -ne $bad_line_new ] &&
10720                    [ $bad_line -ne $((bad_line_new - 1)) ]; then
10721                 error "expected $bad_line bad lines, but got $bad_line_new"
10722                 return 1
10723         fi
10724
10725         if [ $expected_good -ne $good_line_new ]; then
10726                 error "expected $expected_good good lines, but got $good_line_new"
10727                 return 2
10728         fi
10729         true
10730 }
10731 run_test 170 "test lctl df to handle corrupted log ====================="
10732
10733 test_171() { # bug20592
10734         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10735 #define OBD_FAIL_PTLRPC_DUMP_LOG         0x50e
10736         $LCTL set_param fail_loc=0x50e
10737         $LCTL set_param fail_val=3000
10738         multiop_bg_pause $DIR/$tfile O_s || true
10739         local MULTIPID=$!
10740         kill -USR1 $MULTIPID
10741         # cause log dump
10742         sleep 3
10743         wait $MULTIPID
10744         if dmesg | grep "recursive fault"; then
10745                 error "caught a recursive fault"
10746         fi
10747         $LCTL set_param fail_loc=0
10748         true
10749 }
10750 run_test 171 "test libcfs_debug_dumplog_thread stuck in do_exit() ======"
10751
10752 # it would be good to share it with obdfilter-survey/iokit-libecho code
10753 setup_obdecho_osc () {
10754         local rc=0
10755         local ost_nid=$1
10756         local obdfilter_name=$2
10757         echo "Creating new osc for $obdfilter_name on $ost_nid"
10758         # make sure we can find loopback nid
10759         $LCTL add_uuid $ost_nid $ost_nid >/dev/null 2>&1
10760
10761         [ $rc -eq 0 ] && { $LCTL attach osc ${obdfilter_name}_osc     \
10762                            ${obdfilter_name}_osc_UUID || rc=2; }
10763         [ $rc -eq 0 ] && { $LCTL --device ${obdfilter_name}_osc setup \
10764                            ${obdfilter_name}_UUID  $ost_nid || rc=3; }
10765         return $rc
10766 }
10767
10768 cleanup_obdecho_osc () {
10769         local obdfilter_name=$1
10770         $LCTL --device ${obdfilter_name}_osc cleanup >/dev/null
10771         $LCTL --device ${obdfilter_name}_osc detach  >/dev/null
10772         return 0
10773 }
10774
10775 obdecho_test() {
10776         local OBD=$1
10777         local node=$2
10778         local pages=${3:-64}
10779         local rc=0
10780         local id
10781
10782         local count=10
10783         local obd_size=$(get_obd_size $node $OBD)
10784         local page_size=$(get_page_size $node)
10785         if [[ -n "$obd_size" ]]; then
10786                 local new_count=$((obd_size / (pages * page_size / 1024)))
10787                 [[ $new_count -ge $count ]] || count=$new_count
10788         fi
10789
10790         do_facet $node "$LCTL attach echo_client ec ec_uuid" || rc=1
10791         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec setup $OBD" ||
10792                            rc=2; }
10793         if [ $rc -eq 0 ]; then
10794             id=$(do_facet $node "$LCTL --device ec create 1"  | awk '/object id/ {print $6}')
10795             [ ${PIPESTATUS[0]} -eq 0 -a -n "$id" ] || rc=3
10796         fi
10797         echo "New object id is $id"
10798         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec getattr $id" ||
10799                            rc=4; }
10800         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec "                 \
10801                            "test_brw $count w v $pages $id" || rc=4; }
10802         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec destroy $id 1" ||
10803                            rc=4; }
10804         [ $rc -eq 0 -o $rc -gt 2 ] && { do_facet $node "$LCTL --device ec "    \
10805                                         "cleanup" || rc=5; }
10806         [ $rc -eq 0 -o $rc -gt 1 ] && { do_facet $node "$LCTL --device ec "    \
10807                                         "detach" || rc=6; }
10808         [ $rc -ne 0 ] && echo "obecho_create_test failed: $rc"
10809         return $rc
10810 }
10811
10812 test_180a() {
10813         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10814         remote_ost_nodsh && skip "remote OST with nodsh" && return
10815         local rc=0
10816         local rmmod_local=0
10817
10818         if ! module_loaded obdecho; then
10819             load_module obdecho/obdecho
10820             rmmod_local=1
10821         fi
10822
10823         local osc=$($LCTL dl | grep -v mdt | awk '$3 == "osc" {print $4; exit}')
10824         local host=$(lctl get_param -n osc.$osc.import |
10825                              awk '/current_connection:/ {print $2}' )
10826         local target=$(lctl get_param -n osc.$osc.import |
10827                              awk '/target:/ {print $2}' )
10828         target=${target%_UUID}
10829
10830         [[ -n $target ]]  && { setup_obdecho_osc $host $target || rc=1; } || rc=1
10831         [ $rc -eq 0 ] && { obdecho_test ${target}_osc client || rc=2; }
10832         [[ -n $target ]] && cleanup_obdecho_osc $target
10833         [ $rmmod_local -eq 1 ] && rmmod obdecho
10834         return $rc
10835 }
10836 run_test 180a "test obdecho on osc"
10837
10838 test_180b() {
10839         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10840         remote_ost_nodsh && skip "remote OST with nodsh" && return
10841         local rc=0
10842         local rmmod_remote=0
10843
10844         do_facet ost1 "lsmod | grep -q obdecho || "                      \
10845                       "{ insmod ${LUSTRE}/obdecho/obdecho.ko || "        \
10846                       "modprobe obdecho; }" && rmmod_remote=1
10847         target=$(do_facet ost1 $LCTL dl | awk '/obdfilter/ {print $4;exit}')
10848         [[ -n $target ]] && { obdecho_test $target ost1 || rc=1; }
10849         [ $rmmod_remote -eq 1 ] && do_facet ost1 "rmmod obdecho"
10850         return $rc
10851 }
10852 run_test 180b "test obdecho directly on obdfilter"
10853
10854 test_180c() { # LU-2598
10855         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10856         remote_ost_nodsh && skip "remote OST with nodsh" && return
10857         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.0) ]] &&
10858                 skip "Need MDS version at least 2.4.0" && return
10859
10860         local rc=0
10861         local rmmod_remote=false
10862         local pages=16384 # 64MB bulk I/O RPC size
10863         local target
10864
10865         do_rpc_nodes $(facet_active_host ost1) load_module obdecho/obdecho &&
10866                 rmmod_remote=true || error "failed to load module obdecho"
10867
10868         target=$(do_facet ost1 $LCTL dl | awk '/obdfilter/ { print $4 }' |
10869                 head -n1)
10870         if [ -n "$target" ]; then
10871                 obdecho_test "$target" ost1 "$pages" || rc=${PIPESTATUS[0]}
10872         else
10873                 echo "there is no obdfilter target on ost1"
10874                 rc=2
10875         fi
10876         $rmmod_remote && do_facet ost1 "rmmod obdecho" || true
10877         return $rc
10878 }
10879 run_test 180c "test huge bulk I/O size on obdfilter, don't LASSERT"
10880
10881 test_181() { # bug 22177
10882         test_mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
10883         # create enough files to index the directory
10884         createmany -o $DIR/$tdir/foobar 4000
10885         # print attributes for debug purpose
10886         lsattr -d .
10887         # open dir
10888         multiop_bg_pause $DIR/$tdir D_Sc || return 1
10889         MULTIPID=$!
10890         # remove the files & current working dir
10891         unlinkmany $DIR/$tdir/foobar 4000
10892         rmdir $DIR/$tdir
10893         kill -USR1 $MULTIPID
10894         wait $MULTIPID
10895         stat $DIR/$tdir && error "open-unlinked dir was not removed!"
10896         return 0
10897 }
10898 run_test 181 "Test open-unlinked dir ========================"
10899
10900 test_182() {
10901         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10902         # disable MDC RPC lock wouldn't crash client
10903         local fcount=1000
10904         local tcount=4
10905
10906         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
10907 #define OBD_FAIL_MDC_RPCS_SEM           0x804
10908         $LCTL set_param fail_loc=0x804
10909
10910         for (( i=0; i < $tcount; i++ )) ; do
10911                 mkdir $DIR/$tdir/$i
10912                 createmany -o $DIR/$tdir/$i/f- $fcount &
10913         done
10914         wait
10915
10916         for (( i=0; i < $tcount; i++ )) ; do
10917                 unlinkmany $DIR/$tdir/$i/f- $fcount &
10918         done
10919         wait
10920
10921         rm -rf $DIR/$tdir
10922
10923         $LCTL set_param fail_loc=0
10924 }
10925 run_test 182 "Disable MDC RPCs semaphore wouldn't crash client ================"
10926
10927 test_183() { # LU-2275
10928         remote_mds_nodsh && skip "remote MDS with nodsh" && return
10929         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.56) ]] &&
10930                 skip "Need MDS version at least 2.3.56" && return
10931
10932         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10933         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
10934         echo aaa > $DIR/$tdir/$tfile
10935
10936 #define OBD_FAIL_MDS_NEGATIVE_POSITIVE  0x148
10937         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x148
10938
10939         ls -l $DIR/$tdir && error "ls succeeded, should have failed"
10940         cat $DIR/$tdir/$tfile && error "cat succeeded, should have failed"
10941
10942         do_facet $SINGLEMDS $LCTL set_param fail_loc=0
10943
10944         # Flush negative dentry cache
10945         touch $DIR/$tdir/$tfile
10946
10947         # We are not checking for any leaked references here, they'll
10948         # become evident next time we do cleanup with module unload.
10949         rm -rf $DIR/$tdir
10950 }
10951 run_test 183 "No crash or request leak in case of strange dispositions ========"
10952
10953 # test suite 184 is for LU-2016, LU-2017
10954 test_184a() {
10955         check_swap_layouts_support && return 0
10956
10957         dir0=$DIR/$tdir/$testnum
10958         test_mkdir -p -c1 $dir0 || error "creating dir $dir0"
10959         ref1=/etc/passwd
10960         ref2=/etc/group
10961         file1=$dir0/f1
10962         file2=$dir0/f2
10963         $SETSTRIPE -c1 $file1
10964         cp $ref1 $file1
10965         $SETSTRIPE -c2 $file2
10966         cp $ref2 $file2
10967         gen1=$($GETSTRIPE -g $file1)
10968         gen2=$($GETSTRIPE -g $file2)
10969
10970         $LFS swap_layouts $file1 $file2 || error "swap of file layout failed"
10971         gen=$($GETSTRIPE -g $file1)
10972         [[ $gen1 != $gen ]] ||
10973                 "Layout generation on $file1 does not change"
10974         gen=$($GETSTRIPE -g $file2)
10975         [[ $gen2 != $gen ]] ||
10976                 "Layout generation on $file2 does not change"
10977
10978         cmp $ref1 $file2 || error "content compare failed ($ref1 != $file2)"
10979         cmp $ref2 $file1 || error "content compare failed ($ref2 != $file1)"
10980 }
10981 run_test 184a "Basic layout swap"
10982
10983 test_184b() {
10984         check_swap_layouts_support && return 0
10985
10986         dir0=$DIR/$tdir/$testnum
10987         mkdir -p $dir0 || error "creating dir $dir0"
10988         file1=$dir0/f1
10989         file2=$dir0/f2
10990         file3=$dir0/f3
10991         dir1=$dir0/d1
10992         dir2=$dir0/d2
10993         mkdir $dir1 $dir2
10994         $SETSTRIPE -c1 $file1
10995         $SETSTRIPE -c2 $file2
10996         $SETSTRIPE -c1 $file3
10997         chown $RUNAS_ID $file3
10998         gen1=$($GETSTRIPE -g $file1)
10999         gen2=$($GETSTRIPE -g $file2)
11000
11001         $LFS swap_layouts $dir1 $dir2 &&
11002                 error "swap of directories layouts should fail"
11003         $LFS swap_layouts $dir1 $file1 &&
11004                 error "swap of directory and file layouts should fail"
11005         $RUNAS $LFS swap_layouts $file1 $file2 &&
11006                 error "swap of file we cannot write should fail"
11007         $LFS swap_layouts $file1 $file3 &&
11008                 error "swap of file with different owner should fail"
11009         /bin/true # to clear error code
11010 }
11011 run_test 184b "Forbidden layout swap (will generate errors)"
11012
11013 test_184c() {
11014         check_swap_layouts_support && return 0
11015
11016         local dir0=$DIR/$tdir/$testnum
11017         mkdir -p $dir0 || error "creating dir $dir0"
11018
11019         local ref1=$dir0/ref1
11020         local ref2=$dir0/ref2
11021         local file1=$dir0/file1
11022         local file2=$dir0/file2
11023         # create a file large enough for the concurrent test
11024         dd if=/dev/urandom of=$ref1 bs=1M count=$((RANDOM % 50 + 20))
11025         dd if=/dev/urandom of=$ref2 bs=1M count=$((RANDOM % 50 + 20))
11026         echo "ref file size: ref1($(stat -c %s $ref1))," \
11027              "ref2($(stat -c %s $ref2))"
11028
11029         cp $ref2 $file2
11030         dd if=$ref1 of=$file1 bs=16k &
11031         local DD_PID=$!
11032
11033         # Make sure dd starts to copy file
11034         while [ ! -f $file1 ]; do sleep 0.1; done
11035
11036         $LFS swap_layouts $file1 $file2
11037         local rc=$?
11038         wait $DD_PID
11039         [[ $? == 0 ]] || error "concurrent write on $file1 failed"
11040         [[ $rc == 0 ]] || error "swap of $file1 and $file2 failed"
11041
11042         # how many bytes copied before swapping layout
11043         local copied=$(stat -c %s $file2)
11044         local remaining=$(stat -c %s $ref1)
11045         remaining=$((remaining - copied))
11046         echo "Copied $copied bytes before swapping layout..."
11047
11048         cmp -n $copied $file1 $ref2 | grep differ &&
11049                 error "Content mismatch [0, $copied) of ref2 and file1"
11050         cmp -n $copied $file2 $ref1 ||
11051                 error "Content mismatch [0, $copied) of ref1 and file2"
11052         cmp -i $copied:$copied -n $remaining $file1 $ref1 ||
11053                 error "Content mismatch [$copied, EOF) of ref1 and file1"
11054
11055         # clean up
11056         rm -f $ref1 $ref2 $file1 $file2
11057 }
11058 run_test 184c "Concurrent write and layout swap"
11059
11060 test_184d() {
11061         check_swap_layouts_support && return 0
11062         [ -z "$(which getfattr 2>/dev/null)" ] &&
11063                 skip "no getfattr command" && return 0
11064
11065         local file1=$DIR/$tdir/$tfile-1
11066         local file2=$DIR/$tdir/$tfile-2
11067         local file3=$DIR/$tdir/$tfile-3
11068         local lovea1
11069         local lovea2
11070
11071         mkdir -p $DIR/$tdir
11072         touch $file1 || error "create $file1 failed"
11073         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file2 ||
11074                 error "create $file2 failed"
11075         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file3 ||
11076                 error "create $file3 failed"
11077         lovea1=$($LFS getstripe $file1 | sed 1d)
11078
11079         $LFS swap_layouts $file2 $file3 ||
11080                 error "swap $file2 $file3 layouts failed"
11081         $LFS swap_layouts $file1 $file2 ||
11082                 error "swap $file1 $file2 layouts failed"
11083
11084         lovea2=$($LFS getstripe $file2 | sed 1d)
11085         [ "$lovea1" == "$lovea2" ] || error "lovea $lovea1 != $lovea2"
11086
11087         lovea1=$(getfattr -n trusted.lov $file1 | grep ^trusted)
11088         [[ -z "$lovea1" ]] || error "$file1 shouldn't have lovea"
11089 }
11090 run_test 184d "allow stripeless layouts swap"
11091
11092 test_184e() {
11093         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.94) ]] ||
11094                 { skip "Need MDS version at least 2.6.94"; return 0; }
11095         check_swap_layouts_support && return 0
11096         [ -z "$(which getfattr 2>/dev/null)" ] &&
11097                 skip "no getfattr command" && return 0
11098
11099         local file1=$DIR/$tdir/$tfile-1
11100         local file2=$DIR/$tdir/$tfile-2
11101         local file3=$DIR/$tdir/$tfile-3
11102         local lovea
11103
11104         mkdir -p $DIR/$tdir
11105         touch $file1 || error "create $file1 failed"
11106         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file2 ||
11107                 error "create $file2 failed"
11108         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file3 ||
11109                 error "create $file3 failed"
11110
11111         $LFS swap_layouts $file1 $file2 ||
11112                 error "swap $file1 $file2 layouts failed"
11113
11114         lovea=$(getfattr -n trusted.lov $file1 | grep ^trusted)
11115         [[ -z "$lovea" ]] || error "$file1 shouldn't have lovea"
11116
11117         echo 123 > $file1 || error "Should be able to write into $file1"
11118
11119         $LFS swap_layouts $file1 $file3 ||
11120                 error "swap $file1 $file3 layouts failed"
11121
11122         echo 123 > $file1 || error "Should be able to write into $file1"
11123
11124         rm -rf $file1 $file2 $file3
11125 }
11126 run_test 184e "Recreate layout after stripeless layout swaps"
11127
11128 test_185() { # LU-2441
11129         # LU-3553 - no volatile file support in old servers
11130         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.60) ]] ||
11131                 { skip "Need MDS version at least 2.3.60"; return 0; }
11132
11133         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
11134         touch $DIR/$tdir/spoo
11135         local mtime1=$(stat -c "%Y" $DIR/$tdir)
11136         local fid=$($MULTIOP $DIR/$tdir VFw4096c) ||
11137                 error "cannot create/write a volatile file"
11138         $CHECKSTAT -t file $MOUNT/.lustre/fid/$fid 2>/dev/null &&
11139                 error "FID is still valid after close"
11140
11141         multiop_bg_pause $DIR/$tdir vVw4096_c
11142         local multi_pid=$!
11143
11144         local OLD_IFS=$IFS
11145         IFS=":"
11146         local fidv=($fid)
11147         IFS=$OLD_IFS
11148         # assume that the next FID for this client is sequential, since stdout
11149         # is unfortunately eaten by multiop_bg_pause
11150         local n=$((${fidv[1]} + 1))
11151         local next_fid="${fidv[0]}:$(printf "0x%x" $n):${fidv[2]}"
11152         $CHECKSTAT -t file $MOUNT/.lustre/fid/$next_fid ||
11153                 error "FID is missing before close"
11154         kill -USR1 $multi_pid
11155         # 1 second delay, so if mtime change we will see it
11156         sleep 1
11157         local mtime2=$(stat -c "%Y" $DIR/$tdir)
11158         [[ $mtime1 == $mtime2 ]] || error "mtime has changed"
11159 }
11160 run_test 185 "Volatile file support"
11161
11162 test_187a() {
11163         local dir0=$DIR/$tdir/$testnum
11164         mkdir -p $dir0 || error "creating dir $dir0"
11165
11166         local file=$dir0/file1
11167         dd if=/dev/urandom of=$file count=10 bs=1M conv=fsync
11168         local dv1=$($LFS data_version $file)
11169         dd if=/dev/urandom of=$file seek=10 count=1 bs=1M conv=fsync
11170         local dv2=$($LFS data_version $file)
11171         [[ $dv1 != $dv2 ]] ||
11172                 error "data version did not change on write $dv1 == $dv2"
11173
11174         # clean up
11175         rm -f $file1
11176 }
11177 run_test 187a "Test data version change"
11178
11179 test_187b() {
11180         local dir0=$DIR/$tdir/$testnum
11181         mkdir -p $dir0 || error "creating dir $dir0"
11182
11183         declare -a DV=$($MULTIOP $dir0 Vw1000xYw1000xY | cut -f3 -d" ")
11184         [[ ${DV[0]} != ${DV[1]} ]] ||
11185                 error "data version did not change on write"\
11186                       " ${DV[0]} == ${DV[1]}"
11187
11188         # clean up
11189         rm -f $file1
11190 }
11191 run_test 187b "Test data version change on volatile file"
11192
11193 test_200() {
11194         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11195         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
11196
11197         local POOL=${POOL:-cea1}
11198         local POOL_ROOT=${POOL_ROOT:-$DIR/d200.pools}
11199         local POOL_DIR_NAME=${POOL_DIR_NAME:-dir_tst}
11200         # Pool OST targets
11201         local first_ost=0
11202         local last_ost=$(($OSTCOUNT - 1))
11203         local ost_step=2
11204         local ost_list=$(seq $first_ost $ost_step $last_ost)
11205         local ost_range="$first_ost $last_ost $ost_step"
11206         local test_path=$POOL_ROOT/$POOL_DIR_NAME
11207         local file_dir=$POOL_ROOT/file_tst
11208         local subdir=$test_path/subdir
11209
11210         local rc=0
11211         while : ; do
11212                 # former test_200a test_200b
11213                 pool_add $POOL                          || { rc=$? ; break; }
11214                 pool_add_targets  $POOL $ost_range      || { rc=$? ; break; }
11215                 # former test_200c test_200d
11216                 mkdir -p $test_path
11217                 pool_set_dir      $POOL $test_path      || { rc=$? ; break; }
11218                 pool_check_dir    $POOL $test_path      || { rc=$? ; break; }
11219                 mkdir -p $subdir
11220                 pool_check_dir    $POOL $subdir         || { rc=$? ; break; }
11221                 pool_dir_rel_path $POOL $POOL_DIR_NAME $POOL_ROOT \
11222                                                         || { rc=$? ; break; }
11223                 # former test_200e test_200f
11224                 local files=$((OSTCOUNT*3))
11225                 pool_alloc_files  $POOL $test_path $files "$ost_list" \
11226                                                         || { rc=$? ; break; }
11227                 pool_create_files $POOL $file_dir $files "$ost_list" \
11228                                                         || { rc=$? ; break; }
11229                 # former test_200g test_200h
11230                 pool_lfs_df $POOL                       || { rc=$? ; break; }
11231                 pool_file_rel_path $POOL $test_path     || { rc=$? ; break; }
11232
11233                 # former test_201a test_201b test_201c
11234                 pool_remove_first_target $POOL          || { rc=$? ; break; }
11235
11236                 local f=$test_path/$tfile
11237                 pool_remove_all_targets $POOL $f        || { rc=$? ; break; }
11238                 pool_remove $POOL $f                    || { rc=$? ; break; }
11239                 break
11240         done
11241
11242         cleanup_pools
11243         return $rc
11244 }
11245 run_test 200 "OST pools"
11246
11247 # usage: default_attr <count | size | offset>
11248 default_attr() {
11249         $LCTL get_param -n lov.$FSNAME-clilov-\*.stripe${1}
11250 }
11251
11252 # usage: check_default_stripe_attr
11253 check_default_stripe_attr() {
11254         ACTUAL=$($GETSTRIPE $* $DIR/$tdir)
11255         case $1 in
11256         --stripe-count|--count)
11257                 [ -n "$2" ] && EXPECTED=0 || EXPECTED=$(default_attr count);;
11258         --stripe-size|--size)
11259                 [ -n "$2" ] && EXPECTED=0 || EXPECTED=$(default_attr size);;
11260         --stripe-index|--index)
11261                 EXPECTED=-1;;
11262         *)
11263                 error "unknown getstripe attr '$1'"
11264         esac
11265
11266         [ $ACTUAL != $EXPECTED ] &&
11267                 error "$DIR/$tdir has $1 '$ACTUAL', not '$EXPECTED'"
11268 }
11269
11270 test_204a() {
11271         test_mkdir -p $DIR/$tdir
11272         $SETSTRIPE --stripe-count 0 --stripe-size 0 --stripe-index -1 $DIR/$tdir
11273
11274         check_default_stripe_attr --stripe-count
11275         check_default_stripe_attr --stripe-size
11276         check_default_stripe_attr --stripe-index
11277
11278         return 0
11279 }
11280 run_test 204a "Print default stripe attributes ================="
11281
11282 test_204b() {
11283         test_mkdir -p $DIR/$tdir
11284         $SETSTRIPE --stripe-count 1 $DIR/$tdir
11285
11286         check_default_stripe_attr --stripe-size
11287         check_default_stripe_attr --stripe-index
11288
11289         return 0
11290 }
11291 run_test 204b "Print default stripe size and offset  ==========="
11292
11293 test_204c() {
11294         test_mkdir -p $DIR/$tdir
11295         $SETSTRIPE --stripe-size 65536 $DIR/$tdir
11296
11297         check_default_stripe_attr --stripe-count
11298         check_default_stripe_attr --stripe-index
11299
11300         return 0
11301 }
11302 run_test 204c "Print default stripe count and offset ==========="
11303
11304 test_204d() {
11305         test_mkdir -p $DIR/$tdir
11306         $SETSTRIPE --stripe-index 0 $DIR/$tdir
11307
11308         check_default_stripe_attr --stripe-count
11309         check_default_stripe_attr --stripe-size
11310
11311         return 0
11312 }
11313 run_test 204d "Print default stripe count and size ============="
11314
11315 test_204e() {
11316         test_mkdir -p $DIR/$tdir
11317         $SETSTRIPE -d $DIR/$tdir
11318
11319         check_default_stripe_attr --stripe-count --raw
11320         check_default_stripe_attr --stripe-size --raw
11321         check_default_stripe_attr --stripe-index --raw
11322
11323         return 0
11324 }
11325 run_test 204e "Print raw stripe attributes ================="
11326
11327 test_204f() {
11328         test_mkdir -p $DIR/$tdir
11329         $SETSTRIPE --stripe-count 1 $DIR/$tdir
11330
11331         check_default_stripe_attr --stripe-size --raw
11332         check_default_stripe_attr --stripe-index --raw
11333
11334         return 0
11335 }
11336 run_test 204f "Print raw stripe size and offset  ==========="
11337
11338 test_204g() {
11339         test_mkdir -p $DIR/$tdir
11340         $SETSTRIPE --stripe-size 65536 $DIR/$tdir
11341
11342         check_default_stripe_attr --stripe-count --raw
11343         check_default_stripe_attr --stripe-index --raw
11344
11345         return 0
11346 }
11347 run_test 204g "Print raw stripe count and offset ==========="
11348
11349 test_204h() {
11350         test_mkdir -p $DIR/$tdir
11351         $SETSTRIPE --stripe-index 0 $DIR/$tdir
11352
11353         check_default_stripe_attr --stripe-count --raw
11354         check_default_stripe_attr --stripe-size --raw
11355
11356         return 0
11357 }
11358 run_test 204h "Print raw stripe count and size ============="
11359
11360 # Figure out which job scheduler is being used, if any,
11361 # or use a fake one
11362 if [ -n "$SLURM_JOB_ID" ]; then # SLURM
11363         JOBENV=SLURM_JOB_ID
11364 elif [ -n "$LSB_JOBID" ]; then # Load Sharing Facility
11365         JOBENV=LSB_JOBID
11366 elif [ -n "$PBS_JOBID" ]; then # PBS/Maui/Moab
11367         JOBENV=PBS_JOBID
11368 elif [ -n "$LOADL_STEPID" ]; then # LoadLeveller
11369         JOBENV=LOADL_STEP_ID
11370 elif [ -n "$JOB_ID" ]; then # Sun Grid Engine
11371         JOBENV=JOB_ID
11372 else
11373         JOBENV=FAKE_JOBID
11374 fi
11375
11376 verify_jobstats() {
11377         local cmd=$1
11378         local target=$2
11379
11380         # clear old jobstats
11381         do_facet $SINGLEMDS lctl set_param mdt.*.job_stats="clear"
11382         do_facet ost1 lctl set_param obdfilter.*.job_stats="clear"
11383
11384         # use a new JobID for this test, or we might see an old one
11385         [ "$JOBENV" = "FAKE_JOBID" ] && FAKE_JOBID=test_id.$testnum.$RANDOM
11386
11387         JOBVAL=${!JOBENV}
11388         log "Test: $cmd"
11389         log "Using JobID environment variable $JOBENV=$JOBVAL"
11390
11391         if [ $JOBENV = "FAKE_JOBID" ]; then
11392                 FAKE_JOBID=$JOBVAL $cmd
11393         else
11394                 $cmd
11395         fi
11396
11397         if [ "$target" = "mdt" -o "$target" = "both" ]; then
11398                 FACET="$SINGLEMDS" # will need to get MDS number for DNE
11399                 do_facet $FACET lctl get_param mdt.*.job_stats |
11400                         grep $JOBVAL || error "No job stats found on MDT $FACET"
11401         fi
11402         if [ "$target" = "ost" -o "$target" = "both" ]; then
11403                 FACET=ost1
11404                 do_facet $FACET lctl get_param obdfilter.*.job_stats |
11405                         grep $JOBVAL || error "No job stats found on OST $FACET"
11406         fi
11407 }
11408
11409 jobstats_set() {
11410         trap 0
11411         NEW_JOBENV=${1:-$OLD_JOBENV}
11412         do_facet mgs $LCTL conf_param $FSNAME.sys.jobid_var=$NEW_JOBENV
11413         wait_update $HOSTNAME "$LCTL get_param -n jobid_var" $NEW_JOBENV
11414 }
11415
11416 test_205() { # Job stats
11417         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11418         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
11419         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep jobstats)" ] &&
11420                 skip "Server doesn't support jobstats" && return 0
11421         [[ $JOBID_VAR = disable ]] && skip "jobstats is disabled" && return
11422
11423         local cmd
11424         OLD_JOBENV=$($LCTL get_param -n jobid_var)
11425         if [ $OLD_JOBENV != $JOBENV ]; then
11426                 jobstats_set $JOBENV
11427                 trap jobstats_set EXIT
11428         fi
11429
11430         local user=$(do_facet $SINGLEMDS $LCTL --device $MDT0 \
11431                      changelog_register -n)
11432         echo "Registered as changelog user $user"
11433
11434         # mkdir
11435         cmd="mkdir $DIR/$tfile"
11436         verify_jobstats "$cmd" "mdt"
11437         # rmdir
11438         cmd="rm -fr $DIR/$tfile"
11439         verify_jobstats "$cmd" "mdt"
11440         # mknod
11441         cmd="mknod $DIR/$tfile c 1 3"
11442         verify_jobstats "$cmd" "mdt"
11443         # unlink
11444         cmd="rm -f $DIR/$tfile"
11445         verify_jobstats "$cmd" "mdt"
11446         # open & close
11447         cmd="$SETSTRIPE -i 0 -c 1 $DIR/$tfile"
11448         verify_jobstats "$cmd" "mdt"
11449         # setattr
11450         cmd="touch $DIR/$tfile"
11451         verify_jobstats "$cmd" "both"
11452         # write
11453         cmd="dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 oflag=sync"
11454         verify_jobstats "$cmd" "ost"
11455         # read
11456         cmd="dd if=$DIR/$tfile of=/dev/null bs=1M count=1 iflag=direct"
11457         verify_jobstats "$cmd" "ost"
11458         # truncate
11459         cmd="$TRUNCATE $DIR/$tfile 0"
11460         verify_jobstats "$cmd" "both"
11461         # rename
11462         cmd="mv -f $DIR/$tfile $DIR/jobstats_test_rename"
11463         verify_jobstats "$cmd" "mdt"
11464
11465         # Ensure that jobid are present in changelog (if supported by MDS)
11466         if [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.6.52) ]
11467         then
11468                 $LFS changelog $MDT0 | tail -9
11469                 jobids=$($LFS changelog $MDT0 | tail -9 | grep -c "j=")
11470                 [ $jobids -eq 9 ] ||
11471                         error "Wrong changelog jobid count $jobids != 9"
11472
11473                 # LU-5862
11474                 JOBENV="disable"
11475                 jobstats_set $JOBENV
11476                 touch $DIR/$tfile
11477                 $LFS changelog $MDT0 | tail -1
11478                 jobids=$($LFS changelog $MDT0 | tail -1 | grep -c "j=")
11479                 [ $jobids -eq 0 ] ||
11480                         error "Unexpected jobids when jobid_var=$JOBENV"
11481         fi
11482
11483         # cleanup
11484         rm -f $DIR/jobstats_test_rename
11485
11486         [ $OLD_JOBENV != $JOBENV ] && jobstats_set $OLD_JOBENV
11487 }
11488 run_test 205 "Verify job stats"
11489
11490 # LU-1480, LU-1773 and LU-1657
11491 test_206() {
11492         mkdir -p $DIR/$tdir
11493         $SETSTRIPE -c -1 $DIR/$tdir
11494 #define OBD_FAIL_LOV_INIT 0x1403
11495         $LCTL set_param fail_loc=0xa0001403
11496         $LCTL set_param fail_val=1
11497         touch $DIR/$tdir/$tfile || true
11498 }
11499 run_test 206 "fail lov_init_raid0() doesn't lbug"
11500
11501 test_207a() {
11502         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((RANDOM%10+1))
11503         local fsz=`stat -c %s $DIR/$tfile`
11504         cancel_lru_locks mdc
11505
11506         # do not return layout in getattr intent
11507 #define OBD_FAIL_MDS_NO_LL_GETATTR 0x170
11508         $LCTL set_param fail_loc=0x170
11509         local sz=`stat -c %s $DIR/$tfile`
11510
11511         [ $fsz -eq $sz ] || error "file size expected $fsz, actual $sz"
11512
11513         rm -rf $DIR/$tfile
11514 }
11515 run_test 207a "can refresh layout at glimpse"
11516
11517 test_207b() {
11518         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((RANDOM%10+1))
11519         local cksum=`md5sum $DIR/$tfile`
11520         local fsz=`stat -c %s $DIR/$tfile`
11521         cancel_lru_locks mdc
11522         cancel_lru_locks osc
11523
11524         # do not return layout in getattr intent
11525 #define OBD_FAIL_MDS_NO_LL_OPEN 0x171
11526         $LCTL set_param fail_loc=0x171
11527
11528         # it will refresh layout after the file is opened but before read issues
11529         echo checksum is "$cksum"
11530         echo "$cksum" |md5sum -c --quiet || error "file differs"
11531
11532         rm -rf $DIR/$tfile
11533 }
11534 run_test 207b "can refresh layout at open"
11535
11536 test_208() {
11537         # FIXME: in this test suite, only RD lease is used. This is okay
11538         # for now as only exclusive open is supported. After generic lease
11539         # is done, this test suite should be revised. - Jinshan
11540
11541         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.4.52) ]] ||
11542                 { skip "Need MDS version at least 2.4.52"; return 0; }
11543         remote_mds_nodsh && skip "remote MDS with nodsh" && return
11544
11545         echo "==== test 1: verify get lease work"
11546         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:eRE+eU || error "get lease error"
11547
11548         echo "==== test 2: verify lease can be broken by upcoming open"
11549         $MULTIOP $DIR/$tfile oO_RDONLY:eR_E-eUc &
11550         local PID=$!
11551         sleep 1
11552
11553         $MULTIOP $DIR/$tfile oO_RDONLY:c
11554         kill -USR1 $PID && wait $PID || error "break lease error"
11555
11556         echo "==== test 3: verify lease can't be granted if an open already exists"
11557         $MULTIOP $DIR/$tfile oO_RDONLY:_c &
11558         local PID=$!
11559         sleep 1
11560
11561         $MULTIOP $DIR/$tfile oO_RDONLY:eReUc && error "apply lease should fail"
11562         kill -USR1 $PID && wait $PID || error "open file error"
11563
11564         echo "==== test 4: lease can sustain over recovery"
11565         $MULTIOP $DIR/$tfile oO_RDONLY:eR_E+eUc &
11566         PID=$!
11567         sleep 1
11568
11569         fail mds1
11570
11571         kill -USR1 $PID && wait $PID || error "lease broken over recovery"
11572
11573         echo "==== test 5: lease broken can't be regained by replay"
11574         $MULTIOP $DIR/$tfile oO_RDONLY:eR_E-eUc &
11575         PID=$!
11576         sleep 1
11577
11578         # open file to break lease and then recovery
11579         $MULTIOP $DIR/$tfile oO_RDWR:c || error "open file error"
11580         fail mds1
11581
11582         kill -USR1 $PID && wait $PID || error "lease not broken over recovery"
11583
11584         rm -f $DIR/$tfile
11585 }
11586 run_test 208 "Exclusive open"
11587
11588 test_209() {
11589         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep disp_stripe)" ] &&
11590                 skip_env "must have disp_stripe" && return
11591
11592         touch $DIR/$tfile
11593         sync; sleep 5; sync;
11594
11595         echo 3 > /proc/sys/vm/drop_caches
11596         req_before=$(awk '/ptlrpc_cache / { print $2 }' /proc/slabinfo)
11597
11598         # open/close 500 times
11599         for i in $(seq 500); do
11600                 cat $DIR/$tfile
11601         done
11602
11603         echo 3 > /proc/sys/vm/drop_caches
11604         req_after=$(awk '/ptlrpc_cache / { print $2 }' /proc/slabinfo)
11605
11606         echo "before: $req_before, after: $req_after"
11607         [ $((req_after - req_before)) -ge 300 ] &&
11608                 error "open/close requests are not freed"
11609         return 0
11610 }
11611 run_test 209 "read-only open/close requests should be freed promptly"
11612
11613 test_212() {
11614         size=`date +%s`
11615         size=$((size % 8192 + 1))
11616         dd if=/dev/urandom of=$DIR/f212 bs=1k count=$size
11617         sendfile $DIR/f212 $DIR/f212.xyz || error "sendfile wrong"
11618         rm -f $DIR/f212 $DIR/f212.xyz
11619 }
11620 run_test 212 "Sendfile test ============================================"
11621
11622 test_213() {
11623         dd if=/dev/zero of=$DIR/$tfile bs=4k count=4
11624         cancel_lru_locks osc
11625         lctl set_param fail_loc=0x8000040f
11626         # generate a read lock
11627         cat $DIR/$tfile > /dev/null
11628         # write to the file, it will try to cancel the above read lock.
11629         cat /etc/hosts >> $DIR/$tfile
11630 }
11631 run_test 213 "OSC lock completion and cancel race don't crash - bug 18829"
11632
11633 test_214() { # for bug 20133
11634         mkdir -p $DIR/$tdir/d214c || error "mkdir $DIR/$tdir/d214c failed"
11635         for (( i=0; i < 340; i++ )) ; do
11636                 touch $DIR/$tdir/d214c/a$i
11637         done
11638
11639         ls -l $DIR/$tdir || error "ls -l $DIR/d214p failed"
11640         mv $DIR/$tdir/d214c $DIR/ || error "mv $DIR/d214p/d214c $DIR/ failed"
11641         ls $DIR/d214c || error "ls $DIR/d214c failed"
11642         rm -rf $DIR/$tdir || error "rm -rf $DIR/d214* failed"
11643         rm -rf $DIR/d214* || error "rm -rf $DIR/d214* failed"
11644 }
11645 run_test 214 "hash-indexed directory test - bug 20133"
11646
11647 # having "abc" as 1st arg, creates $TMP/lnet_abc.out and $TMP/lnet_abc.sys
11648 create_lnet_proc_files() {
11649         lctl get_param -n $1 >$TMP/lnet_$1.out || error "cannot read lnet.$1"
11650         sysctl lnet.$1 >$TMP/lnet_$1.sys_tmp || error "cannot read lnet.$1"
11651
11652         sed "s/^lnet.$1\ =\ //g" "$TMP/lnet_$1.sys_tmp" >$TMP/lnet_$1.sys
11653         rm -f "$TMP/lnet_$1.sys_tmp"
11654 }
11655
11656 # counterpart of create_lnet_proc_files
11657 remove_lnet_proc_files() {
11658         rm -f $TMP/lnet_$1.out $TMP/lnet_$1.sys
11659 }
11660
11661 # uses 1st arg as trailing part of filename, 2nd arg as description for reports,
11662 # 3rd arg as regexp for body
11663 check_lnet_proc_stats() {
11664         local l=$(cat "$TMP/lnet_$1" |wc -l)
11665         [ $l = 1 ] || (cat "$TMP/lnet_$1" && error "$2 is not of 1 line: $l")
11666
11667         grep -E "$3" "$TMP/lnet_$1" || (cat "$TMP/lnet_$1" && error "$2 misformatted")
11668 }
11669
11670 # uses 1st arg as trailing part of filename, 2nd arg as description for reports,
11671 # 3rd arg as regexp for body, 4th arg as regexp for 1st line, 5th arg is
11672 # optional and can be regexp for 2nd line (lnet.routes case)
11673 check_lnet_proc_entry() {
11674         local blp=2          # blp stands for 'position of 1st line of body'
11675         [ -z "$5" ] || blp=3 # lnet.routes case
11676
11677         local l=$(cat "$TMP/lnet_$1" |wc -l)
11678         # subtracting one from $blp because the body can be empty
11679         [ "$l" -ge "$(($blp - 1))" ] || (cat "$TMP/lnet_$1" && error "$2 is too short: $l")
11680
11681         sed -n '1 p' "$TMP/lnet_$1" |grep -E "$4" >/dev/null ||
11682                 (cat "$TMP/lnet_$1" && error "1st line of $2 misformatted")
11683
11684         [ "$5" = "" ] || sed -n '2 p' "$TMP/lnet_$1" |grep -E "$5" >/dev/null ||
11685                 (cat "$TMP/lnet_$1" && error "2nd line of $2 misformatted")
11686
11687         # bail out if any unexpected line happened
11688         sed -n "$blp p" "$TMP/lnet_$1" | grep -Ev "$3"
11689         [ "$?" != 0 ] || error "$2 misformatted"
11690 }
11691
11692 test_215() { # for bugs 18102, 21079, 21517
11693         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11694         local N='(0|[1-9][0-9]*)'       # non-negative numeric
11695         local P='[1-9][0-9]*'           # positive numeric
11696         local I='(0|-?[1-9][0-9]*|NA)'  # any numeric (0 | >0 | <0) or NA if no value
11697         local NET='[a-z][a-z0-9]*'      # LNET net like o2ib2
11698         local ADDR='[0-9.]+'            # LNET addr like 10.0.0.1
11699         local NID="$ADDR@$NET"          # LNET nid like 10.0.0.1@o2ib2
11700
11701         local L1 # regexp for 1st line
11702         local L2 # regexp for 2nd line (optional)
11703         local BR # regexp for the rest (body)
11704
11705         # lnet.stats should look as 11 space-separated non-negative numerics
11706         BR="^$N $N $N $N $N $N $N $N $N $N $N$"
11707         create_lnet_proc_files "stats"
11708         check_lnet_proc_stats "stats.sys" "lnet.stats" "$BR"
11709         remove_lnet_proc_files "stats"
11710
11711         # lnet.routes should look like this:
11712         # Routing disabled/enabled
11713         # net hops priority state router
11714         # where net is a string like tcp0, hops > 0, priority >= 0,
11715         # state is up/down,
11716         # router is a string like 192.168.1.1@tcp2
11717         L1="^Routing (disabled|enabled)$"
11718         L2="^net +hops +priority +state +router$"
11719         BR="^$NET +$N +(0|1) +(up|down) +$NID$"
11720         create_lnet_proc_files "routes"
11721         check_lnet_proc_entry "routes.sys" "lnet.routes" "$BR" "$L1" "$L2"
11722         remove_lnet_proc_files "routes"
11723
11724         # lnet.routers should look like this:
11725         # ref rtr_ref alive_cnt state last_ping ping_sent deadline down_ni router
11726         # where ref > 0, rtr_ref > 0, alive_cnt >= 0, state is up/down,
11727         # last_ping >= 0, ping_sent is boolean (0/1), deadline and down_ni are
11728         # numeric (0 or >0 or <0), router is a string like 192.168.1.1@tcp2
11729         L1="^ref +rtr_ref +alive_cnt +state +last_ping +ping_sent +deadline +down_ni +router$"
11730         BR="^$P +$P +$N +(up|down) +$N +(0|1) +$I +$I +$NID$"
11731         create_lnet_proc_files "routers"
11732         check_lnet_proc_entry "routers.sys" "lnet.routers" "$BR" "$L1"
11733         remove_lnet_proc_files "routers"
11734
11735         # lnet.peers should look like this:
11736         # nid refs state last max rtr min tx min queue
11737         # where nid is a string like 192.168.1.1@tcp2, refs > 0,
11738         # state is up/down/NA, max >= 0. last, rtr, min, tx, min are
11739         # numeric (0 or >0 or <0), queue >= 0.
11740         L1="^nid +refs +state +last +max +rtr +min +tx +min +queue$"
11741         BR="^$NID +$P +(up|down|NA) +$I +$N +$I +$I +$I +$I +$N$"
11742         create_lnet_proc_files "peers"
11743         check_lnet_proc_entry "peers.sys" "lnet.peers" "$BR" "$L1"
11744         remove_lnet_proc_files "peers"
11745
11746         # lnet.buffers  should look like this:
11747         # pages count credits min
11748         # where pages >=0, count >=0, credits and min are numeric (0 or >0 or <0)
11749         L1="^pages +count +credits +min$"
11750         BR="^ +$N +$N +$I +$I$"
11751         create_lnet_proc_files "buffers"
11752         check_lnet_proc_entry "buffers.sys" "lnet.buffers" "$BR" "$L1"
11753         remove_lnet_proc_files "buffers"
11754
11755         # lnet.nis should look like this:
11756         # nid status alive refs peer rtr max tx min
11757         # where nid is a string like 192.168.1.1@tcp2, status is up/down,
11758         # alive is numeric (0 or >0 or <0), refs >= 0, peer >= 0,
11759         # rtr >= 0, max >=0, tx and min are numeric (0 or >0 or <0).
11760         L1="^nid +status +alive +refs +peer +rtr +max +tx +min$"
11761         BR="^$NID +(up|down) +$I +$N +$N +$N +$N +$I +$I$"
11762         create_lnet_proc_files "nis"
11763         check_lnet_proc_entry "nis.sys" "lnet.nis" "$BR" "$L1"
11764         remove_lnet_proc_files "nis"
11765
11766         # can we successfully write to lnet.stats?
11767         lctl set_param -n stats=0 || error "cannot write to lnet.stats"
11768         sysctl -w lnet.stats=0 || error "cannot write to lnet.stats"
11769 }
11770 run_test 215 "lnet exists and has proper content - bugs 18102, 21079, 21517"
11771
11772 test_216() { # bug 20317
11773         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11774         remote_ost_nodsh && skip "remote OST with nodsh" && return
11775
11776         local node
11777         local facets=$(get_facets OST)
11778         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
11779
11780         save_lustre_params client "osc.*.contention_seconds" > $p
11781         save_lustre_params $facets \
11782                 "ldlm.namespaces.filter-*.max_nolock_bytes" >> $p
11783         save_lustre_params $facets \
11784                 "ldlm.namespaces.filter-*.contended_locks" >> $p
11785         save_lustre_params $facets \
11786                 "ldlm.namespaces.filter-*.contention_seconds" >> $p
11787         clear_osc_stats
11788
11789         # agressive lockless i/o settings
11790         for node in $(osts_nodes); do
11791                 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'
11792         done
11793         lctl set_param -n osc.*.contention_seconds 60
11794
11795         $DIRECTIO write $DIR/$tfile 0 10 4096
11796         $CHECKSTAT -s 40960 $DIR/$tfile
11797
11798         # disable lockless i/o
11799         for node in $(osts_nodes); do
11800                 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'
11801         done
11802         lctl set_param -n osc.*.contention_seconds 0
11803         clear_osc_stats
11804
11805         dd if=/dev/zero of=$DIR/$tfile count=0
11806         $CHECKSTAT -s 0 $DIR/$tfile
11807
11808         restore_lustre_params <$p
11809         rm -f $p
11810         rm $DIR/$tfile
11811 }
11812 run_test 216 "check lockless direct write works and updates file size and kms correctly"
11813
11814 test_217() { # bug 22430
11815         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11816         local node
11817         local nid
11818
11819         for node in $(nodes_list); do
11820                 nid=$(host_nids_address $node $NETTYPE)
11821                 if [[ $nid = *-* ]] ; then
11822                         echo "lctl ping $nid@$NETTYPE"
11823                         lctl ping $nid@$NETTYPE
11824                 else
11825                         echo "skipping $node (no hyphen detected)"
11826                 fi
11827         done
11828 }
11829 run_test 217 "check lctl ping for hostnames with hiphen ('-')"
11830
11831 test_218() {
11832        # do directio so as not to populate the page cache
11833        log "creating a 10 Mb file"
11834        $MULTIOP $DIR/$tfile oO_CREAT:O_DIRECT:O_RDWR:w$((10*1048576))c || error "multiop failed while creating a file"
11835        log "starting reads"
11836        dd if=$DIR/$tfile of=/dev/null bs=4096 &
11837        log "truncating the file"
11838        $MULTIOP $DIR/$tfile oO_TRUNC:c || error "multiop failed while truncating the file"
11839        log "killing dd"
11840        kill %+ || true # reads might have finished
11841        echo "wait until dd is finished"
11842        wait
11843        log "removing the temporary file"
11844        rm -rf $DIR/$tfile || error "tmp file removal failed"
11845 }
11846 run_test 218 "parallel read and truncate should not deadlock ======================="
11847
11848 test_219() {
11849         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11850         # write one partial page
11851         dd if=/dev/zero of=$DIR/$tfile bs=1024 count=1
11852         # set no grant so vvp_io_commit_write will do sync write
11853         $LCTL set_param fail_loc=0x411
11854         # write a full page at the end of file
11855         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 seek=1 conv=notrunc
11856
11857         $LCTL set_param fail_loc=0
11858         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 seek=3
11859         $LCTL set_param fail_loc=0x411
11860         dd if=/dev/zero of=$DIR/$tfile bs=1024 count=1 seek=2 conv=notrunc
11861
11862         # LU-4201
11863         dd if=/dev/zero of=$DIR/$tfile-2 bs=1024 count=1
11864         $CHECKSTAT -s 1024 $DIR/$tfile-2 || error "checkstat wrong size"
11865 }
11866 run_test 219 "LU-394: Write partial won't cause uncontiguous pages vec at LND"
11867
11868 test_220() { #LU-325
11869         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11870         remote_ost_nodsh && skip "remote OST with nodsh" && return
11871         local OSTIDX=0
11872
11873         test_mkdir -p $DIR/$tdir
11874         local OST=$($LFS osts | grep ${OSTIDX}": " | \
11875                 awk '{print $2}' | sed -e 's/_UUID$//')
11876
11877         # on the mdt's osc
11878         local mdtosc_proc1=$(get_mdtosc_proc_path $SINGLEMDS $OST)
11879         local last_id=$(do_facet $SINGLEMDS lctl get_param -n \
11880                         osc.$mdtosc_proc1.prealloc_last_id)
11881         local next_id=$(do_facet $SINGLEMDS lctl get_param -n \
11882                         osc.$mdtosc_proc1.prealloc_next_id)
11883
11884         $LFS df -i
11885
11886         do_facet ost$((OSTIDX + 1)) lctl set_param fail_val=-1
11887         #define OBD_FAIL_OST_ENOINO              0x229
11888         do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=0x229
11889         do_facet mgs $LCTL pool_new $FSNAME.$TESTNAME || return 1
11890         do_facet mgs $LCTL pool_add $FSNAME.$TESTNAME $OST || return 2
11891
11892         $SETSTRIPE $DIR/$tdir -i $OSTIDX -c 1 -p $FSNAME.$TESTNAME
11893
11894         MDSOBJS=$((last_id - next_id))
11895         echo "preallocated objects on MDS is $MDSOBJS" "($last_id - $next_id)"
11896
11897         blocks=$($LFS df $MOUNT | awk '($1 == '$OSTIDX') { print $4 }')
11898         echo "OST still has $count kbytes free"
11899
11900         echo "create $MDSOBJS files @next_id..."
11901         createmany -o $DIR/$tdir/f $MDSOBJS || return 3
11902
11903         local last_id2=$(do_facet mds${MDSIDX} lctl get_param -n \
11904                         osc.$mdtosc_proc1.prealloc_last_id)
11905         local next_id2=$(do_facet mds${MDSIDX} lctl get_param -n \
11906                         osc.$mdtosc_proc1.prealloc_next_id)
11907
11908         echo "after creation, last_id=$last_id2, next_id=$next_id2"
11909         $LFS df -i
11910
11911         echo "cleanup..."
11912
11913         do_facet ost$((OSTIDX + 1)) lctl set_param fail_val=0
11914         do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=0
11915
11916         do_facet mgs $LCTL pool_remove $FSNAME.$TESTNAME $OST || return 4
11917         do_facet mgs $LCTL pool_destroy $FSNAME.$TESTNAME || return 5
11918         echo "unlink $MDSOBJS files @$next_id..."
11919         unlinkmany $DIR/$tdir/f $MDSOBJS || return 6
11920 }
11921 run_test 220 "preallocated MDS objects still used if ENOSPC from OST"
11922
11923 test_221() {
11924         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11925         dd if=`which date` of=$MOUNT/date oflag=sync
11926         chmod +x $MOUNT/date
11927
11928         #define OBD_FAIL_LLITE_FAULT_TRUNC_RACE  0x1401
11929         $LCTL set_param fail_loc=0x80001401
11930
11931         $MOUNT/date > /dev/null
11932         rm -f $MOUNT/date
11933 }
11934 run_test 221 "make sure fault and truncate race to not cause OOM"
11935
11936 test_222a () {
11937         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11938        rm -rf $DIR/$tdir
11939        test_mkdir -p $DIR/$tdir
11940        $SETSTRIPE -c 1 -i 0 $DIR/$tdir
11941        createmany -o $DIR/$tdir/$tfile 10
11942        cancel_lru_locks mdc
11943        cancel_lru_locks osc
11944        #define OBD_FAIL_LDLM_AGL_DELAY           0x31a
11945        $LCTL set_param fail_loc=0x31a
11946        ls -l $DIR/$tdir > /dev/null || error "AGL for ls failed"
11947        $LCTL set_param fail_loc=0
11948        rm -r $DIR/$tdir
11949 }
11950 run_test 222a "AGL for ls should not trigger CLIO lock failure ================"
11951
11952 test_222b () {
11953         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11954        rm -rf $DIR/$tdir
11955        test_mkdir -p $DIR/$tdir
11956        $SETSTRIPE -c 1 -i 0 $DIR/$tdir
11957        createmany -o $DIR/$tdir/$tfile 10
11958        cancel_lru_locks mdc
11959        cancel_lru_locks osc
11960        #define OBD_FAIL_LDLM_AGL_DELAY           0x31a
11961        $LCTL set_param fail_loc=0x31a
11962        rm -r $DIR/$tdir || "AGL for rmdir failed"
11963        $LCTL set_param fail_loc=0
11964 }
11965 run_test 222b "AGL for rmdir should not trigger CLIO lock failure ============="
11966
11967 test_223 () {
11968         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11969        rm -rf $DIR/$tdir
11970        test_mkdir -p $DIR/$tdir
11971        $SETSTRIPE -c 1 -i 0 $DIR/$tdir
11972        createmany -o $DIR/$tdir/$tfile 10
11973        cancel_lru_locks mdc
11974        cancel_lru_locks osc
11975        #define OBD_FAIL_LDLM_AGL_NOLOCK          0x31b
11976        $LCTL set_param fail_loc=0x31b
11977        ls -l $DIR/$tdir > /dev/null || error "reenqueue failed"
11978        $LCTL set_param fail_loc=0
11979        rm -r $DIR/$tdir
11980 }
11981 run_test 223 "osc reenqueue if without AGL lock granted ======================="
11982
11983 test_224a() { # LU-1039, MRP-303
11984         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11985         #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB   0x508
11986         $LCTL set_param fail_loc=0x508
11987         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 conv=fsync
11988         $LCTL set_param fail_loc=0
11989         df $DIR
11990 }
11991 run_test 224a "Don't panic on bulk IO failure"
11992
11993 test_224b() { # LU-1039, MRP-303
11994         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11995         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1
11996         cancel_lru_locks osc
11997         #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB2   0x515
11998         $LCTL set_param fail_loc=0x515
11999         dd of=/dev/null if=$DIR/$tfile bs=4096 count=1
12000         $LCTL set_param fail_loc=0
12001         df $DIR
12002 }
12003 run_test 224b "Don't panic on bulk IO failure"
12004
12005 MDSSURVEY=${MDSSURVEY:-$(which mds-survey 2>/dev/null || true)}
12006 test_225a () {
12007         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12008         if [ -z ${MDSSURVEY} ]; then
12009               skip_env "mds-survey not found" && return
12010         fi
12011
12012         [ $MDSCOUNT -ge 2 ] &&
12013                 skip "skipping now for more than one MDT" && return
12014
12015        [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ] ||
12016             { skip "Need MDS version at least 2.2.51"; return; }
12017
12018        local mds=$(facet_host $SINGLEMDS)
12019        local target=$(do_nodes $mds 'lctl dl' | \
12020                       awk "{if (\$2 == \"UP\" && \$3 == \"mdt\") {print \$4}}")
12021
12022        local cmd1="file_count=1000 thrhi=4"
12023        local cmd2="dir_count=2 layer=mdd stripe_count=0"
12024        local cmd3="rslt_loc=${TMP} targets=\"$mds:$target\" $MDSSURVEY"
12025        local cmd="$cmd1 $cmd2 $cmd3"
12026
12027        rm -f ${TMP}/mds_survey*
12028        echo + $cmd
12029        eval $cmd || error "mds-survey with zero-stripe failed"
12030        cat ${TMP}/mds_survey*
12031        rm -f ${TMP}/mds_survey*
12032 }
12033 run_test 225a "Metadata survey sanity with zero-stripe"
12034
12035 test_225b () {
12036         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12037
12038         if [ -z ${MDSSURVEY} ]; then
12039               skip_env "mds-survey not found" && return
12040         fi
12041         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ] ||
12042             { skip "Need MDS version at least 2.2.51"; return; }
12043
12044         if [ $($LCTL dl | grep -c osc) -eq 0 ]; then
12045               skip_env "Need to mount OST to test" && return
12046         fi
12047
12048         [ $MDSCOUNT -ge 2 ] &&
12049                 skip "skipping now for more than one MDT" && return
12050        local mds=$(facet_host $SINGLEMDS)
12051        local target=$(do_nodes $mds 'lctl dl' | \
12052                       awk "{if (\$2 == \"UP\" && \$3 == \"mdt\") {print \$4}}")
12053
12054        local cmd1="file_count=1000 thrhi=4"
12055        local cmd2="dir_count=2 layer=mdd stripe_count=1"
12056        local cmd3="rslt_loc=${TMP} targets=\"$mds:$target\" $MDSSURVEY"
12057        local cmd="$cmd1 $cmd2 $cmd3"
12058
12059        rm -f ${TMP}/mds_survey*
12060        echo + $cmd
12061        eval $cmd || error "mds-survey with stripe_count failed"
12062        cat ${TMP}/mds_survey*
12063        rm -f ${TMP}/mds_survey*
12064 }
12065 run_test 225b "Metadata survey sanity with stripe_count = 1"
12066
12067 mcreate_path2fid () {
12068         local mode=$1
12069         local major=$2
12070         local minor=$3
12071         local name=$4
12072         local desc=$5
12073         local path=$DIR/$tdir/$name
12074         local fid
12075         local rc
12076         local fid_path
12077
12078         $MCREATE --mode=$1 --major=$2 --minor=$3 $path ||
12079                 error "cannot create $desc"
12080
12081         fid=$($LFS path2fid $path | tr -d '[' | tr -d ']')
12082         rc=$?
12083         [ $rc -ne 0 ] && error "cannot get fid of a $desc"
12084
12085         fid_path=$($LFS fid2path $MOUNT $fid)
12086         rc=$?
12087         [ $rc -ne 0 ] && error "cannot get path of $desc by $DIR $path $fid"
12088
12089         [ "$path" == "$fid_path" ] ||
12090                 error "fid2path returned $fid_path, expected $path"
12091
12092         echo "pass with $path and $fid"
12093 }
12094
12095 test_226a () {
12096         rm -rf $DIR/$tdir
12097         mkdir -p $DIR/$tdir
12098
12099         mcreate_path2fid 0010666 0 0 fifo "FIFO"
12100         mcreate_path2fid 0020666 1 3 null "character special file (null)"
12101         mcreate_path2fid 0020666 1 255 none "character special file (no device)"
12102         mcreate_path2fid 0040666 0 0 dir "directory"
12103         mcreate_path2fid 0060666 7 0 loop0 "block special file (loop)"
12104         mcreate_path2fid 0100666 0 0 file "regular file"
12105         mcreate_path2fid 0120666 0 0 link "symbolic link"
12106         mcreate_path2fid 0140666 0 0 sock "socket"
12107 }
12108 run_test 226a "call path2fid and fid2path on files of all type"
12109
12110 test_226b () {
12111         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
12112         rm -rf $DIR/$tdir
12113         local MDTIDX=1
12114
12115         mkdir -p $DIR/$tdir
12116         $LFS setdirstripe -i $MDTIDX $DIR/$tdir/remote_dir ||
12117                 error "create remote directory failed"
12118         mcreate_path2fid 0010666 0 0 "remote_dir/fifo" "FIFO"
12119         mcreate_path2fid 0020666 1 3 "remote_dir/null" \
12120                                 "character special file (null)"
12121         mcreate_path2fid 0020666 1 255 "remote_dir/none" \
12122                                 "character special file (no device)"
12123         mcreate_path2fid 0040666 0 0 "remote_dir/dir" "directory"
12124         mcreate_path2fid 0060666 7 0 "remote_dir/loop0" \
12125                                 "block special file (loop)"
12126         mcreate_path2fid 0100666 0 0 "remote_dir/file" "regular file"
12127         mcreate_path2fid 0120666 0 0 "remote_dir/link" "symbolic link"
12128         mcreate_path2fid 0140666 0 0 "remote_dir/sock" "socket"
12129 }
12130 run_test 226b "call path2fid and fid2path on files of all type under remote dir"
12131
12132 # LU-1299 Executing or running ldd on a truncated executable does not
12133 # cause an out-of-memory condition.
12134 test_227() {
12135         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12136         [ -z "$(which ldd)" ] && skip "should have ldd tool" && return
12137         dd if=$(which date) of=$MOUNT/date bs=1k count=1
12138         chmod +x $MOUNT/date
12139
12140         $MOUNT/date > /dev/null
12141         ldd $MOUNT/date > /dev/null
12142         rm -f $MOUNT/date
12143 }
12144 run_test 227 "running truncated executable does not cause OOM"
12145
12146 # LU-1512 try to reuse idle OI blocks
12147 test_228a() {
12148         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12149         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12150         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
12151                 skip "non-ldiskfs backend" && return
12152
12153         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
12154         local myDIR=$DIR/$tdir
12155
12156         mkdir -p $myDIR
12157         #define OBD_FAIL_SEQ_EXHAUST             0x1002
12158         $LCTL set_param fail_loc=0x80001002
12159         createmany -o $myDIR/t- 10000
12160         $LCTL set_param fail_loc=0
12161         # The guard is current the largest FID holder
12162         touch $myDIR/guard
12163         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
12164                     tr -d '[')
12165         local IDX=$(($SEQ % 64))
12166
12167         do_facet $SINGLEMDS sync
12168         # Make sure journal flushed.
12169         sleep 6
12170         local blk1=$(do_facet $SINGLEMDS \
12171                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
12172                      grep Blockcount | awk '{print $4}')
12173
12174         # Remove old files, some OI blocks will become idle.
12175         unlinkmany $myDIR/t- 10000
12176         # Create new files, idle OI blocks should be reused.
12177         createmany -o $myDIR/t- 2000
12178         do_facet $SINGLEMDS sync
12179         # Make sure journal flushed.
12180         sleep 6
12181         local blk2=$(do_facet $SINGLEMDS \
12182                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
12183                      grep Blockcount | awk '{print $4}')
12184
12185         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
12186 }
12187 run_test 228a "try to reuse idle OI blocks"
12188
12189 test_228b() {
12190         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12191         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12192         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
12193                 skip "non-ldiskfs backend" && return
12194
12195         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
12196         local myDIR=$DIR/$tdir
12197
12198         mkdir -p $myDIR
12199         #define OBD_FAIL_SEQ_EXHAUST             0x1002
12200         $LCTL set_param fail_loc=0x80001002
12201         createmany -o $myDIR/t- 10000
12202         $LCTL set_param fail_loc=0
12203         # The guard is current the largest FID holder
12204         touch $myDIR/guard
12205         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
12206                     tr -d '[')
12207         local IDX=$(($SEQ % 64))
12208
12209         do_facet $SINGLEMDS sync
12210         # Make sure journal flushed.
12211         sleep 6
12212         local blk1=$(do_facet $SINGLEMDS \
12213                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
12214                      grep Blockcount | awk '{print $4}')
12215
12216         # Remove old files, some OI blocks will become idle.
12217         unlinkmany $myDIR/t- 10000
12218
12219         # stop the MDT
12220         stop $SINGLEMDS || error "Fail to stop MDT."
12221         # remount the MDT
12222         start $SINGLEMDS $MDT_DEV $MDS_MOUNT_OPTS || error "Fail to start MDT."
12223
12224         df $MOUNT || error "Fail to df."
12225         # Create new files, idle OI blocks should be reused.
12226         createmany -o $myDIR/t- 2000
12227         do_facet $SINGLEMDS sync
12228         # Make sure journal flushed.
12229         sleep 6
12230         local blk2=$(do_facet $SINGLEMDS \
12231                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
12232                      grep Blockcount | awk '{print $4}')
12233
12234         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
12235 }
12236 run_test 228b "idle OI blocks can be reused after MDT restart"
12237
12238 #LU-1881
12239 test_228c() {
12240         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12241         remote_mds_nodsh && skip "remote MDS with nodsh" && return
12242         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
12243                 skip "non-ldiskfs backend" && return
12244
12245         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
12246         local myDIR=$DIR/$tdir
12247
12248         mkdir -p $myDIR
12249         #define OBD_FAIL_SEQ_EXHAUST             0x1002
12250         $LCTL set_param fail_loc=0x80001002
12251         # 20000 files can guarantee there are index nodes in the OI file
12252         createmany -o $myDIR/t- 20000
12253         $LCTL set_param fail_loc=0
12254         # The guard is current the largest FID holder
12255         touch $myDIR/guard
12256         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
12257                     tr -d '[')
12258         local IDX=$(($SEQ % 64))
12259
12260         do_facet $SINGLEMDS sync
12261         # Make sure journal flushed.
12262         sleep 6
12263         local blk1=$(do_facet $SINGLEMDS \
12264                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
12265                      grep Blockcount | awk '{print $4}')
12266
12267         # Remove old files, some OI blocks will become idle.
12268         unlinkmany $myDIR/t- 20000
12269         rm -f $myDIR/guard
12270         # The OI file should become empty now
12271
12272         # Create new files, idle OI blocks should be reused.
12273         createmany -o $myDIR/t- 2000
12274         do_facet $SINGLEMDS sync
12275         # Make sure journal flushed.
12276         sleep 6
12277         local blk2=$(do_facet $SINGLEMDS \
12278                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
12279                      grep Blockcount | awk '{print $4}')
12280
12281         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
12282 }
12283 run_test 228c "NOT shrink the last entry in OI index node to recycle idle leaf"
12284
12285 test_229() { # LU-2482, LU-3448
12286         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.53) ] &&
12287                 skip "No HSM support on MDS of $(get_lustre_version)," \
12288                          "need 2.4.53 at least" && return
12289         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12290         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
12291
12292         rm -f $DIR/$tfile
12293
12294         # Create a file with a released layout and stripe count 2.
12295         $MULTIOP $DIR/$tfile H2c ||
12296                 error "failed to create file with released layout"
12297
12298         $GETSTRIPE -v $DIR/$tfile
12299
12300         local pattern=$($GETSTRIPE -L $DIR/$tfile)
12301         [ X"$pattern" = X"80000001" ] || error "pattern error ($pattern)"
12302
12303         local stripe_count=$($GETSTRIPE -c $DIR/$tfile) || error "getstripe"
12304         [ $stripe_count -eq 2 ] || error "stripe count not 2 ($stripe_count)"
12305         stat $DIR/$tfile || error "failed to stat released file"
12306
12307         chown $RUNAS_ID $DIR/$tfile ||
12308                 error "chown $RUNAS_ID $DIR/$tfile failed"
12309
12310         chgrp $RUNAS_ID $DIR/$tfile ||
12311                 error "chgrp $RUNAS_ID $DIR/$tfile failed"
12312
12313         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
12314         rm $DIR/$tfile || error "failed to remove released file"
12315 }
12316 run_test 229 "getstripe/stat/rm/attr changes work on released files"
12317
12318 test_230a() {
12319         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12320         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
12321         local MDTIDX=1
12322
12323         test_mkdir $DIR/$tdir
12324         test_mkdir -i0 -c1 $DIR/$tdir/test_230_local
12325         local mdt_idx=$($GETSTRIPE -M $DIR/$tdir/test_230_local)
12326         [ $mdt_idx -ne 0 ] &&
12327                 error "create local directory on wrong MDT $mdt_idx"
12328
12329         $LFS mkdir -i $MDTIDX $DIR/$tdir/test_230 ||
12330                         error "create remote directory failed"
12331         local mdt_idx=$($GETSTRIPE -M $DIR/$tdir/test_230)
12332         [ $mdt_idx -ne $MDTIDX ] &&
12333                 error "create remote directory on wrong MDT $mdt_idx"
12334
12335         createmany -o $DIR/$tdir/test_230/t- 10 ||
12336                 error "create files on remote directory failed"
12337         mdt_idx=$($GETSTRIPE -M $DIR/$tdir/test_230/t-0)
12338         [ $mdt_idx -ne $MDTIDX ] && error "create files on wrong MDT $mdt_idx"
12339         rm -r $DIR/$tdir || error "unlink remote directory failed"
12340 }
12341 run_test 230a "Create remote directory and files under the remote directory"
12342
12343 test_230b() {
12344         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12345         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
12346         local MDTIDX=1
12347         local mdt_index
12348         local i
12349         local file
12350         local pid
12351         local stripe_count
12352         local migrate_dir=$DIR/$tdir/migrate_dir
12353         local other_dir=$DIR/$tdir/other_dir
12354
12355         test_mkdir $DIR/$tdir
12356         test_mkdir -i0 -c1 $migrate_dir
12357         test_mkdir -i0 -c1 $other_dir
12358         for ((i=0; i<10; i++)); do
12359                 mkdir -p $migrate_dir/dir_${i}
12360                 createmany -o $migrate_dir/dir_${i}/f 10 ||
12361                         error "create files under remote dir failed $i"
12362         done
12363
12364         cp /etc/passwd $migrate_dir/$tfile
12365         cp /etc/passwd $other_dir/$tfile
12366         chattr +SAD $migrate_dir
12367         chattr +SAD $migrate_dir/$tfile
12368
12369         local old_dir_flag=$(lsattr -a $migrate_dir | awk '/\/\.$/ {print $1}')
12370         local old_file_flag=$(lsattr $migrate_dir/$tfile | awk '{print $1}')
12371         local old_dir_mode=$(stat -c%f $migrate_dir)
12372         local old_file_mode=$(stat -c%f $migrate_dir/$tfile)
12373
12374         mkdir -p $migrate_dir/dir_default_stripe2
12375         $SETSTRIPE -c 2 $migrate_dir/dir_default_stripe2
12376         $SETSTRIPE -c 2 $migrate_dir/${tfile}_stripe2
12377
12378         mkdir -p $other_dir
12379         ln $migrate_dir/$tfile $other_dir/luna
12380         ln $migrate_dir/$tfile $migrate_dir/sofia
12381         ln $other_dir/$tfile $migrate_dir/david
12382         ln -s $migrate_dir/$tfile $other_dir/zachary
12383         ln -s $migrate_dir/$tfile $migrate_dir/${tfile}_ln
12384         ln -s $other_dir/$tfile $migrate_dir/${tfile}_ln_other
12385
12386         $LFS mv -v -M $MDTIDX $migrate_dir ||
12387                 error "migrate remote dir error"
12388
12389         echo "migratate to MDT1, then checking.."
12390         for ((i = 0; i < 10; i++)); do
12391                 for file in $(find $migrate_dir/dir_${i}); do
12392                         mdt_index=$($LFS getstripe -M $file)
12393                         [ $mdt_index == $MDTIDX ] ||
12394                                 error "$file is not on MDT${MDTIDX}"
12395                 done
12396         done
12397
12398         # the multiple link file should still in MDT0
12399         mdt_index=$($LFS getstripe -M $migrate_dir/$tfile)
12400         [ $mdt_index == 0 ] ||
12401                 error "$file is not on MDT${MDTIDX}"
12402
12403         local new_dir_flag=$(lsattr -a $migrate_dir | awk '/\/\.$/ {print $1}')
12404         [ "$old_dir_flag" = "$new_dir_flag" ] ||
12405                 error " expect $old_dir_flag get $new_dir_flag"
12406
12407         local new_file_flag=$(lsattr $migrate_dir/$tfile | awk '{print $1}')
12408         [ "$old_file_flag" = "$new_file_flag" ] ||
12409                 error " expect $old_file_flag get $new_file_flag"
12410
12411         local new_dir_mode=$(stat -c%f $migrate_dir)
12412         [ "$old_dir_mode" = "$new_dir_mode" ] ||
12413                 error "expect mode $old_dir_mode get $new_dir_mode"
12414
12415         local new_file_mode=$(stat -c%f $migrate_dir/$tfile)
12416         [ "$old_file_mode" = "$new_file_mode" ] ||
12417                 error "expect mode $old_file_mode get $new_file_mode"
12418
12419         diff /etc/passwd $migrate_dir/$tfile ||
12420                 error "$tfile different after migration"
12421
12422         diff /etc/passwd $other_dir/luna ||
12423                 error "luna different after migration"
12424
12425         diff /etc/passwd $migrate_dir/sofia ||
12426                 error "sofia different after migration"
12427
12428         diff /etc/passwd $migrate_dir/david ||
12429                 error "david different after migration"
12430
12431         diff /etc/passwd $other_dir/zachary ||
12432                 error "zachary different after migration"
12433
12434         diff /etc/passwd $migrate_dir/${tfile}_ln ||
12435                 error "${tfile}_ln different after migration"
12436
12437         diff /etc/passwd $migrate_dir/${tfile}_ln_other ||
12438                 error "${tfile}_ln_other different after migration"
12439
12440         stripe_count=$($LFS getstripe -c $migrate_dir/dir_default_stripe2)
12441         [ $stripe_count = 2 ] ||
12442                 error "dir strpe_count $d != 2 after migration."
12443
12444         stripe_count=$($LFS getstripe -c $migrate_dir/${tfile}_stripe2)
12445         [ $stripe_count = 2 ] ||
12446                 error "file strpe_count $d != 2 after migration."
12447
12448         #migrate back to MDT0
12449         MDTIDX=0
12450         $LFS mv -v -M $MDTIDX $migrate_dir ||
12451                 error "migrate remote dir error"
12452
12453         echo "migrate back to MDT0, checking.."
12454         for file in $(find $migrate_dir); do
12455                 mdt_index=$($LFS getstripe -M $file)
12456                 [ $mdt_index == $MDTIDX ] ||
12457                         error "$file is not on MDT${MDTIDX}"
12458         done
12459
12460         local new_dir_flag=$(lsattr -a $migrate_dir | awk '/\/\.$/ {print $1}')
12461         [ "$old_dir_flag" = "$new_dir_flag" ] ||
12462                 error " expect $old_dir_flag get $new_dir_flag"
12463
12464         local new_file_flag=$(lsattr $migrate_dir/$tfile | awk '{print $1}')
12465         [ "$old_file_flag" = "$new_file_flag" ] ||
12466                 error " expect $old_file_flag get $new_file_flag"
12467
12468         local new_dir_mode=$(stat -c%f $migrate_dir)
12469         [ "$old_dir_mode" = "$new_dir_mode" ] ||
12470                 error "expect mode $old_dir_mode get $new_dir_mode"
12471
12472         local new_file_mode=$(stat -c%f $migrate_dir/$tfile)
12473         [ "$old_file_mode" = "$new_file_mode" ] ||
12474                 error "expect mode $old_file_mode get $new_file_mode"
12475
12476         diff /etc/passwd ${migrate_dir}/$tfile ||
12477                 error "$tfile different after migration"
12478
12479         diff /etc/passwd ${other_dir}/luna ||
12480                 error "luna different after migration"
12481
12482         diff /etc/passwd ${migrate_dir}/sofia ||
12483                 error "sofia different after migration"
12484
12485         diff /etc/passwd ${other_dir}/zachary ||
12486                 error "zachary different after migration"
12487
12488         diff /etc/passwd $migrate_dir/${tfile}_ln ||
12489                 error "${tfile}_ln different after migration"
12490
12491         diff /etc/passwd $migrate_dir/${tfile}_ln_other ||
12492                 error "${tfile}_ln_other different after migration"
12493
12494         stripe_count=$($LFS getstripe -c ${migrate_dir}/dir_default_stripe2)
12495         [ $stripe_count = 2 ] ||
12496                 error "dir strpe_count $d != 2 after migration."
12497
12498         stripe_count=$($LFS getstripe -c ${migrate_dir}/${tfile}_stripe2)
12499         [ $stripe_count = 2 ] ||
12500                 error "file strpe_count $d != 2 after migration."
12501
12502         rm -rf $DIR/$tdir || error "rm dir failed after migration"
12503 }
12504 run_test 230b "migrate directory"
12505
12506 test_230c() {
12507         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12508         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
12509         local MDTIDX=1
12510         local mdt_index
12511         local file
12512         local migrate_dir=$DIR/$tdir/migrate_dir
12513
12514         #If migrating directory fails in the middle, all entries of
12515         #the directory is still accessiable.
12516         test_mkdir $DIR/$tdir
12517         test_mkdir -i0 -c1 $migrate_dir
12518         stat $migrate_dir
12519         createmany -o $migrate_dir/f 10 ||
12520                 error "create files under ${migrate_dir} failed"
12521
12522         #failed after migrating 5 entries
12523         #OBD_FAIL_MIGRATE_ENTRIES       0x1801
12524         do_facet mds1 lctl set_param fail_loc=0x20001801
12525         do_facet mds1 lctl  set_param fail_val=5
12526         local t=$(ls $migrate_dir | wc -l)
12527         $LFS mv --mdt-index $MDTIDX $migrate_dir &&
12528                 error "migrate should fail after 5 entries"
12529         local u=$(ls $migrate_dir | wc -l)
12530         [ "$u" == "$t" ] || error "$u != $t during migration"
12531
12532         for file in $(find $migrate_dir); do
12533                 stat $file || error "stat $file failed"
12534         done
12535
12536         do_facet mds1 lctl set_param fail_loc=0
12537         do_facet mds1 lctl set_param fail_val=0
12538
12539         $LFS mv -M $MDTIDX $migrate_dir ||
12540                 error "migrate open files should failed with open files"
12541
12542         echo "Finish migration, then checking.."
12543         for file in $(find $migrate_dir); do
12544                 mdt_index=$($LFS getstripe -M $file)
12545                 [ $mdt_index == $MDTIDX ] ||
12546                         error "$file is not on MDT${MDTIDX}"
12547         done
12548
12549         rm -rf $DIR/$tdir || error "rm dir failed after migration"
12550 }
12551 run_test 230c "check directory accessiblity if migration is failed"
12552
12553 test_230d() {
12554         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12555         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
12556         local MDTIDX=1
12557         local mdt_index
12558         local migrate_dir=$DIR/$tdir/migrate_dir
12559         local i
12560         local j
12561
12562         test_mkdir $DIR/$tdir
12563         test_mkdir -i0 -c1 $migrate_dir
12564
12565         for ((i=0; i<100; i++)); do
12566                 test_mkdir -i0 -c1 $migrate_dir/dir_${i}
12567                 createmany -o $migrate_dir/dir_${i}/f 100 ||
12568                         error "create files under remote dir failed $i"
12569         done
12570
12571         $LFS mv -M $MDTIDX -v $migrate_dir || error "migrate remote dir error"
12572
12573         echo "Finish migration, then checking.."
12574         for file in $(find $migrate_dir); do
12575                 mdt_index=$($LFS getstripe -M $file)
12576                 [ $mdt_index == $MDTIDX ] ||
12577                         error "$file is not on MDT${MDTIDX}"
12578         done
12579
12580         rm -rf $DIR/$tdir || error "rm dir failed after migration"
12581 }
12582 run_test 230d "check migrate big directory"
12583
12584 test_231a()
12585 {
12586         # For simplicity this test assumes that max_pages_per_rpc
12587         # is the same across all OSCs
12588         local max_pages=$($LCTL get_param -n osc.*.max_pages_per_rpc | head -n1)
12589         local bulk_size=$((max_pages * 4096))
12590
12591         mkdir -p $DIR/$tdir
12592
12593         # clear the OSC stats
12594         $LCTL set_param osc.*.stats=0 &>/dev/null
12595
12596         # Client writes $bulk_size - there must be 1 rpc for $max_pages.
12597         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=$bulk_size count=1 \
12598                 oflag=direct &>/dev/null || error "dd failed"
12599
12600         local nrpcs=$($LCTL get_param osc.*.stats |awk '/ost_write/ {print $2}')
12601         if [ x$nrpcs != "x1" ]; then
12602                 error "found $nrpc ost_write RPCs, not 1 as expected"
12603         fi
12604
12605         # Drop the OSC cache, otherwise we will read from it
12606         cancel_lru_locks osc
12607
12608         # clear the OSC stats
12609         $LCTL set_param osc.*.stats=0 &>/dev/null
12610
12611         # Client reads $bulk_size.
12612         dd if=$DIR/$tdir/$tfile of=/dev/null bs=$bulk_size count=1 \
12613                 iflag=direct &>/dev/null || error "dd failed"
12614
12615         nrpcs=$($LCTL get_param osc.*.stats | awk '/ost_read/ { print $2 }')
12616         if [ x$nrpcs != "x1" ]; then
12617                 error "found $nrpc ost_read RPCs, not 1 as expected"
12618         fi
12619 }
12620 run_test 231a "checking that reading/writing of BRW RPC size results in one RPC"
12621
12622 test_231b() {
12623         mkdir -p $DIR/$tdir
12624         local i
12625         for i in {0..1023}; do
12626                 dd if=/dev/zero of=$DIR/$tdir/$tfile conv=notrunc \
12627                         seek=$((2 * i)) bs=4096 count=1 &>/dev/null ||
12628                         error "dd of=$DIR/$tdir/$tfile seek=$((2 * i)) failed"
12629         done
12630         sync
12631 }
12632 run_test 231b "must not assert on fully utilized OST request buffer"
12633
12634 test_232() {
12635         mkdir -p $DIR/$tdir
12636         #define OBD_FAIL_LDLM_OST_LVB            0x31c
12637         $LCTL set_param fail_loc=0x31c
12638
12639         # ignore dd failure
12640         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=1 || true
12641
12642         $LCTL set_param fail_loc=0
12643         umount_client $MOUNT || error "umount failed"
12644         mount_client $MOUNT || error "mount failed"
12645 }
12646 run_test 232 "failed lock should not block umount"
12647
12648 test_233a() {
12649         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.64) ] ||
12650         { skip "Need MDS version at least 2.3.64"; return; }
12651
12652         local fid=$($LFS path2fid $MOUNT)
12653         stat $MOUNT/.lustre/fid/$fid > /dev/null ||
12654                 error "cannot access $MOUNT using its FID '$fid'"
12655 }
12656 run_test 233a "checking that OBF of the FS root succeeds"
12657
12658 test_233b() {
12659         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.5.90) ] ||
12660         { skip "Need MDS version at least 2.5.90"; return; }
12661
12662         local fid=$($LFS path2fid $MOUNT/.lustre)
12663         stat $MOUNT/.lustre/fid/$fid > /dev/null ||
12664                 error "cannot access $MOUNT/.lustre using its FID '$fid'"
12665
12666         fid=$($LFS path2fid $MOUNT/.lustre/fid)
12667         stat $MOUNT/.lustre/fid/$fid > /dev/null ||
12668                 error "cannot access $MOUNT/.lustre/fid using its FID '$fid'"
12669 }
12670 run_test 233b "checking that OBF of the FS .lustre succeeds"
12671
12672 test_234() {
12673         local p="$TMP/sanityN-$TESTNAME.parameters"
12674         save_lustre_params client "llite.*.xattr_cache" > $p
12675         lctl set_param llite.*.xattr_cache 1 ||
12676                 { skip "xattr cache is not supported"; return 0; }
12677
12678         mkdir -p $DIR/$tdir || error "mkdir failed"
12679         touch $DIR/$tdir/$tfile || error "touch failed"
12680         # OBD_FAIL_LLITE_XATTR_ENOMEM
12681         $LCTL set_param fail_loc=0x1405
12682         # output of the form: attr 2 4 44 3 fc13 x86_64
12683         V=($(IFS=".-" rpm -q attr))
12684         if [[ ${V[1]} > 2 || ${V[2]} > 4 || ${V[3]} > 44 ||
12685               ${V[1]} = 2 && ${V[2]} = 4 && ${V[3]} = 44 && ${V[4]} > 6 ]]; then
12686                 # attr pre-2.4.44-7 had a bug with rc
12687                 # LU-3703 - SLES 11 and FC13 clients have older attr
12688                 getfattr -n user.attr $DIR/$tdir/$tfile &&
12689                         error "getfattr should have failed with ENOMEM"
12690         else
12691                 skip "LU-3703: attr version $(getfattr --version) too old"
12692         fi
12693         $LCTL set_param fail_loc=0x0
12694         rm -rf $DIR/$tdir
12695
12696         restore_lustre_params < $p
12697         rm -f $p
12698 }
12699 run_test 234 "xattr cache should not crash on ENOMEM"
12700
12701 test_235() {
12702         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.52) ] &&
12703                 skip "Need MDS version at least 2.4.52" && return
12704         flock_deadlock $DIR/$tfile
12705         local RC=$?
12706         case $RC in
12707                 0)
12708                 ;;
12709                 124) error "process hangs on a deadlock"
12710                 ;;
12711                 *) error "error executing flock_deadlock $DIR/$tfile"
12712                 ;;
12713         esac
12714 }
12715 run_test 235 "LU-1715: flock deadlock detection does not work properly"
12716
12717 #LU-2935
12718 test_236() {
12719         check_swap_layouts_support && return 0
12720         test_mkdir -p -c1 $DIR/$tdir || error "mkdir $tdir failed"
12721
12722         local ref1=/etc/passwd
12723         local ref2=/etc/group
12724         local file1=$DIR/$tdir/f1
12725         local file2=$DIR/$tdir/f2
12726
12727         $SETSTRIPE -c 1 $file1 || error "cannot setstripe on '$file1': rc = $?"
12728         cp $ref1 $file1 || error "cp $ref1 $file1 failed: rc = $?"
12729         $SETSTRIPE -c 2 $file2 || error "cannot setstripe on '$file2': rc = $?"
12730         cp $ref2 $file2 || error "cp $ref2 $file2 failed: rc = $?"
12731         local fd=$(free_fd)
12732         local cmd="exec $fd<>$file2"
12733         eval $cmd
12734         rm $file2
12735         $LFS swap_layouts $file1 /proc/self/fd/${fd} ||
12736                 error "cannot swap layouts of '$file1' and /proc/self/fd/${fd}"
12737         cmd="exec $fd>&-"
12738         eval $cmd
12739         cmp $ref2 $file1 || error "content compare failed ($ref2 != $file1)"
12740
12741         #cleanup
12742         rm -rf $DIR/$tdir
12743 }
12744 run_test 236 "Layout swap on open unlinked file"
12745
12746 # test to verify file handle related system calls
12747 # (name_to_handle_at/open_by_handle_at)
12748 # The new system calls are supported in glibc >= 2.14.
12749
12750 test_237() {
12751         echo "Test file_handle syscalls" > $DIR/$tfile ||
12752                 error "write failed"
12753         check_fhandle_syscalls $DIR/$tfile ||
12754                 error "check_fhandle_syscalls failed"
12755 }
12756 run_test 237 "Verify name_to_handle_at/open_by_handle_at syscalls"
12757
12758 # LU-4659 linkea consistency
12759 test_238() {
12760         local server_version=$(lustre_version_code $SINGLEMDS)
12761
12762         [[ $server_version -gt $(version_code 2.5.57) ]] ||
12763                 [[ $server_version -gt $(version_code 2.5.1) &&
12764                    $server_version -lt $(version_code 2.5.50) ]] ||
12765                 { skip "Need MDS version at least 2.5.58 or 2.5.2+"; return; }
12766
12767         touch $DIR/$tfile
12768         ln $DIR/$tfile $DIR/$tfile.lnk
12769         touch $DIR/$tfile.new
12770         mv $DIR/$tfile.new $DIR/$tfile
12771         local fid1=$($LFS path2fid $DIR/$tfile)
12772         local fid2=$($LFS path2fid $DIR/$tfile.lnk)
12773         local path1=$($LFS fid2path $FSNAME "$fid1")
12774         [ $tfile == $path1 ] || error "linkea inconsistent: $tfile $fid1 $path1"
12775         local path2=$($LFS fid2path $FSNAME "$fid2")
12776         [ $tfile.lnk == $path2 ] ||
12777                 error "linkea inconsistent: $tfile.lnk $fid2 $path2!"
12778         rm -f $DIR/$tfile*
12779 }
12780 run_test 238 "Verify linkea consistency"
12781
12782 test_239() {
12783         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.5.60) ] &&
12784                 skip "Need MDS version at least 2.5.60" && return
12785         local list=$(comma_list $(mdts_nodes))
12786
12787         mkdir -p $DIR/$tdir
12788         createmany -o $DIR/$tdir/f- 5000
12789         unlinkmany $DIR/$tdir/f- 5000
12790         do_nodes $list "lctl set_param -n osp*.*.sync_changes 1"
12791         changes=$(do_nodes $list "lctl get_param -n osc.*MDT*.sync_changes \
12792                         osc.*MDT*.sync_in_flight" | calc_sum)
12793         [ "$changes" -eq 0 ] || error "$changes not synced"
12794 }
12795 run_test 239 "osp_sync test"
12796
12797 test_240() {
12798         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
12799
12800         mkdir -p $DIR/$tdir
12801
12802         $LFS mkdir -i 0 $DIR/$tdir/d0 ||
12803                 error "failed to mkdir $DIR/$tdir/d0 on MDT0"
12804         $LFS mkdir -i 1 $DIR/$tdir/d0/d1 ||
12805                 error "failed to mkdir $DIR/$tdir/d0/d1 on MDT1"
12806
12807         umount_client $MOUNT || error "umount failed"
12808         #define OBD_FAIL_TGT_DELAY_CONDITIONAL   0x713
12809         do_facet mds2 lctl set_param fail_loc=0x713 fail_val=1
12810         mount_client $MOUNT || error "failed to mount client"
12811
12812         echo "stat $DIR/$tdir/d0/d1, should not fail/ASSERT"
12813         stat $DIR/$tdir/d0/d1 || error "fail to stat $DIR/$tdir/d0/d1"
12814 }
12815 run_test 240 "race between ldlm enqueue and the connection RPC (no ASSERT)"
12816
12817 test_241_bio() {
12818         for LOOP in $(seq $1); do
12819                 dd if=$DIR/$tfile of=/dev/null bs=40960 count=1 2>/dev/null
12820                 cancel_lru_locks osc
12821         done
12822 }
12823
12824 test_241_dio() {
12825         for LOOP in $(seq $1); do
12826                 dd if=$DIR/$tfile of=/dev/null bs=40960 count=1 \
12827                                                 iflag=direct 2>/dev/null
12828         done
12829 }
12830
12831 test_241() {
12832         dd if=/dev/zero of=$DIR/$tfile count=1 bs=40960
12833         ls -la $DIR/$tfile
12834         cancel_lru_locks osc
12835         test_241_bio 1000 &
12836         PID=$!
12837         test_241_dio 1000
12838         wait $PID
12839 }
12840 run_test 241 "bio vs dio"
12841
12842 test_241b() {
12843         dd if=/dev/zero of=$DIR/$tfile count=1 bs=40960
12844         ls -la $DIR/$tfile
12845         test_241_dio 1000 &
12846         PID=$!
12847         test_241_dio 1000
12848         wait $PID
12849 }
12850 run_test 241b "dio vs dio"
12851
12852 test_242() {
12853         mkdir -p $DIR/$tdir
12854         touch $DIR/$tdir/$tfile
12855
12856         #define OBD_FAIL_MDS_READPAGE_PACK      0x105
12857         do_facet mds1 lctl set_param fail_loc=0x105
12858         /bin/ls $DIR/$tdir && error "ls $DIR/$tdir should fail"
12859
12860         do_facet mds1 lctl set_param fail_loc=0
12861         /bin/ls $DIR/$tdir || error "ls $DIR/$tdir failed"
12862 }
12863 run_test 242 "mdt_readpage failure should not cause directory unreadable"
12864
12865 test_243()
12866 {
12867         test_mkdir -p $DIR/$tdir
12868         group_lock_test -d $DIR/$tdir || error "A group lock test failed"
12869 }
12870 run_test 243 "various group lock tests"
12871
12872 test_244()
12873 {
12874         test_mkdir -p $DIR/$tdir
12875         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=35
12876         sendfile_grouplock $DIR/$tdir/$tfile || \
12877                 error "sendfile+grouplock failed"
12878         rm -rf $DIR/$tdir
12879 }
12880 run_test 244 "sendfile with group lock tests"
12881
12882 test_250() {
12883         [ "$(facet_fstype ost$(($($GETSTRIPE -i $DIR/$tfile) + 1)))" = "zfs" ] \
12884          && skip "no 16TB file size limit on ZFS" && return
12885
12886         $SETSTRIPE -c 1 $DIR/$tfile
12887         # ldiskfs extent file size limit is (16TB - 4KB - 1) bytes
12888         local size=$((16 * 1024 * 1024 * 1024 * 1024 - 4096 - 1))
12889         $TRUNCATE $DIR/$tfile $size || error "truncate $tfile to $size failed"
12890         dd if=/dev/zero of=$DIR/$tfile bs=10 count=1 oflag=append \
12891                 conv=notrunc,fsync && error "append succeeded"
12892         return 0
12893 }
12894 run_test 250 "Write above 16T limit"
12895
12896 cleanup_test_300() {
12897         trap 0
12898         umask $SAVE_UMASK
12899 }
12900 test_striped_dir() {
12901         local mdt_index=$1
12902         local stripe_count
12903         local stripe_index
12904
12905         mkdir -p $DIR/$tdir
12906
12907         SAVE_UMASK=$(umask)
12908         trap cleanup_test_300 RETURN EXIT
12909
12910         $LFS setdirstripe -i $mdt_index -c 2 -t all_char -m 755 \
12911                                                 $DIR/$tdir/striped_dir ||
12912                 error "set striped dir error"
12913
12914         local mode=$(stat -c%a $DIR/$tdir/striped_dir)
12915         [ "$mode" = "755" ] || error "expect 755 got $mode"
12916
12917         stripe_count=$($LFS getdirstripe -c $DIR/$tdir/striped_dir)
12918         if [ "$stripe_count" != "2" ]; then
12919                 error "stripe_count is $stripe_count, expect 2"
12920         fi
12921
12922         stripe_index=$($LFS getdirstripe -i $DIR/$tdir/striped_dir)
12923         if [ "$stripe_index" != "$mdt_index" ]; then
12924                 error "stripe_index is $stripe_index, expect $mdt_index"
12925         fi
12926
12927         [ $(stat -c%h $DIR/$tdir/striped_dir) == '2' ] ||
12928                 error "nlink error after create striped dir"
12929
12930         mkdir $DIR/$tdir/striped_dir/a
12931         mkdir $DIR/$tdir/striped_dir/b
12932
12933         stat $DIR/$tdir/striped_dir/a ||
12934                 error "create dir under striped dir failed"
12935         stat $DIR/$tdir/striped_dir/b ||
12936                 error "create dir under striped dir failed"
12937
12938         [ $(stat -c%h $DIR/$tdir/striped_dir) == '4' ] ||
12939                 error "nlink error after mkdir"
12940
12941         rmdir $DIR/$tdir/striped_dir/a
12942         [ $(stat -c%h $DIR/$tdir/striped_dir) == '3' ] ||
12943                 error "nlink error after rmdir"
12944
12945         rmdir $DIR/$tdir/striped_dir/b
12946         [ $(stat -c%h $DIR/$tdir/striped_dir) == '2' ] ||
12947                 error "nlink error after rmdir"
12948
12949         chattr +i $DIR/$tdir/striped_dir
12950         createmany -o $DIR/$tdir/striped_dir/f 10 &&
12951                 error "immutable flags not working under striped dir!"
12952         chattr -i $DIR/$tdir/striped_dir
12953
12954         rmdir $DIR/$tdir/striped_dir ||
12955                 error "rmdir striped dir error"
12956
12957         cleanup_test_300
12958
12959         true
12960 }
12961
12962 test_300a() {
12963         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12964         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
12965
12966         test_striped_dir 0 || error "failed on striped dir on MDT0"
12967         test_striped_dir 1 || error "failed on striped dir on MDT0"
12968 }
12969 run_test 300a "basic striped dir sanity test"
12970
12971 test_300b() {
12972         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
12973         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
12974         local i
12975         local mtime1
12976         local mtime2
12977         local mtime3
12978
12979         test_mkdir $DIR/$tdir || error "mkdir fail"
12980         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir ||
12981                 error "set striped dir error"
12982         for ((i=0; i<10; i++)); do
12983                 mtime1=$(stat -c %Y $DIR/$tdir/striped_dir)
12984                 sleep 1
12985                 touch $DIR/$tdir/striped_dir/file_$i ||
12986                                         error "touch error $i"
12987                 mtime2=$(stat -c %Y $DIR/$tdir/striped_dir)
12988                 [ $mtime1 -eq $mtime2 ] &&
12989                         error "mtime not change after create"
12990                 sleep 1
12991                 rm -f $DIR/$tdir/striped_dir/file_$i ||
12992                                         error "unlink error $i"
12993                 mtime3=$(stat -c %Y $DIR/$tdir/striped_dir)
12994                 [ $mtime2 -eq $mtime3 ] &&
12995                         error "mtime did not change after unlink"
12996         done
12997         true
12998 }
12999 run_test 300b "check ctime/mtime for striped dir"
13000
13001 test_300c() {
13002         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13003         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13004         local file_count
13005
13006         mkdir -p $DIR/$tdir
13007         $LFS setdirstripe -i 0 -c 2 $DIR/$tdir/striped_dir ||
13008                 error "set striped dir error"
13009
13010         chown $RUNAS_ID:$RUNAS_GID $DIR/$tdir/striped_dir ||
13011                 error "chown striped dir failed"
13012
13013         $RUNAS createmany -o $DIR/$tdir/striped_dir/f 5000 ||
13014                 error "create 5k files failed"
13015
13016         file_count=$(ls $DIR/$tdir/striped_dir | wc -l)
13017
13018         [ "$file_count" = 5000 ] || error "file count $file_count != 5000"
13019
13020         rm -rf $DIR/$tdir
13021 }
13022 run_test 300c "chown && check ls under striped directory"
13023
13024 test_300d() {
13025         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13026         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13027         local stripe_count
13028         local file
13029
13030         mkdir -p $DIR/$tdir
13031         $SETSTRIPE -c 2 $DIR/$tdir
13032
13033         #local striped directory
13034         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir ||
13035                 error "set striped dir error"
13036         createmany -o $DIR/$tdir/striped_dir/f 10 ||
13037                 error "create 10 files failed"
13038
13039         #remote striped directory
13040         $LFS setdirstripe -i 1 -c 2 $DIR/$tdir/remote_striped_dir ||
13041                 error "set striped dir error"
13042         createmany -o $DIR/$tdir/remote_striped_dir/f 10 ||
13043                 error "create 10 files failed"
13044
13045         for file in $(find $DIR/$tdir); do
13046                 stripe_count=$($GETSTRIPE -c $file)
13047                 [ $stripe_count -eq 2 ] ||
13048                         error "wrong stripe $stripe_count for $file"
13049         done
13050
13051         rm -rf $DIR/$tdir
13052 }
13053 run_test 300d "check default stripe under striped directory"
13054
13055 test_300e() {
13056         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13057         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13058         local stripe_count
13059         local file
13060
13061         mkdir -p $DIR/$tdir
13062
13063         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir ||
13064                 error "set striped dir error"
13065
13066         touch $DIR/$tdir/striped_dir/a
13067         touch $DIR/$tdir/striped_dir/b
13068         touch $DIR/$tdir/striped_dir/c
13069
13070         mkdir $DIR/$tdir/striped_dir/dir_a
13071         mkdir $DIR/$tdir/striped_dir/dir_b
13072         mkdir $DIR/$tdir/striped_dir/dir_c
13073
13074         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir/stp_a ||
13075                 error "set striped dir under striped dir error"
13076
13077         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir/stp_b ||
13078                 error "set striped dir under striped dir error"
13079
13080         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir/stp_c ||
13081                 error "set striped dir under striped dir error"
13082
13083         mrename $DIR/$tdir/striped_dir/a $DIR/$tdir/striped_dir/b &&
13084                 error "rename file under striped dir should fail"
13085
13086         mrename $DIR/$tdir/striped_dir/dir_a $DIR/$tdir/striped_dir/dir_b &&
13087                 error "rename dir under striped dir should fail"
13088
13089         mrename $DIR/$tdir/striped_dir/stp_a $DIR/$tdir/striped_dir/stp_b &&
13090                 error "rename dir under different stripes should fail"
13091
13092         mrename $DIR/$tdir/striped_dir/a $DIR/$tdir/striped_dir/c ||
13093                 error "rename file under striped dir should succeed"
13094
13095         mrename $DIR/$tdir/striped_dir/dir_a $DIR/$tdir/striped_dir/dir_c ||
13096                 error "rename dir under striped dir should succeed"
13097
13098         rm -rf $DIR/$tdir
13099 }
13100 run_test 300e "check rename under striped directory"
13101
13102 test_300f() {
13103         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13104         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13105         local stripe_count
13106         local file
13107
13108         rm -rf $DIR/$tdir
13109         mkdir -p $DIR/$tdir
13110
13111         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir ||
13112                 error "set striped dir error"
13113
13114         $LFS setdirstripe -i 0 -c 2 -t all_char $DIR/$tdir/striped_dir1 ||
13115                 error "set striped dir error"
13116
13117         touch $DIR/$tdir/striped_dir/a
13118         mkdir $DIR/$tdir/striped_dir/dir_a
13119         $LFS setdirstripe -i 0 -c 2 $DIR/$tdir/striped_dir/stp_a ||
13120                 error "create striped dir under striped dir fails"
13121
13122         touch $DIR/$tdir/striped_dir1/b
13123         mkdir $DIR/$tdir/striped_dir1/dir_b
13124         $LFS setdirstripe -i 0 -c 2 $DIR/$tdir/striped_dir/stp_b ||
13125                 error "create striped dir under striped dir fails"
13126
13127         mrename $DIR/$tdir/striped_dir/a $DIR/$tdir/striped_dir1/b &&
13128                 error "rename file under different striped dir should fail"
13129
13130         mrename $DIR/$tdir/striped_dir/dir_a $DIR/$tdir/striped_dir1/dir_b &&
13131                 error "rename dir under different striped dir should fail"
13132
13133         mrename $DIR/$tdir/striped_dir/stp_a $DIR/$tdir/striped_dir1/stp_b &&
13134                 error "rename striped dir under diff striped dir should fail"
13135
13136         mrename $DIR/$tdir/striped_dir/a $DIR/$tdir/striped_dir1/a ||
13137                 error "rename file under diff striped dirs fails"
13138
13139         mrename $DIR/$tdir/striped_dir/dir_a $DIR/$tdir/striped_dir1/dir_a ||
13140                 error "rename dir under diff striped dirs fails"
13141
13142         rm -rf $DIR/$tdir
13143 }
13144 run_test 300f "check rename cross striped directory"
13145
13146 test_300_check_default_striped_dir()
13147 {
13148         local dirname=$1
13149         local default_count=$2
13150         local default_index=$3
13151         local stripe_count
13152         local stripe_index
13153         local dir_stripe_index
13154         local dir
13155
13156         echo "checking $dirname $default_count $default_index"
13157         $LFS setdirstripe -D -c $default_count -i $default_index \
13158                                 -t all_char $DIR/$tdir/$dirname ||
13159                 error "set default stripe on striped dir error"
13160         stripe_count=$($LFS getdirstripe -D -c $DIR/$tdir/$dirname)
13161         [ $stripe_count -eq $default_count ] ||
13162                 error "expect $default_count get $stripe_count for $dirname"
13163
13164         stripe_index=$($LFS getdirstripe -D -i $DIR/$tdir/$dirname)
13165         [ $stripe_index -eq $default_index ] ||
13166                 error "expect $default_index get $stripe_index for $dirname"
13167
13168         mkdir $DIR/$tdir/$dirname/{test1,test2,test3,test4} ||
13169                                                 error "create dirs failed"
13170
13171         createmany -o $DIR/$tdir/$dirname/f- 10 || error "create files failed"
13172         unlinkmany $DIR/$tdir/$dirname/f- 10    || error "unlink files failed"
13173         for dir in $(find $DIR/$tdir/$dirname/*); do
13174                 stripe_count=$($LFS getdirstripe -c $dir)
13175                 [ $stripe_count -eq $default_count ] ||
13176                 error "stripe count $default_count != $stripe_count for $dir"
13177
13178                 stripe_index=$($LFS getdirstripe -i $dir)
13179                 [ $default_index -eq -1 -o $stripe_index -eq $default_index ] ||
13180                         error "$stripe_index != $default_index for $dir"
13181
13182                 #check default stripe
13183                 stripe_count=$($LFS getdirstripe -D -c $dir)
13184                 [ $stripe_count -eq $default_count ] ||
13185                 error "default count $default_count != $stripe_count for $dir"
13186
13187                 stripe_index=$($LFS getdirstripe -D -i $dir)
13188                 [ $stripe_index -eq $default_index ] ||
13189                 error "default index $default_index != $stripe_index for $dir"
13190         done
13191         rmdir $DIR/$tdir/$dirname/* || error "rmdir failed"
13192 }
13193
13194 test_300g() {
13195         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13196         local dir
13197         local stripe_count
13198         local stripe_index
13199
13200         mkdir $DIR/$tdir
13201         mkdir $DIR/$tdir/normal_dir
13202
13203         test_300_check_default_striped_dir normal_dir $MDSCOUNT 1
13204         test_300_check_default_striped_dir normal_dir 1 0
13205         test_300_check_default_striped_dir normal_dir 2 1
13206         test_300_check_default_striped_dir normal_dir 2 -1
13207
13208         #delete default stripe information
13209         echo "delete default stripeEA"
13210         $LFS setdirstripe -d $DIR/$tdir/normal_dir ||
13211                 error "set default stripe on striped dir error"
13212
13213         mkdir -p $DIR/$tdir/normal_dir/{test1,test2,test3,test4}
13214         for dir in $(find $DIR/$tdir/normal_dir/*); do
13215                 stripe_count=$($LFS getdirstripe -c $dir)
13216                 [ $stripe_count -eq 0 ] ||
13217                         error "expect 1 get $stripe_count for $dir"
13218                 stripe_index=$($LFS getdirstripe -i $dir)
13219                 [ $stripe_index -eq 0 ] ||
13220                         error "expect 0 get $stripe_index for $dir"
13221         done
13222 }
13223 run_test 300g "check default striped directory for normal directory"
13224
13225 test_300h() {
13226         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13227         local dir
13228         local stripe_count
13229
13230         mkdir $DIR/$tdir
13231         $LFS setdirstripe -i 0 -c $MDSCOUNT -t all_char \
13232                                         $DIR/$tdir/striped_dir ||
13233                 error "set striped dir error"
13234
13235         test_300_check_default_striped_dir striped_dir $MDSCOUNT 1
13236         test_300_check_default_striped_dir striped_dir 1 0
13237         test_300_check_default_striped_dir striped_dir 2 1
13238         test_300_check_default_striped_dir striped_dir 2 -1
13239
13240         #delete default stripe information
13241         $LFS setdirstripe -d $DIR/$tdir/striped_dir ||
13242                 error "set default stripe on striped dir error"
13243
13244         mkdir -p $DIR/$tdir/striped_dir/{test1,test2,test3,test4}
13245         for dir in $(find $DIR/$tdir/striped_dir/*); do
13246                 stripe_count=$($LFS getdirstripe -c $dir)
13247                 [ $stripe_count -eq 0 ] ||
13248                         error "expect 1 get $stripe_count for $dir"
13249         done
13250 }
13251 run_test 300h "check default striped directory for striped directory"
13252
13253 test_300i() {
13254         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13255         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
13256         local stripe_count
13257         local file
13258
13259         mkdir $DIR/$tdir
13260
13261         $LFS setdirstripe -i 0 -c$MDSCOUNT -t all_char $DIR/$tdir/striped_dir ||
13262                 error "set striped dir error"
13263
13264         createmany -o $DIR/$tdir/striped_dir/f- 10 ||
13265                 error "create files under striped dir failed"
13266
13267         # unfortunately, we need to umount to clear dir layout cache for now
13268         # once we fully implement dir layout, we can drop this
13269         umount_client $MOUNT || error "umount failed"
13270         mount_client $MOUNT || error "mount failed"
13271
13272         #set the stripe to be unknown hash type
13273         #define OBD_FAIL_UNKNOWN_LMV_STRIPE     0x1901
13274         $LCTL set_param fail_loc=0x1901
13275         for ((i = 0; i < 10; i++)); do
13276                 $CHECKSTAT -t file $DIR/$tdir/striped_dir/f-$i ||
13277                         error "stat f-$i failed"
13278                 rm $DIR/$tdir/striped_dir/f-$i || error "unlink f-$i failed"
13279         done
13280
13281         touch $DIR/$tdir/striped_dir/f0 &&
13282                 error "create under striped dir with unknown hash should fail"
13283
13284         $LCTL set_param fail_loc=0
13285
13286         umount_client $MOUNT || error "umount failed"
13287         mount_client $MOUNT || error "mount failed"
13288
13289         return 0
13290 }
13291 run_test 300i "client handle unknown hash type striped directory"
13292
13293 test_400a() { # LU-1606, was conf-sanity test_74
13294         local extra_flags=''
13295         local out=$TMP/$tfile
13296         local prefix=/usr/include/lustre
13297         local prog
13298
13299         if ! which $CC > /dev/null 2>&1; then
13300                 skip_env "$CC is not installed"
13301                 return 0
13302         fi
13303
13304         if ! [[ -d $prefix ]]; then
13305                 # Assume we're running in tree and fixup the include path.
13306                 extra_flags+=" -I$LUSTRE/../libcfs/include"
13307                 extra_flags+=" -I$LUSTRE/include"
13308                 extra_flags+=" -L$LUSTRE/utils"
13309         fi
13310
13311         for prog in $LUSTRE_TESTS_API_DIR/*.c; do
13312                 $CC -Wall -Werror $extra_flags -llustreapi -o $out $prog ||
13313                         error "client api broken"
13314         done
13315 }
13316 run_test 400a "Lustre client api program can compile and link"
13317
13318 test_400b() { # LU-1606, LU-5011
13319         local header
13320         local out=$TMP/$tfile
13321         local prefix=/usr/include/lustre
13322
13323         # We use a hard coded prefix so that this test will not fail
13324         # when run in tree. There are headers in lustre/include/lustre/
13325         # that are not packaged (like lustre_idl.h) and have more
13326         # complicated include dependencies (like config.h and lnet/types.h).
13327         # Since this test about correct packaging we just skip them when
13328         # they don't exist (see below) rather than try to fixup cppflags.
13329
13330         if ! which $CC > /dev/null 2>&1; then
13331                 skip_env "$CC is not installed"
13332                 return 0
13333         fi
13334
13335         for header in $prefix/*.h; do
13336                 if ! [[ -f "$header" ]]; then
13337                         continue
13338                 fi
13339
13340                 if [[ "$(basename $header)" == liblustreapi.h ]]; then
13341                         continue # liblustreapi.h is deprecated.
13342                 fi
13343
13344                 $CC -Wall -Werror -include $header -c -x c /dev/null -o $out ||
13345                         error "cannot compile '$header'"
13346         done
13347 }
13348 run_test 400b "packaged headers can be compiled"
13349
13350 #
13351 # tests that do cleanup/setup should be run at the end
13352 #
13353
13354 test_900() {
13355         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
13356         local ls
13357         #define OBD_FAIL_MGC_PAUSE_PROCESS_LOG   0x903
13358         $LCTL set_param fail_loc=0x903
13359
13360         cancel_lru_locks MGC
13361
13362         FAIL_ON_ERROR=true cleanup
13363         FAIL_ON_ERROR=true setup
13364 }
13365 run_test 900 "umount should not race with any mgc requeue thread"
13366
13367 complete $SECONDS
13368 [ -f $EXT2_DEV ] && rm $EXT2_DEV || true
13369 check_and_cleanup_lustre
13370 if [ "$I_MOUNTED" != "yes" ]; then
13371         lctl set_param debug="$OLDDEBUG" 2> /dev/null || true
13372 fi
13373 exit_status