Whamcloud - gitweb
20050c2ac4d8a019bf04a3e5693617f9519e891a
[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$ttestnum.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         mkdir -p $DIR/$tdir
1002         createmany -m $DIR/$tdir/$tfile $NRFILES
1003
1004         cancel_lru_locks mdc
1005         lctl set_param mdc.*.stats clear
1006
1007         ls $DIR/$tdir >/dev/null || error "error in listing large dir"
1008
1009         # LU-5 large readdir
1010         # DIRENT_SIZE = 32 bytes for sizeof(struct lu_dirent) +
1011         #               8 bytes for name(filename is mostly 5 in this test) +
1012         #               8 bytes for luda_type
1013         # take into account of overhead in lu_dirpage header and end mark in
1014         # each page, plus one in RPC_NUM calculation.
1015         DIRENT_SIZE=48
1016         RPC_SIZE=$(($(max_pages_per_rpc) * $(page_size)))
1017         RPC_NUM=$(((NRFILES * DIRENT_SIZE + RPC_SIZE - 1) / RPC_SIZE + 1))
1018         mds_readpage=$(lctl get_param mdc.*MDT0000*.stats | \
1019                                 awk '/^mds_readpage/ {print $2}')
1020         [ $mds_readpage -gt $RPC_NUM ] && \
1021                 error "large readdir doesn't take effect"
1022
1023         simple_cleanup_common
1024 }
1025 run_test 24v "list directory with large files (handle hash collision, bug: 17560)"
1026
1027 test_24w() { # bug21506
1028         SZ1=234852
1029         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=4096 || return 1
1030         dd if=/dev/zero bs=$SZ1 count=1 >> $DIR/$tfile || return 2
1031         dd if=$DIR/$tfile of=$DIR/${tfile}_left bs=1M skip=4097 || return 3
1032         SZ2=`ls -l $DIR/${tfile}_left | awk '{print $5}'`
1033         [ "$SZ1" = "$SZ2" ] || \
1034                 error "Error reading at the end of the file $tfile"
1035 }
1036 run_test 24w "Reading a file larger than 4Gb"
1037
1038 test_24x() {
1039         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
1040         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1041         local MDTIDX=1
1042         local remote_dir=$DIR/$tdir/remote_dir
1043
1044         mkdir -p $DIR/$tdir
1045         $LFS mkdir -i $MDTIDX $remote_dir ||
1046                 error "create remote directory failed"
1047
1048         mkdir -p $DIR/$tdir/src_dir
1049         touch $DIR/$tdir/src_file
1050         mkdir -p $remote_dir/tgt_dir
1051         touch $remote_dir/tgt_file
1052
1053         mrename $remote_dir $DIR/ &&
1054                 error "rename dir cross MDT works!"
1055
1056         mrename $DIR/$tdir/src_dir $remote_dir/tgt_dir &&
1057                 error "rename dir cross MDT works!"
1058
1059         mrename $DIR/$tdir/src_file $remote_dir/tgt_file &&
1060                 error "rename file cross MDT works!"
1061
1062         ln $DIR/$tdir/src_file $remote_dir/tgt_file1 &&
1063                 error "ln file cross MDT should not work!"
1064
1065         rm -rf $DIR/$tdir || error "Can not delete directories"
1066 }
1067 run_test 24x "cross rename/link should be failed"
1068
1069 test_24y() {
1070         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
1071         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1072         local MDTIDX=1
1073         local remote_dir=$DIR/$tdir/remote_dir
1074
1075         mkdir -p $DIR/$tdir
1076         $LFS mkdir -i $MDTIDX $remote_dir ||
1077                    error "create remote directory failed"
1078
1079         mkdir -p $remote_dir/src_dir
1080         touch $remote_dir/src_file
1081         mkdir -p $remote_dir/tgt_dir
1082         touch $remote_dir/tgt_file
1083
1084         mrename $remote_dir/src_dir $remote_dir/tgt_dir ||
1085                 error "rename subdir in the same remote dir failed!"
1086
1087         mrename $remote_dir/src_file $remote_dir/tgt_file ||
1088                 error "rename files in the same remote dir failed!"
1089
1090         ln $remote_dir/tgt_file $remote_dir/tgt_file1 ||
1091                 error "link files in the same remote dir failed!"
1092
1093         rm -rf $DIR/$tdir || error "Can not delete directories"
1094 }
1095 run_test 24y "rename/link on the same dir should succeed"
1096
1097 test_24z() {
1098         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
1099         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1100         local MDTIDX=1
1101         local remote_src=$DIR/$tdir/remote_dir
1102         local remote_tgt=$DIR/$tdir/remote_tgt
1103
1104         mkdir -p $DIR/$tdir
1105         $LFS mkdir -i $MDTIDX $remote_src ||
1106                    error "create remote directory failed"
1107
1108         $LFS mkdir -i $MDTIDX $remote_tgt ||
1109                    error "create remote directory failed"
1110
1111         mrename $remote_src $remote_tgt &&
1112                 error "rename remote dirs should not work!"
1113
1114         # If target dir does not exists, it should succeed
1115         rm -rf $remote_tgt
1116         mrename $remote_src $remote_tgt ||
1117                 error "rename remote dirs(tgt dir does not exists) failed!"
1118
1119         rm -rf $DIR/$tdir || error "Can not delete directories"
1120 }
1121 run_test 24z "rename one remote dir to another remote dir should fail"
1122
1123 test_24A() { # LU-3182
1124         local NFILES=5000
1125
1126         mkdir -p $DIR/$tdir
1127         createmany -m $DIR/$tdir/$tfile $NFILES
1128         local t=`ls $DIR/$tdir | wc -l`
1129         local u=`ls $DIR/$tdir | sort -u | wc -l`
1130         if [ $t -ne $NFILES -o $u -ne $NFILES ] ; then
1131                 error "Expected $NFILES files, got $t ($u unique)"
1132         fi
1133
1134         rm -rf $DIR/$tdir || error "Can not delete directories"
1135 }
1136 run_test 24A "readdir() returns correct number of entries."
1137
1138 test_25a() {
1139         echo '== symlink sanity ============================================='
1140
1141         test_mkdir $DIR/d25
1142         ln -s d25 $DIR/s25
1143         touch $DIR/s25/foo || error
1144 }
1145 run_test 25a "create file in symlinked directory ==============="
1146
1147 test_25b() {
1148         [ ! -d $DIR/d25 ] && test_25a
1149         $CHECKSTAT -t file $DIR/s25/foo || error
1150 }
1151 run_test 25b "lookup file in symlinked directory ==============="
1152
1153 test_26a() {
1154         test_mkdir $DIR/d26
1155         test_mkdir $DIR/d26/d26-2
1156         ln -s d26/d26-2 $DIR/s26
1157         touch $DIR/s26/foo || error
1158 }
1159 run_test 26a "multiple component symlink ======================="
1160
1161 test_26b() {
1162         test_mkdir -p $DIR/d26b/d26-2
1163         ln -s d26b/d26-2/foo $DIR/s26-2
1164         touch $DIR/s26-2 || error
1165 }
1166 run_test 26b "multiple component symlink at end of lookup ======"
1167
1168 test_26c() {
1169         test_mkdir $DIR/d26.2
1170         touch $DIR/d26.2/foo
1171         ln -s d26.2 $DIR/s26.2-1
1172         ln -s s26.2-1 $DIR/s26.2-2
1173         ln -s s26.2-2 $DIR/s26.2-3
1174         chmod 0666 $DIR/s26.2-3/foo
1175 }
1176 run_test 26c "chain of symlinks ================================"
1177
1178 # recursive symlinks (bug 439)
1179 test_26d() {
1180         ln -s d26-3/foo $DIR/d26-3
1181 }
1182 run_test 26d "create multiple component recursive symlink ======"
1183
1184 test_26e() {
1185         [ ! -h $DIR/d26-3 ] && test_26d
1186         rm $DIR/d26-3
1187 }
1188 run_test 26e "unlink multiple component recursive symlink ======"
1189
1190 # recursive symlinks (bug 7022)
1191 test_26f() {
1192         test_mkdir -p $DIR/$tdir
1193         test_mkdir $DIR/$tdir/$tfile   || error "mkdir $DIR/$tdir/$tfile failed"
1194         cd $DIR/$tdir/$tfile           || error "cd $DIR/$tdir/$tfile failed"
1195         test_mkdir -p lndir/bar1      || error "mkdir lndir/bar1 failed"
1196         test_mkdir $DIR/$tdir/$tfile/$tfile   || error "mkdir $tfile failed"
1197         cd $tfile                || error "cd $tfile failed"
1198         ln -s .. dotdot          || error "ln dotdot failed"
1199         ln -s dotdot/lndir lndir || error "ln lndir failed"
1200         cd $DIR/$tdir                 || error "cd $DIR/$tdir failed"
1201         output=`ls $tfile/$tfile/lndir/bar1`
1202         [ "$output" = bar1 ] && error "unexpected output"
1203         rm -r $tfile             || error "rm $tfile failed"
1204         $CHECKSTAT -a $DIR/$tfile || error "$tfile not gone"
1205 }
1206 run_test 26f "rm -r of a directory which has recursive symlink ="
1207
1208 test_27a() {
1209         echo '== stripe sanity =============================================='
1210         test_mkdir -p $DIR/d27 || error "mkdir failed"
1211         $GETSTRIPE $DIR/d27
1212         $SETSTRIPE -c 1 $DIR/d27/f0 || error "setstripe failed"
1213         $CHECKSTAT -t file $DIR/d27/f0 || error "checkstat failed"
1214         pass
1215         log "== test_27a: write to one stripe file ========================="
1216         cp /etc/hosts $DIR/d27/f0 || error
1217 }
1218 run_test 27a "one stripe file =================================="
1219
1220 test_27b() {
1221         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping 2-stripe test" && return
1222         test_mkdir -p $DIR/d27
1223         $SETSTRIPE -c 2 $DIR/d27/f01 || error "setstripe failed"
1224         $GETSTRIPE -c $DIR/d27/f01
1225         [ $($GETSTRIPE -c $DIR/d27/f01) -eq 2 ] ||
1226                 error "two-stripe file doesn't have two stripes"
1227
1228         dd if=/dev/zero of=$DIR/d27/f01 bs=4k count=4 || error "dd failed"
1229 }
1230 run_test 27b "create and write to two stripe file"
1231
1232 test_27d() {
1233         test_mkdir -p $DIR/d27
1234         $SETSTRIPE -c 0 -i -1 -S 0 $DIR/d27/fdef || error "setstripe failed"
1235         $CHECKSTAT -t file $DIR/d27/fdef || error "checkstat failed"
1236         dd if=/dev/zero of=$DIR/d27/fdef bs=4k count=4 || error
1237 }
1238 run_test 27d "create file with default settings ================"
1239
1240 test_27e() {
1241         test_mkdir -p $DIR/d27
1242         $SETSTRIPE -c 2 $DIR/d27/f12 || error "setstripe failed"
1243         $SETSTRIPE -c 2 $DIR/d27/f12 && error "setstripe succeeded twice"
1244         $CHECKSTAT -t file $DIR/d27/f12 || error "checkstat failed"
1245 }
1246 run_test 27e "setstripe existing file (should return error) ======"
1247
1248 test_27f() {
1249         test_mkdir -p $DIR/d27
1250         $SETSTRIPE -S 100 -i 0 -c 1 $DIR/d27/fbad && error "setstripe failed"
1251         dd if=/dev/zero of=$DIR/d27/fbad bs=4k count=4 || error "dd failed"
1252         $GETSTRIPE $DIR/d27/fbad || error "$GETSTRIPE failed"
1253 }
1254 run_test 27f "setstripe with bad stripe size (should return error)"
1255
1256 test_27g() {
1257         test_mkdir -p $DIR/d27
1258         $MCREATE $DIR/d27/fnone || error "mcreate failed"
1259         $GETSTRIPE $DIR/d27/fnone 2>&1 | grep "no stripe info" ||
1260                 error "$DIR/d27/fnone has object"
1261 }
1262 run_test 27g "$GETSTRIPE with no objects"
1263
1264 test_27i() {
1265         touch $DIR/d27/fsome || error "touch failed"
1266         [ $($GETSTRIPE -c $DIR/d27/fsome) -gt 0 ] || error "missing objects"
1267 }
1268 run_test 27i "$GETSTRIPE with some objects"
1269
1270 test_27j() {
1271         test_mkdir -p $DIR/d27
1272         $SETSTRIPE -i $OSTCOUNT $DIR/d27/f27j && error "setstripe failed"||true
1273 }
1274 run_test 27j "setstripe with bad stripe offset (should return error)"
1275
1276 test_27k() { # bug 2844
1277         test_mkdir -p $DIR/d27
1278         FILE=$DIR/d27/f27k
1279         LL_MAX_BLKSIZE=$((4 * 1024 * 1024))
1280         [ ! -d $DIR/d27 ] && test_mkdir -p $DIR d27
1281         $SETSTRIPE -S 67108864 $FILE || error "setstripe failed"
1282         BLKSIZE=`stat $FILE | awk '/IO Block:/ { print $7 }'`
1283         [ $BLKSIZE -le $LL_MAX_BLKSIZE ] || error "$BLKSIZE > $LL_MAX_BLKSIZE"
1284         dd if=/dev/zero of=$FILE bs=4k count=1
1285         BLKSIZE=`stat $FILE | awk '/IO Block:/ { print $7 }'`
1286         [ $BLKSIZE -le $LL_MAX_BLKSIZE ] || error "$BLKSIZE > $LL_MAX_BLKSIZE"
1287 }
1288 run_test 27k "limit i_blksize for broken user apps ============="
1289
1290 test_27l() {
1291         test_mkdir -p $DIR/d27
1292         mcreate $DIR/f27l || error "creating file"
1293         $RUNAS $SETSTRIPE -c 1 $DIR/f27l && \
1294                 error "setstripe should have failed" || true
1295 }
1296 run_test 27l "check setstripe permissions (should return error)"
1297
1298 test_27m() {
1299         [ "$OSTCOUNT" -lt "2" ] && skip_env "$OSTCOUNT < 2 OSTs -- skipping" &&
1300                 return
1301         if [ $ORIGFREE -gt $MAXFREE ]; then
1302                 skip "$ORIGFREE > $MAXFREE skipping out-of-space test on OST0"
1303                 return
1304         fi
1305         trap simple_cleanup_common EXIT
1306         test_mkdir -p $DIR/$tdir
1307         $SETSTRIPE -i 0 -c 1 $DIR/$tdir/f27m_1
1308         dd if=/dev/zero of=$DIR/$tdir/f27m_1 bs=1024 count=$MAXFREE &&
1309                 error "dd should fill OST0"
1310         i=2
1311         while $SETSTRIPE -i 0 -c 1 $DIR/$tdir/f27m_$i; do
1312                 i=`expr $i + 1`
1313                 [ $i -gt 256 ] && break
1314         done
1315         i=`expr $i + 1`
1316         touch $DIR/$tdir/f27m_$i
1317         [ `$GETSTRIPE $DIR/$tdir/f27m_$i | grep -A 10 obdidx | awk '{print $1}'| grep -w "0"` ] &&
1318                 error "OST0 was full but new created file still use it"
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         simple_cleanup_common
1324 }
1325 run_test 27m "create file while OST0 was full =================="
1326
1327 sleep_maxage() {
1328         local DELAY=$(do_facet $SINGLEMDS lctl get_param -n lov.*.qos_maxage | head -n 1 | awk '{print $1 * 2}')
1329         sleep $DELAY
1330 }
1331
1332 # OSCs keep a NOSPC flag that will be reset after ~5s (qos_maxage)
1333 # if the OST isn't full anymore.
1334 reset_enospc() {
1335         local OSTIDX=${1:-""}
1336
1337         local list=$(comma_list $(osts_nodes))
1338         [ "$OSTIDX" ] && list=$(facet_host ost$((OSTIDX + 1)))
1339
1340         do_nodes $list lctl set_param fail_loc=0
1341         sync    # initiate all OST_DESTROYs from MDS to OST
1342         sleep_maxage
1343 }
1344
1345 exhaust_precreations() {
1346         local OSTIDX=$1
1347         local FAILLOC=$2
1348         local FAILIDX=${3:-$OSTIDX}
1349
1350         test_mkdir -p $DIR/$tdir
1351         local MDSIDX=$(get_mds_dir "$DIR/$tdir")
1352         echo OSTIDX=$OSTIDX MDSIDX=$MDSIDX
1353
1354         local OST=$(ostname_from_index $OSTIDX)
1355         local MDT_INDEX=$(lfs df | grep "\[MDT:$((MDSIDX - 1))\]" | awk '{print $1}' | \
1356                           sed -e 's/_UUID$//;s/^.*-//')
1357
1358         # on the mdt's osc
1359         local mdtosc_proc1=$(get_mdtosc_proc_path mds${MDSIDX} $OST)
1360         local last_id=$(do_facet mds${MDSIDX} lctl get_param -n \
1361         osc.$mdtosc_proc1.prealloc_last_id)
1362         local next_id=$(do_facet mds${MDSIDX} lctl get_param -n \
1363         osc.$mdtosc_proc1.prealloc_next_id)
1364
1365         local mdtosc_proc2=$(get_mdtosc_proc_path mds${MDSIDX})
1366         do_facet mds${MDSIDX} lctl get_param osc.$mdtosc_proc2.prealloc*
1367
1368         test_mkdir -p $DIR/$tdir/${OST}
1369         $SETSTRIPE -i $OSTIDX -c 1 $DIR/$tdir/${OST}
1370 #define OBD_FAIL_OST_ENOSPC              0x215
1371         do_facet ost$((OSTIDX + 1)) lctl set_param fail_val=$FAILIDX
1372         do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=0x215
1373         echo "Creating to objid $last_id on ost $OST..."
1374         createmany -o $DIR/$tdir/${OST}/f $next_id $((last_id - next_id + 2))
1375         do_facet mds${MDSIDX} lctl get_param osc.$mdtosc_proc2.prealloc*
1376         do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=$FAILLOC
1377         sleep_maxage
1378 }
1379
1380 exhaust_all_precreations() {
1381         local i
1382         for (( i=0; i < OSTCOUNT; i++ )) ; do
1383                 exhaust_precreations $i $1 -1
1384         done
1385 }
1386
1387 test_27n() {
1388         [ "$OSTCOUNT" -lt "2" ] && skip_env "too few OSTs" && return
1389         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1390         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1391         remote_ost_nodsh && skip "remote OST with nodsh" && return
1392
1393         reset_enospc
1394         rm -f $DIR/$tdir/$tfile
1395         exhaust_precreations 0 0x80000215
1396         $SETSTRIPE -c -1 $DIR/$tdir
1397         touch $DIR/$tdir/$tfile || error
1398         $GETSTRIPE $DIR/$tdir/$tfile
1399         reset_enospc
1400 }
1401 run_test 27n "create file with some full OSTs =================="
1402
1403 test_27o() {
1404         [ "$OSTCOUNT" -lt "2" ] && skip_env "too few OSTs" && return
1405         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1406         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1407         remote_ost_nodsh && skip "remote OST with nodsh" && return
1408
1409         reset_enospc
1410         rm -f $DIR/$tdir/$tfile
1411         exhaust_all_precreations 0x215
1412
1413         touch $DIR/$tdir/$tfile && error "able to create $DIR/$tdir/$tfile"
1414
1415         reset_enospc
1416         rm -rf $DIR/$tdir/*
1417 }
1418 run_test 27o "create file with all full OSTs (should error) ===="
1419
1420 test_27p() {
1421         [ "$OSTCOUNT" -lt "2" ] && skip_env "too few OSTs" && return
1422         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1423         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1424         remote_ost_nodsh && skip "remote OST with nodsh" && return
1425
1426         reset_enospc
1427         rm -f $DIR/$tdir/$tfile
1428         test_mkdir -p $DIR/$tdir
1429
1430         $MCREATE $DIR/$tdir/$tfile || error "mcreate failed"
1431         $TRUNCATE $DIR/$tdir/$tfile 80000000 || error "truncate failed"
1432         $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat failed"
1433
1434         exhaust_precreations 0 0x80000215
1435         echo foo >> $DIR/$tdir/$tfile || error "append failed"
1436         $CHECKSTAT -s 80000004 $DIR/$tdir/$tfile || error "checkstat failed"
1437         $GETSTRIPE $DIR/$tdir/$tfile
1438
1439         reset_enospc
1440 }
1441 run_test 27p "append to a truncated file with some full OSTs ==="
1442
1443 test_27q() {
1444         [ "$OSTCOUNT" -lt "2" ] && skip_env "too few OSTs" && return
1445         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1446         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1447         remote_ost_nodsh && skip "remote OST with nodsh" && return
1448
1449         reset_enospc
1450         rm -f $DIR/$tdir/$tfile
1451
1452         test_mkdir -p $DIR/$tdir
1453         $MCREATE $DIR/$tdir/$tfile || error "mcreate $DIR/$tdir/$tfile failed"
1454         $TRUNCATE $DIR/$tdir/$tfile 80000000 ||error "truncate $DIR/$tdir/$tfile failed"
1455         $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat failed"
1456
1457         exhaust_all_precreations 0x215
1458
1459         echo foo >> $DIR/$tdir/$tfile && error "append succeeded"
1460         $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat 2 failed"
1461
1462         reset_enospc
1463 }
1464 run_test 27q "append to truncated file with all OSTs full (should error) ==="
1465
1466 test_27r() {
1467         [ "$OSTCOUNT" -lt "2" ] && skip_env "too few OSTs" && return
1468         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1469         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1470         remote_ost_nodsh && skip "remote OST with nodsh" && return
1471
1472         reset_enospc
1473         rm -f $DIR/$tdir/$tfile
1474         exhaust_precreations 0 0x80000215
1475
1476         $SETSTRIPE -i 0 -c 2 $DIR/$tdir/$tfile # && error
1477
1478         reset_enospc
1479 }
1480 run_test 27r "stripe file with some full OSTs (shouldn't LBUG) ="
1481
1482 test_27s() { # bug 10725
1483         test_mkdir -p $DIR/$tdir
1484         local stripe_size=$((4096 * 1024 * 1024))       # 2^32
1485         local stripe_count=0
1486         [ $OSTCOUNT -eq 1 ] || stripe_count=2
1487         $SETSTRIPE -S $stripe_size -c $stripe_count $DIR/$tdir &&
1488                 error "stripe width >= 2^32 succeeded" || true
1489
1490 }
1491 run_test 27s "lsm_xfersize overflow (should error) (bug 10725)"
1492
1493 test_27t() { # bug 10864
1494         WDIR=`pwd`
1495         WLFS=`which lfs`
1496         cd $DIR
1497         touch $tfile
1498         $WLFS getstripe $tfile
1499         cd $WDIR
1500 }
1501 run_test 27t "check that utils parse path correctly"
1502
1503 test_27u() { # bug 4900
1504         [ "$OSTCOUNT" -lt "2" ] && skip_env "too few OSTs" && return
1505         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1506         local index
1507         local list=$(comma_list $(mdts_nodes))
1508
1509 #define OBD_FAIL_MDS_OSC_PRECREATE      0x139
1510         do_nodes $list $LCTL set_param fail_loc=0x139
1511         test_mkdir -p $DIR/$tdir
1512         rm -rf $DIR/$tdir/*
1513         createmany -o $DIR/$tdir/t- 1000
1514         do_nodes $list $LCTL set_param fail_loc=0
1515
1516         TLOG=$DIR/$tfile.getstripe
1517         $GETSTRIPE $DIR/$tdir > $TLOG
1518         OBJS=`awk -vobj=0 '($1 == 0) { obj += 1 } END { print obj;}' $TLOG`
1519         unlinkmany $DIR/$tdir/t- 1000
1520         [ $OBJS -gt 0 ] && \
1521                 error "$OBJS objects created on OST-0.  See $TLOG" || pass
1522 }
1523 run_test 27u "skip object creation on OSC w/o objects =========="
1524
1525 test_27v() { # bug 4900
1526         [ "$OSTCOUNT" -lt "2" ] && skip_env "too few OSTs" && return
1527         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1528         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1529         remote_ost_nodsh && skip "remote OST with nodsh" && return
1530
1531         exhaust_all_precreations 0x215
1532         reset_enospc
1533
1534         test_mkdir -p $DIR/$tdir
1535         $SETSTRIPE -c 1 $DIR/$tdir         # 1 stripe / file
1536
1537         touch $DIR/$tdir/$tfile
1538         #define OBD_FAIL_TGT_DELAY_PRECREATE     0x705
1539         # all except ost1
1540         for (( i=1; i < OSTCOUNT; i++ )); do
1541                 do_facet ost$i lctl set_param fail_loc=0x705
1542         done
1543         local START=`date +%s`
1544         createmany -o $DIR/$tdir/$tfile 32
1545
1546         local FINISH=`date +%s`
1547         local TIMEOUT=`lctl get_param -n timeout`
1548         local PROCESS=$((FINISH - START))
1549         [ $PROCESS -ge $((TIMEOUT / 2)) ] && \
1550                error "$FINISH - $START >= $TIMEOUT / 2"
1551         sleep $((TIMEOUT / 2 - PROCESS))
1552         reset_enospc
1553 }
1554 run_test 27v "skip object creation on slow OST ================="
1555
1556 test_27w() { # bug 10997
1557         test_mkdir -p $DIR/$tdir || error "mkdir failed"
1558         $SETSTRIPE -S 65536 $DIR/$tdir/f0 || error "setstripe failed"
1559         [ $($GETSTRIPE -S $DIR/$tdir/f0) -ne 65536 ] &&
1560                 error "stripe size $size != 65536" || true
1561         [ $($GETSTRIPE -d $DIR/$tdir | grep -c "stripe_count") -ne 1 ] &&
1562                 error "$GETSTRIPE -d $DIR/$tdir failed" || true
1563 }
1564 run_test 27w "check $SETSTRIPE -S option"
1565
1566 test_27wa() {
1567         [ "$OSTCOUNT" -lt "2" ] &&
1568                 skip_env "skipping multiple stripe count/offset test" && return
1569
1570         test_mkdir -p $DIR/$tdir || error "mkdir failed"
1571         for i in $(seq 1 $OSTCOUNT); do
1572                 offset=$((i - 1))
1573                 $SETSTRIPE -c $i -i $offset $DIR/$tdir/f$i ||
1574                         error "setstripe -c $i -i $offset failed"
1575                 count=$($GETSTRIPE -c $DIR/$tdir/f$i)
1576                 index=$($GETSTRIPE -i $DIR/$tdir/f$i)
1577                 [ $count -ne $i ] && error "stripe count $count != $i" || true
1578                 [ $index -ne $offset ] &&
1579                         error "stripe offset $index != $offset" || true
1580         done
1581 }
1582 run_test 27wa "check $SETSTRIPE -c -i options"
1583
1584 test_27x() {
1585         remote_ost_nodsh && skip "remote OST with nodsh" && return
1586         [ "$OSTCOUNT" -lt "2" ] && skip_env "$OSTCOUNT < 2 OSTs" && return
1587         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1588         OFFSET=$(($OSTCOUNT - 1))
1589         OSTIDX=0
1590         local OST=$(ostname_from_index $OSTIDX)
1591
1592         test_mkdir -p $DIR/$tdir
1593         $SETSTRIPE -c 1 $DIR/$tdir      # 1 stripe per file
1594         do_facet ost$((OSTIDX + 1)) lctl set_param -n obdfilter.$OST.degraded 1
1595         sleep_maxage
1596         createmany -o $DIR/$tdir/$tfile $OSTCOUNT
1597         for i in `seq 0 $OFFSET`; do
1598                 [ `$GETSTRIPE $DIR/$tdir/$tfile$i | grep -A 10 obdidx | awk '{print $1}' | grep -w "$OSTIDX"` ] &&
1599                 error "OST0 was degraded but new created file still use it"
1600         done
1601         do_facet ost$((OSTIDX + 1)) lctl set_param -n obdfilter.$OST.degraded 0
1602 }
1603 run_test 27x "create files while OST0 is degraded"
1604
1605 test_27y() {
1606         [ "$OSTCOUNT" -lt "2" ] && skip_env "$OSTCOUNT < 2 OSTs -- skipping" && return
1607         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1608         remote_ost_nodsh && skip "remote OST with nodsh" && return
1609         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1610
1611         local mdtosc=$(get_mdtosc_proc_path $SINGLEMDS $FSNAME-OST0000)
1612         local last_id=$(do_facet $SINGLEMDS lctl get_param -n \
1613             osc.$mdtosc.prealloc_last_id)
1614         local next_id=$(do_facet $SINGLEMDS lctl get_param -n \
1615             osc.$mdtosc.prealloc_next_id)
1616         local fcount=$((last_id - next_id))
1617         [ $fcount -eq 0 ] && skip "not enough space on OST0" && return
1618         [ $fcount -gt $OSTCOUNT ] && fcount=$OSTCOUNT
1619
1620         local MDS_OSCS=$(do_facet $SINGLEMDS lctl dl |
1621                          awk '/[oO][sS][cC].*md[ts]/ { print $4 }')
1622         local OST_DEACTIVE_IDX=-1
1623         local OSC
1624         local OSTIDX
1625         local OST
1626
1627         for OSC in $MDS_OSCS; do
1628                 OST=$(osc_to_ost $OSC)
1629                 OSTIDX=$(index_from_ostuuid $OST)
1630                 if [ $OST_DEACTIVE_IDX == -1 ]; then
1631                         OST_DEACTIVE_IDX=$OSTIDX
1632                 fi
1633                 if [ $OSTIDX != $OST_DEACTIVE_IDX ]; then
1634                         echo $OSC "is Deactivated:"
1635                         do_facet $SINGLEMDS lctl --device  %$OSC deactivate
1636                 fi
1637         done
1638
1639         OSTIDX=$(index_from_ostuuid $OST)
1640         mkdir -p $DIR/$tdir
1641         $SETSTRIPE -c 1 $DIR/$tdir      # 1 stripe / file
1642
1643         for OSC in $MDS_OSCS; do
1644                 OST=$(osc_to_ost $OSC)
1645                 OSTIDX=$(index_from_ostuuid $OST)
1646                 if [ $OSTIDX == $OST_DEACTIVE_IDX ]; then
1647                         echo $OST "is degraded:"
1648                         do_facet ost$((OSTIDX+1)) lctl set_param -n \
1649                                                 obdfilter.$OST.degraded=1
1650                 fi
1651         done
1652
1653         sleep_maxage
1654         createmany -o $DIR/$tdir/$tfile $fcount
1655
1656         for OSC in $MDS_OSCS; do
1657                 OST=$(osc_to_ost $OSC)
1658                 OSTIDX=$(index_from_ostuuid $OST)
1659                 if [ $OSTIDX == $OST_DEACTIVE_IDX ]; then
1660                         echo $OST "is recovered from degraded:"
1661                         do_facet ost$((OSTIDX+1)) lctl set_param -n \
1662                                                 obdfilter.$OST.degraded=0
1663                 else
1664                         do_facet $SINGLEMDS lctl --device %$OSC activate
1665                 fi
1666         done
1667
1668         # all osp devices get activated, hence -1 stripe count restored
1669         local stripecnt=0
1670
1671         # sleep 2*lod_qos_maxage seconds waiting for lod qos to notice osp
1672         # devices get activated.
1673         sleep_maxage
1674         $SETSTRIPE -c -1 $DIR/$tfile
1675         stripecnt=$($GETSTRIPE -c $DIR/$tfile)
1676         rm -f $DIR/$tfile
1677         [ $stripecnt -ne $OSTCOUNT ] &&
1678                 error "Of $OSTCOUNT OSTs, only $stripecnt is available"
1679         return 0
1680 }
1681 run_test 27y "create files while OST0 is degraded and the rest inactive"
1682
1683 check_seq_oid()
1684 {
1685         log "check file $1"
1686
1687         lmm_count=$($GETSTRIPE -c $1)
1688         lmm_seq=$($GETSTRIPE -v $1 | awk '/lmm_seq/ { print $2 }')
1689         lmm_oid=$($GETSTRIPE -v $1 | awk '/lmm_object_id/ { print $2 }')
1690
1691         local old_ifs="$IFS"
1692         IFS=$'[:]'
1693         fid=($($LFS path2fid $1))
1694         IFS="$old_ifs"
1695
1696         log "FID seq ${fid[1]}, oid ${fid[2]} ver ${fid[3]}"
1697         log "LOV seq $lmm_seq, oid $lmm_oid, count: $lmm_count"
1698
1699         # compare lmm_seq and lu_fid->f_seq
1700         [ $lmm_seq = ${fid[1]} ] || { error "SEQ mismatch"; return 1; }
1701         # compare lmm_object_id and lu_fid->oid
1702         [ $lmm_oid = ${fid[2]} ] || { error "OID mismatch"; return 2; }
1703
1704         # check the trusted.fid attribute of the OST objects of the file
1705         local have_obdidx=false
1706         local stripe_nr=0
1707         $GETSTRIPE $1 | while read obdidx oid hex seq; do
1708                 # skip lines up to and including "obdidx"
1709                 [ -z "$obdidx" ] && break
1710                 [ "$obdidx" = "obdidx" ] && have_obdidx=true && continue
1711                 $have_obdidx || continue
1712
1713                 local ost=$((obdidx + 1))
1714                 local dev=$(ostdevname $ost)
1715                 local oid_hex
1716
1717                 if [ $(facet_fstype ost$ost) != ldiskfs ]; then
1718                         echo "Currently only works with ldiskfs-based OSTs"
1719                         continue
1720                 fi
1721
1722                 log "want: stripe:$stripe_nr ost:$obdidx oid:$oid/$hex seq:$seq"
1723
1724                 #don't unmount/remount the OSTs if we don't need to do that
1725                 # LU-2577 changes filter_fid to be smaller, so debugfs needs
1726                 # update too, until that use mount/ll_decode_filter_fid/mount
1727                 local dir=$(facet_mntpt ost$ost)
1728                 local opts=${OST_MOUNT_OPTS}
1729
1730                 if !  do_facet ost$ost test -b ${dev}; then
1731                         opts=$(csa_add "$opts" -o loop)
1732                 fi
1733
1734                 stop ost$ost
1735                 do_facet ost$ost mount -t $(facet_fstype ost$ost) $opts $dev $dir ||
1736                         { error "mounting $dev as $FSTYPE failed"; return 3; }
1737
1738                 seq=$(echo $seq | sed -e "s/^0x//g")
1739                 if [ $seq == 0 ]; then
1740                         oid_hex=$(echo $oid)
1741                 else
1742                         oid_hex=$(echo $hex | sed -e "s/^0x//g")
1743                 fi
1744                 local obj_file=$(do_facet ost$ost find $dir/O/$seq -name $oid_hex)
1745                 local ff=$(do_facet ost$ost $LL_DECODE_FILTER_FID $obj_file)
1746                 do_facet ost$ost umount -d $dir
1747                 start ost$ost $dev $OST_MOUNT_OPTS
1748
1749                 # re-enable when debugfs will understand new filter_fid
1750                 #local ff=$(do_facet ost$ost "$DEBUGFS -c -R 'stat $obj_file' \
1751                 #           $dev 2>/dev/null" | grep "parent=")
1752
1753                 [ -z "$ff" ] && error "$obj_file: no filter_fid info"
1754
1755                 echo "$ff" | sed -e 's#.*objid=#got: objid=#'
1756
1757                 # /mnt/O/0/d23/23: objid=23 seq=0 parent=[0x200000400:0x1e:0x1]
1758                 # fid: objid=23 seq=0 parent=[0x200000400:0x1e:0x0] stripe=1
1759                 local ff_parent=$(echo $ff|sed -e 's/.*parent=.//')
1760                 local ff_pseq=$(echo $ff_parent | cut -d: -f1)
1761                 local ff_poid=$(echo $ff_parent | cut -d: -f2)
1762                 local ff_pstripe=$(echo $ff_parent | sed -e 's/.*stripe=//')
1763
1764                 # compare lmm_seq and filter_fid->ff_parent.f_seq
1765                 [ $ff_pseq = $lmm_seq ] ||
1766                         error "FF parent SEQ $ff_pseq != $lmm_seq"
1767                 # compare lmm_object_id and filter_fid->ff_parent.f_oid
1768                 [ $ff_poid = $lmm_oid ] ||
1769                         error "FF parent OID $ff_poid != $lmm_oid"
1770                 [ $ff_pstripe = $stripe_nr ] ||
1771                         error "FF stripe $ff_pstripe != $stripe_nr"
1772
1773                 stripe_nr=$((stripe_nr + 1))
1774         done
1775 }
1776
1777 test_27z() {
1778         remote_ost_nodsh && skip "remote OST with nodsh" && return
1779         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1780         test_mkdir -p $DIR/$tdir
1781
1782         $SETSTRIPE -c 1 -i 0 -S 64k $DIR/$tdir/$tfile-1 ||
1783                 { error "setstripe -c -1 failed"; return 1; }
1784         # We need to send a write to every object to get parent FID info set.
1785         # This _should_ also work for setattr, but does not currently.
1786         # touch $DIR/$tdir/$tfile-1 ||
1787         dd if=/dev/zero of=$DIR/$tdir/$tfile-1 bs=1M count=1 ||
1788                 { error "dd $tfile-1 failed"; return 2; }
1789         $SETSTRIPE -c -1 -i $((OSTCOUNT - 1)) -S 1M $DIR/$tdir/$tfile-2 ||
1790                 { error "setstripe -c -1 failed"; return 3; }
1791         dd if=/dev/zero of=$DIR/$tdir/$tfile-2 bs=1M count=$OSTCOUNT ||
1792                 { error "dd $tfile-2 failed"; return 4; }
1793
1794         # make sure write RPCs have been sent to OSTs
1795         sync; sleep 5; sync
1796
1797         check_seq_oid $DIR/$tdir/$tfile-1 || return 5
1798         check_seq_oid $DIR/$tdir/$tfile-2 || return 6
1799 }
1800 run_test 27z "check SEQ/OID on the MDT and OST filesystems"
1801
1802 test_27A() { # b=19102
1803         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1804         local restore_size=$($GETSTRIPE -S $MOUNT)
1805         local restore_count=$($GETSTRIPE -c $MOUNT)
1806         local restore_offset=$($GETSTRIPE -i $MOUNT)
1807         $SETSTRIPE -c 0 -i -1 -S 0 $MOUNT
1808         local default_size=$($GETSTRIPE -S $MOUNT)
1809         local default_count=$($GETSTRIPE -c $MOUNT)
1810         local default_offset=$($GETSTRIPE -i $MOUNT)
1811         local dsize=$((1024 * 1024))
1812         [ $default_size -eq $dsize ] ||
1813                 error "stripe size $default_size != $dsize"
1814         [ $default_count -eq 1 ] || error "stripe count $default_count != 1"
1815         [ $default_offset -eq -1 ] ||error "stripe offset $default_offset != -1"
1816         $SETSTRIPE -c $restore_count -i $restore_offset -S $restore_size $MOUNT
1817 }
1818 run_test 27A "check filesystem-wide default LOV EA values"
1819
1820 test_27B() { # LU-2523
1821         test_mkdir -p $DIR/$tdir
1822         rm -f $DIR/$tdir/f0 $DIR/$tdir/f1
1823         touch $DIR/$tdir/f0
1824         # open f1 with O_LOV_DELAY_CREATE
1825         # rename f0 onto f1
1826         # call setstripe ioctl on open file descriptor for f1
1827         # close
1828         multiop $DIR/$tdir/f1 oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:nB1c \
1829                 $DIR/$tdir/f0
1830
1831         rm -f $DIR/$tdir/f1
1832         # open f1 with O_LOV_DELAY_CREATE
1833         # unlink 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:uB1c
1837
1838         # Allow multiop to fail in imitation of NFS's busted semantics.
1839         true
1840 }
1841 run_test 27B "call setstripe on open unlinked file/rename victim"
1842
1843 test_27C() { #LU-2871
1844         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
1845
1846         declare -a ost_idx
1847         local index
1848         local found
1849         local i
1850         local j
1851
1852         test_mkdir -p $DIR/$tdir
1853         cd $DIR/$tdir
1854         for i in $(seq 0 $((OSTCOUNT - 1))); do
1855                 # set stripe across all OSTs starting from OST$i
1856                 $SETSTRIPE -i $i -c -1 $tfile$i
1857                 # get striping information
1858                 ost_idx=($($GETSTRIPE $tfile$i |
1859                          tail -n $((OSTCOUNT + 1)) | awk '{print $1}'))
1860                 echo ${ost_idx[@]}
1861
1862                 # check the layout
1863                 [ ${#ost_idx[@]} -eq $OSTCOUNT ] ||
1864                         error "${#ost_idx[@]} != $OSTCOUNT"
1865
1866                 for index in $(seq 0 $((OSTCOUNT - 1))); do
1867                         found=0
1868                         for j in $(echo ${ost_idx[@]}); do
1869                                 if [ $index -eq $j ]; then
1870                                         found=1
1871                                         break
1872                                 fi
1873                         done
1874                         [ $found = 1 ] ||
1875                                 error "Can not find $index in ${ost_idx[@]}"
1876                 done
1877         done
1878 }
1879 run_test 27C "check full striping across all OSTs"
1880
1881 # createtest also checks that device nodes are created and
1882 # then visible correctly (#2091)
1883 test_28() { # bug 2091
1884         test_mkdir $DIR/d28
1885         $CREATETEST $DIR/d28/ct || error
1886 }
1887 run_test 28 "create/mknod/mkdir with bad file types ============"
1888
1889 test_29() {
1890         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1891         cancel_lru_locks mdc
1892         test_mkdir $DIR/d29
1893         touch $DIR/d29/foo
1894         log 'first d29'
1895         ls -l $DIR/d29
1896
1897         declare -i LOCKCOUNTORIG=0
1898         for lock_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_count); do
1899                 let LOCKCOUNTORIG=$LOCKCOUNTORIG+$lock_count
1900         done
1901         [ $LOCKCOUNTORIG -eq 0 ] && echo "No mdc lock count" && return 1
1902
1903         declare -i LOCKUNUSEDCOUNTORIG=0
1904         for unused_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_unused_count); do
1905                 let LOCKUNUSEDCOUNTORIG=$LOCKUNUSEDCOUNTORIG+$unused_count
1906         done
1907
1908         log 'second d29'
1909         ls -l $DIR/d29
1910         log 'done'
1911
1912         declare -i LOCKCOUNTCURRENT=0
1913         for lock_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_count); do
1914                 let LOCKCOUNTCURRENT=$LOCKCOUNTCURRENT+$lock_count
1915         done
1916
1917         declare -i LOCKUNUSEDCOUNTCURRENT=0
1918         for unused_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_unused_count); do
1919                 let LOCKUNUSEDCOUNTCURRENT=$LOCKUNUSEDCOUNTCURRENT+$unused_count
1920         done
1921
1922         if [ "$LOCKCOUNTCURRENT" -gt "$LOCKCOUNTORIG" ]; then
1923                 lctl set_param -n ldlm.dump_namespaces ""
1924                 error "CURRENT: $LOCKCOUNTCURRENT > $LOCKCOUNTORIG"
1925                 $LCTL dk | sort -k4 -t: > $TMP/test_29.dk
1926                 log "dumped log to $TMP/test_29.dk (bug 5793)"
1927                 return 2
1928         fi
1929         if [ "$LOCKUNUSEDCOUNTCURRENT" -gt "$LOCKUNUSEDCOUNTORIG" ]; then
1930                 error "UNUSED: $LOCKUNUSEDCOUNTCURRENT > $LOCKUNUSEDCOUNTORIG"
1931                 $LCTL dk | sort -k4 -t: > $TMP/test_29.dk
1932                 log "dumped log to $TMP/test_29.dk (bug 5793)"
1933                 return 3
1934         fi
1935 }
1936 run_test 29 "IT_GETATTR regression  ============================"
1937
1938 test_30a() { # was test_30
1939         cp `which ls` $DIR || cp /bin/ls $DIR
1940         $DIR/ls / || error
1941         rm $DIR/ls
1942 }
1943 run_test 30a "execute binary from Lustre (execve) =============="
1944
1945 test_30b() {
1946         cp `which ls` $DIR || cp /bin/ls $DIR
1947         chmod go+rx $DIR/ls
1948         $RUNAS $DIR/ls / || error
1949         rm $DIR/ls
1950 }
1951 run_test 30b "execute binary from Lustre as non-root ==========="
1952
1953 test_30c() { # b=22376
1954         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1955         cp `which ls` $DIR || cp /bin/ls $DIR
1956         chmod a-rw $DIR/ls
1957         cancel_lru_locks mdc
1958         cancel_lru_locks osc
1959         $RUNAS $DIR/ls / || error
1960         rm -f $DIR/ls
1961 }
1962 run_test 30c "execute binary from Lustre without read perms ===="
1963
1964 test_31a() {
1965         $OPENUNLINK $DIR/f31 $DIR/f31 || error
1966         $CHECKSTAT -a $DIR/f31 || error
1967 }
1968 run_test 31a "open-unlink file =================================="
1969
1970 test_31b() {
1971         touch $DIR/f31 || error
1972         ln $DIR/f31 $DIR/f31b || error
1973         $MULTIOP $DIR/f31b Ouc || error
1974         $CHECKSTAT -t file $DIR/f31 || error
1975 }
1976 run_test 31b "unlink file with multiple links while open ======="
1977
1978 test_31c() {
1979         touch $DIR/f31 || error
1980         ln $DIR/f31 $DIR/f31c || error
1981         multiop_bg_pause $DIR/f31 O_uc || return 1
1982         MULTIPID=$!
1983         $MULTIOP $DIR/f31c Ouc
1984         kill -USR1 $MULTIPID
1985         wait $MULTIPID
1986 }
1987 run_test 31c "open-unlink file with multiple links ============="
1988
1989 test_31d() {
1990         opendirunlink $DIR/d31d $DIR/d31d || error
1991         $CHECKSTAT -a $DIR/d31d || error
1992 }
1993 run_test 31d "remove of open directory ========================="
1994
1995 test_31e() { # bug 2904
1996         check_kernel_version 34 || return 0
1997         openfilleddirunlink $DIR/d31e || error
1998 }
1999 run_test 31e "remove of open non-empty directory ==============="
2000
2001 test_31f() { # bug 4554
2002         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2003         set -vx
2004         test_mkdir $DIR/d31f
2005         $SETSTRIPE -S 1048576 -c 1 $DIR/d31f
2006         cp /etc/hosts $DIR/d31f
2007         ls -l $DIR/d31f
2008         $GETSTRIPE $DIR/d31f/hosts
2009         multiop_bg_pause $DIR/d31f D_c || return 1
2010         MULTIPID=$!
2011
2012         rm -rv $DIR/d31f || error "first of $DIR/d31f"
2013         test_mkdir $DIR/d31f
2014         $SETSTRIPE -S 1048576 -c 1 $DIR/d31f
2015         cp /etc/hosts $DIR/d31f
2016         ls -l $DIR/d31f
2017         $GETSTRIPE $DIR/d31f/hosts
2018         multiop_bg_pause $DIR/d31f D_c || return 1
2019         MULTIPID2=$!
2020
2021         kill -USR1 $MULTIPID || error "first opendir $MULTIPID not running"
2022         wait $MULTIPID || error "first opendir $MULTIPID failed"
2023
2024         sleep 6
2025
2026         kill -USR1 $MULTIPID2 || error "second opendir $MULTIPID not running"
2027         wait $MULTIPID2 || error "second opendir $MULTIPID2 failed"
2028         set +vx
2029 }
2030 run_test 31f "remove of open directory with open-unlink file ==="
2031
2032 test_31g() {
2033         echo "-- cross directory link --"
2034         test_mkdir $DIR/d31ga
2035         test_mkdir $DIR/d31gb
2036         touch $DIR/d31ga/f
2037         ln $DIR/d31ga/f $DIR/d31gb/g
2038         $CHECKSTAT -t file $DIR/d31ga/f || error "source"
2039         [ `stat -c%h $DIR/d31ga/f` == '2' ] || error "source nlink"
2040         $CHECKSTAT -t file $DIR/d31gb/g || error "target"
2041         [ `stat -c%h $DIR/d31gb/g` == '2' ] || error "target nlink"
2042 }
2043 run_test 31g "cross directory link==============="
2044
2045 test_31h() {
2046         echo "-- cross directory link --"
2047         test_mkdir $DIR/d31h
2048         test_mkdir $DIR/d31h/dir
2049         touch $DIR/d31h/f
2050         ln $DIR/d31h/f $DIR/d31h/dir/g
2051         $CHECKSTAT -t file $DIR/d31h/f || error "source"
2052         [ `stat -c%h $DIR/d31h/f` == '2' ] || error "source nlink"
2053         $CHECKSTAT -t file $DIR/d31h/dir/g || error "target"
2054         [ `stat -c%h $DIR/d31h/dir/g` == '2' ] || error "target nlink"
2055 }
2056 run_test 31h "cross directory link under child==============="
2057
2058 test_31i() {
2059         echo "-- cross directory link --"
2060         test_mkdir $DIR/d31i
2061         test_mkdir $DIR/d31i/dir
2062         touch $DIR/d31i/dir/f
2063         ln $DIR/d31i/dir/f $DIR/d31i/g
2064         $CHECKSTAT -t file $DIR/d31i/dir/f || error "source"
2065         [ `stat -c%h $DIR/d31i/dir/f` == '2' ] || error "source nlink"
2066         $CHECKSTAT -t file $DIR/d31i/g || error "target"
2067         [ `stat -c%h $DIR/d31i/g` == '2' ] || error "target nlink"
2068 }
2069 run_test 31i "cross directory link under parent==============="
2070
2071
2072 test_31j() {
2073         test_mkdir $DIR/d31j
2074         test_mkdir $DIR/d31j/dir1
2075         ln $DIR/d31j/dir1 $DIR/d31j/dir2 && error "ln for dir"
2076         link $DIR/d31j/dir1 $DIR/d31j/dir3 && error "link for dir"
2077         mlink $DIR/d31j/dir1 $DIR/d31j/dir4 && error "mlink for dir"
2078         mlink $DIR/d31j/dir1 $DIR/d31j/dir1 && error "mlink to the same dir"
2079         return 0
2080 }
2081 run_test 31j "link for directory==============="
2082
2083
2084 test_31k() {
2085         test_mkdir $DIR/d31k
2086         touch $DIR/d31k/s
2087         touch $DIR/d31k/exist
2088         mlink $DIR/d31k/s $DIR/d31k/t || error "mlink"
2089         mlink $DIR/d31k/s $DIR/d31k/exist && error "mlink to exist file"
2090         mlink $DIR/d31k/s $DIR/d31k/s && error "mlink to the same file"
2091         mlink $DIR/d31k/s $DIR/d31k && error "mlink to parent dir"
2092         mlink $DIR/d31k $DIR/d31k/s && error "mlink parent dir to target"
2093         mlink $DIR/d31k/not-exist $DIR/d31k/foo && error "mlink non-existing to new"
2094         mlink $DIR/d31k/not-exist $DIR/d31k/s && error "mlink non-existing to exist"
2095         return 0
2096 }
2097 run_test 31k "link to file: the same, non-existing, dir==============="
2098
2099 test_31m() {
2100         test_mkdir $DIR/d31m
2101         touch $DIR/d31m/s
2102         test_mkdir $DIR/d31m2
2103         touch $DIR/d31m2/exist
2104         mlink $DIR/d31m/s $DIR/d31m2/t || error "mlink"
2105         mlink $DIR/d31m/s $DIR/d31m2/exist && error "mlink to exist file"
2106         mlink $DIR/d31m/s $DIR/d31m2 && error "mlink to parent dir"
2107         mlink $DIR/d31m2 $DIR/d31m/s && error "mlink parent dir to target"
2108         mlink $DIR/d31m/not-exist $DIR/d31m2/foo && error "mlink non-existing to new"
2109         mlink $DIR/d31m/not-exist $DIR/d31m2/s && error "mlink non-existing to exist"
2110         return 0
2111 }
2112 run_test 31m "link to file: the same, non-existing, dir==============="
2113
2114 test_31n() {
2115         [ -e /proc/self/fd/173 ] && echo "skipping, fd 173 is in use" && return
2116         touch $DIR/$tfile || error "cannot create '$DIR/$tfile'"
2117         nlink=$(stat --format=%h $DIR/$tfile)
2118         [ ${nlink:--1} -eq 1 ] || error "nlink is $nlink, expected 1"
2119         exec 173<$DIR/$tfile
2120         trap "exec 173<&-" EXIT
2121         nlink=$(stat --dereference --format=%h /proc/self/fd/173)
2122         [ ${nlink:--1} -eq 1 ] || error "nlink is $nlink, expected 1"
2123         rm $DIR/$tfile || error "cannot remove '$DIR/$tfile'"
2124         nlink=$(stat --dereference --format=%h /proc/self/fd/173)
2125         [ ${nlink:--1} -eq 0 ] || error "nlink is $nlink, expected 0"
2126         exec 173<&-
2127 }
2128 run_test 31n "check link count of unlinked file"
2129
2130 link_one() {
2131         local TEMPNAME=$(mktemp $1_XXXXXX)
2132         mlink $TEMPNAME $1 2> /dev/null &&
2133                 echo "$BASHPID: link $TEMPNAME to $1 succeeded"
2134         munlink $TEMPNAME
2135 }
2136
2137 test_31o() { # LU-2901
2138         mkdir -p $DIR/$tdir
2139         for LOOP in $(seq 100); do
2140                 rm -f $DIR/$tdir/$tfile*
2141                 for THREAD in $(seq 8); do
2142                         link_one $DIR/$tdir/$tfile.$LOOP &
2143                 done
2144                 wait
2145                 local LINKS=$(ls -1 $DIR/$tdir | grep -c $tfile.$LOOP)
2146                 [ $LINKS -gt 1 ] && ls $DIR/$tdir &&
2147                         error "$LINKS duplicate links to $tfile.$LOOP" &&
2148                         break || true
2149         done
2150 }
2151 run_test 31o "duplicate hard links with same filename"
2152
2153 cleanup_test32_mount() {
2154         trap 0
2155         $UMOUNT $DIR/$tdir/ext2-mountpoint
2156 }
2157
2158 test_32a() {
2159         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2160         echo "== more mountpoints and symlinks ================="
2161         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2162         trap cleanup_test32_mount EXIT
2163         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2164         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2165         $CHECKSTAT -t dir $DIR/$tdir/ext2-mountpoint/.. || error
2166         cleanup_test32_mount
2167 }
2168 run_test 32a "stat d32a/ext2-mountpoint/.. ====================="
2169
2170 test_32b() {
2171         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2172         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2173         trap cleanup_test32_mount EXIT
2174         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2175         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2176         ls -al $DIR/$tdir/ext2-mountpoint/.. || error
2177         cleanup_test32_mount
2178 }
2179 run_test 32b "open d32b/ext2-mountpoint/.. ====================="
2180
2181 test_32c() {
2182         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2183         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2184         trap cleanup_test32_mount EXIT
2185         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2186         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2187         test_mkdir -p $DIR/$tdir/d2/test_dir
2188         $CHECKSTAT -t dir $DIR/$tdir/ext2-mountpoint/../d2/test_dir || error
2189         cleanup_test32_mount
2190 }
2191 run_test 32c "stat d32c/ext2-mountpoint/../d2/test_dir ========="
2192
2193 test_32d() {
2194         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2195         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2196         trap cleanup_test32_mount EXIT
2197         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2198         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2199         test_mkdir -p $DIR/$tdir/d2/test_dir
2200         ls -al $DIR/$tdir/ext2-mountpoint/../d2/test_dir || error
2201         cleanup_test32_mount
2202 }
2203 run_test 32d "open d32d/ext2-mountpoint/../d2/test_dir ========="
2204
2205 test_32e() {
2206         [ -e $DIR/d32e ] && rm -fr $DIR/d32e
2207         test_mkdir -p $DIR/d32e/tmp
2208         TMP_DIR=$DIR/d32e/tmp
2209         ln -s $DIR/d32e $TMP_DIR/symlink11
2210         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2211         $CHECKSTAT -t link $DIR/d32e/tmp/symlink11 || error
2212         $CHECKSTAT -t link $DIR/d32e/symlink01 || error
2213 }
2214 run_test 32e "stat d32e/symlink->tmp/symlink->lustre-subdir ===="
2215
2216 test_32f() {
2217         [ -e $DIR/d32f ] && rm -fr $DIR/d32f
2218         test_mkdir -p $DIR/d32f/tmp
2219         TMP_DIR=$DIR/d32f/tmp
2220         ln -s $DIR/d32f $TMP_DIR/symlink11
2221         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2222         ls $DIR/d32f/tmp/symlink11  || error
2223         ls $DIR/d32f/symlink01 || error
2224 }
2225 run_test 32f "open d32f/symlink->tmp/symlink->lustre-subdir ===="
2226
2227 test_32g() {
2228         TMP_DIR=$DIR/$tdir/tmp
2229         test_mkdir -p $DIR/$tdir/tmp
2230         test_mkdir $DIR/${tdir}2
2231         ln -s $DIR/${tdir}2 $TMP_DIR/symlink12
2232         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2233         $CHECKSTAT -t link $TMP_DIR/symlink12 || error
2234         $CHECKSTAT -t link $DIR/$tdir/symlink02 || error
2235         $CHECKSTAT -t dir -f $TMP_DIR/symlink12 || error
2236         $CHECKSTAT -t dir -f $DIR/$tdir/symlink02 || error
2237 }
2238 run_test 32g "stat d32g/symlink->tmp/symlink->lustre-subdir/${tdir}2"
2239
2240 test_32h() {
2241         rm -fr $DIR/$tdir $DIR/${tdir}2
2242         TMP_DIR=$DIR/$tdir/tmp
2243         test_mkdir -p $DIR/$tdir/tmp
2244         test_mkdir $DIR/${tdir}2
2245         ln -s $DIR/${tdir}2 $TMP_DIR/symlink12
2246         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2247         ls $TMP_DIR/symlink12 || error
2248         ls $DIR/$tdir/symlink02  || error
2249 }
2250 run_test 32h "open d32h/symlink->tmp/symlink->lustre-subdir/${tdir}2"
2251
2252 test_32i() {
2253         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2254         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2255         trap cleanup_test32_mount EXIT
2256         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2257         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2258         touch $DIR/$tdir/test_file
2259         $CHECKSTAT -t file $DIR/$tdir/ext2-mountpoint/../test_file || error
2260         cleanup_test32_mount
2261 }
2262 run_test 32i "stat d32i/ext2-mountpoint/../test_file ==========="
2263
2264 test_32j() {
2265         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2266         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2267         trap cleanup_test32_mount EXIT
2268         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2269         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2270         touch $DIR/$tdir/test_file
2271         cat $DIR/$tdir/ext2-mountpoint/../test_file || error
2272         cleanup_test32_mount
2273 }
2274 run_test 32j "open d32j/ext2-mountpoint/../test_file ==========="
2275
2276 test_32k() {
2277         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2278         rm -fr $DIR/$tdir
2279         trap cleanup_test32_mount EXIT
2280         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2281         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint
2282         test_mkdir -p $DIR/$tdir/d2
2283         touch $DIR/$tdir/d2/test_file || error
2284         $CHECKSTAT -t file $DIR/$tdir/ext2-mountpoint/../d2/test_file || error
2285         cleanup_test32_mount
2286 }
2287 run_test 32k "stat d32k/ext2-mountpoint/../d2/test_file ========"
2288
2289 test_32l() {
2290         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2291         rm -fr $DIR/$tdir
2292         trap cleanup_test32_mount EXIT
2293         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2294         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2295         test_mkdir -p $DIR/$tdir/d2
2296         touch $DIR/$tdir/d2/test_file
2297         cat  $DIR/$tdir/ext2-mountpoint/../d2/test_file || error
2298         cleanup_test32_mount
2299 }
2300 run_test 32l "open d32l/ext2-mountpoint/../d2/test_file ========"
2301
2302 test_32m() {
2303         rm -fr $DIR/d32m
2304         test_mkdir -p $DIR/d32m/tmp
2305         TMP_DIR=$DIR/d32m/tmp
2306         ln -s $DIR $TMP_DIR/symlink11
2307         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2308         $CHECKSTAT -t link $DIR/d32m/tmp/symlink11 || error
2309         $CHECKSTAT -t link $DIR/d32m/symlink01 || error
2310 }
2311 run_test 32m "stat d32m/symlink->tmp/symlink->lustre-root ======"
2312
2313 test_32n() {
2314         rm -fr $DIR/d32n
2315         test_mkdir -p $DIR/d32n/tmp
2316         TMP_DIR=$DIR/d32n/tmp
2317         ln -s $DIR $TMP_DIR/symlink11
2318         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2319         ls -l $DIR/d32n/tmp/symlink11  || error
2320         ls -l $DIR/d32n/symlink01 || error
2321 }
2322 run_test 32n "open d32n/symlink->tmp/symlink->lustre-root ======"
2323
2324 test_32o() {
2325         rm -fr $DIR/d32o $DIR/$tfile
2326         touch $DIR/$tfile
2327         test_mkdir -p $DIR/d32o/tmp
2328         TMP_DIR=$DIR/d32o/tmp
2329         ln -s $DIR/$tfile $TMP_DIR/symlink12
2330         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2331         $CHECKSTAT -t link $DIR/d32o/tmp/symlink12 || error
2332         $CHECKSTAT -t link $DIR/d32o/symlink02 || error
2333         $CHECKSTAT -t file -f $DIR/d32o/tmp/symlink12 || error
2334         $CHECKSTAT -t file -f $DIR/d32o/symlink02 || error
2335 }
2336 run_test 32o "stat d32o/symlink->tmp/symlink->lustre-root/$tfile"
2337
2338 test_32p() {
2339     log 32p_1
2340         rm -fr $DIR/d32p
2341     log 32p_2
2342         rm -f $DIR/$tfile
2343     log 32p_3
2344         touch $DIR/$tfile
2345     log 32p_4
2346         test_mkdir -p $DIR/d32p/tmp
2347     log 32p_5
2348         TMP_DIR=$DIR/d32p/tmp
2349     log 32p_6
2350         ln -s $DIR/$tfile $TMP_DIR/symlink12
2351     log 32p_7
2352         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2353     log 32p_8
2354         cat $DIR/d32p/tmp/symlink12 || error
2355     log 32p_9
2356         cat $DIR/d32p/symlink02 || error
2357     log 32p_10
2358 }
2359 run_test 32p "open d32p/symlink->tmp/symlink->lustre-root/$tfile"
2360
2361 cleanup_testdir_mount() {
2362         trap 0
2363         $UMOUNT $DIR/$tdir
2364 }
2365
2366 test_32q() {
2367         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2368         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2369         trap cleanup_testdir_mount EXIT
2370         test_mkdir -p $DIR/$tdir
2371         touch $DIR/$tdir/under_the_mount
2372         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir
2373         ls $DIR/$tdir | grep "\<under_the_mount\>" && error
2374         cleanup_testdir_mount
2375 }
2376 run_test 32q "stat follows mountpoints in Lustre (should return error)"
2377
2378 test_32r() {
2379         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2380         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2381         trap cleanup_testdir_mount EXIT
2382         test_mkdir -p $DIR/$tdir
2383         touch $DIR/$tdir/under_the_mount
2384         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir
2385         ls $DIR/$tdir | grep -q under_the_mount && error || true
2386         cleanup_testdir_mount
2387 }
2388 run_test 32r "opendir follows mountpoints in Lustre (should return error)"
2389
2390 test_33aa() {
2391         rm -f $DIR/$tfile
2392         touch $DIR/$tfile
2393         chmod 444 $DIR/$tfile
2394         chown $RUNAS_ID $DIR/$tfile
2395         log 33_1
2396         $RUNAS $OPENFILE -f O_RDWR $DIR/$tfile && error || true
2397         log 33_2
2398 }
2399 run_test 33aa "write file with mode 444 (should return error) ===="
2400
2401 test_33a() {
2402         rm -fr $DIR/d33
2403         test_mkdir -p $DIR/d33
2404         chown $RUNAS_ID $DIR/d33
2405         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $DIR/d33/f33|| error "create"
2406         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $DIR/d33/f33 && \
2407                 error "open RDWR" || true
2408 }
2409 run_test 33a "test open file(mode=0444) with O_RDWR (should return error)"
2410
2411 test_33b() {
2412         rm -fr $DIR/d33
2413         test_mkdir -p $DIR/d33
2414         chown $RUNAS_ID $DIR/d33
2415         $RUNAS $OPENFILE -f 1286739555 $DIR/d33/f33 && error "create" || true
2416 }
2417 run_test 33b "test open file with malformed flags (No panic and return error)"
2418
2419 test_33c() {
2420         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2421         local ostnum
2422         local ostname
2423         local write_bytes
2424         local all_zeros
2425
2426         remote_ost_nodsh && skip "remote OST with nodsh" && return
2427         all_zeros=:
2428         rm -fr $DIR/d33
2429         test_mkdir -p $DIR/d33
2430         # Read: 0, Write: 4, create/destroy: 2/0, stat: 1, punch: 0
2431
2432         sync
2433         for ostnum in $(seq $OSTCOUNT); do
2434                 # test-framework's OST numbering is one-based, while Lustre's
2435                 # is zero-based
2436                 ostname=$(printf "$FSNAME-OST%.4x" $((ostnum - 1)))
2437                 # Parsing llobdstat's output sucks; we could grep the /proc
2438                 # path, but that's likely to not be as portable as using the
2439                 # llobdstat utility.  So we parse lctl output instead.
2440                 write_bytes=$(do_facet ost$ostnum lctl get_param -n \
2441                         obdfilter/$ostname/stats |
2442                         awk '/^write_bytes/ {print $7}' )
2443                 echo "baseline_write_bytes@$OSTnum/$ostname=$write_bytes"
2444                 if (( ${write_bytes:-0} > 0 ))
2445                 then
2446                         all_zeros=false
2447                         break;
2448                 fi
2449         done
2450
2451         $all_zeros || return 0
2452
2453         # Write four bytes
2454         echo foo > $DIR/d33/bar
2455         # Really write them
2456         sync
2457
2458         # Total up write_bytes after writing.  We'd better find non-zeros.
2459         for ostnum in $(seq $OSTCOUNT); do
2460                 ostname=$(printf "$FSNAME-OST%.4x" $((ostnum - 1)))
2461                 write_bytes=$(do_facet ost$ostnum lctl get_param -n \
2462                         obdfilter/$ostname/stats |
2463                         awk '/^write_bytes/ {print $7}' )
2464                 echo "write_bytes@$OSTnum/$ostname=$write_bytes"
2465                 if (( ${write_bytes:-0} > 0 ))
2466                 then
2467                         all_zeros=false
2468                         break;
2469                 fi
2470         done
2471
2472         if $all_zeros
2473         then
2474                 for ostnum in $(seq $OSTCOUNT); do
2475                         ostname=$(printf "$FSNAME-OST%.4x" $((ostnum - 1)))
2476                         echo "Check that write_bytes is present in obdfilter/*/stats:"
2477                         do_facet ost$ostnum lctl get_param -n \
2478                                 obdfilter/$ostname/stats
2479                 done
2480                 error "OST not keeping write_bytes stats (b22312)"
2481         fi
2482 }
2483 run_test 33c "test llobdstat and write_bytes"
2484
2485 test_33d() {
2486         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
2487         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2488         local MDTIDX=1
2489         local remote_dir=$DIR/$tdir/remote_dir
2490
2491         mkdir -p $DIR/$tdir
2492         $LFS mkdir -i $MDTIDX $remote_dir ||
2493                 error "create remote directory failed"
2494
2495         touch $remote_dir/$tfile
2496         chmod 444 $remote_dir/$tfile
2497         chown $RUNAS_ID $remote_dir/$tfile
2498
2499         $RUNAS $OPENFILE -f O_RDWR $DIR/$tfile && error || true
2500
2501         chown $RUNAS_ID $remote_dir
2502         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $remote_dir/f33 ||
2503                                         error "create" || true
2504         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $remote_dir/f33 &&
2505                                     error "open RDWR" || true
2506         $RUNAS $OPENFILE -f 1286739555 $remote_dir/f33 &&
2507                                     error "create" || true
2508 }
2509 run_test 33d "openfile with 444 modes and malformed flags under remote dir"
2510
2511 TEST_34_SIZE=${TEST_34_SIZE:-2000000000000}
2512 test_34a() {
2513         rm -f $DIR/f34
2514         $MCREATE $DIR/f34 || error
2515         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" || error
2516         $TRUNCATE $DIR/f34 $TEST_34_SIZE || error
2517         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" || error
2518         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2519 }
2520 run_test 34a "truncate file that has not been opened ==========="
2521
2522 test_34b() {
2523         [ ! -f $DIR/f34 ] && test_34a
2524         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2525         $OPENFILE -f O_RDONLY $DIR/f34
2526         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" || error
2527         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2528 }
2529 run_test 34b "O_RDONLY opening file doesn't create objects ====="
2530
2531 test_34c() {
2532         [ ! -f $DIR/f34 ] && test_34a
2533         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2534         $OPENFILE -f O_RDWR $DIR/f34
2535         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" && error
2536         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2537 }
2538 run_test 34c "O_RDWR opening file-with-size works =============="
2539
2540 test_34d() {
2541         [ ! -f $DIR/f34 ] && test_34a
2542         dd if=/dev/zero of=$DIR/f34 conv=notrunc bs=4k count=1 || error
2543         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2544         rm $DIR/f34
2545 }
2546 run_test 34d "write to sparse file ============================="
2547
2548 test_34e() {
2549         rm -f $DIR/f34e
2550         $MCREATE $DIR/f34e || error
2551         $TRUNCATE $DIR/f34e 1000 || error
2552         $CHECKSTAT -s 1000 $DIR/f34e || error
2553         $OPENFILE -f O_RDWR $DIR/f34e
2554         $CHECKSTAT -s 1000 $DIR/f34e || error
2555 }
2556 run_test 34e "create objects, some with size and some without =="
2557
2558 test_34f() { # bug 6242, 6243
2559         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2560         SIZE34F=48000
2561         rm -f $DIR/f34f
2562         $MCREATE $DIR/f34f || error
2563         $TRUNCATE $DIR/f34f $SIZE34F || error "truncating $DIR/f3f to $SIZE34F"
2564         dd if=$DIR/f34f of=$TMP/f34f
2565         $CHECKSTAT -s $SIZE34F $TMP/f34f || error "$TMP/f34f not $SIZE34F bytes"
2566         dd if=/dev/zero of=$TMP/f34fzero bs=$SIZE34F count=1
2567         cmp $DIR/f34f $TMP/f34fzero || error "$DIR/f34f not all zero"
2568         cmp $TMP/f34f $TMP/f34fzero || error "$TMP/f34f not all zero"
2569         rm $TMP/f34f $TMP/f34fzero $DIR/f34f
2570 }
2571 run_test 34f "read from a file with no objects until EOF ======="
2572
2573 test_34g() {
2574         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2575         dd if=/dev/zero of=$DIR/$tfile bs=1 count=100 seek=$TEST_34_SIZE || error
2576         $TRUNCATE $DIR/$tfile $((TEST_34_SIZE / 2))|| error
2577         $CHECKSTAT -s $((TEST_34_SIZE / 2)) $DIR/$tfile || error "truncate failed"
2578         cancel_lru_locks osc
2579         $CHECKSTAT -s $((TEST_34_SIZE / 2)) $DIR/$tfile || \
2580                 error "wrong size after lock cancel"
2581
2582         $TRUNCATE $DIR/$tfile $TEST_34_SIZE || error
2583         $CHECKSTAT -s $TEST_34_SIZE $DIR/$tfile || \
2584                 error "expanding truncate failed"
2585         cancel_lru_locks osc
2586         $CHECKSTAT -s $TEST_34_SIZE $DIR/$tfile || \
2587                 error "wrong expanded size after lock cancel"
2588 }
2589 run_test 34g "truncate long file ==============================="
2590
2591 test_34h() {
2592         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2593         local gid=10
2594         local sz=1000
2595
2596         dd if=/dev/zero of=$DIR/$tfile bs=1M count=10 || error
2597         sync # Flush the cache so that multiop below does not block on cache
2598              # flush when getting the group lock
2599         $MULTIOP $DIR/$tfile OG${gid}T${sz}g${gid}c &
2600         MULTIPID=$!
2601
2602         # Since just timed wait is not good enough, let's do a sync write
2603         # that way we are sure enough time for a roundtrip + processing
2604         # passed + 2 seconds of extra margin.
2605         dd if=/dev/zero of=$DIR/${tfile}-1 bs=4096 oflag=direct count=1
2606         rm $DIR/${tfile}-1
2607         sleep 2
2608
2609         if [[ `ps h -o comm -p $MULTIPID` == "multiop" ]]; then
2610                 error "Multiop blocked on ftruncate, pid=$MULTIPID"
2611                 kill -9 $MULTIPID
2612         fi
2613         wait $MULTIPID
2614         local nsz=`stat -c %s $DIR/$tfile`
2615         [[ $nsz == $sz ]] || error "New size wrong $nsz != $sz"
2616 }
2617 run_test 34h "ftruncate file under grouplock should not block"
2618
2619 test_35a() {
2620         cp /bin/sh $DIR/f35a
2621         chmod 444 $DIR/f35a
2622         chown $RUNAS_ID $DIR/f35a
2623         $RUNAS $DIR/f35a && error || true
2624         rm $DIR/f35a
2625 }
2626 run_test 35a "exec file with mode 444 (should return and not leak) ====="
2627
2628 test_36a() {
2629         rm -f $DIR/f36
2630         utime $DIR/f36 || error
2631 }
2632 run_test 36a "MDS utime check (mknod, utime) ==================="
2633
2634 test_36b() {
2635         echo "" > $DIR/f36
2636         utime $DIR/f36 || error
2637 }
2638 run_test 36b "OST utime check (open, utime) ===================="
2639
2640 test_36c() {
2641         rm -f $DIR/d36/f36
2642         test_mkdir $DIR/d36
2643         chown $RUNAS_ID $DIR/d36
2644         $RUNAS utime $DIR/d36/f36 || error
2645 }
2646 run_test 36c "non-root MDS utime check (mknod, utime) =========="
2647
2648 test_36d() {
2649         [ ! -d $DIR/d36 ] && test_36c
2650         echo "" > $DIR/d36/f36
2651         $RUNAS utime $DIR/d36/f36 || error
2652 }
2653 run_test 36d "non-root OST utime check (open, utime) ==========="
2654
2655 test_36e() {
2656         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID -- skipping" && return
2657         test_mkdir -p $DIR/$tdir
2658         touch $DIR/$tdir/$tfile
2659         $RUNAS utime $DIR/$tdir/$tfile && \
2660                 error "utime worked, expected failure" || true
2661 }
2662 run_test 36e "utime on non-owned file (should return error) ===="
2663
2664 subr_36fh() {
2665         local fl="$1"
2666         local LANG_SAVE=$LANG
2667         local LC_LANG_SAVE=$LC_LANG
2668         export LANG=C LC_LANG=C # for date language
2669
2670         DATESTR="Dec 20  2000"
2671         test_mkdir -p $DIR/$tdir
2672         lctl set_param fail_loc=$fl
2673         date; date +%s
2674         cp /etc/hosts $DIR/$tdir/$tfile
2675         sync & # write RPC generated with "current" inode timestamp, but delayed
2676         sleep 1
2677         touch --date="$DATESTR" $DIR/$tdir/$tfile # setattr timestamp in past
2678         LS_BEFORE="`ls -l $DIR/$tdir/$tfile`" # old timestamp from client cache
2679         cancel_lru_locks osc
2680         LS_AFTER="`ls -l $DIR/$tdir/$tfile`"  # timestamp from OST object
2681         date; date +%s
2682         [ "$LS_BEFORE" != "$LS_AFTER" ] && \
2683                 echo "BEFORE: $LS_BEFORE" && \
2684                 echo "AFTER : $LS_AFTER" && \
2685                 echo "WANT  : $DATESTR" && \
2686                 error "$DIR/$tdir/$tfile timestamps changed" || true
2687
2688         export LANG=$LANG_SAVE LC_LANG=$LC_LANG_SAVE
2689 }
2690
2691 test_36f() {
2692         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2693         #define OBD_FAIL_OST_BRW_PAUSE_BULK 0x214
2694         subr_36fh "0x80000214"
2695 }
2696 run_test 36f "utime on file racing with OST BRW write =========="
2697
2698 test_36g() {
2699         remote_ost_nodsh && skip "remote OST with nodsh" && return
2700         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2701         local fmd_max_age
2702         local fmd_before
2703         local fmd_after
2704
2705         test_mkdir -p $DIR/$tdir
2706         fmd_max_age=$(do_facet ost1 \
2707                 "lctl get_param -n obdfilter.*.client_cache_seconds 2> /dev/null | \
2708                 head -n 1")
2709
2710         fmd_before=$(do_facet ost1 \
2711                 "awk '/ll_fmd_cache/ {print \\\$2}' /proc/slabinfo")
2712         touch $DIR/$tdir/$tfile
2713         sleep $((fmd_max_age + 12))
2714         fmd_after=$(do_facet ost1 \
2715                 "awk '/ll_fmd_cache/ {print \\\$2}' /proc/slabinfo")
2716
2717         echo "fmd_before: $fmd_before"
2718         echo "fmd_after: $fmd_after"
2719         [ "$fmd_after" -gt "$fmd_before" ] && \
2720                 echo "AFTER: $fmd_after > BEFORE: $fmd_before" && \
2721                 error "fmd didn't expire after ping" || true
2722 }
2723 run_test 36g "filter mod data cache expiry ====================="
2724
2725 test_36h() {
2726         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2727         #define OBD_FAIL_OST_BRW_PAUSE_BULK2 0x227
2728         subr_36fh "0x80000227"
2729 }
2730 run_test 36h "utime on file racing with OST BRW write =========="
2731
2732 # test_37 - duplicate with tests 32q 32r
2733
2734 test_38() {
2735         local file=$DIR/$tfile
2736         touch $file
2737         openfile -f O_DIRECTORY $file
2738         local RC=$?
2739         local ENOTDIR=20
2740         [ $RC -eq 0 ] && error "opened file $file with O_DIRECTORY" || true
2741         [ $RC -eq $ENOTDIR ] || error "error $RC should be ENOTDIR ($ENOTDIR)"
2742 }
2743 run_test 38 "open a regular file with O_DIRECTORY should return -ENOTDIR ==="
2744
2745 test_39() {
2746         touch $DIR/$tfile
2747         touch $DIR/${tfile}2
2748 #       ls -l  $DIR/$tfile $DIR/${tfile}2
2749 #       ls -lu  $DIR/$tfile $DIR/${tfile}2
2750 #       ls -lc  $DIR/$tfile $DIR/${tfile}2
2751         sleep 2
2752         $OPENFILE -f O_CREAT:O_TRUNC:O_WRONLY $DIR/${tfile}2
2753         if [ ! $DIR/${tfile}2 -nt $DIR/$tfile ]; then
2754                 echo "mtime"
2755                 ls -l --full-time $DIR/$tfile $DIR/${tfile}2
2756                 echo "atime"
2757                 ls -lu --full-time $DIR/$tfile $DIR/${tfile}2
2758                 echo "ctime"
2759                 ls -lc --full-time $DIR/$tfile $DIR/${tfile}2
2760                 error "O_TRUNC didn't change timestamps"
2761         fi
2762 }
2763 run_test 39 "mtime changed on create ==========================="
2764
2765 test_39b() {
2766         test_mkdir -p $DIR/$tdir
2767         cp -p /etc/passwd $DIR/$tdir/fopen
2768         cp -p /etc/passwd $DIR/$tdir/flink
2769         cp -p /etc/passwd $DIR/$tdir/funlink
2770         cp -p /etc/passwd $DIR/$tdir/frename
2771         ln $DIR/$tdir/funlink $DIR/$tdir/funlink2
2772
2773         sleep 1
2774         echo "aaaaaa" >> $DIR/$tdir/fopen
2775         echo "aaaaaa" >> $DIR/$tdir/flink
2776         echo "aaaaaa" >> $DIR/$tdir/funlink
2777         echo "aaaaaa" >> $DIR/$tdir/frename
2778
2779         local open_new=`stat -c %Y $DIR/$tdir/fopen`
2780         local link_new=`stat -c %Y $DIR/$tdir/flink`
2781         local unlink_new=`stat -c %Y $DIR/$tdir/funlink`
2782         local rename_new=`stat -c %Y $DIR/$tdir/frename`
2783
2784         cat $DIR/$tdir/fopen > /dev/null
2785         ln $DIR/$tdir/flink $DIR/$tdir/flink2
2786         rm -f $DIR/$tdir/funlink2
2787         mv -f $DIR/$tdir/frename $DIR/$tdir/frename2
2788
2789         for (( i=0; i < 2; i++ )) ; do
2790                 local open_new2=`stat -c %Y $DIR/$tdir/fopen`
2791                 local link_new2=`stat -c %Y $DIR/$tdir/flink`
2792                 local unlink_new2=`stat -c %Y $DIR/$tdir/funlink`
2793                 local rename_new2=`stat -c %Y $DIR/$tdir/frename2`
2794
2795                 [ $open_new2 -eq $open_new ] || error "open file reverses mtime"
2796                 [ $link_new2 -eq $link_new ] || error "link file reverses mtime"
2797                 [ $unlink_new2 -eq $unlink_new ] || error "unlink file reverses mtime"
2798                 [ $rename_new2 -eq $rename_new ] || error "rename file reverses mtime"
2799
2800                 cancel_lru_locks osc
2801                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2802         done
2803 }
2804 run_test 39b "mtime change on open, link, unlink, rename  ======"
2805
2806 # this should be set to past
2807 TEST_39_MTIME=`date -d "1 year ago" +%s`
2808
2809 # bug 11063
2810 test_39c() {
2811         touch $DIR1/$tfile
2812         sleep 2
2813         local mtime0=`stat -c %Y $DIR1/$tfile`
2814
2815         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
2816         local mtime1=`stat -c %Y $DIR1/$tfile`
2817         [ "$mtime1" = $TEST_39_MTIME ] || \
2818                 error "mtime is not set to past: $mtime1, should be $TEST_39_MTIME"
2819
2820         local d1=`date +%s`
2821         echo hello >> $DIR1/$tfile
2822         local d2=`date +%s`
2823         local mtime2=`stat -c %Y $DIR1/$tfile`
2824         [ "$mtime2" -ge "$d1" ] && [ "$mtime2" -le "$d2" ] || \
2825                 error "mtime is not updated on write: $d1 <= $mtime2 <= $d2"
2826
2827         mv $DIR1/$tfile $DIR1/$tfile-1
2828
2829         for (( i=0; i < 2; i++ )) ; do
2830                 local mtime3=`stat -c %Y $DIR1/$tfile-1`
2831                 [ "$mtime2" = "$mtime3" ] || \
2832                         error "mtime ($mtime2) changed (to $mtime3) on rename"
2833
2834                 cancel_lru_locks osc
2835                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2836         done
2837 }
2838 run_test 39c "mtime change on rename ==========================="
2839
2840 # bug 21114
2841 test_39d() {
2842         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2843         touch $DIR1/$tfile
2844
2845         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
2846
2847         for (( i=0; i < 2; i++ )) ; do
2848                 local mtime=`stat -c %Y $DIR1/$tfile`
2849                 [ $mtime = $TEST_39_MTIME ] || \
2850                         error "mtime($mtime) is not set to $TEST_39_MTIME"
2851
2852                 cancel_lru_locks osc
2853                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2854         done
2855 }
2856 run_test 39d "create, utime, stat =============================="
2857
2858 # bug 21114
2859 test_39e() {
2860         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2861         touch $DIR1/$tfile
2862         local mtime1=`stat -c %Y $DIR1/$tfile`
2863
2864         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
2865
2866         for (( i=0; i < 2; i++ )) ; do
2867                 local mtime2=`stat -c %Y $DIR1/$tfile`
2868                 [ $mtime2 = $TEST_39_MTIME ] || \
2869                         error "mtime($mtime2) is not set to $TEST_39_MTIME"
2870
2871                 cancel_lru_locks osc
2872                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2873         done
2874 }
2875 run_test 39e "create, stat, utime, stat ========================"
2876
2877 # bug 21114
2878 test_39f() {
2879         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2880         touch $DIR1/$tfile
2881         mtime1=`stat -c %Y $DIR1/$tfile`
2882
2883         sleep 2
2884         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
2885
2886         for (( i=0; i < 2; i++ )) ; do
2887                 local mtime2=`stat -c %Y $DIR1/$tfile`
2888                 [ $mtime2 = $TEST_39_MTIME ] || \
2889                         error "mtime($mtime2) is not set to $TEST_39_MTIME"
2890
2891                 cancel_lru_locks osc
2892                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2893         done
2894 }
2895 run_test 39f "create, stat, sleep, utime, stat ================="
2896
2897 # bug 11063
2898 test_39g() {
2899         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2900         echo hello >> $DIR1/$tfile
2901         local mtime1=`stat -c %Y $DIR1/$tfile`
2902
2903         sleep 2
2904         chmod o+r $DIR1/$tfile
2905
2906         for (( i=0; i < 2; i++ )) ; do
2907                 local mtime2=`stat -c %Y $DIR1/$tfile`
2908                 [ "$mtime1" = "$mtime2" ] || \
2909                         error "lost mtime: $mtime2, should be $mtime1"
2910
2911                 cancel_lru_locks osc
2912                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2913         done
2914 }
2915 run_test 39g "write, chmod, stat ==============================="
2916
2917 # bug 11063
2918 test_39h() {
2919         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2920         touch $DIR1/$tfile
2921         sleep 1
2922
2923         local d1=`date`
2924         echo hello >> $DIR1/$tfile
2925         local mtime1=`stat -c %Y $DIR1/$tfile`
2926
2927         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
2928         local d2=`date`
2929         if [ "$d1" != "$d2" ]; then
2930                 echo "write and touch not within one second"
2931         else
2932                 for (( i=0; i < 2; i++ )) ; do
2933                         local mtime2=`stat -c %Y $DIR1/$tfile`
2934                         [ "$mtime2" = $TEST_39_MTIME ] || \
2935                                 error "lost mtime: $mtime2, should be $TEST_39_MTIME"
2936
2937                         cancel_lru_locks osc
2938                         if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2939                 done
2940         fi
2941 }
2942 run_test 39h "write, utime within one second, stat ============="
2943
2944 test_39i() {
2945         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2946         touch $DIR1/$tfile
2947         sleep 1
2948
2949         echo hello >> $DIR1/$tfile
2950         local mtime1=`stat -c %Y $DIR1/$tfile`
2951
2952         mv $DIR1/$tfile $DIR1/$tfile-1
2953
2954         for (( i=0; i < 2; i++ )) ; do
2955                 local mtime2=`stat -c %Y $DIR1/$tfile-1`
2956
2957                 [ "$mtime1" = "$mtime2" ] || \
2958                         error "lost mtime: $mtime2, should be $mtime1"
2959
2960                 cancel_lru_locks osc
2961                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2962         done
2963 }
2964 run_test 39i "write, rename, stat =============================="
2965
2966 test_39j() {
2967         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2968         start_full_debug_logging
2969         touch $DIR1/$tfile
2970         sleep 1
2971
2972         #define OBD_FAIL_OSC_DELAY_SETTIME       0x412
2973         lctl set_param fail_loc=0x80000412
2974         multiop_bg_pause $DIR1/$tfile oO_RDWR:w2097152_c ||
2975                 error "multiop failed"
2976         local multipid=$!
2977         local mtime1=`stat -c %Y $DIR1/$tfile`
2978
2979         mv $DIR1/$tfile $DIR1/$tfile-1
2980
2981         kill -USR1 $multipid
2982         wait $multipid || error "multiop close failed"
2983
2984         for (( i=0; i < 2; i++ )) ; do
2985                 local mtime2=`stat -c %Y $DIR1/$tfile-1`
2986                 [ "$mtime1" = "$mtime2" ] ||
2987                         error "mtime is lost on close: $mtime2, " \
2988                               "should be $mtime1"
2989
2990                 cancel_lru_locks osc
2991                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2992         done
2993         lctl set_param fail_loc=0
2994         stop_full_debug_logging
2995 }
2996 run_test 39j "write, rename, close, stat ======================="
2997
2998 test_39k() {
2999         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3000         touch $DIR1/$tfile
3001         sleep 1
3002
3003         multiop_bg_pause $DIR1/$tfile oO_RDWR:w2097152_c || error "multiop failed"
3004         local multipid=$!
3005         local mtime1=`stat -c %Y $DIR1/$tfile`
3006
3007         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3008
3009         kill -USR1 $multipid
3010         wait $multipid || error "multiop close failed"
3011
3012         for (( i=0; i < 2; i++ )) ; do
3013                 local mtime2=`stat -c %Y $DIR1/$tfile`
3014
3015                 [ "$mtime2" = $TEST_39_MTIME ] || \
3016                         error "mtime is lost on close: $mtime2, should be $TEST_39_MTIME"
3017
3018                 cancel_lru_locks osc
3019                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3020         done
3021 }
3022 run_test 39k "write, utime, close, stat ========================"
3023
3024 # this should be set to future
3025 TEST_39_ATIME=`date -d "1 year" +%s`
3026
3027 test_39l() {
3028         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3029         remote_mds_nodsh && skip "remote MDS with nodsh" && return
3030         local atime_diff=$(do_facet $SINGLEMDS \
3031                                 lctl get_param -n mdd.*MDT0000*.atime_diff)
3032         rm -rf $DIR/$tdir
3033         mkdir -p $DIR/$tdir
3034
3035         # test setting directory atime to future
3036         touch -a -d @$TEST_39_ATIME $DIR/$tdir
3037         local atime=$(stat -c %X $DIR/$tdir)
3038         [ "$atime" = $TEST_39_ATIME ] || \
3039                 error "atime is not set to future: $atime, $TEST_39_ATIME"
3040
3041         # test setting directory atime from future to now
3042         local d1=$(date +%s)
3043         ls $DIR/$tdir
3044         local d2=$(date +%s)
3045
3046         cancel_lru_locks mdc
3047         atime=$(stat -c %X $DIR/$tdir)
3048         [ "$atime" -ge "$d1" -a "$atime" -le "$d2" ] || \
3049                 error "atime is not updated from future: $atime, $d1<atime<$d2"
3050
3051         do_facet $SINGLEMDS lctl set_param -n mdd.*MDT0000*.atime_diff=2
3052         sleep 3
3053
3054         # test setting directory atime when now > dir atime + atime_diff
3055         d1=$(date +%s)
3056         ls $DIR/$tdir
3057         d2=$(date +%s)
3058         cancel_lru_locks mdc
3059         atime=$(stat -c %X $DIR/$tdir)
3060         [ "$atime" -ge "$d1" -a "$atime" -le "$d2" ] || \
3061                 error "atime is not updated  : $atime, should be $d2"
3062
3063         do_facet $SINGLEMDS lctl set_param -n mdd.*MDT0000*.atime_diff=60
3064         sleep 3
3065
3066         # test not setting directory atime when now < dir atime + atime_diff
3067         ls $DIR/$tdir
3068         cancel_lru_locks mdc
3069         atime=$(stat -c %X $DIR/$tdir)
3070         [ "$atime" -ge "$d1" -a "$atime" -le "$d2" ] || \
3071                 error "atime is updated to $atime, should remain $d1<atime<$d2"
3072
3073         do_facet $SINGLEMDS \
3074                 lctl set_param -n mdd.*MDT0000*.atime_diff=$atime_diff
3075 }
3076 run_test 39l "directory atime update ==========================="
3077
3078 test_39m() {
3079         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3080         touch $DIR1/$tfile
3081         sleep 2
3082         local far_past_mtime=$(date -d "May 29 1953" +%s)
3083         local far_past_atime=$(date -d "Dec 17 1903" +%s)
3084
3085         touch -m -d @$far_past_mtime $DIR1/$tfile
3086         touch -a -d @$far_past_atime $DIR1/$tfile
3087
3088         for (( i=0; i < 2; i++ )) ; do
3089                 local timestamps=$(stat -c "%X %Y" $DIR1/$tfile)
3090                 [ "$timestamps" = "$far_past_atime $far_past_mtime" ] || \
3091                         error "atime or mtime set incorrectly"
3092
3093                 cancel_lru_locks osc
3094                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3095         done
3096 }
3097 run_test 39m "test atime and mtime before 1970"
3098
3099 test_39n() { # LU-3832
3100         local atime_diff=$(do_facet $SINGLEMDS \
3101                 lctl get_param -n mdd.*MDT0000*.atime_diff)
3102         local atime0
3103         local atime1
3104         local atime2
3105
3106         do_facet $SINGLEMDS lctl set_param -n mdd.*MDT0000*.atime_diff=1
3107
3108         rm -rf $DIR/$tfile
3109         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 status=noxfer
3110         atime0=$(stat -c %X $DIR/$tfile)
3111
3112         sleep 5
3113         $MULTIOP $DIR/$tfile oO_RDONLY:O_NOATIME:r4096c
3114         atime1=$(stat -c %X $DIR/$tfile)
3115
3116         sleep 5
3117         cancel_lru_locks mdc
3118         cancel_lru_locks osc
3119         $MULTIOP $DIR/$tfile oO_RDONLY:O_NOATIME:r4096c
3120         atime2=$(stat -c %X $DIR/$tfile)
3121
3122         do_facet $SINGLEMDS \
3123                 lctl set_param -n mdd.*MDT0000*.atime_diff=$atime_diff
3124
3125         [ "$atime0" -eq "$atime1" ] || error "atime0 $atime0 != atime1 $atime1"
3126         [ "$atime1" -eq "$atime2" ] || error "atime0 $atime0 != atime1 $atime1"
3127 }
3128 run_test 39n "check that O_NOATIME is honored"
3129
3130 test_40() {
3131         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1
3132         $RUNAS $OPENFILE -f O_WRONLY:O_TRUNC $DIR/$tfile &&
3133                 error "openfile O_WRONLY:O_TRUNC $tfile failed"
3134         $CHECKSTAT -t file -s 4096 $DIR/$tfile ||
3135                 error "$tfile is not 4096 bytes in size"
3136 }
3137 run_test 40 "failed open(O_TRUNC) doesn't truncate ============="
3138
3139 test_41() {
3140         # bug 1553
3141         small_write $DIR/f41 18
3142 }
3143 run_test 41 "test small file write + fstat ====================="
3144
3145 count_ost_writes() {
3146         lctl get_param -n osc.*.stats |
3147             awk -vwrites=0 '/ost_write/ { writes += $2 } END { print writes; }'
3148 }
3149
3150 # decent default
3151 WRITEBACK_SAVE=500
3152 DIRTY_RATIO_SAVE=40
3153 MAX_DIRTY_RATIO=50
3154 BG_DIRTY_RATIO_SAVE=10
3155 MAX_BG_DIRTY_RATIO=25
3156
3157 start_writeback() {
3158         trap 0
3159         # in 2.6, restore /proc/sys/vm/dirty_writeback_centisecs,
3160         # dirty_ratio, dirty_background_ratio
3161         if [ -f /proc/sys/vm/dirty_writeback_centisecs ]; then
3162                 sysctl -w vm.dirty_writeback_centisecs=$WRITEBACK_SAVE
3163                 sysctl -w vm.dirty_background_ratio=$BG_DIRTY_RATIO_SAVE
3164                 sysctl -w vm.dirty_ratio=$DIRTY_RATIO_SAVE
3165         else
3166                 # if file not here, we are a 2.4 kernel
3167                 kill -CONT `pidof kupdated`
3168         fi
3169 }
3170
3171 stop_writeback() {
3172         # setup the trap first, so someone cannot exit the test at the
3173         # exact wrong time and mess up a machine
3174         trap start_writeback EXIT
3175         # in 2.6, save and 0 /proc/sys/vm/dirty_writeback_centisecs
3176         if [ -f /proc/sys/vm/dirty_writeback_centisecs ]; then
3177                 WRITEBACK_SAVE=`sysctl -n vm.dirty_writeback_centisecs`
3178                 sysctl -w vm.dirty_writeback_centisecs=0
3179                 sysctl -w vm.dirty_writeback_centisecs=0
3180                 # save and increase /proc/sys/vm/dirty_ratio
3181                 DIRTY_RATIO_SAVE=`sysctl -n vm.dirty_ratio`
3182                 sysctl -w vm.dirty_ratio=$MAX_DIRTY_RATIO
3183                 # save and increase /proc/sys/vm/dirty_background_ratio
3184                 BG_DIRTY_RATIO_SAVE=`sysctl -n vm.dirty_background_ratio`
3185                 sysctl -w vm.dirty_background_ratio=$MAX_BG_DIRTY_RATIO
3186         else
3187                 # if file not here, we are a 2.4 kernel
3188                 kill -STOP `pidof kupdated`
3189         fi
3190 }
3191
3192 # ensure that all stripes have some grant before we test client-side cache
3193 setup_test42() {
3194         for i in `seq -f $DIR/f42-%g 1 $OSTCOUNT`; do
3195                 dd if=/dev/zero of=$i bs=4k count=1
3196                 rm $i
3197         done
3198 }
3199
3200 # Tests 42* verify that our behaviour is correct WRT caching, file closure,
3201 # file truncation, and file removal.
3202 test_42a() {
3203         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3204         setup_test42
3205         cancel_lru_locks osc
3206         stop_writeback
3207         sync; sleep 1; sync # just to be safe
3208         BEFOREWRITES=`count_ost_writes`
3209         lctl get_param -n osc.*[oO][sS][cC][_-]*.cur_grant_bytes | grep "[0-9]"
3210         dd if=/dev/zero of=$DIR/f42a bs=1024 count=100
3211         AFTERWRITES=`count_ost_writes`
3212         [ $BEFOREWRITES -eq $AFTERWRITES ] || \
3213                 error "$BEFOREWRITES < $AFTERWRITES"
3214         start_writeback
3215 }
3216 run_test 42a "ensure that we don't flush on close =============="
3217
3218 test_42b() {
3219         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3220         setup_test42
3221         cancel_lru_locks osc
3222         stop_writeback
3223         sync
3224         dd if=/dev/zero of=$DIR/f42b bs=1024 count=100
3225         BEFOREWRITES=`count_ost_writes`
3226         $MUNLINK $DIR/f42b || error "$MUNLINK $DIR/f42b: $?"
3227         AFTERWRITES=`count_ost_writes`
3228         if [ $BEFOREWRITES -lt $AFTERWRITES ]; then
3229                 error "$BEFOREWRITES < $AFTERWRITES on unlink"
3230         fi
3231         BEFOREWRITES=`count_ost_writes`
3232         sync || error "sync: $?"
3233         AFTERWRITES=`count_ost_writes`
3234         if [ $BEFOREWRITES -lt $AFTERWRITES ]; then
3235                 error "$BEFOREWRITES < $AFTERWRITES on sync"
3236         fi
3237         dmesg | grep 'error from obd_brw_async' && error 'error writing back'
3238         start_writeback
3239         return 0
3240 }
3241 run_test 42b "test destroy of file with cached dirty data ======"
3242
3243 # if these tests just want to test the effect of truncation,
3244 # they have to be very careful.  consider:
3245 # - the first open gets a {0,EOF}PR lock
3246 # - the first write conflicts and gets a {0, count-1}PW
3247 # - the rest of the writes are under {count,EOF}PW
3248 # - the open for truncate tries to match a {0,EOF}PR
3249 #   for the filesize and cancels the PWs.
3250 # any number of fixes (don't get {0,EOF} on open, match
3251 # composite locks, do smarter file size management) fix
3252 # this, but for now we want these tests to verify that
3253 # the cancellation with truncate intent works, so we
3254 # start the file with a full-file pw lock to match against
3255 # until the truncate.
3256 trunc_test() {
3257         test=$1
3258         file=$DIR/$test
3259         offset=$2
3260         cancel_lru_locks osc
3261         stop_writeback
3262         # prime the file with 0,EOF PW to match
3263         touch $file
3264         $TRUNCATE $file 0
3265         sync; sync
3266         # now the real test..
3267         dd if=/dev/zero of=$file bs=1024 count=100
3268         BEFOREWRITES=`count_ost_writes`
3269         $TRUNCATE $file $offset
3270         cancel_lru_locks osc
3271         AFTERWRITES=`count_ost_writes`
3272         start_writeback
3273 }
3274
3275 test_42c() {
3276         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3277         trunc_test 42c 1024
3278         [ $BEFOREWRITES -eq $AFTERWRITES ] && \
3279             error "beforewrites $BEFOREWRITES == afterwrites $AFTERWRITES on truncate"
3280         rm $file
3281 }
3282 run_test 42c "test partial truncate of file with cached dirty data"
3283
3284 test_42d() {
3285         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3286         trunc_test 42d 0
3287         [ $BEFOREWRITES -eq $AFTERWRITES ] || \
3288             error "beforewrites $BEFOREWRITES != afterwrites $AFTERWRITES on truncate"
3289         rm $file
3290 }
3291 run_test 42d "test complete truncate of file with cached dirty data"
3292
3293 test_42e() { # bug22074
3294         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3295         local TDIR=$DIR/${tdir}e
3296         local pagesz=$(page_size)
3297         local pages=16 # hardcoded 16 pages, don't change it.
3298         local files=$((OSTCOUNT * 500)) # hopefully 500 files on each OST
3299         local proc_osc0="osc.${FSNAME}-OST0000-osc-[^MDT]*"
3300         local max_dirty_mb
3301         local warmup_files
3302
3303         test_mkdir -p $DIR/${tdir}e
3304         $SETSTRIPE -c 1 $TDIR
3305         createmany -o $TDIR/f $files
3306
3307         max_dirty_mb=$($LCTL get_param -n $proc_osc0/max_dirty_mb)
3308
3309         # we assume that with $OSTCOUNT files, at least one of them will
3310         # be allocated on OST0.
3311         warmup_files=$((OSTCOUNT * max_dirty_mb))
3312         createmany -o $TDIR/w $warmup_files
3313
3314         # write a large amount of data into one file and sync, to get good
3315         # avail_grant number from OST.
3316         for ((i=0; i<$warmup_files; i++)); do
3317                 idx=$($GETSTRIPE -i $TDIR/w$i)
3318                 [ $idx -ne 0 ] && continue
3319                 dd if=/dev/zero of=$TDIR/w$i bs="$max_dirty_mb"M count=1
3320                 break
3321         done
3322         [ $i -gt $warmup_files ] && error "OST0 is still cold"
3323         sync
3324         $LCTL get_param $proc_osc0/cur_dirty_bytes
3325         $LCTL get_param $proc_osc0/cur_grant_bytes
3326
3327         # create as much dirty pages as we can while not to trigger the actual
3328         # RPCs directly. but depends on the env, VFS may trigger flush during this
3329         # period, hopefully we are good.
3330         for ((i=0; i<$warmup_files; i++)); do
3331                 idx=$($GETSTRIPE -i $TDIR/w$i)
3332                 [ $idx -ne 0 ] && continue
3333                 dd if=/dev/zero of=$TDIR/w$i bs=1M count=1 2>/dev/null
3334         done
3335         $LCTL get_param $proc_osc0/cur_dirty_bytes
3336         $LCTL get_param $proc_osc0/cur_grant_bytes
3337
3338         # perform the real test
3339         $LCTL set_param $proc_osc0/rpc_stats 0
3340         for ((;i<$files; i++)); do
3341                 [ $($GETSTRIPE -i $TDIR/f$i) -eq 0 ] || continue
3342                 dd if=/dev/zero of=$TDIR/f$i bs=$pagesz count=$pages 2>/dev/null
3343         done
3344         sync
3345         $LCTL get_param $proc_osc0/rpc_stats
3346
3347         local percent=0
3348         local have_ppr=false
3349         $LCTL get_param $proc_osc0/rpc_stats |
3350                 while read PPR RRPC RPCT RCUM BAR WRPC WPCT WCUM; do
3351                         # skip lines until we are at the RPC histogram data
3352                         [ "$PPR" == "pages" ] && have_ppr=true && continue
3353                         $have_ppr || continue
3354
3355                         # we only want the percent stat for < 16 pages
3356                         [ $(echo $PPR | tr -d ':') -ge $pages ] && break
3357
3358                         percent=$((percent + WPCT))
3359                         if [ $percent -gt 15 ]; then
3360                                 error "less than 16-pages write RPCs" \
3361                                       "$percent% > 15%"
3362                                 break
3363                         fi
3364                 done
3365         rm -rf $TDIR
3366 }
3367 run_test 42e "verify sub-RPC writes are not done synchronously"
3368
3369 test_43() {
3370         test_mkdir -p $DIR/$tdir
3371         cp -p /bin/ls $DIR/$tdir/$tfile
3372         $MULTIOP $DIR/$tdir/$tfile Ow_c &
3373         pid=$!
3374         # give multiop a chance to open
3375         sleep 1
3376
3377         $DIR/$tdir/$tfile && error || true
3378         kill -USR1 $pid
3379 }
3380 run_test 43 "execution of file opened for write should return -ETXTBSY"
3381
3382 test_43a() {
3383         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3384         test_mkdir -p $DIR/$tdir
3385         cp -p `which $MULTIOP` $DIR/$tdir/multiop ||
3386                         cp -p multiop $DIR/$tdir/multiop
3387         MULTIOP_PROG=$DIR/$tdir/multiop multiop_bg_pause $TMP/$tfile.junk O_c ||
3388                         return 1
3389         MULTIOP_PID=$!
3390         $MULTIOP $DIR/$tdir/multiop Oc && error "expected error, got success"
3391         kill -USR1 $MULTIOP_PID || return 2
3392         wait $MULTIOP_PID || return 3
3393         rm $TMP/$tfile.junk $DIR/$tdir/multiop
3394 }
3395 run_test 43a "open(RDWR) of file being executed should return -ETXTBSY"
3396
3397 test_43b() {
3398         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3399         test_mkdir -p $DIR/$tdir
3400         cp -p `which $MULTIOP` $DIR/$tdir/multiop ||
3401                         cp -p multiop $DIR/$tdir/multiop
3402         MULTIOP_PROG=$DIR/$tdir/multiop multiop_bg_pause $TMP/$tfile.junk O_c ||
3403                         return 1
3404         MULTIOP_PID=$!
3405         $TRUNCATE $DIR/$tdir/multiop 0 && error "expected error, got success"
3406         kill -USR1 $MULTIOP_PID || return 2
3407         wait $MULTIOP_PID || return 3
3408         rm $TMP/$tfile.junk $DIR/$tdir/multiop
3409 }
3410 run_test 43b "truncate of file being executed should return -ETXTBSY"
3411
3412 test_43c() {
3413         local testdir="$DIR/$tdir"
3414         test_mkdir -p $DIR/$tdir
3415         cp $SHELL $testdir/
3416         ( cd $(dirname $SHELL) && md5sum $(basename $SHELL) ) | \
3417                 ( cd $testdir && md5sum -c)
3418 }
3419 run_test 43c "md5sum of copy into lustre========================"
3420
3421 test_44() {
3422         [  "$OSTCOUNT" -lt "2" ] && skip_env "skipping 2-stripe test" && return
3423         dd if=/dev/zero of=$DIR/f1 bs=4k count=1 seek=1023
3424         dd if=$DIR/f1 bs=4k count=1 > /dev/null
3425 }
3426 run_test 44 "zero length read from a sparse stripe ============="
3427
3428 test_44a() {
3429     local nstripe=`$LCTL lov_getconfig $DIR | grep default_stripe_count: | \
3430                          awk '{print $2}'`
3431     [ -z "$nstripe" ] && skip "can't get stripe info" && return
3432     [ "$nstripe" -gt "$OSTCOUNT" ] && skip "Wrong default_stripe_count: $nstripe (OSTCOUNT: $OSTCOUNT)" && return
3433     local stride=`$LCTL lov_getconfig $DIR | grep default_stripe_size: | \
3434                       awk '{print $2}'`
3435     if [ $nstripe -eq 0 -o $nstripe -eq -1 ] ; then
3436         nstripe=`$LCTL lov_getconfig $DIR | grep obd_count: | awk '{print $2}'`
3437     fi
3438
3439     OFFSETS="0 $((stride/2)) $((stride-1))"
3440     for offset in $OFFSETS ; do
3441       for i in `seq 0 $((nstripe-1))`; do
3442         local GLOBALOFFSETS=""
3443         local size=$((((i + 2 * $nstripe )*$stride + $offset)))  # Bytes
3444         local myfn=$DIR/d44a-$size
3445         echo "--------writing $myfn at $size"
3446         ll_sparseness_write $myfn $size  || error "ll_sparseness_write"
3447         GLOBALOFFSETS="$GLOBALOFFSETS $size"
3448         ll_sparseness_verify $myfn $GLOBALOFFSETS \
3449                             || error "ll_sparseness_verify $GLOBALOFFSETS"
3450
3451         for j in `seq 0 $((nstripe-1))`; do
3452             size=$((((j + $nstripe )*$stride + $offset)))  # Bytes
3453             ll_sparseness_write $myfn $size || error "ll_sparseness_write"
3454             GLOBALOFFSETS="$GLOBALOFFSETS $size"
3455         done
3456         ll_sparseness_verify $myfn $GLOBALOFFSETS \
3457                             || error "ll_sparseness_verify $GLOBALOFFSETS"
3458         rm -f $myfn
3459       done
3460     done
3461 }
3462 run_test 44a "test sparse pwrite ==============================="
3463
3464 dirty_osc_total() {
3465         tot=0
3466         for d in `lctl get_param -n osc.*.cur_dirty_bytes`; do
3467                 tot=$(($tot + $d))
3468         done
3469         echo $tot
3470 }
3471 do_dirty_record() {
3472         before=`dirty_osc_total`
3473         echo executing "\"$*\""
3474         eval $*
3475         after=`dirty_osc_total`
3476         echo before $before, after $after
3477 }
3478 test_45() {
3479         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3480         f="$DIR/f45"
3481         # Obtain grants from OST if it supports it
3482         echo blah > ${f}_grant
3483         stop_writeback
3484         sync
3485         do_dirty_record "echo blah > $f"
3486         [ $before -eq $after ] && error "write wasn't cached"
3487         do_dirty_record "> $f"
3488         [ $before -gt $after ] || error "truncate didn't lower dirty count"
3489         do_dirty_record "echo blah > $f"
3490         [ $before -eq $after ] && error "write wasn't cached"
3491         do_dirty_record "sync"
3492         [ $before -gt $after ] || error "writeback didn't lower dirty count"
3493         do_dirty_record "echo blah > $f"
3494         [ $before -eq $after ] && error "write wasn't cached"
3495         do_dirty_record "cancel_lru_locks osc"
3496         [ $before -gt $after ] || error "lock cancellation didn't lower dirty count"
3497         start_writeback
3498 }
3499 run_test 45 "osc io page accounting ============================"
3500
3501 # in a 2 stripe file (lov.sh), page 1023 maps to page 511 in its object.  this
3502 # test tickles a bug where re-dirtying a page was failing to be mapped to the
3503 # objects offset and an assert hit when an rpc was built with 1023's mapped
3504 # offset 511 and 511's raw 511 offset. it also found general redirtying bugs.
3505 test_46() {
3506         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3507         f="$DIR/f46"
3508         stop_writeback
3509         sync
3510         dd if=/dev/zero of=$f bs=`page_size` seek=511 count=1
3511         sync
3512         dd conv=notrunc if=/dev/zero of=$f bs=`page_size` seek=1023 count=1
3513         dd conv=notrunc if=/dev/zero of=$f bs=`page_size` seek=511 count=1
3514         sync
3515         start_writeback
3516 }
3517 run_test 46 "dirtying a previously written page ================"
3518
3519 # test_47 is removed "Device nodes check" is moved to test_28
3520
3521 test_48a() { # bug 2399
3522         check_kernel_version 34 || return 0
3523         test_mkdir -p $DIR/$tdir
3524         cd $DIR/$tdir
3525         mv $DIR/$tdir $DIR/d48.new || error "move directory failed"
3526         test_mkdir $DIR/$tdir || error "recreate directory failed"
3527         touch foo || error "'touch foo' failed after recreating cwd"
3528         test_mkdir $DIR/$tdir/bar ||
3529                      error "'mkdir foo' failed after recreating cwd"
3530         if check_kernel_version 44; then
3531                 touch .foo || error "'touch .foo' failed after recreating cwd"
3532                 test_mkdir $DIR/$tdir/.bar ||
3533                               error "'mkdir .foo' failed after recreating cwd"
3534         fi
3535         ls . > /dev/null || error "'ls .' failed after recreating cwd"
3536         ls .. > /dev/null || error "'ls ..' failed after removing cwd"
3537         cd . || error "'cd .' failed after recreating cwd"
3538         test_mkdir . && error "'mkdir .' worked after recreating cwd"
3539         rmdir . && error "'rmdir .' worked after recreating cwd"
3540         ln -s . baz || error "'ln -s .' failed after recreating cwd"
3541         cd .. || error "'cd ..' failed after recreating cwd"
3542 }
3543 run_test 48a "Access renamed working dir (should return errors)="
3544
3545 test_48b() { # bug 2399
3546         check_kernel_version 34 || return 0
3547         rm -rf $DIR/$tdir
3548         test_mkdir -p $DIR/$tdir
3549         cd $DIR/$tdir
3550         rmdir $DIR/$tdir || error "remove cwd $DIR/$tdir failed"
3551         touch foo && error "'touch foo' worked after removing cwd"
3552         test_mkdir $DIR/$tdir/foo &&
3553                      error "'mkdir foo' worked after removing cwd"
3554         if check_kernel_version 44; then
3555                 touch .foo && error "'touch .foo' worked after removing cwd"
3556                 test_mkdir $DIR/$tdir/.foo &&
3557                               error "'mkdir .foo' worked after removing cwd"
3558         fi
3559         ls . > /dev/null && error "'ls .' worked after removing cwd"
3560         ls .. > /dev/null || error "'ls ..' failed after removing cwd"
3561         is_patchless || ( cd . && error "'cd .' worked after removing cwd" )
3562         test_mkdir $DIR/$tdir/. && error "'mkdir .' worked after removing cwd"
3563         rmdir . && error "'rmdir .' worked after removing cwd"
3564         ln -s . foo && error "'ln -s .' worked after removing cwd"
3565         cd .. || echo "'cd ..' failed after removing cwd `pwd`"  #bug 3517
3566 }
3567 run_test 48b "Access removed working dir (should return errors)="
3568
3569 test_48c() { # bug 2350
3570         check_kernel_version 36 || return 0
3571         #lctl set_param debug=-1
3572         #set -vx
3573         rm -rf $DIR/$tdir
3574         test_mkdir -p $DIR/$tdir/dir
3575         cd $DIR/$tdir/dir
3576         $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
3577         $TRACE touch foo && error "touch foo worked after removing cwd"
3578         $TRACE test_mkdir foo && error "'mkdir foo' worked after removing cwd"
3579         if check_kernel_version 44; then
3580                 touch .foo && error "touch .foo worked after removing cwd"
3581                 test_mkdir .foo && error "mkdir .foo worked after removing cwd"
3582         fi
3583         $TRACE ls . && error "'ls .' worked after removing cwd"
3584         $TRACE ls .. || error "'ls ..' failed after removing cwd"
3585         is_patchless || ( $TRACE cd . &&
3586                         error "'cd .' worked after removing cwd" )
3587         $TRACE test_mkdir . && error "'mkdir .' worked after removing cwd"
3588         $TRACE rmdir . && error "'rmdir .' worked after removing cwd"
3589         $TRACE ln -s . foo && error "'ln -s .' worked after removing cwd"
3590         $TRACE cd .. || echo "'cd ..' failed after removing cwd `pwd`" #bug 3415
3591 }
3592 run_test 48c "Access removed working subdir (should return errors)"
3593
3594 test_48d() { # bug 2350
3595         check_kernel_version 36 || return 0
3596         #lctl set_param debug=-1
3597         #set -vx
3598         rm -rf $DIR/$tdir
3599         test_mkdir -p $DIR/$tdir/dir
3600         cd $DIR/$tdir/dir
3601         $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
3602         $TRACE rmdir $DIR/$tdir || error "remove parent $DIR/$tdir failed"
3603         $TRACE touch foo && error "'touch foo' worked after removing parent"
3604         $TRACE test_mkdir foo && error "mkdir foo worked after removing parent"
3605         if check_kernel_version 44; then
3606                 touch .foo && error "'touch .foo' worked after removing parent"
3607                 test_mkdir .foo &&
3608                               error "mkdir .foo worked after removing parent"
3609         fi
3610         $TRACE ls . && error "'ls .' worked after removing parent"
3611         $TRACE ls .. && error "'ls ..' worked after removing parent"
3612         is_patchless || ( $TRACE cd . &&
3613                         error "'cd .' worked after recreate parent" )
3614         $TRACE test_mkdir . && error "'mkdir .' worked after removing parent"
3615         $TRACE rmdir . && error "'rmdir .' worked after removing parent"
3616         $TRACE ln -s . foo && error "'ln -s .' worked after removing parent"
3617         is_patchless || ( $TRACE cd .. &&
3618                         error "'cd ..' worked after removing parent" || true )
3619 }
3620 run_test 48d "Access removed parent subdir (should return errors)"
3621
3622 test_48e() { # bug 4134
3623         check_kernel_version 41 || return 0
3624         #lctl set_param debug=-1
3625         #set -vx
3626         rm -rf $DIR/$tdir
3627         test_mkdir -p $DIR/$tdir/dir
3628         cd $DIR/$tdir/dir
3629         $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
3630         $TRACE rmdir $DIR/$tdir || error "remove parent $DIR/$tdir failed"
3631         $TRACE touch $DIR/$tdir || error "'touch $DIR/$tdir' failed"
3632         $TRACE chmod +x $DIR/$tdir || error "'chmod +x $DIR/$tdir' failed"
3633         # On a buggy kernel addition of "touch foo" after cd .. will
3634         # produce kernel oops in lookup_hash_it
3635         touch ../foo && error "'cd ..' worked after recreate parent"
3636         cd $DIR
3637         $TRACE rm $DIR/$tdir || error "rm '$DIR/$tdir' failed"
3638 }
3639 run_test 48e "Access to recreated parent subdir (should return errors)"
3640
3641 test_49() { # LU-1030
3642         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3643         # get ost1 size - lustre-OST0000
3644         ost1_size=$(do_facet ost1 lfs df |grep ${ost1_svc} |awk '{print $4}')
3645         # write 800M at maximum
3646         [ $ost1_size -gt 819200 ] && ost1_size=819200
3647
3648         lfs setstripe -c 1 -i 0 $DIR/$tfile
3649         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((ost1_size >> 2)) &
3650         local dd_pid=$!
3651
3652         # change max_pages_per_rpc while writing the file
3653         local osc1_mppc=osc.$(get_osc_import_name client ost1).max_pages_per_rpc
3654         local orig_mppc=`$LCTL get_param -n $osc1_mppc`
3655         # loop until dd process exits
3656         while ps ax -opid | grep -wq $dd_pid; do
3657                 $LCTL set_param $osc1_mppc=$((RANDOM % 256 + 1))
3658                 sleep $((RANDOM % 5 + 1))
3659         done
3660         # restore original max_pages_per_rpc
3661         $LCTL set_param $osc1_mppc=$orig_mppc
3662         rm $DIR/$tfile || error "rm $DIR/$tfile failed"
3663 }
3664 run_test 49 "Change max_pages_per_rpc won't break osc extent"
3665
3666 test_50() {
3667         # bug 1485
3668         test_mkdir $DIR/$tdir
3669         cd $DIR/$tdir
3670         ls /proc/$$/cwd || error "ls /proc/$$/cwd failed"
3671 }
3672 run_test 50 "special situations: /proc symlinks  ==============="
3673
3674 test_51a() {    # was test_51
3675         # bug 1516 - create an empty entry right after ".." then split dir
3676         test_mkdir -p $DIR/$tdir
3677         touch $DIR/$tdir/foo
3678         $MCREATE $DIR/$tdir/bar
3679         rm $DIR/$tdir/foo
3680         createmany -m $DIR/$tdir/longfile 201
3681         FNUM=202
3682         while [ $(ls -sd $DIR/$tdir | awk '{ print $1 }') -eq 4 ]; do
3683                 $MCREATE $DIR/$tdir/longfile$FNUM
3684                 FNUM=$(($FNUM + 1))
3685                 echo -n "+"
3686         done
3687         echo
3688         ls -l $DIR/$tdir > /dev/null || error "ls -l $DIR/$tdir failed"
3689 }
3690 run_test 51a "special situations: split htree with empty entry =="
3691
3692 export NUMTEST=70000
3693 test_51b() {
3694         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3695         local BASE=$DIR/$tdir
3696
3697         # cleanup the directory
3698         rm -fr $BASE
3699
3700         test_mkdir -p $BASE
3701
3702         local mdtidx=$(printf "%04x" $($LFS getstripe -M $BASE))
3703         local numfree=$(lctl get_param -n mdc.$FSNAME-MDT$mdtidx*.filesfree)
3704         [ $numfree -lt 21000 ] && skip "not enough free inodes ($numfree)" &&
3705                 return
3706
3707         [ $numfree -lt $NUMTEST ] && NUMTEST=$(($numfree - 50)) &&
3708                 echo "reduced count to $NUMTEST due to inodes"
3709
3710         # need to check free space for the directories as well
3711         local blkfree=$(lctl get_param -n mdc.$FSNAME-MDT$mdtidx*.kbytesavail)
3712         numfree=$((blkfree / 4))
3713         [ $numfree -lt $NUMTEST ] && NUMTEST=$(($numfree - 50)) &&
3714                 echo "reduced count to $NUMTEST due to blocks"
3715
3716         createmany -d $BASE/d $NUMTEST && echo $NUMTEST > $BASE/fnum ||
3717                 echo "failed" > $BASE/fnum
3718 }
3719 run_test 51b "exceed 64k subdirectory nlink limit"
3720
3721 test_51ba() { # LU-993
3722         local BASE=$DIR/$tdir
3723         # unlink all but 100 subdirectories, then check it still works
3724         local LEFT=100
3725         [ -f $BASE/fnum ] && local NUMPREV=$(cat $BASE/fnum) && rm $BASE/fnum
3726
3727         [ "$NUMPREV" != "failed" ] && NUMTEST=$NUMPREV
3728         local DELETE=$((NUMTEST - LEFT))
3729
3730         # continue on to run this test even if 51b didn't finish,
3731         # just to delete the many subdirectories created.
3732         [ ! -d "${BASE}/d1" ] && skip "test_51b() not run" && return 0
3733
3734         # for ldiskfs the nlink count should be 1, but this is OSD specific
3735         # and so this is listed for informational purposes only
3736         echo "nlink before: $(stat -c %h $BASE), created before: $NUMTEST"
3737         unlinkmany -d $BASE/d $DELETE
3738         RC=$?
3739
3740         if [ $RC -ne 0 ]; then
3741                 if [ "$NUMPREV" == "failed" ]; then
3742                         skip "previous setup failed"
3743                         return 0
3744                 else
3745                         error "unlink of first $DELETE subdirs failed"
3746                         return $RC
3747                 fi
3748         fi
3749
3750         echo "nlink between: $(stat -c %h $BASE)"
3751         # trim the first line of ls output
3752         local FOUND=$(($(ls -l ${BASE} | wc -l) - 1))
3753         [ $FOUND -ne $LEFT ] &&
3754                 error "can't find subdirs: found only $FOUND/$LEFT"
3755
3756         unlinkmany -d $BASE/d $DELETE $LEFT ||
3757                 error "unlink of second $LEFT subdirs failed"
3758         # regardless of whether the backing filesystem tracks nlink accurately
3759         # or not, the nlink count shouldn't be more than "." and ".." here
3760         local AFTER=$(stat -c %h $BASE)
3761         [ $AFTER -gt 2 ] && error "nlink after: $AFTER > 2" ||
3762                 echo "nlink after: $AFTER"
3763 }
3764 run_test 51ba "verify nlink for many subdirectory cleanup"
3765
3766 test_51d() {
3767         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3768         [  "$OSTCOUNT" -lt "3" ] && skip_env "skipping test with few OSTs" && return
3769         test_mkdir -p $DIR/$tdir
3770         createmany -o $DIR/$tdir/t- 1000
3771         $GETSTRIPE $DIR/$tdir > $TMP/files
3772         for N in `seq 0 $((OSTCOUNT - 1))`; do
3773             OBJS[$N]=`awk -vobjs=0 '($1 == '$N') { objs += 1 } END { print objs;}' $TMP/files`
3774             OBJS0[$N]=`grep -A 1 idx $TMP/files | awk -vobjs=0 '($1 == '$N') { objs += 1 } END { print objs;}'`
3775             log "OST$N has ${OBJS[$N]} objects, ${OBJS0[$N]} are index 0"
3776         done
3777         unlinkmany $DIR/$tdir/t- 1000
3778
3779         NLAST=0
3780         for N in `seq 1 $((OSTCOUNT - 1))`; do
3781             [ ${OBJS[$N]} -lt $((${OBJS[$NLAST]} - 20)) ] && \
3782                 error "OST $N has less objects vs OST $NLAST (${OBJS[$N]} < ${OBJS[$NLAST]}"
3783             [ ${OBJS[$N]} -gt $((${OBJS[$NLAST]} + 20)) ] && \
3784                 error "OST $N has less objects vs OST $NLAST (${OBJS[$N]} < ${OBJS[$NLAST]}"
3785
3786             [ ${OBJS0[$N]} -lt $((${OBJS0[$NLAST]} - 20)) ] && \
3787                 error "OST $N has less #0 objects vs OST $NLAST (${OBJS0[$N]} < ${OBJS0[$NLAST]}"
3788             [ ${OBJS0[$N]} -gt $((${OBJS0[$NLAST]} + 20)) ] && \
3789                 error "OST $N has less #0 objects vs OST $NLAST (${OBJS0[$N]} < ${OBJS0[$NLAST]}"
3790             NLAST=$N
3791         done
3792 }
3793 run_test 51d "check object distribution ===================="
3794
3795 test_52a() {
3796         [ -f $DIR/$tdir/foo ] && chattr -a $DIR/$tdir/foo
3797         test_mkdir -p $DIR/$tdir
3798         touch $DIR/$tdir/foo
3799         chattr +a $DIR/$tdir/foo || error "chattr +a failed"
3800         echo bar >> $DIR/$tdir/foo || error "append bar failed"
3801         cp /etc/hosts $DIR/$tdir/foo && error "cp worked"
3802         rm -f $DIR/$tdir/foo 2>/dev/null && error "rm worked"
3803         link $DIR/$tdir/foo $DIR/$tdir/foo_link 2>/dev/null &&
3804                                         error "link worked"
3805         echo foo >> $DIR/$tdir/foo || error "append foo failed"
3806         mrename $DIR/$tdir/foo $DIR/$tdir/foo_ren && error "rename worked"
3807         lsattr $DIR/$tdir/foo | egrep -q "^-+a[-e]+ $DIR/$tdir/foo" ||
3808                                                      error "lsattr"
3809         chattr -a $DIR/$tdir/foo || error "chattr -a failed"
3810         cp -r $DIR/$tdir /tmp/
3811         rm -fr $DIR/$tdir || error "cleanup rm failed"
3812 }
3813 run_test 52a "append-only flag test (should return errors) ====="
3814
3815 test_52b() {
3816         [ -f $DIR/$tdir/foo ] && chattr -i $DIR/$tdir/foo
3817         test_mkdir -p $DIR/$tdir
3818         touch $DIR/$tdir/foo
3819         chattr +i $DIR/$tdir/foo || error "chattr +i failed"
3820         cat test > $DIR/$tdir/foo && error "cat test worked"
3821         cp /etc/hosts $DIR/$tdir/foo && error "cp worked"
3822         rm -f $DIR/$tdir/foo 2>/dev/null && error "rm worked"
3823         link $DIR/$tdir/foo $DIR/$tdir/foo_link 2>/dev/null &&
3824                                         error "link worked"
3825         echo foo >> $DIR/$tdir/foo && error "echo worked"
3826         mrename $DIR/$tdir/foo $DIR/$tdir/foo_ren && error "rename worked"
3827         [ -f $DIR/$tdir/foo ] || error "$tdir/foo is not a file"
3828         [ -f $DIR/$tdir/foo_ren ] && error "$tdir/foo_ren is not a file"
3829         lsattr $DIR/$tdir/foo | egrep -q "^-+i[-e]+ $DIR/$tdir/foo" ||
3830                                                         error "lsattr"
3831         chattr -i $DIR/$tdir/foo || error "chattr failed"
3832
3833         rm -fr $DIR/$tdir || error "unable to remove $DIR/$tdir"
3834 }
3835 run_test 52b "immutable flag test (should return errors) ======="
3836
3837 test_53() {
3838         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3839         remote_mds_nodsh && skip "remote MDS with nodsh" && return
3840         remote_ost_nodsh && skip "remote OST with nodsh" && return
3841
3842         local param
3843         local param_seq
3844         local ostname
3845         local mds_last
3846         local mds_last_seq
3847         local ost_last
3848         local ost_last_seq
3849         local ost_last_id
3850         local ostnum
3851         local node
3852         local found=0
3853
3854         # only test MDT0000
3855         local mdtosc=$(get_mdtosc_proc_path $SINGLEMDS)
3856         for value in $(do_facet $SINGLEMDS lctl get_param osc.$mdtosc.prealloc_last_id) ; do
3857                 param=$(echo ${value[0]} | cut -d "=" -f1)
3858                 ostname=$(echo $param | cut -d "." -f2 | cut -d - -f 1-2)
3859                 param_seq=$(echo ${param} |
3860                             sed -e s/prealloc_last_id/prealloc_last_seq/g)
3861                 mds_last_seq=$(do_facet $SINGLEMDS lctl get_param -n $param_seq)
3862                 mds_last=$(do_facet $SINGLEMDS lctl get_param -n $param)
3863
3864                 ostnum=$(index_from_ostuuid ${ostname}_UUID)
3865                 node=$(facet_active_host ost$((ostnum+1)))
3866                 param="obdfilter.$ostname.last_id"
3867                 for ost_last in $(do_node $node lctl get_param -n $param) ; do
3868                         echo "$ostname.last_id=$ost_last ;MDS.last_id=$mds_last"
3869                         ost_last_id=$(echo $ost_last | awk -F':' '{print $2}' |
3870                                       sed -e "s/^0x//g")
3871                         ost_last_seq=$(echo $ost_last | awk -F':' '{print $1}')
3872                         if [ $ost_last_seq = $mds_last_seq ]; then
3873                                 if [ $ost_last_id != $mds_last ]; then
3874                                         error "$ost_last != $mds_last_id"
3875                                 else
3876                                         found=1
3877                                         break
3878                                 fi
3879                         fi
3880                 done
3881         done
3882         [ $found = 0 ] && error "can not match last_seq/last_id for $mdtosc"
3883         return 0
3884 }
3885 run_test 53 "verify that MDS and OSTs agree on pre-creation ===="
3886
3887 test_54a() {
3888         $SOCKETSERVER $DIR/socket ||
3889                 error "$SOCKETSERVER $DIR/socket failed: $?"
3890         $SOCKETCLIENT $DIR/socket ||
3891                 error "$SOCKETCLIENT $DIR/socket failed: $?"
3892         $MUNLINK $DIR/socket || error "$MUNLINK $DIR/socket failed: $?"
3893 }
3894 run_test 54a "unix domain socket test =========================="
3895
3896 test_54b() {
3897         f="$DIR/f54b"
3898         mknod $f c 1 3
3899         chmod 0666 $f
3900         dd if=/dev/zero of=$f bs=$(page_size) count=1
3901 }
3902 run_test 54b "char device works in lustre ======================"
3903
3904 find_loop_dev() {
3905         [ -b /dev/loop/0 ] && LOOPBASE=/dev/loop/
3906         [ -b /dev/loop0 ] && LOOPBASE=/dev/loop
3907         [ -z "$LOOPBASE" ] && echo "/dev/loop/0 and /dev/loop0 gone?" && return
3908
3909         for i in $(seq 3 7); do
3910                 losetup $LOOPBASE$i > /dev/null 2>&1 && continue
3911                 LOOPDEV=$LOOPBASE$i
3912                 LOOPNUM=$i
3913                 break
3914         done
3915 }
3916
3917 test_54c() {
3918         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3919         tfile="$DIR/f54c"
3920         tdir="$DIR/d54c"
3921         loopdev="$DIR/loop54c"
3922
3923         find_loop_dev
3924         [ -z "$LOOPNUM" ] && echo "couldn't find empty loop device" && return
3925         mknod $loopdev b 7 $LOOPNUM
3926         echo "make a loop file system with $tfile on $loopdev ($LOOPNUM)..."
3927         dd if=/dev/zero of=$tfile bs=`page_size` seek=1024 count=1 > /dev/null
3928         losetup $loopdev $tfile || error "can't set up $loopdev for $tfile"
3929         mkfs.ext2 $loopdev || error "mke2fs on $loopdev"
3930         test_mkdir -p $tdir
3931         mount -t ext2 $loopdev $tdir || error "error mounting $loopdev on $tdir"
3932         dd if=/dev/zero of=$tdir/tmp bs=`page_size` count=30 || error "dd write"
3933         df $tdir
3934         dd if=$tdir/tmp of=/dev/zero bs=`page_size` count=30 || error "dd read"
3935         $UMOUNT $tdir
3936         losetup -d $loopdev
3937         rm $loopdev
3938 }
3939 run_test 54c "block device works in lustre ====================="
3940
3941 test_54d() {
3942         f="$DIR/f54d"
3943         string="aaaaaa"
3944         mknod $f p
3945         [ "$string" = $(echo $string > $f | cat $f) ] || error "$f != $string"
3946 }
3947 run_test 54d "fifo device works in lustre ======================"
3948
3949 test_54e() {
3950         check_kernel_version 46 || return 0
3951         f="$DIR/f54e"
3952         string="aaaaaa"
3953         cp -aL /dev/console $f
3954         echo $string > $f || error "echo $string to $f failed"
3955 }
3956 run_test 54e "console/tty device works in lustre ======================"
3957
3958 #The test_55 used to be iopen test and it was removed by bz#24037.
3959 #run_test 55 "check iopen_connect_dentry() ======================"
3960
3961 test_56a() {    # was test_56
3962         rm -rf $DIR/$tdir
3963         $SETSTRIPE -d $DIR
3964         test_mkdir -p $DIR/$tdir/dir
3965         NUMFILES=3
3966         NUMFILESx2=$(($NUMFILES * 2))
3967         for i in `seq 1 $NUMFILES` ; do
3968                 touch $DIR/$tdir/file$i
3969                 touch $DIR/$tdir/dir/file$i
3970         done
3971
3972         # test lfs getstripe with --recursive
3973         FILENUM=`$GETSTRIPE --recursive $DIR/$tdir | grep -c obdidx`
3974         [ $FILENUM -eq $NUMFILESx2 ] ||
3975                 error "$GETSTRIPE --recursive: found $FILENUM, not $NUMFILESx2"
3976         FILENUM=`$GETSTRIPE $DIR/$tdir | grep -c obdidx`
3977         [ $FILENUM -eq $NUMFILES ] ||
3978                 error "$GETSTRIPE $DIR/$tdir: found $FILENUM, not $NUMFILES"
3979         echo "$GETSTRIPE --recursive passed."
3980
3981         # test lfs getstripe with file instead of dir
3982         FILENUM=`$GETSTRIPE $DIR/$tdir/file1 | grep -c obdidx`
3983         [ $FILENUM  -eq 1 ] || error \
3984                  "$GETSTRIPE $DIR/$tdir/file1: found $FILENUM, not 1"
3985         echo "$GETSTRIPE file1 passed."
3986
3987         #test lfs getstripe with --verbose
3988         [ `$GETSTRIPE --verbose $DIR/$tdir |
3989                         grep -c lmm_magic` -eq $NUMFILES ] ||
3990                 error "$GETSTRIPE --verbose $DIR/$tdir: want $NUMFILES"
3991         [ `$GETSTRIPE $DIR/$tdir | grep -c lmm_magic` -eq 0 ] ||
3992             error "$GETSTRIPE $DIR/$tdir: showed lmm_magic"
3993         echo "$GETSTRIPE --verbose passed."
3994
3995         #test lfs getstripe with --obd
3996         $GETSTRIPE --obd wrong_uuid $DIR/$tdir 2>&1 |
3997                                         grep -q "unknown obduuid" ||
3998                 error "$GETSTRIPE --obd wrong_uuid should return error message"
3999
4000         [  "$OSTCOUNT" -lt 2 ] &&
4001                 skip_env "skipping other $GETSTRIPE --obd test" && return
4002
4003         OSTIDX=1
4004         OBDUUID=$(ostuuid_from_index $OSTIDX)
4005         FILENUM=`$GETSTRIPE -ir $DIR/$tdir | grep -x $OSTIDX | wc -l`
4006         FOUND=`$GETSTRIPE -r --obd $OBDUUID $DIR/$tdir | grep obdidx | wc -l`
4007         [ $FOUND -eq $FILENUM ] ||
4008                 error "$GETSTRIPE --obd wrong: found $FOUND, expected $FILENUM"
4009         [ `$GETSTRIPE -r -v --obd $OBDUUID $DIR/$tdir |
4010                 sed '/^[         ]*'${OSTIDX}'[  ]/d' |
4011                 sed -n '/^[      ]*[0-9][0-9]*[  ]/p' | wc -l` -eq 0 ] ||
4012                 error "$GETSTRIPE --obd: should not show file on other obd"
4013         echo "$GETSTRIPE --obd passed"
4014 }
4015 run_test 56a "check $GETSTRIPE"
4016
4017 NUMFILES=3
4018 NUMDIRS=3
4019 setup_56() {
4020         local LOCAL_NUMFILES="$1"
4021         local LOCAL_NUMDIRS="$2"
4022         local MKDIR_PARAMS="$3"
4023
4024         if [ ! -d "$TDIR" ] ; then
4025                 test_mkdir -p $TDIR
4026                 [ "$MKDIR_PARAMS" ] && $SETSTRIPE $MKDIR_PARAMS $TDIR
4027                 for i in `seq 1 $LOCAL_NUMFILES` ; do
4028                         touch $TDIR/file$i
4029                 done
4030                 for i in `seq 1 $LOCAL_NUMDIRS` ; do
4031                         test_mkdir $TDIR/dir$i
4032                         for j in `seq 1 $LOCAL_NUMFILES` ; do
4033                                 touch $TDIR/dir$i/file$j
4034                         done
4035                 done
4036         fi
4037 }
4038
4039 setup_56_special() {
4040         LOCAL_NUMFILES=$1
4041         LOCAL_NUMDIRS=$2
4042         setup_56 $1 $2
4043         if [ ! -e "$TDIR/loop1b" ] ; then
4044                 for i in `seq 1 $LOCAL_NUMFILES` ; do
4045                         mknod $TDIR/loop${i}b b 7 $i
4046                         mknod $TDIR/null${i}c c 1 3
4047                         ln -s $TDIR/file1 $TDIR/link${i}l
4048                 done
4049                 for i in `seq 1 $LOCAL_NUMDIRS` ; do
4050                         mknod $TDIR/dir$i/loop${i}b b 7 $i
4051                         mknod $TDIR/dir$i/null${i}c c 1 3
4052                         ln -s $TDIR/dir$i/file1 $TDIR/dir$i/link${i}l
4053                 done
4054         fi
4055 }
4056
4057 test_56g() {
4058         $SETSTRIPE -d $DIR
4059
4060         TDIR=$DIR/${tdir}g
4061         setup_56 $NUMFILES $NUMDIRS
4062
4063         EXPECTED=$(($NUMDIRS + 2))
4064         # test lfs find with -name
4065         for i in $(seq 1 $NUMFILES) ; do
4066                 NUMS=$($LFIND -name "*$i" $TDIR | wc -l)
4067                 [ $NUMS -eq $EXPECTED ] ||
4068                         error "lfs find -name \"*$i\" $TDIR wrong: "\
4069                               "found $NUMS, expected $EXPECTED"
4070         done
4071 }
4072 run_test 56g "check lfs find -name ============================="
4073
4074 test_56h() {
4075         $SETSTRIPE -d $DIR
4076
4077         TDIR=$DIR/${tdir}g
4078         setup_56 $NUMFILES $NUMDIRS
4079
4080         EXPECTED=$(((NUMDIRS + 1) * (NUMFILES - 1) + NUMFILES))
4081         # test lfs find with ! -name
4082         for i in $(seq 1 $NUMFILES) ; do
4083                 NUMS=$($LFIND ! -name "*$i" $TDIR | wc -l)
4084                 [ $NUMS -eq $EXPECTED ] ||
4085                         error "lfs find ! -name \"*$i\" $TDIR wrong: "\
4086                               "found $NUMS, expected $EXPECTED"
4087         done
4088 }
4089 run_test 56h "check lfs find ! -name ============================="
4090
4091 test_56i() {
4092        tdir=${tdir}i
4093        test_mkdir -p $DIR/$tdir
4094        UUID=$(ostuuid_from_index 0 $DIR/$tdir)
4095        CMD="$LFIND -ost $UUID $DIR/$tdir"
4096        OUT=$($CMD)
4097        [ -z "$OUT" ] || error "\"$CMD\" returned directory '$OUT'"
4098 }
4099 run_test 56i "check 'lfs find -ost UUID' skips directories ======="
4100
4101 test_56j() {
4102         TDIR=$DIR/${tdir}g
4103         setup_56_special $NUMFILES $NUMDIRS
4104
4105         EXPECTED=$((NUMDIRS + 1))
4106         CMD="$LFIND -type d $TDIR"
4107         NUMS=$($CMD | wc -l)
4108         [ $NUMS -eq $EXPECTED ] ||
4109                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4110 }
4111 run_test 56j "check lfs find -type d ============================="
4112
4113 test_56k() {
4114         TDIR=$DIR/${tdir}g
4115         setup_56_special $NUMFILES $NUMDIRS
4116
4117         EXPECTED=$(((NUMDIRS + 1) * NUMFILES))
4118         CMD="$LFIND -type f $TDIR"
4119         NUMS=$($CMD | wc -l)
4120         [ $NUMS -eq $EXPECTED ] ||
4121                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4122 }
4123 run_test 56k "check lfs find -type f ============================="
4124
4125 test_56l() {
4126         TDIR=$DIR/${tdir}g
4127         setup_56_special $NUMFILES $NUMDIRS
4128
4129         EXPECTED=$((NUMDIRS + NUMFILES))
4130         CMD="$LFIND -type b $TDIR"
4131         NUMS=$($CMD | wc -l)
4132         [ $NUMS -eq $EXPECTED ] ||
4133                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4134 }
4135 run_test 56l "check lfs find -type b ============================="
4136
4137 test_56m() {
4138         TDIR=$DIR/${tdir}g
4139         setup_56_special $NUMFILES $NUMDIRS
4140
4141         EXPECTED=$((NUMDIRS + NUMFILES))
4142         CMD="$LFIND -type c $TDIR"
4143         NUMS=$($CMD | wc -l)
4144         [ $NUMS -eq $EXPECTED ] ||
4145                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4146 }
4147 run_test 56m "check lfs find -type c ============================="
4148
4149 test_56n() {
4150         TDIR=$DIR/${tdir}g
4151         setup_56_special $NUMFILES $NUMDIRS
4152
4153         EXPECTED=$((NUMDIRS + NUMFILES))
4154         CMD="$LFIND -type l $TDIR"
4155         NUMS=$($CMD | wc -l)
4156         [ $NUMS -eq $EXPECTED ] ||
4157                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4158 }
4159 run_test 56n "check lfs find -type l ============================="
4160
4161 test_56o() {
4162         TDIR=$DIR/${tdir}o
4163         setup_56 $NUMFILES $NUMDIRS
4164
4165         utime $TDIR/file1 > /dev/null || error "utime (1)"
4166         utime $TDIR/file2 > /dev/null || error "utime (2)"
4167         utime $TDIR/dir1 > /dev/null || error "utime (3)"
4168         utime $TDIR/dir2 > /dev/null || error "utime (4)"
4169         utime $TDIR/dir1/file1 > /dev/null || error "utime (5)"
4170         dd if=/dev/zero count=1 >> $TDIR/dir1/file1 && sync
4171
4172         EXPECTED=4
4173         NUMS=`$LFIND -mtime +0 $TDIR | wc -l`
4174         [ $NUMS -eq $EXPECTED ] || \
4175                 error "lfs find -mtime +0 $TDIR wrong: found $NUMS, expected $EXPECTED"
4176
4177         EXPECTED=12
4178         CMD="$LFIND -mtime 0 $TDIR"
4179         NUMS=$($CMD | wc -l)
4180         [ $NUMS -eq $EXPECTED ] ||
4181                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4182 }
4183 run_test 56o "check lfs find -mtime for old files =========================="
4184
4185 test_56p() {
4186         [ $RUNAS_ID -eq $UID ] &&
4187                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
4188
4189         TDIR=$DIR/${tdir}p
4190         setup_56 $NUMFILES $NUMDIRS
4191
4192         chown $RUNAS_ID $TDIR/file* || error "chown $DIR/${tdir}g/file$i failed"
4193         EXPECTED=$NUMFILES
4194         CMD="$LFIND -uid $RUNAS_ID $TDIR"
4195         NUMS=$($CMD | wc -l)
4196         [ $NUMS -eq $EXPECTED ] || \
4197                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4198
4199         EXPECTED=$(((NUMFILES + 1) * NUMDIRS + 1))
4200         CMD="$LFIND ! -uid $RUNAS_ID $TDIR"
4201         NUMS=$($CMD | wc -l)
4202         [ $NUMS -eq $EXPECTED ] || \
4203                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4204 }
4205 run_test 56p "check lfs find -uid and ! -uid ==============================="
4206
4207 test_56q() {
4208         [ $RUNAS_ID -eq $UID ] &&
4209                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
4210
4211         TDIR=$DIR/${tdir}q
4212         setup_56 $NUMFILES $NUMDIRS
4213
4214         chgrp $RUNAS_GID $TDIR/file* || error "chown $TDIR/file$i failed"
4215
4216         EXPECTED=$NUMFILES
4217         CMD="$LFIND -gid $RUNAS_GID $TDIR"
4218         NUMS=$($CMD | wc -l)
4219         [ $NUMS -eq $EXPECTED ] ||
4220                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4221
4222         EXPECTED=$(( ($NUMFILES+1) * $NUMDIRS + 1))
4223         CMD="$LFIND ! -gid $RUNAS_GID $TDIR"
4224         NUMS=$($CMD | wc -l)
4225         [ $NUMS -eq $EXPECTED ] ||
4226                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4227 }
4228 run_test 56q "check lfs find -gid and ! -gid ==============================="
4229
4230 test_56r() {
4231         TDIR=$DIR/${tdir}r
4232         setup_56 $NUMFILES $NUMDIRS
4233
4234         EXPECTED=12
4235         CMD="$LFIND -size 0 -type f $TDIR"
4236         NUMS=$($CMD | wc -l)
4237         [ $NUMS -eq $EXPECTED ] ||
4238                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4239         EXPECTED=0
4240         CMD="$LFIND ! -size 0 -type f $TDIR"
4241         NUMS=$($CMD | wc -l)
4242         [ $NUMS -eq $EXPECTED ] ||
4243                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4244         echo "test" > $TDIR/$tfile
4245         echo "test2" > $TDIR/$tfile.2 && sync
4246         EXPECTED=1
4247         CMD="$LFIND -size 5 -type f $TDIR"
4248         NUMS=$($CMD | wc -l)
4249         [ $NUMS -eq $EXPECTED ] ||
4250                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4251         EXPECTED=1
4252         CMD="$LFIND -size +5 -type f $TDIR"
4253         NUMS=$($CMD | wc -l)
4254         [ $NUMS -eq $EXPECTED ] ||
4255                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4256         EXPECTED=2
4257         CMD="$LFIND -size +0 -type f $TDIR"
4258         NUMS=$($CMD | wc -l)
4259         [ $NUMS -eq $EXPECTED ] ||
4260                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4261         EXPECTED=2
4262         CMD="$LFIND ! -size -5 -type f $TDIR"
4263         NUMS=$($CMD | wc -l)
4264         [ $NUMS -eq $EXPECTED ] ||
4265                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4266         EXPECTED=12
4267         CMD="$LFIND -size -5 -type f $TDIR"
4268         NUMS=$($CMD | wc -l)
4269         [ $NUMS -eq $EXPECTED ] ||
4270                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4271 }
4272 run_test 56r "check lfs find -size works =========================="
4273
4274 test_56s() { # LU-611
4275         TDIR=$DIR/${tdir}s
4276         setup_56 $NUMFILES $NUMDIRS "-c $OSTCOUNT"
4277
4278         if [ $OSTCOUNT -gt 1 ]; then
4279                 $SETSTRIPE -c 1 $TDIR/$tfile.{0,1,2,3}
4280                 ONESTRIPE=4
4281                 EXTRA=4
4282         else
4283                 ONESTRIPE=$(((NUMDIRS + 1) * NUMFILES))
4284                 EXTRA=0
4285         fi
4286
4287         EXPECTED=$(((NUMDIRS + 1) * NUMFILES))
4288         CMD="$LFIND -stripe-count $OSTCOUNT -type f $TDIR"
4289         NUMS=$($CMD | wc -l)
4290         [ $NUMS -eq $EXPECTED ] ||
4291                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4292
4293         EXPECTED=$(((NUMDIRS + 1) * NUMFILES + EXTRA))
4294         CMD="$LFIND -stripe-count +0 -type f $TDIR"
4295         NUMS=$($CMD | wc -l)
4296         [ $NUMS -eq $EXPECTED ] ||
4297                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4298
4299         EXPECTED=$ONESTRIPE
4300         CMD="$LFIND -stripe-count 1 -type f $TDIR"
4301         NUMS=$($CMD | wc -l)
4302         [ $NUMS -eq $EXPECTED ] ||
4303                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4304
4305         CMD="$LFIND -stripe-count -2 -type f $TDIR"
4306         NUMS=$($CMD | wc -l)
4307         [ $NUMS -eq $EXPECTED ] ||
4308                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4309
4310         EXPECTED=0
4311         CMD="$LFIND -stripe-count $((OSTCOUNT + 1)) -type f $TDIR"
4312         NUMS=$($CMD | wc -l)
4313         [ $NUMS -eq $EXPECTED ] ||
4314                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4315 }
4316 run_test 56s "check lfs find -stripe-count works"
4317
4318 test_56t() { # LU-611
4319         TDIR=$DIR/${tdir}t
4320         setup_56 $NUMFILES $NUMDIRS "-s 512k"
4321
4322         $SETSTRIPE -S 256k $TDIR/$tfile.{0,1,2,3}
4323
4324         EXPECTED=$(((NUMDIRS + 1) * NUMFILES))
4325         CMD="$LFIND -stripe-size 512k -type f $TDIR"
4326         NUMS=$($CMD | wc -l)
4327         [ $NUMS -eq $EXPECTED ] ||
4328                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4329
4330         CMD="$LFIND -stripe-size +320k -type f $TDIR"
4331         NUMS=$($CMD | wc -l)
4332         [ $NUMS -eq $EXPECTED ] ||
4333                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4334
4335         EXPECTED=$(((NUMDIRS + 1) * NUMFILES + 4))
4336         CMD="$LFIND -stripe-size +200k -type f $TDIR"
4337         NUMS=$($CMD | wc -l)
4338         [ $NUMS -eq $EXPECTED ] ||
4339                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4340
4341         CMD="$LFIND -stripe-size -640k -type f $TDIR"
4342         NUMS=$($CMD | wc -l)
4343         [ $NUMS -eq $EXPECTED ] ||
4344                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4345
4346         EXPECTED=4
4347         CMD="$LFIND -stripe-size 256k -type f $TDIR"
4348         NUMS=$($CMD | wc -l)
4349         [ $NUMS -eq $EXPECTED ] ||
4350                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4351
4352         CMD="$LFIND -stripe-size -320k -type f $TDIR"
4353         NUMS=$($CMD | wc -l)
4354         [ $NUMS -eq $EXPECTED ] ||
4355                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4356
4357         EXPECTED=0
4358         CMD="$LFIND -stripe-size 1024k -type f $TDIR"
4359         NUMS=$($CMD | wc -l)
4360         [ $NUMS -eq $EXPECTED ] ||
4361                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4362 }
4363 run_test 56t "check lfs find -stripe-size works"
4364
4365 test_56u() { # LU-611
4366         TDIR=$DIR/${tdir}u
4367         setup_56 $NUMFILES $NUMDIRS "-i 0"
4368
4369         if [ $OSTCOUNT -gt 1 ]; then
4370                 $SETSTRIPE -i 1 $TDIR/$tfile.{0,1,2,3}
4371                 ONESTRIPE=4
4372         else
4373                 ONESTRIPE=0
4374         fi
4375
4376         EXPECTED=$(((NUMDIRS + 1) * NUMFILES))
4377         CMD="$LFIND -stripe-index 0 -type f $TDIR"
4378         NUMS=$($CMD | wc -l)
4379         [ $NUMS -eq $EXPECTED ] ||
4380                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4381
4382         EXPECTED=$ONESTRIPE
4383         CMD="$LFIND -stripe-index 1 -type f $TDIR"
4384         NUMS=$($CMD | wc -l)
4385         [ $NUMS -eq $EXPECTED ] ||
4386                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4387
4388         CMD="$LFIND ! -stripe-index 0 -type f $TDIR"
4389         NUMS=$($CMD | wc -l)
4390         [ $NUMS -eq $EXPECTED ] ||
4391                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4392
4393         EXPECTED=0
4394         # This should produce an error and not return any files
4395         CMD="$LFIND -stripe-index $OSTCOUNT -type f $TDIR"
4396         NUMS=$($CMD 2>/dev/null | wc -l)
4397         [ $NUMS -eq $EXPECTED ] ||
4398                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4399
4400         if [ $OSTCOUNT -gt 1 ]; then
4401                 EXPECTED=$(((NUMDIRS + 1) * NUMFILES + ONESTRIPE))
4402                 CMD="$LFIND -stripe-index 0,1 -type f $TDIR"
4403                 NUMS=$($CMD | wc -l)
4404                 [ $NUMS -eq $EXPECTED ] ||
4405                         error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4406         fi
4407 }
4408 run_test 56u "check lfs find -stripe-index works"
4409
4410 test_56v() {
4411     local MDT_IDX=0
4412
4413     TDIR=$DIR/${tdir}v
4414     rm -rf $TDIR
4415     setup_56 $NUMFILES $NUMDIRS
4416
4417     UUID=$(mdtuuid_from_index $MDT_IDX $TDIR)
4418     [ -z "$UUID" ] && error "mdtuuid_from_index cannot find MDT index $MDT_IDX"
4419
4420     for file in $($LFIND -mdt $UUID $TDIR); do
4421         file_mdt_idx=$($GETSTRIPE -M $file)
4422         [ $file_mdt_idx -eq $MDT_IDX ] ||
4423             error "'lfind -mdt $UUID' != 'getstripe -M' ($file_mdt_idx)"
4424     done
4425 }
4426 run_test 56v "check 'lfs find -mdt match with lfs getstripe -M' ======="
4427
4428 # Get and check the actual stripe count of one file.
4429 # Usage: check_stripe_count <file> <expected_stripe_count>
4430 check_stripe_count() {
4431     local file=$1
4432     local expected=$2
4433     local actual
4434
4435     [[ -z "$file" || -z "$expected" ]] &&
4436         error "check_stripe_count: invalid argument!"
4437
4438     local cmd="$GETSTRIPE -c $file"
4439     actual=$($cmd) || error "$cmd failed"
4440     actual=${actual%% *}
4441
4442     if [[ $actual -ne $expected ]]; then
4443         [[ $expected -eq -1 ]] ||
4444             error "$cmd wrong: found $actual, expected $expected"
4445         [[ $actual -eq $OSTCOUNT ]] ||
4446             error "$cmd wrong: found $actual, expected $OSTCOUNT"
4447     fi
4448 }
4449
4450 test_56w() {
4451         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4452         TDIR=$DIR/${tdir}w
4453
4454     rm -rf $TDIR || error "remove $TDIR failed"
4455     setup_56 $NUMFILES $NUMDIRS "-c $OSTCOUNT"
4456
4457     local stripe_size
4458     stripe_size=$($GETSTRIPE -S -d $TDIR) ||
4459         error "$GETSTRIPE -S -d $TDIR failed"
4460     stripe_size=${stripe_size%% *}
4461
4462     local file_size=$((stripe_size * OSTCOUNT))
4463     local file_num=$((NUMDIRS * NUMFILES + NUMFILES))
4464     local required_space=$((file_num * file_size))
4465     local free_space=$($LCTL get_param -n lov.$LOVNAME.kbytesavail)
4466     [[ $free_space -le $((required_space / 1024)) ]] &&
4467         skip_env "need at least $required_space bytes free space," \
4468                  "have $free_space kbytes" && return
4469
4470     local dd_bs=65536
4471     local dd_count=$((file_size / dd_bs))
4472
4473     # write data into the files
4474     local i
4475     local j
4476     local file
4477     for i in $(seq 1 $NUMFILES); do
4478         file=$TDIR/file$i
4479         yes | dd bs=$dd_bs count=$dd_count of=$file >/dev/null 2>&1 ||
4480             error "write data into $file failed"
4481     done
4482     for i in $(seq 1 $NUMDIRS); do
4483         for j in $(seq 1 $NUMFILES); do
4484             file=$TDIR/dir$i/file$j
4485             yes | dd bs=$dd_bs count=$dd_count of=$file \
4486                 >/dev/null 2>&1 ||
4487                 error "write data into $file failed"
4488         done
4489     done
4490
4491     local expected=-1
4492     [[ $OSTCOUNT -gt 1 ]] && expected=$((OSTCOUNT - 1))
4493
4494     # lfs_migrate file
4495     local cmd="$LFS_MIGRATE -y -c $expected $TDIR/file1"
4496     echo "$cmd"
4497     eval $cmd || error "$cmd failed"
4498
4499     check_stripe_count $TDIR/file1 $expected
4500
4501     # lfs_migrate dir
4502     cmd="$LFS_MIGRATE -y -c $expected $TDIR/dir1"
4503     echo "$cmd"
4504     eval $cmd || error "$cmd failed"
4505
4506     for j in $(seq 1 $NUMFILES); do
4507         check_stripe_count $TDIR/dir1/file$j $expected
4508     done
4509
4510     # lfs_migrate works with lfs find
4511     cmd="$LFIND -stripe_count $OSTCOUNT -type f $TDIR |
4512          $LFS_MIGRATE -y -c $expected"
4513     echo "$cmd"
4514     eval $cmd || error "$cmd failed"
4515
4516     for i in $(seq 2 $NUMFILES); do
4517         check_stripe_count $TDIR/file$i $expected
4518     done
4519     for i in $(seq 2 $NUMDIRS); do
4520         for j in $(seq 1 $NUMFILES); do
4521             check_stripe_count $TDIR/dir$i/file$j $expected
4522         done
4523     done
4524 }
4525 run_test 56w "check lfs_migrate -c stripe_count works"
4526
4527 test_56x() {
4528         check_swap_layouts_support && return 0
4529         [ "$OSTCOUNT" -lt "2" ] &&
4530                 skip_env "need 2 OST, skipping test" && return
4531
4532         local dir0=$DIR/$tdir/$testnum
4533         mkdir -p $dir0 || error "creating dir $dir0"
4534
4535         local ref1=/etc/passwd
4536         local file1=$dir0/file1
4537
4538         $SETSTRIPE -c 2 $file1
4539         cp $ref1 $file1
4540         $LFS migrate -c 1 $file1 || error "migrate failed rc = $?"
4541         stripe=$($GETSTRIPE -c $file1)
4542         [[ $stripe == 1 ]] || error "stripe of $file1 is $stripe != 1"
4543         cmp $file1 $ref1 || error "content mismatch $file1 differs from $ref1"
4544
4545         # clean up
4546         rm -f $file1
4547 }
4548 run_test 56x "lfs migration support"
4549
4550 test_56y() {
4551         local res=""
4552
4553         local dir0=$DIR/$tdir/$testnum
4554         mkdir -p $dir0 || error "creating dir $dir0"
4555         local f1=$dir0/file1
4556         local f2=$dir0/file2
4557
4558         touch $f1 || error "creating std file $f1"
4559         $MULTIOP $f2 H2c || error "creating released file $f2"
4560
4561         # a directory can be raid0, so ask only for files
4562         res=$($LFIND $dir0 -L raid0 -type f | wc -l)
4563         [[ $res == 2 ]] || error "search raid0: found $res files != 2"
4564
4565         res=$($LFIND $dir0 \! -L raid0 -type f | wc -l)
4566         [[ $res == 0 ]] || error "search !raid0: found $res files != 0"
4567
4568         # only files can be released, so no need to force file search
4569         res=$($LFIND $dir0 -L released)
4570         [[ $res == $f2 ]] || error "search released: found $res != $f2"
4571
4572         res=$($LFIND $dir0 \! -L released)
4573         [[ $res == $f1 ]] || error "search !released: found $res != $f1"
4574
4575 }
4576 run_test 56y "lfs find -L raid0|released"
4577
4578 test_57a() {
4579         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4580         # note test will not do anything if MDS is not local
4581         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
4582                 skip "Only applicable to ldiskfs-based MDTs"
4583                 return
4584         fi
4585
4586         remote_mds_nodsh && skip "remote MDS with nodsh" && return
4587         local MNTDEV="osd*.*MDT*.mntdev"
4588         DEV=$(do_facet $SINGLEMDS lctl get_param -n $MNTDEV)
4589         [ -z "$DEV" ] && error "can't access $MNTDEV"
4590         for DEV in $(do_facet $SINGLEMDS lctl get_param -n $MNTDEV); do
4591                 do_facet $SINGLEMDS $DUMPE2FS -h $DEV > $TMP/t57a.dump ||
4592                         error "can't access $DEV"
4593                 DEVISIZE=`awk '/Inode size:/ { print $3 }' $TMP/t57a.dump`
4594                 [ "$DEVISIZE" -gt 128 ] || error "inode size $DEVISIZE"
4595                 rm $TMP/t57a.dump
4596         done
4597 }
4598 run_test 57a "verify MDS filesystem created with large inodes =="
4599
4600 test_57b() {
4601         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4602         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
4603                 skip "Only applicable to ldiskfs-based MDTs"
4604                 return
4605         fi
4606
4607         remote_mds_nodsh && skip "remote MDS with nodsh" && return
4608         local dir=$DIR/d57b
4609
4610         local FILECOUNT=100
4611         local FILE1=$dir/f1
4612         local FILEN=$dir/f$FILECOUNT
4613
4614         rm -rf $dir || error "removing $dir"
4615         test_mkdir -p $dir || error "creating $dir"
4616         local num=$(get_mds_dir $dir)
4617         local mymds=mds$num
4618
4619         echo "mcreating $FILECOUNT files"
4620         createmany -m $dir/f 1 $FILECOUNT || \
4621                 error "creating files in $dir"
4622
4623         # verify that files do not have EAs yet
4624         $GETSTRIPE $FILE1 2>&1 | grep -q "no stripe" || error "$FILE1 has an EA"
4625         $GETSTRIPE $FILEN 2>&1 | grep -q "no stripe" || error "$FILEN has an EA"
4626
4627         sync
4628         sleep 1
4629         df $dir  #make sure we get new statfs data
4630         local MDSFREE=$(do_facet $mymds \
4631                 lctl get_param -n osd*.*MDT000$((num -1)).kbytesfree)
4632         local MDCFREE=$(lctl get_param -n mdc.*MDT000$((num -1))-mdc-*.kbytesfree)
4633         echo "opening files to create objects/EAs"
4634         local FILE
4635         for FILE in `seq -f $dir/f%g 1 $FILECOUNT`; do
4636                 $OPENFILE -f O_RDWR $FILE > /dev/null 2>&1 || error "opening $FILE"
4637         done
4638
4639         # verify that files have EAs now
4640         $GETSTRIPE $FILE1 | grep -q "obdidx" || error "$FILE1 missing EA"
4641         $GETSTRIPE $FILEN | grep -q "obdidx" || error "$FILEN missing EA"
4642
4643         sleep 1  #make sure we get new statfs data
4644         df $dir
4645         local MDSFREE2=$(do_facet $mymds \
4646                 lctl get_param -n osd*.*MDT000$((num -1)).kbytesfree)
4647         local MDCFREE2=$(lctl get_param -n mdc.*MDT000$((num -1))-mdc-*.kbytesfree)
4648         if [ "$MDCFREE2" -lt "$((MDCFREE - 8))" ]; then
4649                 if [ "$MDSFREE" != "$MDSFREE2" ]; then
4650                         error "MDC before $MDCFREE != after $MDCFREE2"
4651                 else
4652                         echo "MDC before $MDCFREE != after $MDCFREE2"
4653                         echo "unable to confirm if MDS has large inodes"
4654                 fi
4655         fi
4656         rm -rf $dir
4657 }
4658 run_test 57b "default LOV EAs are stored inside large inodes ==="
4659
4660 test_58() {
4661         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4662         [ -z "$(which wiretest 2>/dev/null)" ] &&
4663                         skip_env "could not find wiretest" && return
4664         wiretest
4665 }
4666 run_test 58 "verify cross-platform wire constants =============="
4667
4668 test_59() {
4669         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4670         echo "touch 130 files"
4671         createmany -o $DIR/f59- 130
4672         echo "rm 130 files"
4673         unlinkmany $DIR/f59- 130
4674         sync
4675         # wait for commitment of removal
4676         wait_delete_completed
4677 }
4678 run_test 59 "verify cancellation of llog records async ========="
4679
4680 TEST60_HEAD="test_60 run $RANDOM"
4681 test_60a() {
4682         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4683         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
4684         do_facet mgs "! which run-llog.sh &> /dev/null" &&
4685                 skip_env "missing subtest run-llog.sh" && return
4686         log "$TEST60_HEAD - from kernel mode"
4687         do_facet mgs sh run-llog.sh
4688 }
4689 run_test 60a "llog sanity tests run from kernel module =========="
4690
4691 test_60b() { # bug 6411
4692         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4693         dmesg > $DIR/$tfile
4694         LLOG_COUNT=`dmesg | awk "/$TEST60_HEAD/{marker = 1; from_marker = 0;}
4695                                  /llog.test/ {
4696                                          if (marker)
4697                                                  from_marker++
4698                                          from_begin++
4699                                  }
4700                                  END {
4701                                          if (marker)
4702                                                  print from_marker
4703                                          else
4704                                                  print from_begin
4705                                  }"`
4706         [ $LLOG_COUNT -gt 50 ] && error "CDEBUG_LIMIT not limiting messages ($LLOG_COUNT)"|| true
4707 }
4708 run_test 60b "limit repeated messages from CERROR/CWARN ========"
4709
4710 test_60c() {
4711         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4712         echo "create 5000 files"
4713         createmany -o $DIR/f60c- 5000
4714 #define OBD_FAIL_MDS_LLOG_CREATE_FAILED  0x137
4715         lctl set_param fail_loc=0x80000137
4716         unlinkmany $DIR/f60c- 5000
4717         lctl set_param fail_loc=0
4718 }
4719 run_test 60c "unlink file when mds full"
4720
4721 test_60d() {
4722         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4723         SAVEPRINTK=$(lctl get_param -n printk)
4724
4725         # verify "lctl mark" is even working"
4726         MESSAGE="test message ID $RANDOM $$"
4727         $LCTL mark "$MESSAGE" || error "$LCTL mark failed"
4728         dmesg | grep -q "$MESSAGE" || error "didn't find debug marker in log"
4729
4730         lctl set_param printk=0 || error "set lnet.printk failed"
4731         lctl get_param -n printk | grep emerg || error "lnet.printk dropped emerg"
4732         MESSAGE="new test message ID $RANDOM $$"
4733         # Assume here that libcfs_debug_mark_buffer() uses D_WARNING
4734         $LCTL mark "$MESSAGE" || error "$LCTL mark failed"
4735         dmesg | grep -q "$MESSAGE" && error "D_WARNING wasn't masked" || true
4736
4737         lctl set_param -n printk="$SAVEPRINTK"
4738 }
4739 run_test 60d "test printk console message masking"
4740
4741 test_61() {
4742         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4743         f="$DIR/f61"
4744         dd if=/dev/zero of=$f bs=$(page_size) count=1 || error "dd $f failed"
4745         cancel_lru_locks osc
4746         $MULTIOP $f OSMWUc || error "$MULTIOP $f failed"
4747         sync
4748 }
4749 run_test 61 "mmap() writes don't make sync hang ================"
4750
4751 # bug 2330 - insufficient obd_match error checking causes LBUG
4752 test_62() {
4753         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4754         f="$DIR/f62"
4755         echo foo > $f
4756         cancel_lru_locks osc
4757         lctl set_param fail_loc=0x405
4758         cat $f && error "cat succeeded, expect -EIO"
4759         lctl set_param fail_loc=0
4760 }
4761 # This test is now irrelevant (as of bug 10718 inclusion), we no longer
4762 # match every page all of the time.
4763 #run_test 62 "verify obd_match failure doesn't LBUG (should -EIO)"
4764
4765 # bug 2319 - oig_wait() interrupted causes crash because of invalid waitq.
4766 test_63a() {    # was test_63
4767         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4768         MAX_DIRTY_MB=`lctl get_param -n osc.*.max_dirty_mb | head -n 1`
4769         lctl set_param -n osc.*.max_dirty_mb 0
4770         for i in `seq 10` ; do
4771                 dd if=/dev/zero of=$DIR/f63 bs=8k &
4772                 sleep 5
4773                 kill $!
4774                 sleep 1
4775         done
4776
4777         lctl set_param -n osc.*.max_dirty_mb $MAX_DIRTY_MB
4778         rm -f $DIR/f63 || true
4779 }
4780 run_test 63a "Verify oig_wait interruption does not crash ======="
4781
4782 # bug 2248 - async write errors didn't return to application on sync
4783 # bug 3677 - async write errors left page locked
4784 test_63b() {
4785         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4786         debugsave
4787         lctl set_param debug=-1
4788
4789         # ensure we have a grant to do async writes
4790         dd if=/dev/zero of=$DIR/$tfile bs=4k count=1
4791         rm $DIR/$tfile
4792
4793         #define OBD_FAIL_OSC_BRW_PREP_REQ        0x406
4794         lctl set_param fail_loc=0x80000406
4795         $MULTIOP $DIR/$tfile Owy && \
4796                 error "sync didn't return ENOMEM"
4797         sync; sleep 2; sync     # do a real sync this time to flush page
4798         lctl get_param -n llite.*.dump_page_cache | grep locked && \
4799                 error "locked page left in cache after async error" || true
4800         debugrestore
4801 }
4802 run_test 63b "async write errors should be returned to fsync ==="
4803
4804 test_64a () {
4805         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4806         df $DIR
4807         lctl get_param -n osc.*[oO][sS][cC][_-]*.cur* | grep "[0-9]"
4808 }
4809 run_test 64a "verify filter grant calculations (in kernel) ====="
4810
4811 test_64b () {
4812         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4813         sh oos.sh $MOUNT || error "oos.sh failed: $?"
4814 }
4815 run_test 64b "check out-of-space detection on client ==========="
4816
4817 test_64c() {
4818         $LCTL set_param osc.*OST0000-osc-[^mM]*.cur_grant_bytes=0
4819 }
4820 run_test 64c "verify grant shrink ========================------"
4821
4822 # bug 1414 - set/get directories' stripe info
4823 test_65a() {
4824         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4825         test_mkdir -p $DIR/$tdir
4826         touch $DIR/$tdir/f1
4827         $LVERIFY $DIR/$tdir $DIR/$tdir/f1 || error "lverify failed"
4828 }
4829 run_test 65a "directory with no stripe info ===================="
4830
4831 test_65b() {
4832         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4833         test_mkdir -p $DIR/$tdir
4834         $SETSTRIPE -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
4835                                                 error "setstripe"
4836         touch $DIR/$tdir/f2
4837         $LVERIFY $DIR/$tdir $DIR/$tdir/f2 || error "lverify failed"
4838 }
4839 run_test 65b "directory setstripe -S $((STRIPESIZE * 2)) -i 0 -c 1"
4840
4841 test_65c() {
4842         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4843         if [ $OSTCOUNT -gt 1 ]; then
4844                 test_mkdir -p $DIR/$tdir
4845                 $SETSTRIPE -S $(($STRIPESIZE * 4)) -i 1 \
4846                         -c $(($OSTCOUNT - 1)) $DIR/$tdir || error "setstripe"
4847                 touch $DIR/$tdir/f3
4848                 $LVERIFY $DIR/$tdir $DIR/$tdir/f3 || error "lverify failed"
4849         fi
4850 }
4851 run_test 65c "directory setstripe -S $((STRIPESIZE*4)) -i 1 -c $((OSTCOUNT-1))"
4852
4853 test_65d() {
4854         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4855         test_mkdir -p $DIR/$tdir
4856         if [ $STRIPECOUNT -le 0 ]; then
4857                 sc=1
4858         elif [ $STRIPECOUNT -gt 2000 ]; then
4859 #LOV_MAX_STRIPE_COUNT is 2000
4860                 [ $OSTCOUNT -gt 2000 ] && sc=2000 || sc=$(($OSTCOUNT - 1))
4861         else
4862                 sc=$(($STRIPECOUNT - 1))
4863         fi
4864         $SETSTRIPE -S $STRIPESIZE -c $sc $DIR/$tdir || error "setstripe"
4865         touch $DIR/$tdir/f4 $DIR/$tdir/f5
4866         $LVERIFY $DIR/$tdir $DIR/$tdir/f4 $DIR/$tdir/f5 ||
4867                                                 error "lverify failed"
4868 }
4869 run_test 65d "directory setstripe -S $STRIPESIZE -c stripe_count"
4870
4871 test_65e() {
4872         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4873         test_mkdir -p $DIR/$tdir
4874
4875         $SETSTRIPE $DIR/$tdir || error "setstripe"
4876         $GETSTRIPE -v $DIR/$tdir | grep "Default" ||
4877                                         error "no stripe info failed"
4878         touch $DIR/$tdir/f6
4879         $LVERIFY $DIR/$tdir $DIR/$tdir/f6 || error "lverify failed"
4880 }
4881 run_test 65e "directory setstripe defaults ======================="
4882
4883 test_65f() {
4884         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4885         test_mkdir -p $DIR/${tdir}f
4886         $RUNAS $SETSTRIPE $DIR/${tdir}f && error "setstripe succeeded" || true
4887 }
4888 run_test 65f "dir setstripe permission (should return error) ==="
4889
4890 test_65g() {
4891         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4892         test_mkdir -p $DIR/$tdir
4893         $SETSTRIPE -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
4894                                                         error "setstripe"
4895         $SETSTRIPE -d $DIR/$tdir || error "setstripe"
4896         $GETSTRIPE -v $DIR/$tdir | grep "Default" ||
4897                 error "delete default stripe failed"
4898 }
4899 run_test 65g "directory setstripe -d ==========================="
4900
4901 test_65h() {
4902         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4903         test_mkdir -p $DIR/$tdir
4904         $SETSTRIPE -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
4905                                                         error "setstripe"
4906         test_mkdir -p $DIR/$tdir/dd1
4907         [ $($GETSTRIPE -c $DIR/$tdir) == $($GETSTRIPE -c $DIR/$tdir/dd1) ] ||
4908                 error "stripe info inherit failed"
4909 }
4910 run_test 65h "directory stripe info inherit ===================="
4911
4912 test_65i() { # bug6367
4913         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4914         $SETSTRIPE -S 65536 -c -1 $MOUNT
4915 }
4916 run_test 65i "set non-default striping on root directory (bug 6367)="
4917
4918 test_65ia() { # bug12836
4919         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4920         $GETSTRIPE $MOUNT || error "getstripe $MOUNT failed"
4921 }
4922 run_test 65ia "getstripe on -1 default directory striping"
4923
4924 test_65ib() { # bug12836
4925         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4926         $GETSTRIPE -v $MOUNT || error "getstripe -v $MOUNT failed"
4927 }
4928 run_test 65ib "getstripe -v on -1 default directory striping"
4929
4930 test_65ic() { # bug12836
4931         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4932         $LFS find -mtime -1 $MOUNT > /dev/null || error "find $MOUNT failed"
4933 }
4934 run_test 65ic "new find on -1 default directory striping"
4935
4936 test_65j() { # bug6367
4937         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4938         sync; sleep 1
4939         # if we aren't already remounting for each test, do so for this test
4940         if [ "$CLEANUP" = ":" -a "$I_MOUNTED" = "yes" ]; then
4941                 cleanup || error "failed to unmount"
4942                 setup
4943         fi
4944         $SETSTRIPE -d $MOUNT || error "setstripe failed"
4945 }
4946 run_test 65j "set default striping on root directory (bug 6367)="
4947
4948 test_65k() { # bug11679
4949         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4950         [ "$OSTCOUNT" -lt 2 ] && skip_env "too few OSTs" && return
4951         remote_mds_nodsh && skip "remote MDS with nodsh" && return
4952
4953     echo "Check OST status: "
4954     local MDS_OSCS=`do_facet $SINGLEMDS lctl dl |
4955               awk '/[oO][sS][cC].*md[ts]/ { print $4 }'`
4956
4957     for OSC in $MDS_OSCS; do
4958         echo $OSC "is activate"
4959         do_facet $SINGLEMDS lctl --device %$OSC activate
4960     done
4961
4962     mkdir -p $DIR/$tdir
4963     for INACTIVE_OSC in $MDS_OSCS; do
4964         echo "Deactivate: " $INACTIVE_OSC
4965         do_facet $SINGLEMDS lctl --device %$INACTIVE_OSC deactivate
4966         for STRIPE_OSC in $MDS_OSCS; do
4967             OST=`osc_to_ost $STRIPE_OSC`
4968             IDX=`do_facet $SINGLEMDS lctl get_param -n lov.*md*.target_obd |
4969                  awk -F: /$OST/'{ print $1 }' | head -n 1`
4970
4971             [ -f $DIR/$tdir/$IDX ] && continue
4972             echo "$SETSTRIPE -i $IDX -c 1 $DIR/$tdir/$IDX"
4973             $SETSTRIPE -i $IDX -c 1 $DIR/$tdir/$IDX
4974             RC=$?
4975             [ $RC -ne 0 ] && error "setstripe should have succeeded"
4976         done
4977         rm -f $DIR/$tdir/*
4978         echo $INACTIVE_OSC "is Activate."
4979         do_facet $SINGLEMDS lctl --device  %$INACTIVE_OSC activate
4980     done
4981 }
4982 run_test 65k "validate manual striping works properly with deactivated OSCs"
4983
4984 test_65l() { # bug 12836
4985         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4986         test_mkdir -p $DIR/$tdir/test_dir
4987         $SETSTRIPE -c -1 $DIR/$tdir/test_dir
4988         $LFS find -mtime -1 $DIR/$tdir >/dev/null
4989 }
4990 run_test 65l "lfs find on -1 stripe dir ========================"
4991
4992 # bug 2543 - update blocks count on client
4993 test_66() {
4994         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4995         COUNT=${COUNT:-8}
4996         dd if=/dev/zero of=$DIR/f66 bs=1k count=$COUNT
4997         sync; sync_all_data; sync; sync_all_data
4998         cancel_lru_locks osc
4999         BLOCKS=`ls -s $DIR/f66 | awk '{ print $1 }'`
5000         [ $BLOCKS -ge $COUNT ] || error "$DIR/f66 blocks $BLOCKS < $COUNT"
5001 }
5002 run_test 66 "update inode blocks count on client ==============="
5003
5004 LLOOP=
5005 LLITELOOPLOAD=
5006 cleanup_68() {
5007         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5008         trap 0
5009         if [ ! -z "$LLOOP" ]; then
5010                 if swapon -s | grep -q $LLOOP; then
5011                         swapoff $LLOOP || error "swapoff failed"
5012                 fi
5013
5014                 $LCTL blockdev_detach $LLOOP || error "detach failed"
5015                 rm -f $LLOOP
5016                 unset LLOOP
5017         fi
5018         if [ ! -z "$LLITELOOPLOAD" ]; then
5019                 rmmod llite_lloop
5020                 unset LLITELOOPLOAD
5021         fi
5022         rm -f $DIR/f68*
5023 }
5024
5025 meminfo() {
5026         awk '($1 == "'$1':") { print $2 }' /proc/meminfo
5027 }
5028
5029 swap_used() {
5030         swapon -s | awk '($1 == "'$1'") { print $4 }'
5031 }
5032
5033 # test case for lloop driver, basic function
5034 test_68a() {
5035         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5036         [ "$UID" != 0 ] && skip_env "must run as root" && return
5037         llite_lloop_enabled || \
5038                 { skip_env "llite_lloop module disabled" && return; }
5039
5040         trap cleanup_68 EXIT
5041
5042         if ! module_loaded llite_lloop; then
5043                 if load_module llite/llite_lloop; then
5044                         LLITELOOPLOAD=yes
5045                 else
5046                         skip_env "can't find module llite_lloop"
5047                         return
5048                 fi
5049         fi
5050
5051         LLOOP=$TMP/lloop.`date +%s`.`date +%N`
5052         dd if=/dev/zero of=$DIR/f68a bs=4k count=1024
5053         $LCTL blockdev_attach $DIR/f68a $LLOOP || error "attach failed"
5054
5055         directio rdwr $LLOOP 0 1024 4096 || error "direct write failed"
5056         directio rdwr $LLOOP 0 1025 4096 && error "direct write should fail"
5057
5058         cleanup_68
5059 }
5060 run_test 68a "lloop driver - basic test ========================"
5061
5062 # excercise swapping to lustre by adding a high priority swapfile entry
5063 # and then consuming memory until it is used.
5064 test_68b() {  # was test_68
5065         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5066         [ "$UID" != 0 ] && skip_env "must run as root" && return
5067         lctl get_param -n devices | grep -q obdfilter && \
5068                 skip "local OST" && return
5069
5070         grep -q llite_lloop /proc/modules
5071         [ $? -ne 0 ] && skip "can't find module llite_lloop" && return
5072
5073         [ -z "`$LCTL list_nids | grep -v tcp`" ] && \
5074                 skip "can't reliably test swap with TCP" && return
5075
5076         MEMTOTAL=`meminfo MemTotal`
5077         NR_BLOCKS=$((MEMTOTAL>>8))
5078         [[ $NR_BLOCKS -le 2048 ]] && NR_BLOCKS=2048
5079
5080         LLOOP=$TMP/lloop.`date +%s`.`date +%N`
5081         dd if=/dev/zero of=$DIR/f68b bs=64k seek=$NR_BLOCKS count=1
5082         mkswap $DIR/f68b
5083
5084         $LCTL blockdev_attach $DIR/f68b $LLOOP || error "attach failed"
5085
5086         trap cleanup_68 EXIT
5087
5088         swapon -p 32767 $LLOOP || error "swapon $LLOOP failed"
5089
5090         echo "before: `swapon -s | grep $LLOOP`"
5091         $MEMHOG $MEMTOTAL || error "error allocating $MEMTOTAL kB"
5092         echo "after: `swapon -s | grep $LLOOP`"
5093         SWAPUSED=`swap_used $LLOOP`
5094
5095         cleanup_68
5096
5097         [ $SWAPUSED -eq 0 ] && echo "no swap used???" || true
5098 }
5099 run_test 68b "support swapping to Lustre ========================"
5100
5101 # bug5265, obdfilter oa2dentry return -ENOENT
5102 # #define OBD_FAIL_OST_ENOENT 0x217
5103 test_69() {
5104         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5105         remote_ost_nodsh && skip "remote OST with nodsh" && return
5106
5107         f="$DIR/$tfile"
5108         $SETSTRIPE -c 1 -i 0 $f
5109
5110         $DIRECTIO write ${f}.2 0 1 || error "directio write error"
5111
5112         do_facet ost1 lctl set_param fail_loc=0x217
5113         $TRUNCATE $f 1 # vmtruncate() will ignore truncate() error.
5114         $DIRECTIO write $f 0 2 && error "write succeeded, expect -ENOENT"
5115
5116         do_facet ost1 lctl set_param fail_loc=0
5117         $DIRECTIO write $f 0 2 || error "write error"
5118
5119         cancel_lru_locks osc
5120         $DIRECTIO read $f 0 1 || error "read error"
5121
5122         do_facet ost1 lctl set_param fail_loc=0x217
5123         $DIRECTIO read $f 1 1 && error "read succeeded, expect -ENOENT"
5124
5125         do_facet ost1 lctl set_param fail_loc=0
5126         rm -f $f
5127 }
5128 run_test 69 "verify oa2dentry return -ENOENT doesn't LBUG ======"
5129
5130 test_71() {
5131     test_mkdir -p $DIR/$tdir
5132     sh rundbench -C -D $DIR/$tdir 2 || error "dbench failed!"
5133 }
5134 run_test 71 "Running dbench on lustre (don't segment fault) ===="
5135
5136 test_72a() { # bug 5695 - Test that on 2.6 remove_suid works properly
5137         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5138         [ "$RUNAS_ID" = "$UID" ] &&
5139                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
5140
5141         # Check that testing environment is properly set up. Skip if not
5142         FAIL_ON_ERROR=false check_runas_id_ret $RUNAS_ID $RUNAS_GID $RUNAS || {
5143                 skip_env "User $RUNAS_ID does not exist - skipping"
5144                 return 0
5145         }
5146         # We had better clear the $DIR to get enough space for dd
5147         rm -rf $DIR/*
5148         touch $DIR/$tfile
5149         chmod 777 $DIR/$tfile
5150         chmod ug+s $DIR/$tfile
5151         $RUNAS dd if=/dev/zero of=$DIR/$tfile bs=512 count=1 ||
5152                 error "$RUNAS dd $DIR/$tfile failed"
5153         # See if we are still setuid/sgid
5154         test -u $DIR/$tfile -o -g $DIR/$tfile &&
5155                 error "S/gid is not dropped on write"
5156         # Now test that MDS is updated too
5157         cancel_lru_locks mdc
5158         test -u $DIR/$tfile -o -g $DIR/$tfile &&
5159                 error "S/gid is not dropped on MDS"
5160         rm -f $DIR/$tfile
5161 }
5162 run_test 72a "Test that remove suid works properly (bug5695) ===="
5163
5164 test_72b() { # bug 24226 -- keep mode setting when size is not changing
5165         local perm
5166
5167         [ "$RUNAS_ID" = "$UID" ] && \
5168                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
5169         [ "$RUNAS_ID" -eq 0 ] && \
5170                 skip_env "RUNAS_ID = 0 -- skipping" && return
5171
5172         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5173         # Check that testing environment is properly set up. Skip if not
5174         FAIL_ON_ERROR=false check_runas_id_ret $RUNAS_ID $RUNAS_ID $RUNAS || {
5175                 skip_env "User $RUNAS_ID does not exist - skipping"
5176                 return 0
5177         }
5178         touch $DIR/${tfile}-f{g,u}
5179         test_mkdir $DIR/${tfile}-dg
5180         test_mkdir $DIR/${tfile}-du
5181         chmod 770 $DIR/${tfile}-{f,d}{g,u}
5182         chmod g+s $DIR/${tfile}-{f,d}g
5183         chmod u+s $DIR/${tfile}-{f,d}u
5184         for perm in 777 2777 4777; do
5185                 $RUNAS chmod $perm $DIR/${tfile}-fg && error "S/gid file allowed improper chmod to $perm"
5186                 $RUNAS chmod $perm $DIR/${tfile}-fu && error "S/uid file allowed improper chmod to $perm"
5187                 $RUNAS chmod $perm $DIR/${tfile}-dg && error "S/gid dir allowed improper chmod to $perm"
5188                 $RUNAS chmod $perm $DIR/${tfile}-du && error "S/uid dir allowed improper chmod to $perm"
5189         done
5190         true
5191 }
5192 run_test 72b "Test that we keep mode setting if without file data changed (bug 24226)"
5193
5194 # bug 3462 - multiple simultaneous MDC requests
5195 test_73() {
5196         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5197         test_mkdir $DIR/d73-1
5198         test_mkdir $DIR/d73-2
5199         multiop_bg_pause $DIR/d73-1/f73-1 O_c || return 1
5200         pid1=$!
5201
5202         lctl set_param fail_loc=0x80000129
5203         $MULTIOP $DIR/d73-1/f73-2 Oc &
5204         sleep 1
5205         lctl set_param fail_loc=0
5206
5207         $MULTIOP $DIR/d73-2/f73-3 Oc &
5208         pid3=$!
5209
5210         kill -USR1 $pid1
5211         wait $pid1 || return 1
5212
5213         sleep 25
5214
5215         $CHECKSTAT -t file $DIR/d73-1/f73-1 || return 4
5216         $CHECKSTAT -t file $DIR/d73-1/f73-2 || return 5
5217         $CHECKSTAT -t file $DIR/d73-2/f73-3 || return 6
5218
5219         rm -rf $DIR/d73-*
5220 }
5221 run_test 73 "multiple MDC requests (should not deadlock)"
5222
5223 test_74a() { # bug 6149, 6184
5224         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5225         #define OBD_FAIL_LDLM_ENQUEUE_OLD_EXPORT 0x30e
5226         #
5227         # very important to OR with OBD_FAIL_ONCE (0x80000000) -- otherwise it
5228         # will spin in a tight reconnection loop
5229         touch $DIR/f74a
5230         lctl set_param fail_loc=0x8000030e
5231         # get any lock that won't be difficult - lookup works.
5232         ls $DIR/f74a
5233         lctl set_param fail_loc=0
5234         true
5235         rm -f $DIR/f74a
5236 }
5237 run_test 74a "ldlm_enqueue freed-export error path, ls (shouldn't LBUG)"
5238
5239 test_74b() { # bug 13310
5240         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5241         #define OBD_FAIL_LDLM_ENQUEUE_OLD_EXPORT 0x30e
5242         #
5243         # very important to OR with OBD_FAIL_ONCE (0x80000000) -- otherwise it
5244         # will spin in a tight reconnection loop
5245         lctl set_param fail_loc=0x8000030e
5246         # get a "difficult" lock
5247         touch $DIR/f74b
5248         lctl set_param fail_loc=0
5249         true
5250         rm -f $DIR/f74b
5251 }
5252 run_test 74b "ldlm_enqueue freed-export error path, touch (shouldn't LBUG)"
5253
5254 test_74c() {
5255         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5256 #define OBD_FAIL_LDLM_NEW_LOCK
5257         lctl set_param fail_loc=0x80000319
5258         touch $DIR/$tfile && error "Touch successful"
5259         true
5260 }
5261 run_test 74c "ldlm_lock_create error path, (shouldn't LBUG)"
5262
5263 num_inodes() {
5264         awk '/lustre_inode_cache/ {print $2; exit}' /proc/slabinfo
5265 }
5266
5267 get_inode_slab_tunables() {
5268         awk '/lustre_inode_cache/ {print $9," ",$10," ",$11; exit}' /proc/slabinfo
5269 }
5270
5271 set_inode_slab_tunables() {
5272         echo "lustre_inode_cache $1" > /proc/slabinfo
5273 }
5274
5275 test_76() { # Now for bug 20433, added originally in bug 1443
5276         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5277         local SLAB_SETTINGS=`get_inode_slab_tunables`
5278         local CPUS=`getconf _NPROCESSORS_ONLN`
5279         # we cannot set limit below 1 which means 1 inode in each
5280         # per-cpu cache is still allowed
5281         set_inode_slab_tunables "1 1 0"
5282         cancel_lru_locks osc
5283         BEFORE_INODES=`num_inodes`
5284         echo "before inodes: $BEFORE_INODES"
5285         local COUNT=1000
5286         [ "$SLOW" = "no" ] && COUNT=100
5287         for i in `seq $COUNT`; do
5288                 touch $DIR/$tfile
5289                 rm -f $DIR/$tfile
5290         done
5291         cancel_lru_locks osc
5292         AFTER_INODES=`num_inodes`
5293         echo "after inodes: $AFTER_INODES"
5294         local wait=0
5295         while [ $((AFTER_INODES-1*CPUS)) -gt $BEFORE_INODES ]; do
5296                 sleep 2
5297                 AFTER_INODES=`num_inodes`
5298                 wait=$((wait+2))
5299                 echo "wait $wait seconds inodes: $AFTER_INODES"
5300                 if [ $wait -gt 30 ]; then
5301                         error "inode slab grew from $BEFORE_INODES to $AFTER_INODES"
5302                 fi
5303         done
5304         set_inode_slab_tunables "$SLAB_SETTINGS"
5305 }
5306 run_test 76 "confirm clients recycle inodes properly ===="
5307
5308
5309 export ORIG_CSUM=""
5310 set_checksums()
5311 {
5312         # Note: in sptlrpc modes which enable its own bulk checksum, the
5313         # original crc32_le bulk checksum will be automatically disabled,
5314         # and the OBD_FAIL_OSC_CHECKSUM_SEND/OBD_FAIL_OSC_CHECKSUM_RECEIVE
5315         # will be checked by sptlrpc code against sptlrpc bulk checksum.
5316         # In this case set_checksums() will not be no-op, because sptlrpc
5317         # bulk checksum will be enabled all through the test.
5318
5319         [ "$ORIG_CSUM" ] || ORIG_CSUM=`lctl get_param -n osc.*.checksums | head -n1`
5320         lctl set_param -n osc.*.checksums $1
5321         return 0
5322 }
5323
5324 export ORIG_CSUM_TYPE="`lctl get_param -n osc.*osc-[^mM]*.checksum_type |
5325                         sed 's/.*\[\(.*\)\].*/\1/g' | head -n1`"
5326 CKSUM_TYPES=${CKSUM_TYPES:-"crc32 adler"}
5327 [ "$ORIG_CSUM_TYPE" = "crc32c" ] && CKSUM_TYPES="$CKSUM_TYPES crc32c"
5328 set_checksum_type()
5329 {
5330         lctl set_param -n osc.*osc-[^mM]*.checksum_type $1
5331         log "set checksum type to $1"
5332         return 0
5333 }
5334 F77_TMP=$TMP/f77-temp
5335 F77SZ=8
5336 setup_f77() {
5337         dd if=/dev/urandom of=$F77_TMP bs=1M count=$F77SZ || \
5338                 error "error writing to $F77_TMP"
5339 }
5340
5341 test_77a() { # bug 10889
5342         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5343         $GSS && skip "could not run with gss" && return
5344         [ ! -f $F77_TMP ] && setup_f77
5345         set_checksums 1
5346         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ || error "dd error"
5347         set_checksums 0
5348         rm -f $DIR/$tfile
5349 }
5350 run_test 77a "normal checksum read/write operation"
5351
5352 test_77b() { # bug 10889
5353         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5354         $GSS && skip "could not run with gss" && return
5355         [ ! -f $F77_TMP ] && setup_f77
5356         #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
5357         $LCTL set_param fail_loc=0x80000409
5358         set_checksums 1
5359
5360         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ conv=sync ||
5361                 error "dd error: $?"
5362         $LCTL set_param fail_loc=0
5363
5364         for algo in $CKSUM_TYPES; do
5365                 cancel_lru_locks osc
5366                 set_checksum_type $algo
5367                 #define OBD_FAIL_OSC_CHECKSUM_RECEIVE    0x408
5368                 $LCTL set_param fail_loc=0x80000408
5369                 cmp $F77_TMP $DIR/$tfile || error "file compare failed"
5370                 $LCTL set_param fail_loc=0
5371         done
5372         set_checksums 0
5373         set_checksum_type $ORIG_CSUM_TYPE
5374         rm -f $DIR/$tfile
5375 }
5376 run_test 77b "checksum error on client write, read"
5377
5378 test_77d() { # bug 10889
5379         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5380         $GSS && skip "could not run with gss" && return
5381         #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
5382         $LCTL set_param fail_loc=0x80000409
5383         set_checksums 1
5384         $DIRECTIO write $DIR/$tfile 0 $F77SZ $((1024 * 1024)) ||
5385                 error "direct write: rc=$?"
5386         $LCTL set_param fail_loc=0
5387         set_checksums 0
5388
5389         #define OBD_FAIL_OSC_CHECKSUM_RECEIVE    0x408
5390         $LCTL set_param fail_loc=0x80000408
5391         set_checksums 1
5392         cancel_lru_locks osc
5393         $DIRECTIO read $DIR/$tfile 0 $F77SZ $((1024 * 1024)) ||
5394                 error "direct read: rc=$?"
5395         $LCTL set_param fail_loc=0
5396         set_checksums 0
5397 }
5398 run_test 77d "checksum error on OST direct write, read"
5399
5400 test_77f() { # bug 10889
5401         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5402         $GSS && skip "could not run with gss" && return
5403         set_checksums 1
5404         for algo in $CKSUM_TYPES; do
5405                 cancel_lru_locks osc
5406                 set_checksum_type $algo
5407                 #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
5408                 $LCTL set_param fail_loc=0x409
5409                 $DIRECTIO write $DIR/$tfile 0 $F77SZ $((1024 * 1024)) &&
5410                         error "direct write succeeded"
5411                 $LCTL set_param fail_loc=0
5412         done
5413         set_checksum_type $ORIG_CSUM_TYPE
5414         set_checksums 0
5415 }
5416 run_test 77f "repeat checksum error on write (expect error)"
5417
5418 test_77g() { # bug 10889
5419         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5420         $GSS && skip "could not run with gss" && return
5421         remote_ost_nodsh && skip "remote OST with nodsh" && return
5422
5423         [ ! -f $F77_TMP ] && setup_f77
5424
5425         $SETSTRIPE -c 1 -i 0 $DIR/$tfile
5426         #define OBD_FAIL_OST_CHECKSUM_RECEIVE       0x21a
5427         do_facet ost1 lctl set_param fail_loc=0x8000021a
5428         set_checksums 1
5429         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ ||
5430                 error "write error: rc=$?"
5431         do_facet ost1 lctl set_param fail_loc=0
5432         set_checksums 0
5433
5434         cancel_lru_locks osc
5435         #define OBD_FAIL_OST_CHECKSUM_SEND          0x21b
5436         do_facet ost1 lctl set_param fail_loc=0x8000021b
5437         set_checksums 1
5438         cmp $F77_TMP $DIR/$tfile || error "file compare failed"
5439         do_facet ost1 lctl set_param fail_loc=0
5440         set_checksums 0
5441 }
5442 run_test 77g "checksum error on OST write, read"
5443
5444 test_77i() { # bug 13805
5445         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5446         $GSS && skip "could not run with gss" && return
5447         #define OBD_FAIL_OSC_CONNECT_CKSUM       0x40b
5448         lctl set_param fail_loc=0x40b
5449         remount_client $MOUNT
5450         lctl set_param fail_loc=0
5451         for VALUE in `lctl get_param osc.*osc-[^mM]*.checksum_type`; do
5452                 PARAM=`echo ${VALUE[0]} | cut -d "=" -f1`
5453                 algo=`lctl get_param -n $PARAM | sed 's/.*\[\(.*\)\].*/\1/g'`
5454                 [ "$algo" = "adler" ] || error "algo set to $algo instead of adler"
5455         done
5456         remount_client $MOUNT
5457 }
5458 run_test 77i "client not supporting OSD_CONNECT_CKSUM"
5459
5460 test_77j() { # bug 13805
5461         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5462         $GSS && skip "could not run with gss" && return
5463         #define OBD_FAIL_OSC_CKSUM_ADLER_ONLY    0x40c
5464         lctl set_param fail_loc=0x40c
5465         remount_client $MOUNT
5466         lctl set_param fail_loc=0
5467         sleep 2 # wait async osc connect to finish
5468         for VALUE in `lctl get_param osc.*osc-[^mM]*.checksum_type`; do
5469                 PARAM=`echo ${VALUE[0]} | cut -d "=" -f1`
5470                 algo=`lctl get_param -n $PARAM | sed 's/.*\[\(.*\)\].*/\1/g'`
5471                 [ "$algo" = "adler" ] || error "algo set to $algo instead of adler"
5472         done
5473         remount_client $MOUNT
5474 }
5475 run_test 77j "client only supporting ADLER32"
5476
5477 [ "$ORIG_CSUM" ] && set_checksums $ORIG_CSUM || true
5478 rm -f $F77_TMP
5479 unset F77_TMP
5480
5481 test_78() { # bug 10901
5482         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5483         remote_ost || { skip_env "local OST" && return; }
5484
5485         NSEQ=5
5486         F78SIZE=$(($(awk '/MemFree:/ { print $2 }' /proc/meminfo) / 1024))
5487         echo "MemFree: $F78SIZE, Max file size: $MAXFREE"
5488         MEMTOTAL=$(($(awk '/MemTotal:/ { print $2 }' /proc/meminfo) / 1024))
5489         echo "MemTotal: $MEMTOTAL"
5490 # reserve 256MB of memory for the kernel and other running processes,
5491 # and then take 1/2 of the remaining memory for the read/write buffers.
5492     if [ $MEMTOTAL -gt 512 ] ;then
5493         MEMTOTAL=$(((MEMTOTAL - 256 ) / 2))
5494     else
5495         # for those poor memory-starved high-end clusters...
5496         MEMTOTAL=$((MEMTOTAL / 2))
5497     fi
5498         echo "Mem to use for directio: $MEMTOTAL"
5499         [ $F78SIZE -gt $MEMTOTAL ] && F78SIZE=$MEMTOTAL
5500         [ $F78SIZE -gt 512 ] && F78SIZE=512
5501         [ $F78SIZE -gt $((MAXFREE / 1024)) ] && F78SIZE=$((MAXFREE / 1024))
5502         SMALLESTOST=`lfs df $DIR |grep OST | awk '{print $4}' |sort -n |head -1`
5503         echo "Smallest OST: $SMALLESTOST"
5504         [ $SMALLESTOST -lt 10240 ] && \
5505                 skip "too small OSTSIZE, useless to run large O_DIRECT test" && return 0
5506
5507         [ $F78SIZE -gt $((SMALLESTOST * $OSTCOUNT / 1024 - 80)) ] && \
5508                 F78SIZE=$((SMALLESTOST * $OSTCOUNT / 1024 - 80))
5509
5510         [ "$SLOW" = "no" ] && NSEQ=1 && [ $F78SIZE -gt 32 ] && F78SIZE=32
5511         echo "File size: $F78SIZE"
5512         $SETSTRIPE -c $OSTCOUNT $DIR/$tfile || error "setstripe failed"
5513         for i in `seq 1 $NSEQ`
5514         do
5515                 FSIZE=$(($F78SIZE / ($NSEQ - $i + 1)))
5516                 echo directIO rdwr round $i of $NSEQ
5517                 $DIRECTIO rdwr $DIR/$tfile 0 $FSIZE 1048576||error "rdwr failed"
5518         done
5519
5520         rm -f $DIR/$tfile
5521 }
5522 run_test 78 "handle large O_DIRECT writes correctly ============"
5523
5524 test_79() { # bug 12743
5525         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5526         wait_delete_completed
5527
5528         BKTOTAL=$(calc_osc_kbytes kbytestotal)
5529         BKFREE=$(calc_osc_kbytes kbytesfree)
5530         BKAVAIL=$(calc_osc_kbytes kbytesavail)
5531
5532         STRING=`df -P $MOUNT | tail -n 1 | awk '{print $2","$3","$4}'`
5533         DFTOTAL=`echo $STRING | cut -d, -f1`
5534         DFUSED=`echo $STRING  | cut -d, -f2`
5535         DFAVAIL=`echo $STRING | cut -d, -f3`
5536         DFFREE=$(($DFTOTAL - $DFUSED))
5537
5538         ALLOWANCE=$((64 * $OSTCOUNT))
5539
5540         if [ $DFTOTAL -lt $(($BKTOTAL - $ALLOWANCE)) ] ||
5541            [ $DFTOTAL -gt $(($BKTOTAL + $ALLOWANCE)) ] ; then
5542                 error "df total($DFTOTAL) mismatch OST total($BKTOTAL)"
5543         fi
5544         if [ $DFFREE -lt $(($BKFREE - $ALLOWANCE)) ] ||
5545            [ $DFFREE -gt $(($BKFREE + $ALLOWANCE)) ] ; then
5546                 error "df free($DFFREE) mismatch OST free($BKFREE)"
5547         fi
5548         if [ $DFAVAIL -lt $(($BKAVAIL - $ALLOWANCE)) ] ||
5549            [ $DFAVAIL -gt $(($BKAVAIL + $ALLOWANCE)) ] ; then
5550                 error "df avail($DFAVAIL) mismatch OST avail($BKAVAIL)"
5551         fi
5552 }
5553 run_test 79 "df report consistency check ======================="
5554
5555 test_80() { # bug 10718
5556         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5557         # relax strong synchronous semantics for slow backends like ZFS
5558         local soc="obdfilter.*.sync_on_lock_cancel"
5559         local soc_old=$(do_facet ost1 lctl get_param -n $soc | head -n1)
5560         local hosts=
5561         if [ "$soc_old" != "never" -a "$(facet_fstype ost1)" != "ldiskfs" ]; then
5562                 hosts=$(for host in $(seq -f "ost%g" 1 $OSTCOUNT); do
5563                           facet_active_host $host; done | sort -u)
5564                 do_nodes $hosts lctl set_param $soc=never
5565         fi
5566
5567         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=1M
5568         sync; sleep 1; sync
5569         local BEFORE=`date +%s`
5570         cancel_lru_locks osc
5571         local AFTER=`date +%s`
5572         local DIFF=$((AFTER-BEFORE))
5573         if [ $DIFF -gt 1 ] ; then
5574                 error "elapsed for 1M@1T = $DIFF"
5575         fi
5576
5577         [ -n "$hosts" ] && do_nodes $hosts lctl set_param $soc=$soc_old
5578
5579         rm -f $DIR/$tfile
5580 }
5581 run_test 80 "Page eviction is equally fast at high offsets too  ===="
5582
5583 test_81a() { # LU-456
5584         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5585         remote_ost_nodsh && skip "remote OST with nodsh" && return
5586         # define OBD_FAIL_OST_MAPBLK_ENOSPC    0x228
5587         # MUST OR with the OBD_FAIL_ONCE (0x80000000)
5588         do_facet ost1 lctl set_param fail_loc=0x80000228
5589
5590         # write should trigger a retry and success
5591         $SETSTRIPE -i 0 -c 1 $DIR/$tfile
5592         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
5593         RC=$?
5594         if [ $RC -ne 0 ] ; then
5595                 error "write should success, but failed for $RC"
5596         fi
5597 }
5598 run_test 81a "OST should retry write when get -ENOSPC ==============="
5599
5600 test_81b() { # LU-456
5601         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5602         remote_ost_nodsh && skip "remote OST with nodsh" && return
5603         # define OBD_FAIL_OST_MAPBLK_ENOSPC    0x228
5604         # Don't OR with the OBD_FAIL_ONCE (0x80000000)
5605         do_facet ost1 lctl set_param fail_loc=0x228
5606
5607         # write should retry several times and return -ENOSPC finally
5608         $SETSTRIPE -i 0 -c 1 $DIR/$tfile
5609         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
5610         RC=$?
5611         ENOSPC=28
5612         if [ $RC -ne $ENOSPC ] ; then
5613                 error "dd should fail for -ENOSPC, but succeed."
5614         fi
5615 }
5616 run_test 81b "OST should return -ENOSPC when retry still fails ======="
5617
5618 test_82() { # LU-1031
5619         dd if=/dev/zero of=$DIR/$tfile bs=1M count=10
5620         local gid1=14091995
5621         local gid2=16022000
5622
5623         multiop_bg_pause $DIR/$tfile OG${gid1}_g${gid1}c || return 1
5624         local MULTIPID1=$!
5625         multiop_bg_pause $DIR/$tfile O_G${gid2}r10g${gid2}c || return 2
5626         local MULTIPID2=$!
5627         kill -USR1 $MULTIPID2
5628         sleep 2
5629         if [[ `ps h -o comm -p $MULTIPID2` == "" ]]; then
5630                 error "First grouplock does not block second one"
5631         else
5632                 echo "Second grouplock blocks first one"
5633         fi
5634         kill -USR1 $MULTIPID1
5635         wait $MULTIPID1
5636         wait $MULTIPID2
5637 }
5638 run_test 82 "Basic grouplock test ==============================="
5639
5640 test_99a() {
5641         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" &&
5642                 return
5643         test_mkdir -p $DIR/d99cvsroot
5644         chown $RUNAS_ID $DIR/d99cvsroot
5645         local oldPWD=$PWD       # bug 13584, use $TMP as working dir
5646         cd $TMP
5647
5648         $RUNAS cvs -d $DIR/d99cvsroot init || error "cvs init failed"
5649         cd $oldPWD
5650 }
5651 run_test 99a "cvs init ========================================="
5652
5653 test_99b() {
5654         [ -z "$(which cvs 2>/dev/null)" ] &&
5655                 skip_env "could not find cvs" && return
5656         [ ! -d $DIR/d99cvsroot ] && test_99a
5657         cd /etc/init.d
5658         # some versions of cvs import exit(1) when asked to import links or
5659         # files they can't read.  ignore those files.
5660         TOIGNORE=$(find . -type l -printf '-I %f\n' -o \
5661                         ! -perm +4 -printf '-I %f\n')
5662         $RUNAS cvs -d $DIR/d99cvsroot import -m "nomesg" $TOIGNORE \
5663                 d99reposname vtag rtag
5664 }
5665 run_test 99b "cvs import ======================================="
5666
5667 test_99c() {
5668         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && return
5669         [ ! -d $DIR/d99cvsroot ] && test_99b
5670         cd $DIR
5671         test_mkdir -p $DIR/d99reposname
5672         chown $RUNAS_ID $DIR/d99reposname
5673         $RUNAS cvs -d $DIR/d99cvsroot co d99reposname
5674 }
5675 run_test 99c "cvs checkout ====================================="
5676
5677 test_99d() {
5678         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && return
5679         [ ! -d $DIR/d99cvsroot ] && test_99c
5680         cd $DIR/d99reposname
5681         $RUNAS touch foo99
5682         $RUNAS cvs add -m 'addmsg' foo99
5683 }
5684 run_test 99d "cvs add =========================================="
5685
5686 test_99e() {
5687         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && return
5688         [ ! -d $DIR/d99cvsroot ] && test_99c
5689         cd $DIR/d99reposname
5690         $RUNAS cvs update
5691 }
5692 run_test 99e "cvs update ======================================="
5693
5694 test_99f() {
5695         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && return
5696         [ ! -d $DIR/d99cvsroot ] && test_99d
5697         cd $DIR/d99reposname
5698         $RUNAS cvs commit -m 'nomsg' foo99
5699     rm -fr $DIR/d99cvsroot
5700 }
5701 run_test 99f "cvs commit ======================================="
5702
5703 test_100() {
5704         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5705         [ "$NETTYPE" = tcp ] || \
5706                 { skip "TCP secure port test, not useful for NETTYPE=$NETTYPE" && \
5707                         return ; }
5708
5709         remote_ost_nodsh && skip "remote OST with nodsh" && return
5710         remote_mds_nodsh && skip "remote MDS with nodsh" && return
5711         remote_servers || \
5712                 { skip "useless for local single node setup" && return; }
5713
5714         netstat -tna | ( rc=1; while read PROT SND RCV LOCAL REMOTE STAT; do
5715                 [ "$PROT" != "tcp" ] && continue
5716                 RPORT=$(echo $REMOTE | cut -d: -f2)
5717                 [ "$RPORT" != "$ACCEPTOR_PORT" ] && continue
5718
5719                 rc=0
5720                 LPORT=`echo $LOCAL | cut -d: -f2`
5721                 if [ $LPORT -ge 1024 ]; then
5722                         echo "bad: $PROT $SND $RCV $LOCAL $REMOTE $STAT"
5723                         netstat -tna
5724                         error_exit "local: $LPORT > 1024, remote: $RPORT"
5725                 fi
5726         done
5727         [ "$rc" = 0 ] || error_exit "privileged port not found" )
5728 }
5729 run_test 100 "check local port using privileged port ==========="
5730
5731 function get_named_value()
5732 {
5733     local tag
5734
5735     tag=$1
5736     while read ;do
5737         line=$REPLY
5738         case $line in
5739         $tag*)
5740             echo $line | sed "s/^$tag[ ]*//"
5741             break
5742             ;;
5743         esac
5744     done
5745 }
5746
5747 export CACHE_MAX=$($LCTL get_param -n llite.*.max_cached_mb |
5748                    awk '/^max_cached_mb/ { print $2 }')
5749
5750 cleanup_101a() {
5751         $LCTL set_param -n llite.*.max_cached_mb $CACHE_MAX
5752         trap 0
5753 }
5754
5755 test_101a() {
5756         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5757         local s
5758         local discard
5759         local nreads=10000
5760         local cache_limit=32
5761
5762         $LCTL set_param -n osc.*-osc*.rpc_stats 0
5763         trap cleanup_101a EXIT
5764         $LCTL set_param -n llite.*.read_ahead_stats 0
5765         $LCTL set_param -n llite.*.max_cached_mb $cache_limit
5766
5767         #
5768         # randomly read 10000 of 64K chunks from file 3x 32MB in size
5769         #
5770         echo "nreads: $nreads file size: $((cache_limit * 3))MB"
5771         $READS -f $DIR/$tfile -s$((cache_limit * 3192 * 1024)) -b65536 -C -n$nreads -t 180
5772
5773         discard=0
5774         for s in `$LCTL get_param -n llite.*.read_ahead_stats | \
5775                 get_named_value 'read but discarded' | cut -d" " -f1`; do
5776                         discard=$(($discard + $s))
5777         done
5778         cleanup_101a
5779
5780         if [ $(($discard * 10)) -gt $nreads ] ;then
5781                 $LCTL get_param osc.*-osc*.rpc_stats
5782                 $LCTL get_param llite.*.read_ahead_stats
5783                 error "too many ($discard) discarded pages"
5784         fi
5785         rm -f $DIR/$tfile || true
5786 }
5787 run_test 101a "check read-ahead for random reads ================"
5788
5789 setup_test101bc() {
5790         test_mkdir -p $DIR/$tdir
5791         STRIPE_SIZE=1048576
5792         STRIPE_COUNT=$OSTCOUNT
5793         STRIPE_OFFSET=0
5794
5795         local list=$(comma_list $(osts_nodes))
5796         set_osd_param $list '' read_cache_enable 0
5797         set_osd_param $list '' writethrough_cache_enable 0
5798
5799         trap cleanup_test101bc EXIT
5800         # prepare the read-ahead file
5801         $SETSTRIPE -S $STRIPE_SIZE -i $STRIPE_OFFSET -c $OSTCOUNT $DIR/$tfile
5802
5803         dd if=/dev/zero of=$DIR/$tfile bs=1024k count=100 2> /dev/null
5804 }
5805
5806 cleanup_test101bc() {
5807         trap 0
5808         rm -rf $DIR/$tdir
5809         rm -f $DIR/$tfile
5810
5811         local list=$(comma_list $(osts_nodes))
5812         set_osd_param $list '' read_cache_enable 1
5813         set_osd_param $list '' writethrough_cache_enable 1
5814 }
5815
5816 calc_total() {
5817         awk 'BEGIN{total=0}; {total+=$1}; END{print total}'
5818 }
5819
5820 ra_check_101() {
5821         local READ_SIZE=$1
5822         local STRIPE_SIZE=1048576
5823         local RA_INC=1048576
5824         local STRIDE_LENGTH=$((STRIPE_SIZE/READ_SIZE))
5825         local FILE_LENGTH=$((64*100))
5826         local discard_limit=$((((STRIDE_LENGTH - 1)*3/(STRIDE_LENGTH*OSTCOUNT))* \
5827                              (STRIDE_LENGTH*OSTCOUNT - STRIDE_LENGTH)))
5828         DISCARD=`$LCTL get_param -n llite.*.read_ahead_stats | \
5829                         get_named_value 'read but discarded' | \
5830                         cut -d" " -f1 | calc_total`
5831         if [ $DISCARD -gt $discard_limit ]; then
5832                 $LCTL get_param llite.*.read_ahead_stats
5833                 error "Too many ($DISCARD) discarded pages with size (${READ_SIZE})"
5834         else
5835                 echo "Read-ahead success for size ${READ_SIZE}"
5836         fi
5837 }
5838
5839 test_101b() {
5840         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5841         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping stride IO stride-ahead test" && return
5842         local STRIPE_SIZE=1048576
5843         local STRIDE_SIZE=$((STRIPE_SIZE*OSTCOUNT))
5844         local FILE_LENGTH=$((STRIPE_SIZE*100))
5845         local ITERATION=$((FILE_LENGTH/STRIDE_SIZE))
5846         # prepare the read-ahead file
5847         setup_test101bc
5848         cancel_lru_locks osc
5849         for BIDX in 2 4 8 16 32 64 128 256
5850         do
5851                 local BSIZE=$((BIDX*4096))
5852                 local READ_COUNT=$((STRIPE_SIZE/BSIZE))
5853                 local STRIDE_LENGTH=$((STRIDE_SIZE/BSIZE))
5854                 local OFFSET=$((STRIPE_SIZE/BSIZE*(OSTCOUNT - 1)))
5855                 $LCTL set_param -n llite.*.read_ahead_stats 0
5856                 $READS -f $DIR/$tfile  -l $STRIDE_LENGTH -o $OFFSET \
5857                               -s $FILE_LENGTH -b $STRIPE_SIZE -a $READ_COUNT -n $ITERATION
5858                 cancel_lru_locks osc
5859                 ra_check_101 $BSIZE
5860         done
5861         cleanup_test101bc
5862         true
5863 }
5864 run_test 101b "check stride-io mode read-ahead ================="
5865
5866 test_101c() {
5867         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5868         local STRIPE_SIZE=1048576
5869         local FILE_LENGTH=$((STRIPE_SIZE*100))
5870         local nreads=10000
5871         local osc_rpc_stats
5872
5873         setup_test101bc
5874
5875         cancel_lru_locks osc
5876         $LCTL set_param osc.*.rpc_stats 0
5877         $READS -f $DIR/$tfile -s$FILE_LENGTH -b65536 -n$nreads -t 180
5878         for osc_rpc_stats in $($LCTL get_param -N osc.*.rpc_stats); do
5879                 local stats=$($LCTL get_param -n $osc_rpc_stats)
5880                 local lines=$(echo "$stats" | awk 'END {print NR;}')
5881                 local size
5882
5883                 if [ $lines -le 20 ]; then
5884                         continue
5885                 fi
5886                 for size in 1 2 4 8; do
5887                         local rpc=$(echo "$stats" |
5888                                     awk '($1 == "'$size':") {print $2; exit; }')
5889                         [ $rpc != 0 ] &&
5890                                 error "Small $((size*4))k read IO $rpc !"
5891                 done
5892                 echo "$osc_rpc_stats check passed!"
5893         done
5894         cleanup_test101bc
5895         true
5896 }
5897 run_test 101c "check stripe_size aligned read-ahead ================="
5898
5899 set_read_ahead() {
5900    $LCTL get_param -n llite.*.max_read_ahead_mb | head -n 1
5901    $LCTL set_param -n llite.*.max_read_ahead_mb $1 > /dev/null 2>&1
5902 }
5903
5904 test_101d() {
5905         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5906         local file=$DIR/$tfile
5907         local size=${FILESIZE_101c:-500}
5908         local ra_MB=${READAHEAD_MB:-40}
5909
5910         local space=$(df -P $DIR | tail -n 1 | awk '{ print $4 }')
5911         [ $space -gt $((size * 1024)) ] ||
5912                 { skip "Need free space ${size}M, have ${space}K" && return; }
5913
5914         echo "Creating test file $file of size ${size}M with ${space}K free space"
5915         $SETSTRIPE -c -1 $file || error "setstripe failed"
5916         dd if=/dev/zero of=$file bs=1M count=$size || error "dd failed"
5917         echo Cancel LRU locks on lustre client to flush the client cache
5918         cancel_lru_locks osc
5919
5920     echo Disable read-ahead
5921     local old_READAHEAD=$(set_read_ahead 0)
5922
5923     echo Reading the test file $file with read-ahead disabled
5924     time_ra_OFF=$(do_and_time "dd if=$file of=/dev/null bs=1M count=$size")
5925
5926     echo Cancel LRU locks on lustre client to flush the client cache
5927     cancel_lru_locks osc
5928     echo Enable read-ahead with ${ra_MB}MB
5929     set_read_ahead $ra_MB
5930
5931     echo Reading the test file $file with read-ahead enabled
5932     time_ra_ON=$(do_and_time "dd if=$file of=/dev/null bs=1M count=$size")
5933
5934     echo read-ahead disabled time read $time_ra_OFF
5935     echo read-ahead enabled  time read $time_ra_ON
5936
5937         set_read_ahead $old_READAHEAD
5938         rm -f $file
5939         wait_delete_completed
5940
5941     [ $time_ra_ON -lt $time_ra_OFF ] ||
5942         error "read-ahead enabled  time read (${time_ra_ON}s) is more than
5943                read-ahead disabled time read (${time_ra_OFF}s) filesize ${size}M"
5944 }
5945 run_test 101d "file read with and without read-ahead enabled  ================="
5946
5947 test_101e() {
5948         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5949     local file=$DIR/$tfile
5950     local size=500  #KB
5951     local count=100
5952     local blksize=1024
5953
5954     local space=$(df -P $DIR | tail -n 1 | awk '{ print $4 }')
5955     local need_space=$((count * size))
5956     [ $space -gt $need_space ] ||
5957         { skip_env "Need free space $need_space, have $space" && return; }
5958
5959     echo Creating $count ${size}K test files
5960     for ((i = 0; i < $count; i++)); do
5961         dd if=/dev/zero of=${file}_${i} bs=$blksize count=$size 2>/dev/null
5962     done
5963
5964     echo Cancel LRU locks on lustre client to flush the client cache
5965     cancel_lru_locks osc
5966
5967     echo Reset readahead stats
5968     $LCTL set_param -n llite.*.read_ahead_stats 0
5969
5970     for ((i = 0; i < $count; i++)); do
5971         dd if=${file}_${i} of=/dev/null bs=$blksize count=$size 2>/dev/null
5972     done
5973
5974     local miss=$($LCTL get_param -n llite.*.read_ahead_stats | \
5975           get_named_value 'misses' | cut -d" " -f1 | calc_total)
5976
5977     for ((i = 0; i < $count; i++)); do
5978         rm -rf ${file}_${i} 2>/dev/null
5979     done
5980
5981     #10000 means 20% reads are missing in readahead
5982     [ $miss -lt 10000 ] ||  error "misses too much for small reads"
5983 }
5984 run_test 101e "check read-ahead for small read(1k) for small files(500k)"
5985
5986 cleanup_test101f() {
5987     trap 0
5988     $LCTL set_param -n llite.*.max_read_ahead_whole_mb $MAX_WHOLE_MB
5989     rm -rf $DIR/$tfile 2>/dev/null
5990 }
5991
5992 test_101f() {
5993         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5994     local file=$DIR/$tfile
5995     local nreads=1000
5996
5997     MAX_WHOLE_MB=$($LCTL get_param -n llite.*.max_read_ahead_whole_mb)
5998     $LCTL set_param -n llite.*.max_read_ahead_whole_mb 2
5999     dd if=/dev/zero of=${file} bs=2097152 count=1 2>/dev/null
6000     trap cleanup_test101f EXIT
6001
6002     echo Cancel LRU locks on lustre client to flush the client cache
6003     cancel_lru_locks osc
6004
6005     echo Reset readahead stats
6006     $LCTL set_param -n llite.*.read_ahead_stats 0
6007     # Random read in a 2M file, because max_read_ahead_whole_mb = 2M,
6008     # readahead should read in 2M file on second read, so only miss
6009     # 2 pages.
6010     echo Random 4K reads on 2M file for 1000 times
6011     $READS -f $file -s 2097152 -b 4096 -n $nreads
6012
6013     echo checking missing pages
6014     local miss=$($LCTL get_param -n llite.*.read_ahead_stats |
6015           get_named_value 'misses' | cut -d" " -f1 | calc_total)
6016
6017     [ $miss -lt 3 ] || error "misses too much pages!"
6018     cleanup_test101f
6019 }
6020 run_test 101f "check read-ahead for max_read_ahead_whole_mb"
6021
6022 setup_test102() {
6023         test_mkdir -p $DIR/$tdir
6024         chown $RUNAS_ID $DIR/$tdir
6025         STRIPE_SIZE=65536
6026         STRIPE_OFFSET=1
6027         STRIPE_COUNT=$OSTCOUNT
6028         [ $OSTCOUNT -gt 4 ] && STRIPE_COUNT=4
6029
6030         trap cleanup_test102 EXIT
6031         cd $DIR
6032         $1 $SETSTRIPE -S $STRIPE_SIZE -i $STRIPE_OFFSET -c $STRIPE_COUNT $tdir
6033         cd $DIR/$tdir
6034         for num in 1 2 3 4; do
6035                 for count in $(seq 1 $STRIPE_COUNT); do
6036                         for idx in $(seq 0 $[$STRIPE_COUNT - 1]); do
6037                                 local size=`expr $STRIPE_SIZE \* $num`
6038                                 local file=file"$num-$idx-$count"
6039                                 $1 $SETSTRIPE -S $size -i $idx -c $count $file
6040                         done
6041                 done
6042         done
6043
6044         cd $DIR
6045         $1 $TAR cf $TMP/f102.tar $tdir --xattrs
6046 }
6047
6048 cleanup_test102() {
6049         trap 0
6050         rm -f $TMP/f102.tar
6051         rm -rf $DIR/d0.sanity/d102
6052 }
6053
6054 test_102a() {
6055         local testfile=$DIR/xattr_testfile
6056
6057         touch $testfile
6058
6059         [ "$UID" != 0 ] && skip_env "must run as root" && return
6060         [ -z "$(lctl get_param -n mdc.*-mdc-*.connect_flags | grep xattr)" ] &&
6061                 skip_env "must have user_xattr" && return
6062
6063         [ -z "$(which setfattr 2>/dev/null)" ] &&
6064                 skip_env "could not find setfattr" && return
6065
6066         echo "set/get xattr..."
6067         setfattr -n trusted.name1 -v value1 $testfile ||
6068                 error "setfattr -n trusted.name1=value1 $testfile failed"
6069         getfattr -n trusted.name1 $testfile 2> /dev/null |
6070           grep "trusted.name1=.value1" ||
6071                 error "$testfile missing trusted.name1=value1"
6072
6073         setfattr -n user.author1 -v author1 $testfile ||
6074                 error "setfattr -n user.author1=author1 $testfile failed"
6075         getfattr -n user.author1 $testfile 2> /dev/null |
6076           grep "user.author1=.author1" ||
6077                 error "$testfile missing trusted.author1=author1"
6078
6079         echo "listxattr..."
6080         setfattr -n trusted.name2 -v value2 $testfile ||
6081                 error "$testfile unable to set trusted.name2"
6082         setfattr -n trusted.name3 -v value3 $testfile ||
6083                 error "$testfile unable to set trusted.name3"
6084         [ $(getfattr -d -m "^trusted" $testfile 2> /dev/null |
6085             grep "trusted.name" | wc -l) -eq 3 ] ||
6086                 error "$testfile missing 3 trusted.name xattrs"
6087
6088         setfattr -n user.author2 -v author2 $testfile ||
6089                 error "$testfile unable to set user.author2"
6090         setfattr -n user.author3 -v author3 $testfile ||
6091                 error "$testfile unable to set user.author3"
6092         [ $(getfattr -d -m "^user" $testfile 2> /dev/null |
6093             grep "user.author" | wc -l) -eq 3 ] ||
6094                 error "$testfile missing 3 user.author xattrs"
6095
6096         echo "remove xattr..."
6097         setfattr -x trusted.name1 $testfile ||
6098                 error "$testfile error deleting trusted.name1"
6099         getfattr -d -m trusted $testfile 2> /dev/null | grep "trusted.name1" &&
6100                 error "$testfile did not delete trusted.name1 xattr"
6101
6102         setfattr -x user.author1 $testfile ||
6103                 error "$testfile error deleting user.author1"
6104         getfattr -d -m user $testfile 2> /dev/null | grep "user.author1" &&
6105                 error "$testfile did not delete trusted.name1 xattr"
6106
6107         # b10667: setting lustre special xattr be silently discarded
6108         echo "set lustre special xattr ..."
6109         setfattr -n "trusted.lov" -v "invalid value" $testfile ||
6110                 error "$testfile allowed setting trusted.lov"
6111 }
6112 run_test 102a "user xattr test =================================="
6113
6114 test_102b() {
6115         # b10930: get/set/list trusted.lov xattr
6116         echo "get/set/list trusted.lov xattr ..."
6117         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping 2-stripe test" && return
6118         local testfile=$DIR/$tfile
6119         $SETSTRIPE -S 65536 -i 1 -c $OSTCOUNT $testfile ||
6120                 error "setstripe failed"
6121         local STRIPECOUNT=$($GETSTRIPE -c $testfile) ||
6122                 error "getstripe failed"
6123         getfattr -d -m "^trusted" $testfile 2> /dev/null | \
6124         grep "trusted.lov" || error "can't get trusted.lov from $testfile"
6125
6126         local testfile2=${testfile}2
6127         local value=`getfattr -n trusted.lov $testfile 2> /dev/null | \
6128                      grep "trusted.lov" |sed -e 's/[^=]\+=//'`
6129
6130         $MCREATE $testfile2
6131         setfattr -n trusted.lov -v $value $testfile2
6132         local stripe_size=$($GETSTRIPE -S $testfile2)
6133         local stripe_count=$($GETSTRIPE -c $testfile2)
6134         [ $stripe_size -eq 65536 ] || error "stripe size $stripe_size != 65536"
6135         [ $stripe_count -eq $STRIPECOUNT ] ||
6136                 error "stripe count $stripe_count != $STRIPECOUNT"
6137         rm -f $DIR/$tfile
6138 }
6139 run_test 102b "getfattr/setfattr for trusted.lov EAs ============"
6140
6141 test_102c() {
6142         # b10930: get/set/list lustre.lov xattr
6143         echo "get/set/list lustre.lov xattr ..."
6144         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping 2-stripe test" && return
6145         test_mkdir -p $DIR/$tdir
6146         chown $RUNAS_ID $DIR/$tdir
6147         local testfile=$DIR/$tdir/$tfile
6148         $RUNAS $SETSTRIPE -S 65536 -i 1 -c $OSTCOUNT $testfile ||
6149                 error "setstripe failed"
6150         local STRIPECOUNT=$($RUNAS $GETSTRIPE -c $testfile) ||
6151                 error "getstripe failed"
6152         $RUNAS getfattr -d -m "^lustre" $testfile 2> /dev/null | \
6153         grep "lustre.lov" || error "can't get lustre.lov from $testfile"
6154
6155         local testfile2=${testfile}2
6156         local value=`getfattr -n lustre.lov $testfile 2> /dev/null | \
6157                      grep "lustre.lov" |sed -e 's/[^=]\+=//'  `
6158
6159         $RUNAS $MCREATE $testfile2
6160         $RUNAS setfattr -n lustre.lov -v $value $testfile2
6161         local stripe_size=$($RUNAS $GETSTRIPE -S $testfile2)
6162         local stripe_count=$($RUNAS $GETSTRIPE -c $testfile2)
6163         [ $stripe_size -eq 65536 ] || error "stripe size $stripe_size != 65536"
6164         [ $stripe_count -eq $STRIPECOUNT ] ||
6165                 error "stripe count $stripe_count != $STRIPECOUNT"
6166 }
6167 run_test 102c "non-root getfattr/setfattr for lustre.lov EAs ==========="
6168
6169 compare_stripe_info1() {
6170         local stripe_index_all_zero=true
6171
6172         for num in 1 2 3 4; do
6173                 for count in $(seq 1 $STRIPE_COUNT); do
6174                         for offset in $(seq 0 $[$STRIPE_COUNT - 1]); do
6175                                 local size=$((STRIPE_SIZE * num))
6176                                 local file=file"$num-$offset-$count"
6177                                 stripe_size=$(lfs getstripe -S $PWD/$file)
6178                                 [ $stripe_size -ne $size ] &&
6179                                     error "$file: size $stripe_size != $size"
6180                                 stripe_count=$(lfs getstripe -c $PWD/$file)
6181                                 # allow fewer stripes to be created, ORI-601
6182                                 [ $stripe_count -lt $(((3 * count + 3) / 4)) ]&&
6183                                     error "$file: count $stripe_count != $count"
6184                                 stripe_index=$(lfs getstripe -i $PWD/$file)
6185                                 [ $stripe_index -ne 0 ] &&
6186                                         stripe_index_all_zero=false
6187                         done
6188                 done
6189         done
6190         $stripe_index_all_zero &&
6191                 error "all files are being extracted starting from OST index 0"
6192         return 0
6193 }
6194
6195 find_lustre_tar() {
6196         [ -n "$(which tar 2>/dev/null)" ] &&
6197                 strings $(which tar) | grep -q "lustre" && echo tar
6198 }
6199
6200 test_102d() {
6201         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6202         # b10930: tar test for trusted.lov xattr
6203         TAR=$(find_lustre_tar)
6204         [ -z "$TAR" ] && skip_env "lustre-aware tar is not installed" && return
6205         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping N-stripe test" && return
6206         setup_test102
6207         test_mkdir -p $DIR/d102d
6208         $TAR xf $TMP/f102.tar -C $DIR/d102d --xattrs
6209         cd $DIR/d102d/$tdir
6210         compare_stripe_info1
6211 }
6212 run_test 102d "tar restore stripe info from tarfile,not keep osts ==========="
6213
6214 test_102f() {
6215         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6216         # b10930: tar test for trusted.lov xattr
6217         TAR=$(find_lustre_tar)
6218         [ -z "$TAR" ] && skip_env "lustre-aware tar is not installed" && return
6219         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping N-stripe test" && return
6220         setup_test102
6221         test_mkdir -p $DIR/d102f
6222         cd $DIR
6223         $TAR cf - --xattrs $tdir | $TAR xf - --xattrs -C $DIR/d102f
6224         cd $DIR/d102f/$tdir
6225         compare_stripe_info1
6226 }
6227 run_test 102f "tar copy files, not keep osts ==========="
6228
6229 grow_xattr() {
6230         local xsize=${1:-1024}  # in bytes
6231         local file=$DIR/$tfile
6232
6233         [ -z $(lctl get_param -n mdc.*.connect_flags | grep xattr) ] &&
6234                 skip "must have user_xattr" && return 0
6235         [ -z "$(which setfattr 2>/dev/null)" ] &&
6236                 skip_env "could not find setfattr" && return 0
6237         [ -z "$(which getfattr 2>/dev/null)" ] &&
6238                 skip_env "could not find getfattr" && return 0
6239
6240         touch $file
6241
6242         local value="$(generate_string $xsize)"
6243
6244         local xbig=trusted.big
6245         log "save $xbig on $file"
6246         setfattr -n $xbig -v $value $file ||
6247                 error "saving $xbig on $file failed"
6248
6249         local orig=$(get_xattr_value $xbig $file)
6250         [[ "$orig" != "$value" ]] && error "$xbig different after saving $xbig"
6251
6252         local xsml=trusted.sml
6253         log "save $xsml on $file"
6254         setfattr -n $xsml -v val $file || error "saving $xsml on $file failed"
6255
6256         local new=$(get_xattr_value $xbig $file)
6257         [[ "$new" != "$orig" ]] && error "$xbig different after saving $xsml"
6258
6259         log "grow $xsml on $file"
6260         setfattr -n $xsml -v "$value" $file ||
6261                 error "growing $xsml on $file failed"
6262
6263         new=$(get_xattr_value $xbig $file)
6264         [[ "$new" != "$orig" ]] && error "$xbig different after growing $xsml"
6265         log "$xbig still valid after growing $xsml"
6266
6267         rm -f $file
6268 }
6269
6270 test_102h() { # bug 15777
6271         grow_xattr 1024
6272 }
6273 run_test 102h "grow xattr from inside inode to external block"
6274
6275 test_102ha() {
6276         large_xattr_enabled || { skip "large_xattr disabled" && return; }
6277         grow_xattr $(max_xattr_size)
6278 }
6279 run_test 102ha "grow xattr from inside inode to external inode"
6280
6281 test_102i() { # bug 17038
6282         touch $DIR/$tfile
6283         ln -s $DIR/$tfile $DIR/${tfile}link
6284         getfattr -n trusted.lov $DIR/$tfile || error "lgetxattr on $DIR/$tfile failed"
6285         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"
6286         rm -f $DIR/$tfile $DIR/${tfile}link
6287 }
6288 run_test 102i "lgetxattr test on symbolic link ============"
6289
6290 test_102j() {
6291         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6292         TAR=$(find_lustre_tar)
6293         [ -z "$TAR" ] && skip_env "lustre-aware tar is not installed" && return
6294         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping N-stripe test" && return
6295         setup_test102 "$RUNAS"
6296         test_mkdir -p $DIR/d102j
6297         chown $RUNAS_ID $DIR/d102j
6298         $RUNAS $TAR xf $TMP/f102.tar -C $DIR/d102j --xattrs
6299         cd $DIR/d102j/$tdir
6300         compare_stripe_info1 "$RUNAS"
6301 }
6302 run_test 102j "non-root tar restore stripe info from tarfile, not keep osts ==="
6303
6304 test_102k() {
6305         touch $DIR/$tfile
6306         # b22187 just check that does not crash for regular file.
6307         setfattr -n trusted.lov $DIR/$tfile
6308         # b22187 'setfattr -n trusted.lov' should work as remove LOV EA for directories
6309         local test_kdir=$DIR/d102k
6310         test_mkdir $test_kdir
6311         local default_size=`$GETSTRIPE -S $test_kdir`
6312         local default_count=`$GETSTRIPE -c $test_kdir`
6313         local default_offset=`$GETSTRIPE -i $test_kdir`
6314         $SETSTRIPE -S 65536 -i 0 -c $OSTCOUNT $test_kdir ||
6315                 error 'dir setstripe failed'
6316         setfattr -n trusted.lov $test_kdir
6317         local stripe_size=`$GETSTRIPE -S $test_kdir`
6318         local stripe_count=`$GETSTRIPE -c $test_kdir`
6319         local stripe_offset=`$GETSTRIPE -i $test_kdir`
6320         [ $stripe_size -eq $default_size ] ||
6321                 error "stripe size $stripe_size != $default_size"
6322         [ $stripe_count -eq $default_count ] ||
6323                 error "stripe count $stripe_count != $default_count"
6324         [ $stripe_offset -eq $default_offset ] ||
6325                 error "stripe offset $stripe_offset != $default_offset"
6326         rm -rf $DIR/$tfile $test_kdir
6327 }
6328 run_test 102k "setfattr without parameter of value shouldn't cause a crash"
6329
6330 test_102l() {
6331         # LU-532 trusted. xattr is invisible to non-root
6332         local testfile=$DIR/$tfile
6333
6334         touch $testfile
6335
6336         echo "listxattr as user..."
6337         chown $RUNAS_ID $testfile
6338         $RUNAS getfattr -d -m '.*' $testfile 2>&1 |
6339             grep -q "trusted" &&
6340                 error "$testfile trusted xattrs are user visible"
6341
6342         return 0;
6343 }
6344 run_test 102l "listxattr size test =================================="
6345
6346 test_102m() { # LU-3403 llite: error of listxattr when buffer is small
6347         local path=$DIR/$tfile
6348         touch $path
6349
6350         listxattr_size_check $path || error "listattr_size_check $path failed"
6351 }
6352 run_test 102m "Ensure listxattr fails on small bufffer ========"
6353
6354 cleanup_test102
6355
6356 run_acl_subtest()
6357 {
6358     $LUSTRE/tests/acl/run $LUSTRE/tests/acl/$1.test
6359     return $?
6360 }
6361
6362 test_103 () {
6363         [ "$UID" != 0 ] && skip_env "must run as root" && return
6364         [ -z "$(lctl get_param -n mdc.*-mdc-*.connect_flags | grep acl)" ] &&
6365                 skip "must have acl enabled" && return
6366         [ -z "$(which setfacl 2>/dev/null)" ] &&
6367                 skip_env "could not find setfacl" && return
6368         $GSS && skip "could not run under gss" && return
6369
6370         declare -a identity_old
6371
6372         for num in $(seq $MDSCOUNT); do
6373                 switch_identity $num true || identity_old[$num]=$?
6374         done
6375
6376         SAVE_UMASK=$(umask)
6377         umask 0022
6378         cd $DIR
6379
6380         echo "performing cp ..."
6381         run_acl_subtest cp || error "run_acl_subtest cp failed"
6382         echo "performing getfacl-noacl..."
6383         run_acl_subtest getfacl-noacl || error "getfacl-noacl test failed"
6384         echo "performing misc..."
6385         run_acl_subtest misc || error  "misc test failed"
6386         echo "performing permissions..."
6387         run_acl_subtest permissions || error "permissions failed"
6388         echo "performing setfacl..."
6389         run_acl_subtest setfacl || error  "setfacl test failed"
6390
6391         # inheritance test got from HP
6392         echo "performing inheritance..."
6393         cp $LUSTRE/tests/acl/make-tree . || error "cannot copy make-tree"
6394         chmod +x make-tree || error "chmod +x failed"
6395         run_acl_subtest inheritance || error "inheritance test failed"
6396         rm -f make-tree
6397
6398         echo "LU-974 ignore umask when acl is enabled..."
6399         run_acl_subtest 974 || error "LU-974 umask test failed"
6400         if [ $MDSCOUNT -ge 2 ]; then
6401                 run_acl_subtest 974_remote ||
6402                         error "LU-974 umask test failed under remote dir"
6403         fi
6404
6405         echo "LU-2561 newly created file is same size as directory..."
6406         run_acl_subtest 2561 || error "LU-2561 test failed"
6407
6408         cd $SAVE_PWD
6409         umask $SAVE_UMASK
6410
6411         for num in $(seq $MDSCOUNT); do
6412                 if [ "${identity_old[$num]}" = 1 ]; then
6413                         switch_identity $num false || identity_old[$num]=$?
6414                 fi
6415         done
6416 }
6417 run_test 103 "acl test ========================================="
6418
6419 test_104a() {
6420         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6421         touch $DIR/$tfile
6422         lfs df || error "lfs df failed"
6423         lfs df -ih || error "lfs df -ih failed"
6424         lfs df -h $DIR || error "lfs df -h $DIR failed"
6425         lfs df -i $DIR || error "lfs df -i $DIR failed"
6426         lfs df $DIR/$tfile || error "lfs df $DIR/$tfile failed"
6427         lfs df -ih $DIR/$tfile || error "lfs df -ih $DIR/$tfile failed"
6428
6429         local OSC=$(lctl dl | grep OST0000-osc-[^M] | awk '{ print $4 }')
6430         lctl --device %$OSC deactivate
6431         lfs df || error "lfs df with deactivated OSC failed"
6432         lctl --device %$OSC activate
6433         # wait the osc back to normal
6434         wait_osc_import_state client ost FULL
6435
6436         lfs df || error "lfs df with reactivated OSC failed"
6437         rm -f $DIR/$tfile
6438 }
6439 run_test 104a "lfs df [-ih] [path] test ========================="
6440
6441 test_104b() {
6442         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6443         [ $RUNAS_ID -eq $UID ] &&
6444                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
6445         chmod 666 /dev/obd
6446         denied_cnt=$(($($RUNAS $LFS check servers 2>&1 |
6447                         grep "Permission denied" | wc -l)))
6448         if [ $denied_cnt -ne 0 ]; then
6449                 error "lfs check servers test failed"
6450         fi
6451 }
6452 run_test 104b "$RUNAS lfs check servers test ===================="
6453
6454 test_105a() {
6455         # doesn't work on 2.4 kernels
6456         touch $DIR/$tfile
6457         if [ -n "$(mount | grep "$MOUNT.*flock" | grep -v noflock)" ]; then
6458                 flocks_test 1 on -f $DIR/$tfile || error "fail flock on"
6459         else
6460                 flocks_test 1 off -f $DIR/$tfile || error "fail flock off"
6461         fi
6462         rm -f $DIR/$tfile
6463 }
6464 run_test 105a "flock when mounted without -o flock test ========"
6465
6466 test_105b() {
6467         touch $DIR/$tfile
6468         if [ -n "$(mount | grep "$MOUNT.*flock" | grep -v noflock)" ]; then
6469                 flocks_test 1 on -c $DIR/$tfile || error "fail flock on"
6470         else
6471                 flocks_test 1 off -c $DIR/$tfile || error "fail flock off"
6472         fi
6473         rm -f $DIR/$tfile
6474 }
6475 run_test 105b "fcntl when mounted without -o flock test ========"
6476
6477 test_105c() {
6478         touch $DIR/$tfile
6479         if [ -n "$(mount | grep "$MOUNT.*flock" | grep -v noflock)" ]; then
6480                 flocks_test 1 on -l $DIR/$tfile || error "fail flock on"
6481         else
6482                 flocks_test 1 off -l $DIR/$tfile || error "fail flock off"
6483         fi
6484         rm -f $DIR/$tfile
6485 }
6486 run_test 105c "lockf when mounted without -o flock test ========"
6487
6488 test_105d() { # bug 15924
6489         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6490         test_mkdir -p $DIR/$tdir
6491         [ -z "$(mount | grep "$MOUNT.*flock" | grep -v noflock)" ] &&
6492                 skip "mount w/o flock enabled" && return
6493         #define OBD_FAIL_LDLM_CP_CB_WAIT  0x315
6494         $LCTL set_param fail_loc=0x80000315
6495         flocks_test 2 $DIR/$tdir
6496 }
6497 run_test 105d "flock race (should not freeze) ========"
6498
6499 test_105e() { # bug 22660 && 22040
6500         [ -z "$(mount | grep "$MOUNT.*flock" | grep -v noflock)" ] &&
6501                 skip "mount w/o flock enabled" && return
6502         touch $DIR/$tfile
6503         flocks_test 3 $DIR/$tfile
6504 }
6505 run_test 105e "Two conflicting flocks from same process ======="
6506
6507 test_106() { #bug 10921
6508         test_mkdir -p $DIR/$tdir
6509         $DIR/$tdir && error "exec $DIR/$tdir succeeded"
6510         chmod 777 $DIR/$tdir || error "chmod $DIR/$tdir failed"
6511 }
6512 run_test 106 "attempt exec of dir followed by chown of that dir"
6513
6514 test_107() {
6515         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6516         CDIR=`pwd`
6517         cd $DIR
6518
6519         local file=core
6520         rm -f $file
6521
6522         local save_pattern=$(sysctl -n kernel.core_pattern)
6523         local save_uses_pid=$(sysctl -n kernel.core_uses_pid)
6524         sysctl -w kernel.core_pattern=$file
6525         sysctl -w kernel.core_uses_pid=0
6526
6527         ulimit -c unlimited
6528         sleep 60 &
6529         SLEEPPID=$!
6530
6531         sleep 1
6532
6533         kill -s 11 $SLEEPPID
6534         wait $SLEEPPID
6535         if [ -e $file ]; then
6536                 size=`stat -c%s $file`
6537                 [ $size -eq 0 ] && error "Fail to create core file $file"
6538         else
6539                 error "Fail to create core file $file"
6540         fi
6541         rm -f $file
6542         sysctl -w kernel.core_pattern=$save_pattern
6543         sysctl -w kernel.core_uses_pid=$save_uses_pid
6544         cd $CDIR
6545 }
6546 run_test 107 "Coredump on SIG"
6547
6548 test_110() {
6549         test_mkdir -p $DIR/$tdir
6550         test_mkdir $DIR/$tdir/$(str_repeat 'a' 255) ||
6551                 error "mkdir with 255 char failed"
6552         test_mkdir $DIR/$tdir/$(str_repeat 'b' 256) &&
6553                 error "mkdir with 256 char should fail, but did not"
6554         touch $DIR/$tdir/$(str_repeat 'x' 255) ||
6555                 error "create with 255 char failed"
6556         touch $DIR/$tdir/$(str_repeat 'y' 256) &&
6557                 error "create with 256 char should fail, but did not"
6558
6559         ls -l $DIR/$tdir
6560         rm -rf $DIR/$tdir
6561 }
6562 run_test 110 "filename length checking"
6563
6564 test_115() {
6565         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6566         OSTIO_pre=$(ps -e|grep ll_ost_io|awk '{print $4}'|sort -n|tail -1|\
6567             cut -c11-20)
6568         [ -z "$OSTIO_pre" ] && skip "no OSS threads" && \
6569             return
6570         echo "Starting with $OSTIO_pre threads"
6571
6572         NUMTEST=20000
6573         NUMFREE=`df -i -P $DIR | tail -n 1 | awk '{ print $4 }'`
6574         [ $NUMFREE -lt $NUMTEST ] && NUMTEST=$(($NUMFREE - 1000))
6575         echo "$NUMTEST creates/unlinks"
6576         test_mkdir -p $DIR/$tdir
6577         createmany -o $DIR/$tdir/$tfile $NUMTEST
6578         unlinkmany $DIR/$tdir/$tfile $NUMTEST
6579
6580         OSTIO_post=$(ps -e|grep ll_ost_io|awk '{print $4}'|sort -n|tail -1|\
6581             cut -c11-20)
6582
6583         # don't return an error
6584         [ $OSTIO_post == $OSTIO_pre ] && echo \
6585             "WARNING: No new ll_ost_io threads were created ($OSTIO_pre)" &&
6586             echo "This may be fine, depending on what ran before this test" &&
6587             echo "and how fast this system is." && return
6588
6589         echo "Started with $OSTIO_pre threads, ended with $OSTIO_post"
6590 }
6591 run_test 115 "verify dynamic thread creation===================="
6592
6593 free_min_max () {
6594         wait_delete_completed
6595         AVAIL=($(lctl get_param -n osc.*[oO][sS][cC]-[^M]*.kbytesavail))
6596         echo OST kbytes available: ${AVAIL[@]}
6597         MAXI=0; MAXV=${AVAIL[0]}
6598         MINI=0; MINV=${AVAIL[0]}
6599         for ((i = 0; i < ${#AVAIL[@]}; i++)); do
6600             #echo OST $i: ${AVAIL[i]}kb
6601             if [ ${AVAIL[i]} -gt $MAXV ]; then
6602                 MAXV=${AVAIL[i]}; MAXI=$i
6603             fi
6604             if [ ${AVAIL[i]} -lt $MINV ]; then
6605                 MINV=${AVAIL[i]}; MINI=$i
6606             fi
6607         done
6608         echo Min free space: OST $MINI: $MINV
6609         echo Max free space: OST $MAXI: $MAXV
6610 }
6611
6612 test_116a() { # was previously test_116()
6613         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6614         [ "$OSTCOUNT" -lt "2" ] && skip_env "$OSTCOUNT < 2 OSTs" && return
6615
6616         echo -n "Free space priority "
6617         lctl get_param -n lov.*-clilov-*.qos_prio_free
6618         declare -a AVAIL
6619         free_min_max
6620         [ $MINV -gt 960000 ] && skip "too much free space in OST$MINI, skip" &&\
6621                 return
6622
6623         # generate uneven OSTs
6624         test_mkdir -p $DIR/$tdir/OST${MINI}
6625         declare -i FILL
6626         FILL=$(($MINV / 4))
6627         echo "Filling 25% remaining space in OST${MINI} with ${FILL}Kb"
6628         $SETSTRIPE -i $MINI -c 1 $DIR/$tdir/OST${MINI}||error "setstripe failed"
6629         i=0
6630         while [ $FILL -gt 0 ]; do
6631             i=$(($i + 1))
6632             dd if=/dev/zero of=$DIR/$tdir/OST${MINI}/$tfile-$i bs=2M count=1 2>/dev/null
6633             FILL=$(($FILL - 2048))
6634             echo -n .
6635         done
6636         FILL=$(($MINV / 4))
6637         sync
6638         sleep_maxage
6639
6640         free_min_max
6641         DIFF=$(($MAXV - $MINV))
6642         DIFF2=$(($DIFF * 100 / $MINV))
6643         echo -n "diff=${DIFF}=${DIFF2}% must be > 20% for QOS mode..."
6644         if [ $DIFF2 -gt 20 ]; then
6645             echo "ok"
6646         else
6647             echo "failed - QOS mode won't be used"
6648             error_ignore "QOS imbalance criteria not met"
6649             return
6650         fi
6651
6652         MINI1=$MINI; MINV1=$MINV
6653         MAXI1=$MAXI; MAXV1=$MAXV
6654
6655         # now fill using QOS
6656         echo writing a bunch of files to QOS-assigned OSTs
6657         $SETSTRIPE -c 1 $DIR/$tdir
6658         i=0
6659         while [ $FILL -gt 0 ]; do
6660             i=$(($i + 1))
6661             dd if=/dev/zero of=$DIR/$tdir/$tfile-$i bs=1024 count=200 2>/dev/null
6662             FILL=$(($FILL - 200))
6663             echo -n .
6664         done
6665         echo "wrote $i 200k files"
6666         sync
6667         sleep_maxage
6668
6669         echo "Note: free space may not be updated, so measurements might be off"
6670         free_min_max
6671         DIFF2=$(($MAXV - $MINV))
6672         echo "free space delta: orig $DIFF final $DIFF2"
6673         [ $DIFF2 -gt $DIFF ] && echo "delta got worse!"
6674         DIFF=$(($MINV1 - ${AVAIL[$MINI1]}))
6675         echo "Wrote $DIFF to smaller OST $MINI1"
6676         DIFF2=$(($MAXV1 - ${AVAIL[$MAXI1]}))
6677         echo "Wrote $DIFF2 to larger OST $MAXI1"
6678         [ $DIFF -gt 0 ] && echo "Wrote $(($DIFF2 * 100 / $DIFF - 100))% more data to larger OST $MAXI1"
6679
6680         # Figure out which files were written where
6681         UUID=$(lctl get_param -n lov.${FSNAME}-clilov-*.target_obd |
6682                awk '/'$MINI1': / {print $2; exit}')
6683         echo $UUID
6684         MINC=$($GETSTRIPE --obd $UUID $DIR/$tdir | wc -l)
6685         echo "$MINC files created on smaller OST $MINI1"
6686         UUID=$(lctl get_param -n lov.${FSNAME}-clilov-*.target_obd |
6687                awk '/'$MAXI1': / {print $2; exit}')
6688         echo $UUID
6689         MAXC=$($GETSTRIPE --obd $UUID $DIR/$tdir | wc -l)
6690         echo "$MAXC files created on larger OST $MAXI1"
6691         [ $MINC -gt 0 ] && echo "Wrote $(($MAXC * 100 / $MINC - 100))% more files to larger OST $MAXI1"
6692         [ $MAXC -gt $MINC ] || error_ignore "stripe QOS didn't balance free space"
6693
6694         rm -rf $DIR/$tdir
6695 }
6696 run_test 116a "stripe QOS: free space balance ==================="
6697
6698 test_116b() { # LU-2093
6699         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6700 #define OBD_FAIL_MDS_OSC_CREATE_FAIL     0x147
6701         local old_rr
6702         old_rr=$(do_facet $SINGLEMDS lctl get_param -n lov.*mdtlov*.qos_threshold_rr)
6703         do_facet $SINGLEMDS lctl set_param lov.*mdtlov*.qos_threshold_rr 0
6704         mkdir -p $DIR/$tdir
6705         do_facet $SINGLEMDS lctl set_param fail_loc=0x147
6706         createmany -o $DIR/$tdir/f- 20 || error "can't create"
6707         do_facet $SINGLEMDS lctl set_param fail_loc=0
6708         rm -rf $DIR/$tdir
6709         do_facet $SINGLEMDS lctl set_param lov.*mdtlov*.qos_threshold_rr $old_rr
6710 }
6711 run_test 116b "QoS shouldn't LBUG if not enough OSTs found on the 2nd pass"
6712
6713 test_117() # bug 10891
6714 {
6715         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6716         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1
6717         #define OBD_FAIL_OST_SETATTR_CREDITS 0x21e
6718         lctl set_param fail_loc=0x21e
6719         > $DIR/$tfile || error "truncate failed"
6720         lctl set_param fail_loc=0
6721         echo "Truncate succeeded."
6722         rm -f $DIR/$tfile
6723 }
6724 run_test 117 "verify fsfilt_extend =========="
6725
6726 NO_SLOW_RESENDCOUNT=4
6727 export OLD_RESENDCOUNT=""
6728 set_resend_count () {
6729         local PROC_RESENDCOUNT="osc.${FSNAME}-OST*-osc-*.resend_count"
6730         OLD_RESENDCOUNT=$(lctl get_param -n $PROC_RESENDCOUNT | head -1)
6731         lctl set_param -n $PROC_RESENDCOUNT $1
6732         echo resend_count is set to $(lctl get_param -n $PROC_RESENDCOUNT)
6733 }
6734
6735 # for reduce test_118* time (b=14842)
6736 [ "$SLOW" = "no" ] && set_resend_count $NO_SLOW_RESENDCOUNT
6737
6738 # Reset async IO behavior after error case
6739 reset_async() {
6740         FILE=$DIR/reset_async
6741
6742         # Ensure all OSCs are cleared
6743         $SETSTRIPE -c -1 $FILE
6744         dd if=/dev/zero of=$FILE bs=64k count=$OSTCOUNT
6745         sync
6746         rm $FILE
6747 }
6748
6749 test_118a() #bug 11710
6750 {
6751         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6752         reset_async
6753
6754         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
6755         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
6756         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
6757
6758         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
6759                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
6760                 return 1;
6761         fi
6762         rm -f $DIR/$tfile
6763 }
6764 run_test 118a "verify O_SYNC works =========="
6765
6766 test_118b()
6767 {
6768         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6769         remote_ost_nodsh && skip "remote OST with nodsh" && return
6770
6771         reset_async
6772
6773         #define OBD_FAIL_OST_ENOENT 0x217
6774         set_nodes_failloc "$(osts_nodes)" 0x217
6775         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
6776         RC=$?
6777         set_nodes_failloc "$(osts_nodes)" 0
6778         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
6779         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
6780                     grep -c writeback)
6781
6782         if [[ $RC -eq 0 ]]; then
6783                 error "Must return error due to dropped pages, rc=$RC"
6784                 return 1;
6785         fi
6786
6787         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
6788                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
6789                 return 1;
6790         fi
6791
6792         echo "Dirty pages not leaked on ENOENT"
6793
6794         # Due to the above error the OSC will issue all RPCs syncronously
6795         # until a subsequent RPC completes successfully without error.
6796         $MULTIOP $DIR/$tfile Ow4096yc
6797         rm -f $DIR/$tfile
6798
6799         return 0
6800 }
6801 run_test 118b "Reclaim dirty pages on fatal error =========="
6802
6803 test_118c()
6804 {
6805         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6806
6807         # for 118c, restore the original resend count, LU-1940
6808         [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] &&
6809                                 set_resend_count $OLD_RESENDCOUNT
6810         remote_ost_nodsh && skip "remote OST with nodsh" && return
6811
6812         reset_async
6813
6814         #define OBD_FAIL_OST_EROFS               0x216
6815         set_nodes_failloc "$(osts_nodes)" 0x216
6816
6817         # multiop should block due to fsync until pages are written
6818         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
6819         MULTIPID=$!
6820         sleep 1
6821
6822         if [[ `ps h -o comm -p $MULTIPID` != "multiop" ]]; then
6823                 error "Multiop failed to block on fsync, pid=$MULTIPID"
6824         fi
6825
6826         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
6827                     grep -c writeback)
6828         if [[ $WRITEBACK -eq 0 ]]; then
6829                 error "No page in writeback, writeback=$WRITEBACK"
6830         fi
6831
6832         set_nodes_failloc "$(osts_nodes)" 0
6833         wait $MULTIPID
6834         RC=$?
6835         if [[ $RC -ne 0 ]]; then
6836                 error "Multiop fsync failed, rc=$RC"
6837         fi
6838
6839         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
6840         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
6841                     grep -c writeback)
6842         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
6843                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
6844         fi
6845
6846         rm -f $DIR/$tfile
6847         echo "Dirty pages flushed via fsync on EROFS"
6848         return 0
6849 }
6850 run_test 118c "Fsync blocks on EROFS until dirty pages are flushed =========="
6851
6852 # continue to use small resend count to reduce test_118* time (b=14842)
6853 [ "$SLOW" = "no" ] && set_resend_count $NO_SLOW_RESENDCOUNT
6854
6855 test_118d()
6856 {
6857         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6858         remote_ost_nodsh && skip "remote OST with nodsh" && return
6859
6860         reset_async
6861
6862         #define OBD_FAIL_OST_BRW_PAUSE_BULK
6863         set_nodes_failloc "$(osts_nodes)" 0x214
6864         # multiop should block due to fsync until pages are written
6865         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
6866         MULTIPID=$!
6867         sleep 1
6868
6869         if [[ `ps h -o comm -p $MULTIPID` != "multiop" ]]; then
6870                 error "Multiop failed to block on fsync, pid=$MULTIPID"
6871         fi
6872
6873         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
6874                     grep -c writeback)
6875         if [[ $WRITEBACK -eq 0 ]]; then
6876                 error "No page in writeback, writeback=$WRITEBACK"
6877         fi
6878
6879         wait $MULTIPID || error "Multiop fsync failed, rc=$?"
6880         set_nodes_failloc "$(osts_nodes)" 0
6881
6882         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
6883         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
6884                     grep -c writeback)
6885         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
6886                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
6887         fi
6888
6889         rm -f $DIR/$tfile
6890         echo "Dirty pages gaurenteed flushed via fsync"
6891         return 0
6892 }
6893 run_test 118d "Fsync validation inject a delay of the bulk =========="
6894
6895 test_118f() {
6896         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6897         reset_async
6898
6899         #define OBD_FAIL_OSC_BRW_PREP_REQ2        0x40a
6900         lctl set_param fail_loc=0x8000040a
6901
6902         # Should simulate EINVAL error which is fatal
6903         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
6904         RC=$?
6905         if [[ $RC -eq 0 ]]; then
6906                 error "Must return error due to dropped pages, rc=$RC"
6907         fi
6908
6909         lctl set_param fail_loc=0x0
6910
6911         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
6912         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
6913         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
6914                     grep -c writeback)
6915         if [[ $LOCKED -ne 0 ]]; then
6916                 error "Locked pages remain in cache, locked=$LOCKED"
6917         fi
6918
6919         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
6920                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
6921         fi
6922
6923         rm -f $DIR/$tfile
6924         echo "No pages locked after fsync"
6925
6926         reset_async
6927         return 0
6928 }
6929 run_test 118f "Simulate unrecoverable OSC side error =========="
6930
6931 test_118g() {
6932         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6933         reset_async
6934
6935         #define OBD_FAIL_OSC_BRW_PREP_REQ        0x406
6936         lctl set_param fail_loc=0x406
6937
6938         # simulate local -ENOMEM
6939         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
6940         RC=$?
6941
6942         lctl set_param fail_loc=0
6943         if [[ $RC -eq 0 ]]; then
6944                 error "Must return error due to dropped pages, rc=$RC"
6945         fi
6946
6947         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
6948         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
6949         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
6950                         grep -c writeback)
6951         if [[ $LOCKED -ne 0 ]]; then
6952                 error "Locked pages remain in cache, locked=$LOCKED"
6953         fi
6954
6955         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
6956                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
6957         fi
6958
6959         rm -f $DIR/$tfile
6960         echo "No pages locked after fsync"
6961
6962         reset_async
6963         return 0
6964 }
6965 run_test 118g "Don't stay in wait if we got local -ENOMEM  =========="
6966
6967 test_118h() {
6968         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6969         remote_ost_nodsh && skip "remote OST with nodsh" && return
6970
6971         reset_async
6972
6973         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
6974         set_nodes_failloc "$(osts_nodes)" 0x20e
6975         # Should simulate ENOMEM error which is recoverable and should be handled by timeout
6976         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
6977         RC=$?
6978
6979         set_nodes_failloc "$(osts_nodes)" 0
6980         if [[ $RC -eq 0 ]]; then
6981                 error "Must return error due to dropped pages, rc=$RC"
6982         fi
6983
6984         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
6985         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
6986         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
6987                     grep -c writeback)
6988         if [[ $LOCKED -ne 0 ]]; then
6989                 error "Locked pages remain in cache, locked=$LOCKED"
6990         fi
6991
6992         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
6993                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
6994         fi
6995
6996         rm -f $DIR/$tfile
6997         echo "No pages locked after fsync"
6998
6999         return 0
7000 }
7001 run_test 118h "Verify timeout in handling recoverables errors  =========="
7002
7003 [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] && set_resend_count $OLD_RESENDCOUNT
7004
7005 test_118i() {
7006         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7007         remote_ost_nodsh && skip "remote OST with nodsh" && return
7008
7009         reset_async
7010
7011         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
7012         set_nodes_failloc "$(osts_nodes)" 0x20e
7013
7014         # Should simulate ENOMEM error which is recoverable and should be handled by timeout
7015         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
7016         PID=$!
7017         sleep 5
7018         set_nodes_failloc "$(osts_nodes)" 0
7019
7020         wait $PID
7021         RC=$?
7022         if [[ $RC -ne 0 ]]; then
7023                 error "got error, but should be not, rc=$RC"
7024         fi
7025
7026         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
7027         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
7028         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
7029         if [[ $LOCKED -ne 0 ]]; then
7030                 error "Locked pages remain in cache, locked=$LOCKED"
7031         fi
7032
7033         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
7034                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
7035         fi
7036
7037         rm -f $DIR/$tfile
7038         echo "No pages locked after fsync"
7039
7040         return 0
7041 }
7042 run_test 118i "Fix error before timeout in recoverable error  =========="
7043
7044 [ "$SLOW" = "no" ] && set_resend_count 4
7045
7046 test_118j() {
7047         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7048         remote_ost_nodsh && skip "remote OST with nodsh" && return
7049
7050         reset_async
7051
7052         #define OBD_FAIL_OST_BRW_WRITE_BULK2     0x220
7053         set_nodes_failloc "$(osts_nodes)" 0x220
7054
7055         # return -EIO from OST
7056         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
7057         RC=$?
7058         set_nodes_failloc "$(osts_nodes)" 0x0
7059         if [[ $RC -eq 0 ]]; then
7060                 error "Must return error due to dropped pages, rc=$RC"
7061         fi
7062
7063         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
7064         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
7065         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
7066         if [[ $LOCKED -ne 0 ]]; then
7067                 error "Locked pages remain in cache, locked=$LOCKED"
7068         fi
7069
7070         # in recoverable error on OST we want resend and stay until it finished
7071         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
7072                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
7073         fi
7074
7075         rm -f $DIR/$tfile
7076         echo "No pages locked after fsync"
7077
7078         return 0
7079 }
7080 run_test 118j "Simulate unrecoverable OST side error =========="
7081
7082 test_118k()
7083 {
7084         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7085         remote_ost_nodsh && skip "remote OSTs with nodsh" && return
7086
7087         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
7088         set_nodes_failloc "$(osts_nodes)" 0x20e
7089         test_mkdir -p $DIR/$tdir
7090
7091         for ((i=0;i<10;i++)); do
7092                 (dd if=/dev/zero of=$DIR/$tdir/$tfile-$i bs=1M count=10 || \
7093                         error "dd to $DIR/$tdir/$tfile-$i failed" )&
7094                 SLEEPPID=$!
7095                 sleep 0.500s
7096                 kill $SLEEPPID
7097                 wait $SLEEPPID
7098         done
7099
7100         set_nodes_failloc "$(osts_nodes)" 0
7101         rm -rf $DIR/$tdir
7102 }
7103 run_test 118k "bio alloc -ENOMEM and IO TERM handling ========="
7104
7105 test_118l()
7106 {
7107         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7108         # LU-646
7109         test_mkdir -p $DIR/$tdir
7110         $MULTIOP $DIR/$tdir Dy || error "fsync dir failed"
7111         rm -rf $DIR/$tdir
7112 }
7113 run_test 118l "fsync dir ========="
7114
7115 test_118m() # LU-3066
7116 {
7117         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7118         test_mkdir -p $DIR/$tdir
7119         $MULTIOP $DIR/$tdir DY || error "fdatasync dir failed"
7120         rm -rf $DIR/$tdir
7121 }
7122 run_test 118m "fdatasync dir ========="
7123
7124 [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] && set_resend_count $OLD_RESENDCOUNT
7125
7126 test_119a() # bug 11737
7127 {
7128         BSIZE=$((512 * 1024))
7129         directio write $DIR/$tfile 0 1 $BSIZE
7130         # We ask to read two blocks, which is more than a file size.
7131         # directio will indicate an error when requested and actual
7132         # sizes aren't equeal (a normal situation in this case) and
7133         # print actual read amount.
7134         NOB=`directio read $DIR/$tfile 0 2 $BSIZE | awk '/error/ {print $6}'`
7135         if [ "$NOB" != "$BSIZE" ]; then
7136                 error "read $NOB bytes instead of $BSIZE"
7137         fi
7138         rm -f $DIR/$tfile
7139 }
7140 run_test 119a "Short directIO read must return actual read amount"
7141
7142 test_119b() # bug 11737
7143 {
7144         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping 2-stripe test" && return
7145
7146         $SETSTRIPE -c 2 $DIR/$tfile || error "setstripe failed"
7147         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=1 || error "dd failed"
7148         sync
7149         $MULTIOP $DIR/$tfile oO_RDONLY:O_DIRECT:r$((2048 * 1024)) || \
7150                 error "direct read failed"
7151         rm -f $DIR/$tfile
7152 }
7153 run_test 119b "Sparse directIO read must return actual read amount"
7154
7155 test_119c() # bug 13099
7156 {
7157         BSIZE=1048576
7158         directio write $DIR/$tfile 3 1 $BSIZE || error "direct write failed"
7159         directio readhole $DIR/$tfile 0 2 $BSIZE || error "reading hole failed"
7160         rm -f $DIR/$tfile
7161 }
7162 run_test 119c "Testing for direct read hitting hole"
7163
7164 test_119d() # bug 15950
7165 {
7166         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7167         MAX_RPCS_IN_FLIGHT=`$LCTL get_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight`
7168         $LCTL set_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight 1
7169         BSIZE=1048576
7170         $SETSTRIPE $DIR/$tfile -i 0 -c 1 || error "setstripe failed"
7171         $DIRECTIO write $DIR/$tfile 0 1 $BSIZE || error "first directio failed"
7172         #define OBD_FAIL_OSC_DIO_PAUSE           0x40d
7173         lctl set_param fail_loc=0x40d
7174         $DIRECTIO write $DIR/$tfile 1 4 $BSIZE &
7175         pid_dio=$!
7176         sleep 1
7177         cat $DIR/$tfile > /dev/null &
7178         lctl set_param fail_loc=0
7179         pid_reads=$!
7180         wait $pid_dio
7181         log "the DIO writes have completed, now wait for the reads (should not block very long)"
7182         sleep 2
7183         [ -n "`ps h -p $pid_reads -o comm`" ] && \
7184         error "the read rpcs have not completed in 2s"
7185         rm -f $DIR/$tfile
7186         $LCTL set_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight $MAX_RPCS_IN_FLIGHT
7187 }
7188 run_test 119d "The DIO path should try to send a new rpc once one is completed"
7189
7190 test_120a() {
7191         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7192         test_mkdir -p $DIR/$tdir
7193         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
7194                skip "no early lock cancel on server" && return 0
7195
7196         lru_resize_disable mdc
7197         lru_resize_disable osc
7198         cancel_lru_locks mdc
7199         # asynchronous object destroy at MDT could cause bl ast to client
7200         cancel_lru_locks osc
7201
7202         stat $DIR/$tdir > /dev/null
7203         can1=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
7204         blk1=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
7205         test_mkdir $DIR/$tdir/d1
7206         can2=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
7207         blk2=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
7208         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
7209         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
7210         lru_resize_enable mdc
7211         lru_resize_enable osc
7212 }
7213 run_test 120a "Early Lock Cancel: mkdir test"
7214
7215 test_120b() {
7216         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7217         test_mkdir -p $DIR/$tdir
7218         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
7219                skip "no early lock cancel on server" && return 0
7220         lru_resize_disable mdc
7221         lru_resize_disable osc
7222         cancel_lru_locks mdc
7223         stat $DIR/$tdir > /dev/null
7224         can1=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
7225         blk1=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
7226         touch $DIR/$tdir/f1
7227         can2=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
7228         blk2=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
7229         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
7230         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
7231         lru_resize_enable mdc
7232         lru_resize_enable osc
7233 }
7234 run_test 120b "Early Lock Cancel: create test"
7235
7236 test_120c() {
7237         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7238         test_mkdir -p $DIR/$tdir
7239         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
7240                skip "no early lock cancel on server" && return 0
7241         lru_resize_disable mdc
7242         lru_resize_disable osc
7243         test_mkdir -p $DIR/$tdir/d1
7244         test_mkdir -p $DIR/$tdir/d2
7245         touch $DIR/$tdir/d1/f1
7246         cancel_lru_locks mdc
7247         stat $DIR/$tdir/d1 $DIR/$tdir/d2 $DIR/$tdir/d1/f1 > /dev/null
7248         can1=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
7249         blk1=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
7250         ln $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2
7251         can2=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
7252         blk2=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
7253         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
7254         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
7255         lru_resize_enable mdc
7256         lru_resize_enable osc
7257 }
7258 run_test 120c "Early Lock Cancel: link test"
7259
7260 test_120d() {
7261         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7262         test_mkdir -p $DIR/$tdir
7263         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
7264                skip "no early lock cancel on server" && return 0
7265         lru_resize_disable mdc
7266         lru_resize_disable osc
7267         touch $DIR/$tdir
7268         cancel_lru_locks mdc
7269         stat $DIR/$tdir > /dev/null
7270         can1=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
7271         blk1=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
7272         chmod a+x $DIR/$tdir
7273         can2=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
7274         blk2=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
7275         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
7276         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
7277         lru_resize_enable mdc
7278         lru_resize_enable osc
7279 }
7280 run_test 120d "Early Lock Cancel: setattr test"
7281
7282 test_120e() {
7283         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7284         test_mkdir -p $DIR/$tdir
7285         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
7286                skip "no early lock cancel on server" && return 0
7287         lru_resize_disable mdc
7288         lru_resize_disable osc
7289         dd if=/dev/zero of=$DIR/$tdir/f1 count=1
7290         cancel_lru_locks mdc
7291         cancel_lru_locks osc
7292         dd if=$DIR/$tdir/f1 of=/dev/null
7293         stat $DIR/$tdir $DIR/$tdir/f1 > /dev/null
7294         can1=`lctl get_param -n ldlm.services.ldlm_canceld.stats |
7295               awk '/ldlm_cancel/ {print $2}'`
7296         blk1=`lctl get_param -n ldlm.services.ldlm_cbd.stats |
7297               awk '/ldlm_bl_callback/ {print $2}'`
7298         unlink $DIR/$tdir/f1
7299         can2=`lctl get_param -n ldlm.services.ldlm_canceld.stats |
7300               awk '/ldlm_cancel/ {print $2}'`
7301         blk2=`lctl get_param -n ldlm.services.ldlm_cbd.stats |
7302               awk '/ldlm_bl_callback/ {print $2}'`
7303         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
7304         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
7305         lru_resize_enable mdc
7306         lru_resize_enable osc
7307 }
7308 run_test 120e "Early Lock Cancel: unlink test"
7309
7310 test_120f() {
7311         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7312         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
7313                skip "no early lock cancel on server" && return 0
7314         test_mkdir -p $DIR/$tdir
7315         lru_resize_disable mdc
7316         lru_resize_disable osc
7317         test_mkdir -p $DIR/$tdir/d1
7318         test_mkdir -p $DIR/$tdir/d2
7319         dd if=/dev/zero of=$DIR/$tdir/d1/f1 count=1
7320         dd if=/dev/zero of=$DIR/$tdir/d2/f2 count=1
7321         cancel_lru_locks mdc
7322         cancel_lru_locks osc
7323         dd if=$DIR/$tdir/d1/f1 of=/dev/null
7324         dd if=$DIR/$tdir/d2/f2 of=/dev/null
7325         stat $DIR/$tdir/d1 $DIR/$tdir/d2 $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2 > /dev/null
7326         can1=`lctl get_param -n ldlm.services.ldlm_canceld.stats |
7327               awk '/ldlm_cancel/ {print $2}'`
7328         blk1=`lctl get_param -n ldlm.services.ldlm_cbd.stats |
7329               awk '/ldlm_bl_callback/ {print $2}'`
7330         mv $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2
7331         can2=`lctl get_param -n ldlm.services.ldlm_canceld.stats |
7332               awk '/ldlm_cancel/ {print $2}'`
7333         blk2=`lctl get_param -n ldlm.services.ldlm_cbd.stats |
7334               awk '/ldlm_bl_callback/ {print $2}'`
7335         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
7336         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
7337         lru_resize_enable mdc
7338         lru_resize_enable osc
7339 }
7340 run_test 120f "Early Lock Cancel: rename test"
7341
7342 test_120g() {
7343         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7344         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
7345                skip "no early lock cancel on server" && return 0
7346         lru_resize_disable mdc
7347         lru_resize_disable osc
7348         count=10000
7349         echo create $count files
7350         test_mkdir -p $DIR/$tdir
7351         cancel_lru_locks mdc
7352         cancel_lru_locks osc
7353         t0=`date +%s`
7354
7355         can0=`lctl get_param -n ldlm.services.ldlm_canceld.stats |
7356               awk '/ldlm_cancel/ {print $2}'`
7357         blk0=`lctl get_param -n ldlm.services.ldlm_cbd.stats |
7358               awk '/ldlm_bl_callback/ {print $2}'`
7359         createmany -o $DIR/$tdir/f $count
7360         sync
7361         can1=`lctl get_param -n ldlm.services.ldlm_canceld.stats |
7362               awk '/ldlm_cancel/ {print $2}'`
7363         blk1=`lctl get_param -n ldlm.services.ldlm_cbd.stats |
7364               awk '/ldlm_bl_callback/ {print $2}'`
7365         t1=`date +%s`
7366         echo total: $((can1-can0)) cancels, $((blk1-blk0)) blockings
7367         echo rm $count files
7368         rm -r $DIR/$tdir
7369         sync
7370         can2=`lctl get_param -n ldlm.services.ldlm_canceld.stats |
7371               awk '/ldlm_cancel/ {print $2}'`
7372         blk2=`lctl get_param -n ldlm.services.ldlm_cbd.stats |
7373               awk '/ldlm_bl_callback/ {print $2}'`
7374         t2=`date +%s`
7375         echo total: $count removes in $((t2-t1))
7376         echo total: $((can2-can1)) cancels, $((blk2-blk1)) blockings
7377         sleep 2
7378         # wait for commitment of removal
7379         lru_resize_enable mdc
7380         lru_resize_enable osc
7381 }
7382 run_test 120g "Early Lock Cancel: performance test"
7383
7384 test_121() { #bug #10589
7385         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7386         rm -rf $DIR/$tfile
7387         writes=$(LANG=C dd if=/dev/zero of=$DIR/$tfile count=1 2>&1 | awk -F '+' '/out$/ {print $1}')
7388 #define OBD_FAIL_LDLM_CANCEL_RACE        0x310
7389         lctl set_param fail_loc=0x310
7390         cancel_lru_locks osc > /dev/null
7391         reads=$(LANG=C dd if=$DIR/$tfile of=/dev/null 2>&1 | awk -F '+' '/in$/ {print $1}')
7392         lctl set_param fail_loc=0
7393         [ "$reads" -eq "$writes" ] || error "read" $reads "blocks, must be" $writes
7394 }
7395 run_test 121 "read cancel race ========="
7396
7397 test_123a() { # was test 123, statahead(bug 11401)
7398         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7399         SLOWOK=0
7400         if [ -z "$(grep "processor.*: 1" /proc/cpuinfo)" ]; then
7401             log "testing on UP system. Performance may be not as good as expected."
7402                         SLOWOK=1
7403         fi
7404
7405         rm -rf $DIR/$tdir
7406         test_mkdir -p $DIR/$tdir
7407         NUMFREE=`df -i -P $DIR | tail -n 1 | awk '{ print $4 }'`
7408         [ $NUMFREE -gt 100000 ] && NUMFREE=100000 || NUMFREE=$((NUMFREE-1000))
7409         MULT=10
7410         for ((i=100, j=0; i<=$NUMFREE; j=$i, i=$((i * MULT)) )); do
7411                 createmany -o $DIR/$tdir/$tfile $j $((i - j))
7412
7413                 max=`lctl get_param -n llite.*.statahead_max | head -n 1`
7414                 lctl set_param -n llite.*.statahead_max 0
7415                 lctl get_param llite.*.statahead_max
7416                 cancel_lru_locks mdc
7417                 cancel_lru_locks osc
7418                 stime=`date +%s`
7419                 time ls -l $DIR/$tdir | wc -l
7420                 etime=`date +%s`
7421                 delta=$((etime - stime))
7422                 log "ls $i files without statahead: $delta sec"
7423                 lctl set_param llite.*.statahead_max=$max
7424
7425                 swrong=`lctl get_param -n llite.*.statahead_stats | grep "statahead wrong:" | awk '{print $3}'`
7426                 lctl get_param -n llite.*.statahead_max | grep '[0-9]'
7427                 cancel_lru_locks mdc
7428                 cancel_lru_locks osc
7429                 stime=`date +%s`
7430                 time ls -l $DIR/$tdir | wc -l
7431                 etime=`date +%s`
7432                 delta_sa=$((etime - stime))
7433                 log "ls $i files with statahead: $delta_sa sec"
7434                 lctl get_param -n llite.*.statahead_stats
7435                 ewrong=`lctl get_param -n llite.*.statahead_stats | grep "statahead wrong:" | awk '{print $3}'`
7436
7437                 [ $swrong -lt $ewrong ] && log "statahead was stopped, maybe too many locks held!"
7438                 [ $delta -eq 0 -o $delta_sa -eq 0 ] && continue
7439
7440                 if [ $((delta_sa * 100)) -gt $((delta * 105)) -a $delta_sa -gt $((delta + 2)) ]; then
7441                     max=`lctl get_param -n llite.*.statahead_max | head -n 1`
7442                     lctl set_param -n llite.*.statahead_max 0
7443                     lctl get_param llite.*.statahead_max
7444                     cancel_lru_locks mdc
7445                     cancel_lru_locks osc
7446                     stime=`date +%s`
7447                     time ls -l $DIR/$tdir | wc -l
7448                     etime=`date +%s`
7449                     delta=$((etime - stime))
7450                     log "ls $i files again without statahead: $delta sec"
7451                     lctl set_param llite.*.statahead_max=$max
7452                     if [ $((delta_sa * 100)) -gt $((delta * 105)) -a $delta_sa -gt $((delta + 2)) ]; then
7453                         if [  $SLOWOK -eq 0 ]; then
7454                                 error "ls $i files is slower with statahead!"
7455                         else
7456                                 log "ls $i files is slower with statahead!"
7457                         fi
7458                         break
7459                     fi
7460                 fi
7461
7462                 [ $delta -gt 20 ] && break
7463                 [ $delta -gt 8 ] && MULT=$((50 / delta))
7464                 [ "$SLOW" = "no" -a $delta -gt 5 ] && break
7465         done
7466         log "ls done"
7467
7468         stime=`date +%s`
7469         rm -r $DIR/$tdir
7470         sync
7471         etime=`date +%s`
7472         delta=$((etime - stime))
7473         log "rm -r $DIR/$tdir/: $delta seconds"
7474         log "rm done"
7475         lctl get_param -n llite.*.statahead_stats
7476 }
7477 run_test 123a "verify statahead work"
7478
7479 test_123b () { # statahead(bug 15027)
7480         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7481         test_mkdir -p $DIR/$tdir
7482         createmany -o $DIR/$tdir/$tfile-%d 1000
7483
7484         cancel_lru_locks mdc
7485         cancel_lru_locks osc
7486
7487 #define OBD_FAIL_MDC_GETATTR_ENQUEUE     0x803
7488         lctl set_param fail_loc=0x80000803
7489         ls -lR $DIR/$tdir > /dev/null
7490         log "ls done"
7491         lctl set_param fail_loc=0x0
7492         lctl get_param -n llite.*.statahead_stats
7493         rm -r $DIR/$tdir
7494         sync
7495
7496 }
7497 run_test 123b "not panic with network error in statahead enqueue (bug 15027)"
7498
7499 test_124a() {
7500         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7501         [ -z "`lctl get_param -n mdc.*.connect_flags | grep lru_resize`" ] && \
7502                skip "no lru resize on server" && return 0
7503         local NR=2000
7504         test_mkdir -p $DIR/$tdir || error "failed to create $DIR/$tdir"
7505
7506         log "create $NR files at $DIR/$tdir"
7507         createmany -o $DIR/$tdir/f $NR ||
7508                 error "failed to create $NR files in $DIR/$tdir"
7509
7510         cancel_lru_locks mdc
7511         ls -l $DIR/$tdir > /dev/null
7512
7513         local NSDIR=""
7514         local LRU_SIZE=0
7515         for VALUE in `lctl get_param ldlm.namespaces.*mdc-*.lru_size`; do
7516                 local PARAM=`echo ${VALUE[0]} | cut -d "=" -f1`
7517                 LRU_SIZE=$(lctl get_param -n $PARAM)
7518                 if [ $LRU_SIZE -gt $(default_lru_size) ]; then
7519                         NSDIR=$(echo $PARAM | cut -d "." -f1-3)
7520                                                 log "NSDIR=$NSDIR"
7521                         log "NS=$(basename $NSDIR)"
7522                         break
7523                 fi
7524         done
7525
7526         if [ -z "$NSDIR" -o $LRU_SIZE -lt $(default_lru_size) ]; then
7527                 skip "Not enough cached locks created!"
7528                 return 0
7529         fi
7530         log "LRU=$LRU_SIZE"
7531
7532         local SLEEP=30
7533
7534         # We know that lru resize allows one client to hold $LIMIT locks
7535         # for 10h. After that locks begin to be killed by client.
7536         local MAX_HRS=10
7537         local LIMIT=`lctl get_param -n $NSDIR.pool.limit`
7538                 log "LIMIT=$LIMIT"
7539
7540         # Make LVF so higher that sleeping for $SLEEP is enough to _start_
7541         # killing locks. Some time was spent for creating locks. This means
7542         # that up to the moment of sleep finish we must have killed some of
7543         # them (10-100 locks). This depends on how fast ther were created.
7544         # Many of them were touched in almost the same moment and thus will
7545         # be killed in groups.
7546         local LVF=$(($MAX_HRS * 60 * 60 / $SLEEP * $LIMIT / $LRU_SIZE))
7547
7548         # Use $LRU_SIZE_B here to take into account real number of locks
7549         # created in the case of CMD, LRU_SIZE_B != $NR in most of cases
7550         local LRU_SIZE_B=$LRU_SIZE
7551         log "LVF=$LVF"
7552         local OLD_LVF=`lctl get_param -n $NSDIR.pool.lock_volume_factor`
7553                 log "OLD_LVF=$OLD_LVF"
7554         lctl set_param -n $NSDIR.pool.lock_volume_factor $LVF
7555
7556         # Let's make sure that we really have some margin. Client checks
7557         # cached locks every 10 sec.
7558         SLEEP=$((SLEEP+20))
7559         log "Sleep ${SLEEP} sec"
7560         local SEC=0
7561         while ((SEC<$SLEEP)); do
7562                 echo -n "..."
7563                 sleep 5
7564                 SEC=$((SEC+5))
7565                 LRU_SIZE=`lctl get_param -n $NSDIR/lru_size`
7566                 echo -n "$LRU_SIZE"
7567         done
7568         echo ""
7569         lctl set_param -n $NSDIR.pool.lock_volume_factor $OLD_LVF
7570         local LRU_SIZE_A=`lctl get_param -n $NSDIR.lru_size`
7571
7572         [ $LRU_SIZE_B -gt $LRU_SIZE_A ] || {
7573                 error "No locks dropped in ${SLEEP}s. LRU size: $LRU_SIZE_A"
7574                 unlinkmany $DIR/$tdir/f $NR
7575                 return
7576         }
7577
7578         log "Dropped "$((LRU_SIZE_B-LRU_SIZE_A))" locks in ${SLEEP}s"
7579         log "unlink $NR files at $DIR/$tdir"
7580         unlinkmany $DIR/$tdir/f $NR
7581 }
7582 run_test 124a "lru resize ======================================="
7583
7584 get_max_pool_limit()
7585 {
7586         local limit=`lctl get_param -n ldlm.namespaces.*-MDT0000-mdc-*.pool.limit`
7587         local max=0
7588         for l in $limit; do
7589                 if test $l -gt $max; then
7590                         max=$l
7591                 fi
7592         done
7593         echo $max
7594 }
7595
7596 test_124b() {
7597         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7598         [ -z "`lctl get_param -n mdc.*.connect_flags | grep lru_resize`" ] && \
7599                skip "no lru resize on server" && return 0
7600
7601         LIMIT=`get_max_pool_limit`
7602
7603         NR=$(($(default_lru_size)*20))
7604         if [ $NR -gt $LIMIT ]; then
7605                 log "Limit lock number by $LIMIT locks"
7606                 NR=$LIMIT
7607         fi
7608         lru_resize_disable mdc
7609         test_mkdir -p $DIR/$tdir/disable_lru_resize ||
7610                 error "failed to create $DIR/$tdir/disable_lru_resize"
7611
7612         createmany -o $DIR/$tdir/disable_lru_resize/f $NR
7613         log "doing ls -la $DIR/$tdir/disable_lru_resize 3 times"
7614         cancel_lru_locks mdc
7615         stime=`date +%s`
7616         PID=""
7617         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
7618         PID="$PID $!"
7619         sleep 2
7620         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
7621         PID="$PID $!"
7622         sleep 2
7623         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
7624         PID="$PID $!"
7625         wait $PID
7626         etime=`date +%s`
7627         nolruresize_delta=$((etime-stime))
7628         log "ls -la time: $nolruresize_delta seconds"
7629         log "lru_size = $(lctl get_param -n ldlm.namespaces.*mdc*.lru_size)"
7630         unlinkmany $DIR/$tdir/disable_lru_resize/f $NR
7631
7632         lru_resize_enable mdc
7633         test_mkdir -p $DIR/$tdir/enable_lru_resize ||
7634                 error "failed to create $DIR/$tdir/enable_lru_resize"
7635
7636         createmany -o $DIR/$tdir/enable_lru_resize/f $NR
7637         log "doing ls -la $DIR/$tdir/enable_lru_resize 3 times"
7638         cancel_lru_locks mdc
7639         stime=`date +%s`
7640         PID=""
7641         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
7642         PID="$PID $!"
7643         sleep 2
7644         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
7645         PID="$PID $!"
7646         sleep 2
7647         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
7648         PID="$PID $!"
7649         wait $PID
7650         etime=`date +%s`
7651         lruresize_delta=$((etime-stime))
7652         log "ls -la time: $lruresize_delta seconds"
7653         log "lru_size = $(lctl get_param -n ldlm.namespaces.*mdc*.lru_size)"
7654
7655         if [ $lruresize_delta -gt $nolruresize_delta ]; then
7656                 log "ls -la is $(((lruresize_delta - $nolruresize_delta) * 100 / $nolruresize_delta))% slower with lru resize enabled"
7657         elif [ $nolruresize_delta -gt $lruresize_delta ]; then
7658                 log "ls -la is $(((nolruresize_delta - $lruresize_delta) * 100 / $nolruresize_delta))% faster with lru resize enabled"
7659         else
7660                 log "lru resize performs the same with no lru resize"
7661         fi
7662         unlinkmany $DIR/$tdir/enable_lru_resize/f $NR
7663 }
7664 run_test 124b "lru resize (performance test) ======================="
7665
7666 test_125() { # 13358
7667         [ -z "$(lctl get_param -n llite.*.client_type | grep local)" ] && skip "must run as local client" && return
7668         [ -z "$(lctl get_param -n mdc.*-mdc-*.connect_flags | grep acl)" ] && skip "must have acl enabled" && return
7669         test_mkdir -p $DIR/d125 || error "mkdir failed"
7670         $SETSTRIPE -S 65536 -c -1 $DIR/d125 || error "setstripe failed"
7671         setfacl -R -m u:bin:rwx $DIR/d125 || error "setfacl $DIR/d125 failed"
7672         ls -ld $DIR/d125 || error "cannot access $DIR/d125"
7673 }
7674 run_test 125 "don't return EPROTO when a dir has a non-default striping and ACLs"
7675
7676 test_126() { # bug 12829/13455
7677         [ -z "$(lctl get_param -n llite.*.client_type | grep local)" ] && skip "must run as local client" && return
7678         [ "$UID" != 0 ] && skip_env "skipping $TESTNAME (must run as root)" && return
7679         $GSS && skip "must run as gss disabled" && return
7680
7681         $RUNAS -u 0 -g 1 touch $DIR/$tfile || error "touch failed"
7682         gid=`ls -n $DIR/$tfile | awk '{print $4}'`
7683         rm -f $DIR/$tfile
7684         [ $gid -eq "1" ] || error "gid is set to" $gid "instead of 1"
7685 }
7686 run_test 126 "check that the fsgid provided by the client is taken into account"
7687
7688 test_127a() { # bug 15521
7689         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7690         $SETSTRIPE -i 0 -c 1 $DIR/$tfile || error "setstripe failed"
7691         $LCTL set_param osc.*.stats=0
7692         FSIZE=$((2048 * 1024))
7693         dd if=/dev/zero of=$DIR/$tfile bs=$FSIZE count=1
7694         cancel_lru_locks osc
7695         dd if=$DIR/$tfile of=/dev/null bs=$FSIZE
7696
7697         $LCTL get_param osc.*0000-osc-*.stats | grep samples > $DIR/${tfile}.tmp
7698         while read NAME COUNT SAMP UNIT MIN MAX SUM SUMSQ; do
7699                 echo "got $COUNT $NAME"
7700                 [ ! $MIN ] && error "Missing min value for $NAME proc entry"
7701                 eval $NAME=$COUNT || error "Wrong proc format"
7702
7703                 case $NAME in
7704                         read_bytes|write_bytes)
7705                         [ $MIN -lt 4096 ] && error "min is too small: $MIN"
7706                         [ $MIN -gt $FSIZE ] && error "min is too big: $MIN"
7707                         [ $MAX -lt 4096 ] && error "max is too small: $MAX"
7708                         [ $MAX -gt $FSIZE ] && error "max is too big: $MAX"
7709                         [ $SUM -ne $FSIZE ] && error "sum is wrong: $SUM"
7710                         [ $SUMSQ -lt $(((FSIZE /4096) * (4096 * 4096))) ] &&
7711                                 error "sumsquare is too small: $SUMSQ"
7712                         [ $SUMSQ -gt $((FSIZE * FSIZE)) ] &&
7713                                 error "sumsquare is too big: $SUMSQ"
7714                         ;;
7715                         *) ;;
7716                 esac
7717         done < $DIR/${tfile}.tmp
7718
7719         #check that we actually got some stats
7720         [ "$read_bytes" ] || error "Missing read_bytes stats"
7721         [ "$write_bytes" ] || error "Missing write_bytes stats"
7722         [ "$read_bytes" != 0 ] || error "no read done"
7723         [ "$write_bytes" != 0 ] || error "no write done"
7724 }
7725 run_test 127a "verify the client stats are sane"
7726
7727 test_127b() { # bug LU-333
7728         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7729         $LCTL set_param llite.*.stats=0
7730         FSIZE=65536 # sized fixed to match PAGE_SIZE for most clients
7731         # perform 2 reads and writes so MAX is different from SUM.
7732         dd if=/dev/zero of=$DIR/$tfile bs=$FSIZE count=1
7733         dd if=/dev/zero of=$DIR/$tfile bs=$FSIZE count=1
7734         cancel_lru_locks osc
7735         dd if=$DIR/$tfile of=/dev/null bs=$FSIZE count=1
7736         dd if=$DIR/$tfile of=/dev/null bs=$FSIZE count=1
7737
7738         $LCTL get_param llite.*.stats | grep samples > $TMP/${tfile}.tmp
7739         while read NAME COUNT SAMP UNIT MIN MAX SUM SUMSQ; do
7740                 echo "got $COUNT $NAME"
7741                 eval $NAME=$COUNT || error "Wrong proc format"
7742
7743         case $NAME in
7744                 read_bytes)
7745                         [ $COUNT -ne 2 ] && error "count is not 2: $COUNT"
7746                         [ $MIN -ne $FSIZE ] && error "min is not $FSIZE: $MIN"
7747                         [ $MAX -ne $FSIZE ] && error "max is incorrect: $MAX"
7748                         [ $SUM -ne $((FSIZE * 2)) ] && error "sum is wrong: $SUM"
7749                         ;;
7750                 write_bytes)
7751                         [ $COUNT -ne 2 ] && error "count is not 2: $COUNT"
7752                         [ $MIN -ne $FSIZE ] && error "min is not $FSIZE: $MIN"
7753                         [ $MAX -ne $FSIZE ] && error "max is incorrect: $MAX"
7754                         [ $SUM -ne $((FSIZE * 2)) ] && error "sum is wrong: $SUM"
7755                         ;;
7756                         *) ;;
7757                 esac
7758         done < $TMP/${tfile}.tmp
7759
7760         #check that we actually got some stats
7761         [ "$read_bytes" ] || error "Missing read_bytes stats"
7762         [ "$write_bytes" ] || error "Missing write_bytes stats"
7763         [ "$read_bytes" != 0 ] || error "no read done"
7764         [ "$write_bytes" != 0 ] || error "no write done"
7765 }
7766 run_test 127b "verify the llite client stats are sane"
7767
7768 test_128() { # bug 15212
7769         touch $DIR/$tfile
7770         $LFS 2>&1 <<-EOF | tee $TMP/$tfile.log
7771                 find $DIR/$tfile
7772                 find $DIR/$tfile
7773         EOF
7774
7775         result=$(grep error $TMP/$tfile.log)
7776         rm -f $DIR/$tfile
7777         [ -z "$result" ] || error "consecutive find's under interactive lfs failed"
7778 }
7779 run_test 128 "interactive lfs for 2 consecutive find's"
7780
7781 set_dir_limits () {
7782         local mntdev
7783         local canondev
7784         local node
7785
7786         local LDPROC=/proc/fs/ldiskfs
7787         local facets=$(get_facets MDS)
7788
7789         for facet in ${facets//,/ }; do
7790                 canondev=$(ldiskfs_canon \
7791                            *.$(convert_facet2label $facet).mntdev $facet)
7792                 do_facet $facet "test -e $LDPROC/$canondev/max_dir_size" ||
7793                                                 LDPROC=/sys/fs/ldiskfs
7794                 do_facet $facet "echo $1 >$LDPROC/$canondev/max_dir_size"
7795         done
7796 }
7797
7798 test_129() {
7799         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7800         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
7801                 skip "Only applicable to ldiskfs-based MDTs"
7802                 return
7803         fi
7804         remote_mds_nodsh && skip "remote MDS with nodsh" && return
7805
7806         ENOSPC=28
7807         EFBIG=27
7808
7809         test_mkdir -p $DIR/$tdir
7810
7811         MAX=$(stat -c%s "$DIR/$tdir")
7812         set_dir_limits $MAX
7813         local I=0
7814         local J=0
7815         while [ ! $I -gt $MAX ]; do
7816                 $MULTIOP $DIR/$tdir/$J Oc
7817                 rc=$?
7818                 #check two errors ENOSPC for new version of ext4 max_dir_size patch
7819                 #mainline kernel commit df981d03eeff7971ac7e6ff37000bfa702327ef1
7820                 #and EFBIG for previous versions
7821                 if [ $rc -eq $EFBIG -o $rc -eq $ENOSPC ] && [ $I -gt 0 ]; then
7822                         set_dir_limits 0
7823                         echo "return code $rc received as expected"
7824                         multiop $DIR/$tdir/$J Oc
7825                         rc=$?
7826                         I=$(stat -c%s "$DIR/$tdir")
7827                         if [ $I -gt $MAX ] && [ $rc -eq 0 ]; then
7828                                 return 0
7829                         else
7830                                 error_exit "return code $rc current dir size $I " \
7831                                            "previous limit $MAX"
7832                         fi
7833                 elif [ $rc -ne 0 ]; then
7834                         set_dir_limits 0
7835                         error_exit "return code $rc received instead of expected " \
7836                                    "$EFBIG or $ENOSPC, files in dir $I"
7837                 fi
7838                 J=$((J+1))
7839                 I=$(stat -c%s "$DIR/$tdir")
7840         done
7841
7842         set_dir_limits 0
7843         error "exceeded dir size limit $MAX x $MDSCOUNT $MAX : $I bytes"
7844 }
7845 run_test 129 "test directory size limit ========================"
7846
7847 OLDIFS="$IFS"
7848 cleanup_130() {
7849         trap 0
7850         IFS="$OLDIFS"
7851 }
7852
7853 test_130a() {
7854         local filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
7855         [ -n "$filefrag_op" ] && skip_env "filefrag does not support FIEMAP" &&
7856                 return
7857
7858         trap cleanup_130 EXIT RETURN
7859
7860         local fm_file=$DIR/$tfile
7861         $SETSTRIPE -S 65536 -c 1 $fm_file || error "setstripe on $fm_file"
7862         dd if=/dev/zero of=$fm_file bs=65536 count=1 ||
7863                 error "dd failed for $fm_file"
7864
7865         # LU-1795: test filefrag/FIEMAP once, even if unsupported
7866         filefrag -ves $fm_file
7867         RC=$?
7868         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
7869                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
7870         [ $RC != 0 ] && error "filefrag $fm_file failed"
7871
7872         filefrag_op=$(filefrag -ve $fm_file | grep -A 100 "ext:" |
7873                       grep -v "ext:" | grep -v "found")
7874         lun=$($GETSTRIPE -i $fm_file)
7875
7876         start_blk=`echo $filefrag_op | cut -d: -f2 | cut -d. -f1`
7877         IFS=$'\n'
7878         tot_len=0
7879         for line in $filefrag_op
7880         do
7881                 frag_lun=`echo $line | cut -d: -f5`
7882                 ext_len=`echo $line | cut -d: -f4`
7883                 if (( $frag_lun != $lun )); then
7884                         cleanup_130
7885                         error "FIEMAP on 1-stripe file($fm_file) failed"
7886                         return
7887                 fi
7888                 (( tot_len += ext_len ))
7889         done
7890
7891         if (( lun != frag_lun || start_blk != 0 || tot_len != 64 )); then
7892                 cleanup_130
7893                 error "FIEMAP on 1-stripe file($fm_file) failed;"
7894                 return
7895         fi
7896
7897         cleanup_130
7898
7899         echo "FIEMAP on single striped file succeeded"
7900 }
7901 run_test 130a "FIEMAP (1-stripe file)"
7902
7903 test_130b() {
7904         [ "$OSTCOUNT" -lt "2" ] &&
7905                 skip_env "skipping FIEMAP on 2-stripe file test" && return
7906
7907         [ "$OSTCOUNT" -ge "10" ] &&
7908                 skip_env "skipping FIEMAP with >= 10 OSTs" && return
7909
7910         local filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
7911         [ -n "$filefrag_op" ] && skip_env "filefrag does not support FIEMAP" &&
7912                 return
7913
7914         trap cleanup_130 EXIT RETURN
7915
7916         local fm_file=$DIR/$tfile
7917         $SETSTRIPE -S 65536 -c 2 $fm_file || error "setstripe on $fm_file"
7918         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
7919                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
7920
7921         dd if=/dev/zero of=$fm_file bs=1M count=2 ||
7922                 error "dd failed on $fm_file"
7923
7924         filefrag -ves $fm_file || error "filefrag $fm_file failed"
7925         filefrag_op=$(filefrag -ve $fm_file | grep -A 100 "ext:" |
7926                       grep -v "ext:" | grep -v "found")
7927
7928         last_lun=$(echo $filefrag_op | cut -d: -f5)
7929
7930         IFS=$'\n'
7931         tot_len=0
7932         num_luns=1
7933         for line in $filefrag_op
7934         do
7935                 frag_lun=`echo $line | cut -d: -f5`
7936                 ext_len=`echo $line | cut -d: -f4`
7937                 if (( $frag_lun != $last_lun )); then
7938                         if (( tot_len != 1024 )); then
7939                                 cleanup_130
7940                                 error "FIEMAP on $fm_file failed; returned len $tot_len for OST $last_lun instead of 256"
7941                                 return
7942                         else
7943                                 (( num_luns += 1 ))
7944                                 tot_len=0
7945                         fi
7946                 fi
7947                 (( tot_len += ext_len ))
7948                 last_lun=$frag_lun
7949         done
7950         if (( num_luns != 2 || tot_len != 1024 )); then
7951                 cleanup_130
7952                 error "FIEMAP on $fm_file failed; returned wrong number of luns or wrong len for OST $last_lun"
7953                 return
7954         fi
7955
7956         cleanup_130
7957
7958         echo "FIEMAP on 2-stripe file succeeded"
7959 }
7960 run_test 130b "FIEMAP (2-stripe file)"
7961
7962 test_130c() {
7963         [ "$OSTCOUNT" -lt "2" ] &&
7964                 skip_env "skipping FIEMAP on 2-stripe file" && return
7965
7966         [ "$OSTCOUNT" -ge "10" ] &&
7967                 skip_env "skipping FIEMAP with >= 10 OSTs" && return
7968
7969         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
7970         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP" &&
7971                 return
7972
7973         trap cleanup_130 EXIT RETURN
7974
7975         local fm_file=$DIR/$tfile
7976         $SETSTRIPE -S 65536 -c 2 $fm_file || error "setstripe on $fm_file"
7977         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
7978                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
7979
7980         dd if=/dev/zero of=$fm_file seek=1 bs=1M count=1 || error "dd failed on $fm_file"
7981
7982         filefrag -ves $fm_file || error "filefrag $fm_file failed"
7983         filefrag_op=`filefrag -ve $fm_file | grep -A 100 "ext:" | grep -v "ext:" | grep -v "found"`
7984
7985         last_lun=`echo $filefrag_op | cut -d: -f5`
7986
7987         IFS=$'\n'
7988         tot_len=0
7989         num_luns=1
7990         for line in $filefrag_op
7991         do
7992                 frag_lun=`echo $line | cut -d: -f5`
7993                 ext_len=`echo $line | cut -d: -f4`
7994                 if (( $frag_lun != $last_lun )); then
7995                         logical=`echo $line | cut -d: -f2 | cut -d. -f1`
7996                         if (( logical != 512 )); then
7997                                 cleanup_130
7998                                 error "FIEMAP on $fm_file failed; returned logical start for lun $logical instead of 512"
7999                                 return
8000                         fi
8001                         if (( tot_len != 512 )); then
8002                                 cleanup_130
8003                                 error "FIEMAP on $fm_file failed; returned len $tot_len for OST $last_lun instead of 1024"
8004                                 return
8005                         else
8006                                 (( num_luns += 1 ))
8007                                 tot_len=0
8008                         fi
8009                 fi
8010                 (( tot_len += ext_len ))
8011                 last_lun=$frag_lun
8012         done
8013         if (( num_luns != 2 || tot_len != 512 )); then
8014                 cleanup_130
8015                 error "FIEMAP on $fm_file failed; returned wrong number of luns or wrong len for OST $last_lun"
8016                 return
8017         fi
8018
8019         cleanup_130
8020
8021         echo "FIEMAP on 2-stripe file with hole succeeded"
8022 }
8023 run_test 130c "FIEMAP (2-stripe file with hole)"
8024
8025 test_130d() {
8026         [ "$OSTCOUNT" -lt "3" ] && skip_env "skipping FIEMAP on N-stripe file test" && return
8027
8028         [ "$OSTCOUNT" -ge "10" ] &&
8029                 skip_env "skipping FIEMAP with >= 10 OSTs" && return
8030
8031         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
8032         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP" && return
8033
8034         trap cleanup_130 EXIT RETURN
8035
8036         local fm_file=$DIR/$tfile
8037         $SETSTRIPE -S 65536 -c $OSTCOUNT $fm_file||error "setstripe on $fm_file"
8038         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
8039                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
8040
8041         local actual_stripecnt=$($GETSTRIPE -c $fm_file)
8042         dd if=/dev/zero of=$fm_file bs=1M count=$actual_stripecnt ||
8043                 error "dd failed on $fm_file"
8044
8045         filefrag -ves $fm_file || error "filefrag $fm_file failed"
8046         filefrag_op=`filefrag -ve $fm_file | grep -A 100 "ext:" |
8047                 grep -v "ext:" | grep -v "found"`
8048
8049         last_lun=`echo $filefrag_op | cut -d: -f5`
8050
8051         IFS=$'\n'
8052         tot_len=0
8053         num_luns=1
8054         for line in $filefrag_op
8055         do
8056                 frag_lun=`echo $line | cut -d: -f5`
8057                 ext_len=`echo $line | cut -d: -f4`
8058                 if (( $frag_lun != $last_lun )); then
8059                         if (( tot_len != 1024 )); then
8060                                 cleanup_130
8061                                 error "FIEMAP on $fm_file failed; returned len $tot_len for OST $last_lun instead of 1024"
8062                                 return
8063                         else
8064                                 (( num_luns += 1 ))
8065                                 tot_len=0
8066                         fi
8067                 fi
8068                 (( tot_len += ext_len ))
8069                 last_lun=$frag_lun
8070         done
8071         if (( num_luns != actual_stripecnt || tot_len != 1024 )); then
8072                 cleanup_130
8073                 error "FIEMAP on $fm_file failed; returned wrong number of luns or wrong len for OST $last_lun"
8074                 return
8075         fi
8076
8077         cleanup_130
8078
8079         echo "FIEMAP on N-stripe file succeeded"
8080 }
8081 run_test 130d "FIEMAP (N-stripe file)"
8082
8083 test_130e() {
8084         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping continuation FIEMAP test" && return
8085
8086         [ "$OSTCOUNT" -ge "10" ] &&
8087                 skip_env "skipping FIEMAP with >= 10 OSTs" && return
8088
8089         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
8090         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP" && return
8091
8092         trap cleanup_130 EXIT RETURN
8093
8094         local fm_file=$DIR/$tfile
8095         $SETSTRIPE -S 131072 -c 2 $fm_file || error "setstripe on $fm_file"
8096         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
8097                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
8098
8099         NUM_BLKS=512
8100         EXPECTED_LEN=$(( (NUM_BLKS / 2) * 64 ))
8101         for ((i = 0; i < $NUM_BLKS; i++))
8102         do
8103                 dd if=/dev/zero of=$fm_file count=1 bs=64k seek=$((2*$i)) conv=notrunc > /dev/null 2>&1
8104         done
8105
8106         filefrag -ves $fm_file || error "filefrag $fm_file failed"
8107         filefrag_op=`filefrag -ve $fm_file | grep -A 12000 "ext:" | grep -v "ext:" | grep -v "found"`
8108
8109         last_lun=`echo $filefrag_op | cut -d: -f5`
8110
8111         IFS=$'\n'
8112         tot_len=0
8113         num_luns=1
8114         for line in $filefrag_op
8115         do
8116                 frag_lun=`echo $line | cut -d: -f5`
8117                 ext_len=`echo $line | cut -d: -f4`
8118                 if (( $frag_lun != $last_lun )); then
8119                         if (( tot_len != $EXPECTED_LEN )); then
8120                                 cleanup_130
8121                                 error "FIEMAP on $fm_file failed; returned len $tot_len for OST $last_lun instead of $EXPECTED_LEN"
8122                                 return
8123                         else
8124                                 (( num_luns += 1 ))
8125                                 tot_len=0
8126                         fi
8127                 fi
8128                 (( tot_len += ext_len ))
8129                 last_lun=$frag_lun
8130         done
8131         if (( num_luns != 2 || tot_len != $EXPECTED_LEN )); then
8132                 cleanup_130
8133                 error "FIEMAP on $fm_file failed; returned wrong number of luns or wrong len for OST $last_lun"
8134                 return
8135         fi
8136
8137         cleanup_130
8138
8139         echo "FIEMAP with continuation calls succeeded"
8140 }
8141 run_test 130e "FIEMAP (test continuation FIEMAP calls)"
8142
8143 # Test for writev/readv
8144 test_131a() {
8145         rwv -f $DIR/$tfile -w -n 3 524288 1048576 1572864 || \
8146         error "writev test failed"
8147         rwv -f $DIR/$tfile -r -v -n 2 1572864 1048576 || \
8148         error "readv failed"
8149         rm -f $DIR/$tfile
8150 }
8151 run_test 131a "test iov's crossing stripe boundary for writev/readv"
8152
8153 test_131b() {
8154         rwv -f $DIR/$tfile -w -a -n 3 524288 1048576 1572864 || \
8155         error "append writev test failed"
8156         rwv -f $DIR/$tfile -w -a -n 2 1572864 1048576 || \
8157         error "append writev test failed"
8158         rm -f $DIR/$tfile
8159 }
8160 run_test 131b "test append writev"
8161
8162 test_131c() {
8163         rwv -f $DIR/$tfile -w -d -n 1 1048576 || return 0
8164         error "NOT PASS"
8165 }
8166 run_test 131c "test read/write on file w/o objects"
8167
8168 test_131d() {
8169         rwv -f $DIR/$tfile -w -n 1 1572864
8170         NOB=`rwv -f $DIR/$tfile -r -n 3 524288 524288 1048576 | awk '/error/ {print $6}'`
8171         if [ "$NOB" != 1572864 ]; then
8172                 error "Short read filed: read $NOB bytes instead of 1572864"
8173         fi
8174         rm -f $DIR/$tfile
8175 }
8176 run_test 131d "test short read"
8177
8178 test_131e() {
8179         rwv -f $DIR/$tfile -w -s 1048576 -n 1 1048576
8180         rwv -f $DIR/$tfile -r -z -s 0 -n 1 524288 || \
8181         error "read hitting hole failed"
8182         rm -f $DIR/$tfile
8183 }
8184 run_test 131e "test read hitting hole"
8185
8186 get_ost_param() {
8187         local token=$1
8188         local gl_sum=0
8189         for node in $(osts_nodes); do
8190                 gl=$(do_node $node "$LCTL get_param -n ost.OSS.ost.stats" | awk '/'$token'/ {print $2}' | head -n 1)
8191                 [ x$gl = x"" ] && gl=0
8192                 gl_sum=$((gl_sum + gl))
8193         done
8194         echo $gl_sum
8195 }
8196
8197 som_mode_switch() {
8198         local som=$1
8199         local gl1=$2
8200         local gl2=$3
8201
8202         if [ x$som = x"enabled" ]; then
8203                 [ $((gl2 - gl1)) -gt 0 ] && error "no glimpse RPC is expected"
8204                 MOUNTOPT=`echo $MOUNTOPT | sed 's/som_preview//g'`
8205                 do_facet mgs "$LCTL conf_param $FSNAME.mdt.som=disabled"
8206         else
8207                 [ $((gl2 - gl1)) -gt 0 ] || error "some glimpse RPC is expected"
8208                 MOUNTOPT="$MOUNTOPT,som_preview"
8209                 do_facet mgs "$LCTL conf_param $FSNAME.mdt.som=enabled"
8210         fi
8211
8212         # do remount to make new mount-conf parameters actual
8213         echo remounting...
8214         sync
8215         stopall
8216         setupall
8217 }
8218
8219 test_132() { #1028, SOM
8220         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8221         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8222         local num=$(get_mds_dir $DIR)
8223         local mymds=mds${num}
8224         local MOUNTOPT_SAVE=$MOUNTOPT
8225
8226         dd if=/dev/zero of=$DIR/$tfile count=1 2>/dev/null
8227         cancel_lru_locks osc
8228
8229         som1=$(do_facet $mymds "$LCTL get_param mdt.*.som" |  awk -F= ' {print $2}' | head -n 1)
8230
8231         gl1=$(get_ost_param "ldlm_glimpse_enqueue")
8232         stat $DIR/$tfile >/dev/null
8233         gl2=$(get_ost_param "ldlm_glimpse_enqueue")
8234         echo "====> SOM is "$som1", "$((gl2 - gl1))" glimpse RPC occured"
8235         rm $DIR/$tfile
8236         som_mode_switch $som1 $gl1 $gl2
8237
8238         dd if=/dev/zero of=$DIR/$tfile count=1 2>/dev/null
8239         cancel_lru_locks osc
8240
8241         som2=$(do_facet $mymds "$LCTL get_param mdt.*.som" |  awk -F= ' {print $2}' | head -n 1)
8242         if [ $som1 == $som2 ]; then
8243             error "som is still "$som2
8244             if [ x$som2 = x"enabled" ]; then
8245                 som2="disabled"
8246             else
8247                 som2="enabled"
8248             fi
8249         fi
8250
8251         gl1=$(get_ost_param "ldlm_glimpse_enqueue")
8252         stat $DIR/$tfile >/dev/null
8253         gl2=$(get_ost_param "ldlm_glimpse_enqueue")
8254         echo "====> SOM is "$som2", "$((gl2 - gl1))" glimpse RPC occured"
8255         som_mode_switch $som2 $gl1 $gl2
8256         MOUNTOPT=$MOUNTOPT_SAVE
8257 }
8258 run_test 132 "som avoids glimpse rpc"
8259
8260 check_stats() {
8261         local res
8262         local count
8263         case $1 in
8264         $SINGLEMDS) res=`do_facet $SINGLEMDS $LCTL get_param mdt.$FSNAME-MDT0000.md_stats | grep "$2"`
8265                  ;;
8266         ost) res=`do_facet ost1 $LCTL get_param obdfilter.$FSNAME-OST0000.stats | grep "$2"`
8267                  ;;
8268         *) error "Wrong argument $1" ;;
8269         esac
8270         echo $res
8271         count=`echo $res | awk '{print $2}'`
8272         [ -z "$res" ] && error "The counter for $2 on $1 was not incremented"
8273         # if the argument $3 is zero, it means any stat increment is ok.
8274         if [ $3 -gt 0 ] ; then
8275                 [ $count -ne $3 ] && error "The $2 counter on $1 is wrong - expected $3"
8276         fi
8277 }
8278
8279 test_133a() {
8280         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8281         remote_ost_nodsh && skip "remote OST with nodsh" && return
8282         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8283
8284         do_facet $SINGLEMDS $LCTL list_param mdt.*.rename_stats ||
8285                 { skip "MDS doesn't support rename stats"; return; }
8286         local testdir=$DIR/${tdir}/stats_testdir
8287         mkdir -p $DIR/${tdir}
8288
8289         # clear stats.
8290         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
8291         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
8292
8293         # verify mdt stats first.
8294         mkdir ${testdir} || error "mkdir failed"
8295         check_stats $SINGLEMDS "mkdir" 1
8296         touch ${testdir}/${tfile} || "touch failed"
8297         check_stats $SINGLEMDS "open" 1
8298         check_stats $SINGLEMDS "close" 1
8299         mknod ${testdir}/${tfile}-pipe p || "mknod failed"
8300         check_stats $SINGLEMDS "mknod" 1
8301         rm -f ${testdir}/${tfile}-pipe || "pipe remove failed"
8302         check_stats $SINGLEMDS "unlink" 1
8303         rm -f ${testdir}/${tfile} || error "file remove failed"
8304         check_stats $SINGLEMDS "unlink" 2
8305
8306         # remove working dir and check mdt stats again.
8307         rmdir ${testdir} || error "rmdir failed"
8308         check_stats $SINGLEMDS "rmdir" 1
8309
8310         local testdir1=$DIR/${tdir}/stats_testdir1
8311         mkdir -p ${testdir}
8312         mkdir -p ${testdir1}
8313         touch ${testdir1}/test1
8314         mv ${testdir1}/test1 ${testdir} || error "file crossdir rename"
8315         check_stats $SINGLEMDS "crossdir_rename" 1
8316
8317         mv ${testdir}/test1 ${testdir}/test0 || error "file samedir rename"
8318         check_stats $SINGLEMDS "samedir_rename" 1
8319
8320         rm -rf $DIR/${tdir}
8321 }
8322 run_test 133a "Verifying MDT stats ========================================"
8323
8324 test_133b() {
8325         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8326         remote_ost_nodsh && skip "remote OST with nodsh" && return
8327         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8328         local testdir=$DIR/${tdir}/stats_testdir
8329         mkdir -p ${testdir} || error "mkdir failed"
8330         touch ${testdir}/${tfile} || "touch failed"
8331         cancel_lru_locks mdc
8332
8333         # clear stats.
8334         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
8335         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
8336
8337         # extra mdt stats verification.
8338         chmod 444 ${testdir}/${tfile} || error "chmod failed"
8339         check_stats $SINGLEMDS "setattr" 1
8340         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
8341         if [ $(lustre_version_code $SINGLEMDS) -ne $(version_code 2.2.0) ]
8342         then            # LU-1740
8343                 ls -l ${testdir}/${tfile} > /dev/null|| error "ls failed"
8344                 check_stats $SINGLEMDS "getattr" 1
8345         fi
8346         $LFS df || error "lfs failed"
8347         check_stats $SINGLEMDS "statfs" 1
8348
8349         rm -rf $DIR/${tdir}
8350 }
8351 run_test 133b "Verifying extra MDT stats =================================="
8352
8353 test_133c() {
8354         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8355         remote_ost_nodsh && skip "remote OST with nodsh" && return
8356         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8357         local testdir=$DIR/${tdir}/stats_testdir
8358         test_mkdir -p ${testdir} || error "mkdir failed"
8359
8360         # verify obdfilter stats.
8361         $SETSTRIPE -c 1 -i 0 ${testdir}/${tfile}
8362         sync
8363         cancel_lru_locks osc
8364         wait_delete_completed
8365
8366         # clear stats.
8367         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
8368         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
8369
8370         dd if=/dev/zero of=${testdir}/${tfile} conv=notrunc bs=512k count=1 || error "dd failed"
8371         sync
8372         cancel_lru_locks osc
8373         check_stats ost "write" 1
8374
8375         dd if=${testdir}/${tfile} of=/dev/null bs=1k count=1 || error "dd failed"
8376         check_stats ost "read" 1
8377
8378         > ${testdir}/${tfile} || error "truncate failed"
8379         check_stats ost "punch" 1
8380
8381         rm -f ${testdir}/${tfile} || error "file remove failed"
8382         wait_delete_completed
8383         check_stats ost "destroy" 1
8384
8385         rm -rf $DIR/${tdir}
8386 }
8387 run_test 133c "Verifying OST stats ========================================"
8388
8389 order_2() {
8390     local value=$1
8391     local orig=$value
8392     local order=1
8393
8394     while [ $value -ge 2 ]; do
8395         order=$((order*2))
8396         value=$((value/2))
8397     done
8398
8399     if [ $orig -gt $order ]; then
8400         order=$((order*2))
8401     fi
8402     echo $order
8403 }
8404
8405 size_in_KMGT() {
8406     local value=$1
8407     local size=('K' 'M' 'G' 'T');
8408     local i=0
8409     local size_string=$value
8410
8411     while [ $value -ge 1024 ]; do
8412         if [ $i -gt 3 ]; then
8413             #T is the biggest unit we get here, if that is bigger,
8414             #just return XXXT
8415             size_string=${value}T
8416             break
8417         fi
8418         value=$((value >> 10))
8419         if [ $value -lt 1024 ]; then
8420             size_string=${value}${size[$i]}
8421             break
8422         fi
8423         i=$((i + 1))
8424     done
8425
8426     echo $size_string
8427 }
8428
8429 get_rename_size() {
8430     local size=$1
8431     local context=${2:-.}
8432     local sample=$(do_facet $SINGLEMDS $LCTL get_param mdt.*.rename_stats |
8433                 grep -A1 $context |
8434                 awk '/ '${size}'/ {print $4}' | sed -e "s/,//g")
8435     echo $sample
8436 }
8437
8438 test_133d() {
8439         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8440         remote_ost_nodsh && skip "remote OST with nodsh" && return
8441         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8442         do_facet $SINGLEMDS $LCTL list_param mdt.*.rename_stats ||
8443         { skip "MDS doesn't support rename stats"; return; }
8444
8445         local testdir1=$DIR/${tdir}/stats_testdir1
8446         local testdir2=$DIR/${tdir}/stats_testdir2
8447
8448         do_facet $SINGLEMDS $LCTL set_param mdt.*.rename_stats=clear
8449
8450         mkdir -p ${testdir1} || error "mkdir failed"
8451         mkdir -p ${testdir2} || error "mkdir failed"
8452
8453         createmany -o $testdir1/test 512 || error "createmany failed"
8454
8455         # check samedir rename size
8456         mv ${testdir1}/test0 ${testdir1}/test_0
8457
8458         local testdir1_size=$(ls -l $DIR/${tdir} |
8459                 awk '/stats_testdir1/ {print $5}')
8460         local testdir2_size=$(ls -l $DIR/${tdir} |
8461                 awk '/stats_testdir2/ {print $5}')
8462
8463         testdir1_size=$(order_2 $testdir1_size)
8464         testdir2_size=$(order_2 $testdir2_size)
8465
8466         testdir1_size=$(size_in_KMGT $testdir1_size)
8467         testdir2_size=$(size_in_KMGT $testdir2_size)
8468
8469         echo "source rename dir size: ${testdir1_size}"
8470         echo "target rename dir size: ${testdir2_size}"
8471
8472         local cmd="do_facet $SINGLEMDS $LCTL get_param mdt.*.rename_stats"
8473         eval $cmd || error "$cmd failed"
8474         local samedir=$($cmd | grep 'same_dir')
8475         local same_sample=$(get_rename_size $testdir1_size)
8476         [ -z "$samedir" ] && error "samedir_rename_size count error"
8477         [ "$same_sample" -eq 1 ] || error "samedir_rename_size error $same_sample"
8478         echo "Check same dir rename stats success"
8479
8480         do_facet $SINGLEMDS $LCTL set_param mdt.*.rename_stats=clear
8481
8482         # check crossdir rename size
8483         mv ${testdir1}/test_0 ${testdir2}/test_0
8484
8485         testdir1_size=$(ls -l $DIR/${tdir} |
8486                 awk '/stats_testdir1/ {print $5}')
8487         testdir2_size=$(ls -l $DIR/${tdir} |
8488                 awk '/stats_testdir2/ {print $5}')
8489
8490         testdir1_size=$(order_2 $testdir1_size)
8491         testdir2_size=$(order_2 $testdir2_size)
8492
8493         testdir1_size=$(size_in_KMGT $testdir1_size)
8494         testdir2_size=$(size_in_KMGT $testdir2_size)
8495
8496         echo "source rename dir size: ${testdir1_size}"
8497         echo "target rename dir size: ${testdir2_size}"
8498
8499         eval $cmd || error "$cmd failed"
8500         local crossdir=$($cmd | grep 'crossdir')
8501         local src_sample=$(get_rename_size $testdir1_size crossdir_src)
8502         local tgt_sample=$(get_rename_size $testdir2_size crossdir_tgt)
8503         [ -z "$crossdir" ] && error "crossdir_rename_size count error"
8504         [ "$src_sample" -eq 1 ] || error "crossdir_rename_size error $src_sample"
8505         [ "$tgt_sample" -eq 1 ] || error "crossdir_rename_size error $tgt_sample"
8506         echo "Check cross dir rename stats success"
8507         rm -rf $DIR/${tdir}
8508 }
8509 run_test 133d "Verifying rename_stats ========================================"
8510
8511 test_133e() {
8512         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8513         local testdir=$DIR/${tdir}/stats_testdir
8514         local ctr f0 f1 bs=32768 count=42 sum
8515
8516         remote_ost_nodsh && skip "remote OST with nodsh" && return
8517         mkdir -p ${testdir} || error "mkdir failed"
8518
8519         $SETSTRIPE -c 1 -i 0 ${testdir}/${tfile}
8520
8521         for ctr in {write,read}_bytes; do
8522                 sync
8523                 cancel_lru_locks osc
8524
8525                 do_facet ost1 $LCTL set_param -n \
8526                         "obdfilter.*.exports.clear=clear"
8527
8528                 if [ $ctr = write_bytes ]; then
8529                         f0=/dev/zero
8530                         f1=${testdir}/${tfile}
8531                 else
8532                         f0=${testdir}/${tfile}
8533                         f1=/dev/null
8534                 fi
8535
8536                 dd if=$f0 of=$f1 conv=notrunc bs=$bs count=$count || \
8537                         error "dd failed"
8538                 sync
8539                 cancel_lru_locks osc
8540
8541                 sum=$(do_facet ost1 $LCTL get_param \
8542                                 "obdfilter.*.exports.*.stats" | \
8543                           awk -v ctr=$ctr '\
8544                                 BEGIN { sum = 0 }
8545                                 $1 == ctr { sum += $7 }
8546                                 END { print sum }')
8547
8548                 if ((sum != bs * count)); then
8549                         error "Bad $ctr sum, expected $((bs * count)), got $sum"
8550                 fi
8551         done
8552
8553         rm -rf $DIR/${tdir}
8554 }
8555 run_test 133e "Verifying OST {read,write}_bytes nid stats ================="
8556
8557 test_133f() {
8558         local proc_dirs="/proc/fs/lustre/ /proc/sys/lnet/ /proc/sys/lustre/"
8559         local facet
8560
8561         # First without trusting modes.
8562         find $proc_dirs \
8563                 -exec cat '{}' \; &> /dev/null
8564
8565         # Second verifying readability.
8566         find $proc_dirs \
8567                 -type f \
8568                 -readable \
8569                 -exec cat '{}' \; > /dev/null ||
8570                         error "proc file read failed"
8571
8572         for facet in $SINGLEMDS ost1; do
8573                 do_facet $facet find $proc_dirs \
8574                         -not -name req_history \
8575                         -exec cat '{}' \\\; &> /dev/null
8576
8577             do_facet $facet     find $proc_dirs \
8578                         -not -name req_history \
8579                         -type f \
8580                         -readable \
8581                         -exec cat '{}' \\\; > /dev/null ||
8582                                 error "proc file read failed"
8583         done
8584 }
8585 run_test 133f "Check for LBUGs/Oopses/unreadable files in /proc"
8586
8587 test_140() { #bug-17379
8588         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8589         test_mkdir -p $DIR/$tdir || error "Creating dir $DIR/$tdir"
8590         cd $DIR/$tdir || error "Changing to $DIR/$tdir"
8591         cp /usr/bin/stat . || error "Copying stat to $DIR/$tdir"
8592
8593         # VFS limits max symlink depth to 5(4KSTACK) or 7(8KSTACK) or 8
8594         # For kernel > 3.5, bellow only tests consecutive symlink (MAX 40)
8595         local i=0
8596         while i=`expr $i + 1`; do
8597                 test_mkdir -p $i || error "Creating dir $i"
8598                 cd $i || error "Changing to $i"
8599                 ln -s ../stat stat || error "Creating stat symlink"
8600                 # Read the symlink until ELOOP present,
8601                 # not LBUGing the system is considered success,
8602                 # we didn't overrun the stack.
8603                 $OPENFILE -f O_RDONLY stat >/dev/null 2>&1; ret=$?
8604                 [ $ret -ne 0 ] && {
8605                         if [ $ret -eq 40 ]; then
8606                                 break  # -ELOOP
8607                         else
8608                                 error "Open stat symlink"
8609                                 return
8610                         fi
8611                 }
8612         done
8613         i=`expr $i - 1`
8614         echo "The symlink depth = $i"
8615         [ $i -eq 5 -o $i -eq 7 -o $i -eq 8 -o $i -eq 40 ] ||
8616                                         error "Invalid symlink depth"
8617
8618         # Test recursive symlink
8619         ln -s symlink_self symlink_self
8620         $OPENFILE -f O_RDONLY symlink_self >/dev/null 2>&1; ret=$?
8621         echo "open symlink_self returns $ret"
8622         [ $ret -eq 40 ] || error "recursive symlink doesn't return -ELOOP"
8623 }
8624 run_test 140 "Check reasonable stack depth (shouldn't LBUG) ===="
8625
8626 test_150() {
8627         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8628         local TF="$TMP/$tfile"
8629
8630         dd if=/dev/urandom of=$TF bs=6096 count=1 || error "dd failed"
8631         cp $TF $DIR/$tfile
8632         cancel_lru_locks osc
8633         cmp $TF $DIR/$tfile || error "$TMP/$tfile $DIR/$tfile differ"
8634         remount_client $MOUNT
8635         df -P $MOUNT
8636         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (remount)"
8637
8638         $TRUNCATE $TF 6000
8639         $TRUNCATE $DIR/$tfile 6000
8640         cancel_lru_locks osc
8641         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (truncate1)"
8642
8643         echo "12345" >>$TF
8644         echo "12345" >>$DIR/$tfile
8645         cancel_lru_locks osc
8646         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (append1)"
8647
8648         echo "12345" >>$TF
8649         echo "12345" >>$DIR/$tfile
8650         cancel_lru_locks osc
8651         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (append2)"
8652
8653         rm -f $TF
8654         true
8655 }
8656 run_test 150 "truncate/append tests"
8657
8658 #LU-2902 roc_hit was not able to read all values from lproc
8659 function roc_hit_init() {
8660         local list=$(comma_list $(osts_nodes))
8661         local dir=$DIR/$tdir-check
8662         local file=$dir/file
8663         local BEFORE
8664         local AFTER
8665         local idx
8666
8667         test_mkdir -p $dir
8668         #use setstripe to do a write to every ost
8669         for i in $(seq 0 $((OSTCOUNT-1))); do
8670                 $SETSTRIPE -c 1 -i $i $dir || error "$SETSTRIPE $file failed"
8671                 dd if=/dev/urandom of=$file bs=4k count=4 2>&1 > /dev/null
8672                 idx=$(printf %04x $i)
8673                 BEFORE=$(get_osd_param $list *OST*$idx stats |
8674                     awk '$1 == "cache_access" {sum += $2} END { print sum }')
8675                 if [ -z "$BEFORE" ]; then
8676                         BEFORE=0
8677                 fi
8678
8679                 cancel_lru_locks osc
8680                 cat $file >/dev/null
8681
8682                 AFTER=$(get_osd_param $list *OST*$idx stats |
8683                     awk '$1 == "cache_access" {sum += $2} END { print sum }')
8684
8685                 echo BEFORE:$BEFORE AFTER:$AFTER
8686                 if ! let "AFTER - BEFORE == 4"; then
8687                         rm -rf $dir
8688                         error "roc_hit is not safe to use"
8689                 fi
8690                 rm $file
8691         done
8692
8693         rm -rf $dir
8694 }
8695
8696 function roc_hit() {
8697         local list=$(comma_list $(osts_nodes))
8698         echo $(get_osd_param $list '' stats |
8699                 awk '$1 == "cache_hit" {sum += $2} END { print sum }')
8700 }
8701
8702 function set_cache() {
8703         local on=1
8704
8705         if [ "$2" == "off" ]; then
8706                 on=0;
8707         fi
8708         local list=$(comma_list $(osts_nodes))
8709         set_osd_param $list '' $1_cache_enable $on
8710
8711         cancel_lru_locks osc
8712 }
8713
8714 test_151() {
8715         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8716         remote_ost_nodsh && skip "remote OST with nodsh" && return
8717
8718         local CPAGES=3
8719         local list=$(comma_list $(osts_nodes))
8720
8721         # check whether obdfilter is cache capable at all
8722         if ! get_osd_param $list '' read_cache_enable >/dev/null; then
8723                 echo "not cache-capable obdfilter"
8724                 return 0
8725         fi
8726
8727         # check cache is enabled on all obdfilters
8728         if get_osd_param $list '' read_cache_enable | grep 0; then
8729                 echo "oss cache is disabled"
8730                 return 0
8731         fi
8732
8733         set_osd_param $list '' writethrough_cache_enable 1
8734
8735         # check write cache is enabled on all obdfilters
8736         if get_osd_param $list '' writethrough_cache_enable | grep 0; then
8737                 echo "oss write cache is NOT enabled"
8738                 return 0
8739         fi
8740
8741         roc_hit_init
8742
8743         #define OBD_FAIL_OBD_NO_LRU  0x609
8744         do_nodes $list $LCTL set_param fail_loc=0x609
8745
8746         # pages should be in the case right after write
8747         dd if=/dev/urandom of=$DIR/$tfile bs=4k count=$CPAGES ||
8748                 error "dd failed"
8749
8750         local BEFORE=$(roc_hit)
8751         cancel_lru_locks osc
8752         cat $DIR/$tfile >/dev/null
8753         local AFTER=$(roc_hit)
8754
8755         do_nodes $list $LCTL set_param fail_loc=0
8756
8757         if ! let "AFTER - BEFORE == CPAGES"; then
8758                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
8759         fi
8760
8761         # the following read invalidates the cache
8762         cancel_lru_locks osc
8763         set_osd_param $list '' read_cache_enable 0
8764         cat $DIR/$tfile >/dev/null
8765
8766         # now data shouldn't be found in the cache
8767         BEFORE=$(roc_hit)
8768         cancel_lru_locks osc
8769         cat $DIR/$tfile >/dev/null
8770         AFTER=$(roc_hit)
8771         if let "AFTER - BEFORE != 0"; then
8772                 error "IN CACHE: before: $BEFORE, after: $AFTER"
8773         fi
8774
8775         set_osd_param $list '' read_cache_enable 1
8776         rm -f $DIR/$tfile
8777 }
8778 run_test 151 "test cache on oss and controls ==============================="
8779
8780 test_152() {
8781         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8782         local TF="$TMP/$tfile"
8783
8784         # simulate ENOMEM during write
8785 #define OBD_FAIL_OST_NOMEM      0x226
8786         lctl set_param fail_loc=0x80000226
8787         dd if=/dev/urandom of=$TF bs=6096 count=1 || error "dd failed"
8788         cp $TF $DIR/$tfile
8789         sync || error "sync failed"
8790         lctl set_param fail_loc=0
8791
8792         # discard client's cache
8793         cancel_lru_locks osc
8794
8795         # simulate ENOMEM during read
8796         lctl set_param fail_loc=0x80000226
8797         cmp $TF $DIR/$tfile || error "cmp failed"
8798         lctl set_param fail_loc=0
8799
8800         rm -f $TF
8801 }
8802 run_test 152 "test read/write with enomem ============================"
8803
8804 test_153() {
8805         $MULTIOP $DIR/$tfile Ow4096Ycu || error "multiop failed"
8806 }
8807 run_test 153 "test if fdatasync does not crash ======================="
8808
8809 dot_lustre_fid_permission_check() {
8810         local fid=$1
8811         local ffid=$MOUNT/.lustre/fid/$fid
8812         local test_dir=$2
8813
8814         echo "stat fid $fid"
8815         stat $ffid > /dev/null || error "stat $ffid failed."
8816         echo "touch fid $fid"
8817         touch $ffid || error "touch $ffid failed."
8818         echo "write to fid $fid"
8819         cat /etc/hosts > $ffid || error "write $ffid failed."
8820         echo "read fid $fid"
8821         diff /etc/hosts $ffid || error "read $ffid failed."
8822         echo "append write to fid $fid"
8823         cat /etc/hosts >> $ffid || error "append write $ffid failed."
8824         echo "rename fid $fid"
8825         mv $ffid $test_dir/$tfile.1 &&
8826                 error "rename $ffid to $tfile.1 should fail."
8827         touch $test_dir/$tfile.1
8828         mv $test_dir/$tfile.1 $ffid &&
8829                 error "rename $tfile.1 to $ffid should fail."
8830         rm -f $test_dir/$tfile.1
8831         echo "truncate fid $fid"
8832         $TRUNCATE $ffid 777 || error "truncate $ffid failed."
8833         echo "link fid $fid"
8834         ln -f $ffid $test_dir/tfile.lnk || error "link $ffid failed."
8835         if [ -n $(lctl get_param -n mdc.*-mdc-*.connect_flags | grep acl) ]; then
8836                 echo "setfacl fid $fid"
8837                 setfacl -R -m u:bin:rwx $ffid || error "setfacl $ffid failed."
8838                 echo "getfacl fid $fid"
8839                 getfacl $ffid >/dev/null || error "getfacl $ffid failed."
8840         fi
8841         echo "unlink fid $fid"
8842         unlink $MOUNT/.lustre/fid/$fid && error "unlink $ffid should fail."
8843         echo "mknod fid $fid"
8844         mknod $ffid c 1 3 && error "mknod $ffid should fail."
8845
8846         fid=[0xf00000400:0x1:0x0]
8847         ffid=$MOUNT/.lustre/fid/$fid
8848
8849         echo "stat non-exist fid $fid"
8850         stat $ffid > /dev/null && error "stat non-exist $ffid should fail."
8851         echo "write to non-exist fid $fid"
8852         cat /etc/hosts > $ffid && error "write non-exist $ffid should fail."
8853         echo "link new fid $fid"
8854         ln $test_dir/$tfile $ffid && error "link $ffid should fail."
8855
8856         mkdir -p $test_dir/$tdir
8857         touch $test_dir/$tdir/$tfile
8858         fid=$($LFS path2fid $test_dir/$tdir)
8859         rc=$?
8860         [ $rc -ne 0 ] &&
8861                 error "error: could not get fid for $test_dir/$dir/$tfile."
8862
8863         ffid=$MOUNT/.lustre/fid/$fid
8864
8865         echo "ls $fid"
8866         ls $ffid > /dev/null || error "ls $ffid failed."
8867         echo "touch $fid/$tfile.1"
8868         touch $ffid/$tfile.1 || error "touch $ffid/$tfile.1 failed."
8869
8870         echo "touch $MOUNT/.lustre/fid/$tfile"
8871         touch $MOUNT/.lustre/fid/$tfile && \
8872                 error "touch $MOUNT/.lustre/fid/$tfile should fail."
8873
8874         echo "setxattr to $MOUNT/.lustre/fid"
8875         setfattr -n trusted.name1 -v value1 $MOUNT/.lustre/fid
8876
8877         echo "listxattr for $MOUNT/.lustre/fid"
8878         getfattr -d -m "^trusted" $MOUNT/.lustre/fid
8879
8880         echo "delxattr from $MOUNT/.lustre/fid"
8881         setfattr -x trusted.name1 $MOUNT/.lustre/fid
8882
8883         echo "touch invalid fid: $MOUNT/.lustre/fid/[0x200000400:0x2:0x3]"
8884         touch $MOUNT/.lustre/fid/[0x200000400:0x2:0x3] &&
8885                 error "touch invalid fid should fail."
8886
8887         echo "touch non-normal fid: $MOUNT/.lustre/fid/[0x1:0x2:0x0]"
8888         touch $MOUNT/.lustre/fid/[0x1:0x2:0x0] &&
8889                 error "touch non-normal fid should fail."
8890
8891         echo "rename $tdir to $MOUNT/.lustre/fid"
8892         mrename $test_dir/$tdir $MOUNT/.lustre/fid &&
8893                 error "rename to $MOUNT/.lustre/fid should fail."
8894
8895         if [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.51) ]
8896         then            # LU-3547
8897                 local old_obf_mode=$(stat --format="%a" $DIR/.lustre/fid)
8898                 local new_obf_mode=777
8899
8900                 echo "change mode of $DIR/.lustre/fid to $new_obf_mode"
8901                 chmod $new_obf_mode $DIR/.lustre/fid ||
8902                         error "chmod $new_obf_mode $DIR/.lustre/fid failed"
8903
8904                 local obf_mode=$(stat --format=%a $DIR/.lustre/fid)
8905                 [ $obf_mode -eq $new_obf_mode ] ||
8906                         error "stat $DIR/.lustre/fid returned wrong mode $obf_mode"
8907
8908                 echo "restore mode of $DIR/.lustre/fid to $old_obf_mode"
8909                 chmod $old_obf_mode $DIR/.lustre/fid ||
8910                         error "chmod $old_obf_mode $DIR/.lustre/fid failed"
8911         fi
8912
8913         $OPENFILE -f O_LOV_DELAY_CREATE:O_CREAT $test_dir/$tfile-2
8914         fid=$($LFS path2fid $test_dir/$tfile-2)
8915         echo "cp /etc/passwd $MOUNT/.lustre/fid/$fid"
8916         cp /etc/passwd $MOUNT/.lustre/fid/$fid &&
8917                 error "create lov data thru .lustre should fail."
8918         echo "cp /etc/passwd $test_dir/$tfile-2"
8919         cp /etc/passwd $test_dir/$tfile-2 ||
8920                 error "copy to $test_dir/$tfile-2 failed."
8921         echo "diff /etc/passwd $MOUNT/.lustre/fid/$fid"
8922         diff /etc/passwd $MOUNT/.lustre/fid/$fid ||
8923                 error "diff /etc/passwd $MOUNT/.lustre/fid/$fid failed."
8924
8925         rm -rf $test_dir/tfile.lnk
8926         rm -rf $test_dir/$tfile-2
8927 }
8928
8929 test_154A() {
8930         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.1) ]] &&
8931                 skip "Need MDS version at least 2.4.1" && return
8932
8933         touch $DIR/$tfile
8934         local FID=$($LFS path2fid $DIR/$tfile)
8935         [ -z "$FID" ] && error "path2fid unable to get $DIR/$tfile FID"
8936
8937         # check that we get the same pathname back
8938         local FOUND=$($LFS fid2path $MOUNT $FID)
8939         [ -z "$FOUND" ] && error "fid2path unable to get $FID path"
8940         [ "$FOUND" != "$DIR/$tfile" ] &&
8941                 error "fid2path(path2fid($DIR/$tfile)) = $FOUND != $DIR/$tfile"
8942
8943         rm -rf $DIR/$tfile
8944 }
8945 run_test 154A "lfs path2fid and fid2path basic checks"
8946
8947 test_154a() {
8948         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8949         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ]] ||
8950                 { skip "Need MDS version at least 2.2.51"; return 0; }
8951
8952         cp /etc/hosts $DIR/$tfile
8953
8954         fid=$($LFS path2fid $DIR/$tfile)
8955         rc=$?
8956         [ $rc -ne 0 ] && error "error: could not get fid for $DIR/$tfile."
8957
8958         dot_lustre_fid_permission_check "$fid" $DIR ||
8959                 error "dot lustre permission check $fid failed"
8960
8961         rm -rf $MOUNT/.lustre && error ".lustre is not allowed to be unlinked"
8962
8963         touch $MOUNT/.lustre/file &&
8964                 error "creation is not allowed under .lustre"
8965
8966         mkdir $MOUNT/.lustre/dir &&
8967                 error "mkdir is not allowed under .lustre"
8968
8969         rm -rf $DIR/$tfile
8970 }
8971 run_test 154a "Open-by-FID"
8972
8973 test_154b() {
8974         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8975         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ]] ||
8976                 { skip "Need MDS version at least 2.2.51"; return 0; }
8977
8978         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
8979
8980         local remote_dir=$DIR/$tdir/remote_dir
8981         local MDTIDX=1
8982         local rc=0
8983
8984         mkdir -p $DIR/$tdir
8985         $LFS mkdir -i $MDTIDX $remote_dir ||
8986                 error "create remote directory failed"
8987
8988         cp /etc/hosts $remote_dir/$tfile
8989
8990         fid=$($LFS path2fid $remote_dir/$tfile)
8991         rc=$?
8992         [ $rc -ne 0 ] && error "error: could not get fid for $remote_dir/$tfile"
8993
8994         dot_lustre_fid_permission_check "$fid" $remote_dir ||
8995                 error "dot lustre permission check $fid failed"
8996         rm -rf $DIR/$tdir
8997 }
8998 run_test 154b "Open-by-FID for remote directory"
8999
9000 test_154c() {
9001         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.1) ]] &&
9002                 skip "Need MDS version at least 2.4.1" && return
9003
9004         touch $DIR/$tfile.1 $DIR/$tfile.2 $DIR/$tfile.3
9005         local FID1=$($LFS path2fid $DIR/$tfile.1)
9006         local FID2=$($LFS path2fid $DIR/$tfile.2)
9007         local FID3=$($LFS path2fid $DIR/$tfile.3)
9008
9009         local N=1
9010         $LFS path2fid $DIR/$tfile.[123] | while read PATHNAME FID; do
9011                 [ "$PATHNAME" = "$DIR/$tfile.$N:" ] ||
9012                         error "path2fid pathname $PATHNAME != $DIR/$tfile.$N:"
9013                 local want=FID$N
9014                 [ "$FID" = "${!want}" ] ||
9015                         error "path2fid $PATHNAME FID $FID != FID$N ${!want}"
9016                 N=$((N + 1))
9017         done
9018
9019         $LFS fid2path $MOUNT $FID1 $FID2 $FID3 | while read PATHNAME; do
9020                 [ "$PATHNAME" = "$DIR/$tfile.$N" ] ||
9021                         error "fid2path pathname $PATHNAME != $DIR/$tfile.$N:"
9022                 N=$((N + 1))
9023         done
9024 }
9025 run_test 154c "lfs path2fid and fid2path multiple arguments"
9026
9027 test_155_small_load() {
9028     local temp=$TMP/$tfile
9029     local file=$DIR/$tfile
9030
9031     dd if=/dev/urandom of=$temp bs=6096 count=1 || \
9032         error "dd of=$temp bs=6096 count=1 failed"
9033     cp $temp $file
9034     cancel_lru_locks osc
9035     cmp $temp $file || error "$temp $file differ"
9036
9037     $TRUNCATE $temp 6000
9038     $TRUNCATE $file 6000
9039     cmp $temp $file || error "$temp $file differ (truncate1)"
9040
9041     echo "12345" >>$temp
9042     echo "12345" >>$file
9043     cmp $temp $file || error "$temp $file differ (append1)"
9044
9045     echo "12345" >>$temp
9046     echo "12345" >>$file
9047     cmp $temp $file || error "$temp $file differ (append2)"
9048
9049     rm -f $temp $file
9050     true
9051 }
9052
9053 test_155_big_load() {
9054     remote_ost_nodsh && skip "remote OST with nodsh" && return
9055     local temp=$TMP/$tfile
9056     local file=$DIR/$tfile
9057
9058     free_min_max
9059     local cache_size=$(do_facet ost$((MAXI+1)) \
9060         "awk '/cache/ {sum+=\\\$4} END {print sum}' /proc/cpuinfo")
9061     local large_file_size=$((cache_size * 2))
9062
9063     echo "OSS cache size: $cache_size KB"
9064     echo "Large file size: $large_file_size KB"
9065
9066     [ $MAXV -le $large_file_size ] && \
9067         skip_env "max available OST size needs > $large_file_size KB" && \
9068         return 0
9069
9070     $SETSTRIPE $file -c 1 -i $MAXI || error "$SETSTRIPE $file failed"
9071
9072     dd if=/dev/urandom of=$temp bs=$large_file_size count=1k || \
9073         error "dd of=$temp bs=$large_file_size count=1k failed"
9074     cp $temp $file
9075     ls -lh $temp $file
9076     cancel_lru_locks osc
9077     cmp $temp $file || error "$temp $file differ"
9078
9079     rm -f $temp $file
9080     true
9081 }
9082
9083 test_155a() {
9084         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9085         set_cache read on
9086         set_cache writethrough on
9087         test_155_small_load
9088 }
9089 run_test 155a "Verify small file correctness: read cache:on write_cache:on"
9090
9091 test_155b() {
9092         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9093         set_cache read on
9094         set_cache writethrough off
9095         test_155_small_load
9096 }
9097 run_test 155b "Verify small file correctness: read cache:on write_cache:off"
9098
9099 test_155c() {
9100         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9101         set_cache read off
9102         set_cache writethrough on
9103         test_155_small_load
9104 }
9105 run_test 155c "Verify small file correctness: read cache:off write_cache:on"
9106
9107 test_155d() {
9108         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9109         set_cache read off
9110         set_cache writethrough off
9111         test_155_small_load
9112 }
9113 run_test 155d "Verify small file correctness: read cache:off write_cache:off"
9114
9115 test_155e() {
9116         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9117         set_cache read on
9118         set_cache writethrough on
9119         test_155_big_load
9120 }
9121 run_test 155e "Verify big file correctness: read cache:on write_cache:on"
9122
9123 test_155f() {
9124         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9125         set_cache read on
9126         set_cache writethrough off
9127         test_155_big_load
9128 }
9129 run_test 155f "Verify big file correctness: read cache:on write_cache:off"
9130
9131 test_155g() {
9132         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9133         set_cache read off
9134         set_cache writethrough on
9135         test_155_big_load
9136 }
9137 run_test 155g "Verify big file correctness: read cache:off write_cache:on"
9138
9139 test_155h() {
9140         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9141         set_cache read off
9142         set_cache writethrough off
9143         test_155_big_load
9144 }
9145 run_test 155h "Verify big file correctness: read cache:off write_cache:off"
9146
9147 test_156() {
9148         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9149         local CPAGES=3
9150         local BEFORE
9151         local AFTER
9152         local file="$DIR/$tfile"
9153
9154         [ "$(facet_fstype ost1)" = "zfs" ] &&
9155                 skip "LU-1956/LU-2261: stats unimplemented on OSD ZFS" &&
9156                 return
9157
9158         roc_hit_init
9159
9160     log "Turn on read and write cache"
9161     set_cache read on
9162     set_cache writethrough on
9163
9164     log "Write data and read it back."
9165     log "Read should be satisfied from the cache."
9166     dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
9167     BEFORE=`roc_hit`
9168     cancel_lru_locks osc
9169     cat $file >/dev/null
9170     AFTER=`roc_hit`
9171     if ! let "AFTER - BEFORE == CPAGES"; then
9172         error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
9173     else
9174         log "cache hits:: before: $BEFORE, after: $AFTER"
9175     fi
9176
9177     log "Read again; it should be satisfied from the cache."
9178     BEFORE=$AFTER
9179     cancel_lru_locks osc
9180     cat $file >/dev/null
9181     AFTER=`roc_hit`
9182     if ! let "AFTER - BEFORE == CPAGES"; then
9183         error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
9184     else
9185         log "cache hits:: before: $BEFORE, after: $AFTER"
9186     fi
9187
9188
9189     log "Turn off the read cache and turn on the write cache"
9190     set_cache read off
9191     set_cache writethrough on
9192
9193     log "Read again; it should be satisfied from the cache."
9194     BEFORE=`roc_hit`
9195     cancel_lru_locks osc
9196     cat $file >/dev/null
9197     AFTER=`roc_hit`
9198     if ! let "AFTER - BEFORE == CPAGES"; then
9199         error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
9200     else
9201         log "cache hits:: before: $BEFORE, after: $AFTER"
9202     fi
9203
9204     log "Read again; it should not be satisfied from the cache."
9205     BEFORE=$AFTER
9206     cancel_lru_locks osc
9207     cat $file >/dev/null
9208     AFTER=`roc_hit`
9209     if ! let "AFTER - BEFORE == 0"; then
9210         error "IN CACHE: before: $BEFORE, after: $AFTER"
9211     else
9212         log "cache hits:: before: $BEFORE, after: $AFTER"
9213     fi
9214
9215     log "Write data and read it back."
9216     log "Read should be satisfied from the cache."
9217     dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
9218     BEFORE=`roc_hit`
9219     cancel_lru_locks osc
9220     cat $file >/dev/null
9221     AFTER=`roc_hit`
9222     if ! let "AFTER - BEFORE == CPAGES"; then
9223         error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
9224     else
9225         log "cache hits:: before: $BEFORE, after: $AFTER"
9226     fi
9227
9228     log "Read again; it should not be satisfied from the cache."
9229     BEFORE=$AFTER
9230     cancel_lru_locks osc
9231     cat $file >/dev/null
9232     AFTER=`roc_hit`
9233     if ! let "AFTER - BEFORE == 0"; then
9234         error "IN CACHE: before: $BEFORE, after: $AFTER"
9235     else
9236         log "cache hits:: before: $BEFORE, after: $AFTER"
9237     fi
9238
9239
9240     log "Turn off read and write cache"
9241     set_cache read off
9242     set_cache writethrough off
9243
9244     log "Write data and read it back"
9245     log "It should not be satisfied from the cache."
9246     rm -f $file
9247     dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
9248     cancel_lru_locks osc
9249     BEFORE=`roc_hit`
9250     cat $file >/dev/null
9251     AFTER=`roc_hit`
9252     if ! let "AFTER - BEFORE == 0"; then
9253         error_ignore 20762 "IN CACHE: before: $BEFORE, after: $AFTER"
9254     else
9255         log "cache hits:: before: $BEFORE, after: $AFTER"
9256     fi
9257
9258
9259     log "Turn on the read cache and turn off the write cache"
9260     set_cache read on
9261     set_cache writethrough off
9262
9263     log "Write data and read it back"
9264     log "It should not be satisfied from the cache."
9265     rm -f $file
9266     dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
9267     BEFORE=`roc_hit`
9268     cancel_lru_locks osc
9269     cat $file >/dev/null
9270     AFTER=`roc_hit`
9271     if ! let "AFTER - BEFORE == 0"; then
9272         error_ignore 20762 "IN CACHE: before: $BEFORE, after: $AFTER"
9273     else
9274         log "cache hits:: before: $BEFORE, after: $AFTER"
9275     fi
9276
9277     log "Read again; it should be satisfied from the cache."
9278     BEFORE=`roc_hit`
9279     cancel_lru_locks osc
9280     cat $file >/dev/null
9281     AFTER=`roc_hit`
9282     if ! let "AFTER - BEFORE == CPAGES"; then
9283         error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
9284     else
9285         log "cache hits:: before: $BEFORE, after: $AFTER"
9286     fi
9287
9288     rm -f $file
9289 }
9290 run_test 156 "Verification of tunables ============================"
9291
9292 #Changelogs
9293 err17935 () {
9294         if [ $MDSCOUNT -gt 1 ]; then
9295                 error_ignore 17935 $*
9296         else
9297                 error $*
9298         fi
9299 }
9300
9301 changelog_chmask()
9302 {
9303         local CL_MASK_PARAM="mdd.$MDT0.changelog_mask"
9304
9305         MASK=$(do_facet $SINGLEMDS $LCTL get_param $CL_MASK_PARAM| grep -c "$1")
9306
9307         if [ $MASK -eq 1 ]; then
9308                 do_facet $SINGLEMDS $LCTL set_param $CL_MASK_PARAM="-$1"
9309         else
9310                 do_facet $SINGLEMDS $LCTL set_param $CL_MASK_PARAM="+$1"
9311         fi
9312 }
9313
9314 changelog_extract_field() {
9315         local mdt=$1
9316         local cltype=$2
9317         local file=$3
9318         local identifier=$4
9319
9320         $LFS changelog $mdt | gawk "/$cltype.*$file$/ {
9321                 print gensub(/^.* "$identifier'(\[[^\]]*\]).*$/,"\\1",1)}' |
9322                 tail -1
9323 }
9324
9325 test_160() {
9326         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9327         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9328         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] ||
9329                 { skip "Need MDS version at least 2.2.0"; return; }
9330
9331         local CL_USERS="mdd.$MDT0.changelog_users"
9332         local GET_CL_USERS="do_facet $SINGLEMDS $LCTL get_param -n $CL_USERS"
9333         USER=$(do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_register -n)
9334         echo "Registered as changelog user $USER"
9335         $GET_CL_USERS | grep -q $USER ||
9336                 error "User $USER not found in changelog_users"
9337
9338         # change something
9339         test_mkdir -p $DIR/$tdir/pics/2008/zachy
9340         touch $DIR/$tdir/pics/2008/zachy/timestamp
9341         cp /etc/hosts $DIR/$tdir/pics/2008/zachy/pic1.jpg
9342         mv $DIR/$tdir/pics/2008/zachy $DIR/$tdir/pics/zach
9343         ln $DIR/$tdir/pics/zach/pic1.jpg $DIR/$tdir/pics/2008/portland.jpg
9344         ln -s $DIR/$tdir/pics/2008/portland.jpg $DIR/$tdir/pics/desktop.jpg
9345         rm $DIR/$tdir/pics/desktop.jpg
9346
9347         $LFS changelog $MDT0 | tail -5
9348
9349         echo "verifying changelog mask"
9350         changelog_chmask "MKDIR"
9351         changelog_chmask "CLOSE"
9352
9353         test_mkdir -p $DIR/$tdir/pics/zach/sofia
9354         echo "zzzzzz" > $DIR/$tdir/pics/zach/file
9355
9356         changelog_chmask "MKDIR"
9357         changelog_chmask "CLOSE"
9358
9359         test_mkdir -p $DIR/$tdir/pics/2008/sofia
9360         echo "zzzzzz" > $DIR/$tdir/pics/zach/file
9361
9362         $LFS changelog $MDT0
9363         MKDIRS=$($LFS changelog $MDT0 | tail -5 | grep -c "MKDIR")
9364         CLOSES=$($LFS changelog $MDT0 | tail -5 | grep -c "CLOSE")
9365         [ $MKDIRS -eq 1 ] || err17935 "MKDIR changelog mask count $DIRS != 1"
9366         [ $CLOSES -eq 1 ] || err17935 "CLOSE changelog mask count $DIRS != 1"
9367
9368         # verify contents
9369         echo "verifying target fid"
9370         fidc=$(changelog_extract_field $MDT0 "CREAT" "timestamp" "t=")
9371         fidf=$($LFS path2fid $DIR/$tdir/pics/zach/timestamp)
9372         [ "$fidc" == "$fidf" ] ||
9373                 err17935 "fid in changelog $fidc != file fid $fidf"
9374         echo "verifying parent fid"
9375         fidc=$(changelog_extract_field $MDT0 "CREAT" "timestamp" "p=")
9376         fidf=$($LFS path2fid $DIR/$tdir/pics/zach)
9377         [ "$fidc" == "$fidf" ] ||
9378                 err17935 "pfid in changelog $fidc != dir fid $fidf"
9379
9380         USER_REC1=$($GET_CL_USERS | awk "\$1 == \"$USER\" {print \$2}")
9381         $LFS changelog_clear $MDT0 $USER $(($USER_REC1 + 5))
9382         USER_REC2=$($GET_CL_USERS | awk "\$1 == \"$USER\" {print \$2}")
9383         echo "verifying user clear: $(( $USER_REC1 + 5 )) == $USER_REC2"
9384         [ $USER_REC2 == $(($USER_REC1 + 5)) ] ||
9385                 err17935 "user index expected $(($USER_REC1 + 5)) is $USER_REC2"
9386
9387         MIN_REC=$($GET_CL_USERS |
9388                 awk 'min == "" || $2 < min {min = $2}; END {print min}')
9389         FIRST_REC=$($LFS changelog $MDT0 | head -1 | awk '{print $1}')
9390         echo "verifying min purge: $(( $MIN_REC + 1 )) == $FIRST_REC"
9391         [ $FIRST_REC == $(($MIN_REC + 1)) ] ||
9392                 err17935 "first index should be $(($MIN_REC + 1)) is $FIRST_REC"
9393
9394         # LU-3446 changelog index reset on MDT restart
9395         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
9396         CUR_REC1=$($GET_CL_USERS | head -1 | cut -f3 -d' ')
9397         $LFS changelog_clear $MDT0 $USER 0
9398         stop $SINGLEMDS || error "Fail to stop MDT."
9399         start $SINGLEMDS $MDT_DEV $MDS_MOUNT_OPTS || error "Fail to start MDT."
9400         CUR_REC2=$($GET_CL_USERS | head -1 | cut -f3 -d' ')
9401         echo "verifying index survives MDT restart: $CUR_REC1 == $CUR_REC2"
9402         [ $CUR_REC1 == $CUR_REC2 ] ||
9403                 err17935 "current index should be $CUR_REC1 is $CUR_REC2"
9404
9405         echo "verifying user deregister"
9406         do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister $USER
9407         $GET_CL_USERS | grep -q $USER &&
9408                 error "User $USER still in changelog_users"
9409
9410         USERS=$(( $($GET_CL_USERS | wc -l) - 2 ))
9411         if [ $USERS -eq 0 ]; then
9412                 LAST_REC1=$($GET_CL_USERS | head -1 | cut -f3 -d' ')
9413                 touch $DIR/$tdir/chloe
9414                 LAST_REC2=$($GET_CL_USERS | head -1 | cut -f3 -d' ')
9415                 echo "verify changelogs are off: $LAST_REC1 == $LAST_REC2"
9416                 [ $LAST_REC1 == $LAST_REC2 ] || error "changelogs not off"
9417         else
9418                 echo "$USERS other changelog users; can't verify off"
9419         fi
9420 }
9421 run_test 160 "changelog sanity"
9422
9423 test_161a() {
9424         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9425     test_mkdir -p $DIR/$tdir
9426     cp /etc/hosts $DIR/$tdir/$tfile
9427     test_mkdir $DIR/$tdir/foo1
9428     test_mkdir $DIR/$tdir/foo2
9429     ln $DIR/$tdir/$tfile $DIR/$tdir/foo1/sofia
9430     ln $DIR/$tdir/$tfile $DIR/$tdir/foo2/zachary
9431     ln $DIR/$tdir/$tfile $DIR/$tdir/foo1/luna
9432     ln $DIR/$tdir/$tfile $DIR/$tdir/foo2/thor
9433         local FID=$($LFS path2fid $DIR/$tdir/$tfile | tr -d '[]')
9434         if [ "$($LFS fid2path $DIR $FID | wc -l)" != "5" ]; then
9435                 $LFS fid2path $DIR $FID
9436                 err17935 "bad link ea"
9437         fi
9438     # middle
9439     rm $DIR/$tdir/foo2/zachary
9440     # last
9441     rm $DIR/$tdir/foo2/thor
9442     # first
9443     rm $DIR/$tdir/$tfile
9444     # rename
9445     mv $DIR/$tdir/foo1/sofia $DIR/$tdir/foo2/maggie
9446     if [ "$($LFS fid2path $FSNAME --link 1 $FID)" != "$tdir/foo2/maggie" ]
9447         then
9448         $LFS fid2path $DIR $FID
9449         err17935 "bad link rename"
9450     fi
9451     rm $DIR/$tdir/foo2/maggie
9452
9453     # overflow the EA
9454     local longname=filename_avg_len_is_thirty_two_
9455     createmany -l$DIR/$tdir/foo1/luna $DIR/$tdir/foo2/$longname 1000 || \
9456         error "failed to hardlink many files"
9457     links=$($LFS fid2path $DIR $FID | wc -l)
9458     echo -n "${links}/1000 links in link EA"
9459     [ ${links} -gt 60 ] || err17935 "expected at least 60 links in link EA"
9460     unlinkmany $DIR/$tdir/foo2/$longname 1000 || \
9461         error "failed to unlink many hardlinks"
9462 }
9463 run_test 161a "link ea sanity"
9464
9465 test_161b() {
9466         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9467         [ $MDSCOUNT -lt 2 ] &&
9468                 skip "skipping remote directory test" && return
9469         local MDTIDX=1
9470         local remote_dir=$DIR/$tdir/remote_dir
9471
9472         mkdir -p $DIR/$tdir
9473         $LFS mkdir -i $MDTIDX $remote_dir ||
9474                 error "create remote directory failed"
9475
9476         cp /etc/hosts $remote_dir/$tfile
9477         mkdir -p $remote_dir/foo1
9478         mkdir -p $remote_dir/foo2
9479         ln $remote_dir/$tfile $remote_dir/foo1/sofia
9480         ln $remote_dir/$tfile $remote_dir/foo2/zachary
9481         ln $remote_dir/$tfile $remote_dir/foo1/luna
9482         ln $remote_dir/$tfile $remote_dir/foo2/thor
9483
9484         local FID=$($LFS path2fid $remote_dir/$tfile | tr -d '[' |
9485                      tr -d ']')
9486         if [ "$($LFS fid2path $DIR $FID | wc -l)" != "5" ]; then
9487                 $LFS fid2path $DIR $FID
9488                 err17935 "bad link ea"
9489         fi
9490         # middle
9491         rm $remote_dir/foo2/zachary
9492         # last
9493         rm $remote_dir/foo2/thor
9494         # first
9495         rm $remote_dir/$tfile
9496         # rename
9497         mv $remote_dir/foo1/sofia $remote_dir/foo2/maggie
9498         local link_path=$($LFS fid2path $FSNAME --link 1 $FID)
9499         if [ "$DIR/$link_path" != "$remote_dir/foo2/maggie" ]; then
9500                 $LFS fid2path $DIR $FID
9501                 err17935 "bad link rename"
9502         fi
9503         rm $remote_dir/foo2/maggie
9504
9505         # overflow the EA
9506         local longname=filename_avg_len_is_thirty_two_
9507         createmany -l$remote_dir/foo1/luna $remote_dir/foo2/$longname 1000 ||
9508                 error "failed to hardlink many files"
9509         links=$($LFS fid2path $DIR $FID | wc -l)
9510         echo -n "${links}/1000 links in link EA"
9511         [ ${links} -gt 60 ] || err17935 "expected at least 60 links in link EA"
9512         unlinkmany $remote_dir/foo2/$longname 1000 ||
9513         error "failed to unlink many hardlinks"
9514 }
9515 run_test 161b "link ea sanity under remote directory"
9516
9517 test_161c() {
9518         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9519         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.1.5) ]] &&
9520                 skip "Need MDS version at least 2.1.5" && return
9521
9522         # define CLF_RENAME_LAST 0x0001
9523         # rename overwrite a target having nlink = 1 (changelog flag 0x1)
9524         local USER=$(do_facet $SINGLEMDS $LCTL --device $MDT0 \
9525                 changelog_register -n)
9526         rm -rf $DIR/$tdir
9527         mkdir -p $DIR/$tdir
9528         touch $DIR/$tdir/foo_161c
9529         touch $DIR/$tdir/bar_161c
9530         mv -f $DIR/$tdir/foo_161c $DIR/$tdir/bar_161c
9531         $LFS changelog $MDT0 | grep RENME
9532         local flags=$($LFS changelog $MDT0 | grep RENME | tail -1 | \
9533                 cut -f5 -d' ')
9534         $LFS changelog_clear $MDT0 $USER 0
9535         if [ x$flags != "x0x1" ]; then
9536                 do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister \
9537                         $USER
9538                 error "flag $flags is not 0x1"
9539         fi
9540         echo "rename overwrite a target having nlink = 1," \
9541                 "changelog record has flags of $flags"
9542
9543         # rename overwrite a target having nlink > 1 (changelog flag 0x0)
9544         touch $DIR/$tdir/foo_161c
9545         touch $DIR/$tdir/bar_161c
9546         ln $DIR/$tdir/bar_161c $DIR/$tdir/foobar_161c
9547         mv -f $DIR/$tdir/foo_161c $DIR/$tdir/bar_161c
9548         $LFS changelog $MDT0 | grep RENME
9549         flags=$($LFS changelog $MDT0 | grep RENME | tail -1 | cut -f5 -d' ')
9550         $LFS changelog_clear $MDT0 $USER 0
9551         if [ x$flags != "x0x0" ]; then
9552                 do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister \
9553                         $USER
9554                 error "flag $flags is not 0x0"
9555         fi
9556         echo "rename overwrite a target having nlink > 1," \
9557                 "changelog record has flags of $flags"
9558
9559         # rename doesn't overwrite a target (changelog flag 0x0)
9560         touch $DIR/$tdir/foo_161c
9561         mv -f $DIR/$tdir/foo_161c $DIR/$tdir/foo2_161c
9562         $LFS changelog $MDT0 | grep RENME
9563         flags=$($LFS changelog $MDT0 | grep RENME | tail -1 | cut -f5 -d' ')
9564         $LFS changelog_clear $MDT0 $USER 0
9565         if [ x$flags != "x0x0" ]; then
9566                 do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister \
9567                         $USER
9568                 error "flag $flags is not 0x0"
9569         fi
9570         echo "rename doesn't overwrite a target," \
9571                 "changelog record has flags of $flags"
9572
9573         # define CLF_UNLINK_LAST 0x0001
9574         # unlink a file having nlink = 1 (changelog flag 0x1)
9575         rm -f $DIR/$tdir/foo2_161c
9576         $LFS changelog $MDT0 | grep UNLNK
9577         flags=$($LFS changelog $MDT0 | grep UNLNK | tail -1 | cut -f5 -d' ')
9578         $LFS changelog_clear $MDT0 $USER 0
9579         if [ x$flags != "x0x1" ]; then
9580                 do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister \
9581                         $USER
9582                 error "flag $flags is not 0x1"
9583         fi
9584         echo "unlink a file having nlink = 1," \
9585                 "changelog record has flags of $flags"
9586
9587         # unlink a file having nlink > 1 (changelog flag 0x0)
9588         ln -f $DIR/$tdir/bar_161c $DIR/$tdir/foobar_161c
9589         rm -f $DIR/$tdir/foobar_161c
9590         $LFS changelog $MDT0 | grep UNLNK
9591         flags=$($LFS changelog $MDT0 | grep UNLNK | tail -1 | cut -f5 -d' ')
9592         $LFS changelog_clear $MDT0 $USER 0
9593         if [ x$flags != "x0x0" ]; then
9594                 do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister \
9595                         $USER
9596                 error "flag $flags is not 0x0"
9597         fi
9598         echo "unlink a file having nlink > 1," \
9599                 "changelog record has flags of $flags"
9600         do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister $USER
9601 }
9602 run_test 161c "check CL_RENME[UNLINK] changelog record flags"
9603
9604 check_path() {
9605     local expected=$1
9606     shift
9607     local fid=$2
9608
9609     local path=$(${LFS} fid2path $*)
9610     RC=$?
9611
9612     if [ $RC -ne 0 ]; then
9613         err17935 "path looked up of $expected failed. Error $RC"
9614         return $RC
9615     elif [ "${path}" != "${expected}" ]; then
9616         err17935 "path looked up \"${path}\" instead of \"${expected}\""
9617         return 2
9618     fi
9619     echo "fid $fid resolves to path $path (expected $expected)"
9620 }
9621
9622 test_162() {
9623         # Make changes to filesystem
9624         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9625         test_mkdir -p $DIR/$tdir/d2
9626         touch $DIR/$tdir/d2/$tfile
9627         touch $DIR/$tdir/d2/x1
9628         touch $DIR/$tdir/d2/x2
9629         test_mkdir -p $DIR/$tdir/d2/a/b/c
9630         test_mkdir -p $DIR/$tdir/d2/p/q/r
9631         # regular file
9632         FID=$($LFS path2fid $DIR/$tdir/d2/$tfile | tr -d '[]')
9633         check_path "$tdir/d2/$tfile" $FSNAME $FID --link 0
9634
9635         # softlink
9636         ln -s $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/p/q/r/slink
9637         FID=$($LFS path2fid $DIR/$tdir/d2/p/q/r/slink | tr -d '[]')
9638         check_path "$tdir/d2/p/q/r/slink" $FSNAME $FID --link 0
9639
9640         # softlink to wrong file
9641         ln -s /this/is/garbage $DIR/$tdir/d2/p/q/r/slink.wrong
9642         FID=$($LFS path2fid $DIR/$tdir/d2/p/q/r/slink.wrong | tr -d '[]')
9643         check_path "$tdir/d2/p/q/r/slink.wrong" $FSNAME $FID --link 0
9644
9645         # hardlink
9646         ln $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/p/q/r/hlink
9647         mv $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/a/b/c/new_file
9648         FID=$($LFS path2fid $DIR/$tdir/d2/a/b/c/new_file | tr -d '[]')
9649         # fid2path dir/fsname should both work
9650         check_path "$tdir/d2/a/b/c/new_file" $FSNAME $FID --link 1
9651         check_path "$DIR/$tdir/d2/p/q/r/hlink" $DIR $FID --link 0
9652
9653         # hardlink count: check that there are 2 links
9654         # Doesnt work with CMD yet: 17935
9655         ${LFS} fid2path $DIR $FID | wc -l | grep -q 2 || \
9656                 err17935 "expected 2 links"
9657
9658         # hardlink indexing: remove the first link
9659         rm $DIR/$tdir/d2/p/q/r/hlink
9660         check_path "$tdir/d2/a/b/c/new_file" $FSNAME $FID --link 0
9661
9662         return 0
9663 }
9664 run_test 162 "path lookup sanity"
9665
9666 test_169() {
9667         # do directio so as not to populate the page cache
9668         log "creating a 10 Mb file"
9669         $MULTIOP $DIR/$tfile oO_CREAT:O_DIRECT:O_RDWR:w$((10*1048576))c || error "multiop failed while creating a file"
9670         log "starting reads"
9671         dd if=$DIR/$tfile of=/dev/null bs=4096 &
9672         log "truncating the file"
9673         $MULTIOP $DIR/$tfile oO_TRUNC:c || error "multiop failed while truncating the file"
9674         log "killing dd"
9675         kill %+ || true # reads might have finished
9676         echo "wait until dd is finished"
9677         wait
9678         log "removing the temporary file"
9679         rm -rf $DIR/$tfile || error "tmp file removal failed"
9680 }
9681 run_test 169 "parallel read and truncate should not deadlock"
9682
9683 test_170() {
9684         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9685         $LCTL clear     # bug 18514
9686         $LCTL debug_daemon start $TMP/${tfile}_log_good
9687         touch $DIR/$tfile
9688         $LCTL debug_daemon stop
9689         sed -e "s/^...../a/g" $TMP/${tfile}_log_good > $TMP/${tfile}_log_bad ||
9690                error "sed failed to read log_good"
9691
9692         $LCTL debug_daemon start $TMP/${tfile}_log_good
9693         rm -rf $DIR/$tfile
9694         $LCTL debug_daemon stop
9695
9696         $LCTL df $TMP/${tfile}_log_bad > $TMP/${tfile}_log_bad.out 2>&1 ||
9697                error "lctl df log_bad failed"
9698
9699         local bad_line=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $9}')
9700         local good_line1=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $5}')
9701
9702         $LCTL df $TMP/${tfile}_log_good > $TMP/${tfile}_log_good.out 2>&1
9703         local good_line2=$(tail -n 1 $TMP/${tfile}_log_good.out | awk '{print $5}')
9704
9705         [ "$bad_line" ] && [ "$good_line1" ] && [ "$good_line2" ] ||
9706                 error "bad_line good_line1 good_line2 are empty"
9707
9708         cat $TMP/${tfile}_log_good >> $TMP/${tfile}_logs_corrupt
9709         cat $TMP/${tfile}_log_bad >> $TMP/${tfile}_logs_corrupt
9710         cat $TMP/${tfile}_log_good >> $TMP/${tfile}_logs_corrupt
9711
9712         $LCTL df $TMP/${tfile}_logs_corrupt > $TMP/${tfile}_log_bad.out 2>&1
9713         local bad_line_new=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $9}')
9714         local good_line_new=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $5}')
9715
9716         [ "$bad_line_new" ] && [ "$good_line_new" ] ||
9717                 error "bad_line_new good_line_new are empty"
9718
9719         local expected_good=$((good_line1 + good_line2*2))
9720
9721         rm -f $TMP/${tfile}*
9722         # LU-231, short malformed line may not be counted into bad lines
9723         if [ $bad_line -ne $bad_line_new ] &&
9724                    [ $bad_line -ne $((bad_line_new - 1)) ]; then
9725                 error "expected $bad_line bad lines, but got $bad_line_new"
9726                 return 1
9727         fi
9728
9729         if [ $expected_good -ne $good_line_new ]; then
9730                 error "expected $expected_good good lines, but got $good_line_new"
9731                 return 2
9732         fi
9733         true
9734 }
9735 run_test 170 "test lctl df to handle corrupted log ====================="
9736
9737 test_171() { # bug20592
9738         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9739 #define OBD_FAIL_PTLRPC_DUMP_LOG         0x50e
9740         $LCTL set_param fail_loc=0x50e
9741         $LCTL set_param fail_val=3000
9742         multiop_bg_pause $DIR/$tfile O_s || true
9743         local MULTIPID=$!
9744         kill -USR1 $MULTIPID
9745         # cause log dump
9746         sleep 3
9747         wait $MULTIPID
9748         if dmesg | grep "recursive fault"; then
9749                 error "caught a recursive fault"
9750         fi
9751         $LCTL set_param fail_loc=0
9752         true
9753 }
9754 run_test 171 "test libcfs_debug_dumplog_thread stuck in do_exit() ======"
9755
9756 # it would be good to share it with obdfilter-survey/libecho code
9757 setup_obdecho_osc () {
9758         local rc=0
9759         local ost_nid=$1
9760         local obdfilter_name=$2
9761         echo "Creating new osc for $obdfilter_name on $ost_nid"
9762         # make sure we can find loopback nid
9763         $LCTL add_uuid $ost_nid $ost_nid >/dev/null 2>&1
9764
9765         [ $rc -eq 0 ] && { $LCTL attach osc ${obdfilter_name}_osc     \
9766                            ${obdfilter_name}_osc_UUID || rc=2; }
9767         [ $rc -eq 0 ] && { $LCTL --device ${obdfilter_name}_osc setup \
9768                            ${obdfilter_name}_UUID  $ost_nid || rc=3; }
9769         return $rc
9770 }
9771
9772 cleanup_obdecho_osc () {
9773         local obdfilter_name=$1
9774         $LCTL --device ${obdfilter_name}_osc cleanup >/dev/null
9775         $LCTL --device ${obdfilter_name}_osc detach  >/dev/null
9776         return 0
9777 }
9778
9779 obdecho_test() {
9780         local OBD=$1
9781         local node=$2
9782         local pages=${3:-64}
9783         local rc=0
9784         local id
9785         do_facet $node "$LCTL attach echo_client ec ec_uuid" || rc=1
9786         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec setup $OBD" ||
9787                            rc=2; }
9788         if [ $rc -eq 0 ]; then
9789             id=$(do_facet $node "$LCTL --device ec create 1"  | awk '/object id/ {print $6}')
9790             [ ${PIPESTATUS[0]} -eq 0 -a -n "$id" ] || rc=3
9791         fi
9792         echo "New object id is $id"
9793         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec getattr $id" ||
9794                            rc=4; }
9795         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec "                 \
9796                            "test_brw 10 w v $pages $id" || rc=4; }
9797         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec destroy $id 1" ||
9798                            rc=4; }
9799         [ $rc -eq 0 -o $rc -gt 2 ] && { do_facet $node "$LCTL --device ec "    \
9800                                         "cleanup" || rc=5; }
9801         [ $rc -eq 0 -o $rc -gt 1 ] && { do_facet $node "$LCTL --device ec "    \
9802                                         "detach" || rc=6; }
9803         [ $rc -ne 0 ] && echo "obecho_create_test failed: $rc"
9804         return $rc
9805 }
9806
9807 test_180a() {
9808         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9809         remote_ost_nodsh && skip "remote OST with nodsh" && return
9810         local rc=0
9811         local rmmod_local=0
9812
9813         if ! module_loaded obdecho; then
9814             load_module obdecho/obdecho
9815             rmmod_local=1
9816         fi
9817
9818         local osc=$($LCTL dl | grep -v mdt | awk '$3 == "osc" {print $4; exit}')
9819         local host=$(lctl get_param -n osc.$osc.import |
9820                              awk '/current_connection:/ {print $2}' )
9821         local target=$(lctl get_param -n osc.$osc.import |
9822                              awk '/target:/ {print $2}' )
9823         target=${target%_UUID}
9824
9825         [[ -n $target ]]  && { setup_obdecho_osc $host $target || rc=1; } || rc=1
9826         [ $rc -eq 0 ] && { obdecho_test ${target}_osc client || rc=2; }
9827         [[ -n $target ]] && cleanup_obdecho_osc $target
9828         [ $rmmod_local -eq 1 ] && rmmod obdecho
9829         return $rc
9830 }
9831 run_test 180a "test obdecho on osc"
9832
9833 test_180b() {
9834         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9835         remote_ost_nodsh && skip "remote OST with nodsh" && return
9836         local rc=0
9837         local rmmod_remote=0
9838
9839         do_facet ost1 "lsmod | grep -q obdecho || "                      \
9840                       "{ insmod ${LUSTRE}/obdecho/obdecho.ko || "        \
9841                       "modprobe obdecho; }" && rmmod_remote=1
9842         target=$(do_facet ost1 $LCTL dl | awk '/obdfilter/ {print $4;exit}')
9843         [[ -n $target ]] && { obdecho_test $target ost1 || rc=1; }
9844         [ $rmmod_remote -eq 1 ] && do_facet ost1 "rmmod obdecho"
9845         return $rc
9846 }
9847 run_test 180b "test obdecho directly on obdfilter"
9848
9849 test_180c() { # LU-2598
9850         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9851         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.0) ]] &&
9852                 skip "Need MDS version at least 2.4.0" && return
9853
9854         local rc=0
9855         local rmmod_remote=false
9856         local pages=16384 # 64MB bulk I/O RPC size
9857         local target
9858
9859         do_rpc_nodes $(facet_active_host ost1) load_module obdecho/obdecho &&
9860                 rmmod_remote=true || error "failed to load module obdecho"
9861
9862         target=$(do_facet ost1 $LCTL dl | awk '/obdfilter/ {print $4}'|head -1)
9863         if [[ -n $target ]]; then
9864                 obdecho_test "$target" ost1 "$pages" ||
9865                         rc=${PIPESTATUS[0]}
9866         else
9867                 echo "there is no obdfilter target on ost1"
9868                 rc=2
9869         fi
9870         $rmmod_remote && do_facet ost1 "rmmod obdecho" || true
9871         return $rc
9872 }
9873 run_test 180c "test huge bulk I/O size on obdfilter, don't LASSERT"
9874
9875 test_181() { # bug 22177
9876         test_mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
9877         # create enough files to index the directory
9878         createmany -o $DIR/$tdir/foobar 4000
9879         # print attributes for debug purpose
9880         lsattr -d .
9881         # open dir
9882         multiop_bg_pause $DIR/$tdir D_Sc || return 1
9883         MULTIPID=$!
9884         # remove the files & current working dir
9885         unlinkmany $DIR/$tdir/foobar 4000
9886         rmdir $DIR/$tdir
9887         kill -USR1 $MULTIPID
9888         wait $MULTIPID
9889         stat $DIR/$tdir && error "open-unlinked dir was not removed!"
9890         return 0
9891 }
9892 run_test 181 "Test open-unlinked dir ========================"
9893
9894 test_182() {
9895         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9896         # disable MDC RPC lock wouldn't crash client
9897         local fcount=1000
9898         local tcount=4
9899
9900         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
9901 #define OBD_FAIL_MDC_RPCS_SEM           0x804
9902         $LCTL set_param fail_loc=0x804
9903
9904         for (( i=0; i < $tcount; i++ )) ; do
9905                 mkdir $DIR/$tdir/$i
9906                 createmany -o $DIR/$tdir/$i/f- $fcount &
9907         done
9908         wait
9909
9910         for (( i=0; i < $tcount; i++ )) ; do
9911                 unlinkmany $DIR/$tdir/$i/f- $fcount &
9912         done
9913         wait
9914
9915         rm -rf $DIR/$tdir
9916
9917         $LCTL set_param fail_loc=0
9918 }
9919 run_test 182 "Disable MDC RPCs semaphore wouldn't crash client ================"
9920
9921 test_183() { # LU-2275
9922         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.56) ]] &&
9923                 skip "Need MDS version at least 2.3.56" && return
9924
9925         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9926         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
9927         echo aaa > $DIR/$tdir/$tfile
9928
9929 #define OBD_FAIL_MDS_NEGATIVE_POSITIVE  0x148
9930         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x148
9931
9932         ls -l $DIR/$tdir && error "ls succeeded, should have failed"
9933         cat $DIR/$tdir/$tfile && error "cat succeeded, should have failed"
9934
9935         do_facet $SINGLEMDS $LCTL set_param fail_loc=0
9936
9937         # Flush negative dentry cache
9938         touch $DIR/$tdir/$tfile
9939
9940         # We are not checking for any leaked references here, they'll
9941         # become evident next time we do cleanup with module unload.
9942         rm -rf $DIR/$tdir
9943 }
9944 run_test 183 "No crash or request leak in case of strange dispositions ========"
9945
9946 # test suite 184 is for LU-2016, LU-2017
9947 test_184a() {
9948         check_swap_layouts_support && return 0
9949
9950         dir0=$DIR/$tdir/$testnum
9951         test_mkdir -p $dir0 || error "creating dir $dir0"
9952         ref1=/etc/passwd
9953         ref2=/etc/group
9954         file1=$dir0/f1
9955         file2=$dir0/f2
9956         $SETSTRIPE -c1 $file1
9957         cp $ref1 $file1
9958         $SETSTRIPE -c2 $file2
9959         cp $ref2 $file2
9960         gen1=$($GETSTRIPE -g $file1)
9961         gen2=$($GETSTRIPE -g $file2)
9962
9963         $LFS swap_layouts $file1 $file2 || error "swap of file layout failed"
9964         gen=$($GETSTRIPE -g $file1)
9965         [[ $gen1 != $gen ]] ||
9966                 "Layout generation on $file1 does not change"
9967         gen=$($GETSTRIPE -g $file2)
9968         [[ $gen2 != $gen ]] ||
9969                 "Layout generation on $file2 does not change"
9970
9971         cmp $ref1 $file2 || error "content compare failed ($ref1 != $file2)"
9972         cmp $ref2 $file1 || error "content compare failed ($ref2 != $file1)"
9973 }
9974 run_test 184a "Basic layout swap"
9975
9976 test_184b() {
9977         check_swap_layouts_support && return 0
9978
9979         dir0=$DIR/$tdir/$testnum
9980         mkdir -p $dir0 || error "creating dir $dir0"
9981         file1=$dir0/f1
9982         file2=$dir0/f2
9983         file3=$dir0/f3
9984         dir1=$dir0/d1
9985         dir2=$dir0/d2
9986         mkdir $dir1 $dir2
9987         $SETSTRIPE -c1 $file1
9988         $SETSTRIPE -c2 $file2
9989         $SETSTRIPE -c1 $file3
9990         chown $RUNAS_ID $file3
9991         gen1=$($GETSTRIPE -g $file1)
9992         gen2=$($GETSTRIPE -g $file2)
9993
9994         $LFS swap_layouts $dir1 $dir2 &&
9995                 error "swap of directories layouts should fail"
9996         $LFS swap_layouts $dir1 $file1 &&
9997                 error "swap of directory and file layouts should fail"
9998         $RUNAS $LFS swap_layouts $file1 $file2 &&
9999                 error "swap of file we cannot write should fail"
10000         $LFS swap_layouts $file1 $file3 &&
10001                 error "swap of file with different owner should fail"
10002         /bin/true # to clear error code
10003 }
10004 run_test 184b "Forbidden layout swap (will generate errors)"
10005
10006 test_184c() {
10007         check_swap_layouts_support && return 0
10008
10009         local dir0=$DIR/$tdir/$testnum
10010         mkdir -p $dir0 || error "creating dir $dir0"
10011
10012         local ref1=$dir0/ref1
10013         local ref2=$dir0/ref2
10014         local file1=$dir0/file1
10015         local file2=$dir0/file2
10016         # create a file large enough for the concurent test
10017         dd if=/dev/urandom of=$ref1 bs=1M count=$((RANDOM % 50 + 20))
10018         dd if=/dev/urandom of=$ref2 bs=1M count=$((RANDOM % 50 + 20))
10019         echo "ref file size: ref1(`stat -c %s $ref1`), ref2(`stat -c %s $ref2`)"
10020
10021         cp $ref2 $file2
10022         dd if=$ref1 of=$file1 bs=16k &
10023         local DD_PID=$!
10024
10025         # Make sure dd starts to copy file
10026         while [ ! -f $file1 ]; do sleep 0.1; done
10027
10028         $LFS swap_layouts $file1 $file2
10029         local rc=$?
10030         wait $DD_PID
10031         [[ $? == 0 ]] || error "concurrent write on $file1 failed"
10032         [[ $rc == 0 ]] || error "swap of $file1 and $file2 failed"
10033
10034         # how many bytes copied before swapping layout
10035         local copied=`stat -c %s $file2`
10036         local remaining=`stat -c %s $ref1`
10037         remaining=$((remaining - copied))
10038         echo "Copied $copied bytes before swapping layout..."
10039
10040         cmp -n $copied $file1 $ref2 | grep differ &&
10041                 error "Content mismatch [0, $copied) of ref2 and file1"
10042         cmp -n $copied $file2 $ref1 ||
10043                 error "Content mismatch [0, $copied) of ref1 and file2"
10044         cmp -i $copied:$copied -n $remaining $file1 $ref1 ||
10045                 error "Content mismatch [$copied, EOF) of ref1 and file1"
10046
10047         # clean up
10048         rm -f $ref1 $ref2 $file1 $file2
10049 }
10050 run_test 184c "Concurrent write and layout swap"
10051
10052 test_184d() {
10053         check_swap_layouts_support && return 0
10054
10055         local file1=$DIR/$tdir/$tfile-1
10056         local file2=$DIR/$tdir/$tfile-2
10057         local file3=$DIR/$tdir/$tfile-3
10058         local lovea1
10059         local lovea2
10060
10061         mkdir -p $DIR/$tdir
10062         touch $file1 || error "create $file1 failed"
10063         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file2 ||
10064                 error "create $file2 failed"
10065         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file3 ||
10066                 error "create $file3 failed"
10067         lovea1=$($LFS getstripe $file1 | sed 1d)
10068
10069         $LFS swap_layouts $file2 $file3 ||
10070                 error "swap $file2 $file3 layouts failed"
10071         $LFS swap_layouts $file1 $file2 ||
10072                 error "swap $file1 $file2 layouts failed"
10073
10074         lovea2=$($LFS getstripe $file2 | sed 1d)
10075         [ "$lovea1" == "$lovea2" ] || error "lovea $lovea1 != $lovea2"
10076
10077         lovea1=$(getfattr -n trusted.lov $file1 | grep ^trusted)
10078         [ -z $lovea1 ] || error "$file1 shouldn't have lovea"
10079 }
10080 run_test 184d "allow stripeless layouts swap"
10081
10082
10083 test_185() { # LU-2441
10084         # LU-3553 - no volatile file support in old servers
10085         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.60) ]] ||
10086                 { skip "Need MDS version at least 2.3.60"; return 0; }
10087
10088         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
10089         touch $DIR/$tdir/spoo
10090         local mtime1=$(stat -c "%Y" $DIR/$tdir)
10091         local fid=$($MULTIOP $DIR/$tdir VFw4096c) ||
10092                 error "cannot create/write a volatile file"
10093         $CHECKSTAT -t file $MOUNT/.lustre/fid/$fid 2>/dev/null &&
10094                 error "FID is still valid after close"
10095
10096         multiop_bg_pause $DIR/$tdir vVw4096_c
10097         local multi_pid=$!
10098
10099         local OLD_IFS=$IFS
10100         IFS=":"
10101         local fidv=($fid)
10102         IFS=$OLD_IFS
10103         # assume that the next FID for this client is sequential, since stdout
10104         # is unfortunately eaten by multiop_bg_pause
10105         local n=$((${fidv[1]} + 1))
10106         local next_fid="${fidv[0]}:$(printf "0x%x" $n):${fidv[2]}"
10107         $CHECKSTAT -t file $MOUNT/.lustre/fid/$next_fid ||
10108                 error "FID is missing before close"
10109         kill -USR1 $multi_pid
10110         # 1 second delay, so if mtime change we will see it
10111         sleep 1
10112         local mtime2=$(stat -c "%Y" $DIR/$tdir)
10113         [[ $mtime1 == $mtime2 ]] || error "mtime has changed"
10114 }
10115 run_test 185 "Volatile file support"
10116
10117 test_187a() {
10118         local dir0=$DIR/$tdir/$testnum
10119         mkdir -p $dir0 || error "creating dir $dir0"
10120
10121         local file=$dir0/file1
10122         dd if=/dev/urandom of=$file count=10 bs=1M conv=fsync
10123         local dv1=$($LFS data_version $file)
10124         dd if=/dev/urandom of=$file seek=10 count=1 bs=1M conv=fsync
10125         local dv2=$($LFS data_version $file)
10126         [[ $dv1 != $dv2 ]] ||
10127                 error "data version did not change on write $dv1 == $dv2"
10128
10129         # clean up
10130         rm -f $file1
10131 }
10132 run_test 187a "Test data version change"
10133
10134 test_187b() {
10135         local dir0=$DIR/$tdir/$testnum
10136         mkdir -p $dir0 || error "creating dir $dir0"
10137
10138         declare -a DV=$($MULTIOP $dir0 Vw1000xYw1000xY | cut -f3 -d" ")
10139         [[ ${DV[0]} != ${DV[1]} ]] ||
10140                 error "data version did not change on write"\
10141                       " ${DV[0]} == ${DV[1]}"
10142
10143         # clean up
10144         rm -f $file1
10145 }
10146 run_test 187b "Test data version change on volatile file"
10147
10148 # OST pools tests
10149 check_file_in_pool()
10150 {
10151         local file=$1
10152         local pool=$2
10153         local tlist="$3"
10154         local res=$($GETSTRIPE $file | grep 0x | cut -f2)
10155         for i in $res
10156         do
10157                 for t in $tlist ; do
10158                         [ "$i" -eq "$t" ] && continue 2
10159                 done
10160
10161                 echo "pool list: $tlist"
10162                 echo "striping: $res"
10163                 error_noexit "$file not allocated in $pool"
10164                 return 1
10165         done
10166         return 0
10167 }
10168
10169 pool_add() {
10170         echo "Creating new pool"
10171         local pool=$1
10172
10173         create_pool $FSNAME.$pool ||
10174                 { error_noexit "No pool created, result code $?"; return 1; }
10175         [ $($LFS pool_list $FSNAME | grep -c $pool) -eq 1 ] ||
10176                 { error_noexit "$pool not in lfs pool_list"; return 2; }
10177 }
10178
10179 pool_add_targets() {
10180         echo "Adding targets to pool"
10181         local pool=$1
10182         local first=$2
10183         local last=$3
10184         local step=${4:-1}
10185
10186         local list=$(seq $first $step $last)
10187
10188         local t=$(for i in $list; do printf "$FSNAME-OST%04x_UUID " $i; done)
10189         do_facet mgs $LCTL pool_add \
10190                         $FSNAME.$pool $FSNAME-OST[$first-$last/$step]
10191         wait_update $HOSTNAME "lctl get_param -n lov.$FSNAME-*.pools.$pool \
10192                         | sort -u | tr '\n' ' ' " "$t" || { 
10193                 error_noexit "Add to pool failed"
10194                 return 1
10195         }
10196         local lfscount=$($LFS pool_list $FSNAME.$pool | grep -c "\-OST")
10197         local addcount=$(((last - first) / step + 1))
10198         [ $lfscount -eq $addcount ] || {
10199                 error_noexit "lfs pool_list bad ost count" \
10200                                                 "$lfscount != $addcount"
10201                 return 2
10202         }
10203 }
10204
10205 pool_set_dir() {
10206         local pool=$1
10207         local tdir=$2
10208         echo "Setting pool on directory $tdir"
10209
10210         $SETSTRIPE -c 2 -p $pool $tdir && return 0
10211
10212         error_noexit "Cannot set pool $pool to $tdir"
10213         return 1
10214 }
10215
10216 pool_check_dir() {
10217         local pool=$1
10218         local tdir=$2
10219         echo "Checking pool on directory $tdir"
10220
10221         local res=$($GETSTRIPE --pool $tdir | sed "s/\s*$//")
10222         [ "$res" = "$pool" ] && return 0
10223
10224         error_noexit "Pool on '$tdir' is '$res', not '$pool'"
10225         return 1
10226 }
10227
10228 pool_dir_rel_path() {
10229         echo "Testing relative path works well"
10230         local pool=$1
10231         local tdir=$2
10232         local root=$3
10233
10234         mkdir -p $root/$tdir/$tdir
10235         cd $root/$tdir
10236         pool_set_dir $pool $tdir          || return 1
10237         pool_set_dir $pool ./$tdir        || return 2
10238         pool_set_dir $pool ../$tdir       || return 3
10239         pool_set_dir $pool ../$tdir/$tdir || return 4
10240         rm -rf $tdir; cd - > /dev/null
10241 }
10242
10243 pool_alloc_files() {
10244         echo "Checking files allocation from directory pool"
10245         local pool=$1
10246         local tdir=$2
10247         local count=$3
10248         local tlist="$4"
10249
10250         local failed=0
10251         for i in $(seq -w 1 $count)
10252         do
10253                 local file=$tdir/file-$i
10254                 touch $file
10255                 check_file_in_pool $file $pool "$tlist" || \
10256                         failed=$((failed + 1))
10257         done
10258         [ "$failed" = 0 ] && return 0
10259
10260         error_noexit "$failed files not allocated in $pool"
10261         return 1
10262 }
10263
10264 pool_create_files() {
10265         echo "Creating files in pool"
10266         local pool=$1
10267         local tdir=$2
10268         local count=$3
10269         local tlist="$4"
10270
10271         mkdir -p $tdir
10272         local failed=0
10273         for i in $(seq -w 1 $count)
10274         do
10275                 local file=$tdir/spoo-$i
10276                 $SETSTRIPE -p $pool $file
10277                 check_file_in_pool $file $pool "$tlist" || \
10278                         failed=$((failed + 1))
10279         done
10280         [ "$failed" = 0 ] && return 0
10281
10282         error_noexit "$failed files not allocated in $pool"
10283         return 1
10284 }
10285
10286 pool_lfs_df() {
10287         echo "Checking 'lfs df' output"
10288         local pool=$1
10289
10290         local t=$($LCTL get_param -n lov.$FSNAME-clilov-*.pools.$pool |
10291                         tr '\n' ' ')
10292         local res=$($LFS df --pool $FSNAME.$pool |
10293                         awk '{print $1}' |
10294                         grep "$FSNAME-OST" |
10295                         tr '\n' ' ')
10296         [ "$res" = "$t" ] && return 0
10297
10298         error_noexit "Pools OSTs '$t' is not '$res' that lfs df reports"
10299         return 1
10300 }
10301
10302 pool_file_rel_path() {
10303         echo "Creating files in a pool with relative pathname"
10304         local pool=$1
10305         local tdir=$2
10306
10307         mkdir -p $tdir ||
10308                 { error_noexit "unable to create $tdir"; return 1 ; }
10309         local file="/..$tdir/$tfile-1"
10310         $SETSTRIPE -p $pool $file ||
10311                 { error_noexit "unable to create $file" ; return 2 ; }
10312
10313         cd $tdir
10314         $SETSTRIPE -p $pool $tfile-2 || {
10315                 error_noexit "unable to create $tfile-2 in $tdir"
10316                 return 3
10317         }
10318 }
10319
10320 pool_remove_first_target() {
10321         echo "Removing first target from a pool"
10322         local pool=$1
10323
10324         local pname="lov.$FSNAME-*.pools.$pool"
10325         local t=$($LCTL get_param -n $pname | head -1)
10326         do_facet mgs $LCTL pool_remove $FSNAME.$pool $t
10327         wait_update $HOSTNAME "lctl get_param -n $pname | grep $t" "" || {
10328                 error_noexit "$t not removed from $FSNAME.$pool"
10329                 return 1
10330         }
10331 }
10332
10333 pool_remove_all_targets() {
10334         echo "Removing all targets from pool"
10335         local pool=$1
10336         local file=$2
10337         local pname="lov.$FSNAME-*.pools.$pool"
10338         for t in $($LCTL get_param -n $pname | sort -u)
10339         do
10340                 do_facet mgs $LCTL pool_remove $FSNAME.$pool $t
10341         done
10342         wait_update $HOSTNAME "lctl get_param -n $pname" "" || {
10343                 error_noexit "Pool $FSNAME.$pool cannot be drained"
10344                 return 1
10345         }
10346         # striping on an empty/nonexistant pool should fall back 
10347         # to "pool of everything"
10348         touch $file || {
10349                 error_noexit "failed to use fallback striping for empty pool"
10350                 return 2
10351         }
10352         # setstripe on an empty pool should fail
10353         $SETSTRIPE -p $pool $file 2>/dev/null && {
10354                 error_noexit "expected failure when creating file" \
10355                                                         "with empty pool"
10356                 return 3
10357         }
10358         return 0
10359 }
10360
10361 pool_remove() {
10362         echo "Destroying pool"
10363         local pool=$1
10364         local file=$2
10365
10366         do_facet mgs $LCTL pool_destroy $FSNAME.$pool
10367
10368         sleep 2
10369         # striping on an empty/nonexistant pool should fall back 
10370         # to "pool of everything"
10371         touch $file || {
10372                 error_noexit "failed to use fallback striping for missing pool"
10373                 return 1
10374         }
10375         # setstripe on an empty pool should fail
10376         $SETSTRIPE -p $pool $file 2>/dev/null && {
10377                 error_noexit "expected failure when creating file" \
10378                                                         "with missing pool"
10379                 return 2
10380         }
10381
10382         # get param should return err once pool is gone
10383         if wait_update $HOSTNAME "lctl get_param -n \
10384                 lov.$FSNAME-*.pools.$pool 2>/dev/null || echo foo" "foo"
10385         then
10386                 remove_pool_from_list $FSNAME.$pool
10387                 return 0
10388         fi
10389         error_noexit "Pool $FSNAME.$pool is not destroyed"
10390         return 3
10391 }
10392
10393 test_200() {
10394         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10395         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
10396
10397         local POOL=${POOL:-cea1}
10398         local POOL_ROOT=${POOL_ROOT:-$DIR/d200.pools}
10399         local POOL_DIR_NAME=${POOL_DIR_NAME:-dir_tst}
10400         # Pool OST targets
10401         local first_ost=0
10402         local last_ost=$(($OSTCOUNT - 1))
10403         local ost_step=2
10404         local ost_list=$(seq $first_ost $ost_step $last_ost)
10405         local ost_range="$first_ost $last_ost $ost_step"
10406         local test_path=$POOL_ROOT/$POOL_DIR_NAME
10407         local file_dir=$POOL_ROOT/file_tst
10408
10409         local rc=0
10410         while : ; do
10411                 # former test_200a test_200b
10412                 pool_add $POOL                          || { rc=$? ; break; }
10413                 pool_add_targets  $POOL $ost_range      || { rc=$? ; break; }
10414                 # former test_200c test_200d
10415                 mkdir -p $test_path
10416                 pool_set_dir      $POOL $test_path      || { rc=$? ; break; }
10417                 pool_check_dir    $POOL $test_path      || { rc=$? ; break; }
10418                 pool_dir_rel_path $POOL $POOL_DIR_NAME $POOL_ROOT \
10419                                                         || { rc=$? ; break; }
10420                 # former test_200e test_200f
10421                 local files=$((OSTCOUNT*3))
10422                 pool_alloc_files  $POOL $test_path $files "$ost_list" \
10423                                                         || { rc=$? ; break; }
10424                 pool_create_files $POOL $file_dir $files "$ost_list" \
10425                                                         || { rc=$? ; break; }
10426                 # former test_200g test_200h
10427                 pool_lfs_df $POOL                       || { rc=$? ; break; }
10428                 pool_file_rel_path $POOL $test_path     || { rc=$? ; break; }
10429
10430                 # former test_201a test_201b test_201c
10431                 pool_remove_first_target $POOL          || { rc=$? ; break; }
10432
10433                 local f=$test_path/$tfile
10434                 pool_remove_all_targets $POOL $f        || { rc=$? ; break; }
10435                 pool_remove $POOL $f                    || { rc=$? ; break; }
10436                 break
10437         done
10438
10439         cleanup_pools
10440         return $rc
10441 }
10442 run_test 200 "OST pools"
10443
10444 # usage: default_attr <count | size | offset>
10445 default_attr() {
10446         $LCTL get_param -n lov.$FSNAME-clilov-\*.stripe${1}
10447 }
10448
10449 # usage: check_default_stripe_attr
10450 check_default_stripe_attr() {
10451         ACTUAL=$($GETSTRIPE $* $DIR/$tdir)
10452         case $1 in
10453         --stripe-count|--count)
10454                 [ -n "$2" ] && EXPECTED=0 || EXPECTED=$(default_attr count);;
10455         --stripe-size|--size)
10456                 [ -n "$2" ] && EXPECTED=0 || EXPECTED=$(default_attr size);;
10457         --stripe-index|--index)
10458                 EXPECTED=-1;;
10459         *)
10460                 error "unknown getstripe attr '$1'"
10461         esac
10462
10463         [ $ACTUAL != $EXPECTED ] &&
10464                 error "$DIR/$tdir has $1 '$ACTUAL', not '$EXPECTED'"
10465 }
10466
10467 test_204a() {
10468         test_mkdir -p $DIR/$tdir
10469         $SETSTRIPE --stripe-count 0 --stripe-size 0 --stripe-index -1 $DIR/$tdir
10470
10471         check_default_stripe_attr --stripe-count
10472         check_default_stripe_attr --stripe-size
10473         check_default_stripe_attr --stripe-index
10474
10475         return 0
10476 }
10477 run_test 204a "Print default stripe attributes ================="
10478
10479 test_204b() {
10480         test_mkdir -p $DIR/$tdir
10481         $SETSTRIPE --stripe-count 1 $DIR/$tdir
10482
10483         check_default_stripe_attr --stripe-size
10484         check_default_stripe_attr --stripe-index
10485
10486         return 0
10487 }
10488 run_test 204b "Print default stripe size and offset  ==========="
10489
10490 test_204c() {
10491         test_mkdir -p $DIR/$tdir
10492         $SETSTRIPE --stripe-size 65536 $DIR/$tdir
10493
10494         check_default_stripe_attr --stripe-count
10495         check_default_stripe_attr --stripe-index
10496
10497         return 0
10498 }
10499 run_test 204c "Print default stripe count and offset ==========="
10500
10501 test_204d() {
10502         test_mkdir -p $DIR/$tdir
10503         $SETSTRIPE --stripe-index 0 $DIR/$tdir
10504
10505         check_default_stripe_attr --stripe-count
10506         check_default_stripe_attr --stripe-size
10507
10508         return 0
10509 }
10510 run_test 204d "Print default stripe count and size ============="
10511
10512 test_204e() {
10513         test_mkdir -p $DIR/$tdir
10514         $SETSTRIPE -d $DIR/$tdir
10515
10516         check_default_stripe_attr --stripe-count --raw
10517         check_default_stripe_attr --stripe-size --raw
10518         check_default_stripe_attr --stripe-index --raw
10519
10520         return 0
10521 }
10522 run_test 204e "Print raw stripe attributes ================="
10523
10524 test_204f() {
10525         test_mkdir -p $DIR/$tdir
10526         $SETSTRIPE --stripe-count 1 $DIR/$tdir
10527
10528         check_default_stripe_attr --stripe-size --raw
10529         check_default_stripe_attr --stripe-index --raw
10530
10531         return 0
10532 }
10533 run_test 204f "Print raw stripe size and offset  ==========="
10534
10535 test_204g() {
10536         test_mkdir -p $DIR/$tdir
10537         $SETSTRIPE --stripe-size 65536 $DIR/$tdir
10538
10539         check_default_stripe_attr --stripe-count --raw
10540         check_default_stripe_attr --stripe-index --raw
10541
10542         return 0
10543 }
10544 run_test 204g "Print raw stripe count and offset ==========="
10545
10546 test_204h() {
10547         test_mkdir -p $DIR/$tdir
10548         $SETSTRIPE --stripe-index 0 $DIR/$tdir
10549
10550         check_default_stripe_attr --stripe-count --raw
10551         check_default_stripe_attr --stripe-size --raw
10552
10553         return 0
10554 }
10555 run_test 204h "Print raw stripe count and size ============="
10556
10557 # Figure out which job scheduler is being used, if any,
10558 # or use a fake one
10559 if [ -n "$SLURM_JOB_ID" ]; then # SLURM
10560         JOBENV=SLURM_JOB_ID
10561 elif [ -n "$LSB_JOBID" ]; then # Load Sharing Facility
10562         JOBENV=LSB_JOBID
10563 elif [ -n "$PBS_JOBID" ]; then # PBS/Maui/Moab
10564         JOBENV=PBS_JOBID
10565 elif [ -n "$LOADL_STEPID" ]; then # LoadLeveller
10566         JOBENV=LOADL_STEP_ID
10567 elif [ -n "$JOB_ID" ]; then # Sun Grid Engine
10568         JOBENV=JOB_ID
10569 else
10570         JOBENV=FAKE_JOBID
10571 fi
10572
10573 verify_jobstats() {
10574         local cmd=$1
10575         local target=$2
10576
10577         # clear old jobstats
10578         do_facet $SINGLEMDS lctl set_param mdt.*.job_stats="clear"
10579         do_facet ost1 lctl set_param obdfilter.*.job_stats="clear"
10580
10581         # use a new JobID for this test, or we might see an old one
10582         [ "$JOBENV" = "FAKE_JOBID" ] && FAKE_JOBID=test_id.$testnum.$RANDOM
10583
10584         JOBVAL=${!JOBENV}
10585         log "Test: $cmd"
10586         log "Using JobID environment variable $JOBENV=$JOBVAL"
10587
10588         if [ $JOBENV = "FAKE_JOBID" ]; then
10589                 FAKE_JOBID=$JOBVAL $cmd
10590         else
10591                 $cmd
10592         fi
10593
10594         if [ "$target" = "mdt" -o "$target" = "both" ]; then
10595                 FACET="$SINGLEMDS" # will need to get MDS number for DNE
10596                 do_facet $FACET lctl get_param mdt.*.job_stats |
10597                         grep $JOBVAL || error "No job stats found on MDT $FACET"
10598         fi
10599         if [ "$target" = "ost" -o "$target" = "both" ]; then
10600                 FACET=ost1
10601                 do_facet $FACET lctl get_param obdfilter.*.job_stats |
10602                         grep $JOBVAL || error "No job stats found on OST $FACET"
10603         fi
10604 }
10605
10606 jobstats_set() {
10607         trap 0
10608         NEW_JOBENV=${1:-$OLD_JOBENV}
10609         do_facet mgs $LCTL conf_param $FSNAME.sys.jobid_var=$NEW_JOBENV
10610         wait_update $HOSTNAME "$LCTL get_param -n jobid_var" $NEW_JOBENV
10611 }
10612
10613 test_205() { # Job stats
10614         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10615         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep jobstats)" ] &&
10616                 skip "Server doesn't support jobstats" && return 0
10617
10618         local cmd
10619         OLD_JOBENV=`$LCTL get_param -n jobid_var`
10620         if [ $OLD_JOBENV != $JOBENV ]; then
10621                 jobstats_set $JOBENV
10622                 trap jobstats_set EXIT
10623         fi
10624
10625         # mkdir
10626         cmd="mkdir $DIR/$tfile"
10627         verify_jobstats "$cmd" "mdt"
10628         # rmdir
10629         cmd="rm -fr $DIR/$tfile"
10630         verify_jobstats "$cmd" "mdt"
10631         # mknod
10632         cmd="mknod $DIR/$tfile c 1 3"
10633         verify_jobstats "$cmd" "mdt"
10634         # unlink
10635         cmd="rm -f $DIR/$tfile"
10636         verify_jobstats "$cmd" "mdt"
10637         # open & close
10638         cmd="$SETSTRIPE -i 0 -c 1 $DIR/$tfile"
10639         verify_jobstats "$cmd" "mdt"
10640         # setattr
10641         cmd="touch $DIR/$tfile"
10642         verify_jobstats "$cmd" "both"
10643         # write
10644         cmd="dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 oflag=sync"
10645         verify_jobstats "$cmd" "ost"
10646         # read
10647         cmd="dd if=$DIR/$tfile of=/dev/null bs=1M count=1 iflag=direct"
10648         verify_jobstats "$cmd" "ost"
10649         # truncate
10650         cmd="$TRUNCATE $DIR/$tfile 0"
10651         verify_jobstats "$cmd" "both"
10652         # rename
10653         cmd="mv -f $DIR/$tfile $DIR/jobstats_test_rename"
10654         verify_jobstats "$cmd" "mdt"
10655
10656         # cleanup
10657         rm -f $DIR/jobstats_test_rename
10658
10659         [ $OLD_JOBENV != $JOBENV ] && jobstats_set $OLD_JOBENV
10660 }
10661 run_test 205 "Verify job stats"
10662
10663 # LU-1480, LU-1773 and LU-1657
10664 test_206() {
10665         mkdir -p $DIR/$tdir
10666         lfs setstripe -c -1 $DIR/$tdir
10667 #define OBD_FAIL_LOV_INIT 0x1403
10668         $LCTL set_param fail_loc=0xa0001403
10669         $LCTL set_param fail_val=1
10670         touch $DIR/$tdir/$tfile || true
10671 }
10672 run_test 206 "fail lov_init_raid0() doesn't lbug"
10673
10674 test_207a() {
10675         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((RANDOM%10+1))
10676         local fsz=`stat -c %s $DIR/$tfile`
10677         cancel_lru_locks mdc
10678
10679         # do not return layout in getattr intent
10680 #define OBD_FAIL_MDS_NO_LL_GETATTR 0x170
10681         $LCTL set_param fail_loc=0x170
10682         local sz=`stat -c %s $DIR/$tfile`
10683
10684         [ $fsz -eq $sz ] || error "file size expected $fsz, actual $sz"
10685
10686         rm -rf $DIR/$tfile
10687 }
10688 run_test 207a "can refresh layout at glimpse"
10689
10690 test_207b() {
10691         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((RANDOM%10+1))
10692         local cksum=`md5sum $DIR/$tfile`
10693         local fsz=`stat -c %s $DIR/$tfile`
10694         cancel_lru_locks mdc
10695         cancel_lru_locks osc
10696
10697         # do not return layout in getattr intent
10698 #define OBD_FAIL_MDS_NO_LL_OPEN 0x171
10699         $LCTL set_param fail_loc=0x171
10700
10701         # it will refresh layout after the file is opened but before read issues
10702         echo checksum is "$cksum"
10703         echo "$cksum" |md5sum -c --quiet || error "file differs"
10704
10705         rm -rf $DIR/$tfile
10706 }
10707 run_test 207b "can refresh layout at open"
10708
10709 test_208() {
10710         # FIXME: in this test suite, only RD lease is used. This is okay
10711         # for now as only exclusive open is supported. After generic lease
10712         # is done, this test suite should be revised. - Jinshan
10713
10714         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.4.52) ]] ||
10715                 { skip "Need MDS version at least 2.4.52"; return 0; }
10716
10717         echo "==== test 1: verify get lease work"
10718         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:eRE+eU || error "get lease error"
10719
10720         echo "==== test 2: verify lease can be broken by upcoming open"
10721         $MULTIOP $DIR/$tfile oO_RDONLY:eR_E-eUc &
10722         local PID=$!
10723         sleep 1
10724
10725         $MULTIOP $DIR/$tfile oO_RDONLY:c
10726         kill -USR1 $PID && wait $PID || error "break lease error"
10727
10728         echo "==== test 3: verify lease can't be granted if an open already exists"
10729         $MULTIOP $DIR/$tfile oO_RDONLY:_c &
10730         local PID=$!
10731         sleep 1
10732
10733         $MULTIOP $DIR/$tfile oO_RDONLY:eReUc && error "apply lease should fail"
10734         kill -USR1 $PID && wait $PID || error "open file error"
10735
10736         echo "==== test 4: lease can sustain over recovery"
10737         $MULTIOP $DIR/$tfile oO_RDONLY:eR_E+eUc &
10738         PID=$!
10739         sleep 1
10740
10741         fail mds1
10742
10743         kill -USR1 $PID && wait $PID || error "lease broken over recovery"
10744
10745         echo "==== test 5: lease broken can't be regained by replay"
10746         $MULTIOP $DIR/$tfile oO_RDONLY:eR_E-eUc &
10747         PID=$!
10748         sleep 1
10749
10750         # open file to break lease and then recovery
10751         $MULTIOP $DIR/$tfile oO_RDWR:c || error "open file error"
10752         fail mds1
10753
10754         kill -USR1 $PID && wait $PID || error "lease not broken over recovery"
10755
10756         rm -f $DIR/$tfile
10757 }
10758 run_test 208 "Exclusive open"
10759
10760 test_212() {
10761         size=`date +%s`
10762         size=$((size % 8192 + 1))
10763         dd if=/dev/urandom of=$DIR/f212 bs=1k count=$size
10764         sendfile $DIR/f212 $DIR/f212.xyz || error "sendfile wrong"
10765         rm -f $DIR/f212 $DIR/f212.xyz
10766 }
10767 run_test 212 "Sendfile test ============================================"
10768
10769 test_213() {
10770         dd if=/dev/zero of=$DIR/$tfile bs=4k count=4
10771         cancel_lru_locks osc
10772         lctl set_param fail_loc=0x8000040f
10773         # generate a read lock
10774         cat $DIR/$tfile > /dev/null
10775         # write to the file, it will try to cancel the above read lock.
10776         cat /etc/hosts >> $DIR/$tfile
10777 }
10778 run_test 213 "OSC lock completion and cancel race don't crash - bug 18829"
10779
10780 test_214() { # for bug 20133
10781         mkdir -p $DIR/$tdir/d214c || error "mkdir $DIR/$tdir/d214c failed"
10782         for (( i=0; i < 340; i++ )) ; do
10783                 touch $DIR/$tdir/d214c/a$i
10784         done
10785
10786         ls -l $DIR/$tdir || error "ls -l $DIR/d214p failed"
10787         mv $DIR/$tdir/d214c $DIR/ || error "mv $DIR/d214p/d214c $DIR/ failed"
10788         ls $DIR/d214c || error "ls $DIR/d214c failed"
10789         rm -rf $DIR/$tdir || error "rm -rf $DIR/d214* failed"
10790         rm -rf $DIR/d214* || error "rm -rf $DIR/d214* failed"
10791 }
10792 run_test 214 "hash-indexed directory test - bug 20133"
10793
10794 # having "abc" as 1st arg, creates $TMP/lnet_abc.out and $TMP/lnet_abc.sys
10795 create_lnet_proc_files() {
10796         cat /proc/sys/lnet/$1 >$TMP/lnet_$1.out || error "cannot read /proc/sys/lnet/$1"
10797         sysctl lnet.$1 >$TMP/lnet_$1.sys_tmp || error "cannot read lnet.$1"
10798
10799         sed "s/^lnet.$1\ =\ //g" "$TMP/lnet_$1.sys_tmp" >$TMP/lnet_$1.sys
10800         rm -f "$TMP/lnet_$1.sys_tmp"
10801 }
10802
10803 # counterpart of create_lnet_proc_files
10804 remove_lnet_proc_files() {
10805         rm -f $TMP/lnet_$1.out $TMP/lnet_$1.sys
10806 }
10807
10808 # uses 1st arg as trailing part of filename, 2nd arg as description for reports,
10809 # 3rd arg as regexp for body
10810 check_lnet_proc_stats() {
10811         local l=$(cat "$TMP/lnet_$1" |wc -l)
10812         [ $l = 1 ] || (cat "$TMP/lnet_$1" && error "$2 is not of 1 line: $l")
10813
10814         grep -E "$3" "$TMP/lnet_$1" || (cat "$TMP/lnet_$1" && error "$2 misformatted")
10815 }
10816
10817 # uses 1st arg as trailing part of filename, 2nd arg as description for reports,
10818 # 3rd arg as regexp for body, 4th arg as regexp for 1st line, 5th arg is
10819 # optional and can be regexp for 2nd line (lnet.routes case)
10820 check_lnet_proc_entry() {
10821         local blp=2            # blp stands for 'position of 1st line of body'
10822         [ "$5" = "" ] || blp=3 # lnet.routes case
10823
10824         local l=$(cat "$TMP/lnet_$1" |wc -l)
10825         # subtracting one from $blp because the body can be empty
10826         [ "$l" -ge "$(($blp - 1))" ] || (cat "$TMP/lnet_$1" && error "$2 is too short: $l")
10827
10828         sed -n '1 p' "$TMP/lnet_$1" |grep -E "$4" >/dev/null ||
10829                 (cat "$TMP/lnet_$1" && error "1st line of $2 misformatted")
10830
10831         [ "$5" = "" ] || sed -n '2 p' "$TMP/lnet_$1" |grep -E "$5" >/dev/null ||
10832                 (cat "$TMP/lnet_$1" && error "2nd line of $2 misformatted")
10833
10834         # bail out if any unexpected line happened
10835         sed -n "$blp~1 p" "$TMP/lnet_$1" |grep -Ev "$3"
10836         [ "$?" != 0 ] || error "$2 misformatted"
10837 }
10838
10839 test_215() { # for bugs 18102, 21079, 21517
10840         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10841         local N='(0|[1-9][0-9]*)'       # non-negative numeric
10842         local P='[1-9][0-9]*'           # positive numeric
10843         local I='(0|-?[1-9][0-9]*|NA)'  # any numeric (0 | >0 | <0) or NA if no value
10844         local NET='[a-z][a-z0-9]*'      # LNET net like o2ib2
10845         local ADDR='[0-9.]+'            # LNET addr like 10.0.0.1
10846         local NID="$ADDR@$NET"          # LNET nid like 10.0.0.1@o2ib2
10847
10848         local L1 # regexp for 1st line
10849         local L2 # regexp for 2nd line (optional)
10850         local BR # regexp for the rest (body)
10851
10852         # /proc/sys/lnet/stats should look as 11 space-separated non-negative numerics
10853         BR="^$N $N $N $N $N $N $N $N $N $N $N$"
10854         create_lnet_proc_files "stats"
10855         check_lnet_proc_stats "stats.out" "/proc/sys/lnet/stats" "$BR"
10856         check_lnet_proc_stats "stats.sys" "lnet.stats" "$BR"
10857         remove_lnet_proc_files "stats"
10858
10859         # /proc/sys/lnet/routes should look like this:
10860         # Routing disabled/enabled
10861         # net hops priority state router
10862         # where net is a string like tcp0, hops > 0, priority >= 0,
10863         # state is up/down,
10864         # router is a string like 192.168.1.1@tcp2
10865         L1="^Routing (disabled|enabled)$"
10866         L2="^net +hops +priority +state +router$"
10867         BR="^$NET +$N +(0|1) +(up|down) +$NID$"
10868         create_lnet_proc_files "routes"
10869         check_lnet_proc_entry "routes.out" "/proc/sys/lnet/routes" "$BR" "$L1" "$L2"
10870         check_lnet_proc_entry "routes.sys" "lnet.routes" "$BR" "$L1" "$L2"
10871         remove_lnet_proc_files "routes"
10872
10873         # /proc/sys/lnet/routers should look like this:
10874         # ref rtr_ref alive_cnt state last_ping ping_sent deadline down_ni router
10875         # where ref > 0, rtr_ref > 0, alive_cnt >= 0, state is up/down,
10876         # last_ping >= 0, ping_sent is boolean (0/1), deadline and down_ni are
10877         # numeric (0 or >0 or <0), router is a string like 192.168.1.1@tcp2
10878         L1="^ref +rtr_ref +alive_cnt +state +last_ping +ping_sent +deadline +down_ni +router$"
10879         BR="^$P +$P +$N +(up|down) +$N +(0|1) +$I +$I +$NID$"
10880         create_lnet_proc_files "routers"
10881         check_lnet_proc_entry "routers.out" "/proc/sys/lnet/routers" "$BR" "$L1"
10882         check_lnet_proc_entry "routers.sys" "lnet.routers" "$BR" "$L1"
10883         remove_lnet_proc_files "routers"
10884
10885         # /proc/sys/lnet/peers should look like this:
10886         # nid refs state last max rtr min tx min queue
10887         # where nid is a string like 192.168.1.1@tcp2, refs > 0,
10888         # state is up/down/NA, max >= 0. last, rtr, min, tx, min are
10889         # numeric (0 or >0 or <0), queue >= 0.
10890         L1="^nid +refs +state +last +max +rtr +min +tx +min +queue$"
10891         BR="^$NID +$P +(up|down|NA) +$I +$N +$I +$I +$I +$I +$N$"
10892         create_lnet_proc_files "peers"
10893         check_lnet_proc_entry "peers.out" "/proc/sys/lnet/peers" "$BR" "$L1"
10894         check_lnet_proc_entry "peers.sys" "lnet.peers" "$BR" "$L1"
10895         remove_lnet_proc_files "peers"
10896
10897         # /proc/sys/lnet/buffers  should look like this:
10898         # pages count credits min
10899         # where pages >=0, count >=0, credits and min are numeric (0 or >0 or <0)
10900         L1="^pages +count +credits +min$"
10901         BR="^ +$N +$N +$I +$I$"
10902         create_lnet_proc_files "buffers"
10903         check_lnet_proc_entry "buffers.out" "/proc/sys/lnet/buffers" "$BR" "$L1"
10904         check_lnet_proc_entry "buffers.sys" "lnet.buffers" "$BR" "$L1"
10905         remove_lnet_proc_files "buffers"
10906
10907         # /proc/sys/lnet/nis should look like this:
10908         # nid status alive refs peer rtr max tx min
10909         # where nid is a string like 192.168.1.1@tcp2, status is up/down,
10910         # alive is numeric (0 or >0 or <0), refs >= 0, peer >= 0,
10911         # rtr >= 0, max >=0, tx and min are numeric (0 or >0 or <0).
10912         L1="^nid +status +alive +refs +peer +rtr +max +tx +min$"
10913         BR="^$NID +(up|down) +$I +$N +$N +$N +$N +$I +$I$"
10914         create_lnet_proc_files "nis"
10915         check_lnet_proc_entry "nis.out" "/proc/sys/lnet/nis" "$BR" "$L1"
10916         check_lnet_proc_entry "nis.sys" "lnet.nis" "$BR" "$L1"
10917         remove_lnet_proc_files "nis"
10918
10919         # can we successfully write to /proc/sys/lnet/stats?
10920         echo "0" >/proc/sys/lnet/stats || error "cannot write to /proc/sys/lnet/stats"
10921         sysctl -w lnet.stats=0 || error "cannot write to lnet.stats"
10922 }
10923 run_test 215 "/proc/sys/lnet exists and has proper content - bugs 18102, 21079, 21517"
10924
10925 test_216() { # bug 20317
10926         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10927         remote_ost_nodsh && skip "remote OST with nodsh" && return
10928
10929         local node
10930         local facets=$(get_facets OST)
10931         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
10932
10933         save_lustre_params client "osc.*.contention_seconds" > $p
10934         save_lustre_params $facets \
10935                 "ldlm.namespaces.filter-*.max_nolock_bytes" >> $p
10936         save_lustre_params $facets \
10937                 "ldlm.namespaces.filter-*.contended_locks" >> $p
10938         save_lustre_params $facets \
10939                 "ldlm.namespaces.filter-*.contention_seconds" >> $p
10940         clear_osc_stats
10941
10942         # agressive lockless i/o settings
10943         for node in $(osts_nodes); do
10944                 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'
10945         done
10946         lctl set_param -n osc.*.contention_seconds 60
10947
10948         $DIRECTIO write $DIR/$tfile 0 10 4096
10949         $CHECKSTAT -s 40960 $DIR/$tfile
10950
10951         # disable lockless i/o
10952         for node in $(osts_nodes); do
10953                 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'
10954         done
10955         lctl set_param -n osc.*.contention_seconds 0
10956         clear_osc_stats
10957
10958         dd if=/dev/zero of=$DIR/$tfile count=0
10959         $CHECKSTAT -s 0 $DIR/$tfile
10960
10961         restore_lustre_params <$p
10962         rm -f $p
10963         rm $DIR/$tfile
10964 }
10965 run_test 216 "check lockless direct write works and updates file size and kms correctly"
10966
10967 test_217() { # bug 22430
10968         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10969         local node
10970         local nid
10971
10972         for node in $(nodes_list); do
10973                 nid=$(host_nids_address $node $NETTYPE)
10974                 if [[ $nid = *-* ]] ; then
10975                         echo "lctl ping $nid@$NETTYPE"
10976                         lctl ping $nid@$NETTYPE
10977                 else
10978                         echo "skipping $node (no hyphen detected)"
10979                 fi
10980         done
10981 }
10982 run_test 217 "check lctl ping for hostnames with hiphen ('-')"
10983
10984 test_218() {
10985        # do directio so as not to populate the page cache
10986        log "creating a 10 Mb file"
10987        $MULTIOP $DIR/$tfile oO_CREAT:O_DIRECT:O_RDWR:w$((10*1048576))c || error "multiop failed while creating a file"
10988        log "starting reads"
10989        dd if=$DIR/$tfile of=/dev/null bs=4096 &
10990        log "truncating the file"
10991        $MULTIOP $DIR/$tfile oO_TRUNC:c || error "multiop failed while truncating the file"
10992        log "killing dd"
10993        kill %+ || true # reads might have finished
10994        echo "wait until dd is finished"
10995        wait
10996        log "removing the temporary file"
10997        rm -rf $DIR/$tfile || error "tmp file removal failed"
10998 }
10999 run_test 218 "parallel read and truncate should not deadlock ======================="
11000
11001 test_219() {
11002         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11003         # write one partial page
11004         dd if=/dev/zero of=$DIR/$tfile bs=1024 count=1
11005         # set no grant so vvp_io_commit_write will do sync write
11006         $LCTL set_param fail_loc=0x411
11007         # write a full page at the end of file
11008         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 seek=1 conv=notrunc
11009
11010         $LCTL set_param fail_loc=0
11011         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 seek=3
11012         $LCTL set_param fail_loc=0x411
11013         dd if=/dev/zero of=$DIR/$tfile bs=1024 count=1 seek=2 conv=notrunc
11014 }
11015 run_test 219 "LU-394: Write partial won't cause uncontiguous pages vec at LND"
11016
11017 test_220() { #LU-325
11018         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11019         remote_ost_nodsh && skip "remote OST with nodsh" && return
11020         local OSTIDX=0
11021
11022         test_mkdir -p $DIR/$tdir
11023         local OST=$(lfs osts | grep ${OSTIDX}": " | \
11024                 awk '{print $2}' | sed -e 's/_UUID$//')
11025
11026         # on the mdt's osc
11027         local mdtosc_proc1=$(get_mdtosc_proc_path $SINGLEMDS $OST)
11028         local last_id=$(do_facet $SINGLEMDS lctl get_param -n \
11029                         osc.$mdtosc_proc1.prealloc_last_id)
11030         local next_id=$(do_facet $SINGLEMDS lctl get_param -n \
11031                         osc.$mdtosc_proc1.prealloc_next_id)
11032
11033         $LFS df -i
11034
11035         do_facet ost$((OSTIDX + 1)) lctl set_param fail_val=-1
11036         #define OBD_FAIL_OST_ENOINO              0x229
11037         do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=0x229
11038         do_facet mgs $LCTL pool_new $FSNAME.$TESTNAME || return 1
11039         do_facet mgs $LCTL pool_add $FSNAME.$TESTNAME $OST || return 2
11040
11041         $SETSTRIPE $DIR/$tdir -i $OSTIDX -c 1 -p $FSNAME.$TESTNAME
11042
11043         MDSOBJS=$((last_id - next_id))
11044         echo "preallocated objects on MDS is $MDSOBJS" "($last_id - $next_id)"
11045
11046         blocks=$($LFS df $MOUNT | awk '($1 == '$OSTIDX') { print $4 }')
11047         echo "OST still has $count kbytes free"
11048
11049         echo "create $MDSOBJS files @next_id..."
11050         createmany -o $DIR/$tdir/f $MDSOBJS || return 3
11051
11052         local last_id2=$(do_facet mds${MDSIDX} lctl get_param -n \
11053                         osc.$mdtosc_proc1.prealloc_last_id)
11054         local next_id2=$(do_facet mds${MDSIDX} lctl get_param -n \
11055                         osc.$mdtosc_proc1.prealloc_next_id)
11056
11057         echo "after creation, last_id=$last_id2, next_id=$next_id2"
11058         $LFS df -i
11059
11060         echo "cleanup..."
11061
11062         do_facet ost$((OSTIDX + 1)) lctl set_param fail_val=0
11063         do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=0
11064
11065         do_facet mgs $LCTL pool_remove $FSNAME.$TESTNAME $OST || return 4
11066         do_facet mgs $LCTL pool_destroy $FSNAME.$TESTNAME || return 5
11067         echo "unlink $MDSOBJS files @$next_id..."
11068         unlinkmany $DIR/$tdir/f $MDSOBJS || return 6
11069 }
11070 run_test 220 "preallocated MDS objects still used if ENOSPC from OST"
11071
11072 test_221() {
11073         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11074         dd if=`which date` of=$MOUNT/date oflag=sync
11075         chmod +x $MOUNT/date
11076
11077         #define OBD_FAIL_LLITE_FAULT_TRUNC_RACE  0x1401
11078         $LCTL set_param fail_loc=0x80001401
11079
11080         $MOUNT/date > /dev/null
11081         rm -f $MOUNT/date
11082 }
11083 run_test 221 "make sure fault and truncate race to not cause OOM"
11084
11085 test_222a () {
11086         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11087        rm -rf $DIR/$tdir
11088        test_mkdir -p $DIR/$tdir
11089        $SETSTRIPE -c 1 -i 0 $DIR/$tdir
11090        createmany -o $DIR/$tdir/$tfile 10
11091        cancel_lru_locks mdc
11092        cancel_lru_locks osc
11093        #define OBD_FAIL_LDLM_AGL_DELAY           0x31a
11094        $LCTL set_param fail_loc=0x31a
11095        ls -l $DIR/$tdir > /dev/null || error "AGL for ls failed"
11096        $LCTL set_param fail_loc=0
11097        rm -r $DIR/$tdir
11098 }
11099 run_test 222a "AGL for ls should not trigger CLIO lock failure ================"
11100
11101 test_222b () {
11102         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11103        rm -rf $DIR/$tdir
11104        test_mkdir -p $DIR/$tdir
11105        $SETSTRIPE -c 1 -i 0 $DIR/$tdir
11106        createmany -o $DIR/$tdir/$tfile 10
11107        cancel_lru_locks mdc
11108        cancel_lru_locks osc
11109        #define OBD_FAIL_LDLM_AGL_DELAY           0x31a
11110        $LCTL set_param fail_loc=0x31a
11111        rm -r $DIR/$tdir || "AGL for rmdir failed"
11112        $LCTL set_param fail_loc=0
11113 }
11114 run_test 222b "AGL for rmdir should not trigger CLIO lock failure ============="
11115
11116 test_223 () {
11117         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11118        rm -rf $DIR/$tdir
11119        test_mkdir -p $DIR/$tdir
11120        $SETSTRIPE -c 1 -i 0 $DIR/$tdir
11121        createmany -o $DIR/$tdir/$tfile 10
11122        cancel_lru_locks mdc
11123        cancel_lru_locks osc
11124        #define OBD_FAIL_LDLM_AGL_NOLOCK          0x31b
11125        $LCTL set_param fail_loc=0x31b
11126        ls -l $DIR/$tdir > /dev/null || error "reenqueue failed"
11127        $LCTL set_param fail_loc=0
11128        rm -r $DIR/$tdir
11129 }
11130 run_test 223 "osc reenqueue if without AGL lock granted ======================="
11131
11132 test_224a() { # LU-1039, MRP-303
11133         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11134         #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB   0x508
11135         $LCTL set_param fail_loc=0x508
11136         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 conv=fsync
11137         $LCTL set_param fail_loc=0
11138         df $DIR
11139 }
11140 run_test 224a "Don't panic on bulk IO failure"
11141
11142 test_224b() { # LU-1039, MRP-303
11143         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11144         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1
11145         cancel_lru_locks osc
11146         #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB2   0x515
11147         $LCTL set_param fail_loc=0x515
11148         dd of=/dev/null if=$DIR/$tfile bs=4096 count=1
11149         $LCTL set_param fail_loc=0
11150         df $DIR
11151 }
11152 run_test 224b "Don't panic on bulk IO failure"
11153
11154 MDSSURVEY=${MDSSURVEY:-$(which mds-survey 2>/dev/null || true)}
11155 test_225a () {
11156         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11157         if [ -z ${MDSSURVEY} ]; then
11158               skip_env "mds-survey not found" && return
11159         fi
11160
11161         [ $MDSCOUNT -ge 2 ] &&
11162                 skip "skipping now for more than one MDT" && return
11163
11164        [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ] ||
11165             { skip "Need MDS version at least 2.2.51"; return; }
11166
11167        local mds=$(facet_host $SINGLEMDS)
11168        local target=$(do_nodes $mds 'lctl dl' | \
11169                       awk "{if (\$2 == \"UP\" && \$3 == \"mdt\") {print \$4}}")
11170
11171        local cmd1="file_count=1000 thrhi=4"
11172        local cmd2="dir_count=2 layer=mdd stripe_count=0"
11173        local cmd3="rslt_loc=${TMP} targets=\"$mds:$target\" $MDSSURVEY"
11174        local cmd="$cmd1 $cmd2 $cmd3"
11175
11176        rm -f ${TMP}/mds_survey*
11177        echo + $cmd
11178        eval $cmd || error "mds-survey with zero-stripe failed"
11179        cat ${TMP}/mds_survey*
11180        rm -f ${TMP}/mds_survey*
11181 }
11182 run_test 225a "Metadata survey sanity with zero-stripe"
11183
11184 test_225b () {
11185         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11186
11187         if [ -z ${MDSSURVEY} ]; then
11188               skip_env "mds-survey not found" && return
11189         fi
11190         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ] ||
11191             { skip "Need MDS version at least 2.2.51"; return; }
11192
11193         if [ $($LCTL dl | grep -c osc) -eq 0 ]; then
11194               skip_env "Need to mount OST to test" && return
11195         fi
11196
11197         [ $MDSCOUNT -ge 2 ] &&
11198                 skip "skipping now for more than one MDT" && return
11199        local mds=$(facet_host $SINGLEMDS)
11200        local target=$(do_nodes $mds 'lctl dl' | \
11201                       awk "{if (\$2 == \"UP\" && \$3 == \"mdt\") {print \$4}}")
11202
11203        local cmd1="file_count=1000 thrhi=4"
11204        local cmd2="dir_count=2 layer=mdd stripe_count=1"
11205        local cmd3="rslt_loc=${TMP} targets=\"$mds:$target\" $MDSSURVEY"
11206        local cmd="$cmd1 $cmd2 $cmd3"
11207
11208        rm -f ${TMP}/mds_survey*
11209        echo + $cmd
11210        eval $cmd || error "mds-survey with stripe_count failed"
11211        cat ${TMP}/mds_survey*
11212        rm -f ${TMP}/mds_survey*
11213 }
11214 run_test 225b "Metadata survey sanity with stripe_count = 1"
11215
11216 mcreate_path2fid () {
11217         local mode=$1
11218         local major=$2
11219         local minor=$3
11220         local name=$4
11221         local desc=$5
11222         local path=$DIR/$tdir/$name
11223         local fid
11224         local rc
11225         local fid_path
11226
11227         $MCREATE --mode=$1 --major=$2 --minor=$3 $path ||
11228                 error "cannot create $desc"
11229
11230         fid=$($LFS path2fid $path | tr -d '[' | tr -d ']')
11231         rc=$?
11232         [ $rc -ne 0 ] && error "cannot get fid of a $desc"
11233
11234         fid_path=$($LFS fid2path $MOUNT $fid)
11235         rc=$?
11236         [ $rc -ne 0 ] && error "cannot get path of $desc by $DIR $path $fid"
11237
11238         [ "$path" == "$fid_path" ] ||
11239                 error "fid2path returned $fid_path, expected $path"
11240
11241         echo "pass with $path and $fid"
11242 }
11243
11244 test_226a () {
11245         rm -rf $DIR/$tdir
11246         mkdir -p $DIR/$tdir
11247
11248         mcreate_path2fid 0010666 0 0 fifo "FIFO"
11249         mcreate_path2fid 0020666 1 3 null "character special file (null)"
11250         mcreate_path2fid 0020666 1 255 none "character special file (no device)"
11251         mcreate_path2fid 0040666 0 0 dir "directory"
11252         mcreate_path2fid 0060666 7 0 loop0 "block special file (loop)"
11253         mcreate_path2fid 0100666 0 0 file "regular file"
11254         mcreate_path2fid 0120666 0 0 link "symbolic link"
11255         mcreate_path2fid 0140666 0 0 sock "socket"
11256 }
11257 run_test 226a "call path2fid and fid2path on files of all type"
11258
11259 test_226b () {
11260         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
11261         rm -rf $DIR/$tdir
11262         local MDTIDX=1
11263
11264         mkdir -p $DIR/$tdir
11265         $LFS setdirstripe -i $MDTIDX $DIR/$tdir/remote_dir ||
11266                 error "create remote directory failed"
11267         mcreate_path2fid 0010666 0 0 "remote_dir/fifo" "FIFO"
11268         mcreate_path2fid 0020666 1 3 "remote_dir/null" \
11269                                 "character special file (null)"
11270         mcreate_path2fid 0020666 1 255 "remote_dir/none" \
11271                                 "character special file (no device)"
11272         mcreate_path2fid 0040666 0 0 "remote_dir/dir" "directory"
11273         mcreate_path2fid 0060666 7 0 "remote_dir/loop0" \
11274                                 "block special file (loop)"
11275         mcreate_path2fid 0100666 0 0 "remote_dir/file" "regular file"
11276         mcreate_path2fid 0120666 0 0 "remote_dir/link" "symbolic link"
11277         mcreate_path2fid 0140666 0 0 "remote_dir/sock" "socket"
11278 }
11279 run_test 226b "call path2fid and fid2path on files of all type under remote dir"
11280
11281 # LU-1299 Executing or running ldd on a truncated executable does not
11282 # cause an out-of-memory condition.
11283 test_227() {
11284         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11285         dd if=`which date` of=$MOUNT/date bs=1k count=1
11286         chmod +x $MOUNT/date
11287
11288         $MOUNT/date > /dev/null
11289         ldd $MOUNT/date > /dev/null
11290         rm -f $MOUNT/date
11291 }
11292 run_test 227 "running truncated executable does not cause OOM"
11293
11294 # LU-1512 try to reuse idle OI blocks
11295 test_228a() {
11296         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11297         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
11298                 skip "non-ldiskfs backend" && return
11299
11300         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
11301         local myDIR=$DIR/$tdir
11302
11303         mkdir -p $myDIR
11304         #define OBD_FAIL_SEQ_EXHAUST             0x1002
11305         $LCTL set_param fail_loc=0x80001002
11306         createmany -o $myDIR/t- 10000
11307         $LCTL set_param fail_loc=0
11308         # The guard is current the largest FID holder
11309         touch $myDIR/guard
11310         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
11311                     tr -d '[')
11312         local IDX=$(($SEQ % 64))
11313
11314         do_facet $SINGLEMDS sync
11315         # Make sure journal flushed.
11316         sleep 6
11317         local blk1=$(do_facet $SINGLEMDS \
11318                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
11319                      grep Blockcount | awk '{print $4}')
11320
11321         # Remove old files, some OI blocks will become idle.
11322         unlinkmany $myDIR/t- 10000
11323         # Create new files, idle OI blocks should be reused.
11324         createmany -o $myDIR/t- 2000
11325         do_facet $SINGLEMDS sync
11326         # Make sure journal flushed.
11327         sleep 6
11328         local blk2=$(do_facet $SINGLEMDS \
11329                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
11330                      grep Blockcount | awk '{print $4}')
11331
11332         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
11333 }
11334 run_test 228a "try to reuse idle OI blocks"
11335
11336 test_228b() {
11337         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11338         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
11339                 skip "non-ldiskfs backend" && return
11340
11341         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
11342         local myDIR=$DIR/$tdir
11343
11344         mkdir -p $myDIR
11345         #define OBD_FAIL_SEQ_EXHAUST             0x1002
11346         $LCTL set_param fail_loc=0x80001002
11347         createmany -o $myDIR/t- 10000
11348         $LCTL set_param fail_loc=0
11349         # The guard is current the largest FID holder
11350         touch $myDIR/guard
11351         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
11352                     tr -d '[')
11353         local IDX=$(($SEQ % 64))
11354
11355         do_facet $SINGLEMDS sync
11356         # Make sure journal flushed.
11357         sleep 6
11358         local blk1=$(do_facet $SINGLEMDS \
11359                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
11360                      grep Blockcount | awk '{print $4}')
11361
11362         # Remove old files, some OI blocks will become idle.
11363         unlinkmany $myDIR/t- 10000
11364
11365         # stop the MDT
11366         stop $SINGLEMDS || error "Fail to stop MDT."
11367         # remount the MDT
11368         start $SINGLEMDS $MDT_DEV $MDS_MOUNT_OPTS || error "Fail to start MDT."
11369
11370         df $MOUNT || error "Fail to df."
11371         # Create new files, idle OI blocks should be reused.
11372         createmany -o $myDIR/t- 2000
11373         do_facet $SINGLEMDS sync
11374         # Make sure journal flushed.
11375         sleep 6
11376         local blk2=$(do_facet $SINGLEMDS \
11377                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
11378                      grep Blockcount | awk '{print $4}')
11379
11380         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
11381 }
11382 run_test 228b "idle OI blocks can be reused after MDT restart"
11383
11384 #LU-1881
11385 test_228c() {
11386         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11387         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
11388                 skip "non-ldiskfs backend" && return
11389
11390         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
11391         local myDIR=$DIR/$tdir
11392
11393         mkdir -p $myDIR
11394         #define OBD_FAIL_SEQ_EXHAUST             0x1002
11395         $LCTL set_param fail_loc=0x80001002
11396         # 20000 files can guarantee there are index nodes in the OI file
11397         createmany -o $myDIR/t- 20000
11398         $LCTL set_param fail_loc=0
11399         # The guard is current the largest FID holder
11400         touch $myDIR/guard
11401         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
11402                     tr -d '[')
11403         local IDX=$(($SEQ % 64))
11404
11405         do_facet $SINGLEMDS sync
11406         # Make sure journal flushed.
11407         sleep 6
11408         local blk1=$(do_facet $SINGLEMDS \
11409                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
11410                      grep Blockcount | awk '{print $4}')
11411
11412         # Remove old files, some OI blocks will become idle.
11413         unlinkmany $myDIR/t- 20000
11414         rm -f $myDIR/guard
11415         # The OI file should become empty now
11416
11417         # Create new files, idle OI blocks should be reused.
11418         createmany -o $myDIR/t- 2000
11419         do_facet $SINGLEMDS sync
11420         # Make sure journal flushed.
11421         sleep 6
11422         local blk2=$(do_facet $SINGLEMDS \
11423                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
11424                      grep Blockcount | awk '{print $4}')
11425
11426         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
11427 }
11428 run_test 228c "NOT shrink the last entry in OI index node to recycle idle leaf"
11429
11430 test_229() { # LU-2482, LU-3448
11431         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11432         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
11433
11434         rm -f $DIR/$tfile
11435
11436         # Create a file with a released layout and stripe count 2.
11437         $MULTIOP $DIR/$tfile H2c ||
11438                 error "failed to create file with released layout"
11439
11440         $GETSTRIPE -v $DIR/$tfile
11441
11442         local pattern=$($GETSTRIPE -L $DIR/$tfile)
11443         [ X"$pattern" = X"80000001" ] || error "pattern error ($pattern)"
11444
11445         local stripe_count=$($GETSTRIPE -c $DIR/$tfile) || error "getstripe"
11446         [ $stripe_count -eq 2 ] || error "stripe count not 2 ($stripe_count)"
11447         stat $DIR/$tfile || error "failed to stat released file"
11448
11449         chown $RUNAS_ID $DIR/$tfile ||
11450                 error "chown $RUNAS_ID $DIR/$tfile failed"
11451
11452         chgrp $RUNAS_ID $DIR/$tfile ||
11453                 error "chgrp $RUNAS_ID $DIR/$tfile failed"
11454
11455         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
11456         rm $DIR/$tfile || error "failed to remove released file"
11457 }
11458 run_test 229 "getstripe/stat/rm/attr changes work on released files"
11459
11460 test_230a() {
11461         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11462         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
11463         local MDTIDX=1
11464
11465         mkdir -p $DIR/$tdir/test_230_local
11466         local mdt_idx=$($GETSTRIPE -M $DIR/$tdir/test_230_local)
11467         [ $mdt_idx -ne 0 ] &&
11468                 error "create local directory on wrong MDT $mdt_idx"
11469
11470         $LFS mkdir -i $MDTIDX $DIR/$tdir/test_230 ||
11471                         error "create remote directory failed"
11472         local mdt_idx=$($GETSTRIPE -M $DIR/$tdir/test_230)
11473         [ $mdt_idx -ne $MDTIDX ] &&
11474                 error "create remote directory on wrong MDT $mdt_idx"
11475
11476         createmany -o $DIR/$tdir/test_230/t- 10 ||
11477                 error "create files on remote directory failed"
11478         mdt_idx=$($GETSTRIPE -M $DIR/$tdir/test_230/t-0)
11479         [ $mdt_idx -ne $MDTIDX ] && error "create files on wrong MDT $mdt_idx"
11480         rm -r $DIR/$tdir || error "unlink remote directory failed"
11481 }
11482 run_test 230a "Create remote directory and files under the remote directory"
11483
11484 test_230b() {
11485         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11486         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
11487         local MDTIDX=1
11488         local remote_dir=$DIR/$tdir/remote_dir
11489         local rc=0
11490
11491         mkdir -p $DIR/$tdir
11492         $LFS mkdir -i $MDTIDX $remote_dir ||
11493                 error "create remote directory failed"
11494
11495         $LFS mkdir -i 0 $remote_dir/new_dir &&
11496                 error "nested remote directory create succeed!"
11497
11498         do_facet mds$((MDTIDX + 1)) lctl set_param mdt.*.enable_remote_dir=1
11499         $LFS mkdir -i 0 $remote_dir/new_dir || rc=$?
11500         do_facet mds$((MDTIDX + 1)) lctl set_param mdt.*.enable_remote_dir=0
11501
11502         [ $rc -ne 0 ] &&
11503            error "create remote directory failed after set enable_remote_dir"
11504
11505         rm -rf $remote_dir || error "first unlink remote directory failed"
11506
11507         $RUNAS -G$RUNAS_GID $LFS mkdir -i $MDTIDX $DIR/$tfile &&
11508                                                         error "chown worked"
11509
11510         do_facet mds$MDTIDX lctl set_param \
11511                                 mdt.*.enable_remote_dir_gid=$RUNAS_GID
11512         $LFS mkdir -i $MDTIDX $remote_dir || rc=$?
11513         do_facet mds$MDTIDX lctl set_param mdt.*.enable_remote_dir_gid=0
11514
11515         [ $rc -ne 0 ] &&
11516            error "create remote dir failed after set enable_remote_dir_gid"
11517
11518         rm -r $DIR/$tdir || error "second unlink remote directory failed"
11519 }
11520 run_test 230b "nested remote directory should be failed"
11521
11522 test_231a()
11523 {
11524         # For simplicity this test assumes that max_pages_per_rpc
11525         # is the same across all OSCs
11526         local max_pages=$($LCTL get_param -n osc.*.max_pages_per_rpc | head -1)
11527         local bulk_size=$((max_pages * 4096))
11528
11529         mkdir -p $DIR/$tdir
11530
11531         # clear the OSC stats
11532         $LCTL set_param osc.*.stats=0 &>/dev/null
11533
11534         # Client writes $bulk_size - there must be 1 rpc for $max_pages.
11535         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=$bulk_size count=1 \
11536                 oflag=direct &>/dev/null || error "dd failed"
11537
11538         local nrpcs=$($LCTL get_param osc.*.stats |awk '/ost_write/ {print $2}')
11539         if [ x$nrpcs != "x1" ]; then
11540                 error "found $nrpc ost_write RPCs, not 1 as expected"
11541         fi
11542
11543         # Drop the OSC cache, otherwise we will read from it
11544         cancel_lru_locks osc
11545
11546         # clear the OSC stats
11547         $LCTL set_param osc.*.stats=0 &>/dev/null
11548
11549         # Client reads $bulk_size.
11550         dd if=$DIR/$tdir/$tfile of=/dev/null bs=$bulk_size count=1 \
11551                 iflag=direct &>/dev/null || error "dd failed"
11552
11553         nrpcs=$($LCTL get_param osc.*.stats | awk '/ost_read/ { print $2 }')
11554         if [ x$nrpcs != "x1" ]; then
11555                 error "found $nrpc ost_read RPCs, not 1 as expected"
11556         fi
11557 }
11558 run_test 231a "checking that reading/writing of BRW RPC size results in one RPC"
11559
11560 test_231b() {
11561         mkdir -p $DIR/$tdir
11562         local i
11563         for i in {0..1023}; do
11564                 dd if=/dev/zero of=$DIR/$tdir/$tfile conv=notrunc \
11565                         seek=$((2 * i)) bs=4096 count=1 &>/dev/null ||
11566                         error "dd of=$DIR/$tdir/$tfile seek=$((2 * i)) failed"
11567         done
11568         sync
11569 }
11570 run_test 231b "must not assert on fully utilized OST request buffer"
11571
11572 test_232() {
11573         mkdir -p $DIR/$tdir
11574         #define OBD_FAIL_LDLM_OST_LVB            0x31c
11575         $LCTL set_param fail_loc=0x31c
11576
11577         # ignore dd failure
11578         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=1 || true
11579
11580         $LCTL set_param fail_loc=0
11581         umount_client $MOUNT || error "umount failed"
11582         mount_client $MOUNT || error "mount failed"
11583 }
11584 run_test 232 "failed lock should not block umount"
11585
11586 test_233() {
11587         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.64) ] ||
11588         { skip "Need MDS version at least 2.3.64"; return; }
11589
11590         local fid=$($LFS path2fid $MOUNT)
11591         stat $MOUNT/.lustre/fid/$fid > /dev/null ||
11592                 error "cannot access $MOUNT using its FID '$fid'"
11593 }
11594 run_test 233 "checking that OBF of the FS root succeeds"
11595
11596 test_234() {
11597         local p="$TMP/sanityN-$TESTNAME.parameters"
11598         save_lustre_params client "llite.*.xattr_cache" > $p
11599         lctl set_param llite.*.xattr_cache 1 ||
11600                 { skip "xattr cache is not supported"; return 0; }
11601
11602         mkdir -p $DIR/$tdir || error "mkdir failed"
11603         touch $DIR/$tdir/$tfile || error "touch failed"
11604         # OBD_FAIL_LLITE_XATTR_ENOMEM
11605         $LCTL set_param fail_loc=0x1405
11606         if [ ! -f /etc/SuSE-release ]; then
11607                 # attr pre-2.4.44-7 had a bug with rc
11608                 # LU-3703 - SLES clients have older attr
11609                 getfattr -n user.attr $DIR/$tdir/$tfile &&
11610                         error "getfattr should have failed with ENOMEM"
11611         fi
11612         $LCTL set_param fail_loc=0x0
11613         rm -rf $DIR/$tdir
11614
11615         restore_lustre_params < $p
11616         rm -f $p
11617 }
11618 run_test 234 "xattr cache should not crash on ENOMEM"
11619
11620 test_235() {
11621          [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.52) ] &&
11622                 skip "Need MDS version at least 2.4.52" && return
11623         flock_deadlock $DIR/$tfile
11624         local RC=$?
11625         case $RC in
11626                 0)
11627                 ;;
11628                 124) error "process hangs on a deadlock"
11629                 ;;
11630                 *) error "error executing flock_deadlock $DIR/$tfile"
11631                 ;;
11632         esac
11633 }
11634 run_test 235 "LU-1715: flock deadlock detection does not work properly"
11635
11636 #LU-2935
11637 test_236() {
11638         check_swap_layouts_support && return 0
11639         test_mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
11640
11641         local ref1=/etc/passwd
11642         local ref2=/etc/group
11643         local file1=$DIR/$tdir/f1
11644         local file2=$DIR/$tdir/f2
11645
11646         $SETSTRIPE -c 1 $file1 || error "cannot setstripe on '$file1': rc = $?"
11647         cp $ref1 $file1 || error "cp $ref1 $file1 failed: rc = $?"
11648         $SETSTRIPE -c 2 $file2 || error "cannot setstripe on '$file2': rc = $?"
11649         cp $ref2 $file2 || error "cp $ref2 $file2 failed: rc = $?"
11650         exec {FD}<>$file2
11651         rm $file2
11652         $LFS swap_layouts $file1 /proc/self/fd/${FD} ||
11653                 error "cannot swap layouts of '$file1' and /proc/self/fd/${FD}"
11654         exec {FD}>&-
11655         cmp $ref2 $file1 || error "content compare failed ($ref2 != $file1)"
11656
11657         #cleanup
11658         rm -rf $DIR/$tdir
11659 }
11660 run_test 236 "Layout swap on open unlinked file"
11661
11662 #
11663 # tests that do cleanup/setup should be run at the end
11664 #
11665
11666 test_900() {
11667         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11668         local ls
11669         #define OBD_FAIL_MGC_PAUSE_PROCESS_LOG   0x903
11670         $LCTL set_param fail_loc=0x903
11671         # cancel_lru_locks mgc - does not work due to lctl set_param syntax
11672         for ls in /proc/fs/lustre/ldlm/namespaces/MGC*/lru_size; do
11673                 echo "clear" > $ls
11674         done
11675         FAIL_ON_ERROR=true cleanup
11676         FAIL_ON_ERROR=true setup
11677 }
11678 run_test 900 "umount should not race with any mgc requeue thread"
11679
11680 complete $SECONDS
11681 check_and_cleanup_lustre
11682 if [ "$I_MOUNTED" != "yes" ]; then
11683         lctl set_param debug="$OLDDEBUG" 2> /dev/null || true
11684 fi
11685 exit_status