Whamcloud - gitweb
LU-2524 tests: run sanity test_51ba in test_51b dir
[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/d${base}.${TESTSUITE}
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/d${base}.${TESTSUITE}
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 sz_MB=${FILESIZE_101d:-500}
5966         local ra_MB=${READAHEAD_MB:-40}
5967
5968         local free_MB=$(($(df -P $DIR | tail -n 1 | awk '{ print $4 }') / 1024))
5969         [ $free_MB -lt $sz_MB ] &&
5970                 skip "Need free space ${sz_MB}M, have ${free_MB}M" && return
5971
5972         echo "Create test file $file size ${sz_MB}M, ${free_MB}M free"
5973         $SETSTRIPE -c -1 $file || error "setstripe failed"
5974
5975         dd if=/dev/zero of=$file bs=1M count=$sz_MB || error "dd failed"
5976         echo Cancel LRU locks on lustre client to flush the client cache
5977         cancel_lru_locks osc
5978
5979         echo Disable read-ahead
5980         local old_READAHEAD=$(set_read_ahead 0)
5981
5982         echo Reading the test file $file with read-ahead disabled
5983         local raOFF=$(do_and_time "dd if=$file of=/dev/null bs=1M count=$sz_MB")
5984
5985         echo Cancel LRU locks on lustre client to flush the client cache
5986         cancel_lru_locks osc
5987         echo Enable read-ahead with ${ra_MB}MB
5988         set_read_ahead $ra_MB
5989
5990         echo Reading the test file $file with read-ahead enabled
5991         local raON=$(do_and_time "dd if=$file of=/dev/null bs=1M count=$sz_MB")
5992
5993         echo "read-ahead disabled time read $raOFF"
5994         echo "read-ahead enabled  time read $raON"
5995
5996         set_read_ahead $old_READAHEAD
5997         rm -f $file
5998         wait_delete_completed
5999
6000         [ $raOFF -le 1 -o $raON -lt $raOFF ] ||
6001                 error "readahead ${raON}s > no-readahead ${raOFF}s ${sz_MB}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_KB=500  #KB
6009         local count=100
6010         local bsize=1024
6011
6012         local free_KB=$(df -P $DIR | tail -n 1 | awk '{ print $4 }')
6013         local need_KB=$((count * size_KB))
6014         [ $free_KB -le $need_KB ] &&
6015                 skip_env "Need free space $need_KB, have $free_KB" && return
6016
6017         echo "Creating $count ${size_KB}K test files"
6018         for ((i = 0; i < $count; i++)); do
6019                 dd if=/dev/zero of=$file.$i bs=$bsize count=$size_KB 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=$bsize count=$size_KB 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_154d() {
9193         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.5.53) ]] &&
9194                 skip "Need MDS version at least 2.5.53" && return
9195
9196         if remote_mds; then
9197                 nid=$($LCTL list_nids | sed  "s/\./\\\./g")
9198         else
9199                 nid="0@lo"
9200         fi
9201         local proc_ofile="mdt.*.exports.'$nid'.open_files"
9202         local fd
9203         local cmd
9204
9205         rm -f $DIR/$tfile
9206         touch $DIR/$tfile
9207
9208         fid=$($LFS path2fid $DIR/$tfile)
9209         # Open the file
9210         fd=$(free_fd)
9211         cmd="exec $fd<$DIR/$tfile"
9212         eval $cmd
9213         fid_list=$(do_facet $SINGLEMDS $LCTL get_param $proc_ofile)
9214         echo $fid_list | grep $fid
9215         rc=$?
9216
9217         cmd="exec $fd>/dev/null"
9218         eval $cmd
9219         if [ $rc -ne 0 ]; then
9220                 error "FID $fid not found in open files list $fid_list"
9221         fi
9222 }
9223 run_test 154d "Verify open file fid"
9224
9225 test_155_small_load() {
9226     local temp=$TMP/$tfile
9227     local file=$DIR/$tfile
9228
9229     dd if=/dev/urandom of=$temp bs=6096 count=1 || \
9230         error "dd of=$temp bs=6096 count=1 failed"
9231     cp $temp $file
9232     cancel_lru_locks osc
9233     cmp $temp $file || error "$temp $file differ"
9234
9235     $TRUNCATE $temp 6000
9236     $TRUNCATE $file 6000
9237     cmp $temp $file || error "$temp $file differ (truncate1)"
9238
9239     echo "12345" >>$temp
9240     echo "12345" >>$file
9241     cmp $temp $file || error "$temp $file differ (append1)"
9242
9243     echo "12345" >>$temp
9244     echo "12345" >>$file
9245     cmp $temp $file || error "$temp $file differ (append2)"
9246
9247     rm -f $temp $file
9248     true
9249 }
9250
9251 test_155_big_load() {
9252     remote_ost_nodsh && skip "remote OST with nodsh" && return
9253     local temp=$TMP/$tfile
9254     local file=$DIR/$tfile
9255
9256     free_min_max
9257     local cache_size=$(do_facet ost$((MAXI+1)) \
9258         "awk '/cache/ {sum+=\\\$4} END {print sum}' /proc/cpuinfo")
9259     local large_file_size=$((cache_size * 2))
9260
9261     echo "OSS cache size: $cache_size KB"
9262     echo "Large file size: $large_file_size KB"
9263
9264     [ $MAXV -le $large_file_size ] && \
9265         skip_env "max available OST size needs > $large_file_size KB" && \
9266         return 0
9267
9268     $SETSTRIPE $file -c 1 -i $MAXI || error "$SETSTRIPE $file failed"
9269
9270     dd if=/dev/urandom of=$temp bs=$large_file_size count=1k || \
9271         error "dd of=$temp bs=$large_file_size count=1k failed"
9272     cp $temp $file
9273     ls -lh $temp $file
9274     cancel_lru_locks osc
9275     cmp $temp $file || error "$temp $file differ"
9276
9277     rm -f $temp $file
9278     true
9279 }
9280
9281 test_155a() {
9282         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9283         set_cache read on
9284         set_cache writethrough on
9285         test_155_small_load
9286 }
9287 run_test 155a "Verify small file correctness: read cache:on write_cache:on"
9288
9289 test_155b() {
9290         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9291         set_cache read on
9292         set_cache writethrough off
9293         test_155_small_load
9294 }
9295 run_test 155b "Verify small file correctness: read cache:on write_cache:off"
9296
9297 test_155c() {
9298         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9299         set_cache read off
9300         set_cache writethrough on
9301         test_155_small_load
9302 }
9303 run_test 155c "Verify small file correctness: read cache:off write_cache:on"
9304
9305 test_155d() {
9306         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9307         set_cache read off
9308         set_cache writethrough off
9309         test_155_small_load
9310 }
9311 run_test 155d "Verify small file correctness: read cache:off write_cache:off"
9312
9313 test_155e() {
9314         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9315         set_cache read on
9316         set_cache writethrough on
9317         test_155_big_load
9318 }
9319 run_test 155e "Verify big file correctness: read cache:on write_cache:on"
9320
9321 test_155f() {
9322         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9323         set_cache read on
9324         set_cache writethrough off
9325         test_155_big_load
9326 }
9327 run_test 155f "Verify big file correctness: read cache:on write_cache:off"
9328
9329 test_155g() {
9330         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9331         set_cache read off
9332         set_cache writethrough on
9333         test_155_big_load
9334 }
9335 run_test 155g "Verify big file correctness: read cache:off write_cache:on"
9336
9337 test_155h() {
9338         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9339         set_cache read off
9340         set_cache writethrough off
9341         test_155_big_load
9342 }
9343 run_test 155h "Verify big file correctness: read cache:off write_cache:off"
9344
9345 test_156() {
9346         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9347         local CPAGES=3
9348         local BEFORE
9349         local AFTER
9350         local file="$DIR/$tfile"
9351
9352         [ "$(facet_fstype ost1)" = "zfs" ] &&
9353                 skip "LU-1956/LU-2261: stats unimplemented on OSD ZFS" &&
9354                 return
9355
9356         roc_hit_init
9357
9358     log "Turn on read and write cache"
9359     set_cache read on
9360     set_cache writethrough on
9361
9362     log "Write data and read it back."
9363     log "Read should be satisfied from the cache."
9364     dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
9365     BEFORE=`roc_hit`
9366     cancel_lru_locks osc
9367     cat $file >/dev/null
9368     AFTER=`roc_hit`
9369     if ! let "AFTER - BEFORE == CPAGES"; then
9370         error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
9371     else
9372         log "cache hits:: before: $BEFORE, after: $AFTER"
9373     fi
9374
9375     log "Read again; it should be satisfied from the cache."
9376     BEFORE=$AFTER
9377     cancel_lru_locks osc
9378     cat $file >/dev/null
9379     AFTER=`roc_hit`
9380     if ! let "AFTER - BEFORE == CPAGES"; then
9381         error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
9382     else
9383         log "cache hits:: before: $BEFORE, after: $AFTER"
9384     fi
9385
9386
9387     log "Turn off the read cache and turn on the write cache"
9388     set_cache read off
9389     set_cache writethrough on
9390
9391     log "Read again; it should be satisfied from the cache."
9392     BEFORE=`roc_hit`
9393     cancel_lru_locks osc
9394     cat $file >/dev/null
9395     AFTER=`roc_hit`
9396     if ! let "AFTER - BEFORE == CPAGES"; then
9397         error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
9398     else
9399         log "cache hits:: before: $BEFORE, after: $AFTER"
9400     fi
9401
9402     log "Read again; it should not be satisfied from the cache."
9403     BEFORE=$AFTER
9404     cancel_lru_locks osc
9405     cat $file >/dev/null
9406     AFTER=`roc_hit`
9407     if ! let "AFTER - BEFORE == 0"; then
9408         error "IN CACHE: before: $BEFORE, after: $AFTER"
9409     else
9410         log "cache hits:: before: $BEFORE, after: $AFTER"
9411     fi
9412
9413     log "Write data and read it back."
9414     log "Read should be satisfied from the cache."
9415     dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
9416     BEFORE=`roc_hit`
9417     cancel_lru_locks osc
9418     cat $file >/dev/null
9419     AFTER=`roc_hit`
9420     if ! let "AFTER - BEFORE == CPAGES"; then
9421         error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
9422     else
9423         log "cache hits:: before: $BEFORE, after: $AFTER"
9424     fi
9425
9426     log "Read again; it should not be satisfied from the cache."
9427     BEFORE=$AFTER
9428     cancel_lru_locks osc
9429     cat $file >/dev/null
9430     AFTER=`roc_hit`
9431     if ! let "AFTER - BEFORE == 0"; then
9432         error "IN CACHE: before: $BEFORE, after: $AFTER"
9433     else
9434         log "cache hits:: before: $BEFORE, after: $AFTER"
9435     fi
9436
9437
9438     log "Turn off read and write cache"
9439     set_cache read off
9440     set_cache writethrough off
9441
9442     log "Write data and read it back"
9443     log "It should not be satisfied from the cache."
9444     rm -f $file
9445     dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
9446     cancel_lru_locks osc
9447     BEFORE=`roc_hit`
9448     cat $file >/dev/null
9449     AFTER=`roc_hit`
9450         if ! let "AFTER - BEFORE == 0"; then
9451                 error_ignore bz20762 "IN CACHE: before: $BEFORE, after: $AFTER"
9452         else
9453                 log "cache hits:: before: $BEFORE, after: $AFTER"
9454         fi
9455
9456     log "Turn on the read cache and turn off the write cache"
9457     set_cache read on
9458     set_cache writethrough off
9459
9460     log "Write data and read it back"
9461     log "It should not be satisfied from the cache."
9462     rm -f $file
9463     dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
9464     BEFORE=`roc_hit`
9465     cancel_lru_locks osc
9466     cat $file >/dev/null
9467     AFTER=`roc_hit`
9468         if ! let "AFTER - BEFORE == 0"; then
9469                 error_ignore bz20762 "IN CACHE: before: $BEFORE, after: $AFTER"
9470         else
9471                 log "cache hits:: before: $BEFORE, after: $AFTER"
9472         fi
9473
9474     log "Read again; it should be satisfied from the cache."
9475     BEFORE=`roc_hit`
9476     cancel_lru_locks osc
9477     cat $file >/dev/null
9478     AFTER=`roc_hit`
9479     if ! let "AFTER - BEFORE == CPAGES"; then
9480         error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
9481     else
9482         log "cache hits:: before: $BEFORE, after: $AFTER"
9483     fi
9484
9485     rm -f $file
9486 }
9487 run_test 156 "Verification of tunables ============================"
9488
9489 #Changelogs
9490 err17935 () {
9491         if [ $MDSCOUNT -gt 1 ]; then
9492                 error_ignore bz17935 $*
9493         else
9494                 error $*
9495         fi
9496 }
9497
9498 changelog_chmask()
9499 {
9500         local CL_MASK_PARAM="mdd.$MDT0.changelog_mask"
9501
9502         MASK=$(do_facet $SINGLEMDS $LCTL get_param $CL_MASK_PARAM| grep -c "$1")
9503
9504         if [ $MASK -eq 1 ]; then
9505                 do_facet $SINGLEMDS $LCTL set_param $CL_MASK_PARAM="-$1"
9506         else
9507                 do_facet $SINGLEMDS $LCTL set_param $CL_MASK_PARAM="+$1"
9508         fi
9509 }
9510
9511 changelog_extract_field() {
9512         local mdt=$1
9513         local cltype=$2
9514         local file=$3
9515         local identifier=$4
9516
9517         $LFS changelog $mdt | gawk "/$cltype.*$file$/ {
9518                 print gensub(/^.* "$identifier'(\[[^\]]*\]).*$/,"\\1",1)}' |
9519                 tail -1
9520 }
9521
9522 test_160a() {
9523         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9524         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9525         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] ||
9526                 { skip "Need MDS version at least 2.2.0"; return; }
9527
9528         local CL_USERS="mdd.$MDT0.changelog_users"
9529         local GET_CL_USERS="do_facet $SINGLEMDS $LCTL get_param -n $CL_USERS"
9530         USER=$(do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_register -n)
9531         echo "Registered as changelog user $USER"
9532         $GET_CL_USERS | grep -q $USER ||
9533                 error "User $USER not found in changelog_users"
9534
9535         # change something
9536         test_mkdir -p $DIR/$tdir/pics/2008/zachy
9537         touch $DIR/$tdir/pics/2008/zachy/timestamp
9538         cp /etc/hosts $DIR/$tdir/pics/2008/zachy/pic1.jpg
9539         mv $DIR/$tdir/pics/2008/zachy $DIR/$tdir/pics/zach
9540         ln $DIR/$tdir/pics/zach/pic1.jpg $DIR/$tdir/pics/2008/portland.jpg
9541         ln -s $DIR/$tdir/pics/2008/portland.jpg $DIR/$tdir/pics/desktop.jpg
9542         rm $DIR/$tdir/pics/desktop.jpg
9543
9544         $LFS changelog $MDT0 | tail -5
9545
9546         echo "verifying changelog mask"
9547         changelog_chmask "MKDIR"
9548         changelog_chmask "CLOSE"
9549
9550         test_mkdir -p $DIR/$tdir/pics/zach/sofia
9551         echo "zzzzzz" > $DIR/$tdir/pics/zach/file
9552
9553         changelog_chmask "MKDIR"
9554         changelog_chmask "CLOSE"
9555
9556         test_mkdir -p $DIR/$tdir/pics/2008/sofia
9557         echo "zzzzzz" > $DIR/$tdir/pics/zach/file
9558
9559         $LFS changelog $MDT0
9560         MKDIRS=$($LFS changelog $MDT0 | tail -5 | grep -c "MKDIR")
9561         CLOSES=$($LFS changelog $MDT0 | tail -5 | grep -c "CLOSE")
9562         [ $MKDIRS -eq 1 ] || err17935 "MKDIR changelog mask count $DIRS != 1"
9563         [ $CLOSES -eq 1 ] || err17935 "CLOSE changelog mask count $DIRS != 1"
9564
9565         # verify contents
9566         echo "verifying target fid"
9567         fidc=$(changelog_extract_field $MDT0 "CREAT" "timestamp" "t=")
9568         fidf=$($LFS path2fid $DIR/$tdir/pics/zach/timestamp)
9569         [ "$fidc" == "$fidf" ] ||
9570                 err17935 "fid in changelog $fidc != file fid $fidf"
9571         echo "verifying parent fid"
9572         fidc=$(changelog_extract_field $MDT0 "CREAT" "timestamp" "p=")
9573         fidf=$($LFS path2fid $DIR/$tdir/pics/zach)
9574         [ "$fidc" == "$fidf" ] ||
9575                 err17935 "pfid in changelog $fidc != dir fid $fidf"
9576
9577         USER_REC1=$($GET_CL_USERS | awk "\$1 == \"$USER\" {print \$2}")
9578         $LFS changelog_clear $MDT0 $USER $(($USER_REC1 + 5))
9579         USER_REC2=$($GET_CL_USERS | awk "\$1 == \"$USER\" {print \$2}")
9580         echo "verifying user clear: $(( $USER_REC1 + 5 )) == $USER_REC2"
9581         [ $USER_REC2 == $(($USER_REC1 + 5)) ] ||
9582                 err17935 "user index expected $(($USER_REC1 + 5)) is $USER_REC2"
9583
9584         MIN_REC=$($GET_CL_USERS |
9585                 awk 'min == "" || $2 < min {min = $2}; END {print min}')
9586         FIRST_REC=$($LFS changelog $MDT0 | head -1 | awk '{print $1}')
9587         echo "verifying min purge: $(( $MIN_REC + 1 )) == $FIRST_REC"
9588         [ $FIRST_REC == $(($MIN_REC + 1)) ] ||
9589                 err17935 "first index should be $(($MIN_REC + 1)) is $FIRST_REC"
9590
9591         # LU-3446 changelog index reset on MDT restart
9592         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
9593         CUR_REC1=$($GET_CL_USERS | head -1 | cut -f3 -d' ')
9594         $LFS changelog_clear $MDT0 $USER 0
9595         stop $SINGLEMDS || error "Fail to stop MDT."
9596         start $SINGLEMDS $MDT_DEV $MDS_MOUNT_OPTS || error "Fail to start MDT."
9597         CUR_REC2=$($GET_CL_USERS | head -1 | cut -f3 -d' ')
9598         echo "verifying index survives MDT restart: $CUR_REC1 == $CUR_REC2"
9599         [ $CUR_REC1 == $CUR_REC2 ] ||
9600                 err17935 "current index should be $CUR_REC1 is $CUR_REC2"
9601
9602         echo "verifying user deregister"
9603         do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister $USER
9604         $GET_CL_USERS | grep -q $USER &&
9605                 error "User $USER still in changelog_users"
9606
9607         USERS=$(( $($GET_CL_USERS | wc -l) - 2 ))
9608         if [ $USERS -eq 0 ]; then
9609                 LAST_REC1=$($GET_CL_USERS | head -1 | cut -f3 -d' ')
9610                 touch $DIR/$tdir/chloe
9611                 LAST_REC2=$($GET_CL_USERS | head -1 | cut -f3 -d' ')
9612                 echo "verify changelogs are off: $LAST_REC1 == $LAST_REC2"
9613                 [ $LAST_REC1 == $LAST_REC2 ] || error "changelogs not off"
9614         else
9615                 echo "$USERS other changelog users; can't verify off"
9616         fi
9617 }
9618 run_test 160a "changelog sanity"
9619
9620 test_160b() { # LU-3587
9621         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9622         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9623         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] ||
9624                 { skip "Need MDS version at least 2.2.0"; return; }
9625
9626         local CL_USERS="mdd.$MDT0.changelog_users"
9627         local GET_CL_USERS="do_facet $SINGLEMDS $LCTL get_param -n $CL_USERS"
9628         USER=$(do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_register -n)
9629         echo "Registered as changelog user $USER"
9630         $GET_CL_USERS | grep -q $USER ||
9631                 error "User $USER not found in changelog_users"
9632
9633         local LONGNAME1=$(str_repeat a 255)
9634         local LONGNAME2=$(str_repeat b 255)
9635
9636         cd $DIR
9637         echo "creating very long named file"
9638         touch $LONGNAME1 || error "create of $LONGNAME1 failed"
9639         echo "moving very long named file"
9640         mv $LONGNAME1 $LONGNAME2
9641
9642         $LFS changelog $MDT0 | grep RENME
9643
9644         echo "deregistering $USER"
9645         do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister $USER
9646
9647         rm -f $LONGNAME2
9648 }
9649 run_test 160b "Verify that very long rename doesn't crash in changelog"
9650
9651 test_161a() {
9652         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9653     test_mkdir -p $DIR/$tdir
9654     cp /etc/hosts $DIR/$tdir/$tfile
9655     test_mkdir $DIR/$tdir/foo1
9656     test_mkdir $DIR/$tdir/foo2
9657     ln $DIR/$tdir/$tfile $DIR/$tdir/foo1/sofia
9658     ln $DIR/$tdir/$tfile $DIR/$tdir/foo2/zachary
9659     ln $DIR/$tdir/$tfile $DIR/$tdir/foo1/luna
9660     ln $DIR/$tdir/$tfile $DIR/$tdir/foo2/thor
9661         local FID=$($LFS path2fid $DIR/$tdir/$tfile | tr -d '[]')
9662         if [ "$($LFS fid2path $DIR $FID | wc -l)" != "5" ]; then
9663                 $LFS fid2path $DIR $FID
9664                 err17935 "bad link ea"
9665         fi
9666     # middle
9667     rm $DIR/$tdir/foo2/zachary
9668     # last
9669     rm $DIR/$tdir/foo2/thor
9670     # first
9671     rm $DIR/$tdir/$tfile
9672     # rename
9673     mv $DIR/$tdir/foo1/sofia $DIR/$tdir/foo2/maggie
9674     if [ "$($LFS fid2path $FSNAME --link 1 $FID)" != "$tdir/foo2/maggie" ]
9675         then
9676         $LFS fid2path $DIR $FID
9677         err17935 "bad link rename"
9678     fi
9679     rm $DIR/$tdir/foo2/maggie
9680
9681     # overflow the EA
9682     local longname=filename_avg_len_is_thirty_two_
9683     createmany -l$DIR/$tdir/foo1/luna $DIR/$tdir/foo2/$longname 1000 || \
9684         error "failed to hardlink many files"
9685     links=$($LFS fid2path $DIR $FID | wc -l)
9686     echo -n "${links}/1000 links in link EA"
9687     [ ${links} -gt 60 ] || err17935 "expected at least 60 links in link EA"
9688     unlinkmany $DIR/$tdir/foo2/$longname 1000 || \
9689         error "failed to unlink many hardlinks"
9690 }
9691 run_test 161a "link ea sanity"
9692
9693 test_161b() {
9694         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9695         [ $MDSCOUNT -lt 2 ] &&
9696                 skip "skipping remote directory test" && return
9697         local MDTIDX=1
9698         local remote_dir=$DIR/$tdir/remote_dir
9699
9700         mkdir -p $DIR/$tdir
9701         $LFS mkdir -i $MDTIDX $remote_dir ||
9702                 error "create remote directory failed"
9703
9704         cp /etc/hosts $remote_dir/$tfile
9705         mkdir -p $remote_dir/foo1
9706         mkdir -p $remote_dir/foo2
9707         ln $remote_dir/$tfile $remote_dir/foo1/sofia
9708         ln $remote_dir/$tfile $remote_dir/foo2/zachary
9709         ln $remote_dir/$tfile $remote_dir/foo1/luna
9710         ln $remote_dir/$tfile $remote_dir/foo2/thor
9711
9712         local FID=$($LFS path2fid $remote_dir/$tfile | tr -d '[' |
9713                      tr -d ']')
9714         if [ "$($LFS fid2path $DIR $FID | wc -l)" != "5" ]; then
9715                 $LFS fid2path $DIR $FID
9716                 err17935 "bad link ea"
9717         fi
9718         # middle
9719         rm $remote_dir/foo2/zachary
9720         # last
9721         rm $remote_dir/foo2/thor
9722         # first
9723         rm $remote_dir/$tfile
9724         # rename
9725         mv $remote_dir/foo1/sofia $remote_dir/foo2/maggie
9726         local link_path=$($LFS fid2path $FSNAME --link 1 $FID)
9727         if [ "$DIR/$link_path" != "$remote_dir/foo2/maggie" ]; then
9728                 $LFS fid2path $DIR $FID
9729                 err17935 "bad link rename"
9730         fi
9731         rm $remote_dir/foo2/maggie
9732
9733         # overflow the EA
9734         local longname=filename_avg_len_is_thirty_two_
9735         createmany -l$remote_dir/foo1/luna $remote_dir/foo2/$longname 1000 ||
9736                 error "failed to hardlink many files"
9737         links=$($LFS fid2path $DIR $FID | wc -l)
9738         echo -n "${links}/1000 links in link EA"
9739         [ ${links} -gt 60 ] || err17935 "expected at least 60 links in link EA"
9740         unlinkmany $remote_dir/foo2/$longname 1000 ||
9741         error "failed to unlink many hardlinks"
9742 }
9743 run_test 161b "link ea sanity under remote directory"
9744
9745 test_161c() {
9746         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9747         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.1.5) ]] &&
9748                 skip "Need MDS version at least 2.1.5" && return
9749
9750         # define CLF_RENAME_LAST 0x0001
9751         # rename overwrite a target having nlink = 1 (changelog flag 0x1)
9752         local USER=$(do_facet $SINGLEMDS $LCTL --device $MDT0 \
9753                 changelog_register -n)
9754         rm -rf $DIR/$tdir
9755         mkdir -p $DIR/$tdir
9756         touch $DIR/$tdir/foo_161c
9757         touch $DIR/$tdir/bar_161c
9758         mv -f $DIR/$tdir/foo_161c $DIR/$tdir/bar_161c
9759         $LFS changelog $MDT0 | grep RENME
9760         local flags=$($LFS changelog $MDT0 | grep RENME | tail -1 | \
9761                 cut -f5 -d' ')
9762         $LFS changelog_clear $MDT0 $USER 0
9763         if [ x$flags != "x0x1" ]; then
9764                 do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister \
9765                         $USER
9766                 error "flag $flags is not 0x1"
9767         fi
9768         echo "rename overwrite a target having nlink = 1," \
9769                 "changelog record has flags of $flags"
9770
9771         # rename overwrite a target having nlink > 1 (changelog flag 0x0)
9772         touch $DIR/$tdir/foo_161c
9773         touch $DIR/$tdir/bar_161c
9774         ln $DIR/$tdir/bar_161c $DIR/$tdir/foobar_161c
9775         mv -f $DIR/$tdir/foo_161c $DIR/$tdir/bar_161c
9776         $LFS changelog $MDT0 | grep RENME
9777         flags=$($LFS changelog $MDT0 | grep RENME | tail -1 | cut -f5 -d' ')
9778         $LFS changelog_clear $MDT0 $USER 0
9779         if [ x$flags != "x0x0" ]; then
9780                 do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister \
9781                         $USER
9782                 error "flag $flags is not 0x0"
9783         fi
9784         echo "rename overwrite a target having nlink > 1," \
9785                 "changelog record has flags of $flags"
9786
9787         # rename doesn't overwrite a target (changelog flag 0x0)
9788         touch $DIR/$tdir/foo_161c
9789         mv -f $DIR/$tdir/foo_161c $DIR/$tdir/foo2_161c
9790         $LFS changelog $MDT0 | grep RENME
9791         flags=$($LFS changelog $MDT0 | grep RENME | tail -1 | cut -f5 -d' ')
9792         $LFS changelog_clear $MDT0 $USER 0
9793         if [ x$flags != "x0x0" ]; then
9794                 do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister \
9795                         $USER
9796                 error "flag $flags is not 0x0"
9797         fi
9798         echo "rename doesn't overwrite a target," \
9799                 "changelog record has flags of $flags"
9800
9801         # define CLF_UNLINK_LAST 0x0001
9802         # unlink a file having nlink = 1 (changelog flag 0x1)
9803         rm -f $DIR/$tdir/foo2_161c
9804         $LFS changelog $MDT0 | grep UNLNK
9805         flags=$($LFS changelog $MDT0 | grep UNLNK | tail -1 | cut -f5 -d' ')
9806         $LFS changelog_clear $MDT0 $USER 0
9807         if [ x$flags != "x0x1" ]; then
9808                 do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister \
9809                         $USER
9810                 error "flag $flags is not 0x1"
9811         fi
9812         echo "unlink a file having nlink = 1," \
9813                 "changelog record has flags of $flags"
9814
9815         # unlink a file having nlink > 1 (changelog flag 0x0)
9816         ln -f $DIR/$tdir/bar_161c $DIR/$tdir/foobar_161c
9817         rm -f $DIR/$tdir/foobar_161c
9818         $LFS changelog $MDT0 | grep UNLNK
9819         flags=$($LFS changelog $MDT0 | grep UNLNK | tail -1 | cut -f5 -d' ')
9820         $LFS changelog_clear $MDT0 $USER 0
9821         if [ x$flags != "x0x0" ]; then
9822                 do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister \
9823                         $USER
9824                 error "flag $flags is not 0x0"
9825         fi
9826         echo "unlink a file having nlink > 1," \
9827                 "changelog record has flags of $flags"
9828         do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister $USER
9829 }
9830 run_test 161c "check CL_RENME[UNLINK] changelog record flags"
9831
9832 check_path() {
9833     local expected=$1
9834     shift
9835     local fid=$2
9836
9837     local path=$(${LFS} fid2path $*)
9838     RC=$?
9839
9840     if [ $RC -ne 0 ]; then
9841         err17935 "path looked up of $expected failed. Error $RC"
9842         return $RC
9843     elif [ "${path}" != "${expected}" ]; then
9844         err17935 "path looked up \"${path}\" instead of \"${expected}\""
9845         return 2
9846     fi
9847     echo "fid $fid resolves to path $path (expected $expected)"
9848 }
9849
9850 test_162() {
9851         # Make changes to filesystem
9852         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9853         test_mkdir -p $DIR/$tdir/d2
9854         touch $DIR/$tdir/d2/$tfile
9855         touch $DIR/$tdir/d2/x1
9856         touch $DIR/$tdir/d2/x2
9857         test_mkdir -p $DIR/$tdir/d2/a/b/c
9858         test_mkdir -p $DIR/$tdir/d2/p/q/r
9859         # regular file
9860         FID=$($LFS path2fid $DIR/$tdir/d2/$tfile | tr -d '[]')
9861         check_path "$tdir/d2/$tfile" $FSNAME $FID --link 0
9862
9863         # softlink
9864         ln -s $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/p/q/r/slink
9865         FID=$($LFS path2fid $DIR/$tdir/d2/p/q/r/slink | tr -d '[]')
9866         check_path "$tdir/d2/p/q/r/slink" $FSNAME $FID --link 0
9867
9868         # softlink to wrong file
9869         ln -s /this/is/garbage $DIR/$tdir/d2/p/q/r/slink.wrong
9870         FID=$($LFS path2fid $DIR/$tdir/d2/p/q/r/slink.wrong | tr -d '[]')
9871         check_path "$tdir/d2/p/q/r/slink.wrong" $FSNAME $FID --link 0
9872
9873         # hardlink
9874         ln $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/p/q/r/hlink
9875         mv $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/a/b/c/new_file
9876         FID=$($LFS path2fid $DIR/$tdir/d2/a/b/c/new_file | tr -d '[]')
9877         # fid2path dir/fsname should both work
9878         check_path "$tdir/d2/a/b/c/new_file" $FSNAME $FID --link 1
9879         check_path "$DIR/$tdir/d2/p/q/r/hlink" $DIR $FID --link 0
9880
9881         # hardlink count: check that there are 2 links
9882         # Doesnt work with CMD yet: 17935
9883         ${LFS} fid2path $DIR $FID | wc -l | grep -q 2 || \
9884                 err17935 "expected 2 links"
9885
9886         # hardlink indexing: remove the first link
9887         rm $DIR/$tdir/d2/p/q/r/hlink
9888         check_path "$tdir/d2/a/b/c/new_file" $FSNAME $FID --link 0
9889
9890         return 0
9891 }
9892 run_test 162 "path lookup sanity"
9893
9894 test_169() {
9895         # do directio so as not to populate the page cache
9896         log "creating a 10 Mb file"
9897         $MULTIOP $DIR/$tfile oO_CREAT:O_DIRECT:O_RDWR:w$((10*1048576))c || error "multiop failed while creating a file"
9898         log "starting reads"
9899         dd if=$DIR/$tfile of=/dev/null bs=4096 &
9900         log "truncating the file"
9901         $MULTIOP $DIR/$tfile oO_TRUNC:c || error "multiop failed while truncating the file"
9902         log "killing dd"
9903         kill %+ || true # reads might have finished
9904         echo "wait until dd is finished"
9905         wait
9906         log "removing the temporary file"
9907         rm -rf $DIR/$tfile || error "tmp file removal failed"
9908 }
9909 run_test 169 "parallel read and truncate should not deadlock"
9910
9911 test_170() {
9912         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9913         $LCTL clear     # bug 18514
9914         $LCTL debug_daemon start $TMP/${tfile}_log_good
9915         touch $DIR/$tfile
9916         $LCTL debug_daemon stop
9917         sed -e "s/^...../a/g" $TMP/${tfile}_log_good > $TMP/${tfile}_log_bad ||
9918                error "sed failed to read log_good"
9919
9920         $LCTL debug_daemon start $TMP/${tfile}_log_good
9921         rm -rf $DIR/$tfile
9922         $LCTL debug_daemon stop
9923
9924         $LCTL df $TMP/${tfile}_log_bad > $TMP/${tfile}_log_bad.out 2>&1 ||
9925                error "lctl df log_bad failed"
9926
9927         local bad_line=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $9}')
9928         local good_line1=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $5}')
9929
9930         $LCTL df $TMP/${tfile}_log_good > $TMP/${tfile}_log_good.out 2>&1
9931         local good_line2=$(tail -n 1 $TMP/${tfile}_log_good.out | awk '{print $5}')
9932
9933         [ "$bad_line" ] && [ "$good_line1" ] && [ "$good_line2" ] ||
9934                 error "bad_line good_line1 good_line2 are empty"
9935
9936         cat $TMP/${tfile}_log_good >> $TMP/${tfile}_logs_corrupt
9937         cat $TMP/${tfile}_log_bad >> $TMP/${tfile}_logs_corrupt
9938         cat $TMP/${tfile}_log_good >> $TMP/${tfile}_logs_corrupt
9939
9940         $LCTL df $TMP/${tfile}_logs_corrupt > $TMP/${tfile}_log_bad.out 2>&1
9941         local bad_line_new=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $9}')
9942         local good_line_new=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $5}')
9943
9944         [ "$bad_line_new" ] && [ "$good_line_new" ] ||
9945                 error "bad_line_new good_line_new are empty"
9946
9947         local expected_good=$((good_line1 + good_line2*2))
9948
9949         rm -f $TMP/${tfile}*
9950         # LU-231, short malformed line may not be counted into bad lines
9951         if [ $bad_line -ne $bad_line_new ] &&
9952                    [ $bad_line -ne $((bad_line_new - 1)) ]; then
9953                 error "expected $bad_line bad lines, but got $bad_line_new"
9954                 return 1
9955         fi
9956
9957         if [ $expected_good -ne $good_line_new ]; then
9958                 error "expected $expected_good good lines, but got $good_line_new"
9959                 return 2
9960         fi
9961         true
9962 }
9963 run_test 170 "test lctl df to handle corrupted log ====================="
9964
9965 test_171() { # bug20592
9966         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9967 #define OBD_FAIL_PTLRPC_DUMP_LOG         0x50e
9968         $LCTL set_param fail_loc=0x50e
9969         $LCTL set_param fail_val=3000
9970         multiop_bg_pause $DIR/$tfile O_s || true
9971         local MULTIPID=$!
9972         kill -USR1 $MULTIPID
9973         # cause log dump
9974         sleep 3
9975         wait $MULTIPID
9976         if dmesg | grep "recursive fault"; then
9977                 error "caught a recursive fault"
9978         fi
9979         $LCTL set_param fail_loc=0
9980         true
9981 }
9982 run_test 171 "test libcfs_debug_dumplog_thread stuck in do_exit() ======"
9983
9984 # it would be good to share it with obdfilter-survey/libecho code
9985 setup_obdecho_osc () {
9986         local rc=0
9987         local ost_nid=$1
9988         local obdfilter_name=$2
9989         echo "Creating new osc for $obdfilter_name on $ost_nid"
9990         # make sure we can find loopback nid
9991         $LCTL add_uuid $ost_nid $ost_nid >/dev/null 2>&1
9992
9993         [ $rc -eq 0 ] && { $LCTL attach osc ${obdfilter_name}_osc     \
9994                            ${obdfilter_name}_osc_UUID || rc=2; }
9995         [ $rc -eq 0 ] && { $LCTL --device ${obdfilter_name}_osc setup \
9996                            ${obdfilter_name}_UUID  $ost_nid || rc=3; }
9997         return $rc
9998 }
9999
10000 cleanup_obdecho_osc () {
10001         local obdfilter_name=$1
10002         $LCTL --device ${obdfilter_name}_osc cleanup >/dev/null
10003         $LCTL --device ${obdfilter_name}_osc detach  >/dev/null
10004         return 0
10005 }
10006
10007 obdecho_test() {
10008         local OBD=$1
10009         local node=$2
10010         local pages=${3:-64}
10011         local rc=0
10012         local id
10013
10014         local count=10
10015         local obd_size=$(get_obd_size $node $OBD)
10016         local page_size=$(get_page_size $node)
10017         if [[ -n "$obd_size" ]]; then
10018                 local new_count=$((obd_size / (pages * page_size / 1024)))
10019                 [[ $new_count -ge $count ]] || count=$new_count
10020         fi
10021
10022         do_facet $node "$LCTL attach echo_client ec ec_uuid" || rc=1
10023         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec setup $OBD" ||
10024                            rc=2; }
10025         if [ $rc -eq 0 ]; then
10026             id=$(do_facet $node "$LCTL --device ec create 1"  | awk '/object id/ {print $6}')
10027             [ ${PIPESTATUS[0]} -eq 0 -a -n "$id" ] || rc=3
10028         fi
10029         echo "New object id is $id"
10030         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec getattr $id" ||
10031                            rc=4; }
10032         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec "                 \
10033                            "test_brw $count w v $pages $id" || rc=4; }
10034         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec destroy $id 1" ||
10035                            rc=4; }
10036         [ $rc -eq 0 -o $rc -gt 2 ] && { do_facet $node "$LCTL --device ec "    \
10037                                         "cleanup" || rc=5; }
10038         [ $rc -eq 0 -o $rc -gt 1 ] && { do_facet $node "$LCTL --device ec "    \
10039                                         "detach" || rc=6; }
10040         [ $rc -ne 0 ] && echo "obecho_create_test failed: $rc"
10041         return $rc
10042 }
10043
10044 test_180a() {
10045         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10046         remote_ost_nodsh && skip "remote OST with nodsh" && return
10047         local rc=0
10048         local rmmod_local=0
10049
10050         if ! module_loaded obdecho; then
10051             load_module obdecho/obdecho
10052             rmmod_local=1
10053         fi
10054
10055         local osc=$($LCTL dl | grep -v mdt | awk '$3 == "osc" {print $4; exit}')
10056         local host=$(lctl get_param -n osc.$osc.import |
10057                              awk '/current_connection:/ {print $2}' )
10058         local target=$(lctl get_param -n osc.$osc.import |
10059                              awk '/target:/ {print $2}' )
10060         target=${target%_UUID}
10061
10062         [[ -n $target ]]  && { setup_obdecho_osc $host $target || rc=1; } || rc=1
10063         [ $rc -eq 0 ] && { obdecho_test ${target}_osc client || rc=2; }
10064         [[ -n $target ]] && cleanup_obdecho_osc $target
10065         [ $rmmod_local -eq 1 ] && rmmod obdecho
10066         return $rc
10067 }
10068 run_test 180a "test obdecho on osc"
10069
10070 test_180b() {
10071         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10072         remote_ost_nodsh && skip "remote OST with nodsh" && return
10073         local rc=0
10074         local rmmod_remote=0
10075
10076         do_facet ost1 "lsmod | grep -q obdecho || "                      \
10077                       "{ insmod ${LUSTRE}/obdecho/obdecho.ko || "        \
10078                       "modprobe obdecho; }" && rmmod_remote=1
10079         target=$(do_facet ost1 $LCTL dl | awk '/obdfilter/ {print $4;exit}')
10080         [[ -n $target ]] && { obdecho_test $target ost1 || rc=1; }
10081         [ $rmmod_remote -eq 1 ] && do_facet ost1 "rmmod obdecho"
10082         return $rc
10083 }
10084 run_test 180b "test obdecho directly on obdfilter"
10085
10086 test_180c() { # LU-2598
10087         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10088         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.0) ]] &&
10089                 skip "Need MDS version at least 2.4.0" && return
10090
10091         local rc=0
10092         local rmmod_remote=false
10093         local pages=16384 # 64MB bulk I/O RPC size
10094         local target
10095
10096         do_rpc_nodes $(facet_active_host ost1) load_module obdecho/obdecho &&
10097                 rmmod_remote=true || error "failed to load module obdecho"
10098
10099         target=$(do_facet ost1 $LCTL dl | awk '/obdfilter/ {print $4}'|head -1)
10100         if [[ -n $target ]]; then
10101                 obdecho_test "$target" ost1 "$pages" ||
10102                         rc=${PIPESTATUS[0]}
10103         else
10104                 echo "there is no obdfilter target on ost1"
10105                 rc=2
10106         fi
10107         $rmmod_remote && do_facet ost1 "rmmod obdecho" || true
10108         return $rc
10109 }
10110 run_test 180c "test huge bulk I/O size on obdfilter, don't LASSERT"
10111
10112 test_181() { # bug 22177
10113         test_mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
10114         # create enough files to index the directory
10115         createmany -o $DIR/$tdir/foobar 4000
10116         # print attributes for debug purpose
10117         lsattr -d .
10118         # open dir
10119         multiop_bg_pause $DIR/$tdir D_Sc || return 1
10120         MULTIPID=$!
10121         # remove the files & current working dir
10122         unlinkmany $DIR/$tdir/foobar 4000
10123         rmdir $DIR/$tdir
10124         kill -USR1 $MULTIPID
10125         wait $MULTIPID
10126         stat $DIR/$tdir && error "open-unlinked dir was not removed!"
10127         return 0
10128 }
10129 run_test 181 "Test open-unlinked dir ========================"
10130
10131 test_182() {
10132         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10133         # disable MDC RPC lock wouldn't crash client
10134         local fcount=1000
10135         local tcount=4
10136
10137         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
10138 #define OBD_FAIL_MDC_RPCS_SEM           0x804
10139         $LCTL set_param fail_loc=0x804
10140
10141         for (( i=0; i < $tcount; i++ )) ; do
10142                 mkdir $DIR/$tdir/$i
10143                 createmany -o $DIR/$tdir/$i/f- $fcount &
10144         done
10145         wait
10146
10147         for (( i=0; i < $tcount; i++ )) ; do
10148                 unlinkmany $DIR/$tdir/$i/f- $fcount &
10149         done
10150         wait
10151
10152         rm -rf $DIR/$tdir
10153
10154         $LCTL set_param fail_loc=0
10155 }
10156 run_test 182 "Disable MDC RPCs semaphore wouldn't crash client ================"
10157
10158 test_183() { # LU-2275
10159         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.56) ]] &&
10160                 skip "Need MDS version at least 2.3.56" && return
10161
10162         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10163         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
10164         echo aaa > $DIR/$tdir/$tfile
10165
10166 #define OBD_FAIL_MDS_NEGATIVE_POSITIVE  0x148
10167         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x148
10168
10169         ls -l $DIR/$tdir && error "ls succeeded, should have failed"
10170         cat $DIR/$tdir/$tfile && error "cat succeeded, should have failed"
10171
10172         do_facet $SINGLEMDS $LCTL set_param fail_loc=0
10173
10174         # Flush negative dentry cache
10175         touch $DIR/$tdir/$tfile
10176
10177         # We are not checking for any leaked references here, they'll
10178         # become evident next time we do cleanup with module unload.
10179         rm -rf $DIR/$tdir
10180 }
10181 run_test 183 "No crash or request leak in case of strange dispositions ========"
10182
10183 # test suite 184 is for LU-2016, LU-2017
10184 test_184a() {
10185         check_swap_layouts_support && return 0
10186
10187         dir0=$DIR/$tdir/$testnum
10188         test_mkdir -p $dir0 || error "creating dir $dir0"
10189         ref1=/etc/passwd
10190         ref2=/etc/group
10191         file1=$dir0/f1
10192         file2=$dir0/f2
10193         $SETSTRIPE -c1 $file1
10194         cp $ref1 $file1
10195         $SETSTRIPE -c2 $file2
10196         cp $ref2 $file2
10197         gen1=$($GETSTRIPE -g $file1)
10198         gen2=$($GETSTRIPE -g $file2)
10199
10200         $LFS swap_layouts $file1 $file2 || error "swap of file layout failed"
10201         gen=$($GETSTRIPE -g $file1)
10202         [[ $gen1 != $gen ]] ||
10203                 "Layout generation on $file1 does not change"
10204         gen=$($GETSTRIPE -g $file2)
10205         [[ $gen2 != $gen ]] ||
10206                 "Layout generation on $file2 does not change"
10207
10208         cmp $ref1 $file2 || error "content compare failed ($ref1 != $file2)"
10209         cmp $ref2 $file1 || error "content compare failed ($ref2 != $file1)"
10210 }
10211 run_test 184a "Basic layout swap"
10212
10213 test_184b() {
10214         check_swap_layouts_support && return 0
10215
10216         dir0=$DIR/$tdir/$testnum
10217         mkdir -p $dir0 || error "creating dir $dir0"
10218         file1=$dir0/f1
10219         file2=$dir0/f2
10220         file3=$dir0/f3
10221         dir1=$dir0/d1
10222         dir2=$dir0/d2
10223         mkdir $dir1 $dir2
10224         $SETSTRIPE -c1 $file1
10225         $SETSTRIPE -c2 $file2
10226         $SETSTRIPE -c1 $file3
10227         chown $RUNAS_ID $file3
10228         gen1=$($GETSTRIPE -g $file1)
10229         gen2=$($GETSTRIPE -g $file2)
10230
10231         $LFS swap_layouts $dir1 $dir2 &&
10232                 error "swap of directories layouts should fail"
10233         $LFS swap_layouts $dir1 $file1 &&
10234                 error "swap of directory and file layouts should fail"
10235         $RUNAS $LFS swap_layouts $file1 $file2 &&
10236                 error "swap of file we cannot write should fail"
10237         $LFS swap_layouts $file1 $file3 &&
10238                 error "swap of file with different owner should fail"
10239         /bin/true # to clear error code
10240 }
10241 run_test 184b "Forbidden layout swap (will generate errors)"
10242
10243 test_184c() {
10244         check_swap_layouts_support && return 0
10245
10246         local dir0=$DIR/$tdir/$testnum
10247         mkdir -p $dir0 || error "creating dir $dir0"
10248
10249         local ref1=$dir0/ref1
10250         local ref2=$dir0/ref2
10251         local file1=$dir0/file1
10252         local file2=$dir0/file2
10253         # create a file large enough for the concurent test
10254         dd if=/dev/urandom of=$ref1 bs=1M count=$((RANDOM % 50 + 20))
10255         dd if=/dev/urandom of=$ref2 bs=1M count=$((RANDOM % 50 + 20))
10256         echo "ref file size: ref1(`stat -c %s $ref1`), ref2(`stat -c %s $ref2`)"
10257
10258         cp $ref2 $file2
10259         dd if=$ref1 of=$file1 bs=16k &
10260         local DD_PID=$!
10261
10262         # Make sure dd starts to copy file
10263         while [ ! -f $file1 ]; do sleep 0.1; done
10264
10265         $LFS swap_layouts $file1 $file2
10266         local rc=$?
10267         wait $DD_PID
10268         [[ $? == 0 ]] || error "concurrent write on $file1 failed"
10269         [[ $rc == 0 ]] || error "swap of $file1 and $file2 failed"
10270
10271         # how many bytes copied before swapping layout
10272         local copied=`stat -c %s $file2`
10273         local remaining=`stat -c %s $ref1`
10274         remaining=$((remaining - copied))
10275         echo "Copied $copied bytes before swapping layout..."
10276
10277         cmp -n $copied $file1 $ref2 | grep differ &&
10278                 error "Content mismatch [0, $copied) of ref2 and file1"
10279         cmp -n $copied $file2 $ref1 ||
10280                 error "Content mismatch [0, $copied) of ref1 and file2"
10281         cmp -i $copied:$copied -n $remaining $file1 $ref1 ||
10282                 error "Content mismatch [$copied, EOF) of ref1 and file1"
10283
10284         # clean up
10285         rm -f $ref1 $ref2 $file1 $file2
10286 }
10287 run_test 184c "Concurrent write and layout swap"
10288
10289 test_184d() {
10290         check_swap_layouts_support && return 0
10291
10292         local file1=$DIR/$tdir/$tfile-1
10293         local file2=$DIR/$tdir/$tfile-2
10294         local file3=$DIR/$tdir/$tfile-3
10295         local lovea1
10296         local lovea2
10297
10298         mkdir -p $DIR/$tdir
10299         touch $file1 || error "create $file1 failed"
10300         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file2 ||
10301                 error "create $file2 failed"
10302         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file3 ||
10303                 error "create $file3 failed"
10304         lovea1=$($LFS getstripe $file1 | sed 1d)
10305
10306         $LFS swap_layouts $file2 $file3 ||
10307                 error "swap $file2 $file3 layouts failed"
10308         $LFS swap_layouts $file1 $file2 ||
10309                 error "swap $file1 $file2 layouts failed"
10310
10311         lovea2=$($LFS getstripe $file2 | sed 1d)
10312         [ "$lovea1" == "$lovea2" ] || error "lovea $lovea1 != $lovea2"
10313
10314         lovea1=$(getfattr -n trusted.lov $file1 | grep ^trusted)
10315         [ -z $lovea1 ] || error "$file1 shouldn't have lovea"
10316 }
10317 run_test 184d "allow stripeless layouts swap"
10318
10319
10320 test_185() { # LU-2441
10321         # LU-3553 - no volatile file support in old servers
10322         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.60) ]] ||
10323                 { skip "Need MDS version at least 2.3.60"; return 0; }
10324
10325         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
10326         touch $DIR/$tdir/spoo
10327         local mtime1=$(stat -c "%Y" $DIR/$tdir)
10328         local fid=$($MULTIOP $DIR/$tdir VFw4096c) ||
10329                 error "cannot create/write a volatile file"
10330         $CHECKSTAT -t file $MOUNT/.lustre/fid/$fid 2>/dev/null &&
10331                 error "FID is still valid after close"
10332
10333         multiop_bg_pause $DIR/$tdir vVw4096_c
10334         local multi_pid=$!
10335
10336         local OLD_IFS=$IFS
10337         IFS=":"
10338         local fidv=($fid)
10339         IFS=$OLD_IFS
10340         # assume that the next FID for this client is sequential, since stdout
10341         # is unfortunately eaten by multiop_bg_pause
10342         local n=$((${fidv[1]} + 1))
10343         local next_fid="${fidv[0]}:$(printf "0x%x" $n):${fidv[2]}"
10344         $CHECKSTAT -t file $MOUNT/.lustre/fid/$next_fid ||
10345                 error "FID is missing before close"
10346         kill -USR1 $multi_pid
10347         # 1 second delay, so if mtime change we will see it
10348         sleep 1
10349         local mtime2=$(stat -c "%Y" $DIR/$tdir)
10350         [[ $mtime1 == $mtime2 ]] || error "mtime has changed"
10351 }
10352 run_test 185 "Volatile file support"
10353
10354 test_187a() {
10355         local dir0=$DIR/$tdir/$testnum
10356         mkdir -p $dir0 || error "creating dir $dir0"
10357
10358         local file=$dir0/file1
10359         dd if=/dev/urandom of=$file count=10 bs=1M conv=fsync
10360         local dv1=$($LFS data_version $file)
10361         dd if=/dev/urandom of=$file seek=10 count=1 bs=1M conv=fsync
10362         local dv2=$($LFS data_version $file)
10363         [[ $dv1 != $dv2 ]] ||
10364                 error "data version did not change on write $dv1 == $dv2"
10365
10366         # clean up
10367         rm -f $file1
10368 }
10369 run_test 187a "Test data version change"
10370
10371 test_187b() {
10372         local dir0=$DIR/$tdir/$testnum
10373         mkdir -p $dir0 || error "creating dir $dir0"
10374
10375         declare -a DV=$($MULTIOP $dir0 Vw1000xYw1000xY | cut -f3 -d" ")
10376         [[ ${DV[0]} != ${DV[1]} ]] ||
10377                 error "data version did not change on write"\
10378                       " ${DV[0]} == ${DV[1]}"
10379
10380         # clean up
10381         rm -f $file1
10382 }
10383 run_test 187b "Test data version change on volatile file"
10384
10385 # OST pools tests
10386 check_file_in_pool()
10387 {
10388         local file=$1
10389         local pool=$2
10390         local tlist="$3"
10391         local res=$($GETSTRIPE $file | grep 0x | cut -f2)
10392         for i in $res
10393         do
10394                 for t in $tlist ; do
10395                         [ "$i" -eq "$t" ] && continue 2
10396                 done
10397
10398                 echo "pool list: $tlist"
10399                 echo "striping: $res"
10400                 error_noexit "$file not allocated in $pool"
10401                 return 1
10402         done
10403         return 0
10404 }
10405
10406 pool_add() {
10407         echo "Creating new pool"
10408         local pool=$1
10409
10410         create_pool $FSNAME.$pool ||
10411                 { error_noexit "No pool created, result code $?"; return 1; }
10412         [ $($LFS pool_list $FSNAME | grep -c $pool) -eq 1 ] ||
10413                 { error_noexit "$pool not in lfs pool_list"; return 2; }
10414 }
10415
10416 pool_add_targets() {
10417         echo "Adding targets to pool"
10418         local pool=$1
10419         local first=$2
10420         local last=$3
10421         local step=${4:-1}
10422
10423         local list=$(seq $first $step $last)
10424
10425         local t=$(for i in $list; do printf "$FSNAME-OST%04x_UUID " $i; done)
10426         do_facet mgs $LCTL pool_add \
10427                         $FSNAME.$pool $FSNAME-OST[$first-$last/$step]
10428         wait_update $HOSTNAME "lctl get_param -n lov.$FSNAME-*.pools.$pool \
10429                         | sort -u | tr '\n' ' ' " "$t" || { 
10430                 error_noexit "Add to pool failed"
10431                 return 1
10432         }
10433         local lfscount=$($LFS pool_list $FSNAME.$pool | grep -c "\-OST")
10434         local addcount=$(((last - first) / step + 1))
10435         [ $lfscount -eq $addcount ] || {
10436                 error_noexit "lfs pool_list bad ost count" \
10437                                                 "$lfscount != $addcount"
10438                 return 2
10439         }
10440 }
10441
10442 pool_set_dir() {
10443         local pool=$1
10444         local tdir=$2
10445         echo "Setting pool on directory $tdir"
10446
10447         $SETSTRIPE -c 2 -p $pool $tdir && return 0
10448
10449         error_noexit "Cannot set pool $pool to $tdir"
10450         return 1
10451 }
10452
10453 pool_check_dir() {
10454         local pool=$1
10455         local tdir=$2
10456         echo "Checking pool on directory $tdir"
10457
10458         local res=$($GETSTRIPE --pool $tdir | sed "s/\s*$//")
10459         [ "$res" = "$pool" ] && return 0
10460
10461         error_noexit "Pool on '$tdir' is '$res', not '$pool'"
10462         return 1
10463 }
10464
10465 pool_dir_rel_path() {
10466         echo "Testing relative path works well"
10467         local pool=$1
10468         local tdir=$2
10469         local root=$3
10470
10471         mkdir -p $root/$tdir/$tdir
10472         cd $root/$tdir
10473         pool_set_dir $pool $tdir          || return 1
10474         pool_set_dir $pool ./$tdir        || return 2
10475         pool_set_dir $pool ../$tdir       || return 3
10476         pool_set_dir $pool ../$tdir/$tdir || return 4
10477         rm -rf $tdir; cd - > /dev/null
10478 }
10479
10480 pool_alloc_files() {
10481         echo "Checking files allocation from directory pool"
10482         local pool=$1
10483         local tdir=$2
10484         local count=$3
10485         local tlist="$4"
10486
10487         local failed=0
10488         for i in $(seq -w 1 $count)
10489         do
10490                 local file=$tdir/file-$i
10491                 touch $file
10492                 check_file_in_pool $file $pool "$tlist" || \
10493                         failed=$((failed + 1))
10494         done
10495         [ "$failed" = 0 ] && return 0
10496
10497         error_noexit "$failed files not allocated in $pool"
10498         return 1
10499 }
10500
10501 pool_create_files() {
10502         echo "Creating files in pool"
10503         local pool=$1
10504         local tdir=$2
10505         local count=$3
10506         local tlist="$4"
10507
10508         mkdir -p $tdir
10509         local failed=0
10510         for i in $(seq -w 1 $count)
10511         do
10512                 local file=$tdir/spoo-$i
10513                 $SETSTRIPE -p $pool $file
10514                 check_file_in_pool $file $pool "$tlist" || \
10515                         failed=$((failed + 1))
10516         done
10517         [ "$failed" = 0 ] && return 0
10518
10519         error_noexit "$failed files not allocated in $pool"
10520         return 1
10521 }
10522
10523 pool_lfs_df() {
10524         echo "Checking 'lfs df' output"
10525         local pool=$1
10526
10527         local t=$($LCTL get_param -n lov.$FSNAME-clilov-*.pools.$pool |
10528                         tr '\n' ' ')
10529         local res=$($LFS df --pool $FSNAME.$pool |
10530                         awk '{print $1}' |
10531                         grep "$FSNAME-OST" |
10532                         tr '\n' ' ')
10533         [ "$res" = "$t" ] && return 0
10534
10535         error_noexit "Pools OSTs '$t' is not '$res' that lfs df reports"
10536         return 1
10537 }
10538
10539 pool_file_rel_path() {
10540         echo "Creating files in a pool with relative pathname"
10541         local pool=$1
10542         local tdir=$2
10543
10544         mkdir -p $tdir ||
10545                 { error_noexit "unable to create $tdir"; return 1 ; }
10546         local file="/..$tdir/$tfile-1"
10547         $SETSTRIPE -p $pool $file ||
10548                 { error_noexit "unable to create $file" ; return 2 ; }
10549
10550         cd $tdir
10551         $SETSTRIPE -p $pool $tfile-2 || {
10552                 error_noexit "unable to create $tfile-2 in $tdir"
10553                 return 3
10554         }
10555 }
10556
10557 pool_remove_first_target() {
10558         echo "Removing first target from a pool"
10559         local pool=$1
10560
10561         local pname="lov.$FSNAME-*.pools.$pool"
10562         local t=$($LCTL get_param -n $pname | head -1)
10563         do_facet mgs $LCTL pool_remove $FSNAME.$pool $t
10564         wait_update $HOSTNAME "lctl get_param -n $pname | grep $t" "" || {
10565                 error_noexit "$t not removed from $FSNAME.$pool"
10566                 return 1
10567         }
10568 }
10569
10570 pool_remove_all_targets() {
10571         echo "Removing all targets from pool"
10572         local pool=$1
10573         local file=$2
10574         local pname="lov.$FSNAME-*.pools.$pool"
10575         for t in $($LCTL get_param -n $pname | sort -u)
10576         do
10577                 do_facet mgs $LCTL pool_remove $FSNAME.$pool $t
10578         done
10579         wait_update $HOSTNAME "lctl get_param -n $pname" "" || {
10580                 error_noexit "Pool $FSNAME.$pool cannot be drained"
10581                 return 1
10582         }
10583         # striping on an empty/nonexistant pool should fall back 
10584         # to "pool of everything"
10585         touch $file || {
10586                 error_noexit "failed to use fallback striping for empty pool"
10587                 return 2
10588         }
10589         # setstripe on an empty pool should fail
10590         $SETSTRIPE -p $pool $file 2>/dev/null && {
10591                 error_noexit "expected failure when creating file" \
10592                                                         "with empty pool"
10593                 return 3
10594         }
10595         return 0
10596 }
10597
10598 pool_remove() {
10599         echo "Destroying pool"
10600         local pool=$1
10601         local file=$2
10602
10603         do_facet mgs $LCTL pool_destroy $FSNAME.$pool
10604
10605         sleep 2
10606         # striping on an empty/nonexistant pool should fall back 
10607         # to "pool of everything"
10608         touch $file || {
10609                 error_noexit "failed to use fallback striping for missing pool"
10610                 return 1
10611         }
10612         # setstripe on an empty pool should fail
10613         $SETSTRIPE -p $pool $file 2>/dev/null && {
10614                 error_noexit "expected failure when creating file" \
10615                                                         "with missing pool"
10616                 return 2
10617         }
10618
10619         # get param should return err once pool is gone
10620         if wait_update $HOSTNAME "lctl get_param -n \
10621                 lov.$FSNAME-*.pools.$pool 2>/dev/null || echo foo" "foo"
10622         then
10623                 remove_pool_from_list $FSNAME.$pool
10624                 return 0
10625         fi
10626         error_noexit "Pool $FSNAME.$pool is not destroyed"
10627         return 3
10628 }
10629
10630 test_200() {
10631         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10632         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
10633
10634         local POOL=${POOL:-cea1}
10635         local POOL_ROOT=${POOL_ROOT:-$DIR/d200.pools}
10636         local POOL_DIR_NAME=${POOL_DIR_NAME:-dir_tst}
10637         # Pool OST targets
10638         local first_ost=0
10639         local last_ost=$(($OSTCOUNT - 1))
10640         local ost_step=2
10641         local ost_list=$(seq $first_ost $ost_step $last_ost)
10642         local ost_range="$first_ost $last_ost $ost_step"
10643         local test_path=$POOL_ROOT/$POOL_DIR_NAME
10644         local file_dir=$POOL_ROOT/file_tst
10645
10646         local rc=0
10647         while : ; do
10648                 # former test_200a test_200b
10649                 pool_add $POOL                          || { rc=$? ; break; }
10650                 pool_add_targets  $POOL $ost_range      || { rc=$? ; break; }
10651                 # former test_200c test_200d
10652                 mkdir -p $test_path
10653                 pool_set_dir      $POOL $test_path      || { rc=$? ; break; }
10654                 pool_check_dir    $POOL $test_path      || { rc=$? ; break; }
10655                 pool_dir_rel_path $POOL $POOL_DIR_NAME $POOL_ROOT \
10656                                                         || { rc=$? ; break; }
10657                 # former test_200e test_200f
10658                 local files=$((OSTCOUNT*3))
10659                 pool_alloc_files  $POOL $test_path $files "$ost_list" \
10660                                                         || { rc=$? ; break; }
10661                 pool_create_files $POOL $file_dir $files "$ost_list" \
10662                                                         || { rc=$? ; break; }
10663                 # former test_200g test_200h
10664                 pool_lfs_df $POOL                       || { rc=$? ; break; }
10665                 pool_file_rel_path $POOL $test_path     || { rc=$? ; break; }
10666
10667                 # former test_201a test_201b test_201c
10668                 pool_remove_first_target $POOL          || { rc=$? ; break; }
10669
10670                 local f=$test_path/$tfile
10671                 pool_remove_all_targets $POOL $f        || { rc=$? ; break; }
10672                 pool_remove $POOL $f                    || { rc=$? ; break; }
10673                 break
10674         done
10675
10676         cleanup_pools
10677         return $rc
10678 }
10679 run_test 200 "OST pools"
10680
10681 # usage: default_attr <count | size | offset>
10682 default_attr() {
10683         $LCTL get_param -n lov.$FSNAME-clilov-\*.stripe${1}
10684 }
10685
10686 # usage: check_default_stripe_attr
10687 check_default_stripe_attr() {
10688         ACTUAL=$($GETSTRIPE $* $DIR/$tdir)
10689         case $1 in
10690         --stripe-count|--count)
10691                 [ -n "$2" ] && EXPECTED=0 || EXPECTED=$(default_attr count);;
10692         --stripe-size|--size)
10693                 [ -n "$2" ] && EXPECTED=0 || EXPECTED=$(default_attr size);;
10694         --stripe-index|--index)
10695                 EXPECTED=-1;;
10696         *)
10697                 error "unknown getstripe attr '$1'"
10698         esac
10699
10700         [ $ACTUAL != $EXPECTED ] &&
10701                 error "$DIR/$tdir has $1 '$ACTUAL', not '$EXPECTED'"
10702 }
10703
10704 test_204a() {
10705         test_mkdir -p $DIR/$tdir
10706         $SETSTRIPE --stripe-count 0 --stripe-size 0 --stripe-index -1 $DIR/$tdir
10707
10708         check_default_stripe_attr --stripe-count
10709         check_default_stripe_attr --stripe-size
10710         check_default_stripe_attr --stripe-index
10711
10712         return 0
10713 }
10714 run_test 204a "Print default stripe attributes ================="
10715
10716 test_204b() {
10717         test_mkdir -p $DIR/$tdir
10718         $SETSTRIPE --stripe-count 1 $DIR/$tdir
10719
10720         check_default_stripe_attr --stripe-size
10721         check_default_stripe_attr --stripe-index
10722
10723         return 0
10724 }
10725 run_test 204b "Print default stripe size and offset  ==========="
10726
10727 test_204c() {
10728         test_mkdir -p $DIR/$tdir
10729         $SETSTRIPE --stripe-size 65536 $DIR/$tdir
10730
10731         check_default_stripe_attr --stripe-count
10732         check_default_stripe_attr --stripe-index
10733
10734         return 0
10735 }
10736 run_test 204c "Print default stripe count and offset ==========="
10737
10738 test_204d() {
10739         test_mkdir -p $DIR/$tdir
10740         $SETSTRIPE --stripe-index 0 $DIR/$tdir
10741
10742         check_default_stripe_attr --stripe-count
10743         check_default_stripe_attr --stripe-size
10744
10745         return 0
10746 }
10747 run_test 204d "Print default stripe count and size ============="
10748
10749 test_204e() {
10750         test_mkdir -p $DIR/$tdir
10751         $SETSTRIPE -d $DIR/$tdir
10752
10753         check_default_stripe_attr --stripe-count --raw
10754         check_default_stripe_attr --stripe-size --raw
10755         check_default_stripe_attr --stripe-index --raw
10756
10757         return 0
10758 }
10759 run_test 204e "Print raw stripe attributes ================="
10760
10761 test_204f() {
10762         test_mkdir -p $DIR/$tdir
10763         $SETSTRIPE --stripe-count 1 $DIR/$tdir
10764
10765         check_default_stripe_attr --stripe-size --raw
10766         check_default_stripe_attr --stripe-index --raw
10767
10768         return 0
10769 }
10770 run_test 204f "Print raw stripe size and offset  ==========="
10771
10772 test_204g() {
10773         test_mkdir -p $DIR/$tdir
10774         $SETSTRIPE --stripe-size 65536 $DIR/$tdir
10775
10776         check_default_stripe_attr --stripe-count --raw
10777         check_default_stripe_attr --stripe-index --raw
10778
10779         return 0
10780 }
10781 run_test 204g "Print raw stripe count and offset ==========="
10782
10783 test_204h() {
10784         test_mkdir -p $DIR/$tdir
10785         $SETSTRIPE --stripe-index 0 $DIR/$tdir
10786
10787         check_default_stripe_attr --stripe-count --raw
10788         check_default_stripe_attr --stripe-size --raw
10789
10790         return 0
10791 }
10792 run_test 204h "Print raw stripe count and size ============="
10793
10794 # Figure out which job scheduler is being used, if any,
10795 # or use a fake one
10796 if [ -n "$SLURM_JOB_ID" ]; then # SLURM
10797         JOBENV=SLURM_JOB_ID
10798 elif [ -n "$LSB_JOBID" ]; then # Load Sharing Facility
10799         JOBENV=LSB_JOBID
10800 elif [ -n "$PBS_JOBID" ]; then # PBS/Maui/Moab
10801         JOBENV=PBS_JOBID
10802 elif [ -n "$LOADL_STEPID" ]; then # LoadLeveller
10803         JOBENV=LOADL_STEP_ID
10804 elif [ -n "$JOB_ID" ]; then # Sun Grid Engine
10805         JOBENV=JOB_ID
10806 else
10807         JOBENV=FAKE_JOBID
10808 fi
10809
10810 verify_jobstats() {
10811         local cmd=$1
10812         local target=$2
10813
10814         # clear old jobstats
10815         do_facet $SINGLEMDS lctl set_param mdt.*.job_stats="clear"
10816         do_facet ost1 lctl set_param obdfilter.*.job_stats="clear"
10817
10818         # use a new JobID for this test, or we might see an old one
10819         [ "$JOBENV" = "FAKE_JOBID" ] && FAKE_JOBID=test_id.$testnum.$RANDOM
10820
10821         JOBVAL=${!JOBENV}
10822         log "Test: $cmd"
10823         log "Using JobID environment variable $JOBENV=$JOBVAL"
10824
10825         if [ $JOBENV = "FAKE_JOBID" ]; then
10826                 FAKE_JOBID=$JOBVAL $cmd
10827         else
10828                 $cmd
10829         fi
10830
10831         if [ "$target" = "mdt" -o "$target" = "both" ]; then
10832                 FACET="$SINGLEMDS" # will need to get MDS number for DNE
10833                 do_facet $FACET lctl get_param mdt.*.job_stats |
10834                         grep $JOBVAL || error "No job stats found on MDT $FACET"
10835         fi
10836         if [ "$target" = "ost" -o "$target" = "both" ]; then
10837                 FACET=ost1
10838                 do_facet $FACET lctl get_param obdfilter.*.job_stats |
10839                         grep $JOBVAL || error "No job stats found on OST $FACET"
10840         fi
10841 }
10842
10843 jobstats_set() {
10844         trap 0
10845         NEW_JOBENV=${1:-$OLD_JOBENV}
10846         do_facet mgs $LCTL conf_param $FSNAME.sys.jobid_var=$NEW_JOBENV
10847         wait_update $HOSTNAME "$LCTL get_param -n jobid_var" $NEW_JOBENV
10848 }
10849
10850 test_205() { # Job stats
10851         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10852         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep jobstats)" ] &&
10853                 skip "Server doesn't support jobstats" && return 0
10854
10855         local cmd
10856         OLD_JOBENV=`$LCTL get_param -n jobid_var`
10857         if [ $OLD_JOBENV != $JOBENV ]; then
10858                 jobstats_set $JOBENV
10859                 trap jobstats_set EXIT
10860         fi
10861
10862         # mkdir
10863         cmd="mkdir $DIR/$tfile"
10864         verify_jobstats "$cmd" "mdt"
10865         # rmdir
10866         cmd="rm -fr $DIR/$tfile"
10867         verify_jobstats "$cmd" "mdt"
10868         # mknod
10869         cmd="mknod $DIR/$tfile c 1 3"
10870         verify_jobstats "$cmd" "mdt"
10871         # unlink
10872         cmd="rm -f $DIR/$tfile"
10873         verify_jobstats "$cmd" "mdt"
10874         # open & close
10875         cmd="$SETSTRIPE -i 0 -c 1 $DIR/$tfile"
10876         verify_jobstats "$cmd" "mdt"
10877         # setattr
10878         cmd="touch $DIR/$tfile"
10879         verify_jobstats "$cmd" "both"
10880         # write
10881         cmd="dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 oflag=sync"
10882         verify_jobstats "$cmd" "ost"
10883         # read
10884         cmd="dd if=$DIR/$tfile of=/dev/null bs=1M count=1 iflag=direct"
10885         verify_jobstats "$cmd" "ost"
10886         # truncate
10887         cmd="$TRUNCATE $DIR/$tfile 0"
10888         verify_jobstats "$cmd" "both"
10889         # rename
10890         cmd="mv -f $DIR/$tfile $DIR/jobstats_test_rename"
10891         verify_jobstats "$cmd" "mdt"
10892
10893         # cleanup
10894         rm -f $DIR/jobstats_test_rename
10895
10896         [ $OLD_JOBENV != $JOBENV ] && jobstats_set $OLD_JOBENV
10897 }
10898 run_test 205 "Verify job stats"
10899
10900 # LU-1480, LU-1773 and LU-1657
10901 test_206() {
10902         mkdir -p $DIR/$tdir
10903         lfs setstripe -c -1 $DIR/$tdir
10904 #define OBD_FAIL_LOV_INIT 0x1403
10905         $LCTL set_param fail_loc=0xa0001403
10906         $LCTL set_param fail_val=1
10907         touch $DIR/$tdir/$tfile || true
10908 }
10909 run_test 206 "fail lov_init_raid0() doesn't lbug"
10910
10911 test_207a() {
10912         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((RANDOM%10+1))
10913         local fsz=`stat -c %s $DIR/$tfile`
10914         cancel_lru_locks mdc
10915
10916         # do not return layout in getattr intent
10917 #define OBD_FAIL_MDS_NO_LL_GETATTR 0x170
10918         $LCTL set_param fail_loc=0x170
10919         local sz=`stat -c %s $DIR/$tfile`
10920
10921         [ $fsz -eq $sz ] || error "file size expected $fsz, actual $sz"
10922
10923         rm -rf $DIR/$tfile
10924 }
10925 run_test 207a "can refresh layout at glimpse"
10926
10927 test_207b() {
10928         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((RANDOM%10+1))
10929         local cksum=`md5sum $DIR/$tfile`
10930         local fsz=`stat -c %s $DIR/$tfile`
10931         cancel_lru_locks mdc
10932         cancel_lru_locks osc
10933
10934         # do not return layout in getattr intent
10935 #define OBD_FAIL_MDS_NO_LL_OPEN 0x171
10936         $LCTL set_param fail_loc=0x171
10937
10938         # it will refresh layout after the file is opened but before read issues
10939         echo checksum is "$cksum"
10940         echo "$cksum" |md5sum -c --quiet || error "file differs"
10941
10942         rm -rf $DIR/$tfile
10943 }
10944 run_test 207b "can refresh layout at open"
10945
10946 test_208() {
10947         # FIXME: in this test suite, only RD lease is used. This is okay
10948         # for now as only exclusive open is supported. After generic lease
10949         # is done, this test suite should be revised. - Jinshan
10950
10951         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.4.52) ]] ||
10952                 { skip "Need MDS version at least 2.4.52"; return 0; }
10953
10954         echo "==== test 1: verify get lease work"
10955         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:eRE+eU || error "get lease error"
10956
10957         echo "==== test 2: verify lease can be broken by upcoming open"
10958         $MULTIOP $DIR/$tfile oO_RDONLY:eR_E-eUc &
10959         local PID=$!
10960         sleep 1
10961
10962         $MULTIOP $DIR/$tfile oO_RDONLY:c
10963         kill -USR1 $PID && wait $PID || error "break lease error"
10964
10965         echo "==== test 3: verify lease can't be granted if an open already exists"
10966         $MULTIOP $DIR/$tfile oO_RDONLY:_c &
10967         local PID=$!
10968         sleep 1
10969
10970         $MULTIOP $DIR/$tfile oO_RDONLY:eReUc && error "apply lease should fail"
10971         kill -USR1 $PID && wait $PID || error "open file error"
10972
10973         echo "==== test 4: lease can sustain over recovery"
10974         $MULTIOP $DIR/$tfile oO_RDONLY:eR_E+eUc &
10975         PID=$!
10976         sleep 1
10977
10978         fail mds1
10979
10980         kill -USR1 $PID && wait $PID || error "lease broken over recovery"
10981
10982         echo "==== test 5: lease broken can't be regained by replay"
10983         $MULTIOP $DIR/$tfile oO_RDONLY:eR_E-eUc &
10984         PID=$!
10985         sleep 1
10986
10987         # open file to break lease and then recovery
10988         $MULTIOP $DIR/$tfile oO_RDWR:c || error "open file error"
10989         fail mds1
10990
10991         kill -USR1 $PID && wait $PID || error "lease not broken over recovery"
10992
10993         rm -f $DIR/$tfile
10994 }
10995 run_test 208 "Exclusive open"
10996
10997 test_209() {
10998         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep disp_stripe)" ] &&
10999                 skip_env "must have disp_stripe" && return
11000
11001         touch $DIR/$tfile
11002         sync; sleep 5; sync;
11003
11004         echo 3 > /proc/sys/vm/drop_caches
11005         req_before=$(awk '/ptlrpc_cache / { print $2 }' /proc/slabinfo)
11006
11007         # open/close 500 times
11008         for i in $(seq 500); do
11009                 cat $DIR/$tfile
11010         done
11011
11012         echo 3 > /proc/sys/vm/drop_caches
11013         req_after=$(awk '/ptlrpc_cache / { print $2 }' /proc/slabinfo)
11014
11015         echo "before: $req_before, after: $req_after"
11016         [ $((req_after - req_before)) -ge 300 ] &&
11017                 error "open/close requests are not freed"
11018         return 0
11019 }
11020 run_test 209 "read-only open/close requests should be freed promptly"
11021
11022 test_212() {
11023         size=`date +%s`
11024         size=$((size % 8192 + 1))
11025         dd if=/dev/urandom of=$DIR/f212 bs=1k count=$size
11026         sendfile $DIR/f212 $DIR/f212.xyz || error "sendfile wrong"
11027         rm -f $DIR/f212 $DIR/f212.xyz
11028 }
11029 run_test 212 "Sendfile test ============================================"
11030
11031 test_213() {
11032         dd if=/dev/zero of=$DIR/$tfile bs=4k count=4
11033         cancel_lru_locks osc
11034         lctl set_param fail_loc=0x8000040f
11035         # generate a read lock
11036         cat $DIR/$tfile > /dev/null
11037         # write to the file, it will try to cancel the above read lock.
11038         cat /etc/hosts >> $DIR/$tfile
11039 }
11040 run_test 213 "OSC lock completion and cancel race don't crash - bug 18829"
11041
11042 test_214() { # for bug 20133
11043         mkdir -p $DIR/$tdir/d214c || error "mkdir $DIR/$tdir/d214c failed"
11044         for (( i=0; i < 340; i++ )) ; do
11045                 touch $DIR/$tdir/d214c/a$i
11046         done
11047
11048         ls -l $DIR/$tdir || error "ls -l $DIR/d214p failed"
11049         mv $DIR/$tdir/d214c $DIR/ || error "mv $DIR/d214p/d214c $DIR/ failed"
11050         ls $DIR/d214c || error "ls $DIR/d214c failed"
11051         rm -rf $DIR/$tdir || error "rm -rf $DIR/d214* failed"
11052         rm -rf $DIR/d214* || error "rm -rf $DIR/d214* failed"
11053 }
11054 run_test 214 "hash-indexed directory test - bug 20133"
11055
11056 # having "abc" as 1st arg, creates $TMP/lnet_abc.out and $TMP/lnet_abc.sys
11057 create_lnet_proc_files() {
11058         cat /proc/sys/lnet/$1 >$TMP/lnet_$1.out || error "cannot read /proc/sys/lnet/$1"
11059         sysctl lnet.$1 >$TMP/lnet_$1.sys_tmp || error "cannot read lnet.$1"
11060
11061         sed "s/^lnet.$1\ =\ //g" "$TMP/lnet_$1.sys_tmp" >$TMP/lnet_$1.sys
11062         rm -f "$TMP/lnet_$1.sys_tmp"
11063 }
11064
11065 # counterpart of create_lnet_proc_files
11066 remove_lnet_proc_files() {
11067         rm -f $TMP/lnet_$1.out $TMP/lnet_$1.sys
11068 }
11069
11070 # uses 1st arg as trailing part of filename, 2nd arg as description for reports,
11071 # 3rd arg as regexp for body
11072 check_lnet_proc_stats() {
11073         local l=$(cat "$TMP/lnet_$1" |wc -l)
11074         [ $l = 1 ] || (cat "$TMP/lnet_$1" && error "$2 is not of 1 line: $l")
11075
11076         grep -E "$3" "$TMP/lnet_$1" || (cat "$TMP/lnet_$1" && error "$2 misformatted")
11077 }
11078
11079 # uses 1st arg as trailing part of filename, 2nd arg as description for reports,
11080 # 3rd arg as regexp for body, 4th arg as regexp for 1st line, 5th arg is
11081 # optional and can be regexp for 2nd line (lnet.routes case)
11082 check_lnet_proc_entry() {
11083         local blp=2            # blp stands for 'position of 1st line of body'
11084         [ "$5" = "" ] || blp=3 # lnet.routes case
11085
11086         local l=$(cat "$TMP/lnet_$1" |wc -l)
11087         # subtracting one from $blp because the body can be empty
11088         [ "$l" -ge "$(($blp - 1))" ] || (cat "$TMP/lnet_$1" && error "$2 is too short: $l")
11089
11090         sed -n '1 p' "$TMP/lnet_$1" |grep -E "$4" >/dev/null ||
11091                 (cat "$TMP/lnet_$1" && error "1st line of $2 misformatted")
11092
11093         [ "$5" = "" ] || sed -n '2 p' "$TMP/lnet_$1" |grep -E "$5" >/dev/null ||
11094                 (cat "$TMP/lnet_$1" && error "2nd line of $2 misformatted")
11095
11096         # bail out if any unexpected line happened
11097         sed -n "$blp~1 p" "$TMP/lnet_$1" |grep -Ev "$3"
11098         [ "$?" != 0 ] || error "$2 misformatted"
11099 }
11100
11101 test_215() { # for bugs 18102, 21079, 21517
11102         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11103         local N='(0|[1-9][0-9]*)'       # non-negative numeric
11104         local P='[1-9][0-9]*'           # positive numeric
11105         local I='(0|-?[1-9][0-9]*|NA)'  # any numeric (0 | >0 | <0) or NA if no value
11106         local NET='[a-z][a-z0-9]*'      # LNET net like o2ib2
11107         local ADDR='[0-9.]+'            # LNET addr like 10.0.0.1
11108         local NID="$ADDR@$NET"          # LNET nid like 10.0.0.1@o2ib2
11109
11110         local L1 # regexp for 1st line
11111         local L2 # regexp for 2nd line (optional)
11112         local BR # regexp for the rest (body)
11113
11114         # /proc/sys/lnet/stats should look as 11 space-separated non-negative numerics
11115         BR="^$N $N $N $N $N $N $N $N $N $N $N$"
11116         create_lnet_proc_files "stats"
11117         check_lnet_proc_stats "stats.out" "/proc/sys/lnet/stats" "$BR"
11118         check_lnet_proc_stats "stats.sys" "lnet.stats" "$BR"
11119         remove_lnet_proc_files "stats"
11120
11121         # /proc/sys/lnet/routes should look like this:
11122         # Routing disabled/enabled
11123         # net hops priority state router
11124         # where net is a string like tcp0, hops > 0, priority >= 0,
11125         # state is up/down,
11126         # router is a string like 192.168.1.1@tcp2
11127         L1="^Routing (disabled|enabled)$"
11128         L2="^net +hops +priority +state +router$"
11129         BR="^$NET +$N +(0|1) +(up|down) +$NID$"
11130         create_lnet_proc_files "routes"
11131         check_lnet_proc_entry "routes.out" "/proc/sys/lnet/routes" "$BR" "$L1" "$L2"
11132         check_lnet_proc_entry "routes.sys" "lnet.routes" "$BR" "$L1" "$L2"
11133         remove_lnet_proc_files "routes"
11134
11135         # /proc/sys/lnet/routers should look like this:
11136         # ref rtr_ref alive_cnt state last_ping ping_sent deadline down_ni router
11137         # where ref > 0, rtr_ref > 0, alive_cnt >= 0, state is up/down,
11138         # last_ping >= 0, ping_sent is boolean (0/1), deadline and down_ni are
11139         # numeric (0 or >0 or <0), router is a string like 192.168.1.1@tcp2
11140         L1="^ref +rtr_ref +alive_cnt +state +last_ping +ping_sent +deadline +down_ni +router$"
11141         BR="^$P +$P +$N +(up|down) +$N +(0|1) +$I +$I +$NID$"
11142         create_lnet_proc_files "routers"
11143         check_lnet_proc_entry "routers.out" "/proc/sys/lnet/routers" "$BR" "$L1"
11144         check_lnet_proc_entry "routers.sys" "lnet.routers" "$BR" "$L1"
11145         remove_lnet_proc_files "routers"
11146
11147         # /proc/sys/lnet/peers should look like this:
11148         # nid refs state last max rtr min tx min queue
11149         # where nid is a string like 192.168.1.1@tcp2, refs > 0,
11150         # state is up/down/NA, max >= 0. last, rtr, min, tx, min are
11151         # numeric (0 or >0 or <0), queue >= 0.
11152         L1="^nid +refs +state +last +max +rtr +min +tx +min +queue$"
11153         BR="^$NID +$P +(up|down|NA) +$I +$N +$I +$I +$I +$I +$N$"
11154         create_lnet_proc_files "peers"
11155         check_lnet_proc_entry "peers.out" "/proc/sys/lnet/peers" "$BR" "$L1"
11156         check_lnet_proc_entry "peers.sys" "lnet.peers" "$BR" "$L1"
11157         remove_lnet_proc_files "peers"
11158
11159         # /proc/sys/lnet/buffers  should look like this:
11160         # pages count credits min
11161         # where pages >=0, count >=0, credits and min are numeric (0 or >0 or <0)
11162         L1="^pages +count +credits +min$"
11163         BR="^ +$N +$N +$I +$I$"
11164         create_lnet_proc_files "buffers"
11165         check_lnet_proc_entry "buffers.out" "/proc/sys/lnet/buffers" "$BR" "$L1"
11166         check_lnet_proc_entry "buffers.sys" "lnet.buffers" "$BR" "$L1"
11167         remove_lnet_proc_files "buffers"
11168
11169         # /proc/sys/lnet/nis should look like this:
11170         # nid status alive refs peer rtr max tx min
11171         # where nid is a string like 192.168.1.1@tcp2, status is up/down,
11172         # alive is numeric (0 or >0 or <0), refs >= 0, peer >= 0,
11173         # rtr >= 0, max >=0, tx and min are numeric (0 or >0 or <0).
11174         L1="^nid +status +alive +refs +peer +rtr +max +tx +min$"
11175         BR="^$NID +(up|down) +$I +$N +$N +$N +$N +$I +$I$"
11176         create_lnet_proc_files "nis"
11177         check_lnet_proc_entry "nis.out" "/proc/sys/lnet/nis" "$BR" "$L1"
11178         check_lnet_proc_entry "nis.sys" "lnet.nis" "$BR" "$L1"
11179         remove_lnet_proc_files "nis"
11180
11181         # can we successfully write to /proc/sys/lnet/stats?
11182         echo "0" >/proc/sys/lnet/stats || error "cannot write to /proc/sys/lnet/stats"
11183         sysctl -w lnet.stats=0 || error "cannot write to lnet.stats"
11184 }
11185 run_test 215 "/proc/sys/lnet exists and has proper content - bugs 18102, 21079, 21517"
11186
11187 test_216() { # bug 20317
11188         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11189         remote_ost_nodsh && skip "remote OST with nodsh" && return
11190
11191         local node
11192         local facets=$(get_facets OST)
11193         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
11194
11195         save_lustre_params client "osc.*.contention_seconds" > $p
11196         save_lustre_params $facets \
11197                 "ldlm.namespaces.filter-*.max_nolock_bytes" >> $p
11198         save_lustre_params $facets \
11199                 "ldlm.namespaces.filter-*.contended_locks" >> $p
11200         save_lustre_params $facets \
11201                 "ldlm.namespaces.filter-*.contention_seconds" >> $p
11202         clear_osc_stats
11203
11204         # agressive lockless i/o settings
11205         for node in $(osts_nodes); do
11206                 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'
11207         done
11208         lctl set_param -n osc.*.contention_seconds 60
11209
11210         $DIRECTIO write $DIR/$tfile 0 10 4096
11211         $CHECKSTAT -s 40960 $DIR/$tfile
11212
11213         # disable lockless i/o
11214         for node in $(osts_nodes); do
11215                 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'
11216         done
11217         lctl set_param -n osc.*.contention_seconds 0
11218         clear_osc_stats
11219
11220         dd if=/dev/zero of=$DIR/$tfile count=0
11221         $CHECKSTAT -s 0 $DIR/$tfile
11222
11223         restore_lustre_params <$p
11224         rm -f $p
11225         rm $DIR/$tfile
11226 }
11227 run_test 216 "check lockless direct write works and updates file size and kms correctly"
11228
11229 test_217() { # bug 22430
11230         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11231         local node
11232         local nid
11233
11234         for node in $(nodes_list); do
11235                 nid=$(host_nids_address $node $NETTYPE)
11236                 if [[ $nid = *-* ]] ; then
11237                         echo "lctl ping $nid@$NETTYPE"
11238                         lctl ping $nid@$NETTYPE
11239                 else
11240                         echo "skipping $node (no hyphen detected)"
11241                 fi
11242         done
11243 }
11244 run_test 217 "check lctl ping for hostnames with hiphen ('-')"
11245
11246 test_218() {
11247        # do directio so as not to populate the page cache
11248        log "creating a 10 Mb file"
11249        $MULTIOP $DIR/$tfile oO_CREAT:O_DIRECT:O_RDWR:w$((10*1048576))c || error "multiop failed while creating a file"
11250        log "starting reads"
11251        dd if=$DIR/$tfile of=/dev/null bs=4096 &
11252        log "truncating the file"
11253        $MULTIOP $DIR/$tfile oO_TRUNC:c || error "multiop failed while truncating the file"
11254        log "killing dd"
11255        kill %+ || true # reads might have finished
11256        echo "wait until dd is finished"
11257        wait
11258        log "removing the temporary file"
11259        rm -rf $DIR/$tfile || error "tmp file removal failed"
11260 }
11261 run_test 218 "parallel read and truncate should not deadlock ======================="
11262
11263 test_219() {
11264         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11265         # write one partial page
11266         dd if=/dev/zero of=$DIR/$tfile bs=1024 count=1
11267         # set no grant so vvp_io_commit_write will do sync write
11268         $LCTL set_param fail_loc=0x411
11269         # write a full page at the end of file
11270         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 seek=1 conv=notrunc
11271
11272         $LCTL set_param fail_loc=0
11273         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 seek=3
11274         $LCTL set_param fail_loc=0x411
11275         dd if=/dev/zero of=$DIR/$tfile bs=1024 count=1 seek=2 conv=notrunc
11276
11277         # LU-4201
11278         dd if=/dev/zero of=$DIR/$tfile-2 bs=1024 count=1
11279         $CHECKSTAT -s 1024 $DIR/$tfile-2 || error "checkstat wrong size"
11280 }
11281 run_test 219 "LU-394: Write partial won't cause uncontiguous pages vec at LND"
11282
11283 test_220() { #LU-325
11284         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11285         remote_ost_nodsh && skip "remote OST with nodsh" && return
11286         local OSTIDX=0
11287
11288         test_mkdir -p $DIR/$tdir
11289         local OST=$(lfs osts | grep ${OSTIDX}": " | \
11290                 awk '{print $2}' | sed -e 's/_UUID$//')
11291
11292         # on the mdt's osc
11293         local mdtosc_proc1=$(get_mdtosc_proc_path $SINGLEMDS $OST)
11294         local last_id=$(do_facet $SINGLEMDS lctl get_param -n \
11295                         osc.$mdtosc_proc1.prealloc_last_id)
11296         local next_id=$(do_facet $SINGLEMDS lctl get_param -n \
11297                         osc.$mdtosc_proc1.prealloc_next_id)
11298
11299         $LFS df -i
11300
11301         do_facet ost$((OSTIDX + 1)) lctl set_param fail_val=-1
11302         #define OBD_FAIL_OST_ENOINO              0x229
11303         do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=0x229
11304         do_facet mgs $LCTL pool_new $FSNAME.$TESTNAME || return 1
11305         do_facet mgs $LCTL pool_add $FSNAME.$TESTNAME $OST || return 2
11306
11307         $SETSTRIPE $DIR/$tdir -i $OSTIDX -c 1 -p $FSNAME.$TESTNAME
11308
11309         MDSOBJS=$((last_id - next_id))
11310         echo "preallocated objects on MDS is $MDSOBJS" "($last_id - $next_id)"
11311
11312         blocks=$($LFS df $MOUNT | awk '($1 == '$OSTIDX') { print $4 }')
11313         echo "OST still has $count kbytes free"
11314
11315         echo "create $MDSOBJS files @next_id..."
11316         createmany -o $DIR/$tdir/f $MDSOBJS || return 3
11317
11318         local last_id2=$(do_facet mds${MDSIDX} lctl get_param -n \
11319                         osc.$mdtosc_proc1.prealloc_last_id)
11320         local next_id2=$(do_facet mds${MDSIDX} lctl get_param -n \
11321                         osc.$mdtosc_proc1.prealloc_next_id)
11322
11323         echo "after creation, last_id=$last_id2, next_id=$next_id2"
11324         $LFS df -i
11325
11326         echo "cleanup..."
11327
11328         do_facet ost$((OSTIDX + 1)) lctl set_param fail_val=0
11329         do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=0
11330
11331         do_facet mgs $LCTL pool_remove $FSNAME.$TESTNAME $OST || return 4
11332         do_facet mgs $LCTL pool_destroy $FSNAME.$TESTNAME || return 5
11333         echo "unlink $MDSOBJS files @$next_id..."
11334         unlinkmany $DIR/$tdir/f $MDSOBJS || return 6
11335 }
11336 run_test 220 "preallocated MDS objects still used if ENOSPC from OST"
11337
11338 test_221() {
11339         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11340         dd if=`which date` of=$MOUNT/date oflag=sync
11341         chmod +x $MOUNT/date
11342
11343         #define OBD_FAIL_LLITE_FAULT_TRUNC_RACE  0x1401
11344         $LCTL set_param fail_loc=0x80001401
11345
11346         $MOUNT/date > /dev/null
11347         rm -f $MOUNT/date
11348 }
11349 run_test 221 "make sure fault and truncate race to not cause OOM"
11350
11351 test_222a () {
11352         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11353        rm -rf $DIR/$tdir
11354        test_mkdir -p $DIR/$tdir
11355        $SETSTRIPE -c 1 -i 0 $DIR/$tdir
11356        createmany -o $DIR/$tdir/$tfile 10
11357        cancel_lru_locks mdc
11358        cancel_lru_locks osc
11359        #define OBD_FAIL_LDLM_AGL_DELAY           0x31a
11360        $LCTL set_param fail_loc=0x31a
11361        ls -l $DIR/$tdir > /dev/null || error "AGL for ls failed"
11362        $LCTL set_param fail_loc=0
11363        rm -r $DIR/$tdir
11364 }
11365 run_test 222a "AGL for ls should not trigger CLIO lock failure ================"
11366
11367 test_222b () {
11368         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11369        rm -rf $DIR/$tdir
11370        test_mkdir -p $DIR/$tdir
11371        $SETSTRIPE -c 1 -i 0 $DIR/$tdir
11372        createmany -o $DIR/$tdir/$tfile 10
11373        cancel_lru_locks mdc
11374        cancel_lru_locks osc
11375        #define OBD_FAIL_LDLM_AGL_DELAY           0x31a
11376        $LCTL set_param fail_loc=0x31a
11377        rm -r $DIR/$tdir || "AGL for rmdir failed"
11378        $LCTL set_param fail_loc=0
11379 }
11380 run_test 222b "AGL for rmdir should not trigger CLIO lock failure ============="
11381
11382 test_223 () {
11383         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11384        rm -rf $DIR/$tdir
11385        test_mkdir -p $DIR/$tdir
11386        $SETSTRIPE -c 1 -i 0 $DIR/$tdir
11387        createmany -o $DIR/$tdir/$tfile 10
11388        cancel_lru_locks mdc
11389        cancel_lru_locks osc
11390        #define OBD_FAIL_LDLM_AGL_NOLOCK          0x31b
11391        $LCTL set_param fail_loc=0x31b
11392        ls -l $DIR/$tdir > /dev/null || error "reenqueue failed"
11393        $LCTL set_param fail_loc=0
11394        rm -r $DIR/$tdir
11395 }
11396 run_test 223 "osc reenqueue if without AGL lock granted ======================="
11397
11398 test_224a() { # LU-1039, MRP-303
11399         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11400         #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB   0x508
11401         $LCTL set_param fail_loc=0x508
11402         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 conv=fsync
11403         $LCTL set_param fail_loc=0
11404         df $DIR
11405 }
11406 run_test 224a "Don't panic on bulk IO failure"
11407
11408 test_224b() { # LU-1039, MRP-303
11409         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11410         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1
11411         cancel_lru_locks osc
11412         #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB2   0x515
11413         $LCTL set_param fail_loc=0x515
11414         dd of=/dev/null if=$DIR/$tfile bs=4096 count=1
11415         $LCTL set_param fail_loc=0
11416         df $DIR
11417 }
11418 run_test 224b "Don't panic on bulk IO failure"
11419
11420 MDSSURVEY=${MDSSURVEY:-$(which mds-survey 2>/dev/null || true)}
11421 test_225a () {
11422         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11423         if [ -z ${MDSSURVEY} ]; then
11424               skip_env "mds-survey not found" && return
11425         fi
11426
11427         [ $MDSCOUNT -ge 2 ] &&
11428                 skip "skipping now for more than one MDT" && return
11429
11430        [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ] ||
11431             { skip "Need MDS version at least 2.2.51"; return; }
11432
11433        local mds=$(facet_host $SINGLEMDS)
11434        local target=$(do_nodes $mds 'lctl dl' | \
11435                       awk "{if (\$2 == \"UP\" && \$3 == \"mdt\") {print \$4}}")
11436
11437        local cmd1="file_count=1000 thrhi=4"
11438        local cmd2="dir_count=2 layer=mdd stripe_count=0"
11439        local cmd3="rslt_loc=${TMP} targets=\"$mds:$target\" $MDSSURVEY"
11440        local cmd="$cmd1 $cmd2 $cmd3"
11441
11442        rm -f ${TMP}/mds_survey*
11443        echo + $cmd
11444        eval $cmd || error "mds-survey with zero-stripe failed"
11445        cat ${TMP}/mds_survey*
11446        rm -f ${TMP}/mds_survey*
11447 }
11448 run_test 225a "Metadata survey sanity with zero-stripe"
11449
11450 test_225b () {
11451         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11452
11453         if [ -z ${MDSSURVEY} ]; then
11454               skip_env "mds-survey not found" && return
11455         fi
11456         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ] ||
11457             { skip "Need MDS version at least 2.2.51"; return; }
11458
11459         if [ $($LCTL dl | grep -c osc) -eq 0 ]; then
11460               skip_env "Need to mount OST to test" && return
11461         fi
11462
11463         [ $MDSCOUNT -ge 2 ] &&
11464                 skip "skipping now for more than one MDT" && return
11465        local mds=$(facet_host $SINGLEMDS)
11466        local target=$(do_nodes $mds 'lctl dl' | \
11467                       awk "{if (\$2 == \"UP\" && \$3 == \"mdt\") {print \$4}}")
11468
11469        local cmd1="file_count=1000 thrhi=4"
11470        local cmd2="dir_count=2 layer=mdd stripe_count=1"
11471        local cmd3="rslt_loc=${TMP} targets=\"$mds:$target\" $MDSSURVEY"
11472        local cmd="$cmd1 $cmd2 $cmd3"
11473
11474        rm -f ${TMP}/mds_survey*
11475        echo + $cmd
11476        eval $cmd || error "mds-survey with stripe_count failed"
11477        cat ${TMP}/mds_survey*
11478        rm -f ${TMP}/mds_survey*
11479 }
11480 run_test 225b "Metadata survey sanity with stripe_count = 1"
11481
11482 mcreate_path2fid () {
11483         local mode=$1
11484         local major=$2
11485         local minor=$3
11486         local name=$4
11487         local desc=$5
11488         local path=$DIR/$tdir/$name
11489         local fid
11490         local rc
11491         local fid_path
11492
11493         $MCREATE --mode=$1 --major=$2 --minor=$3 $path ||
11494                 error "cannot create $desc"
11495
11496         fid=$($LFS path2fid $path | tr -d '[' | tr -d ']')
11497         rc=$?
11498         [ $rc -ne 0 ] && error "cannot get fid of a $desc"
11499
11500         fid_path=$($LFS fid2path $MOUNT $fid)
11501         rc=$?
11502         [ $rc -ne 0 ] && error "cannot get path of $desc by $DIR $path $fid"
11503
11504         [ "$path" == "$fid_path" ] ||
11505                 error "fid2path returned $fid_path, expected $path"
11506
11507         echo "pass with $path and $fid"
11508 }
11509
11510 test_226a () {
11511         rm -rf $DIR/$tdir
11512         mkdir -p $DIR/$tdir
11513
11514         mcreate_path2fid 0010666 0 0 fifo "FIFO"
11515         mcreate_path2fid 0020666 1 3 null "character special file (null)"
11516         mcreate_path2fid 0020666 1 255 none "character special file (no device)"
11517         mcreate_path2fid 0040666 0 0 dir "directory"
11518         mcreate_path2fid 0060666 7 0 loop0 "block special file (loop)"
11519         mcreate_path2fid 0100666 0 0 file "regular file"
11520         mcreate_path2fid 0120666 0 0 link "symbolic link"
11521         mcreate_path2fid 0140666 0 0 sock "socket"
11522 }
11523 run_test 226a "call path2fid and fid2path on files of all type"
11524
11525 test_226b () {
11526         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
11527         rm -rf $DIR/$tdir
11528         local MDTIDX=1
11529
11530         mkdir -p $DIR/$tdir
11531         $LFS setdirstripe -i $MDTIDX $DIR/$tdir/remote_dir ||
11532                 error "create remote directory failed"
11533         mcreate_path2fid 0010666 0 0 "remote_dir/fifo" "FIFO"
11534         mcreate_path2fid 0020666 1 3 "remote_dir/null" \
11535                                 "character special file (null)"
11536         mcreate_path2fid 0020666 1 255 "remote_dir/none" \
11537                                 "character special file (no device)"
11538         mcreate_path2fid 0040666 0 0 "remote_dir/dir" "directory"
11539         mcreate_path2fid 0060666 7 0 "remote_dir/loop0" \
11540                                 "block special file (loop)"
11541         mcreate_path2fid 0100666 0 0 "remote_dir/file" "regular file"
11542         mcreate_path2fid 0120666 0 0 "remote_dir/link" "symbolic link"
11543         mcreate_path2fid 0140666 0 0 "remote_dir/sock" "socket"
11544 }
11545 run_test 226b "call path2fid and fid2path on files of all type under remote dir"
11546
11547 # LU-1299 Executing or running ldd on a truncated executable does not
11548 # cause an out-of-memory condition.
11549 test_227() {
11550         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11551         dd if=`which date` of=$MOUNT/date bs=1k count=1
11552         chmod +x $MOUNT/date
11553
11554         $MOUNT/date > /dev/null
11555         ldd $MOUNT/date > /dev/null
11556         rm -f $MOUNT/date
11557 }
11558 run_test 227 "running truncated executable does not cause OOM"
11559
11560 # LU-1512 try to reuse idle OI blocks
11561 test_228a() {
11562         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11563         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
11564                 skip "non-ldiskfs backend" && return
11565
11566         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
11567         local myDIR=$DIR/$tdir
11568
11569         mkdir -p $myDIR
11570         #define OBD_FAIL_SEQ_EXHAUST             0x1002
11571         $LCTL set_param fail_loc=0x80001002
11572         createmany -o $myDIR/t- 10000
11573         $LCTL set_param fail_loc=0
11574         # The guard is current the largest FID holder
11575         touch $myDIR/guard
11576         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
11577                     tr -d '[')
11578         local IDX=$(($SEQ % 64))
11579
11580         do_facet $SINGLEMDS sync
11581         # Make sure journal flushed.
11582         sleep 6
11583         local blk1=$(do_facet $SINGLEMDS \
11584                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
11585                      grep Blockcount | awk '{print $4}')
11586
11587         # Remove old files, some OI blocks will become idle.
11588         unlinkmany $myDIR/t- 10000
11589         # Create new files, idle OI blocks should be reused.
11590         createmany -o $myDIR/t- 2000
11591         do_facet $SINGLEMDS sync
11592         # Make sure journal flushed.
11593         sleep 6
11594         local blk2=$(do_facet $SINGLEMDS \
11595                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
11596                      grep Blockcount | awk '{print $4}')
11597
11598         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
11599 }
11600 run_test 228a "try to reuse idle OI blocks"
11601
11602 test_228b() {
11603         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11604         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
11605                 skip "non-ldiskfs backend" && return
11606
11607         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
11608         local myDIR=$DIR/$tdir
11609
11610         mkdir -p $myDIR
11611         #define OBD_FAIL_SEQ_EXHAUST             0x1002
11612         $LCTL set_param fail_loc=0x80001002
11613         createmany -o $myDIR/t- 10000
11614         $LCTL set_param fail_loc=0
11615         # The guard is current the largest FID holder
11616         touch $myDIR/guard
11617         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
11618                     tr -d '[')
11619         local IDX=$(($SEQ % 64))
11620
11621         do_facet $SINGLEMDS sync
11622         # Make sure journal flushed.
11623         sleep 6
11624         local blk1=$(do_facet $SINGLEMDS \
11625                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
11626                      grep Blockcount | awk '{print $4}')
11627
11628         # Remove old files, some OI blocks will become idle.
11629         unlinkmany $myDIR/t- 10000
11630
11631         # stop the MDT
11632         stop $SINGLEMDS || error "Fail to stop MDT."
11633         # remount the MDT
11634         start $SINGLEMDS $MDT_DEV $MDS_MOUNT_OPTS || error "Fail to start MDT."
11635
11636         df $MOUNT || error "Fail to df."
11637         # Create new files, idle OI blocks should be reused.
11638         createmany -o $myDIR/t- 2000
11639         do_facet $SINGLEMDS sync
11640         # Make sure journal flushed.
11641         sleep 6
11642         local blk2=$(do_facet $SINGLEMDS \
11643                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
11644                      grep Blockcount | awk '{print $4}')
11645
11646         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
11647 }
11648 run_test 228b "idle OI blocks can be reused after MDT restart"
11649
11650 #LU-1881
11651 test_228c() {
11652         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11653         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
11654                 skip "non-ldiskfs backend" && return
11655
11656         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
11657         local myDIR=$DIR/$tdir
11658
11659         mkdir -p $myDIR
11660         #define OBD_FAIL_SEQ_EXHAUST             0x1002
11661         $LCTL set_param fail_loc=0x80001002
11662         # 20000 files can guarantee there are index nodes in the OI file
11663         createmany -o $myDIR/t- 20000
11664         $LCTL set_param fail_loc=0
11665         # The guard is current the largest FID holder
11666         touch $myDIR/guard
11667         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
11668                     tr -d '[')
11669         local IDX=$(($SEQ % 64))
11670
11671         do_facet $SINGLEMDS sync
11672         # Make sure journal flushed.
11673         sleep 6
11674         local blk1=$(do_facet $SINGLEMDS \
11675                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
11676                      grep Blockcount | awk '{print $4}')
11677
11678         # Remove old files, some OI blocks will become idle.
11679         unlinkmany $myDIR/t- 20000
11680         rm -f $myDIR/guard
11681         # The OI file should become empty now
11682
11683         # Create new files, idle OI blocks should be reused.
11684         createmany -o $myDIR/t- 2000
11685         do_facet $SINGLEMDS sync
11686         # Make sure journal flushed.
11687         sleep 6
11688         local blk2=$(do_facet $SINGLEMDS \
11689                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
11690                      grep Blockcount | awk '{print $4}')
11691
11692         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
11693 }
11694 run_test 228c "NOT shrink the last entry in OI index node to recycle idle leaf"
11695
11696 test_229() { # LU-2482, LU-3448
11697         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.53) ] &&
11698                 skip "No HSM support on MDS of $(get_lustre_version)," \
11699                          "need 2.4.53 at least" && return
11700         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11701         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
11702
11703         rm -f $DIR/$tfile
11704
11705         # Create a file with a released layout and stripe count 2.
11706         $MULTIOP $DIR/$tfile H2c ||
11707                 error "failed to create file with released layout"
11708
11709         $GETSTRIPE -v $DIR/$tfile
11710
11711         local pattern=$($GETSTRIPE -L $DIR/$tfile)
11712         [ X"$pattern" = X"80000001" ] || error "pattern error ($pattern)"
11713
11714         local stripe_count=$($GETSTRIPE -c $DIR/$tfile) || error "getstripe"
11715         [ $stripe_count -eq 2 ] || error "stripe count not 2 ($stripe_count)"
11716         stat $DIR/$tfile || error "failed to stat released file"
11717
11718         chown $RUNAS_ID $DIR/$tfile ||
11719                 error "chown $RUNAS_ID $DIR/$tfile failed"
11720
11721         chgrp $RUNAS_ID $DIR/$tfile ||
11722                 error "chgrp $RUNAS_ID $DIR/$tfile failed"
11723
11724         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
11725         rm $DIR/$tfile || error "failed to remove released file"
11726 }
11727 run_test 229 "getstripe/stat/rm/attr changes work on released files"
11728
11729 test_230a() {
11730         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11731         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
11732         local MDTIDX=1
11733
11734         mkdir -p $DIR/$tdir/test_230_local
11735         local mdt_idx=$($GETSTRIPE -M $DIR/$tdir/test_230_local)
11736         [ $mdt_idx -ne 0 ] &&
11737                 error "create local directory on wrong MDT $mdt_idx"
11738
11739         $LFS mkdir -i $MDTIDX $DIR/$tdir/test_230 ||
11740                         error "create remote directory failed"
11741         local mdt_idx=$($GETSTRIPE -M $DIR/$tdir/test_230)
11742         [ $mdt_idx -ne $MDTIDX ] &&
11743                 error "create remote directory on wrong MDT $mdt_idx"
11744
11745         createmany -o $DIR/$tdir/test_230/t- 10 ||
11746                 error "create files on remote directory failed"
11747         mdt_idx=$($GETSTRIPE -M $DIR/$tdir/test_230/t-0)
11748         [ $mdt_idx -ne $MDTIDX ] && error "create files on wrong MDT $mdt_idx"
11749         rm -r $DIR/$tdir || error "unlink remote directory failed"
11750 }
11751 run_test 230a "Create remote directory and files under the remote directory"
11752
11753 test_230b() {
11754         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11755         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
11756         local MDTIDX=1
11757         local remote_dir=$DIR/$tdir/remote_dir
11758         local rc=0
11759
11760         mkdir -p $DIR/$tdir
11761         $LFS mkdir -i $MDTIDX $remote_dir ||
11762                 error "create remote directory failed"
11763
11764         $LFS mkdir -i 0 $remote_dir/new_dir &&
11765                 error "nested remote directory create succeed!"
11766
11767         do_facet mds$((MDTIDX + 1)) lctl set_param mdt.*.enable_remote_dir=1
11768         $LFS mkdir -i 0 $remote_dir/new_dir || rc=$?
11769         do_facet mds$((MDTIDX + 1)) lctl set_param mdt.*.enable_remote_dir=0
11770
11771         [ $rc -ne 0 ] &&
11772            error "create remote directory failed after set enable_remote_dir"
11773
11774         rm -rf $remote_dir || error "first unlink remote directory failed"
11775
11776         $RUNAS -G$RUNAS_GID $LFS mkdir -i $MDTIDX $DIR/$tfile &&
11777                                                         error "chown worked"
11778
11779         do_facet mds$MDTIDX lctl set_param \
11780                                 mdt.*.enable_remote_dir_gid=$RUNAS_GID
11781         $LFS mkdir -i $MDTIDX $remote_dir || rc=$?
11782         do_facet mds$MDTIDX lctl set_param mdt.*.enable_remote_dir_gid=0
11783
11784         [ $rc -ne 0 ] &&
11785            error "create remote dir failed after set enable_remote_dir_gid"
11786
11787         rm -r $DIR/$tdir || error "second unlink remote directory failed"
11788 }
11789 run_test 230b "nested remote directory should be failed"
11790
11791 test_231a()
11792 {
11793         # For simplicity this test assumes that max_pages_per_rpc
11794         # is the same across all OSCs
11795         local max_pages=$($LCTL get_param -n osc.*.max_pages_per_rpc | head -1)
11796         local bulk_size=$((max_pages * 4096))
11797
11798         mkdir -p $DIR/$tdir
11799
11800         # clear the OSC stats
11801         $LCTL set_param osc.*.stats=0 &>/dev/null
11802
11803         # Client writes $bulk_size - there must be 1 rpc for $max_pages.
11804         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=$bulk_size count=1 \
11805                 oflag=direct &>/dev/null || error "dd failed"
11806
11807         local nrpcs=$($LCTL get_param osc.*.stats |awk '/ost_write/ {print $2}')
11808         if [ x$nrpcs != "x1" ]; then
11809                 error "found $nrpc ost_write RPCs, not 1 as expected"
11810         fi
11811
11812         # Drop the OSC cache, otherwise we will read from it
11813         cancel_lru_locks osc
11814
11815         # clear the OSC stats
11816         $LCTL set_param osc.*.stats=0 &>/dev/null
11817
11818         # Client reads $bulk_size.
11819         dd if=$DIR/$tdir/$tfile of=/dev/null bs=$bulk_size count=1 \
11820                 iflag=direct &>/dev/null || error "dd failed"
11821
11822         nrpcs=$($LCTL get_param osc.*.stats | awk '/ost_read/ { print $2 }')
11823         if [ x$nrpcs != "x1" ]; then
11824                 error "found $nrpc ost_read RPCs, not 1 as expected"
11825         fi
11826 }
11827 run_test 231a "checking that reading/writing of BRW RPC size results in one RPC"
11828
11829 test_231b() {
11830         mkdir -p $DIR/$tdir
11831         local i
11832         for i in {0..1023}; do
11833                 dd if=/dev/zero of=$DIR/$tdir/$tfile conv=notrunc \
11834                         seek=$((2 * i)) bs=4096 count=1 &>/dev/null ||
11835                         error "dd of=$DIR/$tdir/$tfile seek=$((2 * i)) failed"
11836         done
11837         sync
11838 }
11839 run_test 231b "must not assert on fully utilized OST request buffer"
11840
11841 test_232() {
11842         mkdir -p $DIR/$tdir
11843         #define OBD_FAIL_LDLM_OST_LVB            0x31c
11844         $LCTL set_param fail_loc=0x31c
11845
11846         # ignore dd failure
11847         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=1 || true
11848
11849         $LCTL set_param fail_loc=0
11850         umount_client $MOUNT || error "umount failed"
11851         mount_client $MOUNT || error "mount failed"
11852 }
11853 run_test 232 "failed lock should not block umount"
11854
11855 test_233a() {
11856         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.64) ] ||
11857         { skip "Need MDS version at least 2.3.64"; return; }
11858
11859         local fid=$($LFS path2fid $MOUNT)
11860         stat $MOUNT/.lustre/fid/$fid > /dev/null ||
11861                 error "cannot access $MOUNT using its FID '$fid'"
11862 }
11863 run_test 233a "checking that OBF of the FS root succeeds"
11864
11865 test_233b() {
11866         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.5.90) ] ||
11867         { skip "Need MDS version at least 2.5.90"; return; }
11868
11869         local fid=$($LFS path2fid $MOUNT/.lustre)
11870         stat $MOUNT/.lustre/fid/$fid > /dev/null ||
11871                 error "cannot access $MOUNT/.lustre using its FID '$fid'"
11872
11873         fid=$($LFS path2fid $MOUNT/.lustre/fid)
11874         stat $MOUNT/.lustre/fid/$fid > /dev/null ||
11875                 error "cannot access $MOUNT/.lustre/fid using its FID '$fid'"
11876 }
11877 run_test 233b "checking that OBF of the FS .lustre succeeds"
11878
11879 test_234() {
11880         local p="$TMP/sanityN-$TESTNAME.parameters"
11881         save_lustre_params client "llite.*.xattr_cache" > $p
11882         lctl set_param llite.*.xattr_cache 1 ||
11883                 { skip "xattr cache is not supported"; return 0; }
11884
11885         mkdir -p $DIR/$tdir || error "mkdir failed"
11886         touch $DIR/$tdir/$tfile || error "touch failed"
11887         # OBD_FAIL_LLITE_XATTR_ENOMEM
11888         $LCTL set_param fail_loc=0x1405
11889         if [ ! -f /etc/SuSE-release ]; then
11890                 # attr pre-2.4.44-7 had a bug with rc
11891                 # LU-3703 - SLES clients have older attr
11892                 getfattr -n user.attr $DIR/$tdir/$tfile &&
11893                         error "getfattr should have failed with ENOMEM"
11894         fi
11895         $LCTL set_param fail_loc=0x0
11896         rm -rf $DIR/$tdir
11897
11898         restore_lustre_params < $p
11899         rm -f $p
11900 }
11901 run_test 234 "xattr cache should not crash on ENOMEM"
11902
11903 test_235() {
11904          [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.52) ] &&
11905                 skip "Need MDS version at least 2.4.52" && return
11906         flock_deadlock $DIR/$tfile
11907         local RC=$?
11908         case $RC in
11909                 0)
11910                 ;;
11911                 124) error "process hangs on a deadlock"
11912                 ;;
11913                 *) error "error executing flock_deadlock $DIR/$tfile"
11914                 ;;
11915         esac
11916 }
11917 run_test 235 "LU-1715: flock deadlock detection does not work properly"
11918
11919 #LU-2935
11920 test_236() {
11921         check_swap_layouts_support && return 0
11922         test_mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
11923
11924         local ref1=/etc/passwd
11925         local ref2=/etc/group
11926         local file1=$DIR/$tdir/f1
11927         local file2=$DIR/$tdir/f2
11928
11929         $SETSTRIPE -c 1 $file1 || error "cannot setstripe on '$file1': rc = $?"
11930         cp $ref1 $file1 || error "cp $ref1 $file1 failed: rc = $?"
11931         $SETSTRIPE -c 2 $file2 || error "cannot setstripe on '$file2': rc = $?"
11932         cp $ref2 $file2 || error "cp $ref2 $file2 failed: rc = $?"
11933         local fd=$(free_fd)
11934         local cmd="exec $fd<>$file2"
11935         eval $cmd
11936         rm $file2
11937         $LFS swap_layouts $file1 /proc/self/fd/${fd} ||
11938                 error "cannot swap layouts of '$file1' and /proc/self/fd/${fd}"
11939         cmd="exec $fd>&-"
11940         eval $cmd
11941         cmp $ref2 $file1 || error "content compare failed ($ref2 != $file1)"
11942
11943         #cleanup
11944         rm -rf $DIR/$tdir
11945 }
11946 run_test 236 "Layout swap on open unlinked file"
11947
11948 #
11949 # tests that do cleanup/setup should be run at the end
11950 #
11951
11952 test_900() {
11953         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11954         local ls
11955         #define OBD_FAIL_MGC_PAUSE_PROCESS_LOG   0x903
11956         $LCTL set_param fail_loc=0x903
11957         # cancel_lru_locks mgc - does not work due to lctl set_param syntax
11958         for ls in /proc/fs/lustre/ldlm/namespaces/MGC*/lru_size; do
11959                 echo "clear" > $ls
11960         done
11961         FAIL_ON_ERROR=true cleanup
11962         FAIL_ON_ERROR=true setup
11963 }
11964 run_test 900 "umount should not race with any mgc requeue thread"
11965
11966 complete $SECONDS
11967 check_and_cleanup_lustre
11968 if [ "$I_MOUNTED" != "yes" ]; then
11969         lctl set_param debug="$OLDDEBUG" 2> /dev/null || true
11970 fi
11971 exit_status