Whamcloud - gitweb
LU-1095 debug: clean up console messages
[fs/lustre-release.git] / lustre / tests / sanity.sh
1 #!/bin/bash
2 # -*- tab-width: 4; 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
20 SRCDIR=$(cd $(dirname $0); echo $PWD)
21 export PATH=$PATH:/sbin
22
23 TMP=${TMP:-/tmp}
24
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 MCREATE=${MCREATE:-mcreate}
32 OPENFILE=${OPENFILE:-openfile}
33 OPENUNLINK=${OPENUNLINK:-openunlink}
34 export MULTIOP=${MULTIOP:-multiop}
35 READS=${READS:-"reads"}
36 MUNLINK=${MUNLINK:-munlink}
37 SOCKETSERVER=${SOCKETSERVER:-socketserver}
38 SOCKETCLIENT=${SOCKETCLIENT:-socketclient}
39 MEMHOG=${MEMHOG:-memhog}
40 DIRECTIO=${DIRECTIO:-directio}
41 ACCEPTOR_PORT=${ACCEPTOR_PORT:-988}
42 UMOUNT=${UMOUNT:-"umount -d"}
43 STRIPES_PER_OBJ=-1
44 CHECK_GRANT=${CHECK_GRANT:-"yes"}
45 GRANT_CHECK_LIST=${GRANT_CHECK_LIST:-""}
46 export PARALLEL=${PARALLEL:-"no"}
47
48 export NAME=${NAME:-local}
49
50 SAVE_PWD=$PWD
51
52 CLEANUP=${CLEANUP:-:}
53 SETUP=${SETUP:-:}
54 TRACE=${TRACE:-""}
55 LUSTRE=${LUSTRE:-$(cd $(dirname $0)/..; echo $PWD)}
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 27m 64b 68 71 77f 78 115 124b"
62
63 [ $(facet_fstype $SINGLEMDS) = "zfs" ] &&
64 # bug number for skipped test:        LU-1593 LU-2610 LU-2833 LU-1957 LU-2805
65         ALWAYS_EXCEPT="$ALWAYS_EXCEPT 34h     40      48a     180     184c"
66
67 FAIL_ON_ERROR=false
68
69 cleanup() {
70         echo -n "cln.."
71         pgrep ll_sa > /dev/null && { echo "There are ll_sa thread not exit!"; exit 20; }
72         cleanupall ${FORCE} $* || { echo "FAILed to clean up"; exit 20; }
73 }
74 setup() {
75         echo -n "mnt.."
76         load_modules
77         setupall || exit 10
78         echo "done"
79 }
80
81 check_kernel_version() {
82         WANT_VER=$1
83         GOT_VER=$(lctl get_param -n version | awk '/kernel:/ {print $2}')
84         case $GOT_VER in
85         patchless|patchless_client) return 0;;
86         *) [ $GOT_VER -ge $WANT_VER ] && return 0 ;;
87         esac
88         log "test needs at least kernel version $WANT_VER, running $GOT_VER"
89         return 1
90 }
91
92 check_swap_layouts_support()
93 {
94         $LCTL get_param -n llite.*.sbi_flags | grep -q layout ||
95                 { skip "Does not support layout lock."; return 0; }
96         return 1
97 }
98
99 if [ "$ONLY" == "cleanup" ]; then
100        sh llmountcleanup.sh
101        exit 0
102 fi
103
104 check_and_setup_lustre
105
106 DIR=${DIR:-$MOUNT}
107 assert_DIR
108
109 MDT0=$($LCTL get_param -n mdc.*.mds_server_uuid | \
110     awk '{gsub(/_UUID/,""); print $1}' | head -1)
111 LOVNAME=$($LCTL get_param -n llite.*.lov.common_name | tail -n 1)
112 OSTCOUNT=$($LCTL get_param -n lov.$LOVNAME.numobd)
113 STRIPECOUNT=$($LCTL get_param -n lov.$LOVNAME.stripecount)
114 STRIPESIZE=$($LCTL get_param -n lov.$LOVNAME.stripesize)
115 ORIGFREE=$($LCTL get_param -n lov.$LOVNAME.kbytesavail)
116 MAXFREE=${MAXFREE:-$((200000 * $OSTCOUNT))}
117
118 [ -f $DIR/d52a/foo ] && chattr -a $DIR/d52a/foo
119 [ -f $DIR/d52b/foo ] && chattr -i $DIR/d52b/foo
120 rm -rf $DIR/[Rdfs][0-9]*
121
122 # $RUNAS_ID may get set incorrectly somewhere else
123 [ $UID -eq 0 -a $RUNAS_ID -eq 0 ] && error "\$RUNAS_ID set to 0, but \$UID is also 0!"
124
125 check_runas_id $RUNAS_ID $RUNAS_GID $RUNAS
126
127 build_test_filter
128
129 if [ "${ONLY}" = "MOUNT" ] ; then
130         echo "Lustre is up, please go on"
131         exit
132 fi
133
134 echo "preparing for tests involving mounts"
135 EXT2_DEV=${EXT2_DEV:-$TMP/SANITY.LOOP}
136 touch $EXT2_DEV
137 mke2fs -j -F $EXT2_DEV 8000 > /dev/null
138 echo # add a newline after mke2fs.
139
140 umask 077
141
142 OLDDEBUG=$(lctl get_param -n debug 2> /dev/null)
143 lctl set_param debug=-1 2> /dev/null || true
144 test_0a() {
145         touch $DIR/$tfile
146         $CHECKSTAT -t file $DIR/$tfile || error "$tfile is not a file"
147         rm $DIR/$tfile
148         $CHECKSTAT -a $DIR/$tfile || error "$tfile was not removed"
149 }
150 run_test 0a "touch; rm ====================="
151
152 test_0b() {
153         chmod 0755 $DIR || error "chmod 0755 $DIR failed"
154         $CHECKSTAT -p 0755 $DIR || error "$DIR permission is not 0755"
155 }
156 run_test 0b "chmod 0755 $DIR ============================="
157
158 test_0c() {
159         $LCTL get_param mdc.*.import | grep "state: FULL" ||
160                 error "import not FULL"
161         $LCTL get_param mdc.*.import | grep "target: $FSNAME-MDT" ||
162                 error "bad target"
163 }
164 run_test 0c "check import proc ============================="
165
166 test_1() {
167         test_mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
168         test_mkdir -p $DIR/$tdir/d2 || error "mkdir $tdir/d2 failed"
169         test_mkdir $DIR/$tdir/d2 && error "we expect EEXIST, but not returned"
170         $CHECKSTAT -t dir $DIR/$tdir/d2 || error "$tdir/d2 is not a dir"
171         rmdir $DIR/$tdir/d2
172         rmdir $DIR/$tdir
173         $CHECKSTAT -a $DIR/$tdir || error "$tdir was not removed"
174 }
175 run_test 1 "mkdir; remkdir; rmdir =============================="
176
177 test_2() {
178         test_mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
179         touch $DIR/$tdir/$tfile || error "touch $tdir/$tfile failed"
180         $CHECKSTAT -t file $DIR/$tdir/$tfile || error "$tdir/$tfile not a file"
181         rm -r $DIR/$tdir
182         $CHECKSTAT -a $DIR/$tdir/$tfile || error "$tdir/$file is not removed"
183 }
184 run_test 2 "mkdir; touch; rmdir; check file ===================="
185
186 test_3() {
187         test_mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
188         $CHECKSTAT -t dir $DIR/$tdir || error "$tdir is not a directory"
189         touch $DIR/$tdir/$tfile
190         $CHECKSTAT -t file $DIR/$tdir/$tfile || error "$tdir/$tfile not a file"
191         rm -r $DIR/$tdir
192         $CHECKSTAT -a $DIR/$tdir || error "$tdir is not removed"
193 }
194 run_test 3 "mkdir; touch; rmdir; check dir ====================="
195
196 test_5() {
197         test_mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
198         test_mkdir $DIR/$tdir/d2 || error "mkdir $tdir/d2 failed"
199         chmod 0707 $DIR/$tdir/d2 || error "chmod 0707 $tdir/d2 failed"
200         $CHECKSTAT -t dir -p 0707 $DIR/$tdir/d2 || error "$tdir/d2 not mode 707"
201         $CHECKSTAT -t dir $DIR/$tdir/d2 || error "$tdir/d2 is not a directory"
202 }
203 run_test 5 "mkdir .../d5 .../d5/d2; chmod .../d5/d2 ============"
204
205 test_6a() {
206         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
207         chmod 0666 $DIR/$tfile || error "chmod 0666 $tfile failed"
208         $CHECKSTAT -t file -p 0666 -u \#$UID $DIR/$tfile ||
209                 error "$tfile does not have perm 0666 or UID $UID"
210         $RUNAS chmod 0444 $DIR/$tfile && error "chmod $tfile worked on UID $UID"
211         $CHECKSTAT -t file -p 0666 -u \#$UID $DIR/$tfile ||
212                 error "$tfile should be 0666 and owned by UID $UID"
213 }
214 run_test 6a "touch f6a; chmod f6a; $RUNAS chmod f6a (should return error) =="
215
216 test_6c() {
217         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID" && return
218         touch $DIR/$tfile
219         chown $RUNAS_ID $DIR/$tfile || error "chown $RUNAS_ID $file failed"
220         $CHECKSTAT -t file -u \#$RUNAS_ID $DIR/$tfile ||
221                 error "$tfile should be owned by UID $RUNAS_ID"
222         $RUNAS chown $UID $DIR/$tfile && error "chown $UID $file succeeded"
223         $CHECKSTAT -t file -u \#$RUNAS_ID $DIR/$tfile ||
224                 error "$tfile should be owned by UID $RUNAS_ID"
225 }
226 run_test 6c "touch f6c; chown f6c; $RUNAS chown f6c (should return error) =="
227
228 test_6e() {
229         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID" && return
230         touch $DIR/$tfile
231         chgrp $RUNAS_ID $DIR/$tfile || error "chgrp $RUNAS_ID $file failed"
232         $CHECKSTAT -t file -u \#$UID -g \#$RUNAS_ID $DIR/$tfile ||
233                 error "$tfile should be owned by GID $UID"
234         $RUNAS chgrp $UID $DIR/$tfile && error "chgrp $UID $file succeeded"
235         $CHECKSTAT -t file -u \#$UID -g \#$RUNAS_ID $DIR/$tfile ||
236                 error "$tfile should be owned by UID $UID and GID $RUNAS_ID"
237 }
238 run_test 6e "touch f6e; chgrp f6e; $RUNAS chgrp f6e (should return error) =="
239
240 test_6g() {
241         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID" && return
242         test_mkdir $DIR/$tdir || error "mkdir $tfile failed"
243         chmod 777 $DIR/$tdir || error "chmod 0777 $tdir failed"
244         $RUNAS mkdir $DIR/$tdir/d || error "mkdir $tdir/d failed"
245         chmod g+s $DIR/$tdir/d || error "chmod g+s $tdir/d failed"
246         test_mkdir $DIR/$tdir/d/subdir || error "mkdir $tdir/d/subdir failed"
247         $CHECKSTAT -g \#$RUNAS_GID $DIR/$tdir/d/subdir ||
248                 error "$tdir/d/subdir should be GID $RUNAS_GID"
249 }
250 run_test 6g "Is new dir in sgid dir inheriting group?"
251
252 test_6h() { # bug 7331
253         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID" && return
254         touch $DIR/$tfile || error "touch failed"
255         chown $RUNAS_ID:$RUNAS_GID $DIR/$tfile || error "initial chown failed"
256         $RUNAS -G$RUNAS_GID chown $RUNAS_ID:0 $DIR/$tfile &&
257                 error "chown $RUNAS_ID:0 $tfile worked as GID $RUNAS_GID"
258         $CHECKSTAT -t file -u \#$RUNAS_ID -g \#$RUNAS_GID $DIR/$tfile ||
259                 error "$tdir/$tfile should be UID $RUNAS_UID GID $RUNAS_GID"
260 }
261 run_test 6h "$RUNAS chown RUNAS_ID.0 .../f6h (should return error)"
262
263 test_7a() {
264         test_mkdir $DIR/$tdir
265         $MCREATE $DIR/$tdir/$tfile
266         chmod 0666 $DIR/$tdir/$tfile
267         $CHECKSTAT -t file -p 0666 $DIR/$tdir/$tfile ||
268                 error "$tdir/$tfile should be mode 0666"
269 }
270 run_test 7a "mkdir .../d7; mcreate .../d7/f; chmod .../d7/f ===="
271
272 test_7b() {
273         if [ ! -d $DIR/$tdir ]; then
274                 mkdir $DIR/$tdir
275         fi
276         $MCREATE $DIR/$tdir/$tfile
277         echo -n foo > $DIR/$tdir/$tfile
278         [ "$(cat $DIR/$tdir/$tfile)" = "foo" ] || error "$tdir/$tfile not 'foo'"
279         $CHECKSTAT -t file -s 3 $DIR/$tdir/$tfile || error "$tfile size not 3"
280 }
281 run_test 7b "mkdir .../d7; mcreate d7/f2; echo foo > d7/f2 ====="
282
283 test_8() {
284         test_mkdir $DIR/$tdir
285         touch $DIR/$tdir/$tfile
286         chmod 0666 $DIR/$tdir/$tfile
287         $CHECKSTAT -t file -p 0666 $DIR/$tdir/$tfile ||
288                 error "$tfile mode not 0666"
289 }
290 run_test 8 "mkdir .../d8; touch .../d8/f; chmod .../d8/f ======="
291
292 test_9() {
293         test_mkdir $DIR/$tdir
294         test_mkdir $DIR/$tdir/d2
295         test_mkdir $DIR/$tdir/d2/d3
296         $CHECKSTAT -t dir $DIR/$tdir/d2/d3 || error "$tdir/d2/d3 not a dir"
297 }
298 run_test 9 "mkdir .../d9 .../d9/d2 .../d9/d2/d3 ================"
299
300 test_10() {
301         test_mkdir $DIR/$tdir
302         test_mkdir $DIR/$tdir/d2
303         touch $DIR/$tdir/d2/$tfile
304         $CHECKSTAT -t file $DIR/$tdir/d2/$tfile ||
305                 error "$tdir/d2/$tfile not a file"
306 }
307 run_test 10 "mkdir .../d10 .../d10/d2; touch .../d10/d2/f ======"
308
309 test_11() {
310         test_mkdir $DIR/$tdir
311         test_mkdir $DIR/$tdir/d2
312         chmod 0666 $DIR/$tdir/d2
313         chmod 0705 $DIR/$tdir/d2
314         $CHECKSTAT -t dir -p 0705 $DIR/$tdir/d2 ||
315                 error "$tdir/d2 mode not 0705"
316 }
317 run_test 11 "mkdir .../d11 d11/d2; chmod .../d11/d2 ============"
318
319 test_12() {
320         test_mkdir $DIR/$tdir
321         touch $DIR/$tdir/$tfile
322         chmod 0666 $DIR/$tdir/$tfile
323         chmod 0654 $DIR/$tdir/$tfile
324         $CHECKSTAT -t file -p 0654 $DIR/$tdir/$tfile ||
325                 error "$tdir/d2 mode not 0654"
326 }
327 run_test 12 "touch .../d12/f; chmod .../d12/f .../d12/f ========"
328
329 test_13() {
330         test_mkdir $DIR/$tdir
331         dd if=/dev/zero of=$DIR/$tdir/$tfile count=10
332         >  $DIR/$tdir/$tfile
333         $CHECKSTAT -t file -s 0 $DIR/$tdir/$tfile ||
334                 error "$tdir/$tfile size not 0 after truncate"
335 }
336 run_test 13 "creat .../d13/f; dd .../d13/f; > .../d13/f ========"
337
338 test_14() {
339         test_mkdir $DIR/$tdir
340         touch $DIR/$tdir/$tfile
341         rm $DIR/$tdir/$tfile
342         $CHECKSTAT -a $DIR/$tdir/$tfile || error "$tdir/$tfile not removed"
343 }
344 run_test 14 "touch .../d14/f; rm .../d14/f; rm .../d14/f ======="
345
346 test_15() {
347         test_mkdir $DIR/$tdir
348         touch $DIR/$tdir/$tfile
349         mv $DIR/$tdir/$tfile $DIR/$tdir/${tfile}_2
350         $CHECKSTAT -t file $DIR/$tdir/${tfile}_2 ||
351                 error "$tdir/${tfile_2} not a file after rename"
352 }
353 run_test 15 "touch .../d15/f; mv .../d15/f .../d15/f2 =========="
354
355 test_16() {
356         test_mkdir $DIR/$tdir
357         touch $DIR/$tdir/$tfile
358         rm -rf $DIR/$tdir/$tfile
359         $CHECKSTAT -a $DIR/$tdir/$tfile || error "$tdir/$tfile not removed"
360 }
361 run_test 16 "touch .../d16/f; rm -rf .../d16/f ================="
362
363 test_17a() {
364         test_mkdir -p $DIR/$tdir
365         touch $DIR/$tdir/$tfile
366         ln -s $DIR/$tdir/$tfile $DIR/$tdir/l-exist
367         ls -l $DIR/$tdir
368         $CHECKSTAT -l $DIR/$tdir/$tfile $DIR/$tdir/l-exist ||
369                 error "$tdir/l-exist not a symlink"
370         $CHECKSTAT -f -t f $DIR/$tdir/l-exist ||
371                 error "$tdir/l-exist not referencing a file"
372         rm -f $DIR/$tdir/l-exist
373         $CHECKSTAT -a $DIR/$tdir/l-exist || error "$tdir/l-exist not removed"
374 }
375 run_test 17a "symlinks: create, remove (real) =================="
376
377 test_17b() {
378         test_mkdir -p $DIR/$tdir
379         ln -s no-such-file $DIR/$tdir/l-dangle
380         ls -l $DIR/$tdir
381         $CHECKSTAT -l no-such-file $DIR/$tdir/l-dangle ||
382                 error "$tdir/l-dangle not referencing no-such-file"
383         $CHECKSTAT -fa $DIR/$tdir/l-dangle ||
384                 error "$tdir/l-dangle not referencing non-existent file"
385         rm -f $DIR/$tdir/l-dangle
386         $CHECKSTAT -a $DIR/$tdir/l-dangle || error "$tdir/l-dangle not removed"
387 }
388 run_test 17b "symlinks: create, remove (dangling) =============="
389
390 test_17c() { # bug 3440 - don't save failed open RPC for replay
391         test_mkdir -p $DIR/$tdir
392         ln -s foo $DIR/$tdir/$tfile
393         cat $DIR/$tdir/$tfile && error "opened non-existent symlink" || true
394 }
395 run_test 17c "symlinks: open dangling (should return error) ===="
396
397 test_17d() {
398         test_mkdir -p $DIR/$tdir
399         ln -s foo $DIR/$tdir/$tfile
400         touch $DIR/$tdir/$tfile || error "creating to new symlink"
401 }
402 run_test 17d "symlinks: create dangling ========================"
403
404 test_17e() {
405         test_mkdir -p $DIR/$tdir
406         local foo=$DIR/$tdir/$tfile
407         ln -s $foo $foo || error "create symlink failed"
408         ls -l $foo || error "ls -l failed"
409         ls $foo && error "ls not failed" || true
410 }
411 run_test 17e "symlinks: create recursive symlink (should return error) ===="
412
413 test_17f() {
414         test_mkdir -p $DIR/d17f
415         ln -s 1234567890/2234567890/3234567890/4234567890 $DIR/d17f/111
416         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890 $DIR/d17f/222
417         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890 $DIR/d17f/333
418         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890/9234567890/a234567890/b234567890 $DIR/d17f/444
419         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890/9234567890/a234567890/b234567890/c234567890/d234567890/f234567890 $DIR/d17f/555
420         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890/9234567890/a234567890/b234567890/c234567890/d234567890/f234567890/aaaaaaaaaa/bbbbbbbbbb/cccccccccc/dddddddddd/eeeeeeeeee/ffffffffff/ $DIR/d17f/666
421         ls -l  $DIR/d17f
422 }
423 run_test 17f "symlinks: long and very long symlink name ========================"
424
425 # str_repeat(S, N) generate a string that is string S repeated N times
426 str_repeat() {
427         local s=$1
428         local n=$2
429         local ret=''
430         while [ $((n -= 1)) -ge 0 ]; do
431                 ret=$ret$s
432         done
433         echo $ret
434 }
435
436 # Long symlinks and LU-2241
437 test_17g() {
438         test_mkdir -p $DIR/$tdir
439         local TESTS="59 60 61 4094 4095"
440
441         # Fix for inode size boundary in 2.1.4
442         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.1.4) ] &&
443                 TESTS="4094 4095"
444
445         # Patch not applied to 2.2 or 2.3 branches
446         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] &&
447         [ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.3.55) ] &&
448                 TESTS="4094 4095"
449
450         for i in $TESTS; do
451                 local SYMNAME=$(str_repeat 'x' $i)
452                 ln -s $SYMNAME $DIR/$tdir/f$i || error "failed $i-char symlink"
453                 readlink $DIR/$tdir/f$i || error "failed $i-char readlink"
454         done
455 }
456 run_test 17g "symlinks: really long symlink name and inode boundaries"
457
458 test_17h() { #bug 17378
459         remote_mds_nodsh && skip "remote MDS with nodsh" && return
460         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
461         local mdt_idx
462         test_mkdir -p $DIR/$tdir
463         if [ $MDSCOUNT -gt 1 ]; then
464                 mdt_idx=$($LFS getdirstripe -i $DIR/$tdir)
465         else
466                 mdt_idx=0
467         fi
468         $SETSTRIPE -c -1 $DIR/$tdir
469 #define OBD_FAIL_MDS_LOV_PREP_CREATE 0x141
470         do_facet mds$((mdt_idx + 1)) lctl set_param fail_loc=0x80000141
471         touch $DIR/$tdir/$tfile || true
472 }
473 run_test 17h "create objects: lov_free_memmd() doesn't lbug"
474
475 test_17i() { #bug 20018
476         remote_mds_nodsh && skip "remote MDS with nodsh" && return
477         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
478         test_mkdir -p $DIR/$tdir
479         local foo=$DIR/$tdir/$tfile
480         local mdt_idx
481         if [ $MDSCOUNT -gt 1 ]; then
482                 mdt_idx=$($LFS getdirstripe -i $DIR/$tdir)
483         else
484                 mdt_idx=0
485         fi
486         ln -s $foo $foo || error "create symlink failed"
487 #define OBD_FAIL_MDS_READLINK_EPROTO     0x143
488         do_facet mds$((mdt_idx + 1)) lctl set_param fail_loc=0x80000143
489         ls -l $foo && error "error not detected"
490         return 0
491 }
492 run_test 17i "don't panic on short symlink"
493
494 test_17k() { #bug 22301
495         rsync --help | grep -q xattr ||
496                 skip_env "$(rsync --version| head -1) does not support xattrs"
497         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
498         test_mkdir -p $DIR/$tdir
499         test_mkdir -p $DIR/$tdir.new
500         touch $DIR/$tdir/$tfile
501         ln -s $DIR/$tdir/$tfile $DIR/$tdir/$tfile.lnk
502         rsync -av -X $DIR/$tdir/ $DIR/$tdir.new ||
503                 error "rsync failed with xattrs enabled"
504 }
505 run_test 17k "symlinks: rsync with xattrs enabled ========================="
506
507 test_17l() { # LU-279
508         mkdir -p $DIR/$tdir
509         touch $DIR/$tdir/$tfile
510         ln -s $DIR/$tdir/$tfile $DIR/$tdir/$tfile.lnk
511         for path in "$DIR/$tdir" "$DIR/$tdir/$tfile" "$DIR/$tdir/$tfile.lnk"; do
512                 # -h to not follow symlinks. -m '' to list all the xattrs.
513                 # grep to remove first line: '# file: $path'.
514                 for xattr in `getfattr -hm '' $path 2>/dev/null | grep -v '^#'`;
515                 do
516                         lgetxattr_size_check $path $xattr ||
517                                 error "lgetxattr_size_check $path $xattr failed"
518                 done
519         done
520 }
521 run_test 17l "Ensure lgetxattr's returned xattr size is consistent ========"
522
523 # LU-1540
524 test_17m() {
525         local short_sym="0123456789"
526         local WDIR=$DIR/${tdir}m
527         local mds_index
528         local devname
529         local cmd
530         local i
531         local rc=0
532
533         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] &&
534         [ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.2.93) ] &&
535                 skip "MDS 2.2.0-2.2.93 do not NUL-terminate symlinks" && return
536
537         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
538                 skip "only for ldiskfs MDT" && return 0
539
540         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
541
542         mkdir -p $WDIR
543         long_sym=$short_sym
544         # create a long symlink file
545         for ((i = 0; i < 4; ++i)); do
546                 long_sym=${long_sym}${long_sym}
547         done
548
549         echo "create 512 short and long symlink files under $WDIR"
550         for ((i = 0; i < 256; ++i)); do
551                 ln -sf ${long_sym}"a5a5" $WDIR/long-$i
552                 ln -sf ${short_sym}"a5a5" $WDIR/short-$i
553         done
554
555         echo "erase them"
556         rm -f $WDIR/*
557         sync
558         wait_delete_completed
559
560         echo "recreate the 512 symlink files with a shorter string"
561         for ((i = 0; i < 512; ++i)); do
562                 # rewrite the symlink file with a shorter string
563                 ln -sf ${long_sym} $WDIR/long-$i
564                 ln -sf ${short_sym} $WDIR/short-$i
565         done
566
567         mds_index=$($LFS getstripe -M $WDIR)
568         mds_index=$((mds_index+1))
569         devname=$(mdsdevname $mds_index)
570         cmd="$E2FSCK -fnvd $devname"
571
572         echo "stop and checking mds${mds_index}: $cmd"
573         # e2fsck should not return error
574         stop mds${mds_index} -f
575         do_facet mds${mds_index} $cmd || rc=$?
576
577         start mds${mds_index} $devname $MDS_MOUNT_OPTS
578         df $MOUNT > /dev/null 2>&1
579         [ $rc -ne 0 ] && error "e2fsck should not report error upon "\
580                 "short/long symlink MDT: rc=$rc"
581         return $rc
582 }
583 run_test 17m "run e2fsck against MDT which contains short/long symlink"
584
585 check_fs_consistency_17n() {
586         local mdt_index
587         local devname
588         local cmd
589         local rc=0
590
591         for mdt_index in $(seq 1 $MDSCOUNT); do
592                 devname=$(mdsdevname $mdt_index)
593                 cmd="$E2FSCK -fnvd $devname"
594
595                 echo "stop and checking mds${mdt_index}: $cmd"
596                 # e2fsck should not return error
597                 stop mds${mdt_index}
598                 do_facet mds${mdt_index} $cmd || rc=$?
599
600                 start mds${mdt_index} $devname $MDS_MOUNT_OPTS
601                 df $MOUNT > /dev/null 2>&1
602                 [ $rc -ne 0 ] && break
603         done
604         return $rc
605 }
606
607 test_17n() {
608         local i
609
610         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] &&
611         [ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.2.93) ] &&
612                 skip "MDS 2.2.0-2.2.93 do not NUL-terminate symlinks" && return
613
614         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
615                 skip "only for ldiskfs MDT" && return 0
616
617         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
618
619         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
620
621         mkdir -p $DIR/$tdir
622         for ((i=0; i<10; i++)); do
623                 $LFS mkdir -i 1 $DIR/$tdir/remote_dir_${i} ||
624                         error "create remote dir error $i"
625                 createmany -o $DIR/$tdir/remote_dir_${i}/f 10 ||
626                         error "create files under remote dir failed $i"
627         done
628
629         check_fs_consistency_17n || error "e2fsck report error"
630
631         for ((i=0;i<10;i++)); do
632                 rm -rf $DIR/$tdir/remote_dir_${i} ||
633                         error "destroy remote dir error $i"
634         done
635
636         check_fs_consistency_17n || error "e2fsck report error"
637 }
638 run_test 17n "run e2fsck against master/slave MDT which contains remote dir"
639
640 test_17o() {
641         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.64) ]] &&
642                 skip "Need MDS version at least 2.3.64" && return
643
644         local WDIR=$DIR/${tdir}o
645         local mdt_index
646         local mdtdevname
647         local rc=0
648
649         mkdir -p $WDIR
650         mdt_index=$($LFS getstripe -M $WDIR)
651         mdt_index=$((mdt_index+1))
652         mdtdevname=$(mdsdevname $mdt_index)
653
654         touch $WDIR/$tfile
655         stop mds${mdt_index}
656         start mds${mdt_index} $mdtdevname $MDS_MOUNT_OPTS
657
658         #define OBD_FAIL_OSD_LMA_INCOMPAT 0x194
659         do_facet mds${mdt_index} lctl set_param fail_loc=0x194
660         ls -l $WDIR/$tfile && rc=1
661         do_facet mds${mdt_index} lctl set_param fail_loc=0
662         [[ $rc -ne 0 ]] && error "stat file should fail"
663         true
664 }
665 run_test 17o "stat file with incompat LMA feature"
666
667 test_18() {
668         touch $DIR/f || error "Failed to touch $DIR/f: $?"
669         ls $DIR || error "Failed to ls $DIR: $?"
670 }
671 run_test 18 "touch .../f ; ls ... =============================="
672
673 test_19a() {
674         touch $DIR/$tfile
675         ls -l $DIR
676         rm $DIR/$tfile
677         $CHECKSTAT -a $DIR/$tfile || error "$tfile was not removed"
678 }
679 run_test 19a "touch .../f19 ; ls -l ... ; rm .../f19 ==========="
680
681 test_19b() {
682         ls -l $DIR/$tfile && error "ls -l $tfile failed"|| true
683 }
684 run_test 19b "ls -l .../f19 (should return error) =============="
685
686 test_19c() {
687         [ $RUNAS_ID -eq $UID ] &&
688                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
689         $RUNAS touch $DIR/$tfile && error "create non-root file failed" || true
690 }
691 run_test 19c "$RUNAS touch .../f19 (should return error) =="
692
693 test_19d() {
694         cat $DIR/f19 && error || true
695 }
696 run_test 19d "cat .../f19 (should return error) =============="
697
698 test_20() {
699         touch $DIR/$tfile
700         rm $DIR/$tfile
701         log "1 done"
702         touch $DIR/$tfile
703         rm $DIR/$tfile
704         log "2 done"
705         touch $DIR/$tfile
706         rm $DIR/$tfile
707         log "3 done"
708         $CHECKSTAT -a $DIR/$tfile || error "$tfile was not removed"
709 }
710 run_test 20 "touch .../f ; ls -l ... ==========================="
711
712 test_21() {
713         test_mkdir -p $DIR/$tdir
714         [ -f $DIR/$tdir/dangle ] && rm -f $DIR/$tdir/dangle
715         ln -s dangle $DIR/$tdir/link
716         echo foo >> $DIR/$tdir/link
717         cat $DIR/$tdir/dangle
718         $CHECKSTAT -t link $DIR/$tdir/link || error "$tdir/link not a link"
719         $CHECKSTAT -f -t file $DIR/$tdir/link ||
720                 error "$tdir/link not linked to a file"
721 }
722 run_test 21 "write to dangling link ============================"
723
724 test_22() {
725         WDIR=$DIR/$tdir
726         test_mkdir -p $DIR/$tdir
727         chown $RUNAS_ID:$RUNAS_GID $WDIR
728         (cd $WDIR || error "cd $WDIR failed";
729         $RUNAS tar cf - /etc/hosts /etc/sysconfig/network | \
730         $RUNAS tar xf -)
731         ls -lR $WDIR/etc || error "ls -lR $WDIR/etc failed"
732         $CHECKSTAT -t dir $WDIR/etc || error "checkstat -t dir failed"
733         $CHECKSTAT -u \#$RUNAS_ID -g \#$RUNAS_GID $WDIR/etc || error "checkstat -u failed"
734 }
735 run_test 22 "unpack tar archive as non-root user ==============="
736
737 # was test_23
738 test_23a() {
739         test_mkdir -p $DIR/$tdir
740         local file=$DIR/$tdir/$tfile
741
742         openfile -f O_CREAT:O_EXCL $file || error "$file create failed"
743         openfile -f O_CREAT:O_EXCL $file &&
744                 error "$file recreate succeeded" || true
745 }
746 run_test 23a "O_CREAT|O_EXCL in subdir =========================="
747
748 test_23b() { # bug 18988
749         test_mkdir -p $DIR/$tdir
750         local file=$DIR/$tdir/$tfile
751
752         rm -f $file
753         echo foo > $file || error "write filed"
754         echo bar >> $file || error "append filed"
755         $CHECKSTAT -s 8 $file || error "wrong size"
756         rm $file
757 }
758 run_test 23b "O_APPEND check =========================="
759
760 # rename sanity
761 test_24a() {
762         echo '-- same directory rename'
763         test_mkdir $DIR/$tdir
764         touch $DIR/$tdir/$tfile.1
765         mv $DIR/$tdir/$tfile.1 $DIR/$tdir/$tfile.2
766         $CHECKSTAT -t file $DIR/$tdir/$tfile.2 || error "$tfile.2 not a file"
767 }
768 run_test 24a "rename file to non-existent target"
769
770 test_24b() {
771         test_mkdir $DIR/$tdir
772         touch $DIR/$tdir/$tfile.{1,2}
773         mv $DIR/$tdir/$tfile.1 $DIR/$tdir/$tfile.2
774         $CHECKSTAT -a $DIR/$tdir/$tfile.1 || error "$tfile.1 exists"
775         $CHECKSTAT -t file $DIR/$tdir/$tfile.2 || error "$tfile.2 not a file"
776 }
777 run_test 24b "rename file to existing target"
778
779 test_24c() {
780         test_mkdir $DIR/$tdir
781         test_mkdir $DIR/$tdir/d$testnum.1
782         mv $DIR/$tdir/d$testnum.1 $DIR/$tdir/d$testnum.2
783         $CHECKSTAT -a $DIR/$tdir/d$testnum.1 || error "d$testnum.1 exists"
784         $CHECKSTAT -t dir $DIR/$tdir/d$testnum.2 || error "d$testnum.2 not dir"
785 }
786 run_test 24c "rename directory to non-existent target"
787
788 test_24d() {
789         test_mkdir $DIR/$tdir
790         test_mkdir $DIR/$tdir/d$testnum.1
791         test_mkdir $DIR/$tdir/d$testnum.2
792         mrename $DIR/$tdir/d$testnum.1 $DIR/$tdir/d$testnum.2
793         $CHECKSTAT -a $DIR/$tdir/d$testnum.1 || error "d$testnum.1 exists"
794         $CHECKSTAT -t dir $DIR/$tdir/d$testnum.2 || error "d$testnum.2 not dir"
795 }
796 run_test 24d "rename directory to existing target"
797
798 test_24e() {
799         echo '-- cross directory renames --'
800         test_mkdir $DIR/R5a
801         test_mkdir $DIR/R5b
802         touch $DIR/R5a/f
803         mv $DIR/R5a/f $DIR/R5b/g
804         $CHECKSTAT -a $DIR/R5a/f || error
805         $CHECKSTAT -t file $DIR/R5b/g || error
806 }
807 run_test 24e "touch .../R5a/f; rename .../R5a/f .../R5b/g ======"
808
809 test_24f() {
810         test_mkdir $DIR/R6a
811         test_mkdir $DIR/R6b
812         touch $DIR/R6a/f $DIR/R6b/g
813         mv $DIR/R6a/f $DIR/R6b/g
814         $CHECKSTAT -a $DIR/R6a/f || error
815         $CHECKSTAT -t file $DIR/R6b/g || error
816 }
817 run_test 24f "touch .../R6a/f R6b/g; mv .../R6a/f .../R6b/g ===="
818
819 test_24g() {
820         test_mkdir $DIR/R7a
821         test_mkdir $DIR/R7b
822         test_mkdir $DIR/R7a/d
823         mv $DIR/R7a/d $DIR/R7b/e
824         $CHECKSTAT -a $DIR/R7a/d || error
825         $CHECKSTAT -t dir $DIR/R7b/e || error
826 }
827 run_test 24g "mkdir .../R7{a,b}/d; mv .../R7a/d .../R7b/e ======"
828
829 test_24h() {
830         test_mkdir $DIR/R8a
831         test_mkdir $DIR/R8b
832         test_mkdir $DIR/R8a/d
833         test_mkdir $DIR/R8b/e
834         mrename $DIR/R8a/d $DIR/R8b/e
835         $CHECKSTAT -a $DIR/R8a/d || error
836         $CHECKSTAT -t dir $DIR/R8b/e || error
837 }
838 run_test 24h "mkdir .../R8{a,b}/{d,e}; rename .../R8a/d .../R8b/e"
839
840 test_24i() {
841         echo "-- rename error cases"
842         test_mkdir $DIR/R9
843         test_mkdir $DIR/R9/a
844         touch $DIR/R9/f
845         mrename $DIR/R9/f $DIR/R9/a
846         $CHECKSTAT -t file $DIR/R9/f || error
847         $CHECKSTAT -t dir  $DIR/R9/a || error
848         $CHECKSTAT -a $DIR/R9/a/f || error
849 }
850 run_test 24i "rename file to dir error: touch f ; mkdir a ; rename f a"
851
852 test_24j() {
853         test_mkdir $DIR/R10
854         mrename $DIR/R10/f $DIR/R10/g
855         $CHECKSTAT -t dir $DIR/R10 || error
856         $CHECKSTAT -a $DIR/R10/f || error
857         $CHECKSTAT -a $DIR/R10/g || error
858 }
859 run_test 24j "source does not exist ============================"
860
861 test_24k() {
862         test_mkdir $DIR/R11a
863         test_mkdir $DIR/R11a/d
864         touch $DIR/R11a/f
865         mv $DIR/R11a/f $DIR/R11a/d
866         $CHECKSTAT -a $DIR/R11a/f || error
867         $CHECKSTAT -t file $DIR/R11a/d/f || error
868 }
869 run_test 24k "touch .../R11a/f; mv .../R11a/f .../R11a/d ======="
870
871 # bug 2429 - rename foo foo foo creates invalid file
872 test_24l() {
873         f="$DIR/f24l"
874         $MULTIOP $f OcNs || error
875 }
876 run_test 24l "Renaming a file to itself ========================"
877
878 test_24m() {
879         f="$DIR/f24m"
880         $MULTIOP $f OcLN ${f}2 ${f}2 || error "link ${f}2 ${f}2 failed"
881         # on ext3 this does not remove either the source or target files
882         # though the "expected" operation would be to remove the source
883         $CHECKSTAT -t file ${f} || error "${f} missing"
884         $CHECKSTAT -t file ${f}2 || error "${f}2 missing"
885 }
886 run_test 24m "Renaming a file to a hard link to itself ========="
887
888 test_24n() {
889     f="$DIR/f24n"
890     # this stats the old file after it was renamed, so it should fail
891     touch ${f}
892     $CHECKSTAT ${f}
893     mv ${f} ${f}.rename
894     $CHECKSTAT ${f}.rename
895     $CHECKSTAT -a ${f}
896 }
897 run_test 24n "Statting the old file after renaming (Posix rename 2)"
898
899 test_24o() {
900         check_kernel_version 37 || return 0
901         test_mkdir -p $DIR/d24o
902         rename_many -s random -v -n 10 $DIR/d24o
903 }
904 run_test 24o "rename of files during htree split ==============="
905
906 test_24p() {
907         test_mkdir $DIR/R12a
908         test_mkdir $DIR/R12b
909         DIRINO=`ls -lid $DIR/R12a | awk '{ print $1 }'`
910         mrename $DIR/R12a $DIR/R12b
911         $CHECKSTAT -a $DIR/R12a || error
912         $CHECKSTAT -t dir $DIR/R12b || error
913         DIRINO2=`ls -lid $DIR/R12b | awk '{ print $1 }'`
914         [ "$DIRINO" = "$DIRINO2" ] || error "R12a $DIRINO != R12b $DIRINO2"
915 }
916 run_test 24p "mkdir .../R12{a,b}; rename .../R12a .../R12b"
917
918 cleanup_multiop_pause() {
919         trap 0
920         kill -USR1 $MULTIPID
921 }
922
923 test_24q() {
924         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
925         test_mkdir $DIR/R13a
926         test_mkdir $DIR/R13b
927         local DIRINO=$(ls -lid $DIR/R13a | awk '{ print $1 }')
928         multiop_bg_pause $DIR/R13b D_c || error "multiop failed to start"
929         MULTIPID=$!
930
931         trap cleanup_multiop_pause EXIT
932         mrename $DIR/R13a $DIR/R13b
933         $CHECKSTAT -a $DIR/R13a || error "R13a still exists"
934         $CHECKSTAT -t dir $DIR/R13b || error "R13b does not exist"
935         local DIRINO2=$(ls -lid $DIR/R13b | awk '{ print $1 }')
936         [ "$DIRINO" = "$DIRINO2" ] || error "R13a $DIRINO != R13b $DIRINO2"
937         cleanup_multiop_pause
938         wait $MULTIPID || error "multiop close failed"
939 }
940 run_test 24q "mkdir .../R13{a,b}; open R13b rename R13a R13b ==="
941
942 test_24r() { #bug 3789
943         test_mkdir $DIR/R14a
944         test_mkdir $DIR/R14a/b
945         mrename $DIR/R14a $DIR/R14a/b && error "rename to subdir worked!"
946         $CHECKSTAT -t dir $DIR/R14a || error "$DIR/R14a missing"
947         $CHECKSTAT -t dir $DIR/R14a/b || error "$DIR/R14a/b missing"
948 }
949 run_test 24r "mkdir .../R14a/b; rename .../R14a .../R14a/b ====="
950
951 test_24s() {
952         test_mkdir $DIR/R15a
953         test_mkdir $DIR/R15a/b
954         test_mkdir $DIR/R15a/b/c
955         mrename $DIR/R15a $DIR/R15a/b/c && error "rename to sub-subdir worked!"
956         $CHECKSTAT -t dir $DIR/R15a || error "$DIR/R15a missing"
957         $CHECKSTAT -t dir $DIR/R15a/b/c || error "$DIR/R15a/b/c missing"
958 }
959 run_test 24s "mkdir .../R15a/b/c; rename .../R15a .../R15a/b/c ="
960 test_24t() {
961         test_mkdir $DIR/R16a
962         test_mkdir $DIR/R16a/b
963         test_mkdir $DIR/R16a/b/c
964         mrename $DIR/R16a/b/c $DIR/R16a && error "rename to sub-subdir worked!"
965         $CHECKSTAT -t dir $DIR/R16a || error "$DIR/R16a missing"
966         $CHECKSTAT -t dir $DIR/R16a/b/c || error "$DIR/R16a/b/c missing"
967 }
968 run_test 24t "mkdir .../R16a/b/c; rename .../R16a/b/c .../R16a ="
969
970 test_24u() { # bug12192
971         rm -rf $DIR/$tfile
972         $MULTIOP $DIR/$tfile C2w$((2048 * 1024))c || error
973         $CHECKSTAT -s $((2048 * 1024)) $DIR/$tfile || error "wrong file size"
974 }
975 run_test 24u "create stripe file"
976
977 page_size() {
978         getconf PAGE_SIZE
979 }
980
981 simple_cleanup_common() {
982         trap 0
983         rm -rf $DIR/$tdir
984         wait_delete_completed
985 }
986
987 max_pages_per_rpc() {
988         $LCTL get_param -n mdc.*.max_pages_per_rpc | head -1
989 }
990
991 test_24v() {
992         local NRFILES=100000
993         local FREE_INODES=$(mdt_free_inodes 0)
994         [ $FREE_INODES -lt $NRFILES ] && \
995                 skip "not enough free inodes $FREE_INODES required $NRFILES" &&
996                 return
997
998         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
999         trap simple_cleanup_common EXIT
1000
1001         # Performance issue on ZFS see LU-4072 (c.f. LU-2887)
1002         [ $(facet_fstype $SINGLEMDS) = "zfs" ] && NRFILES=10000
1003
1004         mkdir -p $DIR/$tdir
1005         createmany -m $DIR/$tdir/$tfile $NRFILES
1006
1007         cancel_lru_locks mdc
1008         lctl set_param mdc.*.stats clear
1009
1010         ls $DIR/$tdir >/dev/null || error "error in listing large dir"
1011
1012         # LU-5 large readdir
1013         # DIRENT_SIZE = 32 bytes for sizeof(struct lu_dirent) +
1014         #               8 bytes for name(filename is mostly 5 in this test) +
1015         #               8 bytes for luda_type
1016         # take into account of overhead in lu_dirpage header and end mark in
1017         # each page, plus one in RPC_NUM calculation.
1018         DIRENT_SIZE=48
1019         RPC_SIZE=$(($(max_pages_per_rpc) * $(page_size)))
1020         RPC_NUM=$(((NRFILES * DIRENT_SIZE + RPC_SIZE - 1) / RPC_SIZE + 1))
1021         mds_readpage=$(lctl get_param mdc.*MDT0000*.stats | \
1022                                 awk '/^mds_readpage/ {print $2}')
1023         [ $mds_readpage -gt $RPC_NUM ] && \
1024                 error "large readdir doesn't take effect"
1025
1026         simple_cleanup_common
1027 }
1028 run_test 24v "list directory with large files (handle hash collision, bug: 17560)"
1029
1030 test_24w() { # bug21506
1031         SZ1=234852
1032         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=4096 || return 1
1033         dd if=/dev/zero bs=$SZ1 count=1 >> $DIR/$tfile || return 2
1034         dd if=$DIR/$tfile of=$DIR/${tfile}_left bs=1M skip=4097 || return 3
1035         SZ2=`ls -l $DIR/${tfile}_left | awk '{print $5}'`
1036         [ "$SZ1" = "$SZ2" ] || \
1037                 error "Error reading at the end of the file $tfile"
1038 }
1039 run_test 24w "Reading a file larger than 4Gb"
1040
1041 test_24x() {
1042         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
1043         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1044         local MDTIDX=1
1045         local remote_dir=$DIR/$tdir/remote_dir
1046
1047         mkdir -p $DIR/$tdir
1048         $LFS mkdir -i $MDTIDX $remote_dir ||
1049                 error "create remote directory failed"
1050
1051         mkdir -p $DIR/$tdir/src_dir
1052         touch $DIR/$tdir/src_file
1053         mkdir -p $remote_dir/tgt_dir
1054         touch $remote_dir/tgt_file
1055
1056         mrename $remote_dir $DIR/ &&
1057                 error "rename dir cross MDT works!"
1058
1059         mrename $DIR/$tdir/src_dir $remote_dir/tgt_dir &&
1060                 error "rename dir cross MDT works!"
1061
1062         mrename $DIR/$tdir/src_file $remote_dir/tgt_file &&
1063                 error "rename file cross MDT works!"
1064
1065         ln $DIR/$tdir/src_file $remote_dir/tgt_file1 &&
1066                 error "ln file cross MDT should not work!"
1067
1068         rm -rf $DIR/$tdir || error "Can not delete directories"
1069 }
1070 run_test 24x "cross rename/link should be failed"
1071
1072 test_24y() {
1073         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
1074         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1075         local MDTIDX=1
1076         local remote_dir=$DIR/$tdir/remote_dir
1077
1078         mkdir -p $DIR/$tdir
1079         $LFS mkdir -i $MDTIDX $remote_dir ||
1080                    error "create remote directory failed"
1081
1082         mkdir -p $remote_dir/src_dir
1083         touch $remote_dir/src_file
1084         mkdir -p $remote_dir/tgt_dir
1085         touch $remote_dir/tgt_file
1086
1087         mrename $remote_dir/src_dir $remote_dir/tgt_dir ||
1088                 error "rename subdir in the same remote dir failed!"
1089
1090         mrename $remote_dir/src_file $remote_dir/tgt_file ||
1091                 error "rename files in the same remote dir failed!"
1092
1093         ln $remote_dir/tgt_file $remote_dir/tgt_file1 ||
1094                 error "link files in the same remote dir failed!"
1095
1096         rm -rf $DIR/$tdir || error "Can not delete directories"
1097 }
1098 run_test 24y "rename/link on the same dir should succeed"
1099
1100 test_24z() {
1101         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
1102         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1103         local MDTIDX=1
1104         local remote_src=$DIR/$tdir/remote_dir
1105         local remote_tgt=$DIR/$tdir/remote_tgt
1106
1107         mkdir -p $DIR/$tdir
1108         $LFS mkdir -i $MDTIDX $remote_src ||
1109                    error "create remote directory failed"
1110
1111         $LFS mkdir -i $MDTIDX $remote_tgt ||
1112                    error "create remote directory failed"
1113
1114         mrename $remote_src $remote_tgt &&
1115                 error "rename remote dirs should not work!"
1116
1117         # If target dir does not exists, it should succeed
1118         rm -rf $remote_tgt
1119         mrename $remote_src $remote_tgt ||
1120                 error "rename remote dirs(tgt dir does not exists) failed!"
1121
1122         rm -rf $DIR/$tdir || error "Can not delete directories"
1123 }
1124 run_test 24z "rename one remote dir to another remote dir should fail"
1125
1126 test_24A() { # LU-3182
1127         local NFILES=5000
1128
1129         rm -rf $DIR/$tdir
1130         mkdir -p $DIR/$tdir
1131         createmany -m $DIR/$tdir/$tfile $NFILES
1132         local t=`ls $DIR/$tdir | wc -l`
1133         local u=`ls $DIR/$tdir | sort -u | wc -l`
1134         if [ $t -ne $NFILES -o $u -ne $NFILES ] ; then
1135                 error "Expected $NFILES files, got $t ($u unique)"
1136         fi
1137
1138         rm -rf $DIR/$tdir || error "Can not delete directories"
1139 }
1140 run_test 24A "readdir() returns correct number of entries."
1141
1142 test_25a() {
1143         echo '== symlink sanity ============================================='
1144
1145         test_mkdir $DIR/d25
1146         ln -s d25 $DIR/s25
1147         touch $DIR/s25/foo || error
1148 }
1149 run_test 25a "create file in symlinked directory ==============="
1150
1151 test_25b() {
1152         [ ! -d $DIR/d25 ] && test_25a
1153         $CHECKSTAT -t file $DIR/s25/foo || error
1154 }
1155 run_test 25b "lookup file in symlinked directory ==============="
1156
1157 test_26a() {
1158         test_mkdir $DIR/d26
1159         test_mkdir $DIR/d26/d26-2
1160         ln -s d26/d26-2 $DIR/s26
1161         touch $DIR/s26/foo || error
1162 }
1163 run_test 26a "multiple component symlink ======================="
1164
1165 test_26b() {
1166         test_mkdir -p $DIR/d26b/d26-2
1167         ln -s d26b/d26-2/foo $DIR/s26-2
1168         touch $DIR/s26-2 || error
1169 }
1170 run_test 26b "multiple component symlink at end of lookup ======"
1171
1172 test_26c() {
1173         test_mkdir $DIR/d26.2
1174         touch $DIR/d26.2/foo
1175         ln -s d26.2 $DIR/s26.2-1
1176         ln -s s26.2-1 $DIR/s26.2-2
1177         ln -s s26.2-2 $DIR/s26.2-3
1178         chmod 0666 $DIR/s26.2-3/foo
1179 }
1180 run_test 26c "chain of symlinks ================================"
1181
1182 # recursive symlinks (bug 439)
1183 test_26d() {
1184         ln -s d26-3/foo $DIR/d26-3
1185 }
1186 run_test 26d "create multiple component recursive symlink ======"
1187
1188 test_26e() {
1189         [ ! -h $DIR/d26-3 ] && test_26d
1190         rm $DIR/d26-3
1191 }
1192 run_test 26e "unlink multiple component recursive symlink ======"
1193
1194 # recursive symlinks (bug 7022)
1195 test_26f() {
1196         test_mkdir -p $DIR/$tdir
1197         test_mkdir $DIR/$tdir/$tfile   || error "mkdir $DIR/$tdir/$tfile failed"
1198         cd $DIR/$tdir/$tfile           || error "cd $DIR/$tdir/$tfile failed"
1199         test_mkdir -p lndir/bar1      || error "mkdir lndir/bar1 failed"
1200         test_mkdir $DIR/$tdir/$tfile/$tfile   || error "mkdir $tfile failed"
1201         cd $tfile                || error "cd $tfile failed"
1202         ln -s .. dotdot          || error "ln dotdot failed"
1203         ln -s dotdot/lndir lndir || error "ln lndir failed"
1204         cd $DIR/$tdir                 || error "cd $DIR/$tdir failed"
1205         output=`ls $tfile/$tfile/lndir/bar1`
1206         [ "$output" = bar1 ] && error "unexpected output"
1207         rm -r $tfile             || error "rm $tfile failed"
1208         $CHECKSTAT -a $DIR/$tfile || error "$tfile not gone"
1209 }
1210 run_test 26f "rm -r of a directory which has recursive symlink ="
1211
1212 test_27a() {
1213         echo '== stripe sanity =============================================='
1214         test_mkdir -p $DIR/d27 || error "mkdir failed"
1215         $GETSTRIPE $DIR/d27
1216         $SETSTRIPE -c 1 $DIR/d27/f0 || error "setstripe failed"
1217         $CHECKSTAT -t file $DIR/d27/f0 || error "checkstat failed"
1218         pass
1219         log "== test_27a: write to one stripe file ========================="
1220         cp /etc/hosts $DIR/d27/f0 || error
1221 }
1222 run_test 27a "one stripe file =================================="
1223
1224 test_27b() {
1225         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping 2-stripe test" && return
1226         test_mkdir -p $DIR/d27
1227         $SETSTRIPE -c 2 $DIR/d27/f01 || error "setstripe failed"
1228         $GETSTRIPE -c $DIR/d27/f01
1229         [ $($GETSTRIPE -c $DIR/d27/f01) -eq 2 ] ||
1230                 error "two-stripe file doesn't have two stripes"
1231
1232         dd if=/dev/zero of=$DIR/d27/f01 bs=4k count=4 || error "dd failed"
1233 }
1234 run_test 27b "create and write to two stripe file"
1235
1236 test_27d() {
1237         test_mkdir -p $DIR/d27
1238         $SETSTRIPE -c 0 -i -1 -S 0 $DIR/d27/fdef || error "setstripe failed"
1239         $CHECKSTAT -t file $DIR/d27/fdef || error "checkstat failed"
1240         dd if=/dev/zero of=$DIR/d27/fdef bs=4k count=4 || error
1241 }
1242 run_test 27d "create file with default settings ================"
1243
1244 test_27e() {
1245         test_mkdir -p $DIR/d27
1246         $SETSTRIPE -c 2 $DIR/d27/f12 || error "setstripe failed"
1247         $SETSTRIPE -c 2 $DIR/d27/f12 && error "setstripe succeeded twice"
1248         $CHECKSTAT -t file $DIR/d27/f12 || error "checkstat failed"
1249 }
1250 run_test 27e "setstripe existing file (should return error) ======"
1251
1252 test_27f() {
1253         test_mkdir -p $DIR/d27
1254         $SETSTRIPE -S 100 -i 0 -c 1 $DIR/d27/fbad && error "setstripe failed"
1255         dd if=/dev/zero of=$DIR/d27/fbad bs=4k count=4 || error "dd failed"
1256         $GETSTRIPE $DIR/d27/fbad || error "$GETSTRIPE failed"
1257 }
1258 run_test 27f "setstripe with bad stripe size (should return error)"
1259
1260 test_27g() {
1261         test_mkdir -p $DIR/d27
1262         $MCREATE $DIR/d27/fnone || error "mcreate failed"
1263         $GETSTRIPE $DIR/d27/fnone 2>&1 | grep "no stripe info" ||
1264                 error "$DIR/d27/fnone has object"
1265 }
1266 run_test 27g "$GETSTRIPE with no objects"
1267
1268 test_27i() {
1269         touch $DIR/d27/fsome || error "touch failed"
1270         [ $($GETSTRIPE -c $DIR/d27/fsome) -gt 0 ] || error "missing objects"
1271 }
1272 run_test 27i "$GETSTRIPE with some objects"
1273
1274 test_27j() {
1275         test_mkdir -p $DIR/d27
1276         $SETSTRIPE -i $OSTCOUNT $DIR/d27/f27j && error "setstripe failed"||true
1277 }
1278 run_test 27j "setstripe with bad stripe offset (should return error)"
1279
1280 test_27k() { # bug 2844
1281         test_mkdir -p $DIR/d27
1282         FILE=$DIR/d27/f27k
1283         LL_MAX_BLKSIZE=$((4 * 1024 * 1024))
1284         [ ! -d $DIR/d27 ] && test_mkdir -p $DIR d27
1285         $SETSTRIPE -S 67108864 $FILE || error "setstripe failed"
1286         BLKSIZE=`stat $FILE | awk '/IO Block:/ { print $7 }'`
1287         [ $BLKSIZE -le $LL_MAX_BLKSIZE ] || error "1:$BLKSIZE > $LL_MAX_BLKSIZE"
1288         dd if=/dev/zero of=$FILE bs=4k count=1
1289         BLKSIZE=`stat $FILE | awk '/IO Block:/ { print $7 }'`
1290         [ $BLKSIZE -le $LL_MAX_BLKSIZE ] || error "2:$BLKSIZE > $LL_MAX_BLKSIZE"
1291 }
1292 run_test 27k "limit i_blksize for broken user apps ============="
1293
1294 test_27l() {
1295         test_mkdir -p $DIR/d27
1296         mcreate $DIR/f27l || error "creating file"
1297         $RUNAS $SETSTRIPE -c 1 $DIR/f27l && \
1298                 error "setstripe should have failed" || true
1299 }
1300 run_test 27l "check setstripe permissions (should return error)"
1301
1302 test_27m() {
1303         [ "$OSTCOUNT" -lt "2" ] && skip_env "$OSTCOUNT < 2 OSTs -- skipping" &&
1304                 return
1305         if [ $ORIGFREE -gt $MAXFREE ]; then
1306                 skip "$ORIGFREE > $MAXFREE skipping out-of-space test on OST0"
1307                 return
1308         fi
1309         trap simple_cleanup_common EXIT
1310         test_mkdir -p $DIR/$tdir
1311         $SETSTRIPE -i 0 -c 1 $DIR/$tdir/f27m_1
1312         dd if=/dev/zero of=$DIR/$tdir/f27m_1 bs=1024 count=$MAXFREE &&
1313                 error "dd should fill OST0"
1314         i=2
1315         while $SETSTRIPE -i 0 -c 1 $DIR/$tdir/f27m_$i; do
1316                 i=`expr $i + 1`
1317                 [ $i -gt 256 ] && break
1318         done
1319         i=`expr $i + 1`
1320         touch $DIR/$tdir/f27m_$i
1321         [ `$GETSTRIPE $DIR/$tdir/f27m_$i | grep -A 10 obdidx | awk '{print $1}'| grep -w "0"` ] &&
1322                 error "OST0 was full but new created file still use it"
1323         i=`expr $i + 1`
1324         touch $DIR/$tdir/f27m_$i
1325         [ `$GETSTRIPE $DIR/$tdir/f27m_$i | grep -A 10 obdidx | awk '{print $1}'| grep -w "0"` ] &&
1326                 error "OST0 was full but new created file still use it"
1327         simple_cleanup_common
1328 }
1329 run_test 27m "create file while OST0 was full =================="
1330
1331 sleep_maxage() {
1332         local DELAY=$(do_facet $SINGLEMDS lctl get_param -n lov.*.qos_maxage | head -n 1 | awk '{print $1 * 2}')
1333         sleep $DELAY
1334 }
1335
1336 # OSCs keep a NOSPC flag that will be reset after ~5s (qos_maxage)
1337 # if the OST isn't full anymore.
1338 reset_enospc() {
1339         local OSTIDX=${1:-""}
1340
1341         local list=$(comma_list $(osts_nodes))
1342         [ "$OSTIDX" ] && list=$(facet_host ost$((OSTIDX + 1)))
1343
1344         do_nodes $list lctl set_param fail_loc=0
1345         sync    # initiate all OST_DESTROYs from MDS to OST
1346         sleep_maxage
1347 }
1348
1349 exhaust_precreations() {
1350         local OSTIDX=$1
1351         local FAILLOC=$2
1352         local FAILIDX=${3:-$OSTIDX}
1353
1354         test_mkdir -p $DIR/$tdir
1355         local MDSIDX=$(get_mds_dir "$DIR/$tdir")
1356         echo OSTIDX=$OSTIDX MDSIDX=$MDSIDX
1357
1358         local OST=$(ostname_from_index $OSTIDX)
1359         local MDT_INDEX=$(lfs df | grep "\[MDT:$((MDSIDX - 1))\]" | awk '{print $1}' | \
1360                           sed -e 's/_UUID$//;s/^.*-//')
1361
1362         # on the mdt's osc
1363         local mdtosc_proc1=$(get_mdtosc_proc_path mds${MDSIDX} $OST)
1364         local last_id=$(do_facet mds${MDSIDX} lctl get_param -n \
1365                         osc.$mdtosc_proc1.prealloc_last_id)
1366         local next_id=$(do_facet mds${MDSIDX} lctl get_param -n \
1367                         osc.$mdtosc_proc1.prealloc_next_id)
1368
1369         local mdtosc_proc2=$(get_mdtosc_proc_path mds${MDSIDX})
1370         do_facet mds${MDSIDX} lctl get_param osc.$mdtosc_proc2.prealloc*
1371
1372         test_mkdir -p $DIR/$tdir/${OST}
1373         $SETSTRIPE -i $OSTIDX -c 1 $DIR/$tdir/${OST}
1374 #define OBD_FAIL_OST_ENOSPC              0x215
1375         do_facet ost$((OSTIDX + 1)) lctl set_param fail_val=$FAILIDX
1376         do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=0x215
1377         echo "Creating to objid $last_id on ost $OST..."
1378         createmany -o $DIR/$tdir/${OST}/f $next_id $((last_id - next_id + 2))
1379         do_facet mds${MDSIDX} lctl get_param osc.$mdtosc_proc2.prealloc*
1380         do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=$FAILLOC
1381         sleep_maxage
1382 }
1383
1384 exhaust_all_precreations() {
1385         local i
1386         for (( i=0; i < OSTCOUNT; i++ )) ; do
1387                 exhaust_precreations $i $1 -1
1388         done
1389 }
1390
1391 test_27n() {
1392         [ "$OSTCOUNT" -lt "2" ] && skip_env "too few OSTs" && return
1393         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1394         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1395         remote_ost_nodsh && skip "remote OST with nodsh" && return
1396
1397         reset_enospc
1398         rm -f $DIR/$tdir/$tfile
1399         exhaust_precreations 0 0x80000215
1400         $SETSTRIPE -c -1 $DIR/$tdir
1401         touch $DIR/$tdir/$tfile || error
1402         $GETSTRIPE $DIR/$tdir/$tfile
1403         reset_enospc
1404 }
1405 run_test 27n "create file with some full OSTs =================="
1406
1407 test_27o() {
1408         [ "$OSTCOUNT" -lt "2" ] && skip_env "too few OSTs" && return
1409         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1410         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1411         remote_ost_nodsh && skip "remote OST with nodsh" && return
1412
1413         reset_enospc
1414         rm -f $DIR/$tdir/$tfile
1415         exhaust_all_precreations 0x215
1416
1417         touch $DIR/$tdir/$tfile && error "able to create $DIR/$tdir/$tfile"
1418
1419         reset_enospc
1420         rm -rf $DIR/$tdir/*
1421 }
1422 run_test 27o "create file with all full OSTs (should error) ===="
1423
1424 test_27p() {
1425         [ "$OSTCOUNT" -lt "2" ] && skip_env "too few OSTs" && return
1426         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1427         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1428         remote_ost_nodsh && skip "remote OST with nodsh" && return
1429
1430         reset_enospc
1431         rm -f $DIR/$tdir/$tfile
1432         test_mkdir -p $DIR/$tdir
1433
1434         $MCREATE $DIR/$tdir/$tfile || error "mcreate failed"
1435         $TRUNCATE $DIR/$tdir/$tfile 80000000 || error "truncate failed"
1436         $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat failed"
1437
1438         exhaust_precreations 0 0x80000215
1439         echo foo >> $DIR/$tdir/$tfile || error "append failed"
1440         $CHECKSTAT -s 80000004 $DIR/$tdir/$tfile || error "checkstat failed"
1441         $GETSTRIPE $DIR/$tdir/$tfile
1442
1443         reset_enospc
1444 }
1445 run_test 27p "append to a truncated file with some full OSTs ==="
1446
1447 test_27q() {
1448         [ "$OSTCOUNT" -lt "2" ] && skip_env "too few OSTs" && return
1449         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1450         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1451         remote_ost_nodsh && skip "remote OST with nodsh" && return
1452
1453         reset_enospc
1454         rm -f $DIR/$tdir/$tfile
1455
1456         test_mkdir -p $DIR/$tdir
1457         $MCREATE $DIR/$tdir/$tfile || error "mcreate $DIR/$tdir/$tfile failed"
1458         $TRUNCATE $DIR/$tdir/$tfile 80000000 ||error "truncate $DIR/$tdir/$tfile failed"
1459         $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat failed"
1460
1461         exhaust_all_precreations 0x215
1462
1463         echo foo >> $DIR/$tdir/$tfile && error "append succeeded"
1464         $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat 2 failed"
1465
1466         reset_enospc
1467 }
1468 run_test 27q "append to truncated file with all OSTs full (should error) ==="
1469
1470 test_27r() {
1471         [ "$OSTCOUNT" -lt "2" ] && skip_env "too few OSTs" && return
1472         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1473         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1474         remote_ost_nodsh && skip "remote OST with nodsh" && return
1475
1476         reset_enospc
1477         rm -f $DIR/$tdir/$tfile
1478         exhaust_precreations 0 0x80000215
1479
1480         $SETSTRIPE -i 0 -c 2 $DIR/$tdir/$tfile # && error
1481
1482         reset_enospc
1483 }
1484 run_test 27r "stripe file with some full OSTs (shouldn't LBUG) ="
1485
1486 test_27s() { # bug 10725
1487         test_mkdir -p $DIR/$tdir
1488         local stripe_size=$((4096 * 1024 * 1024))       # 2^32
1489         local stripe_count=0
1490         [ $OSTCOUNT -eq 1 ] || stripe_count=2
1491         $SETSTRIPE -S $stripe_size -c $stripe_count $DIR/$tdir &&
1492                 error "stripe width >= 2^32 succeeded" || true
1493
1494 }
1495 run_test 27s "lsm_xfersize overflow (should error) (bug 10725)"
1496
1497 test_27t() { # bug 10864
1498         WDIR=`pwd`
1499         WLFS=`which lfs`
1500         cd $DIR
1501         touch $tfile
1502         $WLFS getstripe $tfile
1503         cd $WDIR
1504 }
1505 run_test 27t "check that utils parse path correctly"
1506
1507 test_27u() { # bug 4900
1508         [ "$OSTCOUNT" -lt "2" ] && skip_env "too few OSTs" && return
1509         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1510         local index
1511         local list=$(comma_list $(mdts_nodes))
1512
1513 #define OBD_FAIL_MDS_OSC_PRECREATE      0x139
1514         do_nodes $list $LCTL set_param fail_loc=0x139
1515         test_mkdir -p $DIR/$tdir
1516         rm -rf $DIR/$tdir/*
1517         createmany -o $DIR/$tdir/t- 1000
1518         do_nodes $list $LCTL set_param fail_loc=0
1519
1520         TLOG=$DIR/$tfile.getstripe
1521         $GETSTRIPE $DIR/$tdir > $TLOG
1522         OBJS=`awk -vobj=0 '($1 == 0) { obj += 1 } END { print obj;}' $TLOG`
1523         unlinkmany $DIR/$tdir/t- 1000
1524         [ $OBJS -gt 0 ] && \
1525                 error "$OBJS objects created on OST-0.  See $TLOG" || pass
1526 }
1527 run_test 27u "skip object creation on OSC w/o objects =========="
1528
1529 test_27v() { # bug 4900
1530         [ "$OSTCOUNT" -lt "2" ] && skip_env "too few OSTs" && return
1531         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1532         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1533         remote_ost_nodsh && skip "remote OST with nodsh" && return
1534
1535         exhaust_all_precreations 0x215
1536         reset_enospc
1537
1538         test_mkdir -p $DIR/$tdir
1539         $SETSTRIPE -c 1 $DIR/$tdir         # 1 stripe / file
1540
1541         touch $DIR/$tdir/$tfile
1542         #define OBD_FAIL_TGT_DELAY_PRECREATE     0x705
1543         # all except ost1
1544         for (( i=1; i < OSTCOUNT; i++ )); do
1545                 do_facet ost$i lctl set_param fail_loc=0x705
1546         done
1547         local START=`date +%s`
1548         createmany -o $DIR/$tdir/$tfile 32
1549
1550         local FINISH=`date +%s`
1551         local TIMEOUT=`lctl get_param -n timeout`
1552         local PROCESS=$((FINISH - START))
1553         [ $PROCESS -ge $((TIMEOUT / 2)) ] && \
1554                error "$FINISH - $START >= $TIMEOUT / 2"
1555         sleep $((TIMEOUT / 2 - PROCESS))
1556         reset_enospc
1557 }
1558 run_test 27v "skip object creation on slow OST ================="
1559
1560 test_27w() { # bug 10997
1561         test_mkdir -p $DIR/$tdir || error "mkdir failed"
1562         $SETSTRIPE -S 65536 $DIR/$tdir/f0 || error "setstripe failed"
1563         [ $($GETSTRIPE -S $DIR/$tdir/f0) -ne 65536 ] &&
1564                 error "stripe size $size != 65536" || true
1565         [ $($GETSTRIPE -d $DIR/$tdir | grep -c "stripe_count") -ne 1 ] &&
1566                 error "$GETSTRIPE -d $DIR/$tdir failed" || true
1567 }
1568 run_test 27w "check $SETSTRIPE -S option"
1569
1570 test_27wa() {
1571         [ "$OSTCOUNT" -lt "2" ] &&
1572                 skip_env "skipping multiple stripe count/offset test" && return
1573
1574         test_mkdir -p $DIR/$tdir || error "mkdir failed"
1575         for i in $(seq 1 $OSTCOUNT); do
1576                 offset=$((i - 1))
1577                 $SETSTRIPE -c $i -i $offset $DIR/$tdir/f$i ||
1578                         error "setstripe -c $i -i $offset failed"
1579                 count=$($GETSTRIPE -c $DIR/$tdir/f$i)
1580                 index=$($GETSTRIPE -i $DIR/$tdir/f$i)
1581                 [ $count -ne $i ] && error "stripe count $count != $i" || true
1582                 [ $index -ne $offset ] &&
1583                         error "stripe offset $index != $offset" || true
1584         done
1585 }
1586 run_test 27wa "check $SETSTRIPE -c -i options"
1587
1588 test_27x() {
1589         remote_ost_nodsh && skip "remote OST with nodsh" && return
1590         [ "$OSTCOUNT" -lt "2" ] && skip_env "$OSTCOUNT < 2 OSTs" && return
1591         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1592         OFFSET=$(($OSTCOUNT - 1))
1593         OSTIDX=0
1594         local OST=$(ostname_from_index $OSTIDX)
1595
1596         test_mkdir -p $DIR/$tdir
1597         $SETSTRIPE -c 1 $DIR/$tdir      # 1 stripe per file
1598         do_facet ost$((OSTIDX + 1)) lctl set_param -n obdfilter.$OST.degraded 1
1599         sleep_maxage
1600         createmany -o $DIR/$tdir/$tfile $OSTCOUNT
1601         for i in `seq 0 $OFFSET`; do
1602                 [ `$GETSTRIPE $DIR/$tdir/$tfile$i | grep -A 10 obdidx | awk '{print $1}' | grep -w "$OSTIDX"` ] &&
1603                 error "OST0 was degraded but new created file still use it"
1604         done
1605         do_facet ost$((OSTIDX + 1)) lctl set_param -n obdfilter.$OST.degraded 0
1606 }
1607 run_test 27x "create files while OST0 is degraded"
1608
1609 test_27y() {
1610         [ "$OSTCOUNT" -lt "2" ] && skip_env "$OSTCOUNT < 2 OSTs -- skipping" && return
1611         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1612         remote_ost_nodsh && skip "remote OST with nodsh" && return
1613         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1614
1615         local mdtosc=$(get_mdtosc_proc_path $SINGLEMDS $FSNAME-OST0000)
1616         local last_id=$(do_facet $SINGLEMDS lctl get_param -n \
1617             osc.$mdtosc.prealloc_last_id)
1618         local next_id=$(do_facet $SINGLEMDS lctl get_param -n \
1619             osc.$mdtosc.prealloc_next_id)
1620         local fcount=$((last_id - next_id))
1621         [ $fcount -eq 0 ] && skip "not enough space on OST0" && return
1622         [ $fcount -gt $OSTCOUNT ] && fcount=$OSTCOUNT
1623
1624         local MDS_OSCS=$(do_facet $SINGLEMDS lctl dl |
1625                          awk '/[oO][sS][cC].*md[ts]/ { print $4 }')
1626         local OST_DEACTIVE_IDX=-1
1627         local OSC
1628         local OSTIDX
1629         local OST
1630
1631         for OSC in $MDS_OSCS; do
1632                 OST=$(osc_to_ost $OSC)
1633                 OSTIDX=$(index_from_ostuuid $OST)
1634                 if [ $OST_DEACTIVE_IDX == -1 ]; then
1635                         OST_DEACTIVE_IDX=$OSTIDX
1636                 fi
1637                 if [ $OSTIDX != $OST_DEACTIVE_IDX ]; then
1638                         echo $OSC "is Deactivated:"
1639                         do_facet $SINGLEMDS lctl --device  %$OSC deactivate
1640                 fi
1641         done
1642
1643         OSTIDX=$(index_from_ostuuid $OST)
1644         mkdir -p $DIR/$tdir
1645         $SETSTRIPE -c 1 $DIR/$tdir      # 1 stripe / file
1646
1647         for OSC in $MDS_OSCS; do
1648                 OST=$(osc_to_ost $OSC)
1649                 OSTIDX=$(index_from_ostuuid $OST)
1650                 if [ $OSTIDX == $OST_DEACTIVE_IDX ]; then
1651                         echo $OST "is degraded:"
1652                         do_facet ost$((OSTIDX+1)) lctl set_param -n \
1653                                                 obdfilter.$OST.degraded=1
1654                 fi
1655         done
1656
1657         sleep_maxage
1658         createmany -o $DIR/$tdir/$tfile $fcount
1659
1660         for OSC in $MDS_OSCS; do
1661                 OST=$(osc_to_ost $OSC)
1662                 OSTIDX=$(index_from_ostuuid $OST)
1663                 if [ $OSTIDX == $OST_DEACTIVE_IDX ]; then
1664                         echo $OST "is recovered from degraded:"
1665                         do_facet ost$((OSTIDX+1)) lctl set_param -n \
1666                                                 obdfilter.$OST.degraded=0
1667                 else
1668                         do_facet $SINGLEMDS lctl --device %$OSC activate
1669                 fi
1670         done
1671
1672         # all osp devices get activated, hence -1 stripe count restored
1673         local stripecnt=0
1674
1675         # sleep 2*lod_qos_maxage seconds waiting for lod qos to notice osp
1676         # devices get activated.
1677         sleep_maxage
1678         $SETSTRIPE -c -1 $DIR/$tfile
1679         stripecnt=$($GETSTRIPE -c $DIR/$tfile)
1680         rm -f $DIR/$tfile
1681         [ $stripecnt -ne $OSTCOUNT ] &&
1682                 error "Of $OSTCOUNT OSTs, only $stripecnt is available"
1683         return 0
1684 }
1685 run_test 27y "create files while OST0 is degraded and the rest inactive"
1686
1687 check_seq_oid()
1688 {
1689         log "check file $1"
1690
1691         lmm_count=$($GETSTRIPE -c $1)
1692         lmm_seq=$($GETSTRIPE -v $1 | awk '/lmm_seq/ { print $2 }')
1693         lmm_oid=$($GETSTRIPE -v $1 | awk '/lmm_object_id/ { print $2 }')
1694
1695         local old_ifs="$IFS"
1696         IFS=$'[:]'
1697         fid=($($LFS path2fid $1))
1698         IFS="$old_ifs"
1699
1700         log "FID seq ${fid[1]}, oid ${fid[2]} ver ${fid[3]}"
1701         log "LOV seq $lmm_seq, oid $lmm_oid, count: $lmm_count"
1702
1703         # compare lmm_seq and lu_fid->f_seq
1704         [ $lmm_seq = ${fid[1]} ] || { error "SEQ mismatch"; return 1; }
1705         # compare lmm_object_id and lu_fid->oid
1706         [ $lmm_oid = ${fid[2]} ] || { error "OID mismatch"; return 2; }
1707
1708         # check the trusted.fid attribute of the OST objects of the file
1709         local have_obdidx=false
1710         local stripe_nr=0
1711         $GETSTRIPE $1 | while read obdidx oid hex seq; do
1712                 # skip lines up to and including "obdidx"
1713                 [ -z "$obdidx" ] && break
1714                 [ "$obdidx" = "obdidx" ] && have_obdidx=true && continue
1715                 $have_obdidx || continue
1716
1717                 local ost=$((obdidx + 1))
1718                 local dev=$(ostdevname $ost)
1719                 local oid_hex
1720
1721                 log "want: stripe:$stripe_nr ost:$obdidx oid:$oid/$hex seq:$seq"
1722
1723                 seq=$(echo $seq | sed -e "s/^0x//g")
1724                 if [ $seq == 0 ]; then
1725                         oid_hex=$(echo $oid)
1726                 else
1727                         oid_hex=$(echo $hex | sed -e "s/^0x//g")
1728                 fi
1729                 local obj_file="O/$seq/d$((oid %32))/$oid_hex"
1730
1731                 local ff
1732                 #
1733                 # Don't unmount/remount the OSTs if we don't need to do that.
1734                 # LU-2577 changes filter_fid to be smaller, so debugfs needs
1735                 # update too, until that use mount/ll_decode_filter_fid/mount.
1736                 # Re-enable when debugfs will understand new filter_fid.
1737                 #
1738                 if false && [ $(facet_fstype ost$ost) == ldiskfs ]; then
1739                         ff=$(do_facet ost$ost "$DEBUGFS -c -R 'stat $obj_file' \
1740                                 $dev 2>/dev/null" | grep "parent=")
1741                 else
1742                         stop ost$ost
1743                         mount_fstype ost$ost
1744                         ff=$(do_facet ost$ost $LL_DECODE_FILTER_FID \
1745                                 $(facet_mntpt ost$ost)/$obj_file)
1746                         unmount_fstype ost$ost
1747                         start ost$ost $dev $OST_MOUNT_OPTS
1748                 fi
1749
1750                 [ -z "$ff" ] && error "$obj_file: no filter_fid info"
1751
1752                 echo "$ff" | sed -e 's#.*objid=#got: objid=#'
1753
1754                 # /mnt/O/0/d23/23: objid=23 seq=0 parent=[0x200000400:0x1e:0x1]
1755                 # fid: objid=23 seq=0 parent=[0x200000400:0x1e:0x0] stripe=1
1756                 local ff_parent=$(echo $ff|sed -e 's/.*parent=.//')
1757                 local ff_pseq=$(echo $ff_parent | cut -d: -f1)
1758                 local ff_poid=$(echo $ff_parent | cut -d: -f2)
1759                 local ff_pstripe
1760                 if echo $ff_parent | grep -q 'stripe='; then
1761                         ff_pstripe=$(echo $ff_parent | sed -e 's/.*stripe=//')
1762                 else
1763                         #
1764                         # $LL_DECODE_FILTER_FID does not print "stripe="; look
1765                         # into f_ver in this case.  See the comment on
1766                         # ff_parent.
1767                         #
1768                         ff_pstripe=$(echo $ff_parent | cut -d: -f3 |
1769                                 sed -e 's/\]//')
1770                 fi
1771
1772                 # compare lmm_seq and filter_fid->ff_parent.f_seq
1773                 [ $ff_pseq = $lmm_seq ] ||
1774                         error "FF parent SEQ $ff_pseq != $lmm_seq"
1775                 # compare lmm_object_id and filter_fid->ff_parent.f_oid
1776                 [ $ff_poid = $lmm_oid ] ||
1777                         error "FF parent OID $ff_poid != $lmm_oid"
1778                 (($ff_pstripe == $stripe_nr)) ||
1779                         error "FF stripe $ff_pstripe != $stripe_nr"
1780
1781                 stripe_nr=$((stripe_nr + 1))
1782         done
1783 }
1784
1785 test_27z() {
1786         remote_ost_nodsh && skip "remote OST with nodsh" && return
1787         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1788         test_mkdir -p $DIR/$tdir
1789
1790         $SETSTRIPE -c 1 -i 0 -S 64k $DIR/$tdir/$tfile-1 ||
1791                 { error "setstripe -c -1 failed"; return 1; }
1792         # We need to send a write to every object to get parent FID info set.
1793         # This _should_ also work for setattr, but does not currently.
1794         # touch $DIR/$tdir/$tfile-1 ||
1795         dd if=/dev/zero of=$DIR/$tdir/$tfile-1 bs=1M count=1 ||
1796                 { error "dd $tfile-1 failed"; return 2; }
1797         $SETSTRIPE -c -1 -i $((OSTCOUNT - 1)) -S 1M $DIR/$tdir/$tfile-2 ||
1798                 { error "setstripe -c -1 failed"; return 3; }
1799         dd if=/dev/zero of=$DIR/$tdir/$tfile-2 bs=1M count=$OSTCOUNT ||
1800                 { error "dd $tfile-2 failed"; return 4; }
1801
1802         # make sure write RPCs have been sent to OSTs
1803         sync; sleep 5; sync
1804
1805         check_seq_oid $DIR/$tdir/$tfile-1 || return 5
1806         check_seq_oid $DIR/$tdir/$tfile-2 || return 6
1807 }
1808 run_test 27z "check SEQ/OID on the MDT and OST filesystems"
1809
1810 test_27A() { # b=19102
1811         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1812         local restore_size=$($GETSTRIPE -S $MOUNT)
1813         local restore_count=$($GETSTRIPE -c $MOUNT)
1814         local restore_offset=$($GETSTRIPE -i $MOUNT)
1815         $SETSTRIPE -c 0 -i -1 -S 0 $MOUNT
1816         wait_update $HOSTNAME "$GETSTRIPE -c $MOUNT | sed 's/  *//g'" "1" 20 ||
1817                 error "stripe count $($GETSTRIPE -c $MOUNT) != 1"
1818         local default_size=$($GETSTRIPE -S $MOUNT)
1819         local default_offset=$($GETSTRIPE -i $MOUNT)
1820         local dsize=$((1024 * 1024))
1821         [ $default_size -eq $dsize ] ||
1822                 error "stripe size $default_size != $dsize"
1823         [ $default_offset -eq -1 ] ||error "stripe offset $default_offset != -1"
1824         $SETSTRIPE -c $restore_count -i $restore_offset -S $restore_size $MOUNT
1825 }
1826 run_test 27A "check filesystem-wide default LOV EA values"
1827
1828 test_27B() { # LU-2523
1829         test_mkdir -p $DIR/$tdir
1830         rm -f $DIR/$tdir/f0 $DIR/$tdir/f1
1831         touch $DIR/$tdir/f0
1832         # open f1 with O_LOV_DELAY_CREATE
1833         # rename f0 onto f1
1834         # call setstripe ioctl on open file descriptor for f1
1835         # close
1836         multiop $DIR/$tdir/f1 oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:nB1c \
1837                 $DIR/$tdir/f0
1838
1839         rm -f $DIR/$tdir/f1
1840         # open f1 with O_LOV_DELAY_CREATE
1841         # unlink f1
1842         # call setstripe ioctl on open file descriptor for f1
1843         # close
1844         multiop $DIR/$tdir/f1 oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:uB1c
1845
1846         # Allow multiop to fail in imitation of NFS's busted semantics.
1847         true
1848 }
1849 run_test 27B "call setstripe on open unlinked file/rename victim"
1850
1851 test_27C() { #LU-2871
1852         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
1853
1854         declare -a ost_idx
1855         local index
1856         local found
1857         local i
1858         local j
1859
1860         test_mkdir -p $DIR/$tdir
1861         cd $DIR/$tdir
1862         for i in $(seq 0 $((OSTCOUNT - 1))); do
1863                 # set stripe across all OSTs starting from OST$i
1864                 $SETSTRIPE -i $i -c -1 $tfile$i
1865                 # get striping information
1866                 ost_idx=($($GETSTRIPE $tfile$i |
1867                          tail -n $((OSTCOUNT + 1)) | awk '{print $1}'))
1868                 echo ${ost_idx[@]}
1869
1870                 # check the layout
1871                 [ ${#ost_idx[@]} -eq $OSTCOUNT ] ||
1872                         error "${#ost_idx[@]} != $OSTCOUNT"
1873
1874                 for index in $(seq 0 $((OSTCOUNT - 1))); do
1875                         found=0
1876                         for j in $(echo ${ost_idx[@]}); do
1877                                 if [ $index -eq $j ]; then
1878                                         found=1
1879                                         break
1880                                 fi
1881                         done
1882                         [ $found = 1 ] ||
1883                                 error "Can not find $index in ${ost_idx[@]}"
1884                 done
1885         done
1886 }
1887 run_test 27C "check full striping across all OSTs"
1888
1889 # createtest also checks that device nodes are created and
1890 # then visible correctly (#2091)
1891 test_28() { # bug 2091
1892         test_mkdir $DIR/d28
1893         $CREATETEST $DIR/d28/ct || error
1894 }
1895 run_test 28 "create/mknod/mkdir with bad file types ============"
1896
1897 test_29() {
1898         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1899         cancel_lru_locks mdc
1900         test_mkdir $DIR/d29
1901         touch $DIR/d29/foo
1902         log 'first d29'
1903         ls -l $DIR/d29
1904
1905         declare -i LOCKCOUNTORIG=0
1906         for lock_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_count); do
1907                 let LOCKCOUNTORIG=$LOCKCOUNTORIG+$lock_count
1908         done
1909         [ $LOCKCOUNTORIG -eq 0 ] && echo "No mdc lock count" && return 1
1910
1911         declare -i LOCKUNUSEDCOUNTORIG=0
1912         for unused_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_unused_count); do
1913                 let LOCKUNUSEDCOUNTORIG=$LOCKUNUSEDCOUNTORIG+$unused_count
1914         done
1915
1916         log 'second d29'
1917         ls -l $DIR/d29
1918         log 'done'
1919
1920         declare -i LOCKCOUNTCURRENT=0
1921         for lock_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_count); do
1922                 let LOCKCOUNTCURRENT=$LOCKCOUNTCURRENT+$lock_count
1923         done
1924
1925         declare -i LOCKUNUSEDCOUNTCURRENT=0
1926         for unused_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_unused_count); do
1927                 let LOCKUNUSEDCOUNTCURRENT=$LOCKUNUSEDCOUNTCURRENT+$unused_count
1928         done
1929
1930         if [ "$LOCKCOUNTCURRENT" -gt "$LOCKCOUNTORIG" ]; then
1931                 lctl set_param -n ldlm.dump_namespaces ""
1932                 error "CURRENT: $LOCKCOUNTCURRENT > $LOCKCOUNTORIG"
1933                 $LCTL dk | sort -k4 -t: > $TMP/test_29.dk
1934                 log "dumped log to $TMP/test_29.dk (bug 5793)"
1935                 return 2
1936         fi
1937         if [ "$LOCKUNUSEDCOUNTCURRENT" -gt "$LOCKUNUSEDCOUNTORIG" ]; then
1938                 error "UNUSED: $LOCKUNUSEDCOUNTCURRENT > $LOCKUNUSEDCOUNTORIG"
1939                 $LCTL dk | sort -k4 -t: > $TMP/test_29.dk
1940                 log "dumped log to $TMP/test_29.dk (bug 5793)"
1941                 return 3
1942         fi
1943 }
1944 run_test 29 "IT_GETATTR regression  ============================"
1945
1946 test_30a() { # was test_30
1947         cp `which ls` $DIR || cp /bin/ls $DIR
1948         $DIR/ls / || error
1949         rm $DIR/ls
1950 }
1951 run_test 30a "execute binary from Lustre (execve) =============="
1952
1953 test_30b() {
1954         cp `which ls` $DIR || cp /bin/ls $DIR
1955         chmod go+rx $DIR/ls
1956         $RUNAS $DIR/ls / || error
1957         rm $DIR/ls
1958 }
1959 run_test 30b "execute binary from Lustre as non-root ==========="
1960
1961 test_30c() { # b=22376
1962         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1963         cp `which ls` $DIR || cp /bin/ls $DIR
1964         chmod a-rw $DIR/ls
1965         cancel_lru_locks mdc
1966         cancel_lru_locks osc
1967         $RUNAS $DIR/ls / || error
1968         rm -f $DIR/ls
1969 }
1970 run_test 30c "execute binary from Lustre without read perms ===="
1971
1972 test_31a() {
1973         $OPENUNLINK $DIR/f31 $DIR/f31 || error
1974         $CHECKSTAT -a $DIR/f31 || error
1975 }
1976 run_test 31a "open-unlink file =================================="
1977
1978 test_31b() {
1979         touch $DIR/f31 || error
1980         ln $DIR/f31 $DIR/f31b || error
1981         $MULTIOP $DIR/f31b Ouc || error
1982         $CHECKSTAT -t file $DIR/f31 || error
1983 }
1984 run_test 31b "unlink file with multiple links while open ======="
1985
1986 test_31c() {
1987         touch $DIR/f31 || error
1988         ln $DIR/f31 $DIR/f31c || error
1989         multiop_bg_pause $DIR/f31 O_uc || return 1
1990         MULTIPID=$!
1991         $MULTIOP $DIR/f31c Ouc
1992         kill -USR1 $MULTIPID
1993         wait $MULTIPID
1994 }
1995 run_test 31c "open-unlink file with multiple links ============="
1996
1997 test_31d() {
1998         opendirunlink $DIR/d31d $DIR/d31d || error
1999         $CHECKSTAT -a $DIR/d31d || error
2000 }
2001 run_test 31d "remove of open directory ========================="
2002
2003 test_31e() { # bug 2904
2004         check_kernel_version 34 || return 0
2005         openfilleddirunlink $DIR/d31e || error
2006 }
2007 run_test 31e "remove of open non-empty directory ==============="
2008
2009 test_31f() { # bug 4554
2010         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2011         set -vx
2012         test_mkdir $DIR/d31f
2013         $SETSTRIPE -S 1048576 -c 1 $DIR/d31f
2014         cp /etc/hosts $DIR/d31f
2015         ls -l $DIR/d31f
2016         $GETSTRIPE $DIR/d31f/hosts
2017         multiop_bg_pause $DIR/d31f D_c || return 1
2018         MULTIPID=$!
2019
2020         rm -rv $DIR/d31f || error "first of $DIR/d31f"
2021         test_mkdir $DIR/d31f
2022         $SETSTRIPE -S 1048576 -c 1 $DIR/d31f
2023         cp /etc/hosts $DIR/d31f
2024         ls -l $DIR/d31f
2025         $GETSTRIPE $DIR/d31f/hosts
2026         multiop_bg_pause $DIR/d31f D_c || return 1
2027         MULTIPID2=$!
2028
2029         kill -USR1 $MULTIPID || error "first opendir $MULTIPID not running"
2030         wait $MULTIPID || error "first opendir $MULTIPID failed"
2031
2032         sleep 6
2033
2034         kill -USR1 $MULTIPID2 || error "second opendir $MULTIPID not running"
2035         wait $MULTIPID2 || error "second opendir $MULTIPID2 failed"
2036         set +vx
2037 }
2038 run_test 31f "remove of open directory with open-unlink file ==="
2039
2040 test_31g() {
2041         echo "-- cross directory link --"
2042         test_mkdir $DIR/d31ga
2043         test_mkdir $DIR/d31gb
2044         touch $DIR/d31ga/f
2045         ln $DIR/d31ga/f $DIR/d31gb/g
2046         $CHECKSTAT -t file $DIR/d31ga/f || error "source"
2047         [ `stat -c%h $DIR/d31ga/f` == '2' ] || error "source nlink"
2048         $CHECKSTAT -t file $DIR/d31gb/g || error "target"
2049         [ `stat -c%h $DIR/d31gb/g` == '2' ] || error "target nlink"
2050 }
2051 run_test 31g "cross directory link==============="
2052
2053 test_31h() {
2054         echo "-- cross directory link --"
2055         test_mkdir $DIR/d31h
2056         test_mkdir $DIR/d31h/dir
2057         touch $DIR/d31h/f
2058         ln $DIR/d31h/f $DIR/d31h/dir/g
2059         $CHECKSTAT -t file $DIR/d31h/f || error "source"
2060         [ `stat -c%h $DIR/d31h/f` == '2' ] || error "source nlink"
2061         $CHECKSTAT -t file $DIR/d31h/dir/g || error "target"
2062         [ `stat -c%h $DIR/d31h/dir/g` == '2' ] || error "target nlink"
2063 }
2064 run_test 31h "cross directory link under child==============="
2065
2066 test_31i() {
2067         echo "-- cross directory link --"
2068         test_mkdir $DIR/d31i
2069         test_mkdir $DIR/d31i/dir
2070         touch $DIR/d31i/dir/f
2071         ln $DIR/d31i/dir/f $DIR/d31i/g
2072         $CHECKSTAT -t file $DIR/d31i/dir/f || error "source"
2073         [ `stat -c%h $DIR/d31i/dir/f` == '2' ] || error "source nlink"
2074         $CHECKSTAT -t file $DIR/d31i/g || error "target"
2075         [ `stat -c%h $DIR/d31i/g` == '2' ] || error "target nlink"
2076 }
2077 run_test 31i "cross directory link under parent==============="
2078
2079
2080 test_31j() {
2081         test_mkdir $DIR/d31j
2082         test_mkdir $DIR/d31j/dir1
2083         ln $DIR/d31j/dir1 $DIR/d31j/dir2 && error "ln for dir"
2084         link $DIR/d31j/dir1 $DIR/d31j/dir3 && error "link for dir"
2085         mlink $DIR/d31j/dir1 $DIR/d31j/dir4 && error "mlink for dir"
2086         mlink $DIR/d31j/dir1 $DIR/d31j/dir1 && error "mlink to the same dir"
2087         return 0
2088 }
2089 run_test 31j "link for directory==============="
2090
2091
2092 test_31k() {
2093         test_mkdir $DIR/d31k
2094         touch $DIR/d31k/s
2095         touch $DIR/d31k/exist
2096         mlink $DIR/d31k/s $DIR/d31k/t || error "mlink"
2097         mlink $DIR/d31k/s $DIR/d31k/exist && error "mlink to exist file"
2098         mlink $DIR/d31k/s $DIR/d31k/s && error "mlink to the same file"
2099         mlink $DIR/d31k/s $DIR/d31k && error "mlink to parent dir"
2100         mlink $DIR/d31k $DIR/d31k/s && error "mlink parent dir to target"
2101         mlink $DIR/d31k/not-exist $DIR/d31k/foo && error "mlink non-existing to new"
2102         mlink $DIR/d31k/not-exist $DIR/d31k/s && error "mlink non-existing to exist"
2103         return 0
2104 }
2105 run_test 31k "link to file: the same, non-existing, dir==============="
2106
2107 test_31m() {
2108         test_mkdir $DIR/d31m
2109         touch $DIR/d31m/s
2110         test_mkdir $DIR/d31m2
2111         touch $DIR/d31m2/exist
2112         mlink $DIR/d31m/s $DIR/d31m2/t || error "mlink"
2113         mlink $DIR/d31m/s $DIR/d31m2/exist && error "mlink to exist file"
2114         mlink $DIR/d31m/s $DIR/d31m2 && error "mlink to parent dir"
2115         mlink $DIR/d31m2 $DIR/d31m/s && error "mlink parent dir to target"
2116         mlink $DIR/d31m/not-exist $DIR/d31m2/foo && error "mlink non-existing to new"
2117         mlink $DIR/d31m/not-exist $DIR/d31m2/s && error "mlink non-existing to exist"
2118         return 0
2119 }
2120 run_test 31m "link to file: the same, non-existing, dir==============="
2121
2122 test_31n() {
2123         touch $DIR/$tfile || error "cannot create '$DIR/$tfile'"
2124         nlink=$(stat --format=%h $DIR/$tfile)
2125         [ ${nlink:--1} -eq 1 ] || error "nlink is $nlink, expected 1"
2126         local fd=$(free_fd)
2127         local cmd="exec $fd<$DIR/$tfile"
2128         eval $cmd
2129         cmd="exec $fd<&-"
2130         trap "eval $cmd" EXIT
2131         nlink=$(stat --dereference --format=%h /proc/self/fd/$fd)
2132         [ ${nlink:--1} -eq 1 ] || error "nlink is $nlink, expected 1"
2133         rm $DIR/$tfile || error "cannot remove '$DIR/$tfile'"
2134         nlink=$(stat --dereference --format=%h /proc/self/fd/$fd)
2135         [ ${nlink:--1} -eq 0 ] || error "nlink is $nlink, expected 0"
2136         eval $cmd
2137 }
2138 run_test 31n "check link count of unlinked file"
2139
2140 link_one() {
2141         local TEMPNAME=$(mktemp $1_XXXXXX)
2142         mlink $TEMPNAME $1 2> /dev/null &&
2143                 echo "$BASHPID: link $TEMPNAME to $1 succeeded"
2144         munlink $TEMPNAME
2145 }
2146
2147 test_31o() { # LU-2901
2148         mkdir -p $DIR/$tdir
2149         for LOOP in $(seq 100); do
2150                 rm -f $DIR/$tdir/$tfile*
2151                 for THREAD in $(seq 8); do
2152                         link_one $DIR/$tdir/$tfile.$LOOP &
2153                 done
2154                 wait
2155                 local LINKS=$(ls -1 $DIR/$tdir | grep -c $tfile.$LOOP)
2156                 [ $LINKS -gt 1 ] && ls $DIR/$tdir &&
2157                         error "$LINKS duplicate links to $tfile.$LOOP" &&
2158                         break || true
2159         done
2160 }
2161 run_test 31o "duplicate hard links with same filename"
2162
2163 cleanup_test32_mount() {
2164         trap 0
2165         $UMOUNT -d $DIR/$tdir/ext2-mountpoint
2166 }
2167
2168 test_32a() {
2169         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2170         echo "== more mountpoints and symlinks ================="
2171         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2172         trap cleanup_test32_mount EXIT
2173         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2174         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2175         $CHECKSTAT -t dir $DIR/$tdir/ext2-mountpoint/.. || error
2176         cleanup_test32_mount
2177 }
2178 run_test 32a "stat d32a/ext2-mountpoint/.. ====================="
2179
2180 test_32b() {
2181         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2182         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2183         trap cleanup_test32_mount EXIT
2184         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2185         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2186         ls -al $DIR/$tdir/ext2-mountpoint/.. || error
2187         cleanup_test32_mount
2188 }
2189 run_test 32b "open d32b/ext2-mountpoint/.. ====================="
2190
2191 test_32c() {
2192         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2193         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2194         trap cleanup_test32_mount EXIT
2195         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2196         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2197         test_mkdir -p $DIR/$tdir/d2/test_dir
2198         $CHECKSTAT -t dir $DIR/$tdir/ext2-mountpoint/../d2/test_dir || error
2199         cleanup_test32_mount
2200 }
2201 run_test 32c "stat d32c/ext2-mountpoint/../d2/test_dir ========="
2202
2203 test_32d() {
2204         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2205         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2206         trap cleanup_test32_mount EXIT
2207         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2208         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2209         test_mkdir -p $DIR/$tdir/d2/test_dir
2210         ls -al $DIR/$tdir/ext2-mountpoint/../d2/test_dir || error
2211         cleanup_test32_mount
2212 }
2213 run_test 32d "open d32d/ext2-mountpoint/../d2/test_dir ========="
2214
2215 test_32e() {
2216         [ -e $DIR/d32e ] && rm -fr $DIR/d32e
2217         test_mkdir -p $DIR/d32e/tmp
2218         TMP_DIR=$DIR/d32e/tmp
2219         ln -s $DIR/d32e $TMP_DIR/symlink11
2220         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2221         $CHECKSTAT -t link $DIR/d32e/tmp/symlink11 || error
2222         $CHECKSTAT -t link $DIR/d32e/symlink01 || error
2223 }
2224 run_test 32e "stat d32e/symlink->tmp/symlink->lustre-subdir ===="
2225
2226 test_32f() {
2227         [ -e $DIR/d32f ] && rm -fr $DIR/d32f
2228         test_mkdir -p $DIR/d32f/tmp
2229         TMP_DIR=$DIR/d32f/tmp
2230         ln -s $DIR/d32f $TMP_DIR/symlink11
2231         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2232         ls $DIR/d32f/tmp/symlink11  || error
2233         ls $DIR/d32f/symlink01 || error
2234 }
2235 run_test 32f "open d32f/symlink->tmp/symlink->lustre-subdir ===="
2236
2237 test_32g() {
2238         TMP_DIR=$DIR/$tdir/tmp
2239         test_mkdir -p $DIR/$tdir/tmp
2240         test_mkdir $DIR/${tdir}2
2241         ln -s $DIR/${tdir}2 $TMP_DIR/symlink12
2242         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2243         $CHECKSTAT -t link $TMP_DIR/symlink12 || error
2244         $CHECKSTAT -t link $DIR/$tdir/symlink02 || error
2245         $CHECKSTAT -t dir -f $TMP_DIR/symlink12 || error
2246         $CHECKSTAT -t dir -f $DIR/$tdir/symlink02 || error
2247 }
2248 run_test 32g "stat d32g/symlink->tmp/symlink->lustre-subdir/${tdir}2"
2249
2250 test_32h() {
2251         rm -fr $DIR/$tdir $DIR/${tdir}2
2252         TMP_DIR=$DIR/$tdir/tmp
2253         test_mkdir -p $DIR/$tdir/tmp
2254         test_mkdir $DIR/${tdir}2
2255         ln -s $DIR/${tdir}2 $TMP_DIR/symlink12
2256         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2257         ls $TMP_DIR/symlink12 || error
2258         ls $DIR/$tdir/symlink02  || error
2259 }
2260 run_test 32h "open d32h/symlink->tmp/symlink->lustre-subdir/${tdir}2"
2261
2262 test_32i() {
2263         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2264         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2265         trap cleanup_test32_mount EXIT
2266         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2267         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2268         touch $DIR/$tdir/test_file
2269         $CHECKSTAT -t file $DIR/$tdir/ext2-mountpoint/../test_file || error
2270         cleanup_test32_mount
2271 }
2272 run_test 32i "stat d32i/ext2-mountpoint/../test_file ==========="
2273
2274 test_32j() {
2275         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2276         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2277         trap cleanup_test32_mount EXIT
2278         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2279         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2280         touch $DIR/$tdir/test_file
2281         cat $DIR/$tdir/ext2-mountpoint/../test_file || error
2282         cleanup_test32_mount
2283 }
2284 run_test 32j "open d32j/ext2-mountpoint/../test_file ==========="
2285
2286 test_32k() {
2287         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2288         rm -fr $DIR/$tdir
2289         trap cleanup_test32_mount EXIT
2290         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2291         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint
2292         test_mkdir -p $DIR/$tdir/d2
2293         touch $DIR/$tdir/d2/test_file || error
2294         $CHECKSTAT -t file $DIR/$tdir/ext2-mountpoint/../d2/test_file || error
2295         cleanup_test32_mount
2296 }
2297 run_test 32k "stat d32k/ext2-mountpoint/../d2/test_file ========"
2298
2299 test_32l() {
2300         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2301         rm -fr $DIR/$tdir
2302         trap cleanup_test32_mount EXIT
2303         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2304         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2305         test_mkdir -p $DIR/$tdir/d2
2306         touch $DIR/$tdir/d2/test_file
2307         cat  $DIR/$tdir/ext2-mountpoint/../d2/test_file || error
2308         cleanup_test32_mount
2309 }
2310 run_test 32l "open d32l/ext2-mountpoint/../d2/test_file ========"
2311
2312 test_32m() {
2313         rm -fr $DIR/d32m
2314         test_mkdir -p $DIR/d32m/tmp
2315         TMP_DIR=$DIR/d32m/tmp
2316         ln -s $DIR $TMP_DIR/symlink11
2317         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2318         $CHECKSTAT -t link $DIR/d32m/tmp/symlink11 || error
2319         $CHECKSTAT -t link $DIR/d32m/symlink01 || error
2320 }
2321 run_test 32m "stat d32m/symlink->tmp/symlink->lustre-root ======"
2322
2323 test_32n() {
2324         rm -fr $DIR/d32n
2325         test_mkdir -p $DIR/d32n/tmp
2326         TMP_DIR=$DIR/d32n/tmp
2327         ln -s $DIR $TMP_DIR/symlink11
2328         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2329         ls -l $DIR/d32n/tmp/symlink11  || error
2330         ls -l $DIR/d32n/symlink01 || error
2331 }
2332 run_test 32n "open d32n/symlink->tmp/symlink->lustre-root ======"
2333
2334 test_32o() {
2335         rm -fr $DIR/d32o $DIR/$tfile
2336         touch $DIR/$tfile
2337         test_mkdir -p $DIR/d32o/tmp
2338         TMP_DIR=$DIR/d32o/tmp
2339         ln -s $DIR/$tfile $TMP_DIR/symlink12
2340         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2341         $CHECKSTAT -t link $DIR/d32o/tmp/symlink12 || error
2342         $CHECKSTAT -t link $DIR/d32o/symlink02 || error
2343         $CHECKSTAT -t file -f $DIR/d32o/tmp/symlink12 || error
2344         $CHECKSTAT -t file -f $DIR/d32o/symlink02 || error
2345 }
2346 run_test 32o "stat d32o/symlink->tmp/symlink->lustre-root/$tfile"
2347
2348 test_32p() {
2349     log 32p_1
2350         rm -fr $DIR/d32p
2351     log 32p_2
2352         rm -f $DIR/$tfile
2353     log 32p_3
2354         touch $DIR/$tfile
2355     log 32p_4
2356         test_mkdir -p $DIR/d32p/tmp
2357     log 32p_5
2358         TMP_DIR=$DIR/d32p/tmp
2359     log 32p_6
2360         ln -s $DIR/$tfile $TMP_DIR/symlink12
2361     log 32p_7
2362         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2363     log 32p_8
2364         cat $DIR/d32p/tmp/symlink12 || error
2365     log 32p_9
2366         cat $DIR/d32p/symlink02 || error
2367     log 32p_10
2368 }
2369 run_test 32p "open d32p/symlink->tmp/symlink->lustre-root/$tfile"
2370
2371 cleanup_testdir_mount() {
2372         trap 0
2373         $UMOUNT -d $DIR/$tdir
2374 }
2375
2376 test_32q() {
2377         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2378         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2379         trap cleanup_testdir_mount EXIT
2380         test_mkdir -p $DIR/$tdir
2381         touch $DIR/$tdir/under_the_mount
2382         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir
2383         ls $DIR/$tdir | grep "\<under_the_mount\>" && error
2384         cleanup_testdir_mount
2385 }
2386 run_test 32q "stat follows mountpoints in Lustre (should return error)"
2387
2388 test_32r() {
2389         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2390         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2391         trap cleanup_testdir_mount EXIT
2392         test_mkdir -p $DIR/$tdir
2393         touch $DIR/$tdir/under_the_mount
2394         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir
2395         ls $DIR/$tdir | grep -q under_the_mount && error || true
2396         cleanup_testdir_mount
2397 }
2398 run_test 32r "opendir follows mountpoints in Lustre (should return error)"
2399
2400 test_33aa() {
2401         rm -f $DIR/$tfile
2402         touch $DIR/$tfile
2403         chmod 444 $DIR/$tfile
2404         chown $RUNAS_ID $DIR/$tfile
2405         log 33_1
2406         $RUNAS $OPENFILE -f O_RDWR $DIR/$tfile && error || true
2407         log 33_2
2408 }
2409 run_test 33aa "write file with mode 444 (should return error) ===="
2410
2411 test_33a() {
2412         rm -fr $DIR/d33
2413         test_mkdir -p $DIR/d33
2414         chown $RUNAS_ID $DIR/d33
2415         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $DIR/d33/f33|| error "create"
2416         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $DIR/d33/f33 && \
2417                 error "open RDWR" || true
2418 }
2419 run_test 33a "test open file(mode=0444) with O_RDWR (should return error)"
2420
2421 test_33b() {
2422         rm -fr $DIR/d33
2423         test_mkdir -p $DIR/d33
2424         chown $RUNAS_ID $DIR/d33
2425         $RUNAS $OPENFILE -f 1286739555 $DIR/d33/f33 && error "create" || true
2426 }
2427 run_test 33b "test open file with malformed flags (No panic and return error)"
2428
2429 test_33c() {
2430         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2431         local ostnum
2432         local ostname
2433         local write_bytes
2434         local all_zeros
2435
2436         remote_ost_nodsh && skip "remote OST with nodsh" && return
2437         all_zeros=:
2438         rm -fr $DIR/d33
2439         test_mkdir -p $DIR/d33
2440         # Read: 0, Write: 4, create/destroy: 2/0, stat: 1, punch: 0
2441
2442         sync
2443         for ostnum in $(seq $OSTCOUNT); do
2444                 # test-framework's OST numbering is one-based, while Lustre's
2445                 # is zero-based
2446                 ostname=$(printf "$FSNAME-OST%.4x" $((ostnum - 1)))
2447                 # Parsing llobdstat's output sucks; we could grep the /proc
2448                 # path, but that's likely to not be as portable as using the
2449                 # llobdstat utility.  So we parse lctl output instead.
2450                 write_bytes=$(do_facet ost$ostnum lctl get_param -n \
2451                         obdfilter/$ostname/stats |
2452                         awk '/^write_bytes/ {print $7}' )
2453                 echo "baseline_write_bytes@$OSTnum/$ostname=$write_bytes"
2454                 if (( ${write_bytes:-0} > 0 ))
2455                 then
2456                         all_zeros=false
2457                         break;
2458                 fi
2459         done
2460
2461         $all_zeros || return 0
2462
2463         # Write four bytes
2464         echo foo > $DIR/d33/bar
2465         # Really write them
2466         sync
2467
2468         # Total up write_bytes after writing.  We'd better find non-zeros.
2469         for ostnum in $(seq $OSTCOUNT); do
2470                 ostname=$(printf "$FSNAME-OST%.4x" $((ostnum - 1)))
2471                 write_bytes=$(do_facet ost$ostnum lctl get_param -n \
2472                         obdfilter/$ostname/stats |
2473                         awk '/^write_bytes/ {print $7}' )
2474                 echo "write_bytes@$OSTnum/$ostname=$write_bytes"
2475                 if (( ${write_bytes:-0} > 0 ))
2476                 then
2477                         all_zeros=false
2478                         break;
2479                 fi
2480         done
2481
2482         if $all_zeros
2483         then
2484                 for ostnum in $(seq $OSTCOUNT); do
2485                         ostname=$(printf "$FSNAME-OST%.4x" $((ostnum - 1)))
2486                         echo "Check that write_bytes is present in obdfilter/*/stats:"
2487                         do_facet ost$ostnum lctl get_param -n \
2488                                 obdfilter/$ostname/stats
2489                 done
2490                 error "OST not keeping write_bytes stats (b22312)"
2491         fi
2492 }
2493 run_test 33c "test llobdstat and write_bytes"
2494
2495 test_33d() {
2496         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
2497         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2498         local MDTIDX=1
2499         local remote_dir=$DIR/$tdir/remote_dir
2500
2501         mkdir -p $DIR/$tdir
2502         $LFS mkdir -i $MDTIDX $remote_dir ||
2503                 error "create remote directory failed"
2504
2505         touch $remote_dir/$tfile
2506         chmod 444 $remote_dir/$tfile
2507         chown $RUNAS_ID $remote_dir/$tfile
2508
2509         $RUNAS $OPENFILE -f O_RDWR $DIR/$tfile && error || true
2510
2511         chown $RUNAS_ID $remote_dir
2512         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $remote_dir/f33 ||
2513                                         error "create" || true
2514         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $remote_dir/f33 &&
2515                                     error "open RDWR" || true
2516         $RUNAS $OPENFILE -f 1286739555 $remote_dir/f33 &&
2517                                     error "create" || true
2518 }
2519 run_test 33d "openfile with 444 modes and malformed flags under remote dir"
2520
2521 TEST_34_SIZE=${TEST_34_SIZE:-2000000000000}
2522 test_34a() {
2523         rm -f $DIR/f34
2524         $MCREATE $DIR/f34 || error
2525         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" || error
2526         $TRUNCATE $DIR/f34 $TEST_34_SIZE || error
2527         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" || error
2528         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2529 }
2530 run_test 34a "truncate file that has not been opened ==========="
2531
2532 test_34b() {
2533         [ ! -f $DIR/f34 ] && test_34a
2534         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2535         $OPENFILE -f O_RDONLY $DIR/f34
2536         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" || error
2537         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2538 }
2539 run_test 34b "O_RDONLY opening file doesn't create objects ====="
2540
2541 test_34c() {
2542         [ ! -f $DIR/f34 ] && test_34a
2543         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2544         $OPENFILE -f O_RDWR $DIR/f34
2545         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" && error
2546         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2547 }
2548 run_test 34c "O_RDWR opening file-with-size works =============="
2549
2550 test_34d() {
2551         [ ! -f $DIR/f34 ] && test_34a
2552         dd if=/dev/zero of=$DIR/f34 conv=notrunc bs=4k count=1 || error
2553         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2554         rm $DIR/f34
2555 }
2556 run_test 34d "write to sparse file ============================="
2557
2558 test_34e() {
2559         rm -f $DIR/f34e
2560         $MCREATE $DIR/f34e || error
2561         $TRUNCATE $DIR/f34e 1000 || error
2562         $CHECKSTAT -s 1000 $DIR/f34e || error
2563         $OPENFILE -f O_RDWR $DIR/f34e
2564         $CHECKSTAT -s 1000 $DIR/f34e || error
2565 }
2566 run_test 34e "create objects, some with size and some without =="
2567
2568 test_34f() { # bug 6242, 6243
2569         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2570         SIZE34F=48000
2571         rm -f $DIR/f34f
2572         $MCREATE $DIR/f34f || error
2573         $TRUNCATE $DIR/f34f $SIZE34F || error "truncating $DIR/f3f to $SIZE34F"
2574         dd if=$DIR/f34f of=$TMP/f34f
2575         $CHECKSTAT -s $SIZE34F $TMP/f34f || error "$TMP/f34f not $SIZE34F bytes"
2576         dd if=/dev/zero of=$TMP/f34fzero bs=$SIZE34F count=1
2577         cmp $DIR/f34f $TMP/f34fzero || error "$DIR/f34f not all zero"
2578         cmp $TMP/f34f $TMP/f34fzero || error "$TMP/f34f not all zero"
2579         rm $TMP/f34f $TMP/f34fzero $DIR/f34f
2580 }
2581 run_test 34f "read from a file with no objects until EOF ======="
2582
2583 test_34g() {
2584         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2585         dd if=/dev/zero of=$DIR/$tfile bs=1 count=100 seek=$TEST_34_SIZE || error
2586         $TRUNCATE $DIR/$tfile $((TEST_34_SIZE / 2))|| error
2587         $CHECKSTAT -s $((TEST_34_SIZE / 2)) $DIR/$tfile || error "truncate failed"
2588         cancel_lru_locks osc
2589         $CHECKSTAT -s $((TEST_34_SIZE / 2)) $DIR/$tfile || \
2590                 error "wrong size after lock cancel"
2591
2592         $TRUNCATE $DIR/$tfile $TEST_34_SIZE || error
2593         $CHECKSTAT -s $TEST_34_SIZE $DIR/$tfile || \
2594                 error "expanding truncate failed"
2595         cancel_lru_locks osc
2596         $CHECKSTAT -s $TEST_34_SIZE $DIR/$tfile || \
2597                 error "wrong expanded size after lock cancel"
2598 }
2599 run_test 34g "truncate long file ==============================="
2600
2601 test_34h() {
2602         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2603         local gid=10
2604         local sz=1000
2605
2606         dd if=/dev/zero of=$DIR/$tfile bs=1M count=10 || error
2607         sync # Flush the cache so that multiop below does not block on cache
2608              # flush when getting the group lock
2609         $MULTIOP $DIR/$tfile OG${gid}T${sz}g${gid}c &
2610         MULTIPID=$!
2611
2612         # Since just timed wait is not good enough, let's do a sync write
2613         # that way we are sure enough time for a roundtrip + processing
2614         # passed + 2 seconds of extra margin.
2615         dd if=/dev/zero of=$DIR/${tfile}-1 bs=4096 oflag=direct count=1
2616         rm $DIR/${tfile}-1
2617         sleep 2
2618
2619         if [[ `ps h -o comm -p $MULTIPID` == "multiop" ]]; then
2620                 error "Multiop blocked on ftruncate, pid=$MULTIPID"
2621                 kill -9 $MULTIPID
2622         fi
2623         wait $MULTIPID
2624         local nsz=`stat -c %s $DIR/$tfile`
2625         [[ $nsz == $sz ]] || error "New size wrong $nsz != $sz"
2626 }
2627 run_test 34h "ftruncate file under grouplock should not block"
2628
2629 test_35a() {
2630         cp /bin/sh $DIR/f35a
2631         chmod 444 $DIR/f35a
2632         chown $RUNAS_ID $DIR/f35a
2633         $RUNAS $DIR/f35a && error || true
2634         rm $DIR/f35a
2635 }
2636 run_test 35a "exec file with mode 444 (should return and not leak) ====="
2637
2638 test_36a() {
2639         rm -f $DIR/f36
2640         utime $DIR/f36 || error
2641 }
2642 run_test 36a "MDS utime check (mknod, utime) ==================="
2643
2644 test_36b() {
2645         echo "" > $DIR/f36
2646         utime $DIR/f36 || error
2647 }
2648 run_test 36b "OST utime check (open, utime) ===================="
2649
2650 test_36c() {
2651         rm -f $DIR/d36/f36
2652         test_mkdir $DIR/d36
2653         chown $RUNAS_ID $DIR/d36
2654         $RUNAS utime $DIR/d36/f36 || error
2655 }
2656 run_test 36c "non-root MDS utime check (mknod, utime) =========="
2657
2658 test_36d() {
2659         [ ! -d $DIR/d36 ] && test_36c
2660         echo "" > $DIR/d36/f36
2661         $RUNAS utime $DIR/d36/f36 || error
2662 }
2663 run_test 36d "non-root OST utime check (open, utime) ==========="
2664
2665 test_36e() {
2666         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID -- skipping" && return
2667         test_mkdir -p $DIR/$tdir
2668         touch $DIR/$tdir/$tfile
2669         $RUNAS utime $DIR/$tdir/$tfile && \
2670                 error "utime worked, expected failure" || true
2671 }
2672 run_test 36e "utime on non-owned file (should return error) ===="
2673
2674 subr_36fh() {
2675         local fl="$1"
2676         local LANG_SAVE=$LANG
2677         local LC_LANG_SAVE=$LC_LANG
2678         export LANG=C LC_LANG=C # for date language
2679
2680         DATESTR="Dec 20  2000"
2681         test_mkdir -p $DIR/$tdir
2682         lctl set_param fail_loc=$fl
2683         date; date +%s
2684         cp /etc/hosts $DIR/$tdir/$tfile
2685         sync & # write RPC generated with "current" inode timestamp, but delayed
2686         sleep 1
2687         touch --date="$DATESTR" $DIR/$tdir/$tfile # setattr timestamp in past
2688         LS_BEFORE="`ls -l $DIR/$tdir/$tfile`" # old timestamp from client cache
2689         cancel_lru_locks osc
2690         LS_AFTER="`ls -l $DIR/$tdir/$tfile`"  # timestamp from OST object
2691         date; date +%s
2692         [ "$LS_BEFORE" != "$LS_AFTER" ] && \
2693                 echo "BEFORE: $LS_BEFORE" && \
2694                 echo "AFTER : $LS_AFTER" && \
2695                 echo "WANT  : $DATESTR" && \
2696                 error "$DIR/$tdir/$tfile timestamps changed" || true
2697
2698         export LANG=$LANG_SAVE LC_LANG=$LC_LANG_SAVE
2699 }
2700
2701 test_36f() {
2702         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2703         #define OBD_FAIL_OST_BRW_PAUSE_BULK 0x214
2704         subr_36fh "0x80000214"
2705 }
2706 run_test 36f "utime on file racing with OST BRW write =========="
2707
2708 test_36g() {
2709         remote_ost_nodsh && skip "remote OST with nodsh" && return
2710         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2711         local fmd_max_age
2712         local fmd_before
2713         local fmd_after
2714
2715         test_mkdir -p $DIR/$tdir
2716         fmd_max_age=$(do_facet ost1 \
2717                 "lctl get_param -n obdfilter.*.client_cache_seconds 2> /dev/null | \
2718                 head -n 1")
2719
2720         fmd_before=$(do_facet ost1 \
2721                 "awk '/ll_fmd_cache/ {print \\\$2}' /proc/slabinfo")
2722         touch $DIR/$tdir/$tfile
2723         sleep $((fmd_max_age + 12))
2724         fmd_after=$(do_facet ost1 \
2725                 "awk '/ll_fmd_cache/ {print \\\$2}' /proc/slabinfo")
2726
2727         echo "fmd_before: $fmd_before"
2728         echo "fmd_after: $fmd_after"
2729         [ "$fmd_after" -gt "$fmd_before" ] && \
2730                 echo "AFTER: $fmd_after > BEFORE: $fmd_before" && \
2731                 error "fmd didn't expire after ping" || true
2732 }
2733 run_test 36g "filter mod data cache expiry ====================="
2734
2735 test_36h() {
2736         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2737         #define OBD_FAIL_OST_BRW_PAUSE_BULK2 0x227
2738         subr_36fh "0x80000227"
2739 }
2740 run_test 36h "utime on file racing with OST BRW write =========="
2741
2742 # test_37 - duplicate with tests 32q 32r
2743
2744 test_38() {
2745         local file=$DIR/$tfile
2746         touch $file
2747         openfile -f O_DIRECTORY $file
2748         local RC=$?
2749         local ENOTDIR=20
2750         [ $RC -eq 0 ] && error "opened file $file with O_DIRECTORY" || true
2751         [ $RC -eq $ENOTDIR ] || error "error $RC should be ENOTDIR ($ENOTDIR)"
2752 }
2753 run_test 38 "open a regular file with O_DIRECTORY should return -ENOTDIR ==="
2754
2755 test_39() {
2756         touch $DIR/$tfile
2757         touch $DIR/${tfile}2
2758 #       ls -l  $DIR/$tfile $DIR/${tfile}2
2759 #       ls -lu  $DIR/$tfile $DIR/${tfile}2
2760 #       ls -lc  $DIR/$tfile $DIR/${tfile}2
2761         sleep 2
2762         $OPENFILE -f O_CREAT:O_TRUNC:O_WRONLY $DIR/${tfile}2
2763         if [ ! $DIR/${tfile}2 -nt $DIR/$tfile ]; then
2764                 echo "mtime"
2765                 ls -l --full-time $DIR/$tfile $DIR/${tfile}2
2766                 echo "atime"
2767                 ls -lu --full-time $DIR/$tfile $DIR/${tfile}2
2768                 echo "ctime"
2769                 ls -lc --full-time $DIR/$tfile $DIR/${tfile}2
2770                 error "O_TRUNC didn't change timestamps"
2771         fi
2772 }
2773 run_test 39 "mtime changed on create ==========================="
2774
2775 test_39b() {
2776         test_mkdir -p $DIR/$tdir
2777         cp -p /etc/passwd $DIR/$tdir/fopen
2778         cp -p /etc/passwd $DIR/$tdir/flink
2779         cp -p /etc/passwd $DIR/$tdir/funlink
2780         cp -p /etc/passwd $DIR/$tdir/frename
2781         ln $DIR/$tdir/funlink $DIR/$tdir/funlink2
2782
2783         sleep 1
2784         echo "aaaaaa" >> $DIR/$tdir/fopen
2785         echo "aaaaaa" >> $DIR/$tdir/flink
2786         echo "aaaaaa" >> $DIR/$tdir/funlink
2787         echo "aaaaaa" >> $DIR/$tdir/frename
2788
2789         local open_new=`stat -c %Y $DIR/$tdir/fopen`
2790         local link_new=`stat -c %Y $DIR/$tdir/flink`
2791         local unlink_new=`stat -c %Y $DIR/$tdir/funlink`
2792         local rename_new=`stat -c %Y $DIR/$tdir/frename`
2793
2794         cat $DIR/$tdir/fopen > /dev/null
2795         ln $DIR/$tdir/flink $DIR/$tdir/flink2
2796         rm -f $DIR/$tdir/funlink2
2797         mv -f $DIR/$tdir/frename $DIR/$tdir/frename2
2798
2799         for (( i=0; i < 2; i++ )) ; do
2800                 local open_new2=`stat -c %Y $DIR/$tdir/fopen`
2801                 local link_new2=`stat -c %Y $DIR/$tdir/flink`
2802                 local unlink_new2=`stat -c %Y $DIR/$tdir/funlink`
2803                 local rename_new2=`stat -c %Y $DIR/$tdir/frename2`
2804
2805                 [ $open_new2 -eq $open_new ] || error "open file reverses mtime"
2806                 [ $link_new2 -eq $link_new ] || error "link file reverses mtime"
2807                 [ $unlink_new2 -eq $unlink_new ] || error "unlink file reverses mtime"
2808                 [ $rename_new2 -eq $rename_new ] || error "rename file reverses mtime"
2809
2810                 cancel_lru_locks osc
2811                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2812         done
2813 }
2814 run_test 39b "mtime change on open, link, unlink, rename  ======"
2815
2816 # this should be set to past
2817 TEST_39_MTIME=`date -d "1 year ago" +%s`
2818
2819 # bug 11063
2820 test_39c() {
2821         touch $DIR1/$tfile
2822         sleep 2
2823         local mtime0=`stat -c %Y $DIR1/$tfile`
2824
2825         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
2826         local mtime1=`stat -c %Y $DIR1/$tfile`
2827         [ "$mtime1" = $TEST_39_MTIME ] || \
2828                 error "mtime is not set to past: $mtime1, should be $TEST_39_MTIME"
2829
2830         local d1=`date +%s`
2831         echo hello >> $DIR1/$tfile
2832         local d2=`date +%s`
2833         local mtime2=`stat -c %Y $DIR1/$tfile`
2834         [ "$mtime2" -ge "$d1" ] && [ "$mtime2" -le "$d2" ] || \
2835                 error "mtime is not updated on write: $d1 <= $mtime2 <= $d2"
2836
2837         mv $DIR1/$tfile $DIR1/$tfile-1
2838
2839         for (( i=0; i < 2; i++ )) ; do
2840                 local mtime3=`stat -c %Y $DIR1/$tfile-1`
2841                 [ "$mtime2" = "$mtime3" ] || \
2842                         error "mtime ($mtime2) changed (to $mtime3) on rename"
2843
2844                 cancel_lru_locks osc
2845                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2846         done
2847 }
2848 run_test 39c "mtime change on rename ==========================="
2849
2850 # bug 21114
2851 test_39d() {
2852         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2853         touch $DIR1/$tfile
2854
2855         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
2856
2857         for (( i=0; i < 2; i++ )) ; do
2858                 local mtime=`stat -c %Y $DIR1/$tfile`
2859                 [ $mtime = $TEST_39_MTIME ] || \
2860                         error "mtime($mtime) is not set to $TEST_39_MTIME"
2861
2862                 cancel_lru_locks osc
2863                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2864         done
2865 }
2866 run_test 39d "create, utime, stat =============================="
2867
2868 # bug 21114
2869 test_39e() {
2870         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2871         touch $DIR1/$tfile
2872         local mtime1=`stat -c %Y $DIR1/$tfile`
2873
2874         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
2875
2876         for (( i=0; i < 2; i++ )) ; do
2877                 local mtime2=`stat -c %Y $DIR1/$tfile`
2878                 [ $mtime2 = $TEST_39_MTIME ] || \
2879                         error "mtime($mtime2) is not set to $TEST_39_MTIME"
2880
2881                 cancel_lru_locks osc
2882                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2883         done
2884 }
2885 run_test 39e "create, stat, utime, stat ========================"
2886
2887 # bug 21114
2888 test_39f() {
2889         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2890         touch $DIR1/$tfile
2891         mtime1=`stat -c %Y $DIR1/$tfile`
2892
2893         sleep 2
2894         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
2895
2896         for (( i=0; i < 2; i++ )) ; do
2897                 local mtime2=`stat -c %Y $DIR1/$tfile`
2898                 [ $mtime2 = $TEST_39_MTIME ] || \
2899                         error "mtime($mtime2) is not set to $TEST_39_MTIME"
2900
2901                 cancel_lru_locks osc
2902                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2903         done
2904 }
2905 run_test 39f "create, stat, sleep, utime, stat ================="
2906
2907 # bug 11063
2908 test_39g() {
2909         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2910         echo hello >> $DIR1/$tfile
2911         local mtime1=`stat -c %Y $DIR1/$tfile`
2912
2913         sleep 2
2914         chmod o+r $DIR1/$tfile
2915
2916         for (( i=0; i < 2; i++ )) ; do
2917                 local mtime2=`stat -c %Y $DIR1/$tfile`
2918                 [ "$mtime1" = "$mtime2" ] || \
2919                         error "lost mtime: $mtime2, should be $mtime1"
2920
2921                 cancel_lru_locks osc
2922                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2923         done
2924 }
2925 run_test 39g "write, chmod, stat ==============================="
2926
2927 # bug 11063
2928 test_39h() {
2929         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2930         touch $DIR1/$tfile
2931         sleep 1
2932
2933         local d1=`date`
2934         echo hello >> $DIR1/$tfile
2935         local mtime1=`stat -c %Y $DIR1/$tfile`
2936
2937         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
2938         local d2=`date`
2939         if [ "$d1" != "$d2" ]; then
2940                 echo "write and touch not within one second"
2941         else
2942                 for (( i=0; i < 2; i++ )) ; do
2943                         local mtime2=`stat -c %Y $DIR1/$tfile`
2944                         [ "$mtime2" = $TEST_39_MTIME ] || \
2945                                 error "lost mtime: $mtime2, should be $TEST_39_MTIME"
2946
2947                         cancel_lru_locks osc
2948                         if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2949                 done
2950         fi
2951 }
2952 run_test 39h "write, utime within one second, stat ============="
2953
2954 test_39i() {
2955         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2956         touch $DIR1/$tfile
2957         sleep 1
2958
2959         echo hello >> $DIR1/$tfile
2960         local mtime1=`stat -c %Y $DIR1/$tfile`
2961
2962         mv $DIR1/$tfile $DIR1/$tfile-1
2963
2964         for (( i=0; i < 2; i++ )) ; do
2965                 local mtime2=`stat -c %Y $DIR1/$tfile-1`
2966
2967                 [ "$mtime1" = "$mtime2" ] || \
2968                         error "lost mtime: $mtime2, should be $mtime1"
2969
2970                 cancel_lru_locks osc
2971                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2972         done
2973 }
2974 run_test 39i "write, rename, stat =============================="
2975
2976 test_39j() {
2977         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2978         start_full_debug_logging
2979         touch $DIR1/$tfile
2980         sleep 1
2981
2982         #define OBD_FAIL_OSC_DELAY_SETTIME       0x412
2983         lctl set_param fail_loc=0x80000412
2984         multiop_bg_pause $DIR1/$tfile oO_RDWR:w2097152_c ||
2985                 error "multiop failed"
2986         local multipid=$!
2987         local mtime1=`stat -c %Y $DIR1/$tfile`
2988
2989         mv $DIR1/$tfile $DIR1/$tfile-1
2990
2991         kill -USR1 $multipid
2992         wait $multipid || error "multiop close failed"
2993
2994         for (( i=0; i < 2; i++ )) ; do
2995                 local mtime2=`stat -c %Y $DIR1/$tfile-1`
2996                 [ "$mtime1" = "$mtime2" ] ||
2997                         error "mtime is lost on close: $mtime2, " \
2998                               "should be $mtime1"
2999
3000                 cancel_lru_locks osc
3001                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3002         done
3003         lctl set_param fail_loc=0
3004         stop_full_debug_logging
3005 }
3006 run_test 39j "write, rename, close, stat ======================="
3007
3008 test_39k() {
3009         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3010         touch $DIR1/$tfile
3011         sleep 1
3012
3013         multiop_bg_pause $DIR1/$tfile oO_RDWR:w2097152_c || error "multiop failed"
3014         local multipid=$!
3015         local mtime1=`stat -c %Y $DIR1/$tfile`
3016
3017         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3018
3019         kill -USR1 $multipid
3020         wait $multipid || error "multiop close failed"
3021
3022         for (( i=0; i < 2; i++ )) ; do
3023                 local mtime2=`stat -c %Y $DIR1/$tfile`
3024
3025                 [ "$mtime2" = $TEST_39_MTIME ] || \
3026                         error "mtime is lost on close: $mtime2, should be $TEST_39_MTIME"
3027
3028                 cancel_lru_locks osc
3029                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3030         done
3031 }
3032 run_test 39k "write, utime, close, stat ========================"
3033
3034 # this should be set to future
3035 TEST_39_ATIME=`date -d "1 year" +%s`
3036
3037 test_39l() {
3038         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3039         remote_mds_nodsh && skip "remote MDS with nodsh" && return
3040         local atime_diff=$(do_facet $SINGLEMDS \
3041                                 lctl get_param -n mdd.*MDT0000*.atime_diff)
3042         rm -rf $DIR/$tdir
3043         mkdir -p $DIR/$tdir
3044
3045         # test setting directory atime to future
3046         touch -a -d @$TEST_39_ATIME $DIR/$tdir
3047         local atime=$(stat -c %X $DIR/$tdir)
3048         [ "$atime" = $TEST_39_ATIME ] || \
3049                 error "atime is not set to future: $atime, $TEST_39_ATIME"
3050
3051         # test setting directory atime from future to now
3052         local d1=$(date +%s)
3053         ls $DIR/$tdir
3054         local d2=$(date +%s)
3055
3056         cancel_lru_locks mdc
3057         atime=$(stat -c %X $DIR/$tdir)
3058         [ "$atime" -ge "$d1" -a "$atime" -le "$d2" ] || \
3059                 error "atime is not updated from future: $atime, $d1<atime<$d2"
3060
3061         do_facet $SINGLEMDS lctl set_param -n mdd.*MDT0000*.atime_diff=2
3062         sleep 3
3063
3064         # test setting directory atime when now > dir atime + atime_diff
3065         d1=$(date +%s)
3066         ls $DIR/$tdir
3067         d2=$(date +%s)
3068         cancel_lru_locks mdc
3069         atime=$(stat -c %X $DIR/$tdir)
3070         [ "$atime" -ge "$d1" -a "$atime" -le "$d2" ] || \
3071                 error "atime is not updated  : $atime, should be $d2"
3072
3073         do_facet $SINGLEMDS lctl set_param -n mdd.*MDT0000*.atime_diff=60
3074         sleep 3
3075
3076         # test not setting directory atime when now < dir atime + atime_diff
3077         ls $DIR/$tdir
3078         cancel_lru_locks mdc
3079         atime=$(stat -c %X $DIR/$tdir)
3080         [ "$atime" -ge "$d1" -a "$atime" -le "$d2" ] || \
3081                 error "atime is updated to $atime, should remain $d1<atime<$d2"
3082
3083         do_facet $SINGLEMDS \
3084                 lctl set_param -n mdd.*MDT0000*.atime_diff=$atime_diff
3085 }
3086 run_test 39l "directory atime update ==========================="
3087
3088 test_39m() {
3089         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3090         touch $DIR1/$tfile
3091         sleep 2
3092         local far_past_mtime=$(date -d "May 29 1953" +%s)
3093         local far_past_atime=$(date -d "Dec 17 1903" +%s)
3094
3095         touch -m -d @$far_past_mtime $DIR1/$tfile
3096         touch -a -d @$far_past_atime $DIR1/$tfile
3097
3098         for (( i=0; i < 2; i++ )) ; do
3099                 local timestamps=$(stat -c "%X %Y" $DIR1/$tfile)
3100                 [ "$timestamps" = "$far_past_atime $far_past_mtime" ] || \
3101                         error "atime or mtime set incorrectly"
3102
3103                 cancel_lru_locks osc
3104                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3105         done
3106 }
3107 run_test 39m "test atime and mtime before 1970"
3108
3109 test_39n() { # LU-3832
3110         local atime_diff=$(do_facet $SINGLEMDS \
3111                 lctl get_param -n mdd.*MDT0000*.atime_diff)
3112         local atime0
3113         local atime1
3114         local atime2
3115
3116         do_facet $SINGLEMDS lctl set_param -n mdd.*MDT0000*.atime_diff=1
3117
3118         rm -rf $DIR/$tfile
3119         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 status=noxfer
3120         atime0=$(stat -c %X $DIR/$tfile)
3121
3122         sleep 5
3123         $MULTIOP $DIR/$tfile oO_RDONLY:O_NOATIME:r4096c
3124         atime1=$(stat -c %X $DIR/$tfile)
3125
3126         sleep 5
3127         cancel_lru_locks mdc
3128         cancel_lru_locks osc
3129         $MULTIOP $DIR/$tfile oO_RDONLY:O_NOATIME:r4096c
3130         atime2=$(stat -c %X $DIR/$tfile)
3131
3132         do_facet $SINGLEMDS \
3133                 lctl set_param -n mdd.*MDT0000*.atime_diff=$atime_diff
3134
3135         [ "$atime0" -eq "$atime1" ] || error "atime0 $atime0 != atime1 $atime1"
3136         [ "$atime1" -eq "$atime2" ] || error "atime0 $atime0 != atime1 $atime1"
3137 }
3138 run_test 39n "check that O_NOATIME is honored"
3139
3140 test_39o() {
3141         TESTDIR=$DIR/$tdir/$tfile
3142         [ -e $TESTDIR ] && rm -rf $TESTDIR
3143         test_mkdir -p $TESTDIR
3144         cd $TESTDIR
3145         links1=2
3146         ls
3147         mkdir a b
3148         ls
3149         links2=$(stat -c %h .)
3150         [ $(($links1 + 2)) != $links2 ] &&
3151                 error "wrong links count $(($links1 + 2)) != $links2"
3152         rmdir b
3153         links3=$(stat -c %h .)
3154         [ $(($links1 + 1)) != $links3 ] &&
3155                 error "wrong links count $links1 != $links3"
3156         return 0
3157 }
3158 run_test 39o "directory cached attributes updated after create ========"
3159
3160 test_39p() {
3161         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
3162         local MDTIDX=1
3163         TESTDIR=$DIR/$tdir/$tfile
3164         [ -e $TESTDIR ] && rm -rf $TESTDIR
3165         mkdir -p $TESTDIR
3166         cd $TESTDIR
3167         links1=2
3168         ls
3169         $LFS mkdir -i $MDTIDX $TESTDIR/remote_dir1
3170         $LFS mkdir -i $MDTIDX $TESTDIR/remote_dir2
3171         ls
3172         links2=$(stat -c %h .)
3173         [ $(($links1 + 2)) != $links2 ] &&
3174                 error "wrong links count $(($links1 + 2)) != $links2"
3175         rmdir remote_dir2
3176         links3=$(stat -c %h .)
3177         [ $(($links1 + 1)) != $links3 ] &&
3178                 error "wrong links count $links1 != $links3"
3179         return 0
3180 }
3181 run_test 39p "remote directory cached attributes updated after create ========"
3182
3183
3184 test_40() {
3185         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1
3186         $RUNAS $OPENFILE -f O_WRONLY:O_TRUNC $DIR/$tfile &&
3187                 error "openfile O_WRONLY:O_TRUNC $tfile failed"
3188         $CHECKSTAT -t file -s 4096 $DIR/$tfile ||
3189                 error "$tfile is not 4096 bytes in size"
3190 }
3191 run_test 40 "failed open(O_TRUNC) doesn't truncate ============="
3192
3193 test_41() {
3194         # bug 1553
3195         small_write $DIR/f41 18
3196 }
3197 run_test 41 "test small file write + fstat ====================="
3198
3199 count_ost_writes() {
3200         lctl get_param -n osc.*.stats |
3201             awk -vwrites=0 '/ost_write/ { writes += $2 } END { print writes; }'
3202 }
3203
3204 # decent default
3205 WRITEBACK_SAVE=500
3206 DIRTY_RATIO_SAVE=40
3207 MAX_DIRTY_RATIO=50
3208 BG_DIRTY_RATIO_SAVE=10
3209 MAX_BG_DIRTY_RATIO=25
3210
3211 start_writeback() {
3212         trap 0
3213         # in 2.6, restore /proc/sys/vm/dirty_writeback_centisecs,
3214         # dirty_ratio, dirty_background_ratio
3215         if [ -f /proc/sys/vm/dirty_writeback_centisecs ]; then
3216                 sysctl -w vm.dirty_writeback_centisecs=$WRITEBACK_SAVE
3217                 sysctl -w vm.dirty_background_ratio=$BG_DIRTY_RATIO_SAVE
3218                 sysctl -w vm.dirty_ratio=$DIRTY_RATIO_SAVE
3219         else
3220                 # if file not here, we are a 2.4 kernel
3221                 kill -CONT `pidof kupdated`
3222         fi
3223 }
3224
3225 stop_writeback() {
3226         # setup the trap first, so someone cannot exit the test at the
3227         # exact wrong time and mess up a machine
3228         trap start_writeback EXIT
3229         # in 2.6, save and 0 /proc/sys/vm/dirty_writeback_centisecs
3230         if [ -f /proc/sys/vm/dirty_writeback_centisecs ]; then
3231                 WRITEBACK_SAVE=`sysctl -n vm.dirty_writeback_centisecs`
3232                 sysctl -w vm.dirty_writeback_centisecs=0
3233                 sysctl -w vm.dirty_writeback_centisecs=0
3234                 # save and increase /proc/sys/vm/dirty_ratio
3235                 DIRTY_RATIO_SAVE=`sysctl -n vm.dirty_ratio`
3236                 sysctl -w vm.dirty_ratio=$MAX_DIRTY_RATIO
3237                 # save and increase /proc/sys/vm/dirty_background_ratio
3238                 BG_DIRTY_RATIO_SAVE=`sysctl -n vm.dirty_background_ratio`
3239                 sysctl -w vm.dirty_background_ratio=$MAX_BG_DIRTY_RATIO
3240         else
3241                 # if file not here, we are a 2.4 kernel
3242                 kill -STOP `pidof kupdated`
3243         fi
3244 }
3245
3246 # ensure that all stripes have some grant before we test client-side cache
3247 setup_test42() {
3248         for i in `seq -f $DIR/f42-%g 1 $OSTCOUNT`; do
3249                 dd if=/dev/zero of=$i bs=4k count=1
3250                 rm $i
3251         done
3252 }
3253
3254 # Tests 42* verify that our behaviour is correct WRT caching, file closure,
3255 # file truncation, and file removal.
3256 test_42a() {
3257         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3258         setup_test42
3259         cancel_lru_locks osc
3260         stop_writeback
3261         sync; sleep 1; sync # just to be safe
3262         BEFOREWRITES=`count_ost_writes`
3263         lctl get_param -n osc.*[oO][sS][cC][_-]*.cur_grant_bytes | grep "[0-9]"
3264         dd if=/dev/zero of=$DIR/f42a bs=1024 count=100
3265         AFTERWRITES=`count_ost_writes`
3266         [ $BEFOREWRITES -eq $AFTERWRITES ] || \
3267                 error "$BEFOREWRITES < $AFTERWRITES"
3268         start_writeback
3269 }
3270 run_test 42a "ensure that we don't flush on close =============="
3271
3272 test_42b() {
3273         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3274         setup_test42
3275         cancel_lru_locks osc
3276         stop_writeback
3277         sync
3278         dd if=/dev/zero of=$DIR/f42b bs=1024 count=100
3279         BEFOREWRITES=`count_ost_writes`
3280         $MUNLINK $DIR/f42b || error "$MUNLINK $DIR/f42b: $?"
3281         AFTERWRITES=`count_ost_writes`
3282         if [ $BEFOREWRITES -lt $AFTERWRITES ]; then
3283                 error "$BEFOREWRITES < $AFTERWRITES on unlink"
3284         fi
3285         BEFOREWRITES=`count_ost_writes`
3286         sync || error "sync: $?"
3287         AFTERWRITES=`count_ost_writes`
3288         if [ $BEFOREWRITES -lt $AFTERWRITES ]; then
3289                 error "$BEFOREWRITES < $AFTERWRITES on sync"
3290         fi
3291         dmesg | grep 'error from obd_brw_async' && error 'error writing back'
3292         start_writeback
3293         return 0
3294 }
3295 run_test 42b "test destroy of file with cached dirty data ======"
3296
3297 # if these tests just want to test the effect of truncation,
3298 # they have to be very careful.  consider:
3299 # - the first open gets a {0,EOF}PR lock
3300 # - the first write conflicts and gets a {0, count-1}PW
3301 # - the rest of the writes are under {count,EOF}PW
3302 # - the open for truncate tries to match a {0,EOF}PR
3303 #   for the filesize and cancels the PWs.
3304 # any number of fixes (don't get {0,EOF} on open, match
3305 # composite locks, do smarter file size management) fix
3306 # this, but for now we want these tests to verify that
3307 # the cancellation with truncate intent works, so we
3308 # start the file with a full-file pw lock to match against
3309 # until the truncate.
3310 trunc_test() {
3311         test=$1
3312         file=$DIR/$test
3313         offset=$2
3314         cancel_lru_locks osc
3315         stop_writeback
3316         # prime the file with 0,EOF PW to match
3317         touch $file
3318         $TRUNCATE $file 0
3319         sync; sync
3320         # now the real test..
3321         dd if=/dev/zero of=$file bs=1024 count=100
3322         BEFOREWRITES=`count_ost_writes`
3323         $TRUNCATE $file $offset
3324         cancel_lru_locks osc
3325         AFTERWRITES=`count_ost_writes`
3326         start_writeback
3327 }
3328
3329 test_42c() {
3330         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3331         trunc_test 42c 1024
3332         [ $BEFOREWRITES -eq $AFTERWRITES ] && \
3333             error "beforewrites $BEFOREWRITES == afterwrites $AFTERWRITES on truncate"
3334         rm $file
3335 }
3336 run_test 42c "test partial truncate of file with cached dirty data"
3337
3338 test_42d() {
3339         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3340         trunc_test 42d 0
3341         [ $BEFOREWRITES -eq $AFTERWRITES ] || \
3342             error "beforewrites $BEFOREWRITES != afterwrites $AFTERWRITES on truncate"
3343         rm $file
3344 }
3345 run_test 42d "test complete truncate of file with cached dirty data"
3346
3347 test_42e() { # bug22074
3348         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3349         local TDIR=$DIR/${tdir}e
3350         local pagesz=$(page_size)
3351         local pages=16 # hardcoded 16 pages, don't change it.
3352         local files=$((OSTCOUNT * 500)) # hopefully 500 files on each OST
3353         local proc_osc0="osc.${FSNAME}-OST0000-osc-[^MDT]*"
3354         local max_dirty_mb
3355         local warmup_files
3356
3357         test_mkdir -p $DIR/${tdir}e
3358         $SETSTRIPE -c 1 $TDIR
3359         createmany -o $TDIR/f $files
3360
3361         max_dirty_mb=$($LCTL get_param -n $proc_osc0/max_dirty_mb)
3362
3363         # we assume that with $OSTCOUNT files, at least one of them will
3364         # be allocated on OST0.
3365         warmup_files=$((OSTCOUNT * max_dirty_mb))
3366         createmany -o $TDIR/w $warmup_files
3367
3368         # write a large amount of data into one file and sync, to get good
3369         # avail_grant number from OST.
3370         for ((i=0; i<$warmup_files; i++)); do
3371                 idx=$($GETSTRIPE -i $TDIR/w$i)
3372                 [ $idx -ne 0 ] && continue
3373                 dd if=/dev/zero of=$TDIR/w$i bs="$max_dirty_mb"M count=1
3374                 break
3375         done
3376         [ $i -gt $warmup_files ] && error "OST0 is still cold"
3377         sync
3378         $LCTL get_param $proc_osc0/cur_dirty_bytes
3379         $LCTL get_param $proc_osc0/cur_grant_bytes
3380
3381         # create as much dirty pages as we can while not to trigger the actual
3382         # RPCs directly. but depends on the env, VFS may trigger flush during this
3383         # period, hopefully we are good.
3384         for ((i=0; i<$warmup_files; i++)); do
3385                 idx=$($GETSTRIPE -i $TDIR/w$i)
3386                 [ $idx -ne 0 ] && continue
3387                 dd if=/dev/zero of=$TDIR/w$i bs=1M count=1 2>/dev/null
3388         done
3389         $LCTL get_param $proc_osc0/cur_dirty_bytes
3390         $LCTL get_param $proc_osc0/cur_grant_bytes
3391
3392         # perform the real test
3393         $LCTL set_param $proc_osc0/rpc_stats 0
3394         for ((;i<$files; i++)); do
3395                 [ $($GETSTRIPE -i $TDIR/f$i) -eq 0 ] || continue
3396                 dd if=/dev/zero of=$TDIR/f$i bs=$pagesz count=$pages 2>/dev/null
3397         done
3398         sync
3399         $LCTL get_param $proc_osc0/rpc_stats
3400
3401         local percent=0
3402         local have_ppr=false
3403         $LCTL get_param $proc_osc0/rpc_stats |
3404                 while read PPR RRPC RPCT RCUM BAR WRPC WPCT WCUM; do
3405                         # skip lines until we are at the RPC histogram data
3406                         [ "$PPR" == "pages" ] && have_ppr=true && continue
3407                         $have_ppr || continue
3408
3409                         # we only want the percent stat for < 16 pages
3410                         [ $(echo $PPR | tr -d ':') -ge $pages ] && break
3411
3412                         percent=$((percent + WPCT))
3413                         if [ $percent -gt 15 ]; then
3414                                 error "less than 16-pages write RPCs" \
3415                                       "$percent% > 15%"
3416                                 break
3417                         fi
3418                 done
3419         rm -rf $TDIR
3420 }
3421 run_test 42e "verify sub-RPC writes are not done synchronously"
3422
3423 test_43() {
3424         test_mkdir -p $DIR/$tdir
3425         cp -p /bin/ls $DIR/$tdir/$tfile
3426         $MULTIOP $DIR/$tdir/$tfile Ow_c &
3427         pid=$!
3428         # give multiop a chance to open
3429         sleep 1
3430
3431         $DIR/$tdir/$tfile && error || true
3432         kill -USR1 $pid
3433 }
3434 run_test 43 "execution of file opened for write should return -ETXTBSY"
3435
3436 test_43a() {
3437         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3438         test_mkdir -p $DIR/$tdir
3439         cp -p `which $MULTIOP` $DIR/$tdir/multiop ||
3440                         cp -p multiop $DIR/$tdir/multiop
3441         MULTIOP_PROG=$DIR/$tdir/multiop multiop_bg_pause $TMP/$tfile.junk O_c ||
3442                         return 1
3443         MULTIOP_PID=$!
3444         $MULTIOP $DIR/$tdir/multiop Oc && error "expected error, got success"
3445         kill -USR1 $MULTIOP_PID || return 2
3446         wait $MULTIOP_PID || return 3
3447         rm $TMP/$tfile.junk $DIR/$tdir/multiop
3448 }
3449 run_test 43a "open(RDWR) of file being executed should return -ETXTBSY"
3450
3451 test_43b() {
3452         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3453         test_mkdir -p $DIR/$tdir
3454         cp -p `which $MULTIOP` $DIR/$tdir/multiop ||
3455                         cp -p multiop $DIR/$tdir/multiop
3456         MULTIOP_PROG=$DIR/$tdir/multiop multiop_bg_pause $TMP/$tfile.junk O_c ||
3457                         return 1
3458         MULTIOP_PID=$!
3459         $TRUNCATE $DIR/$tdir/multiop 0 && error "expected error, got success"
3460         kill -USR1 $MULTIOP_PID || return 2
3461         wait $MULTIOP_PID || return 3
3462         rm $TMP/$tfile.junk $DIR/$tdir/multiop
3463 }
3464 run_test 43b "truncate of file being executed should return -ETXTBSY"
3465
3466 test_43c() {
3467         local testdir="$DIR/$tdir"
3468         test_mkdir -p $DIR/$tdir
3469         cp $SHELL $testdir/
3470         ( cd $(dirname $SHELL) && md5sum $(basename $SHELL) ) | \
3471                 ( cd $testdir && md5sum -c)
3472 }
3473 run_test 43c "md5sum of copy into lustre========================"
3474
3475 test_44() {
3476         [  "$OSTCOUNT" -lt "2" ] && skip_env "skipping 2-stripe test" && return
3477         dd if=/dev/zero of=$DIR/f1 bs=4k count=1 seek=1023
3478         dd if=$DIR/f1 bs=4k count=1 > /dev/null
3479 }
3480 run_test 44 "zero length read from a sparse stripe ============="
3481
3482 test_44a() {
3483     local nstripe=`$LCTL lov_getconfig $DIR | grep default_stripe_count: | \
3484                          awk '{print $2}'`
3485     [ -z "$nstripe" ] && skip "can't get stripe info" && return
3486     [ "$nstripe" -gt "$OSTCOUNT" ] && skip "Wrong default_stripe_count: $nstripe (OSTCOUNT: $OSTCOUNT)" && return
3487     local stride=`$LCTL lov_getconfig $DIR | grep default_stripe_size: | \
3488                       awk '{print $2}'`
3489     if [ $nstripe -eq 0 -o $nstripe -eq -1 ] ; then
3490         nstripe=`$LCTL lov_getconfig $DIR | grep obd_count: | awk '{print $2}'`
3491     fi
3492
3493     OFFSETS="0 $((stride/2)) $((stride-1))"
3494     for offset in $OFFSETS ; do
3495       for i in `seq 0 $((nstripe-1))`; do
3496         local GLOBALOFFSETS=""
3497         local size=$((((i + 2 * $nstripe )*$stride + $offset)))  # Bytes
3498         local myfn=$DIR/d44a-$size
3499         echo "--------writing $myfn at $size"
3500         ll_sparseness_write $myfn $size  || error "ll_sparseness_write"
3501         GLOBALOFFSETS="$GLOBALOFFSETS $size"
3502         ll_sparseness_verify $myfn $GLOBALOFFSETS \
3503                             || error "ll_sparseness_verify $GLOBALOFFSETS"
3504
3505         for j in `seq 0 $((nstripe-1))`; do
3506             size=$((((j + $nstripe )*$stride + $offset)))  # Bytes
3507             ll_sparseness_write $myfn $size || error "ll_sparseness_write"
3508             GLOBALOFFSETS="$GLOBALOFFSETS $size"
3509         done
3510         ll_sparseness_verify $myfn $GLOBALOFFSETS \
3511                             || error "ll_sparseness_verify $GLOBALOFFSETS"
3512         rm -f $myfn
3513       done
3514     done
3515 }
3516 run_test 44a "test sparse pwrite ==============================="
3517
3518 dirty_osc_total() {
3519         tot=0
3520         for d in `lctl get_param -n osc.*.cur_dirty_bytes`; do
3521                 tot=$(($tot + $d))
3522         done
3523         echo $tot
3524 }
3525 do_dirty_record() {
3526         before=`dirty_osc_total`
3527         echo executing "\"$*\""
3528         eval $*
3529         after=`dirty_osc_total`
3530         echo before $before, after $after
3531 }
3532 test_45() {
3533         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3534         f="$DIR/f45"
3535         # Obtain grants from OST if it supports it
3536         echo blah > ${f}_grant
3537         stop_writeback
3538         sync
3539         do_dirty_record "echo blah > $f"
3540         [ $before -eq $after ] && error "write wasn't cached"
3541         do_dirty_record "> $f"
3542         [ $before -gt $after ] || error "truncate didn't lower dirty count"
3543         do_dirty_record "echo blah > $f"
3544         [ $before -eq $after ] && error "write wasn't cached"
3545         do_dirty_record "sync"
3546         [ $before -gt $after ] || error "writeback didn't lower dirty count"
3547         do_dirty_record "echo blah > $f"
3548         [ $before -eq $after ] && error "write wasn't cached"
3549         do_dirty_record "cancel_lru_locks osc"
3550         [ $before -gt $after ] || error "lock cancellation didn't lower dirty count"
3551         start_writeback
3552 }
3553 run_test 45 "osc io page accounting ============================"
3554
3555 # in a 2 stripe file (lov.sh), page 1023 maps to page 511 in its object.  this
3556 # test tickles a bug where re-dirtying a page was failing to be mapped to the
3557 # objects offset and an assert hit when an rpc was built with 1023's mapped
3558 # offset 511 and 511's raw 511 offset. it also found general redirtying bugs.
3559 test_46() {
3560         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3561         f="$DIR/f46"
3562         stop_writeback
3563         sync
3564         dd if=/dev/zero of=$f bs=`page_size` seek=511 count=1
3565         sync
3566         dd conv=notrunc if=/dev/zero of=$f bs=`page_size` seek=1023 count=1
3567         dd conv=notrunc if=/dev/zero of=$f bs=`page_size` seek=511 count=1
3568         sync
3569         start_writeback
3570 }
3571 run_test 46 "dirtying a previously written page ================"
3572
3573 # test_47 is removed "Device nodes check" is moved to test_28
3574
3575 test_48a() { # bug 2399
3576         check_kernel_version 34 || return 0
3577         test_mkdir -p $DIR/$tdir
3578         cd $DIR/$tdir
3579         mv $DIR/$tdir $DIR/d48.new || error "move directory failed"
3580         test_mkdir $DIR/$tdir || error "recreate directory failed"
3581         touch foo || error "'touch foo' failed after recreating cwd"
3582         test_mkdir $DIR/$tdir/bar ||
3583                      error "'mkdir foo' failed after recreating cwd"
3584         if check_kernel_version 44; then
3585                 touch .foo || error "'touch .foo' failed after recreating cwd"
3586                 test_mkdir $DIR/$tdir/.bar ||
3587                               error "'mkdir .foo' failed after recreating cwd"
3588         fi
3589         ls . > /dev/null || error "'ls .' failed after recreating cwd"
3590         ls .. > /dev/null || error "'ls ..' failed after removing cwd"
3591         cd . || error "'cd .' failed after recreating cwd"
3592         test_mkdir . && error "'mkdir .' worked after recreating cwd"
3593         rmdir . && error "'rmdir .' worked after recreating cwd"
3594         ln -s . baz || error "'ln -s .' failed after recreating cwd"
3595         cd .. || error "'cd ..' failed after recreating cwd"
3596 }
3597 run_test 48a "Access renamed working dir (should return errors)="
3598
3599 test_48b() { # bug 2399
3600         check_kernel_version 34 || return 0
3601         rm -rf $DIR/$tdir
3602         test_mkdir -p $DIR/$tdir
3603         cd $DIR/$tdir
3604         rmdir $DIR/$tdir || error "remove cwd $DIR/$tdir failed"
3605         touch foo && error "'touch foo' worked after removing cwd"
3606         test_mkdir $DIR/$tdir/foo &&
3607                      error "'mkdir foo' worked after removing cwd"
3608         if check_kernel_version 44; then
3609                 touch .foo && error "'touch .foo' worked after removing cwd"
3610                 test_mkdir $DIR/$tdir/.foo &&
3611                               error "'mkdir .foo' worked after removing cwd"
3612         fi
3613         ls . > /dev/null && error "'ls .' worked after removing cwd"
3614         ls .. > /dev/null || error "'ls ..' failed after removing cwd"
3615         is_patchless || ( cd . && error "'cd .' worked after removing cwd" )
3616         test_mkdir $DIR/$tdir/. && error "'mkdir .' worked after removing cwd"
3617         rmdir . && error "'rmdir .' worked after removing cwd"
3618         ln -s . foo && error "'ln -s .' worked after removing cwd"
3619         cd .. || echo "'cd ..' failed after removing cwd `pwd`"  #bug 3517
3620 }
3621 run_test 48b "Access removed working dir (should return errors)="
3622
3623 test_48c() { # bug 2350
3624         check_kernel_version 36 || return 0
3625         #lctl set_param debug=-1
3626         #set -vx
3627         rm -rf $DIR/$tdir
3628         test_mkdir -p $DIR/$tdir/dir
3629         cd $DIR/$tdir/dir
3630         $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
3631         $TRACE touch foo && error "touch foo worked after removing cwd"
3632         $TRACE test_mkdir foo && error "'mkdir foo' worked after removing cwd"
3633         if check_kernel_version 44; then
3634                 touch .foo && error "touch .foo worked after removing cwd"
3635                 test_mkdir .foo && error "mkdir .foo worked after removing cwd"
3636         fi
3637         $TRACE ls . && error "'ls .' worked after removing cwd"
3638         $TRACE ls .. || error "'ls ..' failed after removing cwd"
3639         is_patchless || ( $TRACE cd . &&
3640                         error "'cd .' worked after removing cwd" )
3641         $TRACE test_mkdir . && error "'mkdir .' worked after removing cwd"
3642         $TRACE rmdir . && error "'rmdir .' worked after removing cwd"
3643         $TRACE ln -s . foo && error "'ln -s .' worked after removing cwd"
3644         $TRACE cd .. || echo "'cd ..' failed after removing cwd `pwd`" #bug 3415
3645 }
3646 run_test 48c "Access removed working subdir (should return errors)"
3647
3648 test_48d() { # bug 2350
3649         check_kernel_version 36 || return 0
3650         #lctl set_param debug=-1
3651         #set -vx
3652         rm -rf $DIR/$tdir
3653         test_mkdir -p $DIR/$tdir/dir
3654         cd $DIR/$tdir/dir
3655         $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
3656         $TRACE rmdir $DIR/$tdir || error "remove parent $DIR/$tdir failed"
3657         $TRACE touch foo && error "'touch foo' worked after removing parent"
3658         $TRACE test_mkdir foo && error "mkdir foo worked after removing parent"
3659         if check_kernel_version 44; then
3660                 touch .foo && error "'touch .foo' worked after removing parent"
3661                 test_mkdir .foo &&
3662                               error "mkdir .foo worked after removing parent"
3663         fi
3664         $TRACE ls . && error "'ls .' worked after removing parent"
3665         $TRACE ls .. && error "'ls ..' worked after removing parent"
3666         is_patchless || ( $TRACE cd . &&
3667                         error "'cd .' worked after recreate parent" )
3668         $TRACE test_mkdir . && error "'mkdir .' worked after removing parent"
3669         $TRACE rmdir . && error "'rmdir .' worked after removing parent"
3670         $TRACE ln -s . foo && error "'ln -s .' worked after removing parent"
3671         is_patchless || ( $TRACE cd .. &&
3672                         error "'cd ..' worked after removing parent" || true )
3673 }
3674 run_test 48d "Access removed parent subdir (should return errors)"
3675
3676 test_48e() { # bug 4134
3677         check_kernel_version 41 || return 0
3678         #lctl set_param debug=-1
3679         #set -vx
3680         rm -rf $DIR/$tdir
3681         test_mkdir -p $DIR/$tdir/dir
3682         cd $DIR/$tdir/dir
3683         $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
3684         $TRACE rmdir $DIR/$tdir || error "remove parent $DIR/$tdir failed"
3685         $TRACE touch $DIR/$tdir || error "'touch $DIR/$tdir' failed"
3686         $TRACE chmod +x $DIR/$tdir || error "'chmod +x $DIR/$tdir' failed"
3687         # On a buggy kernel addition of "touch foo" after cd .. will
3688         # produce kernel oops in lookup_hash_it
3689         touch ../foo && error "'cd ..' worked after recreate parent"
3690         cd $DIR
3691         $TRACE rm $DIR/$tdir || error "rm '$DIR/$tdir' failed"
3692 }
3693 run_test 48e "Access to recreated parent subdir (should return errors)"
3694
3695 test_49() { # LU-1030
3696         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3697         # get ost1 size - lustre-OST0000
3698         ost1_size=$(do_facet ost1 lfs df |grep ${ost1_svc} |awk '{print $4}')
3699         # write 800M at maximum
3700         [ $ost1_size -gt 819200 ] && ost1_size=819200
3701
3702         lfs setstripe -c 1 -i 0 $DIR/$tfile
3703         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((ost1_size >> 2)) &
3704         local dd_pid=$!
3705
3706         # change max_pages_per_rpc while writing the file
3707         local osc1_mppc=osc.$(get_osc_import_name client ost1).max_pages_per_rpc
3708         local orig_mppc=`$LCTL get_param -n $osc1_mppc`
3709         # loop until dd process exits
3710         while ps ax -opid | grep -wq $dd_pid; do
3711                 $LCTL set_param $osc1_mppc=$((RANDOM % 256 + 1))
3712                 sleep $((RANDOM % 5 + 1))
3713         done
3714         # restore original max_pages_per_rpc
3715         $LCTL set_param $osc1_mppc=$orig_mppc
3716         rm $DIR/$tfile || error "rm $DIR/$tfile failed"
3717 }
3718 run_test 49 "Change max_pages_per_rpc won't break osc extent"
3719
3720 test_50() {
3721         # bug 1485
3722         test_mkdir $DIR/$tdir
3723         cd $DIR/$tdir
3724         ls /proc/$$/cwd || error "ls /proc/$$/cwd failed"
3725 }
3726 run_test 50 "special situations: /proc symlinks  ==============="
3727
3728 test_51a() {    # was test_51
3729         # bug 1516 - create an empty entry right after ".." then split dir
3730         test_mkdir -p $DIR/$tdir
3731         touch $DIR/$tdir/foo
3732         $MCREATE $DIR/$tdir/bar
3733         rm $DIR/$tdir/foo
3734         createmany -m $DIR/$tdir/longfile 201
3735         FNUM=202
3736         while [ $(ls -sd $DIR/$tdir | awk '{ print $1 }') -eq 4 ]; do
3737                 $MCREATE $DIR/$tdir/longfile$FNUM
3738                 FNUM=$(($FNUM + 1))
3739                 echo -n "+"
3740         done
3741         echo
3742         ls -l $DIR/$tdir > /dev/null || error "ls -l $DIR/$tdir failed"
3743 }
3744 run_test 51a "special situations: split htree with empty entry =="
3745
3746 export NUMTEST=70000
3747 test_51b() {
3748         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3749         local BASE=$DIR/$tdir
3750
3751         # cleanup the directory
3752         rm -fr $BASE
3753
3754         test_mkdir -p $BASE
3755
3756         local mdtidx=$(printf "%04x" $($LFS getstripe -M $BASE))
3757         local numfree=$(lctl get_param -n mdc.$FSNAME-MDT$mdtidx*.filesfree)
3758         [ $numfree -lt 21000 ] && skip "not enough free inodes ($numfree)" &&
3759                 return
3760
3761         [ $numfree -lt $NUMTEST ] && NUMTEST=$(($numfree - 50)) &&
3762                 echo "reduced count to $NUMTEST due to inodes"
3763
3764         # need to check free space for the directories as well
3765         local blkfree=$(lctl get_param -n mdc.$FSNAME-MDT$mdtidx*.kbytesavail)
3766         numfree=$((blkfree / 4))
3767         [ $numfree -lt $NUMTEST ] && NUMTEST=$(($numfree - 50)) &&
3768                 echo "reduced count to $NUMTEST due to blocks"
3769
3770         createmany -d $BASE/d $NUMTEST && echo $NUMTEST > $BASE/fnum ||
3771                 echo "failed" > $BASE/fnum
3772 }
3773 run_test 51b "exceed 64k subdirectory nlink limit"
3774
3775 test_51ba() { # LU-993
3776         local BASE=$DIR/$tdir
3777         # unlink all but 100 subdirectories, then check it still works
3778         local LEFT=100
3779         [ -f $BASE/fnum ] && local NUMPREV=$(cat $BASE/fnum) && rm $BASE/fnum
3780
3781         [ "$NUMPREV" != "failed" ] && NUMTEST=$NUMPREV
3782         local DELETE=$((NUMTEST - LEFT))
3783
3784         # continue on to run this test even if 51b didn't finish,
3785         # just to delete the many subdirectories created.
3786         [ ! -d "${BASE}/d1" ] && skip "test_51b() not run" && return 0
3787
3788         # for ldiskfs the nlink count should be 1, but this is OSD specific
3789         # and so this is listed for informational purposes only
3790         echo "nlink before: $(stat -c %h $BASE), created before: $NUMTEST"
3791         unlinkmany -d $BASE/d $DELETE
3792         RC=$?
3793
3794         if [ $RC -ne 0 ]; then
3795                 if [ "$NUMPREV" == "failed" ]; then
3796                         skip "previous setup failed"
3797                         return 0
3798                 else
3799                         error "unlink of first $DELETE subdirs failed"
3800                         return $RC
3801                 fi
3802         fi
3803
3804         echo "nlink between: $(stat -c %h $BASE)"
3805         # trim the first line of ls output
3806         local FOUND=$(($(ls -l ${BASE} | wc -l) - 1))
3807         [ $FOUND -ne $LEFT ] &&
3808                 error "can't find subdirs: found only $FOUND/$LEFT"
3809
3810         unlinkmany -d $BASE/d $DELETE $LEFT ||
3811                 error "unlink of second $LEFT subdirs failed"
3812         # regardless of whether the backing filesystem tracks nlink accurately
3813         # or not, the nlink count shouldn't be more than "." and ".." here
3814         local AFTER=$(stat -c %h $BASE)
3815         [ $AFTER -gt 2 ] && error "nlink after: $AFTER > 2" ||
3816                 echo "nlink after: $AFTER"
3817 }
3818 run_test 51ba "verify nlink for many subdirectory cleanup"
3819
3820 test_51d() {
3821         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3822         [  "$OSTCOUNT" -lt "3" ] && skip_env "skipping test with few OSTs" && return
3823         test_mkdir -p $DIR/$tdir
3824         createmany -o $DIR/$tdir/t- 1000
3825         $GETSTRIPE $DIR/$tdir > $TMP/files
3826         for N in `seq 0 $((OSTCOUNT - 1))`; do
3827             OBJS[$N]=`awk -vobjs=0 '($1 == '$N') { objs += 1 } END { print objs;}' $TMP/files`
3828             OBJS0[$N]=`grep -A 1 idx $TMP/files | awk -vobjs=0 '($1 == '$N') { objs += 1 } END { print objs;}'`
3829             log "OST$N has ${OBJS[$N]} objects, ${OBJS0[$N]} are index 0"
3830         done
3831         unlinkmany $DIR/$tdir/t- 1000
3832
3833         NLAST=0
3834         for N in `seq 1 $((OSTCOUNT - 1))`; do
3835             [ ${OBJS[$N]} -lt $((${OBJS[$NLAST]} - 20)) ] && \
3836                 error "OST $N has less objects vs OST $NLAST (${OBJS[$N]} < ${OBJS[$NLAST]}"
3837             [ ${OBJS[$N]} -gt $((${OBJS[$NLAST]} + 20)) ] && \
3838                 error "OST $N has less objects vs OST $NLAST (${OBJS[$N]} < ${OBJS[$NLAST]}"
3839
3840             [ ${OBJS0[$N]} -lt $((${OBJS0[$NLAST]} - 20)) ] && \
3841                 error "OST $N has less #0 objects vs OST $NLAST (${OBJS0[$N]} < ${OBJS0[$NLAST]}"
3842             [ ${OBJS0[$N]} -gt $((${OBJS0[$NLAST]} + 20)) ] && \
3843                 error "OST $N has less #0 objects vs OST $NLAST (${OBJS0[$N]} < ${OBJS0[$NLAST]}"
3844             NLAST=$N
3845         done
3846 }
3847 run_test 51d "check object distribution ===================="
3848
3849 test_52a() {
3850         [ -f $DIR/$tdir/foo ] && chattr -a $DIR/$tdir/foo
3851         test_mkdir -p $DIR/$tdir
3852         touch $DIR/$tdir/foo
3853         chattr +a $DIR/$tdir/foo || error "chattr +a failed"
3854         echo bar >> $DIR/$tdir/foo || error "append bar failed"
3855         cp /etc/hosts $DIR/$tdir/foo && error "cp worked"
3856         rm -f $DIR/$tdir/foo 2>/dev/null && error "rm worked"
3857         link $DIR/$tdir/foo $DIR/$tdir/foo_link 2>/dev/null &&
3858                                         error "link worked"
3859         echo foo >> $DIR/$tdir/foo || error "append foo failed"
3860         mrename $DIR/$tdir/foo $DIR/$tdir/foo_ren && error "rename worked"
3861         lsattr $DIR/$tdir/foo | egrep -q "^-+a[-e]+ $DIR/$tdir/foo" ||
3862                                                      error "lsattr"
3863         chattr -a $DIR/$tdir/foo || error "chattr -a failed"
3864         cp -r $DIR/$tdir /tmp/
3865         rm -fr $DIR/$tdir || error "cleanup rm failed"
3866 }
3867 run_test 52a "append-only flag test (should return errors) ====="
3868
3869 test_52b() {
3870         [ -f $DIR/$tdir/foo ] && chattr -i $DIR/$tdir/foo
3871         test_mkdir -p $DIR/$tdir
3872         touch $DIR/$tdir/foo
3873         chattr +i $DIR/$tdir/foo || error "chattr +i failed"
3874         cat test > $DIR/$tdir/foo && error "cat test worked"
3875         cp /etc/hosts $DIR/$tdir/foo && error "cp worked"
3876         rm -f $DIR/$tdir/foo 2>/dev/null && error "rm worked"
3877         link $DIR/$tdir/foo $DIR/$tdir/foo_link 2>/dev/null &&
3878                                         error "link worked"
3879         echo foo >> $DIR/$tdir/foo && error "echo worked"
3880         mrename $DIR/$tdir/foo $DIR/$tdir/foo_ren && error "rename worked"
3881         [ -f $DIR/$tdir/foo ] || error "$tdir/foo is not a file"
3882         [ -f $DIR/$tdir/foo_ren ] && error "$tdir/foo_ren is not a file"
3883         lsattr $DIR/$tdir/foo | egrep -q "^-+i[-e]+ $DIR/$tdir/foo" ||
3884                                                         error "lsattr"
3885         chattr -i $DIR/$tdir/foo || error "chattr failed"
3886
3887         rm -fr $DIR/$tdir || error "unable to remove $DIR/$tdir"
3888 }
3889 run_test 52b "immutable flag test (should return errors) ======="
3890
3891 test_53() {
3892         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3893         remote_mds_nodsh && skip "remote MDS with nodsh" && return
3894         remote_ost_nodsh && skip "remote OST with nodsh" && return
3895
3896         local param
3897         local param_seq
3898         local ostname
3899         local mds_last
3900         local mds_last_seq
3901         local ost_last
3902         local ost_last_seq
3903         local ost_last_id
3904         local ostnum
3905         local node
3906         local found=0
3907
3908         # only test MDT0000
3909         local mdtosc=$(get_mdtosc_proc_path $SINGLEMDS)
3910         for value in $(do_facet $SINGLEMDS lctl get_param osc.$mdtosc.prealloc_last_id) ; do
3911                 param=$(echo ${value[0]} | cut -d "=" -f1)
3912                 ostname=$(echo $param | cut -d "." -f2 | cut -d - -f 1-2)
3913                 param_seq=$(echo ${param} |
3914                             sed -e s/prealloc_last_id/prealloc_last_seq/g)
3915                 mds_last_seq=$(do_facet $SINGLEMDS lctl get_param -n $param_seq)
3916                 mds_last=$(do_facet $SINGLEMDS lctl get_param -n $param)
3917
3918                 ostnum=$(index_from_ostuuid ${ostname}_UUID)
3919                 node=$(facet_active_host ost$((ostnum+1)))
3920                 param="obdfilter.$ostname.last_id"
3921                 for ost_last in $(do_node $node lctl get_param -n $param) ; do
3922                         echo "$ostname.last_id=$ost_last ;MDS.last_id=$mds_last"
3923                         ost_last_id=$(echo $ost_last | awk -F':' '{print $2}' |
3924                                       sed -e "s/^0x//g")
3925                         ost_last_seq=$(echo $ost_last | awk -F':' '{print $1}')
3926                         if [ $ost_last_seq = $mds_last_seq ]; then
3927                                 if [ $ost_last_id != $mds_last ]; then
3928                                         error "$ost_last != $mds_last_id"
3929                                 else
3930                                         found=1
3931                                         break
3932                                 fi
3933                         fi
3934                 done
3935         done
3936         [ $found = 0 ] && error "can not match last_seq/last_id for $mdtosc"
3937         return 0
3938 }
3939 run_test 53 "verify that MDS and OSTs agree on pre-creation ===="
3940
3941 test_54a() {
3942         $SOCKETSERVER $DIR/socket ||
3943                 error "$SOCKETSERVER $DIR/socket failed: $?"
3944         $SOCKETCLIENT $DIR/socket ||
3945                 error "$SOCKETCLIENT $DIR/socket failed: $?"
3946         $MUNLINK $DIR/socket || error "$MUNLINK $DIR/socket failed: $?"
3947 }
3948 run_test 54a "unix domain socket test =========================="
3949
3950 test_54b() {
3951         f="$DIR/f54b"
3952         mknod $f c 1 3
3953         chmod 0666 $f
3954         dd if=/dev/zero of=$f bs=$(page_size) count=1
3955 }
3956 run_test 54b "char device works in lustre ======================"
3957
3958 find_loop_dev() {
3959         [ -b /dev/loop/0 ] && LOOPBASE=/dev/loop/
3960         [ -b /dev/loop0 ] && LOOPBASE=/dev/loop
3961         [ -z "$LOOPBASE" ] && echo "/dev/loop/0 and /dev/loop0 gone?" && return
3962
3963         for i in $(seq 3 7); do
3964                 losetup $LOOPBASE$i > /dev/null 2>&1 && continue
3965                 LOOPDEV=$LOOPBASE$i
3966                 LOOPNUM=$i
3967                 break
3968         done
3969 }
3970
3971 test_54c() {
3972         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3973         tfile="$DIR/f54c"
3974         tdir="$DIR/d54c"
3975         loopdev="$DIR/loop54c"
3976
3977         find_loop_dev
3978         [ -z "$LOOPNUM" ] && echo "couldn't find empty loop device" && return
3979         mknod $loopdev b 7 $LOOPNUM
3980         echo "make a loop file system with $tfile on $loopdev ($LOOPNUM)..."
3981         dd if=/dev/zero of=$tfile bs=`page_size` seek=1024 count=1 > /dev/null
3982         losetup $loopdev $tfile || error "can't set up $loopdev for $tfile"
3983         mkfs.ext2 $loopdev || error "mke2fs on $loopdev"
3984         test_mkdir -p $tdir
3985         mount -t ext2 $loopdev $tdir || error "error mounting $loopdev on $tdir"
3986         dd if=/dev/zero of=$tdir/tmp bs=`page_size` count=30 || error "dd write"
3987         df $tdir
3988         dd if=$tdir/tmp of=/dev/zero bs=`page_size` count=30 || error "dd read"
3989         $UMOUNT -d $tdir
3990         losetup -d $loopdev
3991         rm $loopdev
3992 }
3993 run_test 54c "block device works in lustre ====================="
3994
3995 test_54d() {
3996         f="$DIR/f54d"
3997         string="aaaaaa"
3998         mknod $f p
3999         [ "$string" = $(echo $string > $f | cat $f) ] || error "$f != $string"
4000 }
4001 run_test 54d "fifo device works in lustre ======================"
4002
4003 test_54e() {
4004         check_kernel_version 46 || return 0
4005         f="$DIR/f54e"
4006         string="aaaaaa"
4007         cp -aL /dev/console $f
4008         echo $string > $f || error "echo $string to $f failed"
4009 }
4010 run_test 54e "console/tty device works in lustre ======================"
4011
4012 #The test_55 used to be iopen test and it was removed by bz#24037.
4013 #run_test 55 "check iopen_connect_dentry() ======================"
4014
4015 test_56a() {    # was test_56
4016         rm -rf $DIR/$tdir
4017         $SETSTRIPE -d $DIR
4018         test_mkdir -p $DIR/$tdir/dir
4019         NUMFILES=3
4020         NUMFILESx2=$(($NUMFILES * 2))
4021         for i in `seq 1 $NUMFILES` ; do
4022                 touch $DIR/$tdir/file$i
4023                 touch $DIR/$tdir/dir/file$i
4024         done
4025
4026         # test lfs getstripe with --recursive
4027         FILENUM=`$GETSTRIPE --recursive $DIR/$tdir | grep -c obdidx`
4028         [ $FILENUM -eq $NUMFILESx2 ] ||
4029                 error "$GETSTRIPE --recursive: found $FILENUM, not $NUMFILESx2"
4030         FILENUM=`$GETSTRIPE $DIR/$tdir | grep -c obdidx`
4031         [ $FILENUM -eq $NUMFILES ] ||
4032                 error "$GETSTRIPE $DIR/$tdir: found $FILENUM, not $NUMFILES"
4033         echo "$GETSTRIPE --recursive passed."
4034
4035         # test lfs getstripe with file instead of dir
4036         FILENUM=`$GETSTRIPE $DIR/$tdir/file1 | grep -c obdidx`
4037         [ $FILENUM  -eq 1 ] || error \
4038                  "$GETSTRIPE $DIR/$tdir/file1: found $FILENUM, not 1"
4039         echo "$GETSTRIPE file1 passed."
4040
4041         #test lfs getstripe with --verbose
4042         [ `$GETSTRIPE --verbose $DIR/$tdir |
4043                         grep -c lmm_magic` -eq $NUMFILES ] ||
4044                 error "$GETSTRIPE --verbose $DIR/$tdir: want $NUMFILES"
4045         [ `$GETSTRIPE $DIR/$tdir | grep -c lmm_magic` -eq 0 ] ||
4046             error "$GETSTRIPE $DIR/$tdir: showed lmm_magic"
4047         echo "$GETSTRIPE --verbose passed."
4048
4049         #test lfs getstripe with --obd
4050         $GETSTRIPE --obd wrong_uuid $DIR/$tdir 2>&1 |
4051                                         grep -q "unknown obduuid" ||
4052                 error "$GETSTRIPE --obd wrong_uuid should return error message"
4053
4054         [  "$OSTCOUNT" -lt 2 ] &&
4055                 skip_env "skipping other $GETSTRIPE --obd test" && return
4056
4057         OSTIDX=1
4058         OBDUUID=$(ostuuid_from_index $OSTIDX)
4059         FILENUM=`$GETSTRIPE -ir $DIR/$tdir | grep -x $OSTIDX | wc -l`
4060         FOUND=`$GETSTRIPE -r --obd $OBDUUID $DIR/$tdir | grep obdidx | wc -l`
4061         [ $FOUND -eq $FILENUM ] ||
4062                 error "$GETSTRIPE --obd wrong: found $FOUND, expected $FILENUM"
4063         [ `$GETSTRIPE -r -v --obd $OBDUUID $DIR/$tdir |
4064                 sed '/^[         ]*'${OSTIDX}'[  ]/d' |
4065                 sed -n '/^[      ]*[0-9][0-9]*[  ]/p' | wc -l` -eq 0 ] ||
4066                 error "$GETSTRIPE --obd: should not show file on other obd"
4067         echo "$GETSTRIPE --obd passed"
4068 }
4069 run_test 56a "check $GETSTRIPE"
4070
4071 NUMFILES=3
4072 NUMDIRS=3
4073 setup_56() {
4074         local LOCAL_NUMFILES="$1"
4075         local LOCAL_NUMDIRS="$2"
4076         local MKDIR_PARAMS="$3"
4077
4078         if [ ! -d "$TDIR" ] ; then
4079                 test_mkdir -p $TDIR
4080                 [ "$MKDIR_PARAMS" ] && $SETSTRIPE $MKDIR_PARAMS $TDIR
4081                 for i in `seq 1 $LOCAL_NUMFILES` ; do
4082                         touch $TDIR/file$i
4083                 done
4084                 for i in `seq 1 $LOCAL_NUMDIRS` ; do
4085                         test_mkdir $TDIR/dir$i
4086                         for j in `seq 1 $LOCAL_NUMFILES` ; do
4087                                 touch $TDIR/dir$i/file$j
4088                         done
4089                 done
4090         fi
4091 }
4092
4093 setup_56_special() {
4094         LOCAL_NUMFILES=$1
4095         LOCAL_NUMDIRS=$2
4096         setup_56 $1 $2
4097         if [ ! -e "$TDIR/loop1b" ] ; then
4098                 for i in `seq 1 $LOCAL_NUMFILES` ; do
4099                         mknod $TDIR/loop${i}b b 7 $i
4100                         mknod $TDIR/null${i}c c 1 3
4101                         ln -s $TDIR/file1 $TDIR/link${i}l
4102                 done
4103                 for i in `seq 1 $LOCAL_NUMDIRS` ; do
4104                         mknod $TDIR/dir$i/loop${i}b b 7 $i
4105                         mknod $TDIR/dir$i/null${i}c c 1 3
4106                         ln -s $TDIR/dir$i/file1 $TDIR/dir$i/link${i}l
4107                 done
4108         fi
4109 }
4110
4111 test_56g() {
4112         $SETSTRIPE -d $DIR
4113
4114         TDIR=$DIR/${tdir}g
4115         setup_56 $NUMFILES $NUMDIRS
4116
4117         EXPECTED=$(($NUMDIRS + 2))
4118         # test lfs find with -name
4119         for i in $(seq 1 $NUMFILES) ; do
4120                 NUMS=$($LFIND -name "*$i" $TDIR | wc -l)
4121                 [ $NUMS -eq $EXPECTED ] ||
4122                         error "lfs find -name \"*$i\" $TDIR wrong: "\
4123                               "found $NUMS, expected $EXPECTED"
4124         done
4125 }
4126 run_test 56g "check lfs find -name ============================="
4127
4128 test_56h() {
4129         $SETSTRIPE -d $DIR
4130
4131         TDIR=$DIR/${tdir}g
4132         setup_56 $NUMFILES $NUMDIRS
4133
4134         EXPECTED=$(((NUMDIRS + 1) * (NUMFILES - 1) + NUMFILES))
4135         # test lfs find with ! -name
4136         for i in $(seq 1 $NUMFILES) ; do
4137                 NUMS=$($LFIND ! -name "*$i" $TDIR | wc -l)
4138                 [ $NUMS -eq $EXPECTED ] ||
4139                         error "lfs find ! -name \"*$i\" $TDIR wrong: "\
4140                               "found $NUMS, expected $EXPECTED"
4141         done
4142 }
4143 run_test 56h "check lfs find ! -name ============================="
4144
4145 test_56i() {
4146        tdir=${tdir}i
4147        test_mkdir -p $DIR/$tdir
4148        UUID=$(ostuuid_from_index 0 $DIR/$tdir)
4149        CMD="$LFIND -ost $UUID $DIR/$tdir"
4150        OUT=$($CMD)
4151        [ -z "$OUT" ] || error "\"$CMD\" returned directory '$OUT'"
4152 }
4153 run_test 56i "check 'lfs find -ost UUID' skips directories ======="
4154
4155 test_56j() {
4156         TDIR=$DIR/${tdir}g
4157         setup_56_special $NUMFILES $NUMDIRS
4158
4159         EXPECTED=$((NUMDIRS + 1))
4160         CMD="$LFIND -type d $TDIR"
4161         NUMS=$($CMD | wc -l)
4162         [ $NUMS -eq $EXPECTED ] ||
4163                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4164 }
4165 run_test 56j "check lfs find -type d ============================="
4166
4167 test_56k() {
4168         TDIR=$DIR/${tdir}g
4169         setup_56_special $NUMFILES $NUMDIRS
4170
4171         EXPECTED=$(((NUMDIRS + 1) * NUMFILES))
4172         CMD="$LFIND -type f $TDIR"
4173         NUMS=$($CMD | wc -l)
4174         [ $NUMS -eq $EXPECTED ] ||
4175                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4176 }
4177 run_test 56k "check lfs find -type f ============================="
4178
4179 test_56l() {
4180         TDIR=$DIR/${tdir}g
4181         setup_56_special $NUMFILES $NUMDIRS
4182
4183         EXPECTED=$((NUMDIRS + NUMFILES))
4184         CMD="$LFIND -type b $TDIR"
4185         NUMS=$($CMD | wc -l)
4186         [ $NUMS -eq $EXPECTED ] ||
4187                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4188 }
4189 run_test 56l "check lfs find -type b ============================="
4190
4191 test_56m() {
4192         TDIR=$DIR/${tdir}g
4193         setup_56_special $NUMFILES $NUMDIRS
4194
4195         EXPECTED=$((NUMDIRS + NUMFILES))
4196         CMD="$LFIND -type c $TDIR"
4197         NUMS=$($CMD | wc -l)
4198         [ $NUMS -eq $EXPECTED ] ||
4199                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4200 }
4201 run_test 56m "check lfs find -type c ============================="
4202
4203 test_56n() {
4204         TDIR=$DIR/${tdir}g
4205         setup_56_special $NUMFILES $NUMDIRS
4206
4207         EXPECTED=$((NUMDIRS + NUMFILES))
4208         CMD="$LFIND -type l $TDIR"
4209         NUMS=$($CMD | wc -l)
4210         [ $NUMS -eq $EXPECTED ] ||
4211                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4212 }
4213 run_test 56n "check lfs find -type l ============================="
4214
4215 test_56o() {
4216         TDIR=$DIR/${tdir}o
4217         setup_56 $NUMFILES $NUMDIRS
4218
4219         utime $TDIR/file1 > /dev/null || error "utime (1)"
4220         utime $TDIR/file2 > /dev/null || error "utime (2)"
4221         utime $TDIR/dir1 > /dev/null || error "utime (3)"
4222         utime $TDIR/dir2 > /dev/null || error "utime (4)"
4223         utime $TDIR/dir1/file1 > /dev/null || error "utime (5)"
4224         dd if=/dev/zero count=1 >> $TDIR/dir1/file1 && sync
4225
4226         EXPECTED=4
4227         NUMS=`$LFIND -mtime +0 $TDIR | wc -l`
4228         [ $NUMS -eq $EXPECTED ] || \
4229                 error "lfs find -mtime +0 $TDIR wrong: found $NUMS, expected $EXPECTED"
4230
4231         EXPECTED=12
4232         CMD="$LFIND -mtime 0 $TDIR"
4233         NUMS=$($CMD | wc -l)
4234         [ $NUMS -eq $EXPECTED ] ||
4235                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4236 }
4237 run_test 56o "check lfs find -mtime for old files =========================="
4238
4239 test_56p() {
4240         [ $RUNAS_ID -eq $UID ] &&
4241                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
4242
4243         TDIR=$DIR/${tdir}p
4244         setup_56 $NUMFILES $NUMDIRS
4245
4246         chown $RUNAS_ID $TDIR/file* || error "chown $DIR/${tdir}g/file$i failed"
4247         EXPECTED=$NUMFILES
4248         CMD="$LFIND -uid $RUNAS_ID $TDIR"
4249         NUMS=$($CMD | wc -l)
4250         [ $NUMS -eq $EXPECTED ] || \
4251                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4252
4253         EXPECTED=$(((NUMFILES + 1) * NUMDIRS + 1))
4254         CMD="$LFIND ! -uid $RUNAS_ID $TDIR"
4255         NUMS=$($CMD | wc -l)
4256         [ $NUMS -eq $EXPECTED ] || \
4257                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4258 }
4259 run_test 56p "check lfs find -uid and ! -uid ==============================="
4260
4261 test_56q() {
4262         [ $RUNAS_ID -eq $UID ] &&
4263                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
4264
4265         TDIR=$DIR/${tdir}q
4266         setup_56 $NUMFILES $NUMDIRS
4267
4268         chgrp $RUNAS_GID $TDIR/file* || error "chown $TDIR/file$i failed"
4269
4270         EXPECTED=$NUMFILES
4271         CMD="$LFIND -gid $RUNAS_GID $TDIR"
4272         NUMS=$($CMD | wc -l)
4273         [ $NUMS -eq $EXPECTED ] ||
4274                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4275
4276         EXPECTED=$(( ($NUMFILES+1) * $NUMDIRS + 1))
4277         CMD="$LFIND ! -gid $RUNAS_GID $TDIR"
4278         NUMS=$($CMD | wc -l)
4279         [ $NUMS -eq $EXPECTED ] ||
4280                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4281 }
4282 run_test 56q "check lfs find -gid and ! -gid ==============================="
4283
4284 test_56r() {
4285         TDIR=$DIR/${tdir}r
4286         setup_56 $NUMFILES $NUMDIRS
4287
4288         EXPECTED=12
4289         CMD="$LFIND -size 0 -type f $TDIR"
4290         NUMS=$($CMD | wc -l)
4291         [ $NUMS -eq $EXPECTED ] ||
4292                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4293         EXPECTED=0
4294         CMD="$LFIND ! -size 0 -type f $TDIR"
4295         NUMS=$($CMD | wc -l)
4296         [ $NUMS -eq $EXPECTED ] ||
4297                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4298         echo "test" > $TDIR/$tfile
4299         echo "test2" > $TDIR/$tfile.2 && sync
4300         EXPECTED=1
4301         CMD="$LFIND -size 5 -type f $TDIR"
4302         NUMS=$($CMD | wc -l)
4303         [ $NUMS -eq $EXPECTED ] ||
4304                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4305         EXPECTED=1
4306         CMD="$LFIND -size +5 -type f $TDIR"
4307         NUMS=$($CMD | wc -l)
4308         [ $NUMS -eq $EXPECTED ] ||
4309                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4310         EXPECTED=2
4311         CMD="$LFIND -size +0 -type f $TDIR"
4312         NUMS=$($CMD | wc -l)
4313         [ $NUMS -eq $EXPECTED ] ||
4314                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4315         EXPECTED=2
4316         CMD="$LFIND ! -size -5 -type f $TDIR"
4317         NUMS=$($CMD | wc -l)
4318         [ $NUMS -eq $EXPECTED ] ||
4319                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4320         EXPECTED=12
4321         CMD="$LFIND -size -5 -type f $TDIR"
4322         NUMS=$($CMD | wc -l)
4323         [ $NUMS -eq $EXPECTED ] ||
4324                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4325 }
4326 run_test 56r "check lfs find -size works =========================="
4327
4328 test_56s() { # LU-611
4329         TDIR=$DIR/${tdir}s
4330         setup_56 $NUMFILES $NUMDIRS "-c $OSTCOUNT"
4331
4332         if [ $OSTCOUNT -gt 1 ]; then
4333                 $SETSTRIPE -c 1 $TDIR/$tfile.{0,1,2,3}
4334                 ONESTRIPE=4
4335                 EXTRA=4
4336         else
4337                 ONESTRIPE=$(((NUMDIRS + 1) * NUMFILES))
4338                 EXTRA=0
4339         fi
4340
4341         EXPECTED=$(((NUMDIRS + 1) * NUMFILES))
4342         CMD="$LFIND -stripe-count $OSTCOUNT -type f $TDIR"
4343         NUMS=$($CMD | wc -l)
4344         [ $NUMS -eq $EXPECTED ] ||
4345                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4346
4347         EXPECTED=$(((NUMDIRS + 1) * NUMFILES + EXTRA))
4348         CMD="$LFIND -stripe-count +0 -type f $TDIR"
4349         NUMS=$($CMD | wc -l)
4350         [ $NUMS -eq $EXPECTED ] ||
4351                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4352
4353         EXPECTED=$ONESTRIPE
4354         CMD="$LFIND -stripe-count 1 -type f $TDIR"
4355         NUMS=$($CMD | wc -l)
4356         [ $NUMS -eq $EXPECTED ] ||
4357                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4358
4359         CMD="$LFIND -stripe-count -2 -type f $TDIR"
4360         NUMS=$($CMD | wc -l)
4361         [ $NUMS -eq $EXPECTED ] ||
4362                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4363
4364         EXPECTED=0
4365         CMD="$LFIND -stripe-count $((OSTCOUNT + 1)) -type f $TDIR"
4366         NUMS=$($CMD | wc -l)
4367         [ $NUMS -eq $EXPECTED ] ||
4368                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4369 }
4370 run_test 56s "check lfs find -stripe-count works"
4371
4372 test_56t() { # LU-611
4373         TDIR=$DIR/${tdir}t
4374         setup_56 $NUMFILES $NUMDIRS "-s 512k"
4375
4376         $SETSTRIPE -S 256k $TDIR/$tfile.{0,1,2,3}
4377
4378         EXPECTED=$(((NUMDIRS + 1) * NUMFILES))
4379         CMD="$LFIND -stripe-size 512k -type f $TDIR"
4380         NUMS=$($CMD | wc -l)
4381         [ $NUMS -eq $EXPECTED ] ||
4382                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4383
4384         CMD="$LFIND -stripe-size +320k -type f $TDIR"
4385         NUMS=$($CMD | wc -l)
4386         [ $NUMS -eq $EXPECTED ] ||
4387                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4388
4389         EXPECTED=$(((NUMDIRS + 1) * NUMFILES + 4))
4390         CMD="$LFIND -stripe-size +200k -type f $TDIR"
4391         NUMS=$($CMD | wc -l)
4392         [ $NUMS -eq $EXPECTED ] ||
4393                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4394
4395         CMD="$LFIND -stripe-size -640k -type f $TDIR"
4396         NUMS=$($CMD | wc -l)
4397         [ $NUMS -eq $EXPECTED ] ||
4398                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4399
4400         EXPECTED=4
4401         CMD="$LFIND -stripe-size 256k -type f $TDIR"
4402         NUMS=$($CMD | wc -l)
4403         [ $NUMS -eq $EXPECTED ] ||
4404                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4405
4406         CMD="$LFIND -stripe-size -320k -type f $TDIR"
4407         NUMS=$($CMD | wc -l)
4408         [ $NUMS -eq $EXPECTED ] ||
4409                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4410
4411         EXPECTED=0
4412         CMD="$LFIND -stripe-size 1024k -type f $TDIR"
4413         NUMS=$($CMD | wc -l)
4414         [ $NUMS -eq $EXPECTED ] ||
4415                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4416 }
4417 run_test 56t "check lfs find -stripe-size works"
4418
4419 test_56u() { # LU-611
4420         TDIR=$DIR/${tdir}u
4421         setup_56 $NUMFILES $NUMDIRS "-i 0"
4422
4423         if [ $OSTCOUNT -gt 1 ]; then
4424                 $SETSTRIPE -i 1 $TDIR/$tfile.{0,1,2,3}
4425                 ONESTRIPE=4
4426         else
4427                 ONESTRIPE=0
4428         fi
4429
4430         EXPECTED=$(((NUMDIRS + 1) * NUMFILES))
4431         CMD="$LFIND -stripe-index 0 -type f $TDIR"
4432         NUMS=$($CMD | wc -l)
4433         [ $NUMS -eq $EXPECTED ] ||
4434                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4435
4436         EXPECTED=$ONESTRIPE
4437         CMD="$LFIND -stripe-index 1 -type f $TDIR"
4438         NUMS=$($CMD | wc -l)
4439         [ $NUMS -eq $EXPECTED ] ||
4440                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4441
4442         CMD="$LFIND ! -stripe-index 0 -type f $TDIR"
4443         NUMS=$($CMD | wc -l)
4444         [ $NUMS -eq $EXPECTED ] ||
4445                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4446
4447         EXPECTED=0
4448         # This should produce an error and not return any files
4449         CMD="$LFIND -stripe-index $OSTCOUNT -type f $TDIR"
4450         NUMS=$($CMD 2>/dev/null | wc -l)
4451         [ $NUMS -eq $EXPECTED ] ||
4452                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4453
4454         if [ $OSTCOUNT -gt 1 ]; then
4455                 EXPECTED=$(((NUMDIRS + 1) * NUMFILES + ONESTRIPE))
4456                 CMD="$LFIND -stripe-index 0,1 -type f $TDIR"
4457                 NUMS=$($CMD | wc -l)
4458                 [ $NUMS -eq $EXPECTED ] ||
4459                         error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4460         fi
4461 }
4462 run_test 56u "check lfs find -stripe-index works"
4463
4464 test_56v() {
4465     local MDT_IDX=0
4466
4467     TDIR=$DIR/${tdir}v
4468     rm -rf $TDIR
4469     setup_56 $NUMFILES $NUMDIRS
4470
4471     UUID=$(mdtuuid_from_index $MDT_IDX $TDIR)
4472     [ -z "$UUID" ] && error "mdtuuid_from_index cannot find MDT index $MDT_IDX"
4473
4474     for file in $($LFIND -mdt $UUID $TDIR); do
4475         file_mdt_idx=$($GETSTRIPE -M $file)
4476         [ $file_mdt_idx -eq $MDT_IDX ] ||
4477             error "'lfind -mdt $UUID' != 'getstripe -M' ($file_mdt_idx)"
4478     done
4479 }
4480 run_test 56v "check 'lfs find -mdt match with lfs getstripe -M' ======="
4481
4482 # Get and check the actual stripe count of one file.
4483 # Usage: check_stripe_count <file> <expected_stripe_count>
4484 check_stripe_count() {
4485     local file=$1
4486     local expected=$2
4487     local actual
4488
4489     [[ -z "$file" || -z "$expected" ]] &&
4490         error "check_stripe_count: invalid argument!"
4491
4492     local cmd="$GETSTRIPE -c $file"
4493     actual=$($cmd) || error "$cmd failed"
4494     actual=${actual%% *}
4495
4496     if [[ $actual -ne $expected ]]; then
4497         [[ $expected -eq -1 ]] ||
4498             error "$cmd wrong: found $actual, expected $expected"
4499         [[ $actual -eq $OSTCOUNT ]] ||
4500             error "$cmd wrong: found $actual, expected $OSTCOUNT"
4501     fi
4502 }
4503
4504 test_56w() {
4505         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4506         TDIR=$DIR/${tdir}w
4507
4508     rm -rf $TDIR || error "remove $TDIR failed"
4509     setup_56 $NUMFILES $NUMDIRS "-c $OSTCOUNT"
4510
4511     local stripe_size
4512     stripe_size=$($GETSTRIPE -S -d $TDIR) ||
4513         error "$GETSTRIPE -S -d $TDIR failed"
4514     stripe_size=${stripe_size%% *}
4515
4516     local file_size=$((stripe_size * OSTCOUNT))
4517     local file_num=$((NUMDIRS * NUMFILES + NUMFILES))
4518     local required_space=$((file_num * file_size))
4519     local free_space=$($LCTL get_param -n lov.$LOVNAME.kbytesavail)
4520     [[ $free_space -le $((required_space / 1024)) ]] &&
4521         skip_env "need at least $required_space bytes free space," \
4522                  "have $free_space kbytes" && return
4523
4524     local dd_bs=65536
4525     local dd_count=$((file_size / dd_bs))
4526
4527     # write data into the files
4528     local i
4529     local j
4530     local file
4531     for i in $(seq 1 $NUMFILES); do
4532         file=$TDIR/file$i
4533         yes | dd bs=$dd_bs count=$dd_count of=$file >/dev/null 2>&1 ||
4534             error "write data into $file failed"
4535     done
4536     for i in $(seq 1 $NUMDIRS); do
4537         for j in $(seq 1 $NUMFILES); do
4538             file=$TDIR/dir$i/file$j
4539             yes | dd bs=$dd_bs count=$dd_count of=$file \
4540                 >/dev/null 2>&1 ||
4541                 error "write data into $file failed"
4542         done
4543     done
4544
4545     local expected=-1
4546     [[ $OSTCOUNT -gt 1 ]] && expected=$((OSTCOUNT - 1))
4547
4548     # lfs_migrate file
4549     local cmd="$LFS_MIGRATE -y -c $expected $TDIR/file1"
4550     echo "$cmd"
4551     eval $cmd || error "$cmd failed"
4552
4553     check_stripe_count $TDIR/file1 $expected
4554
4555     # lfs_migrate dir
4556     cmd="$LFS_MIGRATE -y -c $expected $TDIR/dir1"
4557     echo "$cmd"
4558     eval $cmd || error "$cmd failed"
4559
4560     for j in $(seq 1 $NUMFILES); do
4561         check_stripe_count $TDIR/dir1/file$j $expected
4562     done
4563
4564     # lfs_migrate works with lfs find
4565     cmd="$LFIND -stripe_count $OSTCOUNT -type f $TDIR |
4566          $LFS_MIGRATE -y -c $expected"
4567     echo "$cmd"
4568     eval $cmd || error "$cmd failed"
4569
4570     for i in $(seq 2 $NUMFILES); do
4571         check_stripe_count $TDIR/file$i $expected
4572     done
4573     for i in $(seq 2 $NUMDIRS); do
4574         for j in $(seq 1 $NUMFILES); do
4575             check_stripe_count $TDIR/dir$i/file$j $expected
4576         done
4577     done
4578 }
4579 run_test 56w "check lfs_migrate -c stripe_count works"
4580
4581 test_56x() {
4582         check_swap_layouts_support && return 0
4583         [ "$OSTCOUNT" -lt "2" ] &&
4584                 skip_env "need 2 OST, skipping test" && return
4585
4586         local dir0=$DIR/$tdir/$testnum
4587         mkdir -p $dir0 || error "creating dir $dir0"
4588
4589         local ref1=/etc/passwd
4590         local file1=$dir0/file1
4591
4592         $SETSTRIPE -c 2 $file1
4593         cp $ref1 $file1
4594         $LFS migrate -c 1 $file1 || error "migrate failed rc = $?"
4595         stripe=$($GETSTRIPE -c $file1)
4596         [[ $stripe == 1 ]] || error "stripe of $file1 is $stripe != 1"
4597         cmp $file1 $ref1 || error "content mismatch $file1 differs from $ref1"
4598
4599         # clean up
4600         rm -f $file1
4601 }
4602 run_test 56x "lfs migration support"
4603
4604 test_56y() {
4605         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.53) ] &&
4606                 skip "No HSM support on MDS of $(get_lustre_version)," \
4607                          "need 2.4.53 at least" && return
4608         local res=""
4609
4610         local dir0=$DIR/$tdir/$testnum
4611         mkdir -p $dir0 || error "creating dir $dir0"
4612         local f1=$dir0/file1
4613         local f2=$dir0/file2
4614
4615         touch $f1 || error "creating std file $f1"
4616         $MULTIOP $f2 H2c || error "creating released file $f2"
4617
4618         # a directory can be raid0, so ask only for files
4619         res=$($LFIND $dir0 -L raid0 -type f | wc -l)
4620         [[ $res == 2 ]] || error "search raid0: found $res files != 2"
4621
4622         res=$($LFIND $dir0 \! -L raid0 -type f | wc -l)
4623         [[ $res == 0 ]] || error "search !raid0: found $res files != 0"
4624
4625         # only files can be released, so no need to force file search
4626         res=$($LFIND $dir0 -L released)
4627         [[ $res == $f2 ]] || error "search released: found $res != $f2"
4628
4629         res=$($LFIND $dir0 \! -L released)
4630         [[ $res == $f1 ]] || error "search !released: found $res != $f1"
4631
4632 }
4633 run_test 56y "lfs find -L raid0|released"
4634
4635 test_57a() {
4636         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4637         # note test will not do anything if MDS is not local
4638         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
4639                 skip "Only applicable to ldiskfs-based MDTs"
4640                 return
4641         fi
4642
4643         remote_mds_nodsh && skip "remote MDS with nodsh" && return
4644         local MNTDEV="osd*.*MDT*.mntdev"
4645         DEV=$(do_facet $SINGLEMDS lctl get_param -n $MNTDEV)
4646         [ -z "$DEV" ] && error "can't access $MNTDEV"
4647         for DEV in $(do_facet $SINGLEMDS lctl get_param -n $MNTDEV); do
4648                 do_facet $SINGLEMDS $DUMPE2FS -h $DEV > $TMP/t57a.dump ||
4649                         error "can't access $DEV"
4650                 DEVISIZE=`awk '/Inode size:/ { print $3 }' $TMP/t57a.dump`
4651                 [ "$DEVISIZE" -gt 128 ] || error "inode size $DEVISIZE"
4652                 rm $TMP/t57a.dump
4653         done
4654 }
4655 run_test 57a "verify MDS filesystem created with large inodes =="
4656
4657 test_57b() {
4658         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4659         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
4660                 skip "Only applicable to ldiskfs-based MDTs"
4661                 return
4662         fi
4663
4664         remote_mds_nodsh && skip "remote MDS with nodsh" && return
4665         local dir=$DIR/d57b
4666
4667         local FILECOUNT=100
4668         local FILE1=$dir/f1
4669         local FILEN=$dir/f$FILECOUNT
4670
4671         rm -rf $dir || error "removing $dir"
4672         test_mkdir -p $dir || error "creating $dir"
4673         local num=$(get_mds_dir $dir)
4674         local mymds=mds$num
4675
4676         echo "mcreating $FILECOUNT files"
4677         createmany -m $dir/f 1 $FILECOUNT || \
4678                 error "creating files in $dir"
4679
4680         # verify that files do not have EAs yet
4681         $GETSTRIPE $FILE1 2>&1 | grep -q "no stripe" || error "$FILE1 has an EA"
4682         $GETSTRIPE $FILEN 2>&1 | grep -q "no stripe" || error "$FILEN has an EA"
4683
4684         sync
4685         sleep 1
4686         df $dir  #make sure we get new statfs data
4687         local MDSFREE=$(do_facet $mymds \
4688                 lctl get_param -n osd*.*MDT000$((num -1)).kbytesfree)
4689         local MDCFREE=$(lctl get_param -n mdc.*MDT000$((num -1))-mdc-*.kbytesfree)
4690         echo "opening files to create objects/EAs"
4691         local FILE
4692         for FILE in `seq -f $dir/f%g 1 $FILECOUNT`; do
4693                 $OPENFILE -f O_RDWR $FILE > /dev/null 2>&1 || error "opening $FILE"
4694         done
4695
4696         # verify that files have EAs now
4697         $GETSTRIPE $FILE1 | grep -q "obdidx" || error "$FILE1 missing EA"
4698         $GETSTRIPE $FILEN | grep -q "obdidx" || error "$FILEN missing EA"
4699
4700         sleep 1  #make sure we get new statfs data
4701         df $dir
4702         local MDSFREE2=$(do_facet $mymds \
4703                 lctl get_param -n osd*.*MDT000$((num -1)).kbytesfree)
4704         local MDCFREE2=$(lctl get_param -n mdc.*MDT000$((num -1))-mdc-*.kbytesfree)
4705         if [ "$MDCFREE2" -lt "$((MDCFREE - 16))" ]; then
4706                 if [ "$MDSFREE" != "$MDSFREE2" ]; then
4707                         error "MDC before $MDCFREE != after $MDCFREE2"
4708                 else
4709                         echo "MDC before $MDCFREE != after $MDCFREE2"
4710                         echo "unable to confirm if MDS has large inodes"
4711                 fi
4712         fi
4713         rm -rf $dir
4714 }
4715 run_test 57b "default LOV EAs are stored inside large inodes ==="
4716
4717 test_58() {
4718         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4719         [ -z "$(which wiretest 2>/dev/null)" ] &&
4720                         skip_env "could not find wiretest" && return
4721         wiretest
4722 }
4723 run_test 58 "verify cross-platform wire constants =============="
4724
4725 test_59() {
4726         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4727         echo "touch 130 files"
4728         createmany -o $DIR/f59- 130
4729         echo "rm 130 files"
4730         unlinkmany $DIR/f59- 130
4731         sync
4732         # wait for commitment of removal
4733         wait_delete_completed
4734 }
4735 run_test 59 "verify cancellation of llog records async ========="
4736
4737 TEST60_HEAD="test_60 run $RANDOM"
4738 test_60a() {
4739         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4740         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
4741         do_facet mgs "! which run-llog.sh &> /dev/null" &&
4742                 skip_env "missing subtest run-llog.sh" && return
4743         log "$TEST60_HEAD - from kernel mode"
4744         do_facet mgs sh run-llog.sh
4745 }
4746 run_test 60a "llog sanity tests run from kernel module =========="
4747
4748 test_60b() { # bug 6411
4749         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4750         dmesg > $DIR/$tfile
4751         LLOG_COUNT=`dmesg | awk "/$TEST60_HEAD/{marker = 1; from_marker = 0;}
4752                                  /llog.test/ {
4753                                          if (marker)
4754                                                  from_marker++
4755                                          from_begin++
4756                                  }
4757                                  END {
4758                                          if (marker)
4759                                                  print from_marker
4760                                          else
4761                                                  print from_begin
4762                                  }"`
4763         [ $LLOG_COUNT -gt 50 ] && error "CDEBUG_LIMIT not limiting messages ($LLOG_COUNT)"|| true
4764 }
4765 run_test 60b "limit repeated messages from CERROR/CWARN ========"
4766
4767 test_60c() {
4768         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4769         echo "create 5000 files"
4770         createmany -o $DIR/f60c- 5000
4771 #define OBD_FAIL_MDS_LLOG_CREATE_FAILED  0x137
4772         lctl set_param fail_loc=0x80000137
4773         unlinkmany $DIR/f60c- 5000
4774         lctl set_param fail_loc=0
4775 }
4776 run_test 60c "unlink file when mds full"
4777
4778 test_60d() {
4779         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4780         SAVEPRINTK=$(lctl get_param -n printk)
4781
4782         # verify "lctl mark" is even working"
4783         MESSAGE="test message ID $RANDOM $$"
4784         $LCTL mark "$MESSAGE" || error "$LCTL mark failed"
4785         dmesg | grep -q "$MESSAGE" || error "didn't find debug marker in log"
4786
4787         lctl set_param printk=0 || error "set lnet.printk failed"
4788         lctl get_param -n printk | grep emerg || error "lnet.printk dropped emerg"
4789         MESSAGE="new test message ID $RANDOM $$"
4790         # Assume here that libcfs_debug_mark_buffer() uses D_WARNING
4791         $LCTL mark "$MESSAGE" || error "$LCTL mark failed"
4792         dmesg | grep -q "$MESSAGE" && error "D_WARNING wasn't masked" || true
4793
4794         lctl set_param -n printk="$SAVEPRINTK"
4795 }
4796 run_test 60d "test printk console message masking"
4797
4798 test_61() {
4799         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4800         f="$DIR/f61"
4801         dd if=/dev/zero of=$f bs=$(page_size) count=1 || error "dd $f failed"
4802         cancel_lru_locks osc
4803         $MULTIOP $f OSMWUc || error "$MULTIOP $f failed"
4804         sync
4805 }
4806 run_test 61 "mmap() writes don't make sync hang ================"
4807
4808 # bug 2330 - insufficient obd_match error checking causes LBUG
4809 test_62() {
4810         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4811         f="$DIR/f62"
4812         echo foo > $f
4813         cancel_lru_locks osc
4814         lctl set_param fail_loc=0x405
4815         cat $f && error "cat succeeded, expect -EIO"
4816         lctl set_param fail_loc=0
4817 }
4818 # This test is now irrelevant (as of bug 10718 inclusion), we no longer
4819 # match every page all of the time.
4820 #run_test 62 "verify obd_match failure doesn't LBUG (should -EIO)"
4821
4822 # bug 2319 - oig_wait() interrupted causes crash because of invalid waitq.
4823 test_63a() {    # was test_63
4824         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4825         MAX_DIRTY_MB=`lctl get_param -n osc.*.max_dirty_mb | head -n 1`
4826         lctl set_param -n osc.*.max_dirty_mb 0
4827         for i in `seq 10` ; do
4828                 dd if=/dev/zero of=$DIR/f63 bs=8k &
4829                 sleep 5
4830                 kill $!
4831                 sleep 1
4832         done
4833
4834         lctl set_param -n osc.*.max_dirty_mb $MAX_DIRTY_MB
4835         rm -f $DIR/f63 || true
4836 }
4837 run_test 63a "Verify oig_wait interruption does not crash ======="
4838
4839 # bug 2248 - async write errors didn't return to application on sync
4840 # bug 3677 - async write errors left page locked
4841 test_63b() {
4842         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4843         debugsave
4844         lctl set_param debug=-1
4845
4846         # ensure we have a grant to do async writes
4847         dd if=/dev/zero of=$DIR/$tfile bs=4k count=1
4848         rm $DIR/$tfile
4849
4850         #define OBD_FAIL_OSC_BRW_PREP_REQ        0x406
4851         lctl set_param fail_loc=0x80000406
4852         $MULTIOP $DIR/$tfile Owy && \
4853                 error "sync didn't return ENOMEM"
4854         sync; sleep 2; sync     # do a real sync this time to flush page
4855         lctl get_param -n llite.*.dump_page_cache | grep locked && \
4856                 error "locked page left in cache after async error" || true
4857         debugrestore
4858 }
4859 run_test 63b "async write errors should be returned to fsync ==="
4860
4861 test_64a () {
4862         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4863         df $DIR
4864         lctl get_param -n osc.*[oO][sS][cC][_-]*.cur* | grep "[0-9]"
4865 }
4866 run_test 64a "verify filter grant calculations (in kernel) ====="
4867
4868 test_64b () {
4869         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4870         sh oos.sh $MOUNT || error "oos.sh failed: $?"
4871 }
4872 run_test 64b "check out-of-space detection on client ==========="
4873
4874 test_64c() {
4875         $LCTL set_param osc.*OST0000-osc-[^mM]*.cur_grant_bytes=0
4876 }
4877 run_test 64c "verify grant shrink ========================------"
4878
4879 # bug 1414 - set/get directories' stripe info
4880 test_65a() {
4881         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4882         test_mkdir -p $DIR/$tdir
4883         touch $DIR/$tdir/f1
4884         $LVERIFY $DIR/$tdir $DIR/$tdir/f1 || error "lverify failed"
4885 }
4886 run_test 65a "directory with no stripe info ===================="
4887
4888 test_65b() {
4889         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4890         test_mkdir -p $DIR/$tdir
4891         $SETSTRIPE -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
4892                                                 error "setstripe"
4893         touch $DIR/$tdir/f2
4894         $LVERIFY $DIR/$tdir $DIR/$tdir/f2 || error "lverify failed"
4895 }
4896 run_test 65b "directory setstripe -S $((STRIPESIZE * 2)) -i 0 -c 1"
4897
4898 test_65c() {
4899         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4900         if [ $OSTCOUNT -gt 1 ]; then
4901                 test_mkdir -p $DIR/$tdir
4902                 $SETSTRIPE -S $(($STRIPESIZE * 4)) -i 1 \
4903                         -c $(($OSTCOUNT - 1)) $DIR/$tdir || error "setstripe"
4904                 touch $DIR/$tdir/f3
4905                 $LVERIFY $DIR/$tdir $DIR/$tdir/f3 || error "lverify failed"
4906         fi
4907 }
4908 run_test 65c "directory setstripe -S $((STRIPESIZE*4)) -i 1 -c $((OSTCOUNT-1))"
4909
4910 test_65d() {
4911         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4912         test_mkdir -p $DIR/$tdir
4913         if [ $STRIPECOUNT -le 0 ]; then
4914                 sc=1
4915         elif [ $STRIPECOUNT -gt 2000 ]; then
4916 #LOV_MAX_STRIPE_COUNT is 2000
4917                 [ $OSTCOUNT -gt 2000 ] && sc=2000 || sc=$(($OSTCOUNT - 1))
4918         else
4919                 sc=$(($STRIPECOUNT - 1))
4920         fi
4921         $SETSTRIPE -S $STRIPESIZE -c $sc $DIR/$tdir || error "setstripe"
4922         touch $DIR/$tdir/f4 $DIR/$tdir/f5
4923         $LVERIFY $DIR/$tdir $DIR/$tdir/f4 $DIR/$tdir/f5 ||
4924                                                 error "lverify failed"
4925 }
4926 run_test 65d "directory setstripe -S $STRIPESIZE -c stripe_count"
4927
4928 test_65e() {
4929         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4930         test_mkdir -p $DIR/$tdir
4931
4932         $SETSTRIPE $DIR/$tdir || error "setstripe"
4933         $GETSTRIPE -v $DIR/$tdir | grep "Default" ||
4934                                         error "no stripe info failed"
4935         touch $DIR/$tdir/f6
4936         $LVERIFY $DIR/$tdir $DIR/$tdir/f6 || error "lverify failed"
4937 }
4938 run_test 65e "directory setstripe defaults ======================="
4939
4940 test_65f() {
4941         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4942         test_mkdir -p $DIR/${tdir}f
4943         $RUNAS $SETSTRIPE $DIR/${tdir}f && error "setstripe succeeded" || true
4944 }
4945 run_test 65f "dir setstripe permission (should return error) ==="
4946
4947 test_65g() {
4948         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4949         test_mkdir -p $DIR/$tdir
4950         $SETSTRIPE -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
4951                                                         error "setstripe"
4952         $SETSTRIPE -d $DIR/$tdir || error "setstripe"
4953         $GETSTRIPE -v $DIR/$tdir | grep "Default" ||
4954                 error "delete default stripe failed"
4955 }
4956 run_test 65g "directory setstripe -d ==========================="
4957
4958 test_65h() {
4959         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4960         test_mkdir -p $DIR/$tdir
4961         $SETSTRIPE -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
4962                                                         error "setstripe"
4963         test_mkdir -p $DIR/$tdir/dd1
4964         [ $($GETSTRIPE -c $DIR/$tdir) == $($GETSTRIPE -c $DIR/$tdir/dd1) ] ||
4965                 error "stripe info inherit failed"
4966 }
4967 run_test 65h "directory stripe info inherit ===================="
4968
4969 test_65i() { # bug6367
4970         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4971         $SETSTRIPE -S 65536 -c -1 $MOUNT
4972 }
4973 run_test 65i "set non-default striping on root directory (bug 6367)="
4974
4975 test_65ia() { # bug12836
4976         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4977         $GETSTRIPE $MOUNT || error "getstripe $MOUNT failed"
4978 }
4979 run_test 65ia "getstripe on -1 default directory striping"
4980
4981 test_65ib() { # bug12836
4982         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4983         $GETSTRIPE -v $MOUNT || error "getstripe -v $MOUNT failed"
4984 }
4985 run_test 65ib "getstripe -v on -1 default directory striping"
4986
4987 test_65ic() { # bug12836
4988         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4989         $LFS find -mtime -1 $MOUNT > /dev/null || error "find $MOUNT failed"
4990 }
4991 run_test 65ic "new find on -1 default directory striping"
4992
4993 test_65j() { # bug6367
4994         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4995         sync; sleep 1
4996         # if we aren't already remounting for each test, do so for this test
4997         if [ "$CLEANUP" = ":" -a "$I_MOUNTED" = "yes" ]; then
4998                 cleanup || error "failed to unmount"
4999                 setup
5000         fi
5001         $SETSTRIPE -d $MOUNT || error "setstripe failed"
5002 }
5003 run_test 65j "set default striping on root directory (bug 6367)="
5004
5005 test_65k() { # bug11679
5006         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5007         [ "$OSTCOUNT" -lt 2 ] && skip_env "too few OSTs" && return
5008         remote_mds_nodsh && skip "remote MDS with nodsh" && return
5009
5010     echo "Check OST status: "
5011     local MDS_OSCS=`do_facet $SINGLEMDS lctl dl |
5012               awk '/[oO][sS][cC].*md[ts]/ { print $4 }'`
5013
5014     for OSC in $MDS_OSCS; do
5015         echo $OSC "is activate"
5016         do_facet $SINGLEMDS lctl --device %$OSC activate
5017     done
5018
5019     mkdir -p $DIR/$tdir
5020     for INACTIVE_OSC in $MDS_OSCS; do
5021         echo "Deactivate: " $INACTIVE_OSC
5022         do_facet $SINGLEMDS lctl --device %$INACTIVE_OSC deactivate
5023         for STRIPE_OSC in $MDS_OSCS; do
5024             OST=`osc_to_ost $STRIPE_OSC`
5025             IDX=`do_facet $SINGLEMDS lctl get_param -n lov.*md*.target_obd |
5026                  awk -F: /$OST/'{ print $1 }' | head -n 1`
5027
5028             [ -f $DIR/$tdir/$IDX ] && continue
5029             echo "$SETSTRIPE -i $IDX -c 1 $DIR/$tdir/$IDX"
5030             $SETSTRIPE -i $IDX -c 1 $DIR/$tdir/$IDX
5031             RC=$?
5032             [ $RC -ne 0 ] && error "setstripe should have succeeded"
5033         done
5034         rm -f $DIR/$tdir/*
5035         echo $INACTIVE_OSC "is Activate."
5036         do_facet $SINGLEMDS lctl --device  %$INACTIVE_OSC activate
5037     done
5038 }
5039 run_test 65k "validate manual striping works properly with deactivated OSCs"
5040
5041 test_65l() { # bug 12836
5042         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5043         test_mkdir -p $DIR/$tdir/test_dir
5044         $SETSTRIPE -c -1 $DIR/$tdir/test_dir
5045         $LFS find -mtime -1 $DIR/$tdir >/dev/null
5046 }
5047 run_test 65l "lfs find on -1 stripe dir ========================"
5048
5049 # bug 2543 - update blocks count on client
5050 test_66() {
5051         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5052         COUNT=${COUNT:-8}
5053         dd if=/dev/zero of=$DIR/f66 bs=1k count=$COUNT
5054         sync; sync_all_data; sync; sync_all_data
5055         cancel_lru_locks osc
5056         BLOCKS=`ls -s $DIR/f66 | awk '{ print $1 }'`
5057         [ $BLOCKS -ge $COUNT ] || error "$DIR/f66 blocks $BLOCKS < $COUNT"
5058 }
5059 run_test 66 "update inode blocks count on client ==============="
5060
5061 LLOOP=
5062 LLITELOOPLOAD=
5063 cleanup_68() {
5064         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5065         trap 0
5066         if [ ! -z "$LLOOP" ]; then
5067                 if swapon -s | grep -q $LLOOP; then
5068                         swapoff $LLOOP || error "swapoff failed"
5069                 fi
5070
5071                 $LCTL blockdev_detach $LLOOP || error "detach failed"
5072                 rm -f $LLOOP
5073                 unset LLOOP
5074         fi
5075         if [ ! -z "$LLITELOOPLOAD" ]; then
5076                 rmmod llite_lloop
5077                 unset LLITELOOPLOAD
5078         fi
5079         rm -f $DIR/f68*
5080 }
5081
5082 meminfo() {
5083         awk '($1 == "'$1':") { print $2 }' /proc/meminfo
5084 }
5085
5086 swap_used() {
5087         swapon -s | awk '($1 == "'$1'") { print $4 }'
5088 }
5089
5090 # test case for lloop driver, basic function
5091 test_68a() {
5092         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5093         [ "$UID" != 0 ] && skip_env "must run as root" && return
5094         llite_lloop_enabled || \
5095                 { skip_env "llite_lloop module disabled" && return; }
5096
5097         trap cleanup_68 EXIT
5098
5099         if ! module_loaded llite_lloop; then
5100                 if load_module llite/llite_lloop; then
5101                         LLITELOOPLOAD=yes
5102                 else
5103                         skip_env "can't find module llite_lloop"
5104                         return
5105                 fi
5106         fi
5107
5108         LLOOP=$TMP/lloop.`date +%s`.`date +%N`
5109         dd if=/dev/zero of=$DIR/f68a bs=4k count=1024
5110         $LCTL blockdev_attach $DIR/f68a $LLOOP || error "attach failed"
5111
5112         directio rdwr $LLOOP 0 1024 4096 || error "direct write failed"
5113         directio rdwr $LLOOP 0 1025 4096 && error "direct write should fail"
5114
5115         cleanup_68
5116 }
5117 run_test 68a "lloop driver - basic test ========================"
5118
5119 # excercise swapping to lustre by adding a high priority swapfile entry
5120 # and then consuming memory until it is used.
5121 test_68b() {  # was test_68
5122         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5123         [ "$UID" != 0 ] && skip_env "must run as root" && return
5124         lctl get_param -n devices | grep -q obdfilter && \
5125                 skip "local OST" && return
5126
5127         grep -q llite_lloop /proc/modules
5128         [ $? -ne 0 ] && skip "can't find module llite_lloop" && return
5129
5130         [ -z "`$LCTL list_nids | grep -v tcp`" ] && \
5131                 skip "can't reliably test swap with TCP" && return
5132
5133         MEMTOTAL=`meminfo MemTotal`
5134         NR_BLOCKS=$((MEMTOTAL>>8))
5135         [[ $NR_BLOCKS -le 2048 ]] && NR_BLOCKS=2048
5136
5137         LLOOP=$TMP/lloop.`date +%s`.`date +%N`
5138         dd if=/dev/zero of=$DIR/f68b bs=64k seek=$NR_BLOCKS count=1
5139         mkswap $DIR/f68b
5140
5141         $LCTL blockdev_attach $DIR/f68b $LLOOP || error "attach failed"
5142
5143         trap cleanup_68 EXIT
5144
5145         swapon -p 32767 $LLOOP || error "swapon $LLOOP failed"
5146
5147         echo "before: `swapon -s | grep $LLOOP`"
5148         $MEMHOG $MEMTOTAL || error "error allocating $MEMTOTAL kB"
5149         echo "after: `swapon -s | grep $LLOOP`"
5150         SWAPUSED=`swap_used $LLOOP`
5151
5152         cleanup_68
5153
5154         [ $SWAPUSED -eq 0 ] && echo "no swap used???" || true
5155 }
5156 run_test 68b "support swapping to Lustre ========================"
5157
5158 # bug5265, obdfilter oa2dentry return -ENOENT
5159 # #define OBD_FAIL_OST_ENOENT 0x217
5160 test_69() {
5161         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5162         remote_ost_nodsh && skip "remote OST with nodsh" && return
5163
5164         f="$DIR/$tfile"
5165         $SETSTRIPE -c 1 -i 0 $f
5166
5167         $DIRECTIO write ${f}.2 0 1 || error "directio write error"
5168
5169         do_facet ost1 lctl set_param fail_loc=0x217
5170         $TRUNCATE $f 1 # vmtruncate() will ignore truncate() error.
5171         $DIRECTIO write $f 0 2 && error "write succeeded, expect -ENOENT"
5172
5173         do_facet ost1 lctl set_param fail_loc=0
5174         $DIRECTIO write $f 0 2 || error "write error"
5175
5176         cancel_lru_locks osc
5177         $DIRECTIO read $f 0 1 || error "read error"
5178
5179         do_facet ost1 lctl set_param fail_loc=0x217
5180         $DIRECTIO read $f 1 1 && error "read succeeded, expect -ENOENT"
5181
5182         do_facet ost1 lctl set_param fail_loc=0
5183         rm -f $f
5184 }
5185 run_test 69 "verify oa2dentry return -ENOENT doesn't LBUG ======"
5186
5187 test_71() {
5188     test_mkdir -p $DIR/$tdir
5189     sh rundbench -C -D $DIR/$tdir 2 || error "dbench failed!"
5190 }
5191 run_test 71 "Running dbench on lustre (don't segment fault) ===="
5192
5193 test_72a() { # bug 5695 - Test that on 2.6 remove_suid works properly
5194         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5195         [ "$RUNAS_ID" = "$UID" ] &&
5196                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
5197
5198         # Check that testing environment is properly set up. Skip if not
5199         FAIL_ON_ERROR=false check_runas_id_ret $RUNAS_ID $RUNAS_GID $RUNAS || {
5200                 skip_env "User $RUNAS_ID does not exist - skipping"
5201                 return 0
5202         }
5203         # We had better clear the $DIR to get enough space for dd
5204         rm -rf $DIR/*
5205         touch $DIR/$tfile
5206         chmod 777 $DIR/$tfile
5207         chmod ug+s $DIR/$tfile
5208         $RUNAS dd if=/dev/zero of=$DIR/$tfile bs=512 count=1 ||
5209                 error "$RUNAS dd $DIR/$tfile failed"
5210         # See if we are still setuid/sgid
5211         test -u $DIR/$tfile -o -g $DIR/$tfile &&
5212                 error "S/gid is not dropped on write"
5213         # Now test that MDS is updated too
5214         cancel_lru_locks mdc
5215         test -u $DIR/$tfile -o -g $DIR/$tfile &&
5216                 error "S/gid is not dropped on MDS"
5217         rm -f $DIR/$tfile
5218 }
5219 run_test 72a "Test that remove suid works properly (bug5695) ===="
5220
5221 test_72b() { # bug 24226 -- keep mode setting when size is not changing
5222         local perm
5223
5224         [ "$RUNAS_ID" = "$UID" ] && \
5225                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
5226         [ "$RUNAS_ID" -eq 0 ] && \
5227                 skip_env "RUNAS_ID = 0 -- skipping" && return
5228
5229         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5230         # Check that testing environment is properly set up. Skip if not
5231         FAIL_ON_ERROR=false check_runas_id_ret $RUNAS_ID $RUNAS_ID $RUNAS || {
5232                 skip_env "User $RUNAS_ID does not exist - skipping"
5233                 return 0
5234         }
5235         touch $DIR/${tfile}-f{g,u}
5236         test_mkdir $DIR/${tfile}-dg
5237         test_mkdir $DIR/${tfile}-du
5238         chmod 770 $DIR/${tfile}-{f,d}{g,u}
5239         chmod g+s $DIR/${tfile}-{f,d}g
5240         chmod u+s $DIR/${tfile}-{f,d}u
5241         for perm in 777 2777 4777; do
5242                 $RUNAS chmod $perm $DIR/${tfile}-fg && error "S/gid file allowed improper chmod to $perm"
5243                 $RUNAS chmod $perm $DIR/${tfile}-fu && error "S/uid file allowed improper chmod to $perm"
5244                 $RUNAS chmod $perm $DIR/${tfile}-dg && error "S/gid dir allowed improper chmod to $perm"
5245                 $RUNAS chmod $perm $DIR/${tfile}-du && error "S/uid dir allowed improper chmod to $perm"
5246         done
5247         true
5248 }
5249 run_test 72b "Test that we keep mode setting if without file data changed (bug 24226)"
5250
5251 # bug 3462 - multiple simultaneous MDC requests
5252 test_73() {
5253         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5254         test_mkdir $DIR/d73-1
5255         test_mkdir $DIR/d73-2
5256         multiop_bg_pause $DIR/d73-1/f73-1 O_c || return 1
5257         pid1=$!
5258
5259         lctl set_param fail_loc=0x80000129
5260         $MULTIOP $DIR/d73-1/f73-2 Oc &
5261         sleep 1
5262         lctl set_param fail_loc=0
5263
5264         $MULTIOP $DIR/d73-2/f73-3 Oc &
5265         pid3=$!
5266
5267         kill -USR1 $pid1
5268         wait $pid1 || return 1
5269
5270         sleep 25
5271
5272         $CHECKSTAT -t file $DIR/d73-1/f73-1 || return 4
5273         $CHECKSTAT -t file $DIR/d73-1/f73-2 || return 5
5274         $CHECKSTAT -t file $DIR/d73-2/f73-3 || return 6
5275
5276         rm -rf $DIR/d73-*
5277 }
5278 run_test 73 "multiple MDC requests (should not deadlock)"
5279
5280 test_74a() { # bug 6149, 6184
5281         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5282         #define OBD_FAIL_LDLM_ENQUEUE_OLD_EXPORT 0x30e
5283         #
5284         # very important to OR with OBD_FAIL_ONCE (0x80000000) -- otherwise it
5285         # will spin in a tight reconnection loop
5286         touch $DIR/f74a
5287         lctl set_param fail_loc=0x8000030e
5288         # get any lock that won't be difficult - lookup works.
5289         ls $DIR/f74a
5290         lctl set_param fail_loc=0
5291         true
5292         rm -f $DIR/f74a
5293 }
5294 run_test 74a "ldlm_enqueue freed-export error path, ls (shouldn't LBUG)"
5295
5296 test_74b() { # bug 13310
5297         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5298         #define OBD_FAIL_LDLM_ENQUEUE_OLD_EXPORT 0x30e
5299         #
5300         # very important to OR with OBD_FAIL_ONCE (0x80000000) -- otherwise it
5301         # will spin in a tight reconnection loop
5302         lctl set_param fail_loc=0x8000030e
5303         # get a "difficult" lock
5304         touch $DIR/f74b
5305         lctl set_param fail_loc=0
5306         true
5307         rm -f $DIR/f74b
5308 }
5309 run_test 74b "ldlm_enqueue freed-export error path, touch (shouldn't LBUG)"
5310
5311 test_74c() {
5312         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5313 #define OBD_FAIL_LDLM_NEW_LOCK
5314         lctl set_param fail_loc=0x80000319
5315         touch $DIR/$tfile && error "Touch successful"
5316         true
5317 }
5318 run_test 74c "ldlm_lock_create error path, (shouldn't LBUG)"
5319
5320 num_inodes() {
5321         awk '/lustre_inode_cache/ {print $2; exit}' /proc/slabinfo
5322 }
5323
5324 get_inode_slab_tunables() {
5325         awk '/lustre_inode_cache/ {print $9," ",$10," ",$11; exit}' /proc/slabinfo
5326 }
5327
5328 set_inode_slab_tunables() {
5329         echo "lustre_inode_cache $1" > /proc/slabinfo
5330 }
5331
5332 test_76() { # Now for bug 20433, added originally in bug 1443
5333         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5334         local SLAB_SETTINGS=`get_inode_slab_tunables`
5335         local CPUS=`getconf _NPROCESSORS_ONLN`
5336         # we cannot set limit below 1 which means 1 inode in each
5337         # per-cpu cache is still allowed
5338         set_inode_slab_tunables "1 1 0"
5339         cancel_lru_locks osc
5340         BEFORE_INODES=`num_inodes`
5341         echo "before inodes: $BEFORE_INODES"
5342         local COUNT=1000
5343         [ "$SLOW" = "no" ] && COUNT=100
5344         for i in `seq $COUNT`; do
5345                 touch $DIR/$tfile
5346                 rm -f $DIR/$tfile
5347         done
5348         cancel_lru_locks osc
5349         AFTER_INODES=`num_inodes`
5350         echo "after inodes: $AFTER_INODES"
5351         local wait=0
5352         while [ $((AFTER_INODES-1*CPUS)) -gt $BEFORE_INODES ]; do
5353                 sleep 2
5354                 AFTER_INODES=`num_inodes`
5355                 wait=$((wait+2))
5356                 echo "wait $wait seconds inodes: $AFTER_INODES"
5357                 if [ $wait -gt 30 ]; then
5358                         error "inode slab grew from $BEFORE_INODES to $AFTER_INODES"
5359                 fi
5360         done
5361         set_inode_slab_tunables "$SLAB_SETTINGS"
5362 }
5363 run_test 76 "confirm clients recycle inodes properly ===="
5364
5365
5366 export ORIG_CSUM=""
5367 set_checksums()
5368 {
5369         # Note: in sptlrpc modes which enable its own bulk checksum, the
5370         # original crc32_le bulk checksum will be automatically disabled,
5371         # and the OBD_FAIL_OSC_CHECKSUM_SEND/OBD_FAIL_OSC_CHECKSUM_RECEIVE
5372         # will be checked by sptlrpc code against sptlrpc bulk checksum.
5373         # In this case set_checksums() will not be no-op, because sptlrpc
5374         # bulk checksum will be enabled all through the test.
5375
5376         [ "$ORIG_CSUM" ] || ORIG_CSUM=`lctl get_param -n osc.*.checksums | head -n1`
5377         lctl set_param -n osc.*.checksums $1
5378         return 0
5379 }
5380
5381 export ORIG_CSUM_TYPE="`lctl get_param -n osc.*osc-[^mM]*.checksum_type |
5382                         sed 's/.*\[\(.*\)\].*/\1/g' | head -n1`"
5383 CKSUM_TYPES=${CKSUM_TYPES:-"crc32 adler"}
5384 [ "$ORIG_CSUM_TYPE" = "crc32c" ] && CKSUM_TYPES="$CKSUM_TYPES crc32c"
5385 set_checksum_type()
5386 {
5387         lctl set_param -n osc.*osc-[^mM]*.checksum_type $1
5388         log "set checksum type to $1"
5389         return 0
5390 }
5391 F77_TMP=$TMP/f77-temp
5392 F77SZ=8
5393 setup_f77() {
5394         dd if=/dev/urandom of=$F77_TMP bs=1M count=$F77SZ || \
5395                 error "error writing to $F77_TMP"
5396 }
5397
5398 test_77a() { # bug 10889
5399         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5400         $GSS && skip "could not run with gss" && return
5401         [ ! -f $F77_TMP ] && setup_f77
5402         set_checksums 1
5403         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ || error "dd error"
5404         set_checksums 0
5405         rm -f $DIR/$tfile
5406 }
5407 run_test 77a "normal checksum read/write operation"
5408
5409 test_77b() { # bug 10889
5410         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5411         $GSS && skip "could not run with gss" && return
5412         [ ! -f $F77_TMP ] && setup_f77
5413         #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
5414         $LCTL set_param fail_loc=0x80000409
5415         set_checksums 1
5416
5417         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ conv=sync ||
5418                 error "dd error: $?"
5419         $LCTL set_param fail_loc=0
5420
5421         for algo in $CKSUM_TYPES; do
5422                 cancel_lru_locks osc
5423                 set_checksum_type $algo
5424                 #define OBD_FAIL_OSC_CHECKSUM_RECEIVE    0x408
5425                 $LCTL set_param fail_loc=0x80000408
5426                 cmp $F77_TMP $DIR/$tfile || error "file compare failed"
5427                 $LCTL set_param fail_loc=0
5428         done
5429         set_checksums 0
5430         set_checksum_type $ORIG_CSUM_TYPE
5431         rm -f $DIR/$tfile
5432 }
5433 run_test 77b "checksum error on client write, read"
5434
5435 test_77d() { # bug 10889
5436         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5437         $GSS && skip "could not run with gss" && return
5438         #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
5439         $LCTL set_param fail_loc=0x80000409
5440         set_checksums 1
5441         $DIRECTIO write $DIR/$tfile 0 $F77SZ $((1024 * 1024)) ||
5442                 error "direct write: rc=$?"
5443         $LCTL set_param fail_loc=0
5444         set_checksums 0
5445
5446         #define OBD_FAIL_OSC_CHECKSUM_RECEIVE    0x408
5447         $LCTL set_param fail_loc=0x80000408
5448         set_checksums 1
5449         cancel_lru_locks osc
5450         $DIRECTIO read $DIR/$tfile 0 $F77SZ $((1024 * 1024)) ||
5451                 error "direct read: rc=$?"
5452         $LCTL set_param fail_loc=0
5453         set_checksums 0
5454 }
5455 run_test 77d "checksum error on OST direct write, read"
5456
5457 test_77f() { # bug 10889
5458         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5459         $GSS && skip "could not run with gss" && return
5460         set_checksums 1
5461         for algo in $CKSUM_TYPES; do
5462                 cancel_lru_locks osc
5463                 set_checksum_type $algo
5464                 #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
5465                 $LCTL set_param fail_loc=0x409
5466                 $DIRECTIO write $DIR/$tfile 0 $F77SZ $((1024 * 1024)) &&
5467                         error "direct write succeeded"
5468                 $LCTL set_param fail_loc=0
5469         done
5470         set_checksum_type $ORIG_CSUM_TYPE
5471         set_checksums 0
5472 }
5473 run_test 77f "repeat checksum error on write (expect error)"
5474
5475 test_77g() { # bug 10889
5476         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5477         $GSS && skip "could not run with gss" && return
5478         remote_ost_nodsh && skip "remote OST with nodsh" && return
5479
5480         [ ! -f $F77_TMP ] && setup_f77
5481
5482         $SETSTRIPE -c 1 -i 0 $DIR/$tfile
5483         #define OBD_FAIL_OST_CHECKSUM_RECEIVE       0x21a
5484         do_facet ost1 lctl set_param fail_loc=0x8000021a
5485         set_checksums 1
5486         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ ||
5487                 error "write error: rc=$?"
5488         do_facet ost1 lctl set_param fail_loc=0
5489         set_checksums 0
5490
5491         cancel_lru_locks osc
5492         #define OBD_FAIL_OST_CHECKSUM_SEND          0x21b
5493         do_facet ost1 lctl set_param fail_loc=0x8000021b
5494         set_checksums 1
5495         cmp $F77_TMP $DIR/$tfile || error "file compare failed"
5496         do_facet ost1 lctl set_param fail_loc=0
5497         set_checksums 0
5498 }
5499 run_test 77g "checksum error on OST write, read"
5500
5501 test_77i() { # bug 13805
5502         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5503         $GSS && skip "could not run with gss" && return
5504         #define OBD_FAIL_OSC_CONNECT_CKSUM       0x40b
5505         lctl set_param fail_loc=0x40b
5506         remount_client $MOUNT
5507         lctl set_param fail_loc=0
5508         for VALUE in `lctl get_param osc.*osc-[^mM]*.checksum_type`; do
5509                 PARAM=`echo ${VALUE[0]} | cut -d "=" -f1`
5510                 algo=`lctl get_param -n $PARAM | sed 's/.*\[\(.*\)\].*/\1/g'`
5511                 [ "$algo" = "adler" ] || error "algo set to $algo instead of adler"
5512         done
5513         remount_client $MOUNT
5514 }
5515 run_test 77i "client not supporting OSD_CONNECT_CKSUM"
5516
5517 test_77j() { # bug 13805
5518         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5519         $GSS && skip "could not run with gss" && return
5520         #define OBD_FAIL_OSC_CKSUM_ADLER_ONLY    0x40c
5521         lctl set_param fail_loc=0x40c
5522         remount_client $MOUNT
5523         lctl set_param fail_loc=0
5524         sleep 2 # wait async osc connect to finish
5525         for VALUE in `lctl get_param osc.*osc-[^mM]*.checksum_type`; do
5526                 PARAM=`echo ${VALUE[0]} | cut -d "=" -f1`
5527                 algo=`lctl get_param -n $PARAM | sed 's/.*\[\(.*\)\].*/\1/g'`
5528                 [ "$algo" = "adler" ] || error "algo set to $algo instead of adler"
5529         done
5530         remount_client $MOUNT
5531 }
5532 run_test 77j "client only supporting ADLER32"
5533
5534 [ "$ORIG_CSUM" ] && set_checksums $ORIG_CSUM || true
5535 rm -f $F77_TMP
5536 unset F77_TMP
5537
5538 test_78() { # bug 10901
5539         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5540         remote_ost || { skip_env "local OST" && return; }
5541
5542         NSEQ=5
5543         F78SIZE=$(($(awk '/MemFree:/ { print $2 }' /proc/meminfo) / 1024))
5544         echo "MemFree: $F78SIZE, Max file size: $MAXFREE"
5545         MEMTOTAL=$(($(awk '/MemTotal:/ { print $2 }' /proc/meminfo) / 1024))
5546         echo "MemTotal: $MEMTOTAL"
5547 # reserve 256MB of memory for the kernel and other running processes,
5548 # and then take 1/2 of the remaining memory for the read/write buffers.
5549     if [ $MEMTOTAL -gt 512 ] ;then
5550         MEMTOTAL=$(((MEMTOTAL - 256 ) / 2))
5551     else
5552         # for those poor memory-starved high-end clusters...
5553         MEMTOTAL=$((MEMTOTAL / 2))
5554     fi
5555         echo "Mem to use for directio: $MEMTOTAL"
5556         [ $F78SIZE -gt $MEMTOTAL ] && F78SIZE=$MEMTOTAL
5557         [ $F78SIZE -gt 512 ] && F78SIZE=512
5558         [ $F78SIZE -gt $((MAXFREE / 1024)) ] && F78SIZE=$((MAXFREE / 1024))
5559         SMALLESTOST=`lfs df $DIR |grep OST | awk '{print $4}' |sort -n |head -1`
5560         echo "Smallest OST: $SMALLESTOST"
5561         [ $SMALLESTOST -lt 10240 ] && \
5562                 skip "too small OSTSIZE, useless to run large O_DIRECT test" && return 0
5563
5564         [ $F78SIZE -gt $((SMALLESTOST * $OSTCOUNT / 1024 - 80)) ] && \
5565                 F78SIZE=$((SMALLESTOST * $OSTCOUNT / 1024 - 80))
5566
5567         [ "$SLOW" = "no" ] && NSEQ=1 && [ $F78SIZE -gt 32 ] && F78SIZE=32
5568         echo "File size: $F78SIZE"
5569         $SETSTRIPE -c $OSTCOUNT $DIR/$tfile || error "setstripe failed"
5570         for i in `seq 1 $NSEQ`
5571         do
5572                 FSIZE=$(($F78SIZE / ($NSEQ - $i + 1)))
5573                 echo directIO rdwr round $i of $NSEQ
5574                 $DIRECTIO rdwr $DIR/$tfile 0 $FSIZE 1048576||error "rdwr failed"
5575         done
5576
5577         rm -f $DIR/$tfile
5578 }
5579 run_test 78 "handle large O_DIRECT writes correctly ============"
5580
5581 test_79() { # bug 12743
5582         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5583         wait_delete_completed
5584
5585         BKTOTAL=$(calc_osc_kbytes kbytestotal)
5586         BKFREE=$(calc_osc_kbytes kbytesfree)
5587         BKAVAIL=$(calc_osc_kbytes kbytesavail)
5588
5589         STRING=`df -P $MOUNT | tail -n 1 | awk '{print $2","$3","$4}'`
5590         DFTOTAL=`echo $STRING | cut -d, -f1`
5591         DFUSED=`echo $STRING  | cut -d, -f2`
5592         DFAVAIL=`echo $STRING | cut -d, -f3`
5593         DFFREE=$(($DFTOTAL - $DFUSED))
5594
5595         ALLOWANCE=$((64 * $OSTCOUNT))
5596
5597         if [ $DFTOTAL -lt $(($BKTOTAL - $ALLOWANCE)) ] ||
5598            [ $DFTOTAL -gt $(($BKTOTAL + $ALLOWANCE)) ] ; then
5599                 error "df total($DFTOTAL) mismatch OST total($BKTOTAL)"
5600         fi
5601         if [ $DFFREE -lt $(($BKFREE - $ALLOWANCE)) ] ||
5602            [ $DFFREE -gt $(($BKFREE + $ALLOWANCE)) ] ; then
5603                 error "df free($DFFREE) mismatch OST free($BKFREE)"
5604         fi
5605         if [ $DFAVAIL -lt $(($BKAVAIL - $ALLOWANCE)) ] ||
5606            [ $DFAVAIL -gt $(($BKAVAIL + $ALLOWANCE)) ] ; then
5607                 error "df avail($DFAVAIL) mismatch OST avail($BKAVAIL)"
5608         fi
5609 }
5610 run_test 79 "df report consistency check ======================="
5611
5612 test_80() { # bug 10718
5613         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5614         # relax strong synchronous semantics for slow backends like ZFS
5615         local soc="obdfilter.*.sync_on_lock_cancel"
5616         local soc_old=$(do_facet ost1 lctl get_param -n $soc | head -n1)
5617         local hosts=
5618         if [ "$soc_old" != "never" -a "$(facet_fstype ost1)" != "ldiskfs" ]; then
5619                 hosts=$(for host in $(seq -f "ost%g" 1 $OSTCOUNT); do
5620                           facet_active_host $host; done | sort -u)
5621                 do_nodes $hosts lctl set_param $soc=never
5622         fi
5623
5624         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=1M
5625         sync; sleep 1; sync
5626         local BEFORE=`date +%s`
5627         cancel_lru_locks osc
5628         local AFTER=`date +%s`
5629         local DIFF=$((AFTER-BEFORE))
5630         if [ $DIFF -gt 1 ] ; then
5631                 error "elapsed for 1M@1T = $DIFF"
5632         fi
5633
5634         [ -n "$hosts" ] && do_nodes $hosts lctl set_param $soc=$soc_old
5635
5636         rm -f $DIR/$tfile
5637 }
5638 run_test 80 "Page eviction is equally fast at high offsets too  ===="
5639
5640 test_81a() { # LU-456
5641         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5642         remote_ost_nodsh && skip "remote OST with nodsh" && return
5643         # define OBD_FAIL_OST_MAPBLK_ENOSPC    0x228
5644         # MUST OR with the OBD_FAIL_ONCE (0x80000000)
5645         do_facet ost1 lctl set_param fail_loc=0x80000228
5646
5647         # write should trigger a retry and success
5648         $SETSTRIPE -i 0 -c 1 $DIR/$tfile
5649         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
5650         RC=$?
5651         if [ $RC -ne 0 ] ; then
5652                 error "write should success, but failed for $RC"
5653         fi
5654 }
5655 run_test 81a "OST should retry write when get -ENOSPC ==============="
5656
5657 test_81b() { # LU-456
5658         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5659         remote_ost_nodsh && skip "remote OST with nodsh" && return
5660         # define OBD_FAIL_OST_MAPBLK_ENOSPC    0x228
5661         # Don't OR with the OBD_FAIL_ONCE (0x80000000)
5662         do_facet ost1 lctl set_param fail_loc=0x228
5663
5664         # write should retry several times and return -ENOSPC finally
5665         $SETSTRIPE -i 0 -c 1 $DIR/$tfile
5666         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
5667         RC=$?
5668         ENOSPC=28
5669         if [ $RC -ne $ENOSPC ] ; then
5670                 error "dd should fail for -ENOSPC, but succeed."
5671         fi
5672 }
5673 run_test 81b "OST should return -ENOSPC when retry still fails ======="
5674
5675 test_82() { # LU-1031
5676         dd if=/dev/zero of=$DIR/$tfile bs=1M count=10
5677         local gid1=14091995
5678         local gid2=16022000
5679
5680         multiop_bg_pause $DIR/$tfile OG${gid1}_g${gid1}c || return 1
5681         local MULTIPID1=$!
5682         multiop_bg_pause $DIR/$tfile O_G${gid2}r10g${gid2}c || return 2
5683         local MULTIPID2=$!
5684         kill -USR1 $MULTIPID2
5685         sleep 2
5686         if [[ `ps h -o comm -p $MULTIPID2` == "" ]]; then
5687                 error "First grouplock does not block second one"
5688         else
5689                 echo "Second grouplock blocks first one"
5690         fi
5691         kill -USR1 $MULTIPID1
5692         wait $MULTIPID1
5693         wait $MULTIPID2
5694 }
5695 run_test 82 "Basic grouplock test ==============================="
5696
5697 test_99a() {
5698         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" &&
5699                 return
5700         test_mkdir -p $DIR/d99cvsroot
5701         chown $RUNAS_ID $DIR/d99cvsroot
5702         local oldPWD=$PWD       # bug 13584, use $TMP as working dir
5703         cd $TMP
5704
5705         $RUNAS cvs -d $DIR/d99cvsroot init || error "cvs init failed"
5706         cd $oldPWD
5707 }
5708 run_test 99a "cvs init ========================================="
5709
5710 test_99b() {
5711         [ -z "$(which cvs 2>/dev/null)" ] &&
5712                 skip_env "could not find cvs" && return
5713         [ ! -d $DIR/d99cvsroot ] && test_99a
5714         cd /etc/init.d
5715         # some versions of cvs import exit(1) when asked to import links or
5716         # files they can't read.  ignore those files.
5717         TOIGNORE=$(find . -type l -printf '-I %f\n' -o \
5718                         ! -perm +4 -printf '-I %f\n')
5719         $RUNAS cvs -d $DIR/d99cvsroot import -m "nomesg" $TOIGNORE \
5720                 d99reposname vtag rtag
5721 }
5722 run_test 99b "cvs import ======================================="
5723
5724 test_99c() {
5725         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && return
5726         [ ! -d $DIR/d99cvsroot ] && test_99b
5727         cd $DIR
5728         test_mkdir -p $DIR/d99reposname
5729         chown $RUNAS_ID $DIR/d99reposname
5730         $RUNAS cvs -d $DIR/d99cvsroot co d99reposname
5731 }
5732 run_test 99c "cvs checkout ====================================="
5733
5734 test_99d() {
5735         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && return
5736         [ ! -d $DIR/d99cvsroot ] && test_99c
5737         cd $DIR/d99reposname
5738         $RUNAS touch foo99
5739         $RUNAS cvs add -m 'addmsg' foo99
5740 }
5741 run_test 99d "cvs add =========================================="
5742
5743 test_99e() {
5744         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && return
5745         [ ! -d $DIR/d99cvsroot ] && test_99c
5746         cd $DIR/d99reposname
5747         $RUNAS cvs update
5748 }
5749 run_test 99e "cvs update ======================================="
5750
5751 test_99f() {
5752         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && return
5753         [ ! -d $DIR/d99cvsroot ] && test_99d
5754         cd $DIR/d99reposname
5755         $RUNAS cvs commit -m 'nomsg' foo99
5756     rm -fr $DIR/d99cvsroot
5757 }
5758 run_test 99f "cvs commit ======================================="
5759
5760 test_100() {
5761         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5762         [ "$NETTYPE" = tcp ] || \
5763                 { skip "TCP secure port test, not useful for NETTYPE=$NETTYPE" && \
5764                         return ; }
5765
5766         remote_ost_nodsh && skip "remote OST with nodsh" && return
5767         remote_mds_nodsh && skip "remote MDS with nodsh" && return
5768         remote_servers || \
5769                 { skip "useless for local single node setup" && return; }
5770
5771         netstat -tna | ( rc=1; while read PROT SND RCV LOCAL REMOTE STAT; do
5772                 [ "$PROT" != "tcp" ] && continue
5773                 RPORT=$(echo $REMOTE | cut -d: -f2)
5774                 [ "$RPORT" != "$ACCEPTOR_PORT" ] && continue
5775
5776                 rc=0
5777                 LPORT=`echo $LOCAL | cut -d: -f2`
5778                 if [ $LPORT -ge 1024 ]; then
5779                         echo "bad: $PROT $SND $RCV $LOCAL $REMOTE $STAT"
5780                         netstat -tna
5781                         error_exit "local: $LPORT > 1024, remote: $RPORT"
5782                 fi
5783         done
5784         [ "$rc" = 0 ] || error_exit "privileged port not found" )
5785 }
5786 run_test 100 "check local port using privileged port ==========="
5787
5788 function get_named_value()
5789 {
5790     local tag
5791
5792     tag=$1
5793     while read ;do
5794         line=$REPLY
5795         case $line in
5796         $tag*)
5797             echo $line | sed "s/^$tag[ ]*//"
5798             break
5799             ;;
5800         esac
5801     done
5802 }
5803
5804 export CACHE_MAX=$($LCTL get_param -n llite.*.max_cached_mb |
5805                    awk '/^max_cached_mb/ { print $2 }')
5806
5807 cleanup_101a() {
5808         $LCTL set_param -n llite.*.max_cached_mb $CACHE_MAX
5809         trap 0
5810 }
5811
5812 test_101a() {
5813         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5814         [ $MDSCOUNT -ge 2 ] && skip "skip now for >= 2 MDTs" && return #LU-4322
5815         local s
5816         local discard
5817         local nreads=10000
5818         local cache_limit=32
5819
5820         $LCTL set_param -n osc.*-osc*.rpc_stats 0
5821         trap cleanup_101a EXIT
5822         $LCTL set_param -n llite.*.read_ahead_stats 0
5823         $LCTL set_param -n llite.*.max_cached_mb $cache_limit
5824
5825         #
5826         # randomly read 10000 of 64K chunks from file 3x 32MB in size
5827         #
5828         echo "nreads: $nreads file size: $((cache_limit * 3))MB"
5829         $READS -f $DIR/$tfile -s$((cache_limit * 3192 * 1024)) -b65536 -C -n$nreads -t 180
5830
5831         discard=0
5832         for s in `$LCTL get_param -n llite.*.read_ahead_stats | \
5833                 get_named_value 'read but discarded' | cut -d" " -f1`; do
5834                         discard=$(($discard + $s))
5835         done
5836         cleanup_101a
5837
5838         if [ $(($discard * 10)) -gt $nreads ] ;then
5839                 $LCTL get_param osc.*-osc*.rpc_stats
5840                 $LCTL get_param llite.*.read_ahead_stats
5841                 error "too many ($discard) discarded pages"
5842         fi
5843         rm -f $DIR/$tfile || true
5844 }
5845 run_test 101a "check read-ahead for random reads ================"
5846
5847 setup_test101bc() {
5848         test_mkdir -p $DIR/$tdir
5849         STRIPE_SIZE=1048576
5850         STRIPE_COUNT=$OSTCOUNT
5851         STRIPE_OFFSET=0
5852
5853         local list=$(comma_list $(osts_nodes))
5854         set_osd_param $list '' read_cache_enable 0
5855         set_osd_param $list '' writethrough_cache_enable 0
5856
5857         trap cleanup_test101bc EXIT
5858         # prepare the read-ahead file
5859         $SETSTRIPE -S $STRIPE_SIZE -i $STRIPE_OFFSET -c $OSTCOUNT $DIR/$tfile
5860
5861         dd if=/dev/zero of=$DIR/$tfile bs=1024k count=100 2> /dev/null
5862 }
5863
5864 cleanup_test101bc() {
5865         trap 0
5866         rm -rf $DIR/$tdir
5867         rm -f $DIR/$tfile
5868
5869         local list=$(comma_list $(osts_nodes))
5870         set_osd_param $list '' read_cache_enable 1
5871         set_osd_param $list '' writethrough_cache_enable 1
5872 }
5873
5874 calc_total() {
5875         awk 'BEGIN{total=0}; {total+=$1}; END{print total}'
5876 }
5877
5878 ra_check_101() {
5879         local READ_SIZE=$1
5880         local STRIPE_SIZE=1048576
5881         local RA_INC=1048576
5882         local STRIDE_LENGTH=$((STRIPE_SIZE/READ_SIZE))
5883         local FILE_LENGTH=$((64*100))
5884         local discard_limit=$((((STRIDE_LENGTH - 1)*3/(STRIDE_LENGTH*OSTCOUNT))* \
5885                              (STRIDE_LENGTH*OSTCOUNT - STRIDE_LENGTH)))
5886         DISCARD=`$LCTL get_param -n llite.*.read_ahead_stats | \
5887                         get_named_value 'read but discarded' | \
5888                         cut -d" " -f1 | calc_total`
5889         if [ $DISCARD -gt $discard_limit ]; then
5890                 $LCTL get_param llite.*.read_ahead_stats
5891                 error "Too many ($DISCARD) discarded pages with size (${READ_SIZE})"
5892         else
5893                 echo "Read-ahead success for size ${READ_SIZE}"
5894         fi
5895 }
5896
5897 test_101b() {
5898         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5899         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping stride IO stride-ahead test" && return
5900         local STRIPE_SIZE=1048576
5901         local STRIDE_SIZE=$((STRIPE_SIZE*OSTCOUNT))
5902         local FILE_LENGTH=$((STRIPE_SIZE*100))
5903         local ITERATION=$((FILE_LENGTH/STRIDE_SIZE))
5904         # prepare the read-ahead file
5905         setup_test101bc
5906         cancel_lru_locks osc
5907         for BIDX in 2 4 8 16 32 64 128 256
5908         do
5909                 local BSIZE=$((BIDX*4096))
5910                 local READ_COUNT=$((STRIPE_SIZE/BSIZE))
5911                 local STRIDE_LENGTH=$((STRIDE_SIZE/BSIZE))
5912                 local OFFSET=$((STRIPE_SIZE/BSIZE*(OSTCOUNT - 1)))
5913                 $LCTL set_param -n llite.*.read_ahead_stats 0
5914                 $READS -f $DIR/$tfile  -l $STRIDE_LENGTH -o $OFFSET \
5915                               -s $FILE_LENGTH -b $STRIPE_SIZE -a $READ_COUNT -n $ITERATION
5916                 cancel_lru_locks osc
5917                 ra_check_101 $BSIZE
5918         done
5919         cleanup_test101bc
5920         true
5921 }
5922 run_test 101b "check stride-io mode read-ahead ================="
5923
5924 test_101c() {
5925         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5926         local STRIPE_SIZE=1048576
5927         local FILE_LENGTH=$((STRIPE_SIZE*100))
5928         local nreads=10000
5929         local osc_rpc_stats
5930
5931         setup_test101bc
5932
5933         cancel_lru_locks osc
5934         $LCTL set_param osc.*.rpc_stats 0
5935         $READS -f $DIR/$tfile -s$FILE_LENGTH -b65536 -n$nreads -t 180
5936         for osc_rpc_stats in $($LCTL get_param -N osc.*.rpc_stats); do
5937                 local stats=$($LCTL get_param -n $osc_rpc_stats)
5938                 local lines=$(echo "$stats" | awk 'END {print NR;}')
5939                 local size
5940
5941                 if [ $lines -le 20 ]; then
5942                         continue
5943                 fi
5944                 for size in 1 2 4 8; do
5945                         local rpc=$(echo "$stats" |
5946                                     awk '($1 == "'$size':") {print $2; exit; }')
5947                         [ $rpc != 0 ] &&
5948                                 error "Small $((size*4))k read IO $rpc !"
5949                 done
5950                 echo "$osc_rpc_stats check passed!"
5951         done
5952         cleanup_test101bc
5953         true
5954 }
5955 run_test 101c "check stripe_size aligned read-ahead ================="
5956
5957 set_read_ahead() {
5958    $LCTL get_param -n llite.*.max_read_ahead_mb | head -n 1
5959    $LCTL set_param -n llite.*.max_read_ahead_mb $1 > /dev/null 2>&1
5960 }
5961
5962 test_101d() {
5963         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5964         local file=$DIR/$tfile
5965         local size=${FILESIZE_101c:-500}
5966         local ra_MB=${READAHEAD_MB:-40}
5967
5968         local space=$(df -P $DIR | tail -n 1 | awk '{ print $4 }')
5969         [ $space -gt $((size * 1024)) ] ||
5970                 { skip "Need free space ${size}M, have ${space}K" && return; }
5971
5972         echo "Creating test file $file of size ${size}M with ${space}K free space"
5973         $SETSTRIPE -c -1 $file || error "setstripe failed"
5974         dd if=/dev/zero of=$file bs=1M count=$size || error "dd failed"
5975         echo Cancel LRU locks on lustre client to flush the client cache
5976         cancel_lru_locks osc
5977
5978     echo Disable read-ahead
5979     local old_READAHEAD=$(set_read_ahead 0)
5980
5981     echo Reading the test file $file with read-ahead disabled
5982     time_ra_OFF=$(do_and_time "dd if=$file of=/dev/null bs=1M count=$size")
5983
5984     echo Cancel LRU locks on lustre client to flush the client cache
5985     cancel_lru_locks osc
5986     echo Enable read-ahead with ${ra_MB}MB
5987     set_read_ahead $ra_MB
5988
5989     echo Reading the test file $file with read-ahead enabled
5990     time_ra_ON=$(do_and_time "dd if=$file of=/dev/null bs=1M count=$size")
5991
5992     echo read-ahead disabled time read $time_ra_OFF
5993     echo read-ahead enabled  time read $time_ra_ON
5994
5995         set_read_ahead $old_READAHEAD
5996         rm -f $file
5997         wait_delete_completed
5998
5999     [ $time_ra_ON -lt $time_ra_OFF ] ||
6000         error "read-ahead enabled  time read (${time_ra_ON}s) is more than
6001                read-ahead disabled time read (${time_ra_OFF}s) filesize ${size}M"
6002 }
6003 run_test 101d "file read with and without read-ahead enabled  ================="
6004
6005 test_101e() {
6006         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6007     local file=$DIR/$tfile
6008     local size=500  #KB
6009     local count=100
6010     local blksize=1024
6011
6012     local space=$(df -P $DIR | tail -n 1 | awk '{ print $4 }')
6013     local need_space=$((count * size))
6014     [ $space -gt $need_space ] ||
6015         { skip_env "Need free space $need_space, have $space" && return; }
6016
6017     echo Creating $count ${size}K test files
6018     for ((i = 0; i < $count; i++)); do
6019         dd if=/dev/zero of=${file}_${i} bs=$blksize count=$size 2>/dev/null
6020     done
6021
6022     echo Cancel LRU locks on lustre client to flush the client cache
6023     cancel_lru_locks osc
6024
6025     echo Reset readahead stats
6026     $LCTL set_param -n llite.*.read_ahead_stats 0
6027
6028     for ((i = 0; i < $count; i++)); do
6029         dd if=${file}_${i} of=/dev/null bs=$blksize count=$size 2>/dev/null
6030     done
6031
6032     local miss=$($LCTL get_param -n llite.*.read_ahead_stats | \
6033           get_named_value 'misses' | cut -d" " -f1 | calc_total)
6034
6035     for ((i = 0; i < $count; i++)); do
6036         rm -rf ${file}_${i} 2>/dev/null
6037     done
6038
6039     #10000 means 20% reads are missing in readahead
6040     [ $miss -lt 10000 ] ||  error "misses too much for small reads"
6041 }
6042 run_test 101e "check read-ahead for small read(1k) for small files(500k)"
6043
6044 cleanup_test101f() {
6045     trap 0
6046     $LCTL set_param -n llite.*.max_read_ahead_whole_mb $MAX_WHOLE_MB
6047     rm -rf $DIR/$tfile 2>/dev/null
6048 }
6049
6050 test_101f() {
6051         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6052     local file=$DIR/$tfile
6053     local nreads=1000
6054
6055     MAX_WHOLE_MB=$($LCTL get_param -n llite.*.max_read_ahead_whole_mb)
6056     $LCTL set_param -n llite.*.max_read_ahead_whole_mb 2
6057     dd if=/dev/zero of=${file} bs=2097152 count=1 2>/dev/null
6058     trap cleanup_test101f EXIT
6059
6060     echo Cancel LRU locks on lustre client to flush the client cache
6061     cancel_lru_locks osc
6062
6063     echo Reset readahead stats
6064     $LCTL set_param -n llite.*.read_ahead_stats 0
6065     # Random read in a 2M file, because max_read_ahead_whole_mb = 2M,
6066     # readahead should read in 2M file on second read, so only miss
6067     # 2 pages.
6068     echo Random 4K reads on 2M file for 1000 times
6069     $READS -f $file -s 2097152 -b 4096 -n $nreads
6070
6071     echo checking missing pages
6072     local miss=$($LCTL get_param -n llite.*.read_ahead_stats |
6073           get_named_value 'misses' | cut -d" " -f1 | calc_total)
6074
6075     [ $miss -lt 3 ] || error "misses too much pages!"
6076     cleanup_test101f
6077 }
6078 run_test 101f "check read-ahead for max_read_ahead_whole_mb"
6079
6080 setup_test102() {
6081         test_mkdir -p $DIR/$tdir
6082         chown $RUNAS_ID $DIR/$tdir
6083         STRIPE_SIZE=65536
6084         STRIPE_OFFSET=1
6085         STRIPE_COUNT=$OSTCOUNT
6086         [ $OSTCOUNT -gt 4 ] && STRIPE_COUNT=4
6087
6088         trap cleanup_test102 EXIT
6089         cd $DIR
6090         $1 $SETSTRIPE -S $STRIPE_SIZE -i $STRIPE_OFFSET -c $STRIPE_COUNT $tdir
6091         cd $DIR/$tdir
6092         for num in 1 2 3 4; do
6093                 for count in $(seq 1 $STRIPE_COUNT); do
6094                         for idx in $(seq 0 $[$STRIPE_COUNT - 1]); do
6095                                 local size=`expr $STRIPE_SIZE \* $num`
6096                                 local file=file"$num-$idx-$count"
6097                                 $1 $SETSTRIPE -S $size -i $idx -c $count $file
6098                         done
6099                 done
6100         done
6101
6102         cd $DIR
6103         $1 $TAR cf $TMP/f102.tar $tdir --xattrs
6104 }
6105
6106 cleanup_test102() {
6107         trap 0
6108         rm -f $TMP/f102.tar
6109         rm -rf $DIR/d0.sanity/d102
6110 }
6111
6112 test_102a() {
6113         local testfile=$DIR/xattr_testfile
6114
6115         touch $testfile
6116
6117         [ "$UID" != 0 ] && skip_env "must run as root" && return
6118         [ -z "$(lctl get_param -n mdc.*-mdc-*.connect_flags | grep xattr)" ] &&
6119                 skip_env "must have user_xattr" && return
6120
6121         [ -z "$(which setfattr 2>/dev/null)" ] &&
6122                 skip_env "could not find setfattr" && return
6123
6124         echo "set/get xattr..."
6125         setfattr -n trusted.name1 -v value1 $testfile ||
6126                 error "setfattr -n trusted.name1=value1 $testfile failed"
6127         getfattr -n trusted.name1 $testfile 2> /dev/null |
6128           grep "trusted.name1=.value1" ||
6129                 error "$testfile missing trusted.name1=value1"
6130
6131         setfattr -n user.author1 -v author1 $testfile ||
6132                 error "setfattr -n user.author1=author1 $testfile failed"
6133         getfattr -n user.author1 $testfile 2> /dev/null |
6134           grep "user.author1=.author1" ||
6135                 error "$testfile missing trusted.author1=author1"
6136
6137         echo "listxattr..."
6138         setfattr -n trusted.name2 -v value2 $testfile ||
6139                 error "$testfile unable to set trusted.name2"
6140         setfattr -n trusted.name3 -v value3 $testfile ||
6141                 error "$testfile unable to set trusted.name3"
6142         [ $(getfattr -d -m "^trusted" $testfile 2> /dev/null |
6143             grep "trusted.name" | wc -l) -eq 3 ] ||
6144                 error "$testfile missing 3 trusted.name xattrs"
6145
6146         setfattr -n user.author2 -v author2 $testfile ||
6147                 error "$testfile unable to set user.author2"
6148         setfattr -n user.author3 -v author3 $testfile ||
6149                 error "$testfile unable to set user.author3"
6150         [ $(getfattr -d -m "^user" $testfile 2> /dev/null |
6151             grep "user.author" | wc -l) -eq 3 ] ||
6152                 error "$testfile missing 3 user.author xattrs"
6153
6154         echo "remove xattr..."
6155         setfattr -x trusted.name1 $testfile ||
6156                 error "$testfile error deleting trusted.name1"
6157         getfattr -d -m trusted $testfile 2> /dev/null | grep "trusted.name1" &&
6158                 error "$testfile did not delete trusted.name1 xattr"
6159
6160         setfattr -x user.author1 $testfile ||
6161                 error "$testfile error deleting user.author1"
6162         getfattr -d -m user $testfile 2> /dev/null | grep "user.author1" &&
6163                 error "$testfile did not delete trusted.name1 xattr"
6164
6165         # b10667: setting lustre special xattr be silently discarded
6166         echo "set lustre special xattr ..."
6167         setfattr -n "trusted.lov" -v "invalid value" $testfile ||
6168                 error "$testfile allowed setting trusted.lov"
6169 }
6170 run_test 102a "user xattr test =================================="
6171
6172 test_102b() {
6173         # b10930: get/set/list trusted.lov xattr
6174         echo "get/set/list trusted.lov xattr ..."
6175         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping 2-stripe test" && return
6176         local testfile=$DIR/$tfile
6177         $SETSTRIPE -S 65536 -i 1 -c $OSTCOUNT $testfile ||
6178                 error "setstripe failed"
6179         local STRIPECOUNT=$($GETSTRIPE -c $testfile) ||
6180                 error "getstripe failed"
6181         getfattr -d -m "^trusted" $testfile 2> /dev/null | \
6182         grep "trusted.lov" || error "can't get trusted.lov from $testfile"
6183
6184         local testfile2=${testfile}2
6185         local value=`getfattr -n trusted.lov $testfile 2> /dev/null | \
6186                      grep "trusted.lov" |sed -e 's/[^=]\+=//'`
6187
6188         $MCREATE $testfile2
6189         setfattr -n trusted.lov -v $value $testfile2
6190         local stripe_size=$($GETSTRIPE -S $testfile2)
6191         local stripe_count=$($GETSTRIPE -c $testfile2)
6192         [ $stripe_size -eq 65536 ] || error "stripe size $stripe_size != 65536"
6193         [ $stripe_count -eq $STRIPECOUNT ] ||
6194                 error "stripe count $stripe_count != $STRIPECOUNT"
6195         rm -f $DIR/$tfile
6196 }
6197 run_test 102b "getfattr/setfattr for trusted.lov EAs ============"
6198
6199 test_102c() {
6200         # b10930: get/set/list lustre.lov xattr
6201         echo "get/set/list lustre.lov xattr ..."
6202         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping 2-stripe test" && return
6203         test_mkdir -p $DIR/$tdir
6204         chown $RUNAS_ID $DIR/$tdir
6205         local testfile=$DIR/$tdir/$tfile
6206         $RUNAS $SETSTRIPE -S 65536 -i 1 -c $OSTCOUNT $testfile ||
6207                 error "setstripe failed"
6208         local STRIPECOUNT=$($RUNAS $GETSTRIPE -c $testfile) ||
6209                 error "getstripe failed"
6210         $RUNAS getfattr -d -m "^lustre" $testfile 2> /dev/null | \
6211         grep "lustre.lov" || error "can't get lustre.lov from $testfile"
6212
6213         local testfile2=${testfile}2
6214         local value=`getfattr -n lustre.lov $testfile 2> /dev/null | \
6215                      grep "lustre.lov" |sed -e 's/[^=]\+=//'  `
6216
6217         $RUNAS $MCREATE $testfile2
6218         $RUNAS setfattr -n lustre.lov -v $value $testfile2
6219         local stripe_size=$($RUNAS $GETSTRIPE -S $testfile2)
6220         local stripe_count=$($RUNAS $GETSTRIPE -c $testfile2)
6221         [ $stripe_size -eq 65536 ] || error "stripe size $stripe_size != 65536"
6222         [ $stripe_count -eq $STRIPECOUNT ] ||
6223                 error "stripe count $stripe_count != $STRIPECOUNT"
6224 }
6225 run_test 102c "non-root getfattr/setfattr for lustre.lov EAs ==========="
6226
6227 compare_stripe_info1() {
6228         local stripe_index_all_zero=true
6229
6230         for num in 1 2 3 4; do
6231                 for count in $(seq 1 $STRIPE_COUNT); do
6232                         for offset in $(seq 0 $[$STRIPE_COUNT - 1]); do
6233                                 local size=$((STRIPE_SIZE * num))
6234                                 local file=file"$num-$offset-$count"
6235                                 stripe_size=$(lfs getstripe -S $PWD/$file)
6236                                 [ $stripe_size -ne $size ] &&
6237                                     error "$file: size $stripe_size != $size"
6238                                 stripe_count=$(lfs getstripe -c $PWD/$file)
6239                                 # allow fewer stripes to be created, ORI-601
6240                                 [ $stripe_count -lt $(((3 * count + 3) / 4)) ]&&
6241                                     error "$file: count $stripe_count != $count"
6242                                 stripe_index=$(lfs getstripe -i $PWD/$file)
6243                                 [ $stripe_index -ne 0 ] &&
6244                                         stripe_index_all_zero=false
6245                         done
6246                 done
6247         done
6248         $stripe_index_all_zero &&
6249                 error "all files are being extracted starting from OST index 0"
6250         return 0
6251 }
6252
6253 find_lustre_tar() {
6254         [ -n "$(which tar 2>/dev/null)" ] &&
6255                 strings $(which tar) | grep -q "lustre" && echo tar
6256 }
6257
6258 test_102d() {
6259         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6260         # b10930: tar test for trusted.lov xattr
6261         TAR=$(find_lustre_tar)
6262         [ -z "$TAR" ] && skip_env "lustre-aware tar is not installed" && return
6263         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping N-stripe test" && return
6264         setup_test102
6265         test_mkdir -p $DIR/d102d
6266         $TAR xf $TMP/f102.tar -C $DIR/d102d --xattrs
6267         cd $DIR/d102d/$tdir
6268         compare_stripe_info1
6269 }
6270 run_test 102d "tar restore stripe info from tarfile,not keep osts ==========="
6271
6272 test_102f() {
6273         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6274         # b10930: tar test for trusted.lov xattr
6275         TAR=$(find_lustre_tar)
6276         [ -z "$TAR" ] && skip_env "lustre-aware tar is not installed" && return
6277         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping N-stripe test" && return
6278         setup_test102
6279         test_mkdir -p $DIR/d102f
6280         cd $DIR
6281         $TAR cf - --xattrs $tdir | $TAR xf - --xattrs -C $DIR/d102f
6282         cd $DIR/d102f/$tdir
6283         compare_stripe_info1
6284 }
6285 run_test 102f "tar copy files, not keep osts ==========="
6286
6287 grow_xattr() {
6288         local xsize=${1:-1024}  # in bytes
6289         local file=$DIR/$tfile
6290
6291         [ -z $(lctl get_param -n mdc.*.connect_flags | grep xattr) ] &&
6292                 skip "must have user_xattr" && return 0
6293         [ -z "$(which setfattr 2>/dev/null)" ] &&
6294                 skip_env "could not find setfattr" && return 0
6295         [ -z "$(which getfattr 2>/dev/null)" ] &&
6296                 skip_env "could not find getfattr" && return 0
6297
6298         touch $file
6299
6300         local value="$(generate_string $xsize)"
6301
6302         local xbig=trusted.big
6303         log "save $xbig on $file"
6304         setfattr -n $xbig -v $value $file ||
6305                 error "saving $xbig on $file failed"
6306
6307         local orig=$(get_xattr_value $xbig $file)
6308         [[ "$orig" != "$value" ]] && error "$xbig different after saving $xbig"
6309
6310         local xsml=trusted.sml
6311         log "save $xsml on $file"
6312         setfattr -n $xsml -v val $file || error "saving $xsml on $file failed"
6313
6314         local new=$(get_xattr_value $xbig $file)
6315         [[ "$new" != "$orig" ]] && error "$xbig different after saving $xsml"
6316
6317         log "grow $xsml on $file"
6318         setfattr -n $xsml -v "$value" $file ||
6319                 error "growing $xsml on $file failed"
6320
6321         new=$(get_xattr_value $xbig $file)
6322         [[ "$new" != "$orig" ]] && error "$xbig different after growing $xsml"
6323         log "$xbig still valid after growing $xsml"
6324
6325         rm -f $file
6326 }
6327
6328 test_102h() { # bug 15777
6329         grow_xattr 1024
6330 }
6331 run_test 102h "grow xattr from inside inode to external block"
6332
6333 test_102ha() {
6334         large_xattr_enabled || { skip "large_xattr disabled" && return; }
6335         grow_xattr $(max_xattr_size)
6336 }
6337 run_test 102ha "grow xattr from inside inode to external inode"
6338
6339 test_102i() { # bug 17038
6340         touch $DIR/$tfile
6341         ln -s $DIR/$tfile $DIR/${tfile}link
6342         getfattr -n trusted.lov $DIR/$tfile || error "lgetxattr on $DIR/$tfile failed"
6343         getfattr -h -n trusted.lov $DIR/${tfile}link 2>&1 | grep -i "no such attr" || error "error for lgetxattr on $DIR/${tfile}link is not ENODATA"
6344         rm -f $DIR/$tfile $DIR/${tfile}link
6345 }
6346 run_test 102i "lgetxattr test on symbolic link ============"
6347
6348 test_102j() {
6349         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6350         TAR=$(find_lustre_tar)
6351         [ -z "$TAR" ] && skip_env "lustre-aware tar is not installed" && return
6352         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping N-stripe test" && return
6353         setup_test102 "$RUNAS"
6354         test_mkdir -p $DIR/d102j
6355         chown $RUNAS_ID $DIR/d102j
6356         $RUNAS $TAR xf $TMP/f102.tar -C $DIR/d102j --xattrs
6357         cd $DIR/d102j/$tdir
6358         compare_stripe_info1 "$RUNAS"
6359 }
6360 run_test 102j "non-root tar restore stripe info from tarfile, not keep osts ==="
6361
6362 test_102k() {
6363         touch $DIR/$tfile
6364         # b22187 just check that does not crash for regular file.
6365         setfattr -n trusted.lov $DIR/$tfile
6366         # b22187 'setfattr -n trusted.lov' should work as remove LOV EA for directories
6367         local test_kdir=$DIR/d102k
6368         test_mkdir $test_kdir
6369         local default_size=`$GETSTRIPE -S $test_kdir`
6370         local default_count=`$GETSTRIPE -c $test_kdir`
6371         local default_offset=`$GETSTRIPE -i $test_kdir`
6372         $SETSTRIPE -S 65536 -i 0 -c $OSTCOUNT $test_kdir ||
6373                 error 'dir setstripe failed'
6374         setfattr -n trusted.lov $test_kdir
6375         local stripe_size=`$GETSTRIPE -S $test_kdir`
6376         local stripe_count=`$GETSTRIPE -c $test_kdir`
6377         local stripe_offset=`$GETSTRIPE -i $test_kdir`
6378         [ $stripe_size -eq $default_size ] ||
6379                 error "stripe size $stripe_size != $default_size"
6380         [ $stripe_count -eq $default_count ] ||
6381                 error "stripe count $stripe_count != $default_count"
6382         [ $stripe_offset -eq $default_offset ] ||
6383                 error "stripe offset $stripe_offset != $default_offset"
6384         rm -rf $DIR/$tfile $test_kdir
6385 }
6386 run_test 102k "setfattr without parameter of value shouldn't cause a crash"
6387
6388 test_102l() {
6389         # LU-532 trusted. xattr is invisible to non-root
6390         local testfile=$DIR/$tfile
6391
6392         touch $testfile
6393
6394         echo "listxattr as user..."
6395         chown $RUNAS_ID $testfile
6396         $RUNAS getfattr -d -m '.*' $testfile 2>&1 |
6397             grep -q "trusted" &&
6398                 error "$testfile trusted xattrs are user visible"
6399
6400         return 0;
6401 }
6402 run_test 102l "listxattr size test =================================="
6403
6404 test_102m() { # LU-3403 llite: error of listxattr when buffer is small
6405         local path=$DIR/$tfile
6406         touch $path
6407
6408         listxattr_size_check $path || error "listattr_size_check $path failed"
6409 }
6410 run_test 102m "Ensure listxattr fails on small bufffer ========"
6411
6412 cleanup_test102
6413
6414 getxattr() { # getxattr path name
6415         # Return the base64 encoding of the value of xattr name on path.
6416         local path=$1
6417         local name=$2
6418
6419         # # getfattr --absolute-names --encoding=base64 --name=trusted.lov $path
6420         # file: $path
6421         # trusted.lov=0s0AvRCwEAAAAGAAAAAAAAAAAEAAACAAAAAAAQAAEAA...AAAAAAAAA=
6422         #
6423         # We print just 0s0AvRCwEAAAAGAAAAAAAAAAAEAAACAAAAAAAQAAEAA...AAAAAAAAA=
6424
6425         getfattr --absolute-names --encoding=base64 --name=$name $path |
6426                 awk -F= -v name=$name '$1 == name {
6427                         print substr($0, index($0, "=") + 1);
6428         }'
6429 }
6430
6431 test_102n() { # LU-4101 mdt: protect internal xattrs
6432         local file0=$DIR/$tfile.0
6433         local file1=$DIR/$tfile.1
6434         local xattr0=$TMP/$tfile.0
6435         local xattr1=$TMP/$tfile.1
6436         local name
6437         local value
6438
6439         if [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.5.50) ]
6440         then
6441                 skip "MDT < 2.5.50 allows setxattr on internal trusted xattrs"
6442                 return
6443         fi
6444
6445         rm -rf $file0 $file1 $xattr0 $xattr1
6446         touch $file0 $file1
6447
6448         # Get 'before' xattrs of $file1.
6449         getfattr --absolute-names --dump --match=- $file1 > $xattr0
6450
6451         for name in lov lma lmv link fid version som hsm lfsck_namespace; do
6452                 # Try to copy xattr from $file0 to $file1.
6453                 value=$(getxattr $file0 trusted.$name 2> /dev/null)
6454
6455                 setfattr --name=trusted.$name --value="$value" $file1 ||
6456                         error "setxattr 'trusted.$name' failed"
6457
6458                 # Try to set a garbage xattr.
6459                 value=0sVGhlIHF1aWNrIGJyb3duIGZveCBqdW1wcyBvdmVyIGl0c2VsZi4=
6460
6461                 setfattr --name=trusted.$name --value="$value" $file1 ||
6462                         error "setxattr 'trusted.$name' failed"
6463
6464                 # Try to remove the xattr from $file1. We don't care if this
6465                 # appears to succeed or fail, we just don't want there to be
6466                 # any changes or crashes.
6467                 setfattr --remove=$trusted.$name $file1 2> /dev/null
6468         done
6469
6470         # Get 'after' xattrs of file1.
6471         getfattr --absolute-names --dump --match=- $file1 > $xattr1
6472
6473         if ! diff $xattr0 $xattr1; then
6474                 error "before and after xattrs of '$file1' differ"
6475         fi
6476
6477         rm -rf $file0 $file1 $xattr0 $xattr1
6478
6479         return 0
6480 }
6481 run_test 102n "silently ignore setxattr on internal trusted xattrs"
6482
6483 run_acl_subtest()
6484 {
6485     $LUSTRE/tests/acl/run $LUSTRE/tests/acl/$1.test
6486     return $?
6487 }
6488
6489 test_103 () {
6490         [ "$UID" != 0 ] && skip_env "must run as root" && return
6491         [ -z "$(lctl get_param -n mdc.*-mdc-*.connect_flags | grep acl)" ] &&
6492                 skip "must have acl enabled" && return
6493         [ -z "$(which setfacl 2>/dev/null)" ] &&
6494                 skip_env "could not find setfacl" && return
6495         $GSS && skip "could not run under gss" && return
6496
6497         declare -a identity_old
6498
6499         for num in $(seq $MDSCOUNT); do
6500                 switch_identity $num true || identity_old[$num]=$?
6501         done
6502
6503         SAVE_UMASK=$(umask)
6504         umask 0022
6505         cd $DIR
6506
6507         echo "performing cp ..."
6508         run_acl_subtest cp || error "run_acl_subtest cp failed"
6509         echo "performing getfacl-noacl..."
6510         run_acl_subtest getfacl-noacl || error "getfacl-noacl test failed"
6511         echo "performing misc..."
6512         run_acl_subtest misc || error  "misc test failed"
6513         echo "performing permissions..."
6514         run_acl_subtest permissions || error "permissions failed"
6515         echo "performing setfacl..."
6516         run_acl_subtest setfacl || error  "setfacl test failed"
6517
6518         # inheritance test got from HP
6519         echo "performing inheritance..."
6520         cp $LUSTRE/tests/acl/make-tree . || error "cannot copy make-tree"
6521         chmod +x make-tree || error "chmod +x failed"
6522         run_acl_subtest inheritance || error "inheritance test failed"
6523         rm -f make-tree
6524
6525         echo "LU-974 ignore umask when acl is enabled..."
6526         run_acl_subtest 974 || error "LU-974 umask test failed"
6527         if [ $MDSCOUNT -ge 2 ]; then
6528                 run_acl_subtest 974_remote ||
6529                         error "LU-974 umask test failed under remote dir"
6530         fi
6531
6532         echo "LU-2561 newly created file is same size as directory..."
6533         run_acl_subtest 2561 || error "LU-2561 test failed"
6534
6535         cd $SAVE_PWD
6536         umask $SAVE_UMASK
6537
6538         for num in $(seq $MDSCOUNT); do
6539                 if [ "${identity_old[$num]}" = 1 ]; then
6540                         switch_identity $num false || identity_old[$num]=$?
6541                 fi
6542         done
6543 }
6544 run_test 103 "acl test ========================================="
6545
6546 test_104a() {
6547         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6548         touch $DIR/$tfile
6549         lfs df || error "lfs df failed"
6550         lfs df -ih || error "lfs df -ih failed"
6551         lfs df -h $DIR || error "lfs df -h $DIR failed"
6552         lfs df -i $DIR || error "lfs df -i $DIR failed"
6553         lfs df $DIR/$tfile || error "lfs df $DIR/$tfile failed"
6554         lfs df -ih $DIR/$tfile || error "lfs df -ih $DIR/$tfile failed"
6555
6556         local OSC=$(lctl dl | grep OST0000-osc-[^M] | awk '{ print $4 }')
6557         lctl --device %$OSC deactivate
6558         lfs df || error "lfs df with deactivated OSC failed"
6559         lctl --device %$OSC activate
6560         # wait the osc back to normal
6561         wait_osc_import_state client ost FULL
6562
6563         lfs df || error "lfs df with reactivated OSC failed"
6564         rm -f $DIR/$tfile
6565 }
6566 run_test 104a "lfs df [-ih] [path] test ========================="
6567
6568 test_104b() {
6569         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6570         [ $RUNAS_ID -eq $UID ] &&
6571                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
6572         chmod 666 /dev/obd
6573         denied_cnt=$(($($RUNAS $LFS check servers 2>&1 |
6574                         grep "Permission denied" | wc -l)))
6575         if [ $denied_cnt -ne 0 ]; then
6576                 error "lfs check servers test failed"
6577         fi
6578 }
6579 run_test 104b "$RUNAS lfs check servers test ===================="
6580
6581 test_105a() {
6582         # doesn't work on 2.4 kernels
6583         touch $DIR/$tfile
6584         if [ -n "$(mount | grep "$MOUNT.*flock" | grep -v noflock)" ]; then
6585                 flocks_test 1 on -f $DIR/$tfile || error "fail flock on"
6586         else
6587                 flocks_test 1 off -f $DIR/$tfile || error "fail flock off"
6588         fi
6589         rm -f $DIR/$tfile
6590 }
6591 run_test 105a "flock when mounted without -o flock test ========"
6592
6593 test_105b() {
6594         touch $DIR/$tfile
6595         if [ -n "$(mount | grep "$MOUNT.*flock" | grep -v noflock)" ]; then
6596                 flocks_test 1 on -c $DIR/$tfile || error "fail flock on"
6597         else
6598                 flocks_test 1 off -c $DIR/$tfile || error "fail flock off"
6599         fi
6600         rm -f $DIR/$tfile
6601 }
6602 run_test 105b "fcntl when mounted without -o flock test ========"
6603
6604 test_105c() {
6605         touch $DIR/$tfile
6606         if [ -n "$(mount | grep "$MOUNT.*flock" | grep -v noflock)" ]; then
6607                 flocks_test 1 on -l $DIR/$tfile || error "fail flock on"
6608         else
6609                 flocks_test 1 off -l $DIR/$tfile || error "fail flock off"
6610         fi
6611         rm -f $DIR/$tfile
6612 }
6613 run_test 105c "lockf when mounted without -o flock test ========"
6614
6615 test_105d() { # bug 15924
6616         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6617         test_mkdir -p $DIR/$tdir
6618         [ -z "$(mount | grep "$MOUNT.*flock" | grep -v noflock)" ] &&
6619                 skip "mount w/o flock enabled" && return
6620         #define OBD_FAIL_LDLM_CP_CB_WAIT  0x315
6621         $LCTL set_param fail_loc=0x80000315
6622         flocks_test 2 $DIR/$tdir
6623 }
6624 run_test 105d "flock race (should not freeze) ========"
6625
6626 test_105e() { # bug 22660 && 22040
6627         [ -z "$(mount | grep "$MOUNT.*flock" | grep -v noflock)" ] &&
6628                 skip "mount w/o flock enabled" && return
6629         touch $DIR/$tfile
6630         flocks_test 3 $DIR/$tfile
6631 }
6632 run_test 105e "Two conflicting flocks from same process ======="
6633
6634 test_106() { #bug 10921
6635         test_mkdir -p $DIR/$tdir
6636         $DIR/$tdir && error "exec $DIR/$tdir succeeded"
6637         chmod 777 $DIR/$tdir || error "chmod $DIR/$tdir failed"
6638 }
6639 run_test 106 "attempt exec of dir followed by chown of that dir"
6640
6641 test_107() {
6642         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6643         CDIR=`pwd`
6644         cd $DIR
6645
6646         local file=core
6647         rm -f $file
6648
6649         local save_pattern=$(sysctl -n kernel.core_pattern)
6650         local save_uses_pid=$(sysctl -n kernel.core_uses_pid)
6651         sysctl -w kernel.core_pattern=$file
6652         sysctl -w kernel.core_uses_pid=0
6653
6654         ulimit -c unlimited
6655         sleep 60 &
6656         SLEEPPID=$!
6657
6658         sleep 1
6659
6660         kill -s 11 $SLEEPPID
6661         wait $SLEEPPID
6662         if [ -e $file ]; then
6663                 size=`stat -c%s $file`
6664                 [ $size -eq 0 ] && error "Fail to create core file $file"
6665         else
6666                 error "Fail to create core file $file"
6667         fi
6668         rm -f $file
6669         sysctl -w kernel.core_pattern=$save_pattern
6670         sysctl -w kernel.core_uses_pid=$save_uses_pid
6671         cd $CDIR
6672 }
6673 run_test 107 "Coredump on SIG"
6674
6675 test_110() {
6676         test_mkdir -p $DIR/$tdir
6677         test_mkdir $DIR/$tdir/$(str_repeat 'a' 255) ||
6678                 error "mkdir with 255 char failed"
6679         test_mkdir $DIR/$tdir/$(str_repeat 'b' 256) &&
6680                 error "mkdir with 256 char should fail, but did not"
6681         touch $DIR/$tdir/$(str_repeat 'x' 255) ||
6682                 error "create with 255 char failed"
6683         touch $DIR/$tdir/$(str_repeat 'y' 256) &&
6684                 error "create with 256 char should fail, but did not"
6685
6686         ls -l $DIR/$tdir
6687         rm -rf $DIR/$tdir
6688 }
6689 run_test 110 "filename length checking"
6690
6691 test_115() {
6692         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6693         OSTIO_pre=$(ps -e|grep ll_ost_io|awk '{print $4}'|sort -n|tail -1|\
6694             cut -c11-20)
6695         [ -z "$OSTIO_pre" ] && skip "no OSS threads" && \
6696             return
6697         echo "Starting with $OSTIO_pre threads"
6698
6699         NUMTEST=20000
6700         NUMFREE=`df -i -P $DIR | tail -n 1 | awk '{ print $4 }'`
6701         [ $NUMFREE -lt $NUMTEST ] && NUMTEST=$(($NUMFREE - 1000))
6702         echo "$NUMTEST creates/unlinks"
6703         test_mkdir -p $DIR/$tdir
6704         createmany -o $DIR/$tdir/$tfile $NUMTEST
6705         unlinkmany $DIR/$tdir/$tfile $NUMTEST
6706
6707         OSTIO_post=$(ps -e|grep ll_ost_io|awk '{print $4}'|sort -n|tail -1|\
6708             cut -c11-20)
6709
6710         # don't return an error
6711         [ $OSTIO_post == $OSTIO_pre ] && echo \
6712             "WARNING: No new ll_ost_io threads were created ($OSTIO_pre)" &&
6713             echo "This may be fine, depending on what ran before this test" &&
6714             echo "and how fast this system is." && return
6715
6716         echo "Started with $OSTIO_pre threads, ended with $OSTIO_post"
6717 }
6718 run_test 115 "verify dynamic thread creation===================="
6719
6720 free_min_max () {
6721         wait_delete_completed
6722         AVAIL=($(lctl get_param -n osc.*[oO][sS][cC]-[^M]*.kbytesavail))
6723         echo OST kbytes available: ${AVAIL[@]}
6724         MAXI=0; MAXV=${AVAIL[0]}
6725         MINI=0; MINV=${AVAIL[0]}
6726         for ((i = 0; i < ${#AVAIL[@]}; i++)); do
6727             #echo OST $i: ${AVAIL[i]}kb
6728             if [ ${AVAIL[i]} -gt $MAXV ]; then
6729                 MAXV=${AVAIL[i]}; MAXI=$i
6730             fi
6731             if [ ${AVAIL[i]} -lt $MINV ]; then
6732                 MINV=${AVAIL[i]}; MINI=$i
6733             fi
6734         done
6735         echo Min free space: OST $MINI: $MINV
6736         echo Max free space: OST $MAXI: $MAXV
6737 }
6738
6739 test_116a() { # was previously test_116()
6740         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6741         [ "$OSTCOUNT" -lt "2" ] && skip_env "$OSTCOUNT < 2 OSTs" && return
6742
6743         echo -n "Free space priority "
6744         do_facet $SINGLEMDS lctl get_param -n lo*.*-mdtlov.qos_prio_free |
6745                 head -1
6746         declare -a AVAIL
6747         free_min_max
6748
6749         [ $MINV -eq 0 ] && skip "no free space in OST$MINI, skip" && return
6750         trap simple_cleanup_common EXIT
6751
6752         # Check if we need to generate uneven OSTs
6753         test_mkdir -p $DIR/$tdir/OST${MINI}
6754         local FILL=$(($MINV / 4))
6755         local DIFF=$(($MAXV - $MINV))
6756         local DIFF2=$(($DIFF * 100 / $MINV))
6757
6758         local threshold=$(do_facet $SINGLEMDS \
6759                 lctl get_param -n *.*MDT0000-mdtlov.qos_threshold_rr | head -1)
6760         threshold=${threshold%%%}
6761         echo -n "Check for uneven OSTs: "
6762         echo -n "diff=${DIFF}KB (${DIFF2}%) must be > ${threshold}% ..."
6763
6764         if [ $DIFF2 -gt $threshold ]; then
6765                 echo "ok"
6766                 echo "Don't need to fill OST$MINI"
6767         else
6768                 # generate uneven OSTs. Write 2% over the QOS threshold value
6769                 echo "no"
6770                 DIFF=$(($threshold - $DIFF2 + 2))
6771                 DIFF2=$(( ($MINV * $DIFF)/100 ))
6772                 echo "Fill ${DIFF}% remaining space in OST${MINI} with ${DIFF2}KB"
6773                 $SETSTRIPE -i $MINI -c 1 $DIR/$tdir/OST${MINI} ||
6774                         error "setstripe failed"
6775                 DIFF=$(($DIFF2 / 2048))
6776                 i=0
6777                 while [ $i -lt $DIFF ]; do
6778                         i=$(($i + 1))
6779                         dd if=/dev/zero of=$DIR/$tdir/OST${MINI}/$tfile-$i \
6780                                 bs=2M count=1 2>/dev/null
6781                         echo -n .
6782                 done
6783                 echo .
6784                 sync
6785                 sleep_maxage
6786                 free_min_max
6787         fi
6788
6789         DIFF=$(($MAXV - $MINV))
6790         DIFF2=$(($DIFF * 100 / $MINV))
6791         echo -n "diff=${DIFF}=${DIFF2}% must be > ${threshold}% for QOS mode..."
6792         if [ $DIFF2 -gt $threshold ]; then
6793                 echo "ok"
6794         else
6795                 echo "failed - QOS mode won't be used"
6796                 skip "QOS imbalance criteria not met"
6797                 simple_cleanup_common
6798                 return
6799         fi
6800
6801         MINI1=$MINI; MINV1=$MINV
6802         MAXI1=$MAXI; MAXV1=$MAXV
6803
6804         # now fill using QOS
6805         $SETSTRIPE -c 1 $DIR/$tdir
6806         FILL=$(($FILL / 200))
6807         if [ $FILL -gt 600 ]; then
6808                 FILL=600
6809         fi
6810         echo "writing $FILL files to QOS-assigned OSTs"
6811         i=0
6812         while [ $i -lt $FILL ]; do
6813                 i=$(($i + 1))
6814                 dd if=/dev/zero of=$DIR/$tdir/$tfile-$i bs=200k \
6815                         count=1 2>/dev/null
6816                 echo -n .
6817         done
6818         echo "wrote $i 200k files"
6819         sync
6820         sleep_maxage
6821
6822         echo "Note: free space may not be updated, so measurements might be off"
6823         free_min_max
6824         DIFF2=$(($MAXV - $MINV))
6825         echo "free space delta: orig $DIFF final $DIFF2"
6826         [ $DIFF2 -gt $DIFF ] && echo "delta got worse!"
6827         DIFF=$(($MINV1 - ${AVAIL[$MINI1]}))
6828         echo "Wrote ${DIFF}KB to smaller OST $MINI1"
6829         DIFF2=$(($MAXV1 - ${AVAIL[$MAXI1]}))
6830         echo "Wrote ${DIFF2}KB to larger OST $MAXI1"
6831         FILL=$(($DIFF2 * 100 / $DIFF - 100))
6832         [ $DIFF -gt 0 ] &&
6833                 echo "Wrote ${FILL}% more data to larger OST $MAXI1"
6834
6835         # Figure out which files were written where
6836         UUID=$(lctl get_param -n lov.${FSNAME}-clilov-*.target_obd |
6837                   awk '/'$MINI1': / {print $2; exit}')
6838         echo $UUID
6839         MINC=$($GETSTRIPE --ost $UUID $DIR/$tdir | grep $DIR | wc -l)
6840         echo "$MINC files created on smaller OST $MINI1"
6841         UUID=$(lctl get_param -n lov.${FSNAME}-clilov-*.target_obd |
6842                   awk '/'$MAXI1': / {print $2; exit}')
6843         echo $UUID
6844         MAXC=$($GETSTRIPE --ost $UUID $DIR/$tdir | grep $DIR | wc -l)
6845         echo "$MAXC files created on larger OST $MAXI1"
6846         FILL=$(($MAXC * 100 / $MINC - 100))
6847         [ $MINC -gt 0 ] &&
6848                 echo "Wrote ${FILL}% more files to larger OST $MAXI1"
6849         [ $MAXC -gt $MINC ] ||
6850                 error_ignore LU-9 "stripe QOS didn't balance free space"
6851         simple_cleanup_common
6852 }
6853 run_test 116a "stripe QOS: free space balance ==================="
6854
6855 test_116b() { # LU-2093
6856         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6857 #define OBD_FAIL_MDS_OSC_CREATE_FAIL     0x147
6858         local old_rr
6859         old_rr=$(do_facet $SINGLEMDS lctl get_param -n lov.*mdtlov*.qos_threshold_rr)
6860         do_facet $SINGLEMDS lctl set_param lov.*mdtlov*.qos_threshold_rr 0
6861         mkdir -p $DIR/$tdir
6862         do_facet $SINGLEMDS lctl set_param fail_loc=0x147
6863         createmany -o $DIR/$tdir/f- 20 || error "can't create"
6864         do_facet $SINGLEMDS lctl set_param fail_loc=0
6865         rm -rf $DIR/$tdir
6866         do_facet $SINGLEMDS lctl set_param lov.*mdtlov*.qos_threshold_rr $old_rr
6867 }
6868 run_test 116b "QoS shouldn't LBUG if not enough OSTs found on the 2nd pass"
6869
6870 test_117() # bug 10891
6871 {
6872         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6873         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1
6874         #define OBD_FAIL_OST_SETATTR_CREDITS 0x21e
6875         lctl set_param fail_loc=0x21e
6876         > $DIR/$tfile || error "truncate failed"
6877         lctl set_param fail_loc=0
6878         echo "Truncate succeeded."
6879         rm -f $DIR/$tfile
6880 }
6881 run_test 117 "verify osd extend =========="
6882
6883 NO_SLOW_RESENDCOUNT=4
6884 export OLD_RESENDCOUNT=""
6885 set_resend_count () {
6886         local PROC_RESENDCOUNT="osc.${FSNAME}-OST*-osc-*.resend_count"
6887         OLD_RESENDCOUNT=$(lctl get_param -n $PROC_RESENDCOUNT | head -1)
6888         lctl set_param -n $PROC_RESENDCOUNT $1
6889         echo resend_count is set to $(lctl get_param -n $PROC_RESENDCOUNT)
6890 }
6891
6892 # for reduce test_118* time (b=14842)
6893 [ "$SLOW" = "no" ] && set_resend_count $NO_SLOW_RESENDCOUNT
6894
6895 # Reset async IO behavior after error case
6896 reset_async() {
6897         FILE=$DIR/reset_async
6898
6899         # Ensure all OSCs are cleared
6900         $SETSTRIPE -c -1 $FILE
6901         dd if=/dev/zero of=$FILE bs=64k count=$OSTCOUNT
6902         sync
6903         rm $FILE
6904 }
6905
6906 test_118a() #bug 11710
6907 {
6908         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6909         reset_async
6910
6911         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
6912         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
6913         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
6914
6915         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
6916                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
6917                 return 1;
6918         fi
6919         rm -f $DIR/$tfile
6920 }
6921 run_test 118a "verify O_SYNC works =========="
6922
6923 test_118b()
6924 {
6925         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6926         remote_ost_nodsh && skip "remote OST with nodsh" && return
6927
6928         reset_async
6929
6930         #define OBD_FAIL_OST_ENOENT 0x217
6931         set_nodes_failloc "$(osts_nodes)" 0x217
6932         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
6933         RC=$?
6934         set_nodes_failloc "$(osts_nodes)" 0
6935         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
6936         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
6937                     grep -c writeback)
6938
6939         if [[ $RC -eq 0 ]]; then
6940                 error "Must return error due to dropped pages, rc=$RC"
6941                 return 1;
6942         fi
6943
6944         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
6945                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
6946                 return 1;
6947         fi
6948
6949         echo "Dirty pages not leaked on ENOENT"
6950
6951         # Due to the above error the OSC will issue all RPCs syncronously
6952         # until a subsequent RPC completes successfully without error.
6953         $MULTIOP $DIR/$tfile Ow4096yc
6954         rm -f $DIR/$tfile
6955
6956         return 0
6957 }
6958 run_test 118b "Reclaim dirty pages on fatal error =========="
6959
6960 test_118c()
6961 {
6962         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6963
6964         # for 118c, restore the original resend count, LU-1940
6965         [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] &&
6966                                 set_resend_count $OLD_RESENDCOUNT
6967         remote_ost_nodsh && skip "remote OST with nodsh" && return
6968
6969         reset_async
6970
6971         #define OBD_FAIL_OST_EROFS               0x216
6972         set_nodes_failloc "$(osts_nodes)" 0x216
6973
6974         # multiop should block due to fsync until pages are written
6975         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
6976         MULTIPID=$!
6977         sleep 1
6978
6979         if [[ `ps h -o comm -p $MULTIPID` != "multiop" ]]; then
6980                 error "Multiop failed to block on fsync, pid=$MULTIPID"
6981         fi
6982
6983         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
6984                     grep -c writeback)
6985         if [[ $WRITEBACK -eq 0 ]]; then
6986                 error "No page in writeback, writeback=$WRITEBACK"
6987         fi
6988
6989         set_nodes_failloc "$(osts_nodes)" 0
6990         wait $MULTIPID
6991         RC=$?
6992         if [[ $RC -ne 0 ]]; then
6993                 error "Multiop fsync failed, rc=$RC"
6994         fi
6995
6996         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
6997         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
6998                     grep -c writeback)
6999         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
7000                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
7001         fi
7002
7003         rm -f $DIR/$tfile
7004         echo "Dirty pages flushed via fsync on EROFS"
7005         return 0
7006 }
7007 run_test 118c "Fsync blocks on EROFS until dirty pages are flushed =========="
7008
7009 # continue to use small resend count to reduce test_118* time (b=14842)
7010 [ "$SLOW" = "no" ] && set_resend_count $NO_SLOW_RESENDCOUNT
7011
7012 test_118d()
7013 {
7014         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7015         remote_ost_nodsh && skip "remote OST with nodsh" && return
7016
7017         reset_async
7018
7019         #define OBD_FAIL_OST_BRW_PAUSE_BULK
7020         set_nodes_failloc "$(osts_nodes)" 0x214
7021         # multiop should block due to fsync until pages are written
7022         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
7023         MULTIPID=$!
7024         sleep 1
7025
7026         if [[ `ps h -o comm -p $MULTIPID` != "multiop" ]]; then
7027                 error "Multiop failed to block on fsync, pid=$MULTIPID"
7028         fi
7029
7030         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
7031                     grep -c writeback)
7032         if [[ $WRITEBACK -eq 0 ]]; then
7033                 error "No page in writeback, writeback=$WRITEBACK"
7034         fi
7035
7036         wait $MULTIPID || error "Multiop fsync failed, rc=$?"
7037         set_nodes_failloc "$(osts_nodes)" 0
7038
7039         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
7040         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
7041                     grep -c writeback)
7042         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
7043                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
7044         fi
7045
7046         rm -f $DIR/$tfile
7047         echo "Dirty pages gaurenteed flushed via fsync"
7048         return 0
7049 }
7050 run_test 118d "Fsync validation inject a delay of the bulk =========="
7051
7052 test_118f() {
7053         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7054         reset_async
7055
7056         #define OBD_FAIL_OSC_BRW_PREP_REQ2        0x40a
7057         lctl set_param fail_loc=0x8000040a
7058
7059         # Should simulate EINVAL error which is fatal
7060         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
7061         RC=$?
7062         if [[ $RC -eq 0 ]]; then
7063                 error "Must return error due to dropped pages, rc=$RC"
7064         fi
7065
7066         lctl set_param fail_loc=0x0
7067
7068         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
7069         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
7070         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
7071                     grep -c writeback)
7072         if [[ $LOCKED -ne 0 ]]; then
7073                 error "Locked pages remain in cache, locked=$LOCKED"
7074         fi
7075
7076         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
7077                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
7078         fi
7079
7080         rm -f $DIR/$tfile
7081         echo "No pages locked after fsync"
7082
7083         reset_async
7084         return 0
7085 }
7086 run_test 118f "Simulate unrecoverable OSC side error =========="
7087
7088 test_118g() {
7089         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7090         reset_async
7091
7092         #define OBD_FAIL_OSC_BRW_PREP_REQ        0x406
7093         lctl set_param fail_loc=0x406
7094
7095         # simulate local -ENOMEM
7096         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
7097         RC=$?
7098
7099         lctl set_param fail_loc=0
7100         if [[ $RC -eq 0 ]]; then
7101                 error "Must return error due to dropped pages, rc=$RC"
7102         fi
7103
7104         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
7105         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
7106         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
7107                         grep -c writeback)
7108         if [[ $LOCKED -ne 0 ]]; then
7109                 error "Locked pages remain in cache, locked=$LOCKED"
7110         fi
7111
7112         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
7113                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
7114         fi
7115
7116         rm -f $DIR/$tfile
7117         echo "No pages locked after fsync"
7118
7119         reset_async
7120         return 0
7121 }
7122 run_test 118g "Don't stay in wait if we got local -ENOMEM  =========="
7123
7124 test_118h() {
7125         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7126         remote_ost_nodsh && skip "remote OST with nodsh" && return
7127
7128         reset_async
7129
7130         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
7131         set_nodes_failloc "$(osts_nodes)" 0x20e
7132         # Should simulate ENOMEM error which is recoverable and should be handled by timeout
7133         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
7134         RC=$?
7135
7136         set_nodes_failloc "$(osts_nodes)" 0
7137         if [[ $RC -eq 0 ]]; then
7138                 error "Must return error due to dropped pages, rc=$RC"
7139         fi
7140
7141         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
7142         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
7143         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
7144                     grep -c writeback)
7145         if [[ $LOCKED -ne 0 ]]; then
7146                 error "Locked pages remain in cache, locked=$LOCKED"
7147         fi
7148
7149         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
7150                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
7151         fi
7152
7153         rm -f $DIR/$tfile
7154         echo "No pages locked after fsync"
7155
7156         return 0
7157 }
7158 run_test 118h "Verify timeout in handling recoverables errors  =========="
7159
7160 [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] && set_resend_count $OLD_RESENDCOUNT
7161
7162 test_118i() {
7163         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7164         remote_ost_nodsh && skip "remote OST with nodsh" && return
7165
7166         reset_async
7167
7168         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
7169         set_nodes_failloc "$(osts_nodes)" 0x20e
7170
7171         # Should simulate ENOMEM error which is recoverable and should be handled by timeout
7172         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
7173         PID=$!
7174         sleep 5
7175         set_nodes_failloc "$(osts_nodes)" 0
7176
7177         wait $PID
7178         RC=$?
7179         if [[ $RC -ne 0 ]]; then
7180                 error "got error, but should be not, rc=$RC"
7181         fi
7182
7183         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
7184         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
7185         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
7186         if [[ $LOCKED -ne 0 ]]; then
7187                 error "Locked pages remain in cache, locked=$LOCKED"
7188         fi
7189
7190         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
7191                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
7192         fi
7193
7194         rm -f $DIR/$tfile
7195         echo "No pages locked after fsync"
7196
7197         return 0
7198 }
7199 run_test 118i "Fix error before timeout in recoverable error  =========="
7200
7201 [ "$SLOW" = "no" ] && set_resend_count 4
7202
7203 test_118j() {
7204         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7205         remote_ost_nodsh && skip "remote OST with nodsh" && return
7206
7207         reset_async
7208
7209         #define OBD_FAIL_OST_BRW_WRITE_BULK2     0x220
7210         set_nodes_failloc "$(osts_nodes)" 0x220
7211
7212         # return -EIO from OST
7213         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
7214         RC=$?
7215         set_nodes_failloc "$(osts_nodes)" 0x0
7216         if [[ $RC -eq 0 ]]; then
7217                 error "Must return error due to dropped pages, rc=$RC"
7218         fi
7219
7220         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
7221         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
7222         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
7223         if [[ $LOCKED -ne 0 ]]; then
7224                 error "Locked pages remain in cache, locked=$LOCKED"
7225         fi
7226
7227         # in recoverable error on OST we want resend and stay until it finished
7228         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
7229                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
7230         fi
7231
7232         rm -f $DIR/$tfile
7233         echo "No pages locked after fsync"
7234
7235         return 0
7236 }
7237 run_test 118j "Simulate unrecoverable OST side error =========="
7238
7239 test_118k()
7240 {
7241         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7242         remote_ost_nodsh && skip "remote OSTs with nodsh" && return
7243
7244         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
7245         set_nodes_failloc "$(osts_nodes)" 0x20e
7246         test_mkdir -p $DIR/$tdir
7247
7248         for ((i=0;i<10;i++)); do
7249                 (dd if=/dev/zero of=$DIR/$tdir/$tfile-$i bs=1M count=10 || \
7250                         error "dd to $DIR/$tdir/$tfile-$i failed" )&
7251                 SLEEPPID=$!
7252                 sleep 0.500s
7253                 kill $SLEEPPID
7254                 wait $SLEEPPID
7255         done
7256
7257         set_nodes_failloc "$(osts_nodes)" 0
7258         rm -rf $DIR/$tdir
7259 }
7260 run_test 118k "bio alloc -ENOMEM and IO TERM handling ========="
7261
7262 test_118l()
7263 {
7264         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7265         # LU-646
7266         test_mkdir -p $DIR/$tdir
7267         $MULTIOP $DIR/$tdir Dy || error "fsync dir failed"
7268         rm -rf $DIR/$tdir
7269 }
7270 run_test 118l "fsync dir ========="
7271
7272 test_118m() # LU-3066
7273 {
7274         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7275         test_mkdir -p $DIR/$tdir
7276         $MULTIOP $DIR/$tdir DY || error "fdatasync dir failed"
7277         rm -rf $DIR/$tdir
7278 }
7279 run_test 118m "fdatasync dir ========="
7280
7281 [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] && set_resend_count $OLD_RESENDCOUNT
7282
7283 test_119a() # bug 11737
7284 {
7285         BSIZE=$((512 * 1024))
7286         directio write $DIR/$tfile 0 1 $BSIZE
7287         # We ask to read two blocks, which is more than a file size.
7288         # directio will indicate an error when requested and actual
7289         # sizes aren't equeal (a normal situation in this case) and
7290         # print actual read amount.
7291         NOB=`directio read $DIR/$tfile 0 2 $BSIZE | awk '/error/ {print $6}'`
7292         if [ "$NOB" != "$BSIZE" ]; then
7293                 error "read $NOB bytes instead of $BSIZE"
7294         fi
7295         rm -f $DIR/$tfile
7296 }
7297 run_test 119a "Short directIO read must return actual read amount"
7298
7299 test_119b() # bug 11737
7300 {
7301         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping 2-stripe test" && return
7302
7303         $SETSTRIPE -c 2 $DIR/$tfile || error "setstripe failed"
7304         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=1 || error "dd failed"
7305         sync
7306         $MULTIOP $DIR/$tfile oO_RDONLY:O_DIRECT:r$((2048 * 1024)) || \
7307                 error "direct read failed"
7308         rm -f $DIR/$tfile
7309 }
7310 run_test 119b "Sparse directIO read must return actual read amount"
7311
7312 test_119c() # bug 13099
7313 {
7314         BSIZE=1048576
7315         directio write $DIR/$tfile 3 1 $BSIZE || error "direct write failed"
7316         directio readhole $DIR/$tfile 0 2 $BSIZE || error "reading hole failed"
7317         rm -f $DIR/$tfile
7318 }
7319 run_test 119c "Testing for direct read hitting hole"
7320
7321 test_119d() # bug 15950
7322 {
7323         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7324         MAX_RPCS_IN_FLIGHT=`$LCTL get_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight`
7325         $LCTL set_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight 1
7326         BSIZE=1048576
7327         $SETSTRIPE $DIR/$tfile -i 0 -c 1 || error "setstripe failed"
7328         $DIRECTIO write $DIR/$tfile 0 1 $BSIZE || error "first directio failed"
7329         #define OBD_FAIL_OSC_DIO_PAUSE           0x40d
7330         lctl set_param fail_loc=0x40d
7331         $DIRECTIO write $DIR/$tfile 1 4 $BSIZE &
7332         pid_dio=$!
7333         sleep 1
7334         cat $DIR/$tfile > /dev/null &
7335         lctl set_param fail_loc=0
7336         pid_reads=$!
7337         wait $pid_dio
7338         log "the DIO writes have completed, now wait for the reads (should not block very long)"
7339         sleep 2
7340         [ -n "`ps h -p $pid_reads -o comm`" ] && \
7341         error "the read rpcs have not completed in 2s"
7342         rm -f $DIR/$tfile
7343         $LCTL set_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight $MAX_RPCS_IN_FLIGHT
7344 }
7345 run_test 119d "The DIO path should try to send a new rpc once one is completed"
7346
7347 test_120a() {
7348         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7349         test_mkdir -p $DIR/$tdir
7350         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
7351                skip "no early lock cancel on server" && return 0
7352
7353         lru_resize_disable mdc
7354         lru_resize_disable osc
7355         cancel_lru_locks mdc
7356         # asynchronous object destroy at MDT could cause bl ast to client
7357         cancel_lru_locks osc
7358
7359         stat $DIR/$tdir > /dev/null
7360         can1=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
7361         blk1=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
7362         test_mkdir $DIR/$tdir/d1
7363         can2=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
7364         blk2=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
7365         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
7366         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
7367         lru_resize_enable mdc
7368         lru_resize_enable osc
7369 }
7370 run_test 120a "Early Lock Cancel: mkdir test"
7371
7372 test_120b() {
7373         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7374         test_mkdir -p $DIR/$tdir
7375         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
7376                skip "no early lock cancel on server" && return 0
7377         lru_resize_disable mdc
7378         lru_resize_disable osc
7379         cancel_lru_locks mdc
7380         stat $DIR/$tdir > /dev/null
7381         can1=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
7382         blk1=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
7383         touch $DIR/$tdir/f1
7384         can2=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
7385         blk2=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
7386         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
7387         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
7388         lru_resize_enable mdc
7389         lru_resize_enable osc
7390 }
7391 run_test 120b "Early Lock Cancel: create test"
7392
7393 test_120c() {
7394         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7395         test_mkdir -p $DIR/$tdir
7396         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
7397                skip "no early lock cancel on server" && return 0
7398         lru_resize_disable mdc
7399         lru_resize_disable osc
7400         test_mkdir -p $DIR/$tdir/d1
7401         test_mkdir -p $DIR/$tdir/d2
7402         touch $DIR/$tdir/d1/f1
7403         cancel_lru_locks mdc
7404         stat $DIR/$tdir/d1 $DIR/$tdir/d2 $DIR/$tdir/d1/f1 > /dev/null
7405         can1=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
7406         blk1=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
7407         ln $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2
7408         can2=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
7409         blk2=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
7410         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
7411         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
7412         lru_resize_enable mdc
7413         lru_resize_enable osc
7414 }
7415 run_test 120c "Early Lock Cancel: link test"
7416
7417 test_120d() {
7418         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7419         test_mkdir -p $DIR/$tdir
7420         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
7421                skip "no early lock cancel on server" && return 0
7422         lru_resize_disable mdc
7423         lru_resize_disable osc
7424         touch $DIR/$tdir
7425         cancel_lru_locks mdc
7426         stat $DIR/$tdir > /dev/null
7427         can1=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
7428         blk1=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
7429         chmod a+x $DIR/$tdir
7430         can2=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
7431         blk2=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
7432         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
7433         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
7434         lru_resize_enable mdc
7435         lru_resize_enable osc
7436 }
7437 run_test 120d "Early Lock Cancel: setattr test"
7438
7439 test_120e() {
7440         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7441         test_mkdir -p $DIR/$tdir
7442         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
7443                skip "no early lock cancel on server" && return 0
7444         lru_resize_disable mdc
7445         lru_resize_disable osc
7446         dd if=/dev/zero of=$DIR/$tdir/f1 count=1
7447         cancel_lru_locks mdc
7448         cancel_lru_locks osc
7449         dd if=$DIR/$tdir/f1 of=/dev/null
7450         stat $DIR/$tdir $DIR/$tdir/f1 > /dev/null
7451         can1=`lctl get_param -n ldlm.services.ldlm_canceld.stats |
7452               awk '/ldlm_cancel/ {print $2}'`
7453         blk1=`lctl get_param -n ldlm.services.ldlm_cbd.stats |
7454               awk '/ldlm_bl_callback/ {print $2}'`
7455         unlink $DIR/$tdir/f1
7456         can2=`lctl get_param -n ldlm.services.ldlm_canceld.stats |
7457               awk '/ldlm_cancel/ {print $2}'`
7458         blk2=`lctl get_param -n ldlm.services.ldlm_cbd.stats |
7459               awk '/ldlm_bl_callback/ {print $2}'`
7460         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
7461         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
7462         lru_resize_enable mdc
7463         lru_resize_enable osc
7464 }
7465 run_test 120e "Early Lock Cancel: unlink test"
7466
7467 test_120f() {
7468         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7469         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
7470                skip "no early lock cancel on server" && return 0
7471         test_mkdir -p $DIR/$tdir
7472         lru_resize_disable mdc
7473         lru_resize_disable osc
7474         test_mkdir -p $DIR/$tdir/d1
7475         test_mkdir -p $DIR/$tdir/d2
7476         dd if=/dev/zero of=$DIR/$tdir/d1/f1 count=1
7477         dd if=/dev/zero of=$DIR/$tdir/d2/f2 count=1
7478         cancel_lru_locks mdc
7479         cancel_lru_locks osc
7480         dd if=$DIR/$tdir/d1/f1 of=/dev/null
7481         dd if=$DIR/$tdir/d2/f2 of=/dev/null
7482         stat $DIR/$tdir/d1 $DIR/$tdir/d2 $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2 > /dev/null
7483         can1=`lctl get_param -n ldlm.services.ldlm_canceld.stats |
7484               awk '/ldlm_cancel/ {print $2}'`
7485         blk1=`lctl get_param -n ldlm.services.ldlm_cbd.stats |
7486               awk '/ldlm_bl_callback/ {print $2}'`
7487         mv $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2
7488         can2=`lctl get_param -n ldlm.services.ldlm_canceld.stats |
7489               awk '/ldlm_cancel/ {print $2}'`
7490         blk2=`lctl get_param -n ldlm.services.ldlm_cbd.stats |
7491               awk '/ldlm_bl_callback/ {print $2}'`
7492         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
7493         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
7494         lru_resize_enable mdc
7495         lru_resize_enable osc
7496 }
7497 run_test 120f "Early Lock Cancel: rename test"
7498
7499 test_120g() {
7500         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7501         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
7502                skip "no early lock cancel on server" && return 0
7503         lru_resize_disable mdc
7504         lru_resize_disable osc
7505         count=10000
7506         echo create $count files
7507         test_mkdir -p $DIR/$tdir
7508         cancel_lru_locks mdc
7509         cancel_lru_locks osc
7510         t0=`date +%s`
7511
7512         can0=`lctl get_param -n ldlm.services.ldlm_canceld.stats |
7513               awk '/ldlm_cancel/ {print $2}'`
7514         blk0=`lctl get_param -n ldlm.services.ldlm_cbd.stats |
7515               awk '/ldlm_bl_callback/ {print $2}'`
7516         createmany -o $DIR/$tdir/f $count
7517         sync
7518         can1=`lctl get_param -n ldlm.services.ldlm_canceld.stats |
7519               awk '/ldlm_cancel/ {print $2}'`
7520         blk1=`lctl get_param -n ldlm.services.ldlm_cbd.stats |
7521               awk '/ldlm_bl_callback/ {print $2}'`
7522         t1=`date +%s`
7523         echo total: $((can1-can0)) cancels, $((blk1-blk0)) blockings
7524         echo rm $count files
7525         rm -r $DIR/$tdir
7526         sync
7527         can2=`lctl get_param -n ldlm.services.ldlm_canceld.stats |
7528               awk '/ldlm_cancel/ {print $2}'`
7529         blk2=`lctl get_param -n ldlm.services.ldlm_cbd.stats |
7530               awk '/ldlm_bl_callback/ {print $2}'`
7531         t2=`date +%s`
7532         echo total: $count removes in $((t2-t1))
7533         echo total: $((can2-can1)) cancels, $((blk2-blk1)) blockings
7534         sleep 2
7535         # wait for commitment of removal
7536         lru_resize_enable mdc
7537         lru_resize_enable osc
7538 }
7539 run_test 120g "Early Lock Cancel: performance test"
7540
7541 test_121() { #bug #10589
7542         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7543         rm -rf $DIR/$tfile
7544         writes=$(LANG=C dd if=/dev/zero of=$DIR/$tfile count=1 2>&1 | awk -F '+' '/out$/ {print $1}')
7545 #define OBD_FAIL_LDLM_CANCEL_RACE        0x310
7546         lctl set_param fail_loc=0x310
7547         cancel_lru_locks osc > /dev/null
7548         reads=$(LANG=C dd if=$DIR/$tfile of=/dev/null 2>&1 | awk -F '+' '/in$/ {print $1}')
7549         lctl set_param fail_loc=0
7550         [ "$reads" -eq "$writes" ] || error "read" $reads "blocks, must be" $writes
7551 }
7552 run_test 121 "read cancel race ========="
7553
7554 test_123a() { # was test 123, statahead(bug 11401)
7555         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7556         SLOWOK=0
7557         if [ -z "$(grep "processor.*: 1" /proc/cpuinfo)" ]; then
7558             log "testing on UP system. Performance may be not as good as expected."
7559                         SLOWOK=1
7560         fi
7561
7562         rm -rf $DIR/$tdir
7563         test_mkdir -p $DIR/$tdir
7564         NUMFREE=`df -i -P $DIR | tail -n 1 | awk '{ print $4 }'`
7565         [ $NUMFREE -gt 100000 ] && NUMFREE=100000 || NUMFREE=$((NUMFREE-1000))
7566         MULT=10
7567         for ((i=100, j=0; i<=$NUMFREE; j=$i, i=$((i * MULT)) )); do
7568                 createmany -o $DIR/$tdir/$tfile $j $((i - j))
7569
7570                 max=`lctl get_param -n llite.*.statahead_max | head -n 1`
7571                 lctl set_param -n llite.*.statahead_max 0
7572                 lctl get_param llite.*.statahead_max
7573                 cancel_lru_locks mdc
7574                 cancel_lru_locks osc
7575                 stime=`date +%s`
7576                 time ls -l $DIR/$tdir | wc -l
7577                 etime=`date +%s`
7578                 delta=$((etime - stime))
7579                 log "ls $i files without statahead: $delta sec"
7580                 lctl set_param llite.*.statahead_max=$max
7581
7582                 swrong=`lctl get_param -n llite.*.statahead_stats | grep "statahead wrong:" | awk '{print $3}'`
7583                 lctl get_param -n llite.*.statahead_max | grep '[0-9]'
7584                 cancel_lru_locks mdc
7585                 cancel_lru_locks osc
7586                 stime=`date +%s`
7587                 time ls -l $DIR/$tdir | wc -l
7588                 etime=`date +%s`
7589                 delta_sa=$((etime - stime))
7590                 log "ls $i files with statahead: $delta_sa sec"
7591                 lctl get_param -n llite.*.statahead_stats
7592                 ewrong=`lctl get_param -n llite.*.statahead_stats | grep "statahead wrong:" | awk '{print $3}'`
7593
7594                 [ $swrong -lt $ewrong ] && log "statahead was stopped, maybe too many locks held!"
7595                 [ $delta -eq 0 -o $delta_sa -eq 0 ] && continue
7596
7597                 if [ $((delta_sa * 100)) -gt $((delta * 105)) -a $delta_sa -gt $((delta + 2)) ]; then
7598                     max=`lctl get_param -n llite.*.statahead_max | head -n 1`
7599                     lctl set_param -n llite.*.statahead_max 0
7600                     lctl get_param llite.*.statahead_max
7601                     cancel_lru_locks mdc
7602                     cancel_lru_locks osc
7603                     stime=`date +%s`
7604                     time ls -l $DIR/$tdir | wc -l
7605                     etime=`date +%s`
7606                     delta=$((etime - stime))
7607                     log "ls $i files again without statahead: $delta sec"
7608                     lctl set_param llite.*.statahead_max=$max
7609                     if [ $((delta_sa * 100)) -gt $((delta * 105)) -a $delta_sa -gt $((delta + 2)) ]; then
7610                         if [  $SLOWOK -eq 0 ]; then
7611                                 error "ls $i files is slower with statahead!"
7612                         else
7613                                 log "ls $i files is slower with statahead!"
7614                         fi
7615                         break
7616                     fi
7617                 fi
7618
7619                 [ $delta -gt 20 ] && break
7620                 [ $delta -gt 8 ] && MULT=$((50 / delta))
7621                 [ "$SLOW" = "no" -a $delta -gt 5 ] && break
7622         done
7623         log "ls done"
7624
7625         stime=`date +%s`
7626         rm -r $DIR/$tdir
7627         sync
7628         etime=`date +%s`
7629         delta=$((etime - stime))
7630         log "rm -r $DIR/$tdir/: $delta seconds"
7631         log "rm done"
7632         lctl get_param -n llite.*.statahead_stats
7633 }
7634 run_test 123a "verify statahead work"
7635
7636 test_123b () { # statahead(bug 15027)
7637         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7638         test_mkdir -p $DIR/$tdir
7639         createmany -o $DIR/$tdir/$tfile-%d 1000
7640
7641         cancel_lru_locks mdc
7642         cancel_lru_locks osc
7643
7644 #define OBD_FAIL_MDC_GETATTR_ENQUEUE     0x803
7645         lctl set_param fail_loc=0x80000803
7646         ls -lR $DIR/$tdir > /dev/null
7647         log "ls done"
7648         lctl set_param fail_loc=0x0
7649         lctl get_param -n llite.*.statahead_stats
7650         rm -r $DIR/$tdir
7651         sync
7652
7653 }
7654 run_test 123b "not panic with network error in statahead enqueue (bug 15027)"
7655
7656 test_124a() {
7657         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7658         [ -z "`lctl get_param -n mdc.*.connect_flags | grep lru_resize`" ] && \
7659                skip "no lru resize on server" && return 0
7660         local NR=2000
7661         test_mkdir -p $DIR/$tdir || error "failed to create $DIR/$tdir"
7662
7663         log "create $NR files at $DIR/$tdir"
7664         createmany -o $DIR/$tdir/f $NR ||
7665                 error "failed to create $NR files in $DIR/$tdir"
7666
7667         cancel_lru_locks mdc
7668         ls -l $DIR/$tdir > /dev/null
7669
7670         local NSDIR=""
7671         local LRU_SIZE=0
7672         for VALUE in `lctl get_param ldlm.namespaces.*mdc-*.lru_size`; do
7673                 local PARAM=`echo ${VALUE[0]} | cut -d "=" -f1`
7674                 LRU_SIZE=$(lctl get_param -n $PARAM)
7675                 if [ $LRU_SIZE -gt $(default_lru_size) ]; then
7676                         NSDIR=$(echo $PARAM | cut -d "." -f1-3)
7677                                                 log "NSDIR=$NSDIR"
7678                         log "NS=$(basename $NSDIR)"
7679                         break
7680                 fi
7681         done
7682
7683         if [ -z "$NSDIR" -o $LRU_SIZE -lt $(default_lru_size) ]; then
7684                 skip "Not enough cached locks created!"
7685                 return 0
7686         fi
7687         log "LRU=$LRU_SIZE"
7688
7689         local SLEEP=30
7690
7691         # We know that lru resize allows one client to hold $LIMIT locks
7692         # for 10h. After that locks begin to be killed by client.
7693         local MAX_HRS=10
7694         local LIMIT=`lctl get_param -n $NSDIR.pool.limit`
7695                 log "LIMIT=$LIMIT"
7696
7697         # Make LVF so higher that sleeping for $SLEEP is enough to _start_
7698         # killing locks. Some time was spent for creating locks. This means
7699         # that up to the moment of sleep finish we must have killed some of
7700         # them (10-100 locks). This depends on how fast ther were created.
7701         # Many of them were touched in almost the same moment and thus will
7702         # be killed in groups.
7703         local LVF=$(($MAX_HRS * 60 * 60 / $SLEEP * $LIMIT / $LRU_SIZE))
7704
7705         # Use $LRU_SIZE_B here to take into account real number of locks
7706         # created in the case of CMD, LRU_SIZE_B != $NR in most of cases
7707         local LRU_SIZE_B=$LRU_SIZE
7708         log "LVF=$LVF"
7709         local OLD_LVF=`lctl get_param -n $NSDIR.pool.lock_volume_factor`
7710                 log "OLD_LVF=$OLD_LVF"
7711         lctl set_param -n $NSDIR.pool.lock_volume_factor $LVF
7712
7713         # Let's make sure that we really have some margin. Client checks
7714         # cached locks every 10 sec.
7715         SLEEP=$((SLEEP+20))
7716         log "Sleep ${SLEEP} sec"
7717         local SEC=0
7718         while ((SEC<$SLEEP)); do
7719                 echo -n "..."
7720                 sleep 5
7721                 SEC=$((SEC+5))
7722                 LRU_SIZE=`lctl get_param -n $NSDIR/lru_size`
7723                 echo -n "$LRU_SIZE"
7724         done
7725         echo ""
7726         lctl set_param -n $NSDIR.pool.lock_volume_factor $OLD_LVF
7727         local LRU_SIZE_A=`lctl get_param -n $NSDIR.lru_size`
7728
7729         [ $LRU_SIZE_B -gt $LRU_SIZE_A ] || {
7730                 error "No locks dropped in ${SLEEP}s. LRU size: $LRU_SIZE_A"
7731                 unlinkmany $DIR/$tdir/f $NR
7732                 return
7733         }
7734
7735         log "Dropped "$((LRU_SIZE_B-LRU_SIZE_A))" locks in ${SLEEP}s"
7736         log "unlink $NR files at $DIR/$tdir"
7737         unlinkmany $DIR/$tdir/f $NR
7738 }
7739 run_test 124a "lru resize ======================================="
7740
7741 get_max_pool_limit()
7742 {
7743         local limit=`lctl get_param -n ldlm.namespaces.*-MDT0000-mdc-*.pool.limit`
7744         local max=0
7745         for l in $limit; do
7746                 if test $l -gt $max; then
7747                         max=$l
7748                 fi
7749         done
7750         echo $max
7751 }
7752
7753 test_124b() {
7754         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7755         [ -z "`lctl get_param -n mdc.*.connect_flags | grep lru_resize`" ] && \
7756                skip "no lru resize on server" && return 0
7757
7758         LIMIT=`get_max_pool_limit`
7759
7760         NR=$(($(default_lru_size)*20))
7761         if [ $NR -gt $LIMIT ]; then
7762                 log "Limit lock number by $LIMIT locks"
7763                 NR=$LIMIT
7764         fi
7765         lru_resize_disable mdc
7766         test_mkdir -p $DIR/$tdir/disable_lru_resize ||
7767                 error "failed to create $DIR/$tdir/disable_lru_resize"
7768
7769         createmany -o $DIR/$tdir/disable_lru_resize/f $NR
7770         log "doing ls -la $DIR/$tdir/disable_lru_resize 3 times"
7771         cancel_lru_locks mdc
7772         stime=`date +%s`
7773         PID=""
7774         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
7775         PID="$PID $!"
7776         sleep 2
7777         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
7778         PID="$PID $!"
7779         sleep 2
7780         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
7781         PID="$PID $!"
7782         wait $PID
7783         etime=`date +%s`
7784         nolruresize_delta=$((etime-stime))
7785         log "ls -la time: $nolruresize_delta seconds"
7786         log "lru_size = $(lctl get_param -n ldlm.namespaces.*mdc*.lru_size)"
7787         unlinkmany $DIR/$tdir/disable_lru_resize/f $NR
7788
7789         lru_resize_enable mdc
7790         test_mkdir -p $DIR/$tdir/enable_lru_resize ||
7791                 error "failed to create $DIR/$tdir/enable_lru_resize"
7792
7793         createmany -o $DIR/$tdir/enable_lru_resize/f $NR
7794         log "doing ls -la $DIR/$tdir/enable_lru_resize 3 times"
7795         cancel_lru_locks mdc
7796         stime=`date +%s`
7797         PID=""
7798         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
7799         PID="$PID $!"
7800         sleep 2
7801         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
7802         PID="$PID $!"
7803         sleep 2
7804         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
7805         PID="$PID $!"
7806         wait $PID
7807         etime=`date +%s`
7808         lruresize_delta=$((etime-stime))
7809         log "ls -la time: $lruresize_delta seconds"
7810         log "lru_size = $(lctl get_param -n ldlm.namespaces.*mdc*.lru_size)"
7811
7812         if [ $lruresize_delta -gt $nolruresize_delta ]; then
7813                 log "ls -la is $(((lruresize_delta - $nolruresize_delta) * 100 / $nolruresize_delta))% slower with lru resize enabled"
7814         elif [ $nolruresize_delta -gt $lruresize_delta ]; then
7815                 log "ls -la is $(((nolruresize_delta - $lruresize_delta) * 100 / $nolruresize_delta))% faster with lru resize enabled"
7816         else
7817                 log "lru resize performs the same with no lru resize"
7818         fi
7819         unlinkmany $DIR/$tdir/enable_lru_resize/f $NR
7820 }
7821 run_test 124b "lru resize (performance test) ======================="
7822
7823 test_125() { # 13358
7824         [ -z "$(lctl get_param -n llite.*.client_type | grep local)" ] && skip "must run as local client" && return
7825         [ -z "$(lctl get_param -n mdc.*-mdc-*.connect_flags | grep acl)" ] && skip "must have acl enabled" && return
7826         test_mkdir -p $DIR/d125 || error "mkdir failed"
7827         $SETSTRIPE -S 65536 -c -1 $DIR/d125 || error "setstripe failed"
7828         setfacl -R -m u:bin:rwx $DIR/d125 || error "setfacl $DIR/d125 failed"
7829         ls -ld $DIR/d125 || error "cannot access $DIR/d125"
7830 }
7831 run_test 125 "don't return EPROTO when a dir has a non-default striping and ACLs"
7832
7833 test_126() { # bug 12829/13455
7834         [ -z "$(lctl get_param -n llite.*.client_type | grep local)" ] && skip "must run as local client" && return
7835         [ "$UID" != 0 ] && skip_env "skipping $TESTNAME (must run as root)" && return
7836         $GSS && skip "must run as gss disabled" && return
7837
7838         $RUNAS -u 0 -g 1 touch $DIR/$tfile || error "touch failed"
7839         gid=`ls -n $DIR/$tfile | awk '{print $4}'`
7840         rm -f $DIR/$tfile
7841         [ $gid -eq "1" ] || error "gid is set to" $gid "instead of 1"
7842 }
7843 run_test 126 "check that the fsgid provided by the client is taken into account"
7844
7845 test_127a() { # bug 15521
7846         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7847         $SETSTRIPE -i 0 -c 1 $DIR/$tfile || error "setstripe failed"
7848         $LCTL set_param osc.*.stats=0
7849         FSIZE=$((2048 * 1024))
7850         dd if=/dev/zero of=$DIR/$tfile bs=$FSIZE count=1
7851         cancel_lru_locks osc
7852         dd if=$DIR/$tfile of=/dev/null bs=$FSIZE
7853
7854         $LCTL get_param osc.*0000-osc-*.stats | grep samples > $DIR/${tfile}.tmp
7855         while read NAME COUNT SAMP UNIT MIN MAX SUM SUMSQ; do
7856                 echo "got $COUNT $NAME"
7857                 [ ! $MIN ] && error "Missing min value for $NAME proc entry"
7858                 eval $NAME=$COUNT || error "Wrong proc format"
7859
7860                 case $NAME in
7861                         read_bytes|write_bytes)
7862                         [ $MIN -lt 4096 ] && error "min is too small: $MIN"
7863                         [ $MIN -gt $FSIZE ] && error "min is too big: $MIN"
7864                         [ $MAX -lt 4096 ] && error "max is too small: $MAX"
7865                         [ $MAX -gt $FSIZE ] && error "max is too big: $MAX"
7866                         [ $SUM -ne $FSIZE ] && error "sum is wrong: $SUM"
7867                         [ $SUMSQ -lt $(((FSIZE /4096) * (4096 * 4096))) ] &&
7868                                 error "sumsquare is too small: $SUMSQ"
7869                         [ $SUMSQ -gt $((FSIZE * FSIZE)) ] &&
7870                                 error "sumsquare is too big: $SUMSQ"
7871                         ;;
7872                         *) ;;
7873                 esac
7874         done < $DIR/${tfile}.tmp
7875
7876         #check that we actually got some stats
7877         [ "$read_bytes" ] || error "Missing read_bytes stats"
7878         [ "$write_bytes" ] || error "Missing write_bytes stats"
7879         [ "$read_bytes" != 0 ] || error "no read done"
7880         [ "$write_bytes" != 0 ] || error "no write done"
7881 }
7882 run_test 127a "verify the client stats are sane"
7883
7884 test_127b() { # bug LU-333
7885         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7886         $LCTL set_param llite.*.stats=0
7887         FSIZE=65536 # sized fixed to match PAGE_SIZE for most clients
7888         # perform 2 reads and writes so MAX is different from SUM.
7889         dd if=/dev/zero of=$DIR/$tfile bs=$FSIZE count=1
7890         dd if=/dev/zero of=$DIR/$tfile bs=$FSIZE count=1
7891         cancel_lru_locks osc
7892         dd if=$DIR/$tfile of=/dev/null bs=$FSIZE count=1
7893         dd if=$DIR/$tfile of=/dev/null bs=$FSIZE count=1
7894
7895         $LCTL get_param llite.*.stats | grep samples > $TMP/${tfile}.tmp
7896         while read NAME COUNT SAMP UNIT MIN MAX SUM SUMSQ; do
7897                 echo "got $COUNT $NAME"
7898                 eval $NAME=$COUNT || error "Wrong proc format"
7899
7900         case $NAME in
7901                 read_bytes)
7902                         [ $COUNT -ne 2 ] && error "count is not 2: $COUNT"
7903                         [ $MIN -ne $FSIZE ] && error "min is not $FSIZE: $MIN"
7904                         [ $MAX -ne $FSIZE ] && error "max is incorrect: $MAX"
7905                         [ $SUM -ne $((FSIZE * 2)) ] && error "sum is wrong: $SUM"
7906                         ;;
7907                 write_bytes)
7908                         [ $COUNT -ne 2 ] && error "count is not 2: $COUNT"
7909                         [ $MIN -ne $FSIZE ] && error "min is not $FSIZE: $MIN"
7910                         [ $MAX -ne $FSIZE ] && error "max is incorrect: $MAX"
7911                         [ $SUM -ne $((FSIZE * 2)) ] && error "sum is wrong: $SUM"
7912                         ;;
7913                         *) ;;
7914                 esac
7915         done < $TMP/${tfile}.tmp
7916
7917         #check that we actually got some stats
7918         [ "$read_bytes" ] || error "Missing read_bytes stats"
7919         [ "$write_bytes" ] || error "Missing write_bytes stats"
7920         [ "$read_bytes" != 0 ] || error "no read done"
7921         [ "$write_bytes" != 0 ] || error "no write done"
7922 }
7923 run_test 127b "verify the llite client stats are sane"
7924
7925 test_128() { # bug 15212
7926         touch $DIR/$tfile
7927         $LFS 2>&1 <<-EOF | tee $TMP/$tfile.log
7928                 find $DIR/$tfile
7929                 find $DIR/$tfile
7930         EOF
7931
7932         result=$(grep error $TMP/$tfile.log)
7933         rm -f $DIR/$tfile
7934         [ -z "$result" ] || error "consecutive find's under interactive lfs failed"
7935 }
7936 run_test 128 "interactive lfs for 2 consecutive find's"
7937
7938 set_dir_limits () {
7939         local mntdev
7940         local canondev
7941         local node
7942
7943         local LDPROC=/proc/fs/ldiskfs
7944         local facets=$(get_facets MDS)
7945
7946         for facet in ${facets//,/ }; do
7947                 canondev=$(ldiskfs_canon \
7948                            *.$(convert_facet2label $facet).mntdev $facet)
7949                 do_facet $facet "test -e $LDPROC/$canondev/max_dir_size" ||
7950                                                 LDPROC=/sys/fs/ldiskfs
7951                 do_facet $facet "echo $1 >$LDPROC/$canondev/max_dir_size"
7952         done
7953 }
7954
7955 test_129() {
7956         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7957         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
7958                 skip "Only applicable to ldiskfs-based MDTs"
7959                 return
7960         fi
7961         remote_mds_nodsh && skip "remote MDS with nodsh" && return
7962
7963         ENOSPC=28
7964         EFBIG=27
7965
7966         rm -rf $DIR/$tdir
7967         test_mkdir -p $DIR/$tdir
7968
7969         # block size of mds1
7970         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
7971         local MDSBLOCKSIZE=$($LCTL get_param -n mdc.*MDT0000*.blocksize)
7972         local MAX=$((MDSBLOCKSIZE * 3))
7973         set_dir_limits $MAX
7974         local I=$(stat -c%s "$DIR/$tdir")
7975         local J=0
7976         while [ ! $I -gt $MAX ]; do
7977                 $MULTIOP $DIR/$tdir/$J Oc
7978                 rc=$?
7979                 #check two errors ENOSPC for new version of ext4 max_dir_size patch
7980                 #mainline kernel commit df981d03eeff7971ac7e6ff37000bfa702327ef1
7981                 #and EFBIG for previous versions
7982                 if [ $rc -eq $EFBIG -o $rc -eq $ENOSPC ]; then
7983                         set_dir_limits 0
7984                         echo "return code $rc received as expected"
7985                         multiop $DIR/$tdir/$J Oc ||
7986                                 error_exit "multiop failed w/o dir size limit"
7987
7988                         I=$(stat -c%s "$DIR/$tdir")
7989
7990                         if [ $(lustre_version_code $SINGLEMDS) -lt \
7991                                         $(version_code 2.4.51) ]
7992                         then
7993                                 [ $I -eq $MAX ] && return 0
7994                         else
7995                                 [ $I -gt $MAX ] && return 0
7996                         fi
7997                         error_exit "current dir size $I, previous limit $MAX"
7998                 elif [ $rc -ne 0 ]; then
7999                         set_dir_limits 0
8000                         error_exit "return code $rc received instead of expected " \
8001                                    "$EFBIG or $ENOSPC, files in dir $I"
8002                 fi
8003                 J=$((J+1))
8004                 I=$(stat -c%s "$DIR/$tdir")
8005         done
8006
8007         set_dir_limits 0
8008         error "exceeded dir size limit $MAX x $MDSCOUNT $MAX : $I bytes"
8009 }
8010 run_test 129 "test directory size limit ========================"
8011
8012 OLDIFS="$IFS"
8013 cleanup_130() {
8014         trap 0
8015         IFS="$OLDIFS"
8016 }
8017
8018 test_130a() {
8019         local filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
8020         [ -n "$filefrag_op" ] && skip_env "filefrag does not support FIEMAP" &&
8021                 return
8022
8023         trap cleanup_130 EXIT RETURN
8024
8025         local fm_file=$DIR/$tfile
8026         $SETSTRIPE -S 65536 -c 1 $fm_file || error "setstripe on $fm_file"
8027         dd if=/dev/zero of=$fm_file bs=65536 count=1 ||
8028                 error "dd failed for $fm_file"
8029
8030         # LU-1795: test filefrag/FIEMAP once, even if unsupported
8031         filefrag -ves $fm_file
8032         RC=$?
8033         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
8034                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
8035         [ $RC != 0 ] && error "filefrag $fm_file failed"
8036
8037         filefrag_op=$(filefrag -ve $fm_file | grep -A 100 "ext:" |
8038                       grep -v "ext:" | grep -v "found")
8039         lun=$($GETSTRIPE -i $fm_file)
8040
8041         start_blk=`echo $filefrag_op | cut -d: -f2 | cut -d. -f1`
8042         IFS=$'\n'
8043         tot_len=0
8044         for line in $filefrag_op
8045         do
8046                 frag_lun=`echo $line | cut -d: -f5`
8047                 ext_len=`echo $line | cut -d: -f4`
8048                 if (( $frag_lun != $lun )); then
8049                         cleanup_130
8050                         error "FIEMAP on 1-stripe file($fm_file) failed"
8051                         return
8052                 fi
8053                 (( tot_len += ext_len ))
8054         done
8055
8056         if (( lun != frag_lun || start_blk != 0 || tot_len != 64 )); then
8057                 cleanup_130
8058                 error "FIEMAP on 1-stripe file($fm_file) failed;"
8059                 return
8060         fi
8061
8062         cleanup_130
8063
8064         echo "FIEMAP on single striped file succeeded"
8065 }
8066 run_test 130a "FIEMAP (1-stripe file)"
8067
8068 test_130b() {
8069         [ "$OSTCOUNT" -lt "2" ] &&
8070                 skip_env "skipping FIEMAP on 2-stripe file test" && return
8071
8072         [ "$OSTCOUNT" -ge "10" ] &&
8073                 skip_env "skipping FIEMAP with >= 10 OSTs" && return
8074
8075         local filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
8076         [ -n "$filefrag_op" ] && skip_env "filefrag does not support FIEMAP" &&
8077                 return
8078
8079         trap cleanup_130 EXIT RETURN
8080
8081         local fm_file=$DIR/$tfile
8082         $SETSTRIPE -S 65536 -c 2 $fm_file || error "setstripe on $fm_file"
8083         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
8084                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
8085
8086         dd if=/dev/zero of=$fm_file bs=1M count=2 ||
8087                 error "dd failed on $fm_file"
8088
8089         filefrag -ves $fm_file || error "filefrag $fm_file failed"
8090         filefrag_op=$(filefrag -ve $fm_file | grep -A 100 "ext:" |
8091                       grep -v "ext:" | grep -v "found")
8092
8093         last_lun=$(echo $filefrag_op | cut -d: -f5)
8094
8095         IFS=$'\n'
8096         tot_len=0
8097         num_luns=1
8098         for line in $filefrag_op
8099         do
8100                 frag_lun=`echo $line | cut -d: -f5`
8101                 ext_len=`echo $line | cut -d: -f4`
8102                 if (( $frag_lun != $last_lun )); then
8103                         if (( tot_len != 1024 )); then
8104                                 cleanup_130
8105                                 error "FIEMAP on $fm_file failed; returned len $tot_len for OST $last_lun instead of 256"
8106                                 return
8107                         else
8108                                 (( num_luns += 1 ))
8109                                 tot_len=0
8110                         fi
8111                 fi
8112                 (( tot_len += ext_len ))
8113                 last_lun=$frag_lun
8114         done
8115         if (( num_luns != 2 || tot_len != 1024 )); then
8116                 cleanup_130
8117                 error "FIEMAP on $fm_file failed; returned wrong number of luns or wrong len for OST $last_lun"
8118                 return
8119         fi
8120
8121         cleanup_130
8122
8123         echo "FIEMAP on 2-stripe file succeeded"
8124 }
8125 run_test 130b "FIEMAP (2-stripe file)"
8126
8127 test_130c() {
8128         [ "$OSTCOUNT" -lt "2" ] &&
8129                 skip_env "skipping FIEMAP on 2-stripe file" && return
8130
8131         [ "$OSTCOUNT" -ge "10" ] &&
8132                 skip_env "skipping FIEMAP with >= 10 OSTs" && return
8133
8134         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
8135         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP" &&
8136                 return
8137
8138         trap cleanup_130 EXIT RETURN
8139
8140         local fm_file=$DIR/$tfile
8141         $SETSTRIPE -S 65536 -c 2 $fm_file || error "setstripe on $fm_file"
8142         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
8143                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
8144
8145         dd if=/dev/zero of=$fm_file seek=1 bs=1M count=1 || error "dd failed on $fm_file"
8146
8147         filefrag -ves $fm_file || error "filefrag $fm_file failed"
8148         filefrag_op=`filefrag -ve $fm_file | grep -A 100 "ext:" | grep -v "ext:" | grep -v "found"`
8149
8150         last_lun=`echo $filefrag_op | cut -d: -f5`
8151
8152         IFS=$'\n'
8153         tot_len=0
8154         num_luns=1
8155         for line in $filefrag_op
8156         do
8157                 frag_lun=`echo $line | cut -d: -f5`
8158                 ext_len=`echo $line | cut -d: -f4`
8159                 if (( $frag_lun != $last_lun )); then
8160                         logical=`echo $line | cut -d: -f2 | cut -d. -f1`
8161                         if (( logical != 512 )); then
8162                                 cleanup_130
8163                                 error "FIEMAP on $fm_file failed; returned logical start for lun $logical instead of 512"
8164                                 return
8165                         fi
8166                         if (( tot_len != 512 )); then
8167                                 cleanup_130
8168                                 error "FIEMAP on $fm_file failed; returned len $tot_len for OST $last_lun instead of 1024"
8169                                 return
8170                         else
8171                                 (( num_luns += 1 ))
8172                                 tot_len=0
8173                         fi
8174                 fi
8175                 (( tot_len += ext_len ))
8176                 last_lun=$frag_lun
8177         done
8178         if (( num_luns != 2 || tot_len != 512 )); then
8179                 cleanup_130
8180                 error "FIEMAP on $fm_file failed; returned wrong number of luns or wrong len for OST $last_lun"
8181                 return
8182         fi
8183
8184         cleanup_130
8185
8186         echo "FIEMAP on 2-stripe file with hole succeeded"
8187 }
8188 run_test 130c "FIEMAP (2-stripe file with hole)"
8189
8190 test_130d() {
8191         [ "$OSTCOUNT" -lt "3" ] && skip_env "skipping FIEMAP on N-stripe file test" && return
8192
8193         [ "$OSTCOUNT" -ge "10" ] &&
8194                 skip_env "skipping FIEMAP with >= 10 OSTs" && return
8195
8196         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
8197         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP" && return
8198
8199         trap cleanup_130 EXIT RETURN
8200
8201         local fm_file=$DIR/$tfile
8202         $SETSTRIPE -S 65536 -c $OSTCOUNT $fm_file||error "setstripe on $fm_file"
8203         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
8204                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
8205
8206         local actual_stripecnt=$($GETSTRIPE -c $fm_file)
8207         dd if=/dev/zero of=$fm_file bs=1M count=$actual_stripecnt ||
8208                 error "dd failed on $fm_file"
8209
8210         filefrag -ves $fm_file || error "filefrag $fm_file failed"
8211         filefrag_op=`filefrag -ve $fm_file | grep -A 100 "ext:" |
8212                 grep -v "ext:" | grep -v "found"`
8213
8214         last_lun=`echo $filefrag_op | cut -d: -f5`
8215
8216         IFS=$'\n'
8217         tot_len=0
8218         num_luns=1
8219         for line in $filefrag_op
8220         do
8221                 frag_lun=`echo $line | cut -d: -f5`
8222                 ext_len=`echo $line | cut -d: -f4`
8223                 if (( $frag_lun != $last_lun )); then
8224                         if (( tot_len != 1024 )); then
8225                                 cleanup_130
8226                                 error "FIEMAP on $fm_file failed; returned len $tot_len for OST $last_lun instead of 1024"
8227                                 return
8228                         else
8229                                 (( num_luns += 1 ))
8230                                 tot_len=0
8231                         fi
8232                 fi
8233                 (( tot_len += ext_len ))
8234                 last_lun=$frag_lun
8235         done
8236         if (( num_luns != actual_stripecnt || tot_len != 1024 )); then
8237                 cleanup_130
8238                 error "FIEMAP on $fm_file failed; returned wrong number of luns or wrong len for OST $last_lun"
8239                 return
8240         fi
8241
8242         cleanup_130
8243
8244         echo "FIEMAP on N-stripe file succeeded"
8245 }
8246 run_test 130d "FIEMAP (N-stripe file)"
8247
8248 test_130e() {
8249         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping continuation FIEMAP test" && return
8250
8251         [ "$OSTCOUNT" -ge "10" ] &&
8252                 skip_env "skipping FIEMAP with >= 10 OSTs" && return
8253
8254         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
8255         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP" && return
8256
8257         trap cleanup_130 EXIT RETURN
8258
8259         local fm_file=$DIR/$tfile
8260         $SETSTRIPE -S 131072 -c 2 $fm_file || error "setstripe on $fm_file"
8261         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
8262                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
8263
8264         NUM_BLKS=512
8265         EXPECTED_LEN=$(( (NUM_BLKS / 2) * 64 ))
8266         for ((i = 0; i < $NUM_BLKS; i++))
8267         do
8268                 dd if=/dev/zero of=$fm_file count=1 bs=64k seek=$((2*$i)) conv=notrunc > /dev/null 2>&1
8269         done
8270
8271         filefrag -ves $fm_file || error "filefrag $fm_file failed"
8272         filefrag_op=`filefrag -ve $fm_file | grep -A 12000 "ext:" | grep -v "ext:" | grep -v "found"`
8273
8274         last_lun=`echo $filefrag_op | cut -d: -f5`
8275
8276         IFS=$'\n'
8277         tot_len=0
8278         num_luns=1
8279         for line in $filefrag_op
8280         do
8281                 frag_lun=`echo $line | cut -d: -f5`
8282                 ext_len=`echo $line | cut -d: -f4`
8283                 if (( $frag_lun != $last_lun )); then
8284                         if (( tot_len != $EXPECTED_LEN )); then
8285                                 cleanup_130
8286                                 error "FIEMAP on $fm_file failed; returned len $tot_len for OST $last_lun instead of $EXPECTED_LEN"
8287                                 return
8288                         else
8289                                 (( num_luns += 1 ))
8290                                 tot_len=0
8291                         fi
8292                 fi
8293                 (( tot_len += ext_len ))
8294                 last_lun=$frag_lun
8295         done
8296         if (( num_luns != 2 || tot_len != $EXPECTED_LEN )); then
8297                 cleanup_130
8298                 error "FIEMAP on $fm_file failed; returned wrong number of luns or wrong len for OST $last_lun"
8299                 return
8300         fi
8301
8302         cleanup_130
8303
8304         echo "FIEMAP with continuation calls succeeded"
8305 }
8306 run_test 130e "FIEMAP (test continuation FIEMAP calls)"
8307
8308 # Test for writev/readv
8309 test_131a() {
8310         rwv -f $DIR/$tfile -w -n 3 524288 1048576 1572864 || \
8311         error "writev test failed"
8312         rwv -f $DIR/$tfile -r -v -n 2 1572864 1048576 || \
8313         error "readv failed"
8314         rm -f $DIR/$tfile
8315 }
8316 run_test 131a "test iov's crossing stripe boundary for writev/readv"
8317
8318 test_131b() {
8319         rwv -f $DIR/$tfile -w -a -n 3 524288 1048576 1572864 || \
8320         error "append writev test failed"
8321         rwv -f $DIR/$tfile -w -a -n 2 1572864 1048576 || \
8322         error "append writev test failed"
8323         rm -f $DIR/$tfile
8324 }
8325 run_test 131b "test append writev"
8326
8327 test_131c() {
8328         rwv -f $DIR/$tfile -w -d -n 1 1048576 || return 0
8329         error "NOT PASS"
8330 }
8331 run_test 131c "test read/write on file w/o objects"
8332
8333 test_131d() {
8334         rwv -f $DIR/$tfile -w -n 1 1572864
8335         NOB=`rwv -f $DIR/$tfile -r -n 3 524288 524288 1048576 | awk '/error/ {print $6}'`
8336         if [ "$NOB" != 1572864 ]; then
8337                 error "Short read filed: read $NOB bytes instead of 1572864"
8338         fi
8339         rm -f $DIR/$tfile
8340 }
8341 run_test 131d "test short read"
8342
8343 test_131e() {
8344         rwv -f $DIR/$tfile -w -s 1048576 -n 1 1048576
8345         rwv -f $DIR/$tfile -r -z -s 0 -n 1 524288 || \
8346         error "read hitting hole failed"
8347         rm -f $DIR/$tfile
8348 }
8349 run_test 131e "test read hitting hole"
8350
8351 get_ost_param() {
8352         local token=$1
8353         local gl_sum=0
8354         for node in $(osts_nodes); do
8355                 gl=$(do_node $node "$LCTL get_param -n ost.OSS.ost.stats" | awk '/'$token'/ {print $2}' | head -n 1)
8356                 [ x$gl = x"" ] && gl=0
8357                 gl_sum=$((gl_sum + gl))
8358         done
8359         echo $gl_sum
8360 }
8361
8362 som_mode_switch() {
8363         local som=$1
8364         local gl1=$2
8365         local gl2=$3
8366
8367         if [ x$som = x"enabled" ]; then
8368                 [ $((gl2 - gl1)) -gt 0 ] && error "no glimpse RPC is expected"
8369                 MOUNTOPT=`echo $MOUNTOPT | sed 's/som_preview//g'`
8370                 do_facet mgs "$LCTL conf_param $FSNAME.mdt.som=disabled"
8371         else
8372                 [ $((gl2 - gl1)) -gt 0 ] || error "some glimpse RPC is expected"
8373                 MOUNTOPT="$MOUNTOPT,som_preview"
8374                 do_facet mgs "$LCTL conf_param $FSNAME.mdt.som=enabled"
8375         fi
8376
8377         # do remount to make new mount-conf parameters actual
8378         echo remounting...
8379         sync
8380         stopall
8381         setupall
8382 }
8383
8384 test_132() { #1028, SOM
8385         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8386         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8387         local num=$(get_mds_dir $DIR)
8388         local mymds=mds${num}
8389         local MOUNTOPT_SAVE=$MOUNTOPT
8390
8391         dd if=/dev/zero of=$DIR/$tfile count=1 2>/dev/null
8392         cancel_lru_locks osc
8393
8394         som1=$(do_facet $mymds "$LCTL get_param mdt.*.som" |  awk -F= ' {print $2}' | head -n 1)
8395
8396         gl1=$(get_ost_param "ldlm_glimpse_enqueue")
8397         stat $DIR/$tfile >/dev/null
8398         gl2=$(get_ost_param "ldlm_glimpse_enqueue")
8399         echo "====> SOM is "$som1", "$((gl2 - gl1))" glimpse RPC occured"
8400         rm $DIR/$tfile
8401         som_mode_switch $som1 $gl1 $gl2
8402
8403         dd if=/dev/zero of=$DIR/$tfile count=1 2>/dev/null
8404         cancel_lru_locks osc
8405
8406         som2=$(do_facet $mymds "$LCTL get_param mdt.*.som" |  awk -F= ' {print $2}' | head -n 1)
8407         if [ $som1 == $som2 ]; then
8408             error "som is still "$som2
8409             if [ x$som2 = x"enabled" ]; then
8410                 som2="disabled"
8411             else
8412                 som2="enabled"
8413             fi
8414         fi
8415
8416         gl1=$(get_ost_param "ldlm_glimpse_enqueue")
8417         stat $DIR/$tfile >/dev/null
8418         gl2=$(get_ost_param "ldlm_glimpse_enqueue")
8419         echo "====> SOM is "$som2", "$((gl2 - gl1))" glimpse RPC occured"
8420         som_mode_switch $som2 $gl1 $gl2
8421         MOUNTOPT=$MOUNTOPT_SAVE
8422 }
8423 run_test 132 "som avoids glimpse rpc"
8424
8425 check_stats() {
8426         local res
8427         local count
8428         case $1 in
8429         $SINGLEMDS) res=`do_facet $SINGLEMDS $LCTL get_param mdt.$FSNAME-MDT0000.md_stats | grep "$2"`
8430                  ;;
8431         ost) res=`do_facet ost1 $LCTL get_param obdfilter.$FSNAME-OST0000.stats | grep "$2"`
8432                  ;;
8433         *) error "Wrong argument $1" ;;
8434         esac
8435         echo $res
8436         count=`echo $res | awk '{print $2}'`
8437         [ -z "$res" ] && error "The counter for $2 on $1 was not incremented"
8438         # if the argument $3 is zero, it means any stat increment is ok.
8439         if [ $3 -gt 0 ] ; then
8440                 [ $count -ne $3 ] && error "The $2 counter on $1 is wrong - expected $3"
8441         fi
8442 }
8443
8444 test_133a() {
8445         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8446         remote_ost_nodsh && skip "remote OST with nodsh" && return
8447         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8448
8449         do_facet $SINGLEMDS $LCTL list_param mdt.*.rename_stats ||
8450                 { skip "MDS doesn't support rename stats"; return; }
8451         local testdir=$DIR/${tdir}/stats_testdir
8452         mkdir -p $DIR/${tdir}
8453
8454         # clear stats.
8455         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
8456         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
8457
8458         # verify mdt stats first.
8459         mkdir ${testdir} || error "mkdir failed"
8460         check_stats $SINGLEMDS "mkdir" 1
8461         touch ${testdir}/${tfile} || "touch failed"
8462         check_stats $SINGLEMDS "open" 1
8463         check_stats $SINGLEMDS "close" 1
8464         mknod ${testdir}/${tfile}-pipe p || "mknod failed"
8465         check_stats $SINGLEMDS "mknod" 1
8466         rm -f ${testdir}/${tfile}-pipe || "pipe remove failed"
8467         check_stats $SINGLEMDS "unlink" 1
8468         rm -f ${testdir}/${tfile} || error "file remove failed"
8469         check_stats $SINGLEMDS "unlink" 2
8470
8471         # remove working dir and check mdt stats again.
8472         rmdir ${testdir} || error "rmdir failed"
8473         check_stats $SINGLEMDS "rmdir" 1
8474
8475         local testdir1=$DIR/${tdir}/stats_testdir1
8476         mkdir -p ${testdir}
8477         mkdir -p ${testdir1}
8478         touch ${testdir1}/test1
8479         mv ${testdir1}/test1 ${testdir} || error "file crossdir rename"
8480         check_stats $SINGLEMDS "crossdir_rename" 1
8481
8482         mv ${testdir}/test1 ${testdir}/test0 || error "file samedir rename"
8483         check_stats $SINGLEMDS "samedir_rename" 1
8484
8485         rm -rf $DIR/${tdir}
8486 }
8487 run_test 133a "Verifying MDT stats ========================================"
8488
8489 test_133b() {
8490         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8491         remote_ost_nodsh && skip "remote OST with nodsh" && return
8492         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8493         local testdir=$DIR/${tdir}/stats_testdir
8494         mkdir -p ${testdir} || error "mkdir failed"
8495         touch ${testdir}/${tfile} || "touch failed"
8496         cancel_lru_locks mdc
8497
8498         # clear stats.
8499         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
8500         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
8501
8502         # extra mdt stats verification.
8503         chmod 444 ${testdir}/${tfile} || error "chmod failed"
8504         check_stats $SINGLEMDS "setattr" 1
8505         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
8506         if [ $(lustre_version_code $SINGLEMDS) -ne $(version_code 2.2.0) ]
8507         then            # LU-1740
8508                 ls -l ${testdir}/${tfile} > /dev/null|| error "ls failed"
8509                 check_stats $SINGLEMDS "getattr" 1
8510         fi
8511         $LFS df || error "lfs failed"
8512         check_stats $SINGLEMDS "statfs" 1
8513
8514         rm -rf $DIR/${tdir}
8515 }
8516 run_test 133b "Verifying extra MDT stats =================================="
8517
8518 test_133c() {
8519         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8520         remote_ost_nodsh && skip "remote OST with nodsh" && return
8521         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8522         local testdir=$DIR/${tdir}/stats_testdir
8523         test_mkdir -p ${testdir} || error "mkdir failed"
8524
8525         # verify obdfilter stats.
8526         $SETSTRIPE -c 1 -i 0 ${testdir}/${tfile}
8527         sync
8528         cancel_lru_locks osc
8529         wait_delete_completed
8530
8531         # clear stats.
8532         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
8533         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
8534
8535         dd if=/dev/zero of=${testdir}/${tfile} conv=notrunc bs=512k count=1 || error "dd failed"
8536         sync
8537         cancel_lru_locks osc
8538         check_stats ost "write" 1
8539
8540         dd if=${testdir}/${tfile} of=/dev/null bs=1k count=1 || error "dd failed"
8541         check_stats ost "read" 1
8542
8543         > ${testdir}/${tfile} || error "truncate failed"
8544         check_stats ost "punch" 1
8545
8546         rm -f ${testdir}/${tfile} || error "file remove failed"
8547         wait_delete_completed
8548         check_stats ost "destroy" 1
8549
8550         rm -rf $DIR/${tdir}
8551 }
8552 run_test 133c "Verifying OST stats ========================================"
8553
8554 order_2() {
8555     local value=$1
8556     local orig=$value
8557     local order=1
8558
8559     while [ $value -ge 2 ]; do
8560         order=$((order*2))
8561         value=$((value/2))
8562     done
8563
8564     if [ $orig -gt $order ]; then
8565         order=$((order*2))
8566     fi
8567     echo $order
8568 }
8569
8570 size_in_KMGT() {
8571     local value=$1
8572     local size=('K' 'M' 'G' 'T');
8573     local i=0
8574     local size_string=$value
8575
8576     while [ $value -ge 1024 ]; do
8577         if [ $i -gt 3 ]; then
8578             #T is the biggest unit we get here, if that is bigger,
8579             #just return XXXT
8580             size_string=${value}T
8581             break
8582         fi
8583         value=$((value >> 10))
8584         if [ $value -lt 1024 ]; then
8585             size_string=${value}${size[$i]}
8586             break
8587         fi
8588         i=$((i + 1))
8589     done
8590
8591     echo $size_string
8592 }
8593
8594 get_rename_size() {
8595     local size=$1
8596     local context=${2:-.}
8597     local sample=$(do_facet $SINGLEMDS $LCTL get_param mdt.*.rename_stats |
8598                 grep -A1 $context |
8599                 awk '/ '${size}'/ {print $4}' | sed -e "s/,//g")
8600     echo $sample
8601 }
8602
8603 test_133d() {
8604         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8605         remote_ost_nodsh && skip "remote OST with nodsh" && return
8606         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8607         do_facet $SINGLEMDS $LCTL list_param mdt.*.rename_stats ||
8608         { skip "MDS doesn't support rename stats"; return; }
8609
8610         local testdir1=$DIR/${tdir}/stats_testdir1
8611         local testdir2=$DIR/${tdir}/stats_testdir2
8612
8613         do_facet $SINGLEMDS $LCTL set_param mdt.*.rename_stats=clear
8614
8615         mkdir -p ${testdir1} || error "mkdir failed"
8616         mkdir -p ${testdir2} || error "mkdir failed"
8617
8618         createmany -o $testdir1/test 512 || error "createmany failed"
8619
8620         # check samedir rename size
8621         mv ${testdir1}/test0 ${testdir1}/test_0
8622
8623         local testdir1_size=$(ls -l $DIR/${tdir} |
8624                 awk '/stats_testdir1/ {print $5}')
8625         local testdir2_size=$(ls -l $DIR/${tdir} |
8626                 awk '/stats_testdir2/ {print $5}')
8627
8628         testdir1_size=$(order_2 $testdir1_size)
8629         testdir2_size=$(order_2 $testdir2_size)
8630
8631         testdir1_size=$(size_in_KMGT $testdir1_size)
8632         testdir2_size=$(size_in_KMGT $testdir2_size)
8633
8634         echo "source rename dir size: ${testdir1_size}"
8635         echo "target rename dir size: ${testdir2_size}"
8636
8637         local cmd="do_facet $SINGLEMDS $LCTL get_param mdt.*.rename_stats"
8638         eval $cmd || error "$cmd failed"
8639         local samedir=$($cmd | grep 'same_dir')
8640         local same_sample=$(get_rename_size $testdir1_size)
8641         [ -z "$samedir" ] && error "samedir_rename_size count error"
8642         [ "$same_sample" -eq 1 ] || error "samedir_rename_size error $same_sample"
8643         echo "Check same dir rename stats success"
8644
8645         do_facet $SINGLEMDS $LCTL set_param mdt.*.rename_stats=clear
8646
8647         # check crossdir rename size
8648         mv ${testdir1}/test_0 ${testdir2}/test_0
8649
8650         testdir1_size=$(ls -l $DIR/${tdir} |
8651                 awk '/stats_testdir1/ {print $5}')
8652         testdir2_size=$(ls -l $DIR/${tdir} |
8653                 awk '/stats_testdir2/ {print $5}')
8654
8655         testdir1_size=$(order_2 $testdir1_size)
8656         testdir2_size=$(order_2 $testdir2_size)
8657
8658         testdir1_size=$(size_in_KMGT $testdir1_size)
8659         testdir2_size=$(size_in_KMGT $testdir2_size)
8660
8661         echo "source rename dir size: ${testdir1_size}"
8662         echo "target rename dir size: ${testdir2_size}"
8663
8664         eval $cmd || error "$cmd failed"
8665         local crossdir=$($cmd | grep 'crossdir')
8666         local src_sample=$(get_rename_size $testdir1_size crossdir_src)
8667         local tgt_sample=$(get_rename_size $testdir2_size crossdir_tgt)
8668         [ -z "$crossdir" ] && error "crossdir_rename_size count error"
8669         [ "$src_sample" -eq 1 ] || error "crossdir_rename_size error $src_sample"
8670         [ "$tgt_sample" -eq 1 ] || error "crossdir_rename_size error $tgt_sample"
8671         echo "Check cross dir rename stats success"
8672         rm -rf $DIR/${tdir}
8673 }
8674 run_test 133d "Verifying rename_stats ========================================"
8675
8676 test_133e() {
8677         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8678         local testdir=$DIR/${tdir}/stats_testdir
8679         local ctr f0 f1 bs=32768 count=42 sum
8680
8681         remote_ost_nodsh && skip "remote OST with nodsh" && return
8682         mkdir -p ${testdir} || error "mkdir failed"
8683
8684         $SETSTRIPE -c 1 -i 0 ${testdir}/${tfile}
8685
8686         for ctr in {write,read}_bytes; do
8687                 sync
8688                 cancel_lru_locks osc
8689
8690                 do_facet ost1 $LCTL set_param -n \
8691                         "obdfilter.*.exports.clear=clear"
8692
8693                 if [ $ctr = write_bytes ]; then
8694                         f0=/dev/zero
8695                         f1=${testdir}/${tfile}
8696                 else
8697                         f0=${testdir}/${tfile}
8698                         f1=/dev/null
8699                 fi
8700
8701                 dd if=$f0 of=$f1 conv=notrunc bs=$bs count=$count || \
8702                         error "dd failed"
8703                 sync
8704                 cancel_lru_locks osc
8705
8706                 sum=$(do_facet ost1 $LCTL get_param \
8707                                 "obdfilter.*.exports.*.stats" | \
8708                           awk -v ctr=$ctr '\
8709                                 BEGIN { sum = 0 }
8710                                 $1 == ctr { sum += $7 }
8711                                 END { print sum }')
8712
8713                 if ((sum != bs * count)); then
8714                         error "Bad $ctr sum, expected $((bs * count)), got $sum"
8715                 fi
8716         done
8717
8718         rm -rf $DIR/${tdir}
8719 }
8720 run_test 133e "Verifying OST {read,write}_bytes nid stats ================="
8721
8722 test_133f() {
8723         local proc_dirs="/proc/fs/lustre/ /proc/sys/lnet/ /proc/sys/lustre/"
8724         local facet
8725
8726         # First without trusting modes.
8727         find $proc_dirs \
8728                 -exec cat '{}' \; &> /dev/null
8729
8730         # Second verifying readability.
8731         find $proc_dirs \
8732                 -type f \
8733                 -readable \
8734                 -exec cat '{}' \; > /dev/null ||
8735                         error "proc file read failed"
8736
8737         for facet in $SINGLEMDS ost1; do
8738                 do_facet $facet find $proc_dirs \
8739                         -not -name req_history \
8740                         -exec cat '{}' \\\; &> /dev/null
8741
8742             do_facet $facet     find $proc_dirs \
8743                         -not -name req_history \
8744                         -type f \
8745                         -readable \
8746                         -exec cat '{}' \\\; > /dev/null ||
8747                                 error "proc file read failed"
8748         done
8749 }
8750 run_test 133f "Check for LBUGs/Oopses/unreadable files in /proc"
8751
8752 test_140() { #bug-17379
8753         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8754         test_mkdir -p $DIR/$tdir || error "Creating dir $DIR/$tdir"
8755         cd $DIR/$tdir || error "Changing to $DIR/$tdir"
8756         cp /usr/bin/stat . || error "Copying stat to $DIR/$tdir"
8757
8758         # VFS limits max symlink depth to 5(4KSTACK) or 7(8KSTACK) or 8
8759         # For kernel > 3.5, bellow only tests consecutive symlink (MAX 40)
8760         local i=0
8761         while i=`expr $i + 1`; do
8762                 test_mkdir -p $i || error "Creating dir $i"
8763                 cd $i || error "Changing to $i"
8764                 ln -s ../stat stat || error "Creating stat symlink"
8765                 # Read the symlink until ELOOP present,
8766                 # not LBUGing the system is considered success,
8767                 # we didn't overrun the stack.
8768                 $OPENFILE -f O_RDONLY stat >/dev/null 2>&1; ret=$?
8769                 [ $ret -ne 0 ] && {
8770                         if [ $ret -eq 40 ]; then
8771                                 break  # -ELOOP
8772                         else
8773                                 error "Open stat symlink"
8774                                 return
8775                         fi
8776                 }
8777         done
8778         i=`expr $i - 1`
8779         echo "The symlink depth = $i"
8780         [ $i -eq 5 -o $i -eq 7 -o $i -eq 8 -o $i -eq 40 ] ||
8781                                         error "Invalid symlink depth"
8782
8783         # Test recursive symlink
8784         ln -s symlink_self symlink_self
8785         $OPENFILE -f O_RDONLY symlink_self >/dev/null 2>&1; ret=$?
8786         echo "open symlink_self returns $ret"
8787         [ $ret -eq 40 ] || error "recursive symlink doesn't return -ELOOP"
8788 }
8789 run_test 140 "Check reasonable stack depth (shouldn't LBUG) ===="
8790
8791 test_150() {
8792         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8793         local TF="$TMP/$tfile"
8794
8795         dd if=/dev/urandom of=$TF bs=6096 count=1 || error "dd failed"
8796         cp $TF $DIR/$tfile
8797         cancel_lru_locks osc
8798         cmp $TF $DIR/$tfile || error "$TMP/$tfile $DIR/$tfile differ"
8799         remount_client $MOUNT
8800         df -P $MOUNT
8801         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (remount)"
8802
8803         $TRUNCATE $TF 6000
8804         $TRUNCATE $DIR/$tfile 6000
8805         cancel_lru_locks osc
8806         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (truncate1)"
8807
8808         echo "12345" >>$TF
8809         echo "12345" >>$DIR/$tfile
8810         cancel_lru_locks osc
8811         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (append1)"
8812
8813         echo "12345" >>$TF
8814         echo "12345" >>$DIR/$tfile
8815         cancel_lru_locks osc
8816         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (append2)"
8817
8818         rm -f $TF
8819         true
8820 }
8821 run_test 150 "truncate/append tests"
8822
8823 #LU-2902 roc_hit was not able to read all values from lproc
8824 function roc_hit_init() {
8825         local list=$(comma_list $(osts_nodes))
8826         local dir=$DIR/$tdir-check
8827         local file=$dir/file
8828         local BEFORE
8829         local AFTER
8830         local idx
8831
8832         test_mkdir -p $dir
8833         #use setstripe to do a write to every ost
8834         for i in $(seq 0 $((OSTCOUNT-1))); do
8835                 $SETSTRIPE -c 1 -i $i $dir || error "$SETSTRIPE $file failed"
8836                 dd if=/dev/urandom of=$file bs=4k count=4 2>&1 > /dev/null
8837                 idx=$(printf %04x $i)
8838                 BEFORE=$(get_osd_param $list *OST*$idx stats |
8839                     awk '$1 == "cache_access" {sum += $2} END { print sum }')
8840                 if [ -z "$BEFORE" ]; then
8841                         BEFORE=0
8842                 fi
8843
8844                 cancel_lru_locks osc
8845                 cat $file >/dev/null
8846
8847                 AFTER=$(get_osd_param $list *OST*$idx stats |
8848                     awk '$1 == "cache_access" {sum += $2} END { print sum }')
8849
8850                 echo BEFORE:$BEFORE AFTER:$AFTER
8851                 if ! let "AFTER - BEFORE == 4"; then
8852                         rm -rf $dir
8853                         error "roc_hit is not safe to use"
8854                 fi
8855                 rm $file
8856         done
8857
8858         rm -rf $dir
8859 }
8860
8861 function roc_hit() {
8862         local list=$(comma_list $(osts_nodes))
8863         echo $(get_osd_param $list '' stats |
8864                 awk '$1 == "cache_hit" {sum += $2} END { print sum }')
8865 }
8866
8867 function set_cache() {
8868         local on=1
8869
8870         if [ "$2" == "off" ]; then
8871                 on=0;
8872         fi
8873         local list=$(comma_list $(osts_nodes))
8874         set_osd_param $list '' $1_cache_enable $on
8875
8876         cancel_lru_locks osc
8877 }
8878
8879 test_151() {
8880         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8881         remote_ost_nodsh && skip "remote OST with nodsh" && return
8882
8883         local CPAGES=3
8884         local list=$(comma_list $(osts_nodes))
8885
8886         # check whether obdfilter is cache capable at all
8887         if ! get_osd_param $list '' read_cache_enable >/dev/null; then
8888                 echo "not cache-capable obdfilter"
8889                 return 0
8890         fi
8891
8892         # check cache is enabled on all obdfilters
8893         if get_osd_param $list '' read_cache_enable | grep 0; then
8894                 echo "oss cache is disabled"
8895                 return 0
8896         fi
8897
8898         set_osd_param $list '' writethrough_cache_enable 1
8899
8900         # check write cache is enabled on all obdfilters
8901         if get_osd_param $list '' writethrough_cache_enable | grep 0; then
8902                 echo "oss write cache is NOT enabled"
8903                 return 0
8904         fi
8905
8906         roc_hit_init
8907
8908         #define OBD_FAIL_OBD_NO_LRU  0x609
8909         do_nodes $list $LCTL set_param fail_loc=0x609
8910
8911         # pages should be in the case right after write
8912         dd if=/dev/urandom of=$DIR/$tfile bs=4k count=$CPAGES ||
8913                 error "dd failed"
8914
8915         local BEFORE=$(roc_hit)
8916         cancel_lru_locks osc
8917         cat $DIR/$tfile >/dev/null
8918         local AFTER=$(roc_hit)
8919
8920         do_nodes $list $LCTL set_param fail_loc=0
8921
8922         if ! let "AFTER - BEFORE == CPAGES"; then
8923                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
8924         fi
8925
8926         # the following read invalidates the cache
8927         cancel_lru_locks osc
8928         set_osd_param $list '' read_cache_enable 0
8929         cat $DIR/$tfile >/dev/null
8930
8931         # now data shouldn't be found in the cache
8932         BEFORE=$(roc_hit)
8933         cancel_lru_locks osc
8934         cat $DIR/$tfile >/dev/null
8935         AFTER=$(roc_hit)
8936         if let "AFTER - BEFORE != 0"; then
8937                 error "IN CACHE: before: $BEFORE, after: $AFTER"
8938         fi
8939
8940         set_osd_param $list '' read_cache_enable 1
8941         rm -f $DIR/$tfile
8942 }
8943 run_test 151 "test cache on oss and controls ==============================="
8944
8945 test_152() {
8946         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8947         local TF="$TMP/$tfile"
8948
8949         # simulate ENOMEM during write
8950 #define OBD_FAIL_OST_NOMEM      0x226
8951         lctl set_param fail_loc=0x80000226
8952         dd if=/dev/urandom of=$TF bs=6096 count=1 || error "dd failed"
8953         cp $TF $DIR/$tfile
8954         sync || error "sync failed"
8955         lctl set_param fail_loc=0
8956
8957         # discard client's cache
8958         cancel_lru_locks osc
8959
8960         # simulate ENOMEM during read
8961         lctl set_param fail_loc=0x80000226
8962         cmp $TF $DIR/$tfile || error "cmp failed"
8963         lctl set_param fail_loc=0
8964
8965         rm -f $TF
8966 }
8967 run_test 152 "test read/write with enomem ============================"
8968
8969 test_153() {
8970         $MULTIOP $DIR/$tfile Ow4096Ycu || error "multiop failed"
8971 }
8972 run_test 153 "test if fdatasync does not crash ======================="
8973
8974 dot_lustre_fid_permission_check() {
8975         local fid=$1
8976         local ffid=$MOUNT/.lustre/fid/$fid
8977         local test_dir=$2
8978
8979         echo "stat fid $fid"
8980         stat $ffid > /dev/null || error "stat $ffid failed."
8981         echo "touch fid $fid"
8982         touch $ffid || error "touch $ffid failed."
8983         echo "write to fid $fid"
8984         cat /etc/hosts > $ffid || error "write $ffid failed."
8985         echo "read fid $fid"
8986         diff /etc/hosts $ffid || error "read $ffid failed."
8987         echo "append write to fid $fid"
8988         cat /etc/hosts >> $ffid || error "append write $ffid failed."
8989         echo "rename fid $fid"
8990         mv $ffid $test_dir/$tfile.1 &&
8991                 error "rename $ffid to $tfile.1 should fail."
8992         touch $test_dir/$tfile.1
8993         mv $test_dir/$tfile.1 $ffid &&
8994                 error "rename $tfile.1 to $ffid should fail."
8995         rm -f $test_dir/$tfile.1
8996         echo "truncate fid $fid"
8997         $TRUNCATE $ffid 777 || error "truncate $ffid failed."
8998         echo "link fid $fid"
8999         ln -f $ffid $test_dir/tfile.lnk || error "link $ffid failed."
9000         if [ -n $(lctl get_param -n mdc.*-mdc-*.connect_flags | grep acl) ]; then
9001                 echo "setfacl fid $fid"
9002                 setfacl -R -m u:bin:rwx $ffid || error "setfacl $ffid failed."
9003                 echo "getfacl fid $fid"
9004                 getfacl $ffid >/dev/null || error "getfacl $ffid failed."
9005         fi
9006         echo "unlink fid $fid"
9007         unlink $MOUNT/.lustre/fid/$fid && error "unlink $ffid should fail."
9008         echo "mknod fid $fid"
9009         mknod $ffid c 1 3 && error "mknod $ffid should fail."
9010
9011         fid=[0xf00000400:0x1:0x0]
9012         ffid=$MOUNT/.lustre/fid/$fid
9013
9014         echo "stat non-exist fid $fid"
9015         stat $ffid > /dev/null && error "stat non-exist $ffid should fail."
9016         echo "write to non-exist fid $fid"
9017         cat /etc/hosts > $ffid && error "write non-exist $ffid should fail."
9018         echo "link new fid $fid"
9019         ln $test_dir/$tfile $ffid && error "link $ffid should fail."
9020
9021         mkdir -p $test_dir/$tdir
9022         touch $test_dir/$tdir/$tfile
9023         fid=$($LFS path2fid $test_dir/$tdir)
9024         rc=$?
9025         [ $rc -ne 0 ] &&
9026                 error "error: could not get fid for $test_dir/$dir/$tfile."
9027
9028         ffid=$MOUNT/.lustre/fid/$fid
9029
9030         echo "ls $fid"
9031         ls $ffid > /dev/null || error "ls $ffid failed."
9032         echo "touch $fid/$tfile.1"
9033         touch $ffid/$tfile.1 || error "touch $ffid/$tfile.1 failed."
9034
9035         echo "touch $MOUNT/.lustre/fid/$tfile"
9036         touch $MOUNT/.lustre/fid/$tfile && \
9037                 error "touch $MOUNT/.lustre/fid/$tfile should fail."
9038
9039         echo "setxattr to $MOUNT/.lustre/fid"
9040         setfattr -n trusted.name1 -v value1 $MOUNT/.lustre/fid
9041
9042         echo "listxattr for $MOUNT/.lustre/fid"
9043         getfattr -d -m "^trusted" $MOUNT/.lustre/fid
9044
9045         echo "delxattr from $MOUNT/.lustre/fid"
9046         setfattr -x trusted.name1 $MOUNT/.lustre/fid
9047
9048         echo "touch invalid fid: $MOUNT/.lustre/fid/[0x200000400:0x2:0x3]"
9049         touch $MOUNT/.lustre/fid/[0x200000400:0x2:0x3] &&
9050                 error "touch invalid fid should fail."
9051
9052         echo "touch non-normal fid: $MOUNT/.lustre/fid/[0x1:0x2:0x0]"
9053         touch $MOUNT/.lustre/fid/[0x1:0x2:0x0] &&
9054                 error "touch non-normal fid should fail."
9055
9056         echo "rename $tdir to $MOUNT/.lustre/fid"
9057         mrename $test_dir/$tdir $MOUNT/.lustre/fid &&
9058                 error "rename to $MOUNT/.lustre/fid should fail."
9059
9060         if [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.51) ]
9061         then            # LU-3547
9062                 local old_obf_mode=$(stat --format="%a" $DIR/.lustre/fid)
9063                 local new_obf_mode=777
9064
9065                 echo "change mode of $DIR/.lustre/fid to $new_obf_mode"
9066                 chmod $new_obf_mode $DIR/.lustre/fid ||
9067                         error "chmod $new_obf_mode $DIR/.lustre/fid failed"
9068
9069                 local obf_mode=$(stat --format=%a $DIR/.lustre/fid)
9070                 [ $obf_mode -eq $new_obf_mode ] ||
9071                         error "stat $DIR/.lustre/fid returned wrong mode $obf_mode"
9072
9073                 echo "restore mode of $DIR/.lustre/fid to $old_obf_mode"
9074                 chmod $old_obf_mode $DIR/.lustre/fid ||
9075                         error "chmod $old_obf_mode $DIR/.lustre/fid failed"
9076         fi
9077
9078         $OPENFILE -f O_LOV_DELAY_CREATE:O_CREAT $test_dir/$tfile-2
9079         fid=$($LFS path2fid $test_dir/$tfile-2)
9080         echo "cp /etc/passwd $MOUNT/.lustre/fid/$fid"
9081         cp /etc/passwd $MOUNT/.lustre/fid/$fid &&
9082                 error "create lov data thru .lustre should fail."
9083         echo "cp /etc/passwd $test_dir/$tfile-2"
9084         cp /etc/passwd $test_dir/$tfile-2 ||
9085                 error "copy to $test_dir/$tfile-2 failed."
9086         echo "diff /etc/passwd $MOUNT/.lustre/fid/$fid"
9087         diff /etc/passwd $MOUNT/.lustre/fid/$fid ||
9088                 error "diff /etc/passwd $MOUNT/.lustre/fid/$fid failed."
9089
9090         rm -rf $test_dir/tfile.lnk
9091         rm -rf $test_dir/$tfile-2
9092 }
9093
9094 test_154A() {
9095         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.1) ]] &&
9096                 skip "Need MDS version at least 2.4.1" && return
9097
9098         touch $DIR/$tfile
9099         local FID=$($LFS path2fid $DIR/$tfile)
9100         [ -z "$FID" ] && error "path2fid unable to get $DIR/$tfile FID"
9101
9102         # check that we get the same pathname back
9103         local FOUND=$($LFS fid2path $MOUNT $FID)
9104         [ -z "$FOUND" ] && error "fid2path unable to get $FID path"
9105         [ "$FOUND" != "$DIR/$tfile" ] &&
9106                 error "fid2path(path2fid($DIR/$tfile)) = $FOUND != $DIR/$tfile"
9107
9108         rm -rf $DIR/$tfile
9109 }
9110 run_test 154A "lfs path2fid and fid2path basic checks"
9111
9112 test_154a() {
9113         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9114         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ]] ||
9115                 { skip "Need MDS version at least 2.2.51"; return 0; }
9116
9117         cp /etc/hosts $DIR/$tfile
9118
9119         fid=$($LFS path2fid $DIR/$tfile)
9120         rc=$?
9121         [ $rc -ne 0 ] && error "error: could not get fid for $DIR/$tfile."
9122
9123         dot_lustre_fid_permission_check "$fid" $DIR ||
9124                 error "dot lustre permission check $fid failed"
9125
9126         rm -rf $MOUNT/.lustre && error ".lustre is not allowed to be unlinked"
9127
9128         touch $MOUNT/.lustre/file &&
9129                 error "creation is not allowed under .lustre"
9130
9131         mkdir $MOUNT/.lustre/dir &&
9132                 error "mkdir is not allowed under .lustre"
9133
9134         rm -rf $DIR/$tfile
9135 }
9136 run_test 154a "Open-by-FID"
9137
9138 test_154b() {
9139         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9140         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ]] ||
9141                 { skip "Need MDS version at least 2.2.51"; return 0; }
9142
9143         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
9144
9145         local remote_dir=$DIR/$tdir/remote_dir
9146         local MDTIDX=1
9147         local rc=0
9148
9149         mkdir -p $DIR/$tdir
9150         $LFS mkdir -i $MDTIDX $remote_dir ||
9151                 error "create remote directory failed"
9152
9153         cp /etc/hosts $remote_dir/$tfile
9154
9155         fid=$($LFS path2fid $remote_dir/$tfile)
9156         rc=$?
9157         [ $rc -ne 0 ] && error "error: could not get fid for $remote_dir/$tfile"
9158
9159         dot_lustre_fid_permission_check "$fid" $remote_dir ||
9160                 error "dot lustre permission check $fid failed"
9161         rm -rf $DIR/$tdir
9162 }
9163 run_test 154b "Open-by-FID for remote directory"
9164
9165 test_154c() {
9166         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.1) ]] &&
9167                 skip "Need MDS version at least 2.4.1" && return
9168
9169         touch $DIR/$tfile.1 $DIR/$tfile.2 $DIR/$tfile.3
9170         local FID1=$($LFS path2fid $DIR/$tfile.1)
9171         local FID2=$($LFS path2fid $DIR/$tfile.2)
9172         local FID3=$($LFS path2fid $DIR/$tfile.3)
9173
9174         local N=1
9175         $LFS path2fid $DIR/$tfile.[123] | while read PATHNAME FID; do
9176                 [ "$PATHNAME" = "$DIR/$tfile.$N:" ] ||
9177                         error "path2fid pathname $PATHNAME != $DIR/$tfile.$N:"
9178                 local want=FID$N
9179                 [ "$FID" = "${!want}" ] ||
9180                         error "path2fid $PATHNAME FID $FID != FID$N ${!want}"
9181                 N=$((N + 1))
9182         done
9183
9184         $LFS fid2path $MOUNT $FID1 $FID2 $FID3 | while read PATHNAME; do
9185                 [ "$PATHNAME" = "$DIR/$tfile.$N" ] ||
9186                         error "fid2path pathname $PATHNAME != $DIR/$tfile.$N:"
9187                 N=$((N + 1))
9188         done
9189 }
9190 run_test 154c "lfs path2fid and fid2path multiple arguments"
9191
9192 test_155_small_load() {
9193     local temp=$TMP/$tfile
9194     local file=$DIR/$tfile
9195
9196     dd if=/dev/urandom of=$temp bs=6096 count=1 || \
9197         error "dd of=$temp bs=6096 count=1 failed"
9198     cp $temp $file
9199     cancel_lru_locks osc
9200     cmp $temp $file || error "$temp $file differ"
9201
9202     $TRUNCATE $temp 6000
9203     $TRUNCATE $file 6000
9204     cmp $temp $file || error "$temp $file differ (truncate1)"
9205
9206     echo "12345" >>$temp
9207     echo "12345" >>$file
9208     cmp $temp $file || error "$temp $file differ (append1)"
9209
9210     echo "12345" >>$temp
9211     echo "12345" >>$file
9212     cmp $temp $file || error "$temp $file differ (append2)"
9213
9214     rm -f $temp $file
9215     true
9216 }
9217
9218 test_155_big_load() {
9219     remote_ost_nodsh && skip "remote OST with nodsh" && return
9220     local temp=$TMP/$tfile
9221     local file=$DIR/$tfile
9222
9223     free_min_max
9224     local cache_size=$(do_facet ost$((MAXI+1)) \
9225         "awk '/cache/ {sum+=\\\$4} END {print sum}' /proc/cpuinfo")
9226     local large_file_size=$((cache_size * 2))
9227
9228     echo "OSS cache size: $cache_size KB"
9229     echo "Large file size: $large_file_size KB"
9230
9231     [ $MAXV -le $large_file_size ] && \
9232         skip_env "max available OST size needs > $large_file_size KB" && \
9233         return 0
9234
9235     $SETSTRIPE $file -c 1 -i $MAXI || error "$SETSTRIPE $file failed"
9236
9237     dd if=/dev/urandom of=$temp bs=$large_file_size count=1k || \
9238         error "dd of=$temp bs=$large_file_size count=1k failed"
9239     cp $temp $file
9240     ls -lh $temp $file
9241     cancel_lru_locks osc
9242     cmp $temp $file || error "$temp $file differ"
9243
9244     rm -f $temp $file
9245     true
9246 }
9247
9248 test_155a() {
9249         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9250         set_cache read on
9251         set_cache writethrough on
9252         test_155_small_load
9253 }
9254 run_test 155a "Verify small file correctness: read cache:on write_cache:on"
9255
9256 test_155b() {
9257         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9258         set_cache read on
9259         set_cache writethrough off
9260         test_155_small_load
9261 }
9262 run_test 155b "Verify small file correctness: read cache:on write_cache:off"
9263
9264 test_155c() {
9265         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9266         set_cache read off
9267         set_cache writethrough on
9268         test_155_small_load
9269 }
9270 run_test 155c "Verify small file correctness: read cache:off write_cache:on"
9271
9272 test_155d() {
9273         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9274         set_cache read off
9275         set_cache writethrough off
9276         test_155_small_load
9277 }
9278 run_test 155d "Verify small file correctness: read cache:off write_cache:off"
9279
9280 test_155e() {
9281         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9282         set_cache read on
9283         set_cache writethrough on
9284         test_155_big_load
9285 }
9286 run_test 155e "Verify big file correctness: read cache:on write_cache:on"
9287
9288 test_155f() {
9289         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9290         set_cache read on
9291         set_cache writethrough off
9292         test_155_big_load
9293 }
9294 run_test 155f "Verify big file correctness: read cache:on write_cache:off"
9295
9296 test_155g() {
9297         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9298         set_cache read off
9299         set_cache writethrough on
9300         test_155_big_load
9301 }
9302 run_test 155g "Verify big file correctness: read cache:off write_cache:on"
9303
9304 test_155h() {
9305         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9306         set_cache read off
9307         set_cache writethrough off
9308         test_155_big_load
9309 }
9310 run_test 155h "Verify big file correctness: read cache:off write_cache:off"
9311
9312 test_156() {
9313         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9314         local CPAGES=3
9315         local BEFORE
9316         local AFTER
9317         local file="$DIR/$tfile"
9318
9319         [ "$(facet_fstype ost1)" = "zfs" ] &&
9320                 skip "LU-1956/LU-2261: stats unimplemented on OSD ZFS" &&
9321                 return
9322
9323         roc_hit_init
9324
9325     log "Turn on read and write cache"
9326     set_cache read on
9327     set_cache writethrough on
9328
9329     log "Write data and read it back."
9330     log "Read should be satisfied from the cache."
9331     dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
9332     BEFORE=`roc_hit`
9333     cancel_lru_locks osc
9334     cat $file >/dev/null
9335     AFTER=`roc_hit`
9336     if ! let "AFTER - BEFORE == CPAGES"; then
9337         error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
9338     else
9339         log "cache hits:: before: $BEFORE, after: $AFTER"
9340     fi
9341
9342     log "Read again; it should be satisfied from the cache."
9343     BEFORE=$AFTER
9344     cancel_lru_locks osc
9345     cat $file >/dev/null
9346     AFTER=`roc_hit`
9347     if ! let "AFTER - BEFORE == CPAGES"; then
9348         error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
9349     else
9350         log "cache hits:: before: $BEFORE, after: $AFTER"
9351     fi
9352
9353
9354     log "Turn off the read cache and turn on the write cache"
9355     set_cache read off
9356     set_cache writethrough on
9357
9358     log "Read again; it should be satisfied from the cache."
9359     BEFORE=`roc_hit`
9360     cancel_lru_locks osc
9361     cat $file >/dev/null
9362     AFTER=`roc_hit`
9363     if ! let "AFTER - BEFORE == CPAGES"; then
9364         error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
9365     else
9366         log "cache hits:: before: $BEFORE, after: $AFTER"
9367     fi
9368
9369     log "Read again; it should not be satisfied from the cache."
9370     BEFORE=$AFTER
9371     cancel_lru_locks osc
9372     cat $file >/dev/null
9373     AFTER=`roc_hit`
9374     if ! let "AFTER - BEFORE == 0"; then
9375         error "IN CACHE: before: $BEFORE, after: $AFTER"
9376     else
9377         log "cache hits:: before: $BEFORE, after: $AFTER"
9378     fi
9379
9380     log "Write data and read it back."
9381     log "Read should be satisfied from the cache."
9382     dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
9383     BEFORE=`roc_hit`
9384     cancel_lru_locks osc
9385     cat $file >/dev/null
9386     AFTER=`roc_hit`
9387     if ! let "AFTER - BEFORE == CPAGES"; then
9388         error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
9389     else
9390         log "cache hits:: before: $BEFORE, after: $AFTER"
9391     fi
9392
9393     log "Read again; it should not be satisfied from the cache."
9394     BEFORE=$AFTER
9395     cancel_lru_locks osc
9396     cat $file >/dev/null
9397     AFTER=`roc_hit`
9398     if ! let "AFTER - BEFORE == 0"; then
9399         error "IN CACHE: before: $BEFORE, after: $AFTER"
9400     else
9401         log "cache hits:: before: $BEFORE, after: $AFTER"
9402     fi
9403
9404
9405     log "Turn off read and write cache"
9406     set_cache read off
9407     set_cache writethrough off
9408
9409     log "Write data and read it back"
9410     log "It should not be satisfied from the cache."
9411     rm -f $file
9412     dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
9413     cancel_lru_locks osc
9414     BEFORE=`roc_hit`
9415     cat $file >/dev/null
9416     AFTER=`roc_hit`
9417         if ! let "AFTER - BEFORE == 0"; then
9418                 error_ignore bz20762 "IN CACHE: before: $BEFORE, after: $AFTER"
9419         else
9420                 log "cache hits:: before: $BEFORE, after: $AFTER"
9421         fi
9422
9423     log "Turn on the read cache and turn off the write cache"
9424     set_cache read on
9425     set_cache writethrough off
9426
9427     log "Write data and read it back"
9428     log "It should not be satisfied from the cache."
9429     rm -f $file
9430     dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
9431     BEFORE=`roc_hit`
9432     cancel_lru_locks osc
9433     cat $file >/dev/null
9434     AFTER=`roc_hit`
9435         if ! let "AFTER - BEFORE == 0"; then
9436                 error_ignore bz20762 "IN CACHE: before: $BEFORE, after: $AFTER"
9437         else
9438                 log "cache hits:: before: $BEFORE, after: $AFTER"
9439         fi
9440
9441     log "Read again; it should be satisfied from the cache."
9442     BEFORE=`roc_hit`
9443     cancel_lru_locks osc
9444     cat $file >/dev/null
9445     AFTER=`roc_hit`
9446     if ! let "AFTER - BEFORE == CPAGES"; then
9447         error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
9448     else
9449         log "cache hits:: before: $BEFORE, after: $AFTER"
9450     fi
9451
9452     rm -f $file
9453 }
9454 run_test 156 "Verification of tunables ============================"
9455
9456 #Changelogs
9457 err17935 () {
9458         if [ $MDSCOUNT -gt 1 ]; then
9459                 error_ignore bz17935 $*
9460         else
9461                 error $*
9462         fi
9463 }
9464
9465 changelog_chmask()
9466 {
9467         local CL_MASK_PARAM="mdd.$MDT0.changelog_mask"
9468
9469         MASK=$(do_facet $SINGLEMDS $LCTL get_param $CL_MASK_PARAM| grep -c "$1")
9470
9471         if [ $MASK -eq 1 ]; then
9472                 do_facet $SINGLEMDS $LCTL set_param $CL_MASK_PARAM="-$1"
9473         else
9474                 do_facet $SINGLEMDS $LCTL set_param $CL_MASK_PARAM="+$1"
9475         fi
9476 }
9477
9478 changelog_extract_field() {
9479         local mdt=$1
9480         local cltype=$2
9481         local file=$3
9482         local identifier=$4
9483
9484         $LFS changelog $mdt | gawk "/$cltype.*$file$/ {
9485                 print gensub(/^.* "$identifier'(\[[^\]]*\]).*$/,"\\1",1)}' |
9486                 tail -1
9487 }
9488
9489 test_160a() {
9490         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9491         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9492         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] ||
9493                 { skip "Need MDS version at least 2.2.0"; return; }
9494
9495         local CL_USERS="mdd.$MDT0.changelog_users"
9496         local GET_CL_USERS="do_facet $SINGLEMDS $LCTL get_param -n $CL_USERS"
9497         USER=$(do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_register -n)
9498         echo "Registered as changelog user $USER"
9499         $GET_CL_USERS | grep -q $USER ||
9500                 error "User $USER not found in changelog_users"
9501
9502         # change something
9503         test_mkdir -p $DIR/$tdir/pics/2008/zachy
9504         touch $DIR/$tdir/pics/2008/zachy/timestamp
9505         cp /etc/hosts $DIR/$tdir/pics/2008/zachy/pic1.jpg
9506         mv $DIR/$tdir/pics/2008/zachy $DIR/$tdir/pics/zach
9507         ln $DIR/$tdir/pics/zach/pic1.jpg $DIR/$tdir/pics/2008/portland.jpg
9508         ln -s $DIR/$tdir/pics/2008/portland.jpg $DIR/$tdir/pics/desktop.jpg
9509         rm $DIR/$tdir/pics/desktop.jpg
9510
9511         $LFS changelog $MDT0 | tail -5
9512
9513         echo "verifying changelog mask"
9514         changelog_chmask "MKDIR"
9515         changelog_chmask "CLOSE"
9516
9517         test_mkdir -p $DIR/$tdir/pics/zach/sofia
9518         echo "zzzzzz" > $DIR/$tdir/pics/zach/file
9519
9520         changelog_chmask "MKDIR"
9521         changelog_chmask "CLOSE"
9522
9523         test_mkdir -p $DIR/$tdir/pics/2008/sofia
9524         echo "zzzzzz" > $DIR/$tdir/pics/zach/file
9525
9526         $LFS changelog $MDT0
9527         MKDIRS=$($LFS changelog $MDT0 | tail -5 | grep -c "MKDIR")
9528         CLOSES=$($LFS changelog $MDT0 | tail -5 | grep -c "CLOSE")
9529         [ $MKDIRS -eq 1 ] || err17935 "MKDIR changelog mask count $DIRS != 1"
9530         [ $CLOSES -eq 1 ] || err17935 "CLOSE changelog mask count $DIRS != 1"
9531
9532         # verify contents
9533         echo "verifying target fid"
9534         fidc=$(changelog_extract_field $MDT0 "CREAT" "timestamp" "t=")
9535         fidf=$($LFS path2fid $DIR/$tdir/pics/zach/timestamp)
9536         [ "$fidc" == "$fidf" ] ||
9537                 err17935 "fid in changelog $fidc != file fid $fidf"
9538         echo "verifying parent fid"
9539         fidc=$(changelog_extract_field $MDT0 "CREAT" "timestamp" "p=")
9540         fidf=$($LFS path2fid $DIR/$tdir/pics/zach)
9541         [ "$fidc" == "$fidf" ] ||
9542                 err17935 "pfid in changelog $fidc != dir fid $fidf"
9543
9544         USER_REC1=$($GET_CL_USERS | awk "\$1 == \"$USER\" {print \$2}")
9545         $LFS changelog_clear $MDT0 $USER $(($USER_REC1 + 5))
9546         USER_REC2=$($GET_CL_USERS | awk "\$1 == \"$USER\" {print \$2}")
9547         echo "verifying user clear: $(( $USER_REC1 + 5 )) == $USER_REC2"
9548         [ $USER_REC2 == $(($USER_REC1 + 5)) ] ||
9549                 err17935 "user index expected $(($USER_REC1 + 5)) is $USER_REC2"
9550
9551         MIN_REC=$($GET_CL_USERS |
9552                 awk 'min == "" || $2 < min {min = $2}; END {print min}')
9553         FIRST_REC=$($LFS changelog $MDT0 | head -1 | awk '{print $1}')
9554         echo "verifying min purge: $(( $MIN_REC + 1 )) == $FIRST_REC"
9555         [ $FIRST_REC == $(($MIN_REC + 1)) ] ||
9556                 err17935 "first index should be $(($MIN_REC + 1)) is $FIRST_REC"
9557
9558         # LU-3446 changelog index reset on MDT restart
9559         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
9560         CUR_REC1=$($GET_CL_USERS | head -1 | cut -f3 -d' ')
9561         $LFS changelog_clear $MDT0 $USER 0
9562         stop $SINGLEMDS || error "Fail to stop MDT."
9563         start $SINGLEMDS $MDT_DEV $MDS_MOUNT_OPTS || error "Fail to start MDT."
9564         CUR_REC2=$($GET_CL_USERS | head -1 | cut -f3 -d' ')
9565         echo "verifying index survives MDT restart: $CUR_REC1 == $CUR_REC2"
9566         [ $CUR_REC1 == $CUR_REC2 ] ||
9567                 err17935 "current index should be $CUR_REC1 is $CUR_REC2"
9568
9569         echo "verifying user deregister"
9570         do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister $USER
9571         $GET_CL_USERS | grep -q $USER &&
9572                 error "User $USER still in changelog_users"
9573
9574         USERS=$(( $($GET_CL_USERS | wc -l) - 2 ))
9575         if [ $USERS -eq 0 ]; then
9576                 LAST_REC1=$($GET_CL_USERS | head -1 | cut -f3 -d' ')
9577                 touch $DIR/$tdir/chloe
9578                 LAST_REC2=$($GET_CL_USERS | head -1 | cut -f3 -d' ')
9579                 echo "verify changelogs are off: $LAST_REC1 == $LAST_REC2"
9580                 [ $LAST_REC1 == $LAST_REC2 ] || error "changelogs not off"
9581         else
9582                 echo "$USERS other changelog users; can't verify off"
9583         fi
9584 }
9585 run_test 160a "changelog sanity"
9586
9587 test_160b() { # LU-3587
9588         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9589         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9590         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] ||
9591                 { skip "Need MDS version at least 2.2.0"; return; }
9592
9593         local CL_USERS="mdd.$MDT0.changelog_users"
9594         local GET_CL_USERS="do_facet $SINGLEMDS $LCTL get_param -n $CL_USERS"
9595         USER=$(do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_register -n)
9596         echo "Registered as changelog user $USER"
9597         $GET_CL_USERS | grep -q $USER ||
9598                 error "User $USER not found in changelog_users"
9599
9600         local LONGNAME1=$(str_repeat a 255)
9601         local LONGNAME2=$(str_repeat b 255)
9602
9603         cd $DIR
9604         echo "creating very long named file"
9605         touch $LONGNAME1 || error "create of $LONGNAME1 failed"
9606         echo "moving very long named file"
9607         mv $LONGNAME1 $LONGNAME2
9608
9609         $LFS changelog $MDT0 | grep RENME
9610
9611         echo "deregistering $USER"
9612         do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister $USER
9613
9614         rm -f $LONGNAME2
9615 }
9616 run_test 160b "Verify that very long rename doesn't crash in changelog"
9617
9618 test_161a() {
9619         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9620     test_mkdir -p $DIR/$tdir
9621     cp /etc/hosts $DIR/$tdir/$tfile
9622     test_mkdir $DIR/$tdir/foo1
9623     test_mkdir $DIR/$tdir/foo2
9624     ln $DIR/$tdir/$tfile $DIR/$tdir/foo1/sofia
9625     ln $DIR/$tdir/$tfile $DIR/$tdir/foo2/zachary
9626     ln $DIR/$tdir/$tfile $DIR/$tdir/foo1/luna
9627     ln $DIR/$tdir/$tfile $DIR/$tdir/foo2/thor
9628         local FID=$($LFS path2fid $DIR/$tdir/$tfile | tr -d '[]')
9629         if [ "$($LFS fid2path $DIR $FID | wc -l)" != "5" ]; then
9630                 $LFS fid2path $DIR $FID
9631                 err17935 "bad link ea"
9632         fi
9633     # middle
9634     rm $DIR/$tdir/foo2/zachary
9635     # last
9636     rm $DIR/$tdir/foo2/thor
9637     # first
9638     rm $DIR/$tdir/$tfile
9639     # rename
9640     mv $DIR/$tdir/foo1/sofia $DIR/$tdir/foo2/maggie
9641     if [ "$($LFS fid2path $FSNAME --link 1 $FID)" != "$tdir/foo2/maggie" ]
9642         then
9643         $LFS fid2path $DIR $FID
9644         err17935 "bad link rename"
9645     fi
9646     rm $DIR/$tdir/foo2/maggie
9647
9648     # overflow the EA
9649     local longname=filename_avg_len_is_thirty_two_
9650     createmany -l$DIR/$tdir/foo1/luna $DIR/$tdir/foo2/$longname 1000 || \
9651         error "failed to hardlink many files"
9652     links=$($LFS fid2path $DIR $FID | wc -l)
9653     echo -n "${links}/1000 links in link EA"
9654     [ ${links} -gt 60 ] || err17935 "expected at least 60 links in link EA"
9655     unlinkmany $DIR/$tdir/foo2/$longname 1000 || \
9656         error "failed to unlink many hardlinks"
9657 }
9658 run_test 161a "link ea sanity"
9659
9660 test_161b() {
9661         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9662         [ $MDSCOUNT -lt 2 ] &&
9663                 skip "skipping remote directory test" && return
9664         local MDTIDX=1
9665         local remote_dir=$DIR/$tdir/remote_dir
9666
9667         mkdir -p $DIR/$tdir
9668         $LFS mkdir -i $MDTIDX $remote_dir ||
9669                 error "create remote directory failed"
9670
9671         cp /etc/hosts $remote_dir/$tfile
9672         mkdir -p $remote_dir/foo1
9673         mkdir -p $remote_dir/foo2
9674         ln $remote_dir/$tfile $remote_dir/foo1/sofia
9675         ln $remote_dir/$tfile $remote_dir/foo2/zachary
9676         ln $remote_dir/$tfile $remote_dir/foo1/luna
9677         ln $remote_dir/$tfile $remote_dir/foo2/thor
9678
9679         local FID=$($LFS path2fid $remote_dir/$tfile | tr -d '[' |
9680                      tr -d ']')
9681         if [ "$($LFS fid2path $DIR $FID | wc -l)" != "5" ]; then
9682                 $LFS fid2path $DIR $FID
9683                 err17935 "bad link ea"
9684         fi
9685         # middle
9686         rm $remote_dir/foo2/zachary
9687         # last
9688         rm $remote_dir/foo2/thor
9689         # first
9690         rm $remote_dir/$tfile
9691         # rename
9692         mv $remote_dir/foo1/sofia $remote_dir/foo2/maggie
9693         local link_path=$($LFS fid2path $FSNAME --link 1 $FID)
9694         if [ "$DIR/$link_path" != "$remote_dir/foo2/maggie" ]; then
9695                 $LFS fid2path $DIR $FID
9696                 err17935 "bad link rename"
9697         fi
9698         rm $remote_dir/foo2/maggie
9699
9700         # overflow the EA
9701         local longname=filename_avg_len_is_thirty_two_
9702         createmany -l$remote_dir/foo1/luna $remote_dir/foo2/$longname 1000 ||
9703                 error "failed to hardlink many files"
9704         links=$($LFS fid2path $DIR $FID | wc -l)
9705         echo -n "${links}/1000 links in link EA"
9706         [ ${links} -gt 60 ] || err17935 "expected at least 60 links in link EA"
9707         unlinkmany $remote_dir/foo2/$longname 1000 ||
9708         error "failed to unlink many hardlinks"
9709 }
9710 run_test 161b "link ea sanity under remote directory"
9711
9712 test_161c() {
9713         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9714         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.1.5) ]] &&
9715                 skip "Need MDS version at least 2.1.5" && return
9716
9717         # define CLF_RENAME_LAST 0x0001
9718         # rename overwrite a target having nlink = 1 (changelog flag 0x1)
9719         local USER=$(do_facet $SINGLEMDS $LCTL --device $MDT0 \
9720                 changelog_register -n)
9721         rm -rf $DIR/$tdir
9722         mkdir -p $DIR/$tdir
9723         touch $DIR/$tdir/foo_161c
9724         touch $DIR/$tdir/bar_161c
9725         mv -f $DIR/$tdir/foo_161c $DIR/$tdir/bar_161c
9726         $LFS changelog $MDT0 | grep RENME
9727         local flags=$($LFS changelog $MDT0 | grep RENME | tail -1 | \
9728                 cut -f5 -d' ')
9729         $LFS changelog_clear $MDT0 $USER 0
9730         if [ x$flags != "x0x1" ]; then
9731                 do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister \
9732                         $USER
9733                 error "flag $flags is not 0x1"
9734         fi
9735         echo "rename overwrite a target having nlink = 1," \
9736                 "changelog record has flags of $flags"
9737
9738         # rename overwrite a target having nlink > 1 (changelog flag 0x0)
9739         touch $DIR/$tdir/foo_161c
9740         touch $DIR/$tdir/bar_161c
9741         ln $DIR/$tdir/bar_161c $DIR/$tdir/foobar_161c
9742         mv -f $DIR/$tdir/foo_161c $DIR/$tdir/bar_161c
9743         $LFS changelog $MDT0 | grep RENME
9744         flags=$($LFS changelog $MDT0 | grep RENME | tail -1 | cut -f5 -d' ')
9745         $LFS changelog_clear $MDT0 $USER 0
9746         if [ x$flags != "x0x0" ]; then
9747                 do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister \
9748                         $USER
9749                 error "flag $flags is not 0x0"
9750         fi
9751         echo "rename overwrite a target having nlink > 1," \
9752                 "changelog record has flags of $flags"
9753
9754         # rename doesn't overwrite a target (changelog flag 0x0)
9755         touch $DIR/$tdir/foo_161c
9756         mv -f $DIR/$tdir/foo_161c $DIR/$tdir/foo2_161c
9757         $LFS changelog $MDT0 | grep RENME
9758         flags=$($LFS changelog $MDT0 | grep RENME | tail -1 | cut -f5 -d' ')
9759         $LFS changelog_clear $MDT0 $USER 0
9760         if [ x$flags != "x0x0" ]; then
9761                 do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister \
9762                         $USER
9763                 error "flag $flags is not 0x0"
9764         fi
9765         echo "rename doesn't overwrite a target," \
9766                 "changelog record has flags of $flags"
9767
9768         # define CLF_UNLINK_LAST 0x0001
9769         # unlink a file having nlink = 1 (changelog flag 0x1)
9770         rm -f $DIR/$tdir/foo2_161c
9771         $LFS changelog $MDT0 | grep UNLNK
9772         flags=$($LFS changelog $MDT0 | grep UNLNK | tail -1 | cut -f5 -d' ')
9773         $LFS changelog_clear $MDT0 $USER 0
9774         if [ x$flags != "x0x1" ]; then
9775                 do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister \
9776                         $USER
9777                 error "flag $flags is not 0x1"
9778         fi
9779         echo "unlink a file having nlink = 1," \
9780                 "changelog record has flags of $flags"
9781
9782         # unlink a file having nlink > 1 (changelog flag 0x0)
9783         ln -f $DIR/$tdir/bar_161c $DIR/$tdir/foobar_161c
9784         rm -f $DIR/$tdir/foobar_161c
9785         $LFS changelog $MDT0 | grep UNLNK
9786         flags=$($LFS changelog $MDT0 | grep UNLNK | tail -1 | cut -f5 -d' ')
9787         $LFS changelog_clear $MDT0 $USER 0
9788         if [ x$flags != "x0x0" ]; then
9789                 do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister \
9790                         $USER
9791                 error "flag $flags is not 0x0"
9792         fi
9793         echo "unlink a file having nlink > 1," \
9794                 "changelog record has flags of $flags"
9795         do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister $USER
9796 }
9797 run_test 161c "check CL_RENME[UNLINK] changelog record flags"
9798
9799 check_path() {
9800     local expected=$1
9801     shift
9802     local fid=$2
9803
9804     local path=$(${LFS} fid2path $*)
9805     RC=$?
9806
9807     if [ $RC -ne 0 ]; then
9808         err17935 "path looked up of $expected failed. Error $RC"
9809         return $RC
9810     elif [ "${path}" != "${expected}" ]; then
9811         err17935 "path looked up \"${path}\" instead of \"${expected}\""
9812         return 2
9813     fi
9814     echo "fid $fid resolves to path $path (expected $expected)"
9815 }
9816
9817 test_162() {
9818         # Make changes to filesystem
9819         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9820         test_mkdir -p $DIR/$tdir/d2
9821         touch $DIR/$tdir/d2/$tfile
9822         touch $DIR/$tdir/d2/x1
9823         touch $DIR/$tdir/d2/x2
9824         test_mkdir -p $DIR/$tdir/d2/a/b/c
9825         test_mkdir -p $DIR/$tdir/d2/p/q/r
9826         # regular file
9827         FID=$($LFS path2fid $DIR/$tdir/d2/$tfile | tr -d '[]')
9828         check_path "$tdir/d2/$tfile" $FSNAME $FID --link 0
9829
9830         # softlink
9831         ln -s $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/p/q/r/slink
9832         FID=$($LFS path2fid $DIR/$tdir/d2/p/q/r/slink | tr -d '[]')
9833         check_path "$tdir/d2/p/q/r/slink" $FSNAME $FID --link 0
9834
9835         # softlink to wrong file
9836         ln -s /this/is/garbage $DIR/$tdir/d2/p/q/r/slink.wrong
9837         FID=$($LFS path2fid $DIR/$tdir/d2/p/q/r/slink.wrong | tr -d '[]')
9838         check_path "$tdir/d2/p/q/r/slink.wrong" $FSNAME $FID --link 0
9839
9840         # hardlink
9841         ln $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/p/q/r/hlink
9842         mv $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/a/b/c/new_file
9843         FID=$($LFS path2fid $DIR/$tdir/d2/a/b/c/new_file | tr -d '[]')
9844         # fid2path dir/fsname should both work
9845         check_path "$tdir/d2/a/b/c/new_file" $FSNAME $FID --link 1
9846         check_path "$DIR/$tdir/d2/p/q/r/hlink" $DIR $FID --link 0
9847
9848         # hardlink count: check that there are 2 links
9849         # Doesnt work with CMD yet: 17935
9850         ${LFS} fid2path $DIR $FID | wc -l | grep -q 2 || \
9851                 err17935 "expected 2 links"
9852
9853         # hardlink indexing: remove the first link
9854         rm $DIR/$tdir/d2/p/q/r/hlink
9855         check_path "$tdir/d2/a/b/c/new_file" $FSNAME $FID --link 0
9856
9857         return 0
9858 }
9859 run_test 162 "path lookup sanity"
9860
9861 test_169() {
9862         # do directio so as not to populate the page cache
9863         log "creating a 10 Mb file"
9864         $MULTIOP $DIR/$tfile oO_CREAT:O_DIRECT:O_RDWR:w$((10*1048576))c || error "multiop failed while creating a file"
9865         log "starting reads"
9866         dd if=$DIR/$tfile of=/dev/null bs=4096 &
9867         log "truncating the file"
9868         $MULTIOP $DIR/$tfile oO_TRUNC:c || error "multiop failed while truncating the file"
9869         log "killing dd"
9870         kill %+ || true # reads might have finished
9871         echo "wait until dd is finished"
9872         wait
9873         log "removing the temporary file"
9874         rm -rf $DIR/$tfile || error "tmp file removal failed"
9875 }
9876 run_test 169 "parallel read and truncate should not deadlock"
9877
9878 test_170() {
9879         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9880         $LCTL clear     # bug 18514
9881         $LCTL debug_daemon start $TMP/${tfile}_log_good
9882         touch $DIR/$tfile
9883         $LCTL debug_daemon stop
9884         sed -e "s/^...../a/g" $TMP/${tfile}_log_good > $TMP/${tfile}_log_bad ||
9885                error "sed failed to read log_good"
9886
9887         $LCTL debug_daemon start $TMP/${tfile}_log_good
9888         rm -rf $DIR/$tfile
9889         $LCTL debug_daemon stop
9890
9891         $LCTL df $TMP/${tfile}_log_bad > $TMP/${tfile}_log_bad.out 2>&1 ||
9892                error "lctl df log_bad failed"
9893
9894         local bad_line=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $9}')
9895         local good_line1=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $5}')
9896
9897         $LCTL df $TMP/${tfile}_log_good > $TMP/${tfile}_log_good.out 2>&1
9898         local good_line2=$(tail -n 1 $TMP/${tfile}_log_good.out | awk '{print $5}')
9899
9900         [ "$bad_line" ] && [ "$good_line1" ] && [ "$good_line2" ] ||
9901                 error "bad_line good_line1 good_line2 are empty"
9902
9903         cat $TMP/${tfile}_log_good >> $TMP/${tfile}_logs_corrupt
9904         cat $TMP/${tfile}_log_bad >> $TMP/${tfile}_logs_corrupt
9905         cat $TMP/${tfile}_log_good >> $TMP/${tfile}_logs_corrupt
9906
9907         $LCTL df $TMP/${tfile}_logs_corrupt > $TMP/${tfile}_log_bad.out 2>&1
9908         local bad_line_new=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $9}')
9909         local good_line_new=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $5}')
9910
9911         [ "$bad_line_new" ] && [ "$good_line_new" ] ||
9912                 error "bad_line_new good_line_new are empty"
9913
9914         local expected_good=$((good_line1 + good_line2*2))
9915
9916         rm -f $TMP/${tfile}*
9917         # LU-231, short malformed line may not be counted into bad lines
9918         if [ $bad_line -ne $bad_line_new ] &&
9919                    [ $bad_line -ne $((bad_line_new - 1)) ]; then
9920                 error "expected $bad_line bad lines, but got $bad_line_new"
9921                 return 1
9922         fi
9923
9924         if [ $expected_good -ne $good_line_new ]; then
9925                 error "expected $expected_good good lines, but got $good_line_new"
9926                 return 2
9927         fi
9928         true
9929 }
9930 run_test 170 "test lctl df to handle corrupted log ====================="
9931
9932 test_171() { # bug20592
9933         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9934 #define OBD_FAIL_PTLRPC_DUMP_LOG         0x50e
9935         $LCTL set_param fail_loc=0x50e
9936         $LCTL set_param fail_val=3000
9937         multiop_bg_pause $DIR/$tfile O_s || true
9938         local MULTIPID=$!
9939         kill -USR1 $MULTIPID
9940         # cause log dump
9941         sleep 3
9942         wait $MULTIPID
9943         if dmesg | grep "recursive fault"; then
9944                 error "caught a recursive fault"
9945         fi
9946         $LCTL set_param fail_loc=0
9947         true
9948 }
9949 run_test 171 "test libcfs_debug_dumplog_thread stuck in do_exit() ======"
9950
9951 # it would be good to share it with obdfilter-survey/libecho code
9952 setup_obdecho_osc () {
9953         local rc=0
9954         local ost_nid=$1
9955         local obdfilter_name=$2
9956         echo "Creating new osc for $obdfilter_name on $ost_nid"
9957         # make sure we can find loopback nid
9958         $LCTL add_uuid $ost_nid $ost_nid >/dev/null 2>&1
9959
9960         [ $rc -eq 0 ] && { $LCTL attach osc ${obdfilter_name}_osc     \
9961                            ${obdfilter_name}_osc_UUID || rc=2; }
9962         [ $rc -eq 0 ] && { $LCTL --device ${obdfilter_name}_osc setup \
9963                            ${obdfilter_name}_UUID  $ost_nid || rc=3; }
9964         return $rc
9965 }
9966
9967 cleanup_obdecho_osc () {
9968         local obdfilter_name=$1
9969         $LCTL --device ${obdfilter_name}_osc cleanup >/dev/null
9970         $LCTL --device ${obdfilter_name}_osc detach  >/dev/null
9971         return 0
9972 }
9973
9974 obdecho_test() {
9975         local OBD=$1
9976         local node=$2
9977         local pages=${3:-64}
9978         local rc=0
9979         local id
9980
9981         local count=10
9982         local obd_size=$(get_obd_size $node $OBD)
9983         local page_size=$(get_page_size $node)
9984         if [[ -n "$obd_size" ]]; then
9985                 local new_count=$((obd_size / (pages * page_size / 1024)))
9986                 [[ $new_count -ge $count ]] || count=$new_count
9987         fi
9988
9989         do_facet $node "$LCTL attach echo_client ec ec_uuid" || rc=1
9990         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec setup $OBD" ||
9991                            rc=2; }
9992         if [ $rc -eq 0 ]; then
9993             id=$(do_facet $node "$LCTL --device ec create 1"  | awk '/object id/ {print $6}')
9994             [ ${PIPESTATUS[0]} -eq 0 -a -n "$id" ] || rc=3
9995         fi
9996         echo "New object id is $id"
9997         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec getattr $id" ||
9998                            rc=4; }
9999         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec "                 \
10000                            "test_brw $count w v $pages $id" || rc=4; }
10001         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec destroy $id 1" ||
10002                            rc=4; }
10003         [ $rc -eq 0 -o $rc -gt 2 ] && { do_facet $node "$LCTL --device ec "    \
10004                                         "cleanup" || rc=5; }
10005         [ $rc -eq 0 -o $rc -gt 1 ] && { do_facet $node "$LCTL --device ec "    \
10006                                         "detach" || rc=6; }
10007         [ $rc -ne 0 ] && echo "obecho_create_test failed: $rc"
10008         return $rc
10009 }
10010
10011 test_180a() {
10012         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10013         remote_ost_nodsh && skip "remote OST with nodsh" && return
10014         local rc=0
10015         local rmmod_local=0
10016
10017         if ! module_loaded obdecho; then
10018             load_module obdecho/obdecho
10019             rmmod_local=1
10020         fi
10021
10022         local osc=$($LCTL dl | grep -v mdt | awk '$3 == "osc" {print $4; exit}')
10023         local host=$(lctl get_param -n osc.$osc.import |
10024                              awk '/current_connection:/ {print $2}' )
10025         local target=$(lctl get_param -n osc.$osc.import |
10026                              awk '/target:/ {print $2}' )
10027         target=${target%_UUID}
10028
10029         [[ -n $target ]]  && { setup_obdecho_osc $host $target || rc=1; } || rc=1
10030         [ $rc -eq 0 ] && { obdecho_test ${target}_osc client || rc=2; }
10031         [[ -n $target ]] && cleanup_obdecho_osc $target
10032         [ $rmmod_local -eq 1 ] && rmmod obdecho
10033         return $rc
10034 }
10035 run_test 180a "test obdecho on osc"
10036
10037 test_180b() {
10038         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10039         remote_ost_nodsh && skip "remote OST with nodsh" && return
10040         local rc=0
10041         local rmmod_remote=0
10042
10043         do_facet ost1 "lsmod | grep -q obdecho || "                      \
10044                       "{ insmod ${LUSTRE}/obdecho/obdecho.ko || "        \
10045                       "modprobe obdecho; }" && rmmod_remote=1
10046         target=$(do_facet ost1 $LCTL dl | awk '/obdfilter/ {print $4;exit}')
10047         [[ -n $target ]] && { obdecho_test $target ost1 || rc=1; }
10048         [ $rmmod_remote -eq 1 ] && do_facet ost1 "rmmod obdecho"
10049         return $rc
10050 }
10051 run_test 180b "test obdecho directly on obdfilter"
10052
10053 test_180c() { # LU-2598
10054         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10055         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.0) ]] &&
10056                 skip "Need MDS version at least 2.4.0" && return
10057
10058         local rc=0
10059         local rmmod_remote=false
10060         local pages=16384 # 64MB bulk I/O RPC size
10061         local target
10062
10063         do_rpc_nodes $(facet_active_host ost1) load_module obdecho/obdecho &&
10064                 rmmod_remote=true || error "failed to load module obdecho"
10065
10066         target=$(do_facet ost1 $LCTL dl | awk '/obdfilter/ {print $4}'|head -1)
10067         if [[ -n $target ]]; then
10068                 obdecho_test "$target" ost1 "$pages" ||
10069                         rc=${PIPESTATUS[0]}
10070         else
10071                 echo "there is no obdfilter target on ost1"
10072                 rc=2
10073         fi
10074         $rmmod_remote && do_facet ost1 "rmmod obdecho" || true
10075         return $rc
10076 }
10077 run_test 180c "test huge bulk I/O size on obdfilter, don't LASSERT"
10078
10079 test_181() { # bug 22177
10080         test_mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
10081         # create enough files to index the directory
10082         createmany -o $DIR/$tdir/foobar 4000
10083         # print attributes for debug purpose
10084         lsattr -d .
10085         # open dir
10086         multiop_bg_pause $DIR/$tdir D_Sc || return 1
10087         MULTIPID=$!
10088         # remove the files & current working dir
10089         unlinkmany $DIR/$tdir/foobar 4000
10090         rmdir $DIR/$tdir
10091         kill -USR1 $MULTIPID
10092         wait $MULTIPID
10093         stat $DIR/$tdir && error "open-unlinked dir was not removed!"
10094         return 0
10095 }
10096 run_test 181 "Test open-unlinked dir ========================"
10097
10098 test_182() {
10099         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10100         # disable MDC RPC lock wouldn't crash client
10101         local fcount=1000
10102         local tcount=4
10103
10104         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
10105 #define OBD_FAIL_MDC_RPCS_SEM           0x804
10106         $LCTL set_param fail_loc=0x804
10107
10108         for (( i=0; i < $tcount; i++ )) ; do
10109                 mkdir $DIR/$tdir/$i
10110                 createmany -o $DIR/$tdir/$i/f- $fcount &
10111         done
10112         wait
10113
10114         for (( i=0; i < $tcount; i++ )) ; do
10115                 unlinkmany $DIR/$tdir/$i/f- $fcount &
10116         done
10117         wait
10118
10119         rm -rf $DIR/$tdir
10120
10121         $LCTL set_param fail_loc=0
10122 }
10123 run_test 182 "Disable MDC RPCs semaphore wouldn't crash client ================"
10124
10125 test_183() { # LU-2275
10126         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.56) ]] &&
10127                 skip "Need MDS version at least 2.3.56" && return
10128
10129         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10130         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
10131         echo aaa > $DIR/$tdir/$tfile
10132
10133 #define OBD_FAIL_MDS_NEGATIVE_POSITIVE  0x148
10134         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x148
10135
10136         ls -l $DIR/$tdir && error "ls succeeded, should have failed"
10137         cat $DIR/$tdir/$tfile && error "cat succeeded, should have failed"
10138
10139         do_facet $SINGLEMDS $LCTL set_param fail_loc=0
10140
10141         # Flush negative dentry cache
10142         touch $DIR/$tdir/$tfile
10143
10144         # We are not checking for any leaked references here, they'll
10145         # become evident next time we do cleanup with module unload.
10146         rm -rf $DIR/$tdir
10147 }
10148 run_test 183 "No crash or request leak in case of strange dispositions ========"
10149
10150 # test suite 184 is for LU-2016, LU-2017
10151 test_184a() {
10152         check_swap_layouts_support && return 0
10153
10154         dir0=$DIR/$tdir/$testnum
10155         test_mkdir -p $dir0 || error "creating dir $dir0"
10156         ref1=/etc/passwd
10157         ref2=/etc/group
10158         file1=$dir0/f1
10159         file2=$dir0/f2
10160         $SETSTRIPE -c1 $file1
10161         cp $ref1 $file1
10162         $SETSTRIPE -c2 $file2
10163         cp $ref2 $file2
10164         gen1=$($GETSTRIPE -g $file1)
10165         gen2=$($GETSTRIPE -g $file2)
10166
10167         $LFS swap_layouts $file1 $file2 || error "swap of file layout failed"
10168         gen=$($GETSTRIPE -g $file1)
10169         [[ $gen1 != $gen ]] ||
10170                 "Layout generation on $file1 does not change"
10171         gen=$($GETSTRIPE -g $file2)
10172         [[ $gen2 != $gen ]] ||
10173                 "Layout generation on $file2 does not change"
10174
10175         cmp $ref1 $file2 || error "content compare failed ($ref1 != $file2)"
10176         cmp $ref2 $file1 || error "content compare failed ($ref2 != $file1)"
10177 }
10178 run_test 184a "Basic layout swap"
10179
10180 test_184b() {
10181         check_swap_layouts_support && return 0
10182
10183         dir0=$DIR/$tdir/$testnum
10184         mkdir -p $dir0 || error "creating dir $dir0"
10185         file1=$dir0/f1
10186         file2=$dir0/f2
10187         file3=$dir0/f3
10188         dir1=$dir0/d1
10189         dir2=$dir0/d2
10190         mkdir $dir1 $dir2
10191         $SETSTRIPE -c1 $file1
10192         $SETSTRIPE -c2 $file2
10193         $SETSTRIPE -c1 $file3
10194         chown $RUNAS_ID $file3
10195         gen1=$($GETSTRIPE -g $file1)
10196         gen2=$($GETSTRIPE -g $file2)
10197
10198         $LFS swap_layouts $dir1 $dir2 &&
10199                 error "swap of directories layouts should fail"
10200         $LFS swap_layouts $dir1 $file1 &&
10201                 error "swap of directory and file layouts should fail"
10202         $RUNAS $LFS swap_layouts $file1 $file2 &&
10203                 error "swap of file we cannot write should fail"
10204         $LFS swap_layouts $file1 $file3 &&
10205                 error "swap of file with different owner should fail"
10206         /bin/true # to clear error code
10207 }
10208 run_test 184b "Forbidden layout swap (will generate errors)"
10209
10210 test_184c() {
10211         check_swap_layouts_support && return 0
10212
10213         local dir0=$DIR/$tdir/$testnum
10214         mkdir -p $dir0 || error "creating dir $dir0"
10215
10216         local ref1=$dir0/ref1
10217         local ref2=$dir0/ref2
10218         local file1=$dir0/file1
10219         local file2=$dir0/file2
10220         # create a file large enough for the concurent test
10221         dd if=/dev/urandom of=$ref1 bs=1M count=$((RANDOM % 50 + 20))
10222         dd if=/dev/urandom of=$ref2 bs=1M count=$((RANDOM % 50 + 20))
10223         echo "ref file size: ref1(`stat -c %s $ref1`), ref2(`stat -c %s $ref2`)"
10224
10225         cp $ref2 $file2
10226         dd if=$ref1 of=$file1 bs=16k &
10227         local DD_PID=$!
10228
10229         # Make sure dd starts to copy file
10230         while [ ! -f $file1 ]; do sleep 0.1; done
10231
10232         $LFS swap_layouts $file1 $file2
10233         local rc=$?
10234         wait $DD_PID
10235         [[ $? == 0 ]] || error "concurrent write on $file1 failed"
10236         [[ $rc == 0 ]] || error "swap of $file1 and $file2 failed"
10237
10238         # how many bytes copied before swapping layout
10239         local copied=`stat -c %s $file2`
10240         local remaining=`stat -c %s $ref1`
10241         remaining=$((remaining - copied))
10242         echo "Copied $copied bytes before swapping layout..."
10243
10244         cmp -n $copied $file1 $ref2 | grep differ &&
10245                 error "Content mismatch [0, $copied) of ref2 and file1"
10246         cmp -n $copied $file2 $ref1 ||
10247                 error "Content mismatch [0, $copied) of ref1 and file2"
10248         cmp -i $copied:$copied -n $remaining $file1 $ref1 ||
10249                 error "Content mismatch [$copied, EOF) of ref1 and file1"
10250
10251         # clean up
10252         rm -f $ref1 $ref2 $file1 $file2
10253 }
10254 run_test 184c "Concurrent write and layout swap"
10255
10256 test_184d() {
10257         check_swap_layouts_support && return 0
10258
10259         local file1=$DIR/$tdir/$tfile-1
10260         local file2=$DIR/$tdir/$tfile-2
10261         local file3=$DIR/$tdir/$tfile-3
10262         local lovea1
10263         local lovea2
10264
10265         mkdir -p $DIR/$tdir
10266         touch $file1 || error "create $file1 failed"
10267         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file2 ||
10268                 error "create $file2 failed"
10269         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file3 ||
10270                 error "create $file3 failed"
10271         lovea1=$($LFS getstripe $file1 | sed 1d)
10272
10273         $LFS swap_layouts $file2 $file3 ||
10274                 error "swap $file2 $file3 layouts failed"
10275         $LFS swap_layouts $file1 $file2 ||
10276                 error "swap $file1 $file2 layouts failed"
10277
10278         lovea2=$($LFS getstripe $file2 | sed 1d)
10279         [ "$lovea1" == "$lovea2" ] || error "lovea $lovea1 != $lovea2"
10280
10281         lovea1=$(getfattr -n trusted.lov $file1 | grep ^trusted)
10282         [ -z $lovea1 ] || error "$file1 shouldn't have lovea"
10283 }
10284 run_test 184d "allow stripeless layouts swap"
10285
10286
10287 test_185() { # LU-2441
10288         # LU-3553 - no volatile file support in old servers
10289         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.60) ]] ||
10290                 { skip "Need MDS version at least 2.3.60"; return 0; }
10291
10292         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
10293         touch $DIR/$tdir/spoo
10294         local mtime1=$(stat -c "%Y" $DIR/$tdir)
10295         local fid=$($MULTIOP $DIR/$tdir VFw4096c) ||
10296                 error "cannot create/write a volatile file"
10297         $CHECKSTAT -t file $MOUNT/.lustre/fid/$fid 2>/dev/null &&
10298                 error "FID is still valid after close"
10299
10300         multiop_bg_pause $DIR/$tdir vVw4096_c
10301         local multi_pid=$!
10302
10303         local OLD_IFS=$IFS
10304         IFS=":"
10305         local fidv=($fid)
10306         IFS=$OLD_IFS
10307         # assume that the next FID for this client is sequential, since stdout
10308         # is unfortunately eaten by multiop_bg_pause
10309         local n=$((${fidv[1]} + 1))
10310         local next_fid="${fidv[0]}:$(printf "0x%x" $n):${fidv[2]}"
10311         $CHECKSTAT -t file $MOUNT/.lustre/fid/$next_fid ||
10312                 error "FID is missing before close"
10313         kill -USR1 $multi_pid
10314         # 1 second delay, so if mtime change we will see it
10315         sleep 1
10316         local mtime2=$(stat -c "%Y" $DIR/$tdir)
10317         [[ $mtime1 == $mtime2 ]] || error "mtime has changed"
10318 }
10319 run_test 185 "Volatile file support"
10320
10321 test_187a() {
10322         local dir0=$DIR/$tdir/$testnum
10323         mkdir -p $dir0 || error "creating dir $dir0"
10324
10325         local file=$dir0/file1
10326         dd if=/dev/urandom of=$file count=10 bs=1M conv=fsync
10327         local dv1=$($LFS data_version $file)
10328         dd if=/dev/urandom of=$file seek=10 count=1 bs=1M conv=fsync
10329         local dv2=$($LFS data_version $file)
10330         [[ $dv1 != $dv2 ]] ||
10331                 error "data version did not change on write $dv1 == $dv2"
10332
10333         # clean up
10334         rm -f $file1
10335 }
10336 run_test 187a "Test data version change"
10337
10338 test_187b() {
10339         local dir0=$DIR/$tdir/$testnum
10340         mkdir -p $dir0 || error "creating dir $dir0"
10341
10342         declare -a DV=$($MULTIOP $dir0 Vw1000xYw1000xY | cut -f3 -d" ")
10343         [[ ${DV[0]} != ${DV[1]} ]] ||
10344                 error "data version did not change on write"\
10345                       " ${DV[0]} == ${DV[1]}"
10346
10347         # clean up
10348         rm -f $file1
10349 }
10350 run_test 187b "Test data version change on volatile file"
10351
10352 # OST pools tests
10353 check_file_in_pool()
10354 {
10355         local file=$1
10356         local pool=$2
10357         local tlist="$3"
10358         local res=$($GETSTRIPE $file | grep 0x | cut -f2)
10359         for i in $res
10360         do
10361                 for t in $tlist ; do
10362                         [ "$i" -eq "$t" ] && continue 2
10363                 done
10364
10365                 echo "pool list: $tlist"
10366                 echo "striping: $res"
10367                 error_noexit "$file not allocated in $pool"
10368                 return 1
10369         done
10370         return 0
10371 }
10372
10373 pool_add() {
10374         echo "Creating new pool"
10375         local pool=$1
10376
10377         create_pool $FSNAME.$pool ||
10378                 { error_noexit "No pool created, result code $?"; return 1; }
10379         [ $($LFS pool_list $FSNAME | grep -c $pool) -eq 1 ] ||
10380                 { error_noexit "$pool not in lfs pool_list"; return 2; }
10381 }
10382
10383 pool_add_targets() {
10384         echo "Adding targets to pool"
10385         local pool=$1
10386         local first=$2
10387         local last=$3
10388         local step=${4:-1}
10389
10390         local list=$(seq $first $step $last)
10391
10392         local t=$(for i in $list; do printf "$FSNAME-OST%04x_UUID " $i; done)
10393         do_facet mgs $LCTL pool_add \
10394                         $FSNAME.$pool $FSNAME-OST[$first-$last/$step]
10395         wait_update $HOSTNAME "lctl get_param -n lov.$FSNAME-*.pools.$pool \
10396                         | sort -u | tr '\n' ' ' " "$t" || { 
10397                 error_noexit "Add to pool failed"
10398                 return 1
10399         }
10400         local lfscount=$($LFS pool_list $FSNAME.$pool | grep -c "\-OST")
10401         local addcount=$(((last - first) / step + 1))
10402         [ $lfscount -eq $addcount ] || {
10403                 error_noexit "lfs pool_list bad ost count" \
10404                                                 "$lfscount != $addcount"
10405                 return 2
10406         }
10407 }
10408
10409 pool_set_dir() {
10410         local pool=$1
10411         local tdir=$2
10412         echo "Setting pool on directory $tdir"
10413
10414         $SETSTRIPE -c 2 -p $pool $tdir && return 0
10415
10416         error_noexit "Cannot set pool $pool to $tdir"
10417         return 1
10418 }
10419
10420 pool_check_dir() {
10421         local pool=$1
10422         local tdir=$2
10423         echo "Checking pool on directory $tdir"
10424
10425         local res=$($GETSTRIPE --pool $tdir | sed "s/\s*$//")
10426         [ "$res" = "$pool" ] && return 0
10427
10428         error_noexit "Pool on '$tdir' is '$res', not '$pool'"
10429         return 1
10430 }
10431
10432 pool_dir_rel_path() {
10433         echo "Testing relative path works well"
10434         local pool=$1
10435         local tdir=$2
10436         local root=$3
10437
10438         mkdir -p $root/$tdir/$tdir
10439         cd $root/$tdir
10440         pool_set_dir $pool $tdir          || return 1
10441         pool_set_dir $pool ./$tdir        || return 2
10442         pool_set_dir $pool ../$tdir       || return 3
10443         pool_set_dir $pool ../$tdir/$tdir || return 4
10444         rm -rf $tdir; cd - > /dev/null
10445 }
10446
10447 pool_alloc_files() {
10448         echo "Checking files allocation from directory pool"
10449         local pool=$1
10450         local tdir=$2
10451         local count=$3
10452         local tlist="$4"
10453
10454         local failed=0
10455         for i in $(seq -w 1 $count)
10456         do
10457                 local file=$tdir/file-$i
10458                 touch $file
10459                 check_file_in_pool $file $pool "$tlist" || \
10460                         failed=$((failed + 1))
10461         done
10462         [ "$failed" = 0 ] && return 0
10463
10464         error_noexit "$failed files not allocated in $pool"
10465         return 1
10466 }
10467
10468 pool_create_files() {
10469         echo "Creating files in pool"
10470         local pool=$1
10471         local tdir=$2
10472         local count=$3
10473         local tlist="$4"
10474
10475         mkdir -p $tdir
10476         local failed=0
10477         for i in $(seq -w 1 $count)
10478         do
10479                 local file=$tdir/spoo-$i
10480                 $SETSTRIPE -p $pool $file
10481                 check_file_in_pool $file $pool "$tlist" || \
10482                         failed=$((failed + 1))
10483         done
10484         [ "$failed" = 0 ] && return 0
10485
10486         error_noexit "$failed files not allocated in $pool"
10487         return 1
10488 }
10489
10490 pool_lfs_df() {
10491         echo "Checking 'lfs df' output"
10492         local pool=$1
10493
10494         local t=$($LCTL get_param -n lov.$FSNAME-clilov-*.pools.$pool |
10495                         tr '\n' ' ')
10496         local res=$($LFS df --pool $FSNAME.$pool |
10497                         awk '{print $1}' |
10498                         grep "$FSNAME-OST" |
10499                         tr '\n' ' ')
10500         [ "$res" = "$t" ] && return 0
10501
10502         error_noexit "Pools OSTs '$t' is not '$res' that lfs df reports"
10503         return 1
10504 }
10505
10506 pool_file_rel_path() {
10507         echo "Creating files in a pool with relative pathname"
10508         local pool=$1
10509         local tdir=$2
10510
10511         mkdir -p $tdir ||
10512                 { error_noexit "unable to create $tdir"; return 1 ; }
10513         local file="/..$tdir/$tfile-1"
10514         $SETSTRIPE -p $pool $file ||
10515                 { error_noexit "unable to create $file" ; return 2 ; }
10516
10517         cd $tdir
10518         $SETSTRIPE -p $pool $tfile-2 || {
10519                 error_noexit "unable to create $tfile-2 in $tdir"
10520                 return 3
10521         }
10522 }
10523
10524 pool_remove_first_target() {
10525         echo "Removing first target from a pool"
10526         local pool=$1
10527
10528         local pname="lov.$FSNAME-*.pools.$pool"
10529         local t=$($LCTL get_param -n $pname | head -1)
10530         do_facet mgs $LCTL pool_remove $FSNAME.$pool $t
10531         wait_update $HOSTNAME "lctl get_param -n $pname | grep $t" "" || {
10532                 error_noexit "$t not removed from $FSNAME.$pool"
10533                 return 1
10534         }
10535 }
10536
10537 pool_remove_all_targets() {
10538         echo "Removing all targets from pool"
10539         local pool=$1
10540         local file=$2
10541         local pname="lov.$FSNAME-*.pools.$pool"
10542         for t in $($LCTL get_param -n $pname | sort -u)
10543         do
10544                 do_facet mgs $LCTL pool_remove $FSNAME.$pool $t
10545         done
10546         wait_update $HOSTNAME "lctl get_param -n $pname" "" || {
10547                 error_noexit "Pool $FSNAME.$pool cannot be drained"
10548                 return 1
10549         }
10550         # striping on an empty/nonexistant pool should fall back 
10551         # to "pool of everything"
10552         touch $file || {
10553                 error_noexit "failed to use fallback striping for empty pool"
10554                 return 2
10555         }
10556         # setstripe on an empty pool should fail
10557         $SETSTRIPE -p $pool $file 2>/dev/null && {
10558                 error_noexit "expected failure when creating file" \
10559                                                         "with empty pool"
10560                 return 3
10561         }
10562         return 0
10563 }
10564
10565 pool_remove() {
10566         echo "Destroying pool"
10567         local pool=$1
10568         local file=$2
10569
10570         do_facet mgs $LCTL pool_destroy $FSNAME.$pool
10571
10572         sleep 2
10573         # striping on an empty/nonexistant pool should fall back 
10574         # to "pool of everything"
10575         touch $file || {
10576                 error_noexit "failed to use fallback striping for missing pool"
10577                 return 1
10578         }
10579         # setstripe on an empty pool should fail
10580         $SETSTRIPE -p $pool $file 2>/dev/null && {
10581                 error_noexit "expected failure when creating file" \
10582                                                         "with missing pool"
10583                 return 2
10584         }
10585
10586         # get param should return err once pool is gone
10587         if wait_update $HOSTNAME "lctl get_param -n \
10588                 lov.$FSNAME-*.pools.$pool 2>/dev/null || echo foo" "foo"
10589         then
10590                 remove_pool_from_list $FSNAME.$pool
10591                 return 0
10592         fi
10593         error_noexit "Pool $FSNAME.$pool is not destroyed"
10594         return 3
10595 }
10596
10597 test_200() {
10598         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10599         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
10600
10601         local POOL=${POOL:-cea1}
10602         local POOL_ROOT=${POOL_ROOT:-$DIR/d200.pools}
10603         local POOL_DIR_NAME=${POOL_DIR_NAME:-dir_tst}
10604         # Pool OST targets
10605         local first_ost=0
10606         local last_ost=$(($OSTCOUNT - 1))
10607         local ost_step=2
10608         local ost_list=$(seq $first_ost $ost_step $last_ost)
10609         local ost_range="$first_ost $last_ost $ost_step"
10610         local test_path=$POOL_ROOT/$POOL_DIR_NAME
10611         local file_dir=$POOL_ROOT/file_tst
10612
10613         local rc=0
10614         while : ; do
10615                 # former test_200a test_200b
10616                 pool_add $POOL                          || { rc=$? ; break; }
10617                 pool_add_targets  $POOL $ost_range      || { rc=$? ; break; }
10618                 # former test_200c test_200d
10619                 mkdir -p $test_path
10620                 pool_set_dir      $POOL $test_path      || { rc=$? ; break; }
10621                 pool_check_dir    $POOL $test_path      || { rc=$? ; break; }
10622                 pool_dir_rel_path $POOL $POOL_DIR_NAME $POOL_ROOT \
10623                                                         || { rc=$? ; break; }
10624                 # former test_200e test_200f
10625                 local files=$((OSTCOUNT*3))
10626                 pool_alloc_files  $POOL $test_path $files "$ost_list" \
10627                                                         || { rc=$? ; break; }
10628                 pool_create_files $POOL $file_dir $files "$ost_list" \
10629                                                         || { rc=$? ; break; }
10630                 # former test_200g test_200h
10631                 pool_lfs_df $POOL                       || { rc=$? ; break; }
10632                 pool_file_rel_path $POOL $test_path     || { rc=$? ; break; }
10633
10634                 # former test_201a test_201b test_201c
10635                 pool_remove_first_target $POOL          || { rc=$? ; break; }
10636
10637                 local f=$test_path/$tfile
10638                 pool_remove_all_targets $POOL $f        || { rc=$? ; break; }
10639                 pool_remove $POOL $f                    || { rc=$? ; break; }
10640                 break
10641         done
10642
10643         cleanup_pools
10644         return $rc
10645 }
10646 run_test 200 "OST pools"
10647
10648 # usage: default_attr <count | size | offset>
10649 default_attr() {
10650         $LCTL get_param -n lov.$FSNAME-clilov-\*.stripe${1}
10651 }
10652
10653 # usage: check_default_stripe_attr
10654 check_default_stripe_attr() {
10655         ACTUAL=$($GETSTRIPE $* $DIR/$tdir)
10656         case $1 in
10657         --stripe-count|--count)
10658                 [ -n "$2" ] && EXPECTED=0 || EXPECTED=$(default_attr count);;
10659         --stripe-size|--size)
10660                 [ -n "$2" ] && EXPECTED=0 || EXPECTED=$(default_attr size);;
10661         --stripe-index|--index)
10662                 EXPECTED=-1;;
10663         *)
10664                 error "unknown getstripe attr '$1'"
10665         esac
10666
10667         [ $ACTUAL != $EXPECTED ] &&
10668                 error "$DIR/$tdir has $1 '$ACTUAL', not '$EXPECTED'"
10669 }
10670
10671 test_204a() {
10672         test_mkdir -p $DIR/$tdir
10673         $SETSTRIPE --stripe-count 0 --stripe-size 0 --stripe-index -1 $DIR/$tdir
10674
10675         check_default_stripe_attr --stripe-count
10676         check_default_stripe_attr --stripe-size
10677         check_default_stripe_attr --stripe-index
10678
10679         return 0
10680 }
10681 run_test 204a "Print default stripe attributes ================="
10682
10683 test_204b() {
10684         test_mkdir -p $DIR/$tdir
10685         $SETSTRIPE --stripe-count 1 $DIR/$tdir
10686
10687         check_default_stripe_attr --stripe-size
10688         check_default_stripe_attr --stripe-index
10689
10690         return 0
10691 }
10692 run_test 204b "Print default stripe size and offset  ==========="
10693
10694 test_204c() {
10695         test_mkdir -p $DIR/$tdir
10696         $SETSTRIPE --stripe-size 65536 $DIR/$tdir
10697
10698         check_default_stripe_attr --stripe-count
10699         check_default_stripe_attr --stripe-index
10700
10701         return 0
10702 }
10703 run_test 204c "Print default stripe count and offset ==========="
10704
10705 test_204d() {
10706         test_mkdir -p $DIR/$tdir
10707         $SETSTRIPE --stripe-index 0 $DIR/$tdir
10708
10709         check_default_stripe_attr --stripe-count
10710         check_default_stripe_attr --stripe-size
10711
10712         return 0
10713 }
10714 run_test 204d "Print default stripe count and size ============="
10715
10716 test_204e() {
10717         test_mkdir -p $DIR/$tdir
10718         $SETSTRIPE -d $DIR/$tdir
10719
10720         check_default_stripe_attr --stripe-count --raw
10721         check_default_stripe_attr --stripe-size --raw
10722         check_default_stripe_attr --stripe-index --raw
10723
10724         return 0
10725 }
10726 run_test 204e "Print raw stripe attributes ================="
10727
10728 test_204f() {
10729         test_mkdir -p $DIR/$tdir
10730         $SETSTRIPE --stripe-count 1 $DIR/$tdir
10731
10732         check_default_stripe_attr --stripe-size --raw
10733         check_default_stripe_attr --stripe-index --raw
10734
10735         return 0
10736 }
10737 run_test 204f "Print raw stripe size and offset  ==========="
10738
10739 test_204g() {
10740         test_mkdir -p $DIR/$tdir
10741         $SETSTRIPE --stripe-size 65536 $DIR/$tdir
10742
10743         check_default_stripe_attr --stripe-count --raw
10744         check_default_stripe_attr --stripe-index --raw
10745
10746         return 0
10747 }
10748 run_test 204g "Print raw stripe count and offset ==========="
10749
10750 test_204h() {
10751         test_mkdir -p $DIR/$tdir
10752         $SETSTRIPE --stripe-index 0 $DIR/$tdir
10753
10754         check_default_stripe_attr --stripe-count --raw
10755         check_default_stripe_attr --stripe-size --raw
10756
10757         return 0
10758 }
10759 run_test 204h "Print raw stripe count and size ============="
10760
10761 # Figure out which job scheduler is being used, if any,
10762 # or use a fake one
10763 if [ -n "$SLURM_JOB_ID" ]; then # SLURM
10764         JOBENV=SLURM_JOB_ID
10765 elif [ -n "$LSB_JOBID" ]; then # Load Sharing Facility
10766         JOBENV=LSB_JOBID
10767 elif [ -n "$PBS_JOBID" ]; then # PBS/Maui/Moab
10768         JOBENV=PBS_JOBID
10769 elif [ -n "$LOADL_STEPID" ]; then # LoadLeveller
10770         JOBENV=LOADL_STEP_ID
10771 elif [ -n "$JOB_ID" ]; then # Sun Grid Engine
10772         JOBENV=JOB_ID
10773 else
10774         JOBENV=FAKE_JOBID
10775 fi
10776
10777 verify_jobstats() {
10778         local cmd=$1
10779         local target=$2
10780
10781         # clear old jobstats
10782         do_facet $SINGLEMDS lctl set_param mdt.*.job_stats="clear"
10783         do_facet ost1 lctl set_param obdfilter.*.job_stats="clear"
10784
10785         # use a new JobID for this test, or we might see an old one
10786         [ "$JOBENV" = "FAKE_JOBID" ] && FAKE_JOBID=test_id.$testnum.$RANDOM
10787
10788         JOBVAL=${!JOBENV}
10789         log "Test: $cmd"
10790         log "Using JobID environment variable $JOBENV=$JOBVAL"
10791
10792         if [ $JOBENV = "FAKE_JOBID" ]; then
10793                 FAKE_JOBID=$JOBVAL $cmd
10794         else
10795                 $cmd
10796         fi
10797
10798         if [ "$target" = "mdt" -o "$target" = "both" ]; then
10799                 FACET="$SINGLEMDS" # will need to get MDS number for DNE
10800                 do_facet $FACET lctl get_param mdt.*.job_stats |
10801                         grep $JOBVAL || error "No job stats found on MDT $FACET"
10802         fi
10803         if [ "$target" = "ost" -o "$target" = "both" ]; then
10804                 FACET=ost1
10805                 do_facet $FACET lctl get_param obdfilter.*.job_stats |
10806                         grep $JOBVAL || error "No job stats found on OST $FACET"
10807         fi
10808 }
10809
10810 jobstats_set() {
10811         trap 0
10812         NEW_JOBENV=${1:-$OLD_JOBENV}
10813         do_facet mgs $LCTL conf_param $FSNAME.sys.jobid_var=$NEW_JOBENV
10814         wait_update $HOSTNAME "$LCTL get_param -n jobid_var" $NEW_JOBENV
10815 }
10816
10817 test_205() { # Job stats
10818         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10819         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep jobstats)" ] &&
10820                 skip "Server doesn't support jobstats" && return 0
10821
10822         local cmd
10823         OLD_JOBENV=`$LCTL get_param -n jobid_var`
10824         if [ $OLD_JOBENV != $JOBENV ]; then
10825                 jobstats_set $JOBENV
10826                 trap jobstats_set EXIT
10827         fi
10828
10829         # mkdir
10830         cmd="mkdir $DIR/$tfile"
10831         verify_jobstats "$cmd" "mdt"
10832         # rmdir
10833         cmd="rm -fr $DIR/$tfile"
10834         verify_jobstats "$cmd" "mdt"
10835         # mknod
10836         cmd="mknod $DIR/$tfile c 1 3"
10837         verify_jobstats "$cmd" "mdt"
10838         # unlink
10839         cmd="rm -f $DIR/$tfile"
10840         verify_jobstats "$cmd" "mdt"
10841         # open & close
10842         cmd="$SETSTRIPE -i 0 -c 1 $DIR/$tfile"
10843         verify_jobstats "$cmd" "mdt"
10844         # setattr
10845         cmd="touch $DIR/$tfile"
10846         verify_jobstats "$cmd" "both"
10847         # write
10848         cmd="dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 oflag=sync"
10849         verify_jobstats "$cmd" "ost"
10850         # read
10851         cmd="dd if=$DIR/$tfile of=/dev/null bs=1M count=1 iflag=direct"
10852         verify_jobstats "$cmd" "ost"
10853         # truncate
10854         cmd="$TRUNCATE $DIR/$tfile 0"
10855         verify_jobstats "$cmd" "both"
10856         # rename
10857         cmd="mv -f $DIR/$tfile $DIR/jobstats_test_rename"
10858         verify_jobstats "$cmd" "mdt"
10859
10860         # cleanup
10861         rm -f $DIR/jobstats_test_rename
10862
10863         [ $OLD_JOBENV != $JOBENV ] && jobstats_set $OLD_JOBENV
10864 }
10865 run_test 205 "Verify job stats"
10866
10867 # LU-1480, LU-1773 and LU-1657
10868 test_206() {
10869         mkdir -p $DIR/$tdir
10870         lfs setstripe -c -1 $DIR/$tdir
10871 #define OBD_FAIL_LOV_INIT 0x1403
10872         $LCTL set_param fail_loc=0xa0001403
10873         $LCTL set_param fail_val=1
10874         touch $DIR/$tdir/$tfile || true
10875 }
10876 run_test 206 "fail lov_init_raid0() doesn't lbug"
10877
10878 test_207a() {
10879         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((RANDOM%10+1))
10880         local fsz=`stat -c %s $DIR/$tfile`
10881         cancel_lru_locks mdc
10882
10883         # do not return layout in getattr intent
10884 #define OBD_FAIL_MDS_NO_LL_GETATTR 0x170
10885         $LCTL set_param fail_loc=0x170
10886         local sz=`stat -c %s $DIR/$tfile`
10887
10888         [ $fsz -eq $sz ] || error "file size expected $fsz, actual $sz"
10889
10890         rm -rf $DIR/$tfile
10891 }
10892 run_test 207a "can refresh layout at glimpse"
10893
10894 test_207b() {
10895         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((RANDOM%10+1))
10896         local cksum=`md5sum $DIR/$tfile`
10897         local fsz=`stat -c %s $DIR/$tfile`
10898         cancel_lru_locks mdc
10899         cancel_lru_locks osc
10900
10901         # do not return layout in getattr intent
10902 #define OBD_FAIL_MDS_NO_LL_OPEN 0x171
10903         $LCTL set_param fail_loc=0x171
10904
10905         # it will refresh layout after the file is opened but before read issues
10906         echo checksum is "$cksum"
10907         echo "$cksum" |md5sum -c --quiet || error "file differs"
10908
10909         rm -rf $DIR/$tfile
10910 }
10911 run_test 207b "can refresh layout at open"
10912
10913 test_208() {
10914         # FIXME: in this test suite, only RD lease is used. This is okay
10915         # for now as only exclusive open is supported. After generic lease
10916         # is done, this test suite should be revised. - Jinshan
10917
10918         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.4.52) ]] ||
10919                 { skip "Need MDS version at least 2.4.52"; return 0; }
10920
10921         echo "==== test 1: verify get lease work"
10922         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:eRE+eU || error "get lease error"
10923
10924         echo "==== test 2: verify lease can be broken by upcoming open"
10925         $MULTIOP $DIR/$tfile oO_RDONLY:eR_E-eUc &
10926         local PID=$!
10927         sleep 1
10928
10929         $MULTIOP $DIR/$tfile oO_RDONLY:c
10930         kill -USR1 $PID && wait $PID || error "break lease error"
10931
10932         echo "==== test 3: verify lease can't be granted if an open already exists"
10933         $MULTIOP $DIR/$tfile oO_RDONLY:_c &
10934         local PID=$!
10935         sleep 1
10936
10937         $MULTIOP $DIR/$tfile oO_RDONLY:eReUc && error "apply lease should fail"
10938         kill -USR1 $PID && wait $PID || error "open file error"
10939
10940         echo "==== test 4: lease can sustain over recovery"
10941         $MULTIOP $DIR/$tfile oO_RDONLY:eR_E+eUc &
10942         PID=$!
10943         sleep 1
10944
10945         fail mds1
10946
10947         kill -USR1 $PID && wait $PID || error "lease broken over recovery"
10948
10949         echo "==== test 5: lease broken can't be regained by replay"
10950         $MULTIOP $DIR/$tfile oO_RDONLY:eR_E-eUc &
10951         PID=$!
10952         sleep 1
10953
10954         # open file to break lease and then recovery
10955         $MULTIOP $DIR/$tfile oO_RDWR:c || error "open file error"
10956         fail mds1
10957
10958         kill -USR1 $PID && wait $PID || error "lease not broken over recovery"
10959
10960         rm -f $DIR/$tfile
10961 }
10962 run_test 208 "Exclusive open"
10963
10964 test_209() {
10965         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep disp_stripe)" ] &&
10966                 skip_env "must have disp_stripe" && return
10967
10968         touch $DIR/$tfile
10969         sync; sleep 5; sync;
10970
10971         echo 3 > /proc/sys/vm/drop_caches
10972         req_before=$(awk '/ptlrpc_cache / { print $2 }' /proc/slabinfo)
10973
10974         # open/close 500 times
10975         for i in $(seq 500); do
10976                 cat $DIR/$tfile
10977         done
10978
10979         echo 3 > /proc/sys/vm/drop_caches
10980         req_after=$(awk '/ptlrpc_cache / { print $2 }' /proc/slabinfo)
10981
10982         echo "before: $req_before, after: $req_after"
10983         [ $((req_after - req_before)) -ge 300 ] &&
10984                 error "open/close requests are not freed"
10985         return 0
10986 }
10987 run_test 209 "read-only open/close requests should be freed promptly"
10988
10989 test_212() {
10990         size=`date +%s`
10991         size=$((size % 8192 + 1))
10992         dd if=/dev/urandom of=$DIR/f212 bs=1k count=$size
10993         sendfile $DIR/f212 $DIR/f212.xyz || error "sendfile wrong"
10994         rm -f $DIR/f212 $DIR/f212.xyz
10995 }
10996 run_test 212 "Sendfile test ============================================"
10997
10998 test_213() {
10999         dd if=/dev/zero of=$DIR/$tfile bs=4k count=4
11000         cancel_lru_locks osc
11001         lctl set_param fail_loc=0x8000040f
11002         # generate a read lock
11003         cat $DIR/$tfile > /dev/null
11004         # write to the file, it will try to cancel the above read lock.
11005         cat /etc/hosts >> $DIR/$tfile
11006 }
11007 run_test 213 "OSC lock completion and cancel race don't crash - bug 18829"
11008
11009 test_214() { # for bug 20133
11010         mkdir -p $DIR/$tdir/d214c || error "mkdir $DIR/$tdir/d214c failed"
11011         for (( i=0; i < 340; i++ )) ; do
11012                 touch $DIR/$tdir/d214c/a$i
11013         done
11014
11015         ls -l $DIR/$tdir || error "ls -l $DIR/d214p failed"
11016         mv $DIR/$tdir/d214c $DIR/ || error "mv $DIR/d214p/d214c $DIR/ failed"
11017         ls $DIR/d214c || error "ls $DIR/d214c failed"
11018         rm -rf $DIR/$tdir || error "rm -rf $DIR/d214* failed"
11019         rm -rf $DIR/d214* || error "rm -rf $DIR/d214* failed"
11020 }
11021 run_test 214 "hash-indexed directory test - bug 20133"
11022
11023 # having "abc" as 1st arg, creates $TMP/lnet_abc.out and $TMP/lnet_abc.sys
11024 create_lnet_proc_files() {
11025         cat /proc/sys/lnet/$1 >$TMP/lnet_$1.out || error "cannot read /proc/sys/lnet/$1"
11026         sysctl lnet.$1 >$TMP/lnet_$1.sys_tmp || error "cannot read lnet.$1"
11027
11028         sed "s/^lnet.$1\ =\ //g" "$TMP/lnet_$1.sys_tmp" >$TMP/lnet_$1.sys
11029         rm -f "$TMP/lnet_$1.sys_tmp"
11030 }
11031
11032 # counterpart of create_lnet_proc_files
11033 remove_lnet_proc_files() {
11034         rm -f $TMP/lnet_$1.out $TMP/lnet_$1.sys
11035 }
11036
11037 # uses 1st arg as trailing part of filename, 2nd arg as description for reports,
11038 # 3rd arg as regexp for body
11039 check_lnet_proc_stats() {
11040         local l=$(cat "$TMP/lnet_$1" |wc -l)
11041         [ $l = 1 ] || (cat "$TMP/lnet_$1" && error "$2 is not of 1 line: $l")
11042
11043         grep -E "$3" "$TMP/lnet_$1" || (cat "$TMP/lnet_$1" && error "$2 misformatted")
11044 }
11045
11046 # uses 1st arg as trailing part of filename, 2nd arg as description for reports,
11047 # 3rd arg as regexp for body, 4th arg as regexp for 1st line, 5th arg is
11048 # optional and can be regexp for 2nd line (lnet.routes case)
11049 check_lnet_proc_entry() {
11050         local blp=2            # blp stands for 'position of 1st line of body'
11051         [ "$5" = "" ] || blp=3 # lnet.routes case
11052
11053         local l=$(cat "$TMP/lnet_$1" |wc -l)
11054         # subtracting one from $blp because the body can be empty
11055         [ "$l" -ge "$(($blp - 1))" ] || (cat "$TMP/lnet_$1" && error "$2 is too short: $l")
11056
11057         sed -n '1 p' "$TMP/lnet_$1" |grep -E "$4" >/dev/null ||
11058                 (cat "$TMP/lnet_$1" && error "1st line of $2 misformatted")
11059
11060         [ "$5" = "" ] || sed -n '2 p' "$TMP/lnet_$1" |grep -E "$5" >/dev/null ||
11061                 (cat "$TMP/lnet_$1" && error "2nd line of $2 misformatted")
11062
11063         # bail out if any unexpected line happened
11064         sed -n "$blp~1 p" "$TMP/lnet_$1" |grep -Ev "$3"
11065         [ "$?" != 0 ] || error "$2 misformatted"
11066 }
11067
11068 test_215() { # for bugs 18102, 21079, 21517
11069         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11070         local N='(0|[1-9][0-9]*)'       # non-negative numeric
11071         local P='[1-9][0-9]*'           # positive numeric
11072         local I='(0|-?[1-9][0-9]*|NA)'  # any numeric (0 | >0 | <0) or NA if no value
11073         local NET='[a-z][a-z0-9]*'      # LNET net like o2ib2
11074         local ADDR='[0-9.]+'            # LNET addr like 10.0.0.1
11075         local NID="$ADDR@$NET"          # LNET nid like 10.0.0.1@o2ib2
11076
11077         local L1 # regexp for 1st line
11078         local L2 # regexp for 2nd line (optional)
11079         local BR # regexp for the rest (body)
11080
11081         # /proc/sys/lnet/stats should look as 11 space-separated non-negative numerics
11082         BR="^$N $N $N $N $N $N $N $N $N $N $N$"
11083         create_lnet_proc_files "stats"
11084         check_lnet_proc_stats "stats.out" "/proc/sys/lnet/stats" "$BR"
11085         check_lnet_proc_stats "stats.sys" "lnet.stats" "$BR"
11086         remove_lnet_proc_files "stats"
11087
11088         # /proc/sys/lnet/routes should look like this:
11089         # Routing disabled/enabled
11090         # net hops priority state router
11091         # where net is a string like tcp0, hops > 0, priority >= 0,
11092         # state is up/down,
11093         # router is a string like 192.168.1.1@tcp2
11094         L1="^Routing (disabled|enabled)$"
11095         L2="^net +hops +priority +state +router$"
11096         BR="^$NET +$N +(0|1) +(up|down) +$NID$"
11097         create_lnet_proc_files "routes"
11098         check_lnet_proc_entry "routes.out" "/proc/sys/lnet/routes" "$BR" "$L1" "$L2"
11099         check_lnet_proc_entry "routes.sys" "lnet.routes" "$BR" "$L1" "$L2"
11100         remove_lnet_proc_files "routes"
11101
11102         # /proc/sys/lnet/routers should look like this:
11103         # ref rtr_ref alive_cnt state last_ping ping_sent deadline down_ni router
11104         # where ref > 0, rtr_ref > 0, alive_cnt >= 0, state is up/down,
11105         # last_ping >= 0, ping_sent is boolean (0/1), deadline and down_ni are
11106         # numeric (0 or >0 or <0), router is a string like 192.168.1.1@tcp2
11107         L1="^ref +rtr_ref +alive_cnt +state +last_ping +ping_sent +deadline +down_ni +router$"
11108         BR="^$P +$P +$N +(up|down) +$N +(0|1) +$I +$I +$NID$"
11109         create_lnet_proc_files "routers"
11110         check_lnet_proc_entry "routers.out" "/proc/sys/lnet/routers" "$BR" "$L1"
11111         check_lnet_proc_entry "routers.sys" "lnet.routers" "$BR" "$L1"
11112         remove_lnet_proc_files "routers"
11113
11114         # /proc/sys/lnet/peers should look like this:
11115         # nid refs state last max rtr min tx min queue
11116         # where nid is a string like 192.168.1.1@tcp2, refs > 0,
11117         # state is up/down/NA, max >= 0. last, rtr, min, tx, min are
11118         # numeric (0 or >0 or <0), queue >= 0.
11119         L1="^nid +refs +state +last +max +rtr +min +tx +min +queue$"
11120         BR="^$NID +$P +(up|down|NA) +$I +$N +$I +$I +$I +$I +$N$"
11121         create_lnet_proc_files "peers"
11122         check_lnet_proc_entry "peers.out" "/proc/sys/lnet/peers" "$BR" "$L1"
11123         check_lnet_proc_entry "peers.sys" "lnet.peers" "$BR" "$L1"
11124         remove_lnet_proc_files "peers"
11125
11126         # /proc/sys/lnet/buffers  should look like this:
11127         # pages count credits min
11128         # where pages >=0, count >=0, credits and min are numeric (0 or >0 or <0)
11129         L1="^pages +count +credits +min$"
11130         BR="^ +$N +$N +$I +$I$"
11131         create_lnet_proc_files "buffers"
11132         check_lnet_proc_entry "buffers.out" "/proc/sys/lnet/buffers" "$BR" "$L1"
11133         check_lnet_proc_entry "buffers.sys" "lnet.buffers" "$BR" "$L1"
11134         remove_lnet_proc_files "buffers"
11135
11136         # /proc/sys/lnet/nis should look like this:
11137         # nid status alive refs peer rtr max tx min
11138         # where nid is a string like 192.168.1.1@tcp2, status is up/down,
11139         # alive is numeric (0 or >0 or <0), refs >= 0, peer >= 0,
11140         # rtr >= 0, max >=0, tx and min are numeric (0 or >0 or <0).
11141         L1="^nid +status +alive +refs +peer +rtr +max +tx +min$"
11142         BR="^$NID +(up|down) +$I +$N +$N +$N +$N +$I +$I$"
11143         create_lnet_proc_files "nis"
11144         check_lnet_proc_entry "nis.out" "/proc/sys/lnet/nis" "$BR" "$L1"
11145         check_lnet_proc_entry "nis.sys" "lnet.nis" "$BR" "$L1"
11146         remove_lnet_proc_files "nis"
11147
11148         # can we successfully write to /proc/sys/lnet/stats?
11149         echo "0" >/proc/sys/lnet/stats || error "cannot write to /proc/sys/lnet/stats"
11150         sysctl -w lnet.stats=0 || error "cannot write to lnet.stats"
11151 }
11152 run_test 215 "/proc/sys/lnet exists and has proper content - bugs 18102, 21079, 21517"
11153
11154 test_216() { # bug 20317
11155         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11156         remote_ost_nodsh && skip "remote OST with nodsh" && return
11157
11158         local node
11159         local facets=$(get_facets OST)
11160         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
11161
11162         save_lustre_params client "osc.*.contention_seconds" > $p
11163         save_lustre_params $facets \
11164                 "ldlm.namespaces.filter-*.max_nolock_bytes" >> $p
11165         save_lustre_params $facets \
11166                 "ldlm.namespaces.filter-*.contended_locks" >> $p
11167         save_lustre_params $facets \
11168                 "ldlm.namespaces.filter-*.contention_seconds" >> $p
11169         clear_osc_stats
11170
11171         # agressive lockless i/o settings
11172         for node in $(osts_nodes); do
11173                 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'
11174         done
11175         lctl set_param -n osc.*.contention_seconds 60
11176
11177         $DIRECTIO write $DIR/$tfile 0 10 4096
11178         $CHECKSTAT -s 40960 $DIR/$tfile
11179
11180         # disable lockless i/o
11181         for node in $(osts_nodes); do
11182                 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'
11183         done
11184         lctl set_param -n osc.*.contention_seconds 0
11185         clear_osc_stats
11186
11187         dd if=/dev/zero of=$DIR/$tfile count=0
11188         $CHECKSTAT -s 0 $DIR/$tfile
11189
11190         restore_lustre_params <$p
11191         rm -f $p
11192         rm $DIR/$tfile
11193 }
11194 run_test 216 "check lockless direct write works and updates file size and kms correctly"
11195
11196 test_217() { # bug 22430
11197         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11198         local node
11199         local nid
11200
11201         for node in $(nodes_list); do
11202                 nid=$(host_nids_address $node $NETTYPE)
11203                 if [[ $nid = *-* ]] ; then
11204                         echo "lctl ping $nid@$NETTYPE"
11205                         lctl ping $nid@$NETTYPE
11206                 else
11207                         echo "skipping $node (no hyphen detected)"
11208                 fi
11209         done
11210 }
11211 run_test 217 "check lctl ping for hostnames with hiphen ('-')"
11212
11213 test_218() {
11214        # do directio so as not to populate the page cache
11215        log "creating a 10 Mb file"
11216        $MULTIOP $DIR/$tfile oO_CREAT:O_DIRECT:O_RDWR:w$((10*1048576))c || error "multiop failed while creating a file"
11217        log "starting reads"
11218        dd if=$DIR/$tfile of=/dev/null bs=4096 &
11219        log "truncating the file"
11220        $MULTIOP $DIR/$tfile oO_TRUNC:c || error "multiop failed while truncating the file"
11221        log "killing dd"
11222        kill %+ || true # reads might have finished
11223        echo "wait until dd is finished"
11224        wait
11225        log "removing the temporary file"
11226        rm -rf $DIR/$tfile || error "tmp file removal failed"
11227 }
11228 run_test 218 "parallel read and truncate should not deadlock ======================="
11229
11230 test_219() {
11231         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11232         # write one partial page
11233         dd if=/dev/zero of=$DIR/$tfile bs=1024 count=1
11234         # set no grant so vvp_io_commit_write will do sync write
11235         $LCTL set_param fail_loc=0x411
11236         # write a full page at the end of file
11237         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 seek=1 conv=notrunc
11238
11239         $LCTL set_param fail_loc=0
11240         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 seek=3
11241         $LCTL set_param fail_loc=0x411
11242         dd if=/dev/zero of=$DIR/$tfile bs=1024 count=1 seek=2 conv=notrunc
11243
11244         # LU-4201
11245         dd if=/dev/zero of=$DIR/$tfile-2 bs=1024 count=1
11246         $CHECKSTAT -s 1024 $DIR/$tfile-2 || error "checkstat wrong size"
11247 }
11248 run_test 219 "LU-394: Write partial won't cause uncontiguous pages vec at LND"
11249
11250 test_220() { #LU-325
11251         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11252         remote_ost_nodsh && skip "remote OST with nodsh" && return
11253         local OSTIDX=0
11254
11255         test_mkdir -p $DIR/$tdir
11256         local OST=$(lfs osts | grep ${OSTIDX}": " | \
11257                 awk '{print $2}' | sed -e 's/_UUID$//')
11258
11259         # on the mdt's osc
11260         local mdtosc_proc1=$(get_mdtosc_proc_path $SINGLEMDS $OST)
11261         local last_id=$(do_facet $SINGLEMDS lctl get_param -n \
11262                         osc.$mdtosc_proc1.prealloc_last_id)
11263         local next_id=$(do_facet $SINGLEMDS lctl get_param -n \
11264                         osc.$mdtosc_proc1.prealloc_next_id)
11265
11266         $LFS df -i
11267
11268         do_facet ost$((OSTIDX + 1)) lctl set_param fail_val=-1
11269         #define OBD_FAIL_OST_ENOINO              0x229
11270         do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=0x229
11271         do_facet mgs $LCTL pool_new $FSNAME.$TESTNAME || return 1
11272         do_facet mgs $LCTL pool_add $FSNAME.$TESTNAME $OST || return 2
11273
11274         $SETSTRIPE $DIR/$tdir -i $OSTIDX -c 1 -p $FSNAME.$TESTNAME
11275
11276         MDSOBJS=$((last_id - next_id))
11277         echo "preallocated objects on MDS is $MDSOBJS" "($last_id - $next_id)"
11278
11279         blocks=$($LFS df $MOUNT | awk '($1 == '$OSTIDX') { print $4 }')
11280         echo "OST still has $count kbytes free"
11281
11282         echo "create $MDSOBJS files @next_id..."
11283         createmany -o $DIR/$tdir/f $MDSOBJS || return 3
11284
11285         local last_id2=$(do_facet mds${MDSIDX} lctl get_param -n \
11286                         osc.$mdtosc_proc1.prealloc_last_id)
11287         local next_id2=$(do_facet mds${MDSIDX} lctl get_param -n \
11288                         osc.$mdtosc_proc1.prealloc_next_id)
11289
11290         echo "after creation, last_id=$last_id2, next_id=$next_id2"
11291         $LFS df -i
11292
11293         echo "cleanup..."
11294
11295         do_facet ost$((OSTIDX + 1)) lctl set_param fail_val=0
11296         do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=0
11297
11298         do_facet mgs $LCTL pool_remove $FSNAME.$TESTNAME $OST || return 4
11299         do_facet mgs $LCTL pool_destroy $FSNAME.$TESTNAME || return 5
11300         echo "unlink $MDSOBJS files @$next_id..."
11301         unlinkmany $DIR/$tdir/f $MDSOBJS || return 6
11302 }
11303 run_test 220 "preallocated MDS objects still used if ENOSPC from OST"
11304
11305 test_221() {
11306         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11307         dd if=`which date` of=$MOUNT/date oflag=sync
11308         chmod +x $MOUNT/date
11309
11310         #define OBD_FAIL_LLITE_FAULT_TRUNC_RACE  0x1401
11311         $LCTL set_param fail_loc=0x80001401
11312
11313         $MOUNT/date > /dev/null
11314         rm -f $MOUNT/date
11315 }
11316 run_test 221 "make sure fault and truncate race to not cause OOM"
11317
11318 test_222a () {
11319         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11320        rm -rf $DIR/$tdir
11321        test_mkdir -p $DIR/$tdir
11322        $SETSTRIPE -c 1 -i 0 $DIR/$tdir
11323        createmany -o $DIR/$tdir/$tfile 10
11324        cancel_lru_locks mdc
11325        cancel_lru_locks osc
11326        #define OBD_FAIL_LDLM_AGL_DELAY           0x31a
11327        $LCTL set_param fail_loc=0x31a
11328        ls -l $DIR/$tdir > /dev/null || error "AGL for ls failed"
11329        $LCTL set_param fail_loc=0
11330        rm -r $DIR/$tdir
11331 }
11332 run_test 222a "AGL for ls should not trigger CLIO lock failure ================"
11333
11334 test_222b () {
11335         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11336        rm -rf $DIR/$tdir
11337        test_mkdir -p $DIR/$tdir
11338        $SETSTRIPE -c 1 -i 0 $DIR/$tdir
11339        createmany -o $DIR/$tdir/$tfile 10
11340        cancel_lru_locks mdc
11341        cancel_lru_locks osc
11342        #define OBD_FAIL_LDLM_AGL_DELAY           0x31a
11343        $LCTL set_param fail_loc=0x31a
11344        rm -r $DIR/$tdir || "AGL for rmdir failed"
11345        $LCTL set_param fail_loc=0
11346 }
11347 run_test 222b "AGL for rmdir should not trigger CLIO lock failure ============="
11348
11349 test_223 () {
11350         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11351        rm -rf $DIR/$tdir
11352        test_mkdir -p $DIR/$tdir
11353        $SETSTRIPE -c 1 -i 0 $DIR/$tdir
11354        createmany -o $DIR/$tdir/$tfile 10
11355        cancel_lru_locks mdc
11356        cancel_lru_locks osc
11357        #define OBD_FAIL_LDLM_AGL_NOLOCK          0x31b
11358        $LCTL set_param fail_loc=0x31b
11359        ls -l $DIR/$tdir > /dev/null || error "reenqueue failed"
11360        $LCTL set_param fail_loc=0
11361        rm -r $DIR/$tdir
11362 }
11363 run_test 223 "osc reenqueue if without AGL lock granted ======================="
11364
11365 test_224a() { # LU-1039, MRP-303
11366         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11367         #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB   0x508
11368         $LCTL set_param fail_loc=0x508
11369         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 conv=fsync
11370         $LCTL set_param fail_loc=0
11371         df $DIR
11372 }
11373 run_test 224a "Don't panic on bulk IO failure"
11374
11375 test_224b() { # LU-1039, MRP-303
11376         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11377         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1
11378         cancel_lru_locks osc
11379         #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB2   0x515
11380         $LCTL set_param fail_loc=0x515
11381         dd of=/dev/null if=$DIR/$tfile bs=4096 count=1
11382         $LCTL set_param fail_loc=0
11383         df $DIR
11384 }
11385 run_test 224b "Don't panic on bulk IO failure"
11386
11387 MDSSURVEY=${MDSSURVEY:-$(which mds-survey 2>/dev/null || true)}
11388 test_225a () {
11389         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11390         if [ -z ${MDSSURVEY} ]; then
11391               skip_env "mds-survey not found" && return
11392         fi
11393
11394         [ $MDSCOUNT -ge 2 ] &&
11395                 skip "skipping now for more than one MDT" && return
11396
11397        [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ] ||
11398             { skip "Need MDS version at least 2.2.51"; return; }
11399
11400        local mds=$(facet_host $SINGLEMDS)
11401        local target=$(do_nodes $mds 'lctl dl' | \
11402                       awk "{if (\$2 == \"UP\" && \$3 == \"mdt\") {print \$4}}")
11403
11404        local cmd1="file_count=1000 thrhi=4"
11405        local cmd2="dir_count=2 layer=mdd stripe_count=0"
11406        local cmd3="rslt_loc=${TMP} targets=\"$mds:$target\" $MDSSURVEY"
11407        local cmd="$cmd1 $cmd2 $cmd3"
11408
11409        rm -f ${TMP}/mds_survey*
11410        echo + $cmd
11411        eval $cmd || error "mds-survey with zero-stripe failed"
11412        cat ${TMP}/mds_survey*
11413        rm -f ${TMP}/mds_survey*
11414 }
11415 run_test 225a "Metadata survey sanity with zero-stripe"
11416
11417 test_225b () {
11418         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11419
11420         if [ -z ${MDSSURVEY} ]; then
11421               skip_env "mds-survey not found" && return
11422         fi
11423         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ] ||
11424             { skip "Need MDS version at least 2.2.51"; return; }
11425
11426         if [ $($LCTL dl | grep -c osc) -eq 0 ]; then
11427               skip_env "Need to mount OST to test" && return
11428         fi
11429
11430         [ $MDSCOUNT -ge 2 ] &&
11431                 skip "skipping now for more than one MDT" && return
11432        local mds=$(facet_host $SINGLEMDS)
11433        local target=$(do_nodes $mds 'lctl dl' | \
11434                       awk "{if (\$2 == \"UP\" && \$3 == \"mdt\") {print \$4}}")
11435
11436        local cmd1="file_count=1000 thrhi=4"
11437        local cmd2="dir_count=2 layer=mdd stripe_count=1"
11438        local cmd3="rslt_loc=${TMP} targets=\"$mds:$target\" $MDSSURVEY"
11439        local cmd="$cmd1 $cmd2 $cmd3"
11440
11441        rm -f ${TMP}/mds_survey*
11442        echo + $cmd
11443        eval $cmd || error "mds-survey with stripe_count failed"
11444        cat ${TMP}/mds_survey*
11445        rm -f ${TMP}/mds_survey*
11446 }
11447 run_test 225b "Metadata survey sanity with stripe_count = 1"
11448
11449 mcreate_path2fid () {
11450         local mode=$1
11451         local major=$2
11452         local minor=$3
11453         local name=$4
11454         local desc=$5
11455         local path=$DIR/$tdir/$name
11456         local fid
11457         local rc
11458         local fid_path
11459
11460         $MCREATE --mode=$1 --major=$2 --minor=$3 $path ||
11461                 error "cannot create $desc"
11462
11463         fid=$($LFS path2fid $path | tr -d '[' | tr -d ']')
11464         rc=$?
11465         [ $rc -ne 0 ] && error "cannot get fid of a $desc"
11466
11467         fid_path=$($LFS fid2path $MOUNT $fid)
11468         rc=$?
11469         [ $rc -ne 0 ] && error "cannot get path of $desc by $DIR $path $fid"
11470
11471         [ "$path" == "$fid_path" ] ||
11472                 error "fid2path returned $fid_path, expected $path"
11473
11474         echo "pass with $path and $fid"
11475 }
11476
11477 test_226a () {
11478         rm -rf $DIR/$tdir
11479         mkdir -p $DIR/$tdir
11480
11481         mcreate_path2fid 0010666 0 0 fifo "FIFO"
11482         mcreate_path2fid 0020666 1 3 null "character special file (null)"
11483         mcreate_path2fid 0020666 1 255 none "character special file (no device)"
11484         mcreate_path2fid 0040666 0 0 dir "directory"
11485         mcreate_path2fid 0060666 7 0 loop0 "block special file (loop)"
11486         mcreate_path2fid 0100666 0 0 file "regular file"
11487         mcreate_path2fid 0120666 0 0 link "symbolic link"
11488         mcreate_path2fid 0140666 0 0 sock "socket"
11489 }
11490 run_test 226a "call path2fid and fid2path on files of all type"
11491
11492 test_226b () {
11493         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
11494         rm -rf $DIR/$tdir
11495         local MDTIDX=1
11496
11497         mkdir -p $DIR/$tdir
11498         $LFS setdirstripe -i $MDTIDX $DIR/$tdir/remote_dir ||
11499                 error "create remote directory failed"
11500         mcreate_path2fid 0010666 0 0 "remote_dir/fifo" "FIFO"
11501         mcreate_path2fid 0020666 1 3 "remote_dir/null" \
11502                                 "character special file (null)"
11503         mcreate_path2fid 0020666 1 255 "remote_dir/none" \
11504                                 "character special file (no device)"
11505         mcreate_path2fid 0040666 0 0 "remote_dir/dir" "directory"
11506         mcreate_path2fid 0060666 7 0 "remote_dir/loop0" \
11507                                 "block special file (loop)"
11508         mcreate_path2fid 0100666 0 0 "remote_dir/file" "regular file"
11509         mcreate_path2fid 0120666 0 0 "remote_dir/link" "symbolic link"
11510         mcreate_path2fid 0140666 0 0 "remote_dir/sock" "socket"
11511 }
11512 run_test 226b "call path2fid and fid2path on files of all type under remote dir"
11513
11514 # LU-1299 Executing or running ldd on a truncated executable does not
11515 # cause an out-of-memory condition.
11516 test_227() {
11517         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11518         dd if=`which date` of=$MOUNT/date bs=1k count=1
11519         chmod +x $MOUNT/date
11520
11521         $MOUNT/date > /dev/null
11522         ldd $MOUNT/date > /dev/null
11523         rm -f $MOUNT/date
11524 }
11525 run_test 227 "running truncated executable does not cause OOM"
11526
11527 # LU-1512 try to reuse idle OI blocks
11528 test_228a() {
11529         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11530         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
11531                 skip "non-ldiskfs backend" && return
11532
11533         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
11534         local myDIR=$DIR/$tdir
11535
11536         mkdir -p $myDIR
11537         #define OBD_FAIL_SEQ_EXHAUST             0x1002
11538         $LCTL set_param fail_loc=0x80001002
11539         createmany -o $myDIR/t- 10000
11540         $LCTL set_param fail_loc=0
11541         # The guard is current the largest FID holder
11542         touch $myDIR/guard
11543         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
11544                     tr -d '[')
11545         local IDX=$(($SEQ % 64))
11546
11547         do_facet $SINGLEMDS sync
11548         # Make sure journal flushed.
11549         sleep 6
11550         local blk1=$(do_facet $SINGLEMDS \
11551                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
11552                      grep Blockcount | awk '{print $4}')
11553
11554         # Remove old files, some OI blocks will become idle.
11555         unlinkmany $myDIR/t- 10000
11556         # Create new files, idle OI blocks should be reused.
11557         createmany -o $myDIR/t- 2000
11558         do_facet $SINGLEMDS sync
11559         # Make sure journal flushed.
11560         sleep 6
11561         local blk2=$(do_facet $SINGLEMDS \
11562                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
11563                      grep Blockcount | awk '{print $4}')
11564
11565         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
11566 }
11567 run_test 228a "try to reuse idle OI blocks"
11568
11569 test_228b() {
11570         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11571         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
11572                 skip "non-ldiskfs backend" && return
11573
11574         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
11575         local myDIR=$DIR/$tdir
11576
11577         mkdir -p $myDIR
11578         #define OBD_FAIL_SEQ_EXHAUST             0x1002
11579         $LCTL set_param fail_loc=0x80001002
11580         createmany -o $myDIR/t- 10000
11581         $LCTL set_param fail_loc=0
11582         # The guard is current the largest FID holder
11583         touch $myDIR/guard
11584         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
11585                     tr -d '[')
11586         local IDX=$(($SEQ % 64))
11587
11588         do_facet $SINGLEMDS sync
11589         # Make sure journal flushed.
11590         sleep 6
11591         local blk1=$(do_facet $SINGLEMDS \
11592                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
11593                      grep Blockcount | awk '{print $4}')
11594
11595         # Remove old files, some OI blocks will become idle.
11596         unlinkmany $myDIR/t- 10000
11597
11598         # stop the MDT
11599         stop $SINGLEMDS || error "Fail to stop MDT."
11600         # remount the MDT
11601         start $SINGLEMDS $MDT_DEV $MDS_MOUNT_OPTS || error "Fail to start MDT."
11602
11603         df $MOUNT || error "Fail to df."
11604         # Create new files, idle OI blocks should be reused.
11605         createmany -o $myDIR/t- 2000
11606         do_facet $SINGLEMDS sync
11607         # Make sure journal flushed.
11608         sleep 6
11609         local blk2=$(do_facet $SINGLEMDS \
11610                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
11611                      grep Blockcount | awk '{print $4}')
11612
11613         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
11614 }
11615 run_test 228b "idle OI blocks can be reused after MDT restart"
11616
11617 #LU-1881
11618 test_228c() {
11619         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11620         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
11621                 skip "non-ldiskfs backend" && return
11622
11623         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
11624         local myDIR=$DIR/$tdir
11625
11626         mkdir -p $myDIR
11627         #define OBD_FAIL_SEQ_EXHAUST             0x1002
11628         $LCTL set_param fail_loc=0x80001002
11629         # 20000 files can guarantee there are index nodes in the OI file
11630         createmany -o $myDIR/t- 20000
11631         $LCTL set_param fail_loc=0
11632         # The guard is current the largest FID holder
11633         touch $myDIR/guard
11634         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
11635                     tr -d '[')
11636         local IDX=$(($SEQ % 64))
11637
11638         do_facet $SINGLEMDS sync
11639         # Make sure journal flushed.
11640         sleep 6
11641         local blk1=$(do_facet $SINGLEMDS \
11642                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
11643                      grep Blockcount | awk '{print $4}')
11644
11645         # Remove old files, some OI blocks will become idle.
11646         unlinkmany $myDIR/t- 20000
11647         rm -f $myDIR/guard
11648         # The OI file should become empty now
11649
11650         # Create new files, idle OI blocks should be reused.
11651         createmany -o $myDIR/t- 2000
11652         do_facet $SINGLEMDS sync
11653         # Make sure journal flushed.
11654         sleep 6
11655         local blk2=$(do_facet $SINGLEMDS \
11656                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
11657                      grep Blockcount | awk '{print $4}')
11658
11659         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
11660 }
11661 run_test 228c "NOT shrink the last entry in OI index node to recycle idle leaf"
11662
11663 test_229() { # LU-2482, LU-3448
11664         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.53) ] &&
11665                 skip "No HSM support on MDS of $(get_lustre_version)," \
11666                          "need 2.4.53 at least" && return
11667         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11668         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
11669
11670         rm -f $DIR/$tfile
11671
11672         # Create a file with a released layout and stripe count 2.
11673         $MULTIOP $DIR/$tfile H2c ||
11674                 error "failed to create file with released layout"
11675
11676         $GETSTRIPE -v $DIR/$tfile
11677
11678         local pattern=$($GETSTRIPE -L $DIR/$tfile)
11679         [ X"$pattern" = X"80000001" ] || error "pattern error ($pattern)"
11680
11681         local stripe_count=$($GETSTRIPE -c $DIR/$tfile) || error "getstripe"
11682         [ $stripe_count -eq 2 ] || error "stripe count not 2 ($stripe_count)"
11683         stat $DIR/$tfile || error "failed to stat released file"
11684
11685         chown $RUNAS_ID $DIR/$tfile ||
11686                 error "chown $RUNAS_ID $DIR/$tfile failed"
11687
11688         chgrp $RUNAS_ID $DIR/$tfile ||
11689                 error "chgrp $RUNAS_ID $DIR/$tfile failed"
11690
11691         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
11692         rm $DIR/$tfile || error "failed to remove released file"
11693 }
11694 run_test 229 "getstripe/stat/rm/attr changes work on released files"
11695
11696 test_230a() {
11697         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11698         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
11699         local MDTIDX=1
11700
11701         mkdir -p $DIR/$tdir/test_230_local
11702         local mdt_idx=$($GETSTRIPE -M $DIR/$tdir/test_230_local)
11703         [ $mdt_idx -ne 0 ] &&
11704                 error "create local directory on wrong MDT $mdt_idx"
11705
11706         $LFS mkdir -i $MDTIDX $DIR/$tdir/test_230 ||
11707                         error "create remote directory failed"
11708         local mdt_idx=$($GETSTRIPE -M $DIR/$tdir/test_230)
11709         [ $mdt_idx -ne $MDTIDX ] &&
11710                 error "create remote directory on wrong MDT $mdt_idx"
11711
11712         createmany -o $DIR/$tdir/test_230/t- 10 ||
11713                 error "create files on remote directory failed"
11714         mdt_idx=$($GETSTRIPE -M $DIR/$tdir/test_230/t-0)
11715         [ $mdt_idx -ne $MDTIDX ] && error "create files on wrong MDT $mdt_idx"
11716         rm -r $DIR/$tdir || error "unlink remote directory failed"
11717 }
11718 run_test 230a "Create remote directory and files under the remote directory"
11719
11720 test_230b() {
11721         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11722         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
11723         local MDTIDX=1
11724         local remote_dir=$DIR/$tdir/remote_dir
11725         local rc=0
11726
11727         mkdir -p $DIR/$tdir
11728         $LFS mkdir -i $MDTIDX $remote_dir ||
11729                 error "create remote directory failed"
11730
11731         $LFS mkdir -i 0 $remote_dir/new_dir &&
11732                 error "nested remote directory create succeed!"
11733
11734         do_facet mds$((MDTIDX + 1)) lctl set_param mdt.*.enable_remote_dir=1
11735         $LFS mkdir -i 0 $remote_dir/new_dir || rc=$?
11736         do_facet mds$((MDTIDX + 1)) lctl set_param mdt.*.enable_remote_dir=0
11737
11738         [ $rc -ne 0 ] &&
11739            error "create remote directory failed after set enable_remote_dir"
11740
11741         rm -rf $remote_dir || error "first unlink remote directory failed"
11742
11743         $RUNAS -G$RUNAS_GID $LFS mkdir -i $MDTIDX $DIR/$tfile &&
11744                                                         error "chown worked"
11745
11746         do_facet mds$MDTIDX lctl set_param \
11747                                 mdt.*.enable_remote_dir_gid=$RUNAS_GID
11748         $LFS mkdir -i $MDTIDX $remote_dir || rc=$?
11749         do_facet mds$MDTIDX lctl set_param mdt.*.enable_remote_dir_gid=0
11750
11751         [ $rc -ne 0 ] &&
11752            error "create remote dir failed after set enable_remote_dir_gid"
11753
11754         rm -r $DIR/$tdir || error "second unlink remote directory failed"
11755 }
11756 run_test 230b "nested remote directory should be failed"
11757
11758 test_231a()
11759 {
11760         # For simplicity this test assumes that max_pages_per_rpc
11761         # is the same across all OSCs
11762         local max_pages=$($LCTL get_param -n osc.*.max_pages_per_rpc | head -1)
11763         local bulk_size=$((max_pages * 4096))
11764
11765         mkdir -p $DIR/$tdir
11766
11767         # clear the OSC stats
11768         $LCTL set_param osc.*.stats=0 &>/dev/null
11769
11770         # Client writes $bulk_size - there must be 1 rpc for $max_pages.
11771         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=$bulk_size count=1 \
11772                 oflag=direct &>/dev/null || error "dd failed"
11773
11774         local nrpcs=$($LCTL get_param osc.*.stats |awk '/ost_write/ {print $2}')
11775         if [ x$nrpcs != "x1" ]; then
11776                 error "found $nrpc ost_write RPCs, not 1 as expected"
11777         fi
11778
11779         # Drop the OSC cache, otherwise we will read from it
11780         cancel_lru_locks osc
11781
11782         # clear the OSC stats
11783         $LCTL set_param osc.*.stats=0 &>/dev/null
11784
11785         # Client reads $bulk_size.
11786         dd if=$DIR/$tdir/$tfile of=/dev/null bs=$bulk_size count=1 \
11787                 iflag=direct &>/dev/null || error "dd failed"
11788
11789         nrpcs=$($LCTL get_param osc.*.stats | awk '/ost_read/ { print $2 }')
11790         if [ x$nrpcs != "x1" ]; then
11791                 error "found $nrpc ost_read RPCs, not 1 as expected"
11792         fi
11793 }
11794 run_test 231a "checking that reading/writing of BRW RPC size results in one RPC"
11795
11796 test_231b() {
11797         mkdir -p $DIR/$tdir
11798         local i
11799         for i in {0..1023}; do
11800                 dd if=/dev/zero of=$DIR/$tdir/$tfile conv=notrunc \
11801                         seek=$((2 * i)) bs=4096 count=1 &>/dev/null ||
11802                         error "dd of=$DIR/$tdir/$tfile seek=$((2 * i)) failed"
11803         done
11804         sync
11805 }
11806 run_test 231b "must not assert on fully utilized OST request buffer"
11807
11808 test_232() {
11809         mkdir -p $DIR/$tdir
11810         #define OBD_FAIL_LDLM_OST_LVB            0x31c
11811         $LCTL set_param fail_loc=0x31c
11812
11813         # ignore dd failure
11814         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=1 || true
11815
11816         $LCTL set_param fail_loc=0
11817         umount_client $MOUNT || error "umount failed"
11818         mount_client $MOUNT || error "mount failed"
11819 }
11820 run_test 232 "failed lock should not block umount"
11821
11822 test_233a() {
11823         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.64) ] ||
11824         { skip "Need MDS version at least 2.3.64"; return; }
11825
11826         local fid=$($LFS path2fid $MOUNT)
11827         stat $MOUNT/.lustre/fid/$fid > /dev/null ||
11828                 error "cannot access $MOUNT using its FID '$fid'"
11829 }
11830 run_test 233a "checking that OBF of the FS root succeeds"
11831
11832 test_233b() {
11833         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.5.90) ] ||
11834         { skip "Need MDS version at least 2.5.90"; return; }
11835
11836         local fid=$($LFS path2fid $MOUNT/.lustre)
11837         stat $MOUNT/.lustre/fid/$fid > /dev/null ||
11838                 error "cannot access $MOUNT/.lustre using its FID '$fid'"
11839
11840         fid=$($LFS path2fid $MOUNT/.lustre/fid)
11841         stat $MOUNT/.lustre/fid/$fid > /dev/null ||
11842                 error "cannot access $MOUNT/.lustre/fid using its FID '$fid'"
11843 }
11844 run_test 233b "checking that OBF of the FS .lustre succeeds"
11845
11846 test_234() {
11847         local p="$TMP/sanityN-$TESTNAME.parameters"
11848         save_lustre_params client "llite.*.xattr_cache" > $p
11849         lctl set_param llite.*.xattr_cache 1 ||
11850                 { skip "xattr cache is not supported"; return 0; }
11851
11852         mkdir -p $DIR/$tdir || error "mkdir failed"
11853         touch $DIR/$tdir/$tfile || error "touch failed"
11854         # OBD_FAIL_LLITE_XATTR_ENOMEM
11855         $LCTL set_param fail_loc=0x1405
11856         if [ ! -f /etc/SuSE-release ]; then
11857                 # attr pre-2.4.44-7 had a bug with rc
11858                 # LU-3703 - SLES clients have older attr
11859                 getfattr -n user.attr $DIR/$tdir/$tfile &&
11860                         error "getfattr should have failed with ENOMEM"
11861         fi
11862         $LCTL set_param fail_loc=0x0
11863         rm -rf $DIR/$tdir
11864
11865         restore_lustre_params < $p
11866         rm -f $p
11867 }
11868 run_test 234 "xattr cache should not crash on ENOMEM"
11869
11870 test_235() {
11871          [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.52) ] &&
11872                 skip "Need MDS version at least 2.4.52" && return
11873         flock_deadlock $DIR/$tfile
11874         local RC=$?
11875         case $RC in
11876                 0)
11877                 ;;
11878                 124) error "process hangs on a deadlock"
11879                 ;;
11880                 *) error "error executing flock_deadlock $DIR/$tfile"
11881                 ;;
11882         esac
11883 }
11884 run_test 235 "LU-1715: flock deadlock detection does not work properly"
11885
11886 #LU-2935
11887 test_236() {
11888         check_swap_layouts_support && return 0
11889         test_mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
11890
11891         local ref1=/etc/passwd
11892         local ref2=/etc/group
11893         local file1=$DIR/$tdir/f1
11894         local file2=$DIR/$tdir/f2
11895
11896         $SETSTRIPE -c 1 $file1 || error "cannot setstripe on '$file1': rc = $?"
11897         cp $ref1 $file1 || error "cp $ref1 $file1 failed: rc = $?"
11898         $SETSTRIPE -c 2 $file2 || error "cannot setstripe on '$file2': rc = $?"
11899         cp $ref2 $file2 || error "cp $ref2 $file2 failed: rc = $?"
11900         local fd=$(free_fd)
11901         local cmd="exec $fd<>$file2"
11902         eval $cmd
11903         rm $file2
11904         $LFS swap_layouts $file1 /proc/self/fd/${fd} ||
11905                 error "cannot swap layouts of '$file1' and /proc/self/fd/${fd}"
11906         cmd="exec $fd>&-"
11907         eval $cmd
11908         cmp $ref2 $file1 || error "content compare failed ($ref2 != $file1)"
11909
11910         #cleanup
11911         rm -rf $DIR/$tdir
11912 }
11913 run_test 236 "Layout swap on open unlinked file"
11914
11915 #
11916 # tests that do cleanup/setup should be run at the end
11917 #
11918
11919 test_900() {
11920         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11921         local ls
11922         #define OBD_FAIL_MGC_PAUSE_PROCESS_LOG   0x903
11923         $LCTL set_param fail_loc=0x903
11924         # cancel_lru_locks mgc - does not work due to lctl set_param syntax
11925         for ls in /proc/fs/lustre/ldlm/namespaces/MGC*/lru_size; do
11926                 echo "clear" > $ls
11927         done
11928         FAIL_ON_ERROR=true cleanup
11929         FAIL_ON_ERROR=true setup
11930 }
11931 run_test 900 "umount should not race with any mgc requeue thread"
11932
11933 complete $SECONDS
11934 check_and_cleanup_lustre
11935 if [ "$I_MOUNTED" != "yes" ]; then
11936         lctl set_param debug="$OLDDEBUG" 2> /dev/null || true
11937 fi
11938 exit_status