Whamcloud - gitweb
3c5d7537640fbb6e3eb090d2d22ed4632ca02fc5
[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="                27u   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 # Tests that fail on uml
21 CPU=`awk '/model/ {print $4}' /proc/cpuinfo`
22 #                                    buffer i/o errs             sock spc runas
23 [ "$CPU" = "UML" ] && EXCEPT="$EXCEPT 27m 27n 27o 27p 27q 27r 31d 54a  64b 99a 99b 99c 99d 99e 99f 101a"
24
25 SRCDIR=$(cd $(dirname $0); echo $PWD)
26 export PATH=$PATH:/sbin
27
28 TMP=${TMP:-/tmp}
29
30 CHECKSTAT=${CHECKSTAT:-"checkstat -v"}
31 CREATETEST=${CREATETEST:-createtest}
32 LFS=${LFS:-lfs}
33 LFIND=${LFIND:-"$LFS find"}
34 LVERIFY=${LVERIFY:-ll_dirstripe_verify}
35 LCTL=${LCTL:-lctl}
36 MCREATE=${MCREATE:-mcreate}
37 OPENFILE=${OPENFILE:-openfile}
38 OPENUNLINK=${OPENUNLINK:-openunlink}
39 export MULTIOP=${MULTIOP:-multiop}
40 READS=${READS:-"reads"}
41 MUNLINK=${MUNLINK:-munlink}
42 SOCKETSERVER=${SOCKETSERVER:-socketserver}
43 SOCKETCLIENT=${SOCKETCLIENT:-socketclient}
44 MEMHOG=${MEMHOG:-memhog}
45 DIRECTIO=${DIRECTIO:-directio}
46 ACCEPTOR_PORT=${ACCEPTOR_PORT:-988}
47 UMOUNT=${UMOUNT:-"umount -d"}
48 STRIPES_PER_OBJ=-1
49 CHECK_GRANT=${CHECK_GRANT:-"yes"}
50 GRANT_CHECK_LIST=${GRANT_CHECK_LIST:-""}
51 export PARALLEL=${PARALLEL:-"no"}
52
53 export NAME=${NAME:-local}
54
55 SAVE_PWD=$PWD
56
57 CLEANUP=${CLEANUP:-:}
58 SETUP=${SETUP:-:}
59 TRACE=${TRACE:-""}
60 LUSTRE=${LUSTRE:-$(cd $(dirname $0)/..; echo $PWD)}
61 . $LUSTRE/tests/test-framework.sh
62 init_test_env $@
63 . ${CONFIG:=$LUSTRE/tests/cfg/${NAME}.sh}
64 init_logging
65
66 [ "$SLOW" = "no" ] && EXCEPT_SLOW="24o 24v 27m 36f 36g 36h 51b 60c 63 64b 68 71 73 77f 78 101a 103 115 120g 124b"
67
68 FAIL_ON_ERROR=false
69
70 cleanup() {
71         echo -n "cln.."
72         pgrep ll_sa > /dev/null && { echo "There are ll_sa thread not exit!"; exit 20; }
73         cleanupall ${FORCE} $* || { echo "FAILed to clean up"; exit 20; }
74 }
75 setup() {
76         echo -n "mnt.."
77         load_modules
78         setupall || exit 10
79         echo "done"
80 }
81
82 check_kernel_version() {
83         WANT_VER=$1
84         GOT_VER=$(lctl get_param -n version | awk '/kernel:/ {print $2}')
85         case $GOT_VER in
86         patchless|patchless_client) return 0;;
87         *) [ $GOT_VER -ge $WANT_VER ] && return 0 ;;
88         esac
89         log "test needs at least kernel version $WANT_VER, running $GOT_VER"
90         return 1
91 }
92
93 if [ "$ONLY" == "cleanup" ]; then
94        sh llmountcleanup.sh
95        exit 0
96 fi
97
98 check_and_setup_lustre
99
100 DIR=${DIR:-$MOUNT}
101 assert_DIR
102
103 MDT0=$($LCTL get_param -n mdc.*.mds_server_uuid | \
104     awk '{gsub(/_UUID/,""); print $1}' | head -1)
105 LOVNAME=$($LCTL get_param -n llite.*.lov.common_name | tail -n 1)
106 OSTCOUNT=$($LCTL get_param -n lov.$LOVNAME.numobd)
107 STRIPECOUNT=$($LCTL get_param -n lov.$LOVNAME.stripecount)
108 STRIPESIZE=$($LCTL get_param -n lov.$LOVNAME.stripesize)
109 ORIGFREE=$($LCTL get_param -n lov.$LOVNAME.kbytesavail)
110 MAXFREE=${MAXFREE:-$((200000 * $OSTCOUNT))}
111
112 [ -f $DIR/d52a/foo ] && chattr -a $DIR/d52a/foo
113 [ -f $DIR/d52b/foo ] && chattr -i $DIR/d52b/foo
114 rm -rf $DIR/[Rdfs][0-9]*
115
116 # $RUNAS_ID may get set incorrectly somewhere else
117 [ $UID -eq 0 -a $RUNAS_ID -eq 0 ] && error "\$RUNAS_ID set to 0, but \$UID is also 0!"
118
119 check_runas_id $RUNAS_ID $RUNAS_GID $RUNAS
120
121 build_test_filter
122
123 if [ "${ONLY}" = "MOUNT" ] ; then
124         echo "Lustre is up, please go on"
125         exit
126 fi
127
128 echo "preparing for tests involving mounts"
129 EXT2_DEV=${EXT2_DEV:-$TMP/SANITY.LOOP}
130 touch $EXT2_DEV
131 mke2fs -j -F $EXT2_DEV 8000 > /dev/null
132 echo # add a newline after mke2fs.
133
134 umask 077
135
136 OLDDEBUG="`lctl get_param -n debug 2> /dev/null`"
137 lctl set_param debug=-1 2> /dev/null || true
138 test_0() {
139         touch $DIR/$tfile
140         $CHECKSTAT -t file $DIR/$tfile || error
141         rm $DIR/$tfile
142         $CHECKSTAT -a $DIR/$tfile || error
143 }
144 run_test 0 "touch .../$tfile ; rm .../$tfile ====================="
145
146 test_0b() {
147         chmod 0755 $DIR || error
148         $CHECKSTAT -p 0755 $DIR || error
149 }
150 run_test 0b "chmod 0755 $DIR ============================="
151
152 test_0c() {
153     $LCTL get_param mdc.*.import | grep  "state: FULL" || error "import not FULL"
154     $LCTL get_param mdc.*.import | grep  "target: $FSNAME-MDT" || error "bad target"
155 }
156 run_test 0c "check import proc ============================="
157
158 test_1a() {
159         test_mkdir -p $DIR/$tdir
160         test_mkdir -p $DIR/$tdir/d2
161         test_mkdir $DIR/$tdir/d2 && error "we expect EEXIST, but not returned"
162         $CHECKSTAT -t dir $DIR/$tdir/d2 || error
163 }
164 run_test 1a "mkdir .../d1; mkdir .../d1/d2 ====================="
165
166 test_1b() {
167         rmdir $DIR/$tdir/d2
168         rmdir $DIR/$tdir
169         $CHECKSTAT -a $DIR/$tdir || error
170 }
171 run_test 1b "rmdir .../d1/d2; rmdir .../d1 ====================="
172
173 test_2a() {
174         test_mkdir $DIR/$tdir
175         touch $DIR/$tdir/$tfile
176         $CHECKSTAT -t file $DIR/$tdir/$tfile || error
177 }
178 run_test 2a "mkdir .../d2; touch .../d2/f ======================"
179
180 test_2b() {
181         rm -r $DIR/$tdir
182         $CHECKSTAT -a $DIR/$tdir || error
183 }
184 run_test 2b "rm -r .../d2; checkstat .../d2/f ======================"
185
186 test_3a() {
187         test_mkdir -p $DIR/$tdir
188         $CHECKSTAT -t dir $DIR/$tdir || error
189 }
190 run_test 3a "mkdir .../d3 ======================================"
191
192 test_3b() {
193         if [ ! -d $DIR/$tdir ]; then
194                 mkdir $DIR/$tdir
195         fi
196         touch $DIR/$tdir/$tfile
197         $CHECKSTAT -t file $DIR/$tdir/$tfile || error
198 }
199 run_test 3b "touch .../d3/f ===================================="
200
201 test_3c() {
202         rm -r $DIR/$tdir
203         $CHECKSTAT -a $DIR/$tdir || error
204 }
205 run_test 3c "rm -r .../d3 ======================================"
206
207 test_4a() {
208         test_mkdir -p $DIR/$tdir
209         $CHECKSTAT -t dir $DIR/$tdir || error
210 }
211 run_test 4a "mkdir .../d4 ======================================"
212
213 test_4b() {
214         if [ ! -d $DIR/$tdir ]; then
215                 test_mkdir $DIR/$tdir
216         fi
217         test_mkdir $DIR/$tdir/d2
218         mkdir $DIR/$tdir/d2
219         $CHECKSTAT -t dir $DIR/$tdir/d2 || error
220 }
221 run_test 4b "mkdir .../d4/d2 ==================================="
222
223 test_5() {
224         test_mkdir $DIR/$tdir
225         test_mkdir $DIR/$tdir/d2
226         chmod 0707 $DIR/$tdir/d2
227         $CHECKSTAT -t dir -p 0707 $DIR/$tdir/d2 || error
228 }
229 run_test 5 "mkdir .../d5 .../d5/d2; chmod .../d5/d2 ============"
230
231 test_6a() {
232         touch $DIR/$tfile
233         chmod 0666 $DIR/$tfile || error
234         $CHECKSTAT -t file -p 0666 -u \#$UID $DIR/$tfile || error
235 }
236 run_test 6a "touch .../f6a; chmod .../f6a ======================"
237
238 test_6b() {
239         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID" && return
240         if [ ! -f $DIR/$tfile ]; then
241                 touch $DIR/$tfile
242                 chmod 0666 $DIR/$tfile
243         fi
244         $RUNAS chmod 0444 $DIR/$tfile && error
245         $CHECKSTAT -t file -p 0666 -u \#$UID $DIR/$tfile || error
246 }
247 run_test 6b "$RUNAS chmod .../f6a (should return error) =="
248
249 test_6c() {
250         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID" && return
251         touch $DIR/$tfile
252         chown $RUNAS_ID $DIR/$tfile || error
253         $CHECKSTAT -t file -u \#$RUNAS_ID $DIR/$tfile || error
254 }
255 run_test 6c "touch .../f6c; chown .../f6c ======================"
256
257 test_6d() {
258         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID" && return
259         if [ ! -f $DIR/$tfile ]; then
260                 touch $DIR/$tfile
261                 chown $RUNAS_ID $DIR/$tfile
262         fi
263         $RUNAS chown $UID $DIR/$tfile && error
264         $CHECKSTAT -t file -u \#$RUNAS_ID $DIR/$tfile || error
265 }
266 run_test 6d "$RUNAS chown .../f6c (should return error) =="
267
268 test_6e() {
269         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID" && return
270         touch $DIR/$tfile
271         chgrp $RUNAS_ID $DIR/$tfile || error
272         $CHECKSTAT -t file -u \#$UID -g \#$RUNAS_ID $DIR/$tfile || error
273 }
274 run_test 6e "touch .../f6e; chgrp .../f6e ======================"
275
276 test_6f() {
277         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID" && return
278         if [ ! -f $DIR/$tfile ]; then
279                 touch $DIR/$tfile
280                 chgrp $RUNAS_ID $DIR/$tfile
281         fi
282         $RUNAS chgrp $UID $DIR/$tfile && error
283         $CHECKSTAT -t file -u \#$UID -g \#$RUNAS_ID $DIR/$tfile || error
284 }
285 run_test 6f "$RUNAS chgrp .../f6e (should return error) =="
286
287 test_6g() {
288         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID" && return
289         test_mkdir $DIR/$tdir || error
290         chmod 777 $DIR/$tdir || error
291         $RUNAS mkdir $DIR/$tdir/d || error
292         chmod g+s $DIR/$tdir/d || error
293         test_mkdir $DIR/$tdir/d/subdir
294         $CHECKSTAT -g \#$RUNAS_GID $DIR/$tdir/d/subdir || error
295 }
296 run_test 6g "Is new dir in sgid dir inheriting group?"
297
298 test_6h() { # bug 7331
299         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID" && return
300         touch $DIR/$tfile || error "touch failed"
301         chown $RUNAS_ID:$RUNAS_GID $DIR/$tfile || error "initial chown failed"
302         $RUNAS -G$RUNAS_GID chown $RUNAS_ID:0 $DIR/$tfile &&
303                 error "chown worked"
304         $CHECKSTAT -t file -u \#$RUNAS_ID -g \#$RUNAS_GID $DIR/$tfile || error
305 }
306 run_test 6h "$RUNAS chown RUNAS_ID.0 .../f6h (should return error)"
307
308 test_7a() {
309         test_mkdir $DIR/$tdir
310         $MCREATE $DIR/$tdir/$tfile
311         chmod 0666 $DIR/$tdir/$tfile
312         $CHECKSTAT -t file -p 0666 $DIR/$tdir/$tfile || error
313 }
314 run_test 7a "mkdir .../d7; mcreate .../d7/f; chmod .../d7/f ===="
315
316 test_7b() {
317         if [ ! -d $DIR/$tdir ]; then
318                 mkdir $DIR/$tdir
319         fi
320         $MCREATE $DIR/$tdir/$tfile
321         echo -n foo > $DIR/$tdir/$tfile
322         [ "`cat $DIR/$tdir/$tfile`" = "foo" ] || error
323         $CHECKSTAT -t file -s 3 $DIR/$tdir/$tfile || error
324 }
325 run_test 7b "mkdir .../d7; mcreate d7/f2; echo foo > d7/f2 ====="
326
327 test_8() {
328         test_mkdir $DIR/$tdir
329         touch $DIR/$tdir/$tfile
330         chmod 0666 $DIR/$tdir/$tfile
331         $CHECKSTAT -t file -p 0666 $DIR/$tdir/$tfile || error
332 }
333 run_test 8 "mkdir .../d8; touch .../d8/f; chmod .../d8/f ======="
334
335 test_9() {
336         test_mkdir $DIR/$tdir
337         test_mkdir $DIR/$tdir/d2
338         test_mkdir $DIR/$tdir/d2/d3
339         $CHECKSTAT -t dir $DIR/$tdir/d2/d3 || error
340 }
341 run_test 9 "mkdir .../d9 .../d9/d2 .../d9/d2/d3 ================"
342
343 test_10() {
344         test_mkdir $DIR/$tdir
345         test_mkdir $DIR/$tdir/d2
346         touch $DIR/$tdir/d2/$tfile
347         $CHECKSTAT -t file $DIR/$tdir/d2/$tfile || error
348 }
349 run_test 10 "mkdir .../d10 .../d10/d2; touch .../d10/d2/f ======"
350
351 test_11() {
352         test_mkdir $DIR/$tdir
353         test_mkdir $DIR/$tdir/d2
354         chmod 0666 $DIR/$tdir/d2
355         chmod 0705 $DIR/$tdir/d2
356         $CHECKSTAT -t dir -p 0705 $DIR/$tdir/d2 || error
357 }
358 run_test 11 "mkdir .../d11 d11/d2; chmod .../d11/d2 ============"
359
360 test_12() {
361         test_mkdir $DIR/$tdir
362         touch $DIR/$tdir/$tfile
363         chmod 0666 $DIR/$tdir/$tfile
364         chmod 0654 $DIR/$tdir/$tfile
365         $CHECKSTAT -t file -p 0654 $DIR/$tdir/$tfile || error
366 }
367 run_test 12 "touch .../d12/f; chmod .../d12/f .../d12/f ========"
368
369 test_13() {
370         test_mkdir $DIR/$tdir
371         dd if=/dev/zero of=$DIR/$tdir/$tfile count=10
372         >  $DIR/$tdir/$tfile
373         $CHECKSTAT -t file -s 0 $DIR/$tdir/$tfile || error
374 }
375 run_test 13 "creat .../d13/f; dd .../d13/f; > .../d13/f ========"
376
377 test_14() {
378         test_mkdir $DIR/$tdir
379         touch $DIR/$tdir/$tfile
380         rm $DIR/$tdir/$tfile
381         $CHECKSTAT -a $DIR/$tdir/$tfile || error
382 }
383 run_test 14 "touch .../d14/f; rm .../d14/f; rm .../d14/f ======="
384
385 test_15() {
386         test_mkdir $DIR/$tdir
387         touch $DIR/$tdir/$tfile
388         mv $DIR/$tdir/$tfile $DIR/$tdir/${tfile}_2
389         $CHECKSTAT -t file $DIR/$tdir/${tfile}_2 || error
390 }
391 run_test 15 "touch .../d15/f; mv .../d15/f .../d15/f2 =========="
392
393 test_16() {
394         test_mkdir $DIR/$tdir
395         touch $DIR/$tdir/$tfile
396         rm -rf $DIR/$tdir/$tfile
397         $CHECKSTAT -a $DIR/$tdir/$tfile || error
398 }
399 run_test 16 "touch .../d16/f; rm -rf .../d16/f ================="
400
401 test_17a() {
402         test_mkdir -p $DIR/$tdir
403         touch $DIR/$tdir/$tfile
404         ln -s $DIR/$tdir/$tfile $DIR/$tdir/l-exist
405         ls -l $DIR/$tdir
406         $CHECKSTAT -l $DIR/$tdir/$tfile $DIR/$tdir/l-exist || error
407         $CHECKSTAT -f -t f $DIR/$tdir/l-exist || error
408         rm -f $DIR/$tdir/l-exist
409         $CHECKSTAT -a $DIR/$tdir/l-exist || error
410 }
411 run_test 17a "symlinks: create, remove (real) =================="
412
413 test_17b() {
414         test_mkdir -p $DIR/$tdir
415         ln -s no-such-file $DIR/$tdir/l-dangle
416         ls -l $DIR/$tdir
417         $CHECKSTAT -l no-such-file $DIR/$tdir/l-dangle || error
418         $CHECKSTAT -fa $DIR/$tdir/l-dangle || error
419         rm -f $DIR/$tdir/l-dangle
420         $CHECKSTAT -a $DIR/$tdir/l-dangle || error
421 }
422 run_test 17b "symlinks: create, remove (dangling) =============="
423
424 test_17c() { # bug 3440 - don't save failed open RPC for replay
425         test_mkdir -p $DIR/$tdir
426         ln -s foo $DIR/$tdir/$tfile
427         cat $DIR/$tdir/$tfile && error "opened non-existent symlink" || true
428 }
429 run_test 17c "symlinks: open dangling (should return error) ===="
430
431 test_17d() {
432         test_mkdir -p $DIR/$tdir
433         ln -s foo $DIR/$tdir/$tfile
434         touch $DIR/$tdir/$tfile || error "creating to new symlink"
435 }
436 run_test 17d "symlinks: create dangling ========================"
437
438 test_17e() {
439         test_mkdir -p $DIR/$tdir
440         local foo=$DIR/$tdir/$tfile
441         ln -s $foo $foo || error "create symlink failed"
442         ls -l $foo || error "ls -l failed"
443         ls $foo && error "ls not failed" || true
444 }
445 run_test 17e "symlinks: create recursive symlink (should return error) ===="
446
447 test_17f() {
448         test_mkdir -p $DIR/d17f
449         ln -s 1234567890/2234567890/3234567890/4234567890 $DIR/d17f/111
450         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890 $DIR/d17f/222
451         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890 $DIR/d17f/333
452         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890/9234567890/a234567890/b234567890 $DIR/d17f/444
453         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890/9234567890/a234567890/b234567890/c234567890/d234567890/f234567890 $DIR/d17f/555
454         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
455         ls -l  $DIR/d17f
456 }
457 run_test 17f "symlinks: long and very long symlink name ========================"
458
459 # str_repeat(S, N) generate a string that is string S repeated N times
460 str_repeat() {
461         local s=$1
462         local n=$2
463         local ret=''
464         while [ $((n -= 1)) -ge 0 ]; do
465                 ret=$ret$s
466         done
467         echo $ret
468 }
469
470 # Long symlinks and LU-2241
471 test_17g() {
472         test_mkdir -p $DIR/$tdir
473         local TESTS="59 60 61 4094 4095"
474
475         for i in $TESTS; do
476                 local SYMNAME=$(str_repeat 'x' $i)
477                 ln -s $SYMNAME $DIR/$tdir/f$i || error "failed $i-char symlink"
478                 readlink $DIR/$tdir/f$i || error "failed $i-char readlink"
479         done
480 }
481 run_test 17g "symlinks: really long symlink name and inode boundaries"
482
483 test_17h() { #bug 17378
484         remote_mds_nodsh && skip "remote MDS with nodsh" && return
485         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
486         local mdt_idx
487         test_mkdir -p $DIR/$tdir
488         if [ $MDSCOUNT -gt 1 ]; then
489                 mdt_idx=$($LFS getdirstripe -i $DIR/$tdir)
490         else
491                 mdt_idx=0
492         fi
493         $SETSTRIPE -c -1 $DIR/$tdir
494 #define OBD_FAIL_MDS_LOV_PREP_CREATE 0x141
495         do_facet mds$((mdt_idx + 1)) lctl set_param fail_loc=0x80000141
496         touch $DIR/$tdir/$tfile || true
497 }
498 run_test 17h "create objects: lov_free_memmd() doesn't lbug"
499
500 test_17i() { #bug 20018
501         remote_mds_nodsh && skip "remote MDS with nodsh" && return
502         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
503         test_mkdir -p $DIR/$tdir
504         local foo=$DIR/$tdir/$tfile
505         local mdt_idx
506         if [ $MDSCOUNT -gt 1 ]; then
507                 mdt_idx=$($LFS getdirstripe -i $DIR/$tdir)
508         else
509                 mdt_idx=0
510         fi
511         ln -s $foo $foo || error "create symlink failed"
512 #define OBD_FAIL_MDS_READLINK_EPROTO     0x143
513         do_facet mds$((mdt_idx + 1)) lctl set_param fail_loc=0x80000143
514         ls -l $foo && error "error not detected"
515         return 0
516 }
517 run_test 17i "don't panic on short symlink"
518
519 test_17k() { #bug 22301
520         rsync --help | grep -q xattr ||
521                 skip_env "$(rsync --version| head -1) does not support xattrs"
522         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
523         test_mkdir -p $DIR/$tdir
524         test_mkdir -p $DIR/$tdir.new
525         touch $DIR/$tdir/$tfile
526         ln -s $DIR/$tdir/$tfile $DIR/$tdir/$tfile.lnk
527         rsync -av -X $DIR/$tdir/ $DIR/$tdir.new ||
528                 error "rsync failed with xattrs enabled"
529 }
530 run_test 17k "symlinks: rsync with xattrs enabled ========================="
531
532 test_17l() { # LU-279
533         mkdir -p $DIR/$tdir
534         touch $DIR/$tdir/$tfile
535         ln -s $DIR/$tdir/$tfile $DIR/$tdir/$tfile.lnk
536         for path in "$DIR/$tdir" "$DIR/$tdir/$tfile" "$DIR/$tdir/$tfile.lnk"; do
537                 # -h to not follow symlinks. -m '' to list all the xattrs.
538                 # grep to remove first line: '# file: $path'.
539                 for xattr in `getfattr -hm '' $path 2>/dev/null | grep -v '^#'`;
540                 do
541                         lgetxattr_size_check $path $xattr ||
542                                 error "lgetxattr_size_check $path $xattr failed"
543                 done
544         done
545 }
546 run_test 17l "Ensure lgetxattr's returned xattr size is consistent ========"
547
548 # LU-1540
549 test_17m() {
550         local short_sym="0123456789"
551         local WDIR=$DIR/${tdir}m
552         local mds_index
553         local devname
554         local cmd
555         local i
556         local rc=0
557
558         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] &&
559         [ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.2.93) ] &&
560                 skip "MDS 2.2.0-2.2.93 do not NUL-terminate symlinks" && return
561
562         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
563                 skip "only for ldiskfs MDT" && return 0
564
565         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
566
567         mkdir -p $WDIR
568         long_sym=$short_sym
569         # create a long symlink file
570         for ((i = 0; i < 4; ++i)); do
571                 long_sym=${long_sym}${long_sym}
572         done
573
574         echo "create 512 short and long symlink files under $WDIR"
575         for ((i = 0; i < 256; ++i)); do
576                 ln -sf ${long_sym}"a5a5" $WDIR/long-$i
577                 ln -sf ${short_sym}"a5a5" $WDIR/short-$i
578         done
579
580         echo "erase them"
581         rm -f $WDIR/*
582         sync
583         wait_delete_completed
584
585         echo "recreate the 512 symlink files with a shorter string"
586         for ((i = 0; i < 512; ++i)); do
587                 # rewrite the symlink file with a shorter string
588                 ln -sf ${long_sym} $WDIR/long-$i
589                 ln -sf ${short_sym} $WDIR/short-$i
590         done
591
592         mds_index=$($LFS getstripe -M $WDIR)
593         mds_index=$((mds_index+1))
594         devname=$(mdsdevname $mds_index)
595         cmd="$E2FSCK -fnvd $devname"
596
597         echo "stop and checking mds${mds_index}: $cmd"
598         # e2fsck should not return error
599         stop mds${mds_index} -f
600         do_facet mds${mds_index} $cmd || rc=$?
601
602         start mds${mds_index} $devname $MDS_MOUNT_OPTS
603         df $MOUNT > /dev/null 2>&1
604         [ $rc -ne 0 ] && error "e2fsck should not report error upon "\
605                 "short/long symlink MDT: rc=$rc"
606         return $rc
607 }
608 run_test 17m "run e2fsck against MDT which contains short/long symlink"
609
610 check_fs_consistency_17n() {
611         local mdt_index
612         local devname
613         local cmd
614         local rc=0
615
616         for mdt_index in $(seq 1 $MDSCOUNT); do
617                 devname=$(mdsdevname $mdt_index)
618                 cmd="$E2FSCK -fnvd $devname"
619
620                 echo "stop and checking mds${mdt_index}: $cmd"
621                 # e2fsck should not return error
622                 stop mds${mdt_index}
623                 do_facet mds${mdt_index} $cmd || rc=$?
624
625                 start mds${mdt_index} $devname $MDS_MOUNT_OPTS
626                 df $MOUNT > /dev/null 2>&1
627                 [ $rc -ne 0 ] && break
628         done
629         return $rc
630 }
631
632 test_17n() {
633         local i
634
635         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] &&
636         [ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.2.93) ] &&
637                 skip "MDS 2.2.0-2.2.93 do not NUL-terminate symlinks" && return
638
639         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
640                 skip "only for ldiskfs MDT" && return 0
641
642         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
643
644         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
645
646         mkdir -p $DIR/$tdir
647         for ((i=0; i<10; i++)); do
648                 $LFS mkdir -i 1 $DIR/$tdir/remote_dir_${i} ||
649                         error "create remote dir error $i"
650                 createmany -o $DIR/$tdir/remote_dir_${i}/f 10 ||
651                         error "create files under remote dir failed $i"
652         done
653
654         check_fs_consistency_17n || error "e2fsck report error"
655
656         for ((i=0;i<10;i++)); do
657                 rm -rf $DIR/$tdir/remote_dir_${i} ||
658                         error "destroy remote dir error $i"
659         done
660
661         check_fs_consistency_17n || error "e2fsck report error"
662 }
663 run_test 17n "run e2fsck against master/slave MDT which contains remote dir"
664
665 test_18() {
666         touch $DIR/f
667         ls $DIR || error
668 }
669 run_test 18 "touch .../f ; ls ... =============================="
670
671 test_19a() {
672         touch $DIR/f19
673         ls -l $DIR
674         rm $DIR/f19
675         $CHECKSTAT -a $DIR/f19 || error
676 }
677 run_test 19a "touch .../f19 ; ls -l ... ; rm .../f19 ==========="
678
679 test_19b() {
680         ls -l $DIR/f19 && error || true
681 }
682 run_test 19b "ls -l .../f19 (should return error) =============="
683
684 test_19c() {
685         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID -- skipping" && return
686         $RUNAS touch $DIR/f19 && error || true
687 }
688 run_test 19c "$RUNAS touch .../f19 (should return error) =="
689
690 test_19d() {
691         cat $DIR/f19 && error || true
692 }
693 run_test 19d "cat .../f19 (should return error) =============="
694
695 test_20() {
696         touch $DIR/f
697         rm $DIR/f
698         log "1 done"
699         touch $DIR/f
700         rm $DIR/f
701         log "2 done"
702         touch $DIR/f
703         rm $DIR/f
704         log "3 done"
705         $CHECKSTAT -a $DIR/f || error
706 }
707 run_test 20 "touch .../f ; ls -l ... ==========================="
708
709 test_21() {
710         test_mkdir $DIR/d21
711         [ -f $DIR/d21/dangle ] && rm -f $DIR/d21/dangle
712         ln -s dangle $DIR/d21/link
713         echo foo >> $DIR/d21/link
714         cat $DIR/d21/dangle
715         $CHECKSTAT -t link $DIR/d21/link || error
716         $CHECKSTAT -f -t file $DIR/d21/link || error
717 }
718 run_test 21 "write to dangling link ============================"
719
720 test_22() {
721         WDIR=$DIR/$tdir
722         test_mkdir -p $DIR/$tdir
723         chown $RUNAS_ID:$RUNAS_GID $WDIR
724         (cd $WDIR || error "cd $WDIR failed";
725         $RUNAS tar cf - /etc/hosts /etc/sysconfig/network | \
726         $RUNAS tar xf -)
727         ls -lR $WDIR/etc || error "ls -lR $WDIR/etc failed"
728         $CHECKSTAT -t dir $WDIR/etc || error "checkstat -t dir failed"
729         $CHECKSTAT -u \#$RUNAS_ID -g \#$RUNAS_GID $WDIR/etc || error "checkstat -u failed"
730 }
731 run_test 22 "unpack tar archive as non-root user ==============="
732
733 # was test_23
734 test_23a() {
735         test_mkdir -p $DIR/$tdir
736         local file=$DIR/$tdir/$tfile
737
738         openfile -f O_CREAT:O_EXCL $file || error "$file create failed"
739         openfile -f O_CREAT:O_EXCL $file &&
740                 error "$file recreate succeeded" || true
741 }
742 run_test 23a "O_CREAT|O_EXCL in subdir =========================="
743
744 test_23b() { # bug 18988
745         test_mkdir -p $DIR/$tdir
746         local file=$DIR/$tdir/$tfile
747
748         rm -f $file
749         echo foo > $file || error "write filed"
750         echo bar >> $file || error "append filed"
751         $CHECKSTAT -s 8 $file || error "wrong size"
752         rm $file
753 }
754 run_test 23b "O_APPEND check =========================="
755
756 test_24a() {
757         echo '== rename sanity =============================================='
758         echo '-- same directory rename'
759         test_mkdir $DIR/R1
760         touch $DIR/R1/f
761         mv $DIR/R1/f $DIR/R1/g
762         $CHECKSTAT -t file $DIR/R1/g || error
763 }
764 run_test 24a "touch .../R1/f; rename .../R1/f .../R1/g ========="
765
766 test_24b() {
767         test_mkdir $DIR/R2
768         touch $DIR/R2/{f,g}
769         mv $DIR/R2/f $DIR/R2/g
770         $CHECKSTAT -a $DIR/R2/f || error
771         $CHECKSTAT -t file $DIR/R2/g || error
772 }
773 run_test 24b "touch .../R2/{f,g}; rename .../R2/f .../R2/g ====="
774
775 test_24c() {
776         test_mkdir $DIR/R3
777         test_mkdir $DIR/R3/f
778         mv $DIR/R3/f $DIR/R3/g
779         $CHECKSTAT -a $DIR/R3/f || error
780         $CHECKSTAT -t dir $DIR/R3/g || error
781 }
782 run_test 24c "mkdir .../R3/f; rename .../R3/f .../R3/g ========="
783
784 test_24d() {
785         test_mkdir $DIR/R4
786         test_mkdir $DIR/R4/f
787         test_mkdir $DIR/R4/g
788         mrename $DIR/R4/f $DIR/R4/g
789         $CHECKSTAT -a $DIR/R4/f || error
790         $CHECKSTAT -t dir $DIR/R4/g || error
791 }
792 run_test 24d "mkdir .../R4/{f,g}; rename .../R4/f .../R4/g ====="
793
794 test_24e() {
795         echo '-- cross directory renames --'
796         test_mkdir $DIR/R5a
797         test_mkdir $DIR/R5b
798         touch $DIR/R5a/f
799         mv $DIR/R5a/f $DIR/R5b/g
800         $CHECKSTAT -a $DIR/R5a/f || error
801         $CHECKSTAT -t file $DIR/R5b/g || error
802 }
803 run_test 24e "touch .../R5a/f; rename .../R5a/f .../R5b/g ======"
804
805 test_24f() {
806         test_mkdir $DIR/R6a
807         test_mkdir $DIR/R6b
808         touch $DIR/R6a/f $DIR/R6b/g
809         mv $DIR/R6a/f $DIR/R6b/g
810         $CHECKSTAT -a $DIR/R6a/f || error
811         $CHECKSTAT -t file $DIR/R6b/g || error
812 }
813 run_test 24f "touch .../R6a/f R6b/g; mv .../R6a/f .../R6b/g ===="
814
815 test_24g() {
816         test_mkdir $DIR/R7a
817         test_mkdir $DIR/R7b
818         test_mkdir $DIR/R7a/d
819         mv $DIR/R7a/d $DIR/R7b/e
820         $CHECKSTAT -a $DIR/R7a/d || error
821         $CHECKSTAT -t dir $DIR/R7b/e || error
822 }
823 run_test 24g "mkdir .../R7{a,b}/d; mv .../R7a/d .../R7b/e ======"
824
825 test_24h() {
826         test_mkdir $DIR/R8a
827         test_mkdir $DIR/R8b
828         test_mkdir $DIR/R8a/d
829         test_mkdir $DIR/R8b/e
830         mrename $DIR/R8a/d $DIR/R8b/e
831         $CHECKSTAT -a $DIR/R8a/d || error
832         $CHECKSTAT -t dir $DIR/R8b/e || error
833 }
834 run_test 24h "mkdir .../R8{a,b}/{d,e}; rename .../R8a/d .../R8b/e"
835
836 test_24i() {
837         echo "-- rename error cases"
838         test_mkdir $DIR/R9
839         test_mkdir $DIR/R9/a
840         touch $DIR/R9/f
841         mrename $DIR/R9/f $DIR/R9/a
842         $CHECKSTAT -t file $DIR/R9/f || error
843         $CHECKSTAT -t dir  $DIR/R9/a || error
844         $CHECKSTAT -a $DIR/R9/a/f || error
845 }
846 run_test 24i "rename file to dir error: touch f ; mkdir a ; rename f a"
847
848 test_24j() {
849         test_mkdir $DIR/R10
850         mrename $DIR/R10/f $DIR/R10/g
851         $CHECKSTAT -t dir $DIR/R10 || error
852         $CHECKSTAT -a $DIR/R10/f || error
853         $CHECKSTAT -a $DIR/R10/g || error
854 }
855 run_test 24j "source does not exist ============================"
856
857 test_24k() {
858         test_mkdir $DIR/R11a
859         test_mkdir $DIR/R11a/d
860         touch $DIR/R11a/f
861         mv $DIR/R11a/f $DIR/R11a/d
862         $CHECKSTAT -a $DIR/R11a/f || error
863         $CHECKSTAT -t file $DIR/R11a/d/f || error
864 }
865 run_test 24k "touch .../R11a/f; mv .../R11a/f .../R11a/d ======="
866
867 # bug 2429 - rename foo foo foo creates invalid file
868 test_24l() {
869         f="$DIR/f24l"
870         $MULTIOP $f OcNs || error
871 }
872 run_test 24l "Renaming a file to itself ========================"
873
874 test_24m() {
875         f="$DIR/f24m"
876         $MULTIOP $f OcLN ${f}2 ${f}2 || error "link ${f}2 ${f}2 failed"
877         # on ext3 this does not remove either the source or target files
878         # though the "expected" operation would be to remove the source
879         $CHECKSTAT -t file ${f} || error "${f} missing"
880         $CHECKSTAT -t file ${f}2 || error "${f}2 missing"
881 }
882 run_test 24m "Renaming a file to a hard link to itself ========="
883
884 test_24n() {
885     f="$DIR/f24n"
886     # this stats the old file after it was renamed, so it should fail
887     touch ${f}
888     $CHECKSTAT ${f}
889     mv ${f} ${f}.rename
890     $CHECKSTAT ${f}.rename
891     $CHECKSTAT -a ${f}
892 }
893 run_test 24n "Statting the old file after renaming (Posix rename 2)"
894
895 test_24o() {
896         check_kernel_version 37 || return 0
897         test_mkdir -p $DIR/d24o
898         rename_many -s random -v -n 10 $DIR/d24o
899 }
900 run_test 24o "rename of files during htree split ==============="
901
902 test_24p() {
903         test_mkdir $DIR/R12a
904         test_mkdir $DIR/R12b
905         DIRINO=`ls -lid $DIR/R12a | awk '{ print $1 }'`
906         mrename $DIR/R12a $DIR/R12b
907         $CHECKSTAT -a $DIR/R12a || error
908         $CHECKSTAT -t dir $DIR/R12b || error
909         DIRINO2=`ls -lid $DIR/R12b | awk '{ print $1 }'`
910         [ "$DIRINO" = "$DIRINO2" ] || error "R12a $DIRINO != R12b $DIRINO2"
911 }
912 run_test 24p "mkdir .../R12{a,b}; rename .../R12a .../R12b"
913
914 cleanup_multiop_pause() {
915         trap 0
916         kill -USR1 $MULTIPID
917 }
918
919 test_24q() {
920         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
921         test_mkdir $DIR/R13a
922         test_mkdir $DIR/R13b
923         local DIRINO=$(ls -lid $DIR/R13a | awk '{ print $1 }')
924         multiop_bg_pause $DIR/R13b D_c || error "multiop failed to start"
925         MULTIPID=$!
926
927         trap cleanup_multiop_pause EXIT
928         mrename $DIR/R13a $DIR/R13b
929         $CHECKSTAT -a $DIR/R13a || error "R13a still exists"
930         $CHECKSTAT -t dir $DIR/R13b || error "R13b does not exist"
931         local DIRINO2=$(ls -lid $DIR/R13b | awk '{ print $1 }')
932         [ "$DIRINO" = "$DIRINO2" ] || error "R13a $DIRINO != R13b $DIRINO2"
933         cleanup_multiop_pause
934         wait $MULTIPID || error "multiop close failed"
935 }
936 run_test 24q "mkdir .../R13{a,b}; open R13b rename R13a R13b ==="
937
938 test_24r() { #bug 3789
939         test_mkdir $DIR/R14a
940         test_mkdir $DIR/R14a/b
941         mrename $DIR/R14a $DIR/R14a/b && error "rename to subdir worked!"
942         $CHECKSTAT -t dir $DIR/R14a || error "$DIR/R14a missing"
943         $CHECKSTAT -t dir $DIR/R14a/b || error "$DIR/R14a/b missing"
944 }
945 run_test 24r "mkdir .../R14a/b; rename .../R14a .../R14a/b ====="
946
947 test_24s() {
948         test_mkdir $DIR/R15a
949         test_mkdir $DIR/R15a/b
950         test_mkdir $DIR/R15a/b/c
951         mrename $DIR/R15a $DIR/R15a/b/c && error "rename to sub-subdir worked!"
952         $CHECKSTAT -t dir $DIR/R15a || error "$DIR/R15a missing"
953         $CHECKSTAT -t dir $DIR/R15a/b/c || error "$DIR/R15a/b/c missing"
954 }
955 run_test 24s "mkdir .../R15a/b/c; rename .../R15a .../R15a/b/c ="
956 test_24t() {
957         test_mkdir $DIR/R16a
958         test_mkdir $DIR/R16a/b
959         test_mkdir $DIR/R16a/b/c
960         mrename $DIR/R16a/b/c $DIR/R16a && error "rename to sub-subdir worked!"
961         $CHECKSTAT -t dir $DIR/R16a || error "$DIR/R16a missing"
962         $CHECKSTAT -t dir $DIR/R16a/b/c || error "$DIR/R16a/b/c missing"
963 }
964 run_test 24t "mkdir .../R16a/b/c; rename .../R16a/b/c .../R16a ="
965
966 test_24u() { # bug12192
967         rm -rf $DIR/$tfile
968         $MULTIOP $DIR/$tfile C2w$((2048 * 1024))c || error
969         $CHECKSTAT -s $((2048 * 1024)) $DIR/$tfile || error "wrong file size"
970 }
971 run_test 24u "create stripe file"
972
973 page_size() {
974         getconf PAGE_SIZE
975 }
976
977 simple_cleanup_common() {
978         trap 0
979         rm -rf $DIR/$tdir
980         wait_delete_completed
981 }
982
983 max_pages_per_rpc() {
984         $LCTL get_param -n mdc.*.max_pages_per_rpc | head -1
985 }
986
987 test_24v() {
988         local NRFILES=100000
989         local FREE_INODES=$(lfs_df -i | grep "summary" | awk '{print $4}')
990         [ $FREE_INODES -lt $NRFILES ] && \
991                 skip "not enough free inodes $FREE_INODES required $NRFILES" &&
992                 return
993
994         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
995         trap simple_cleanup_common EXIT
996
997         mkdir -p $DIR/$tdir
998         createmany -m $DIR/$tdir/$tfile $NRFILES
999
1000         cancel_lru_locks mdc
1001         lctl set_param mdc.*.stats clear
1002
1003         ls $DIR/$tdir >/dev/null || error "error in listing large dir"
1004
1005         # LU-5 large readdir
1006         # DIRENT_SIZE = 32 bytes for sizeof(struct lu_dirent) +
1007         #               8 bytes for name(filename is mostly 5 in this test) +
1008         #               8 bytes for luda_type
1009         # take into account of overhead in lu_dirpage header and end mark in
1010         # each page, plus one in RPC_NUM calculation.
1011         DIRENT_SIZE=48
1012         RPC_SIZE=$(($(max_pages_per_rpc) * $(page_size)))
1013         RPC_NUM=$(((NRFILES * DIRENT_SIZE + RPC_SIZE - 1) / RPC_SIZE + 1))
1014         mds_readpage=$(lctl get_param mdc.*MDT0000*.stats | \
1015                                 awk '/^mds_readpage/ {print $2}')
1016         [ $mds_readpage -gt $RPC_NUM ] && \
1017                 error "large readdir doesn't take effect"
1018
1019         simple_cleanup_common
1020 }
1021 run_test 24v "list directory with large files (handle hash collision, bug: 17560)"
1022
1023 test_24w() { # bug21506
1024         SZ1=234852
1025         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=4096 || return 1
1026         dd if=/dev/zero bs=$SZ1 count=1 >> $DIR/$tfile || return 2
1027         dd if=$DIR/$tfile of=$DIR/${tfile}_left bs=1M skip=4097 || return 3
1028         SZ2=`ls -l $DIR/${tfile}_left | awk '{print $5}'`
1029         [ "$SZ1" = "$SZ2" ] || \
1030                 error "Error reading at the end of the file $tfile"
1031 }
1032 run_test 24w "Reading a file larger than 4Gb"
1033
1034 test_24x() {
1035         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
1036         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1037         local MDTIDX=1
1038         local remote_dir=$DIR/$tdir/remote_dir
1039
1040         mkdir -p $DIR/$tdir
1041         $LFS mkdir -i $MDTIDX $remote_dir ||
1042                 error "create remote directory failed"
1043
1044         mkdir -p $DIR/$tdir/src_dir
1045         touch $DIR/$tdir/src_file
1046         mkdir -p $remote_dir/tgt_dir
1047         touch $remote_dir/tgt_file
1048
1049         mrename $DIR/$tdir/src_dir $remote_dir/tgt_dir &&
1050                 error "rename dir cross MDT works!"
1051
1052         mrename $DIR/$tdir/src_file $remote_dir/tgt_file &&
1053                 error "rename file cross MDT works!"
1054
1055         ln $DIR/$tdir/src_file $remote_dir/tgt_file1 &&
1056                 error "ln file cross MDT should not work!"
1057
1058         rm -rf $DIR/$tdir || error "Can not delete directories"
1059 }
1060 run_test 24x "cross rename/link should be failed"
1061
1062 test_24y() {
1063         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
1064         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1065         local MDTIDX=1
1066         local remote_dir=$DIR/$tdir/remote_dir
1067
1068         mkdir -p $DIR/$tdir
1069         $LFS mkdir -i $MDTIDX $remote_dir ||
1070                    error "create remote directory failed"
1071
1072         mkdir -p $remote_dir/src_dir
1073         touch $remote_dir/src_file
1074         mkdir -p $remote_dir/tgt_dir
1075         touch $remote_dir/tgt_file
1076
1077         mrename $remote_dir/src_dir $remote_dir/tgt_dir ||
1078                 error "rename subdir in the same remote dir failed!"
1079
1080         mrename $remote_dir/src_file $remote_dir/tgt_file ||
1081                 error "rename files in the same remote dir failed!"
1082
1083         ln $remote_dir/tgt_file $remote_dir/tgt_file1 ||
1084                 error "link files in the same remote dir failed!"
1085
1086         rm -rf $DIR/$tdir || error "Can not delete directories"
1087 }
1088 run_test 24y "rename/link on the same dir should succeed"
1089
1090 test_24z() {
1091         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
1092         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1093         local MDTIDX=1
1094         local remote_src=$DIR/$tdir/remote_dir
1095         local remote_tgt=$DIR/$tdir/remote_tgt
1096
1097         mkdir -p $DIR/$tdir
1098         $LFS mkdir -i $MDTIDX $remote_src ||
1099                    error "create remote directory failed"
1100
1101         $LFS mkdir -i $MDTIDX $remote_tgt ||
1102                    error "create remote directory failed"
1103
1104         mrename $remote_src $remote_tgt &&
1105                 error "rename remote dirs should not work!"
1106
1107         rm -rf $DIR/$tdir || error "Can not delete directories"
1108 }
1109 run_test 24z "rename one remote dir to another remote dir should fail"
1110
1111 test_25a() {
1112         echo '== symlink sanity ============================================='
1113
1114         test_mkdir $DIR/d25
1115         ln -s d25 $DIR/s25
1116         touch $DIR/s25/foo || error
1117 }
1118 run_test 25a "create file in symlinked directory ==============="
1119
1120 test_25b() {
1121         [ ! -d $DIR/d25 ] && test_25a
1122         $CHECKSTAT -t file $DIR/s25/foo || error
1123 }
1124 run_test 25b "lookup file in symlinked directory ==============="
1125
1126 test_26a() {
1127         test_mkdir $DIR/d26
1128         test_mkdir $DIR/d26/d26-2
1129         ln -s d26/d26-2 $DIR/s26
1130         touch $DIR/s26/foo || error
1131 }
1132 run_test 26a "multiple component symlink ======================="
1133
1134 test_26b() {
1135         test_mkdir -p $DIR/d26b/d26-2
1136         ln -s d26b/d26-2/foo $DIR/s26-2
1137         touch $DIR/s26-2 || error
1138 }
1139 run_test 26b "multiple component symlink at end of lookup ======"
1140
1141 test_26c() {
1142         test_mkdir $DIR/d26.2
1143         touch $DIR/d26.2/foo
1144         ln -s d26.2 $DIR/s26.2-1
1145         ln -s s26.2-1 $DIR/s26.2-2
1146         ln -s s26.2-2 $DIR/s26.2-3
1147         chmod 0666 $DIR/s26.2-3/foo
1148 }
1149 run_test 26c "chain of symlinks ================================"
1150
1151 # recursive symlinks (bug 439)
1152 test_26d() {
1153         ln -s d26-3/foo $DIR/d26-3
1154 }
1155 run_test 26d "create multiple component recursive symlink ======"
1156
1157 test_26e() {
1158         [ ! -h $DIR/d26-3 ] && test_26d
1159         rm $DIR/d26-3
1160 }
1161 run_test 26e "unlink multiple component recursive symlink ======"
1162
1163 # recursive symlinks (bug 7022)
1164 test_26f() {
1165         test_mkdir -p $DIR/$tdir
1166         test_mkdir $DIR/$tdir/$tfile   || error "mkdir $DIR/$tdir/$tfile failed"
1167         cd $DIR/$tdir/$tfile           || error "cd $DIR/$tdir/$tfile failed"
1168         test_mkdir -p lndir bar1      || error "mkdir lndir/bar1 failed"
1169         test_mkdir $DIR/$tdir/$tfile/$tfile   || error "mkdir $tfile failed"
1170         cd $tfile                || error "cd $tfile failed"
1171         ln -s .. dotdot          || error "ln dotdot failed"
1172         ln -s dotdot/lndir lndir || error "ln lndir failed"
1173         cd $DIR/$tdir                 || error "cd $DIR/$tdir failed"
1174         output=`ls $tfile/$tfile/lndir/bar1`
1175         [ "$output" = bar1 ] && error "unexpected output"
1176         rm -r $tfile             || error "rm $tfile failed"
1177         $CHECKSTAT -a $DIR/$tfile || error "$tfile not gone"
1178 }
1179 run_test 26f "rm -r of a directory which has recursive symlink ="
1180
1181 test_27a() {
1182         echo '== stripe sanity =============================================='
1183         test_mkdir -p $DIR/d27 || error "mkdir failed"
1184         $GETSTRIPE $DIR/d27
1185         $SETSTRIPE -c 1 $DIR/d27/f0 || error "setstripe failed"
1186         $CHECKSTAT -t file $DIR/d27/f0 || error "checkstat failed"
1187         pass
1188         log "== test_27a: write to one stripe file ========================="
1189         cp /etc/hosts $DIR/d27/f0 || error
1190 }
1191 run_test 27a "one stripe file =================================="
1192
1193 test_27b() {
1194         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping 2-stripe test" && return
1195         test_mkdir -p $DIR/d27
1196         $SETSTRIPE -c 2 $DIR/d27/f01 || error "setstripe failed"
1197         $GETSTRIPE -c $DIR/d27/f01
1198         [ $($GETSTRIPE -c $DIR/d27/f01) -eq 2 ] ||
1199                 error "two-stripe file doesn't have two stripes"
1200 }
1201 run_test 27b "create two stripe file"
1202
1203 test_27c() {
1204         [ -f $DIR/d27/f01 ] || skip "test_27b not run" && return
1205
1206         dd if=/dev/zero of=$DIR/d27/f01 bs=4k count=4 || error "dd failed"
1207 }
1208 run_test 27c "write to two stripe file"
1209
1210 test_27d() {
1211         test_mkdir -p $DIR/d27
1212         $SETSTRIPE -c 0 -i -1 -S 0 $DIR/d27/fdef || error "setstripe failed"
1213         $CHECKSTAT -t file $DIR/d27/fdef || error "checkstat failed"
1214         dd if=/dev/zero of=$DIR/d27/fdef bs=4k count=4 || error
1215 }
1216 run_test 27d "create file with default settings ================"
1217
1218 test_27e() {
1219         test_mkdir -p $DIR/d27
1220         $SETSTRIPE -c 2 $DIR/d27/f12 || error "setstripe failed"
1221         $SETSTRIPE -c 2 $DIR/d27/f12 && error "setstripe succeeded twice"
1222         $CHECKSTAT -t file $DIR/d27/f12 || error "checkstat failed"
1223 }
1224 run_test 27e "setstripe existing file (should return error) ======"
1225
1226 test_27f() {
1227         test_mkdir -p $DIR/d27
1228         $SETSTRIPE -S 100 -i 0 -c 1 $DIR/d27/fbad && error "setstripe failed"
1229         dd if=/dev/zero of=$DIR/d27/f12 bs=4k count=4 || error "dd failed"
1230         $GETSTRIPE $DIR/d27/fbad || error "$GETSTRIPE failed"
1231 }
1232 run_test 27f "setstripe with bad stripe size (should return error)"
1233
1234 test_27g() {
1235         test_mkdir -p $DIR/d27
1236         $MCREATE $DIR/d27/fnone || error "mcreate failed"
1237         $GETSTRIPE $DIR/d27/fnone 2>&1 | grep "no stripe info" ||
1238                 error "$DIR/d27/fnone has object"
1239 }
1240 run_test 27g "$GETSTRIPE with no objects"
1241
1242 test_27i() {
1243         touch $DIR/d27/fsome || error "touch failed"
1244         [ $($GETSTRIPE -c $DIR/d27/fsome) -gt 0 ] || error "missing objects"
1245 }
1246 run_test 27i "$GETSTRIPE with some objects"
1247
1248 test_27j() {
1249         test_mkdir -p $DIR/d27
1250         $SETSTRIPE -i $OSTCOUNT $DIR/d27/f27j && error "setstripe failed"||true
1251 }
1252 run_test 27j "setstripe with bad stripe offset (should return error)"
1253
1254 test_27k() { # bug 2844
1255         test_mkdir -p $DIR/d27
1256         FILE=$DIR/d27/f27k
1257         LL_MAX_BLKSIZE=$((4 * 1024 * 1024))
1258         [ ! -d $DIR/d27 ] && test_mkdir -p $DIR d27
1259         $SETSTRIPE -S 67108864 $FILE || error "setstripe failed"
1260         BLKSIZE=`stat $FILE | awk '/IO Block:/ { print $7 }'`
1261         [ $BLKSIZE -le $LL_MAX_BLKSIZE ] || error "$BLKSIZE > $LL_MAX_BLKSIZE"
1262         dd if=/dev/zero of=$FILE bs=4k count=1
1263         BLKSIZE=`stat $FILE | awk '/IO Block:/ { print $7 }'`
1264         [ $BLKSIZE -le $LL_MAX_BLKSIZE ] || error "$BLKSIZE > $LL_MAX_BLKSIZE"
1265 }
1266 run_test 27k "limit i_blksize for broken user apps ============="
1267
1268 test_27l() {
1269         test_mkdir -p $DIR/d27
1270         mcreate $DIR/f27l || error "creating file"
1271         $RUNAS $SETSTRIPE -c 1 $DIR/f27l && \
1272                 error "setstripe should have failed" || true
1273 }
1274 run_test 27l "check setstripe permissions (should return error)"
1275
1276 test_27m() {
1277         [ "$OSTCOUNT" -lt "2" ] && skip_env "$OSTCOUNT < 2 OSTs -- skipping" &&
1278                 return
1279         if [ $ORIGFREE -gt $MAXFREE ]; then
1280                 skip "$ORIGFREE > $MAXFREE skipping out-of-space test on OST0"
1281                 return
1282         fi
1283         trap simple_cleanup_common EXIT
1284         test_mkdir -p $DIR/$tdir
1285         $SETSTRIPE -i 0 -c 1 $DIR/$tdir/f27m_1
1286         dd if=/dev/zero of=$DIR/$tdir/f27m_1 bs=1024 count=$MAXFREE &&
1287                 error "dd should fill OST0"
1288         i=2
1289         while $SETSTRIPE -i 0 -c 1 $DIR/$tdir/f27m_$i; do
1290                 i=`expr $i + 1`
1291                 [ $i -gt 256 ] && break
1292         done
1293         i=`expr $i + 1`
1294         touch $DIR/$tdir/f27m_$i
1295         [ `$GETSTRIPE $DIR/$tdir/f27m_$i | grep -A 10 obdidx | awk '{print $1}'| grep -w "0"` ] &&
1296                 error "OST0 was full but new created file still use it"
1297         i=`expr $i + 1`
1298         touch $DIR/$tdir/f27m_$i
1299         [ `$GETSTRIPE $DIR/$tdir/f27m_$i | grep -A 10 obdidx | awk '{print $1}'| grep -w "0"` ] &&
1300                 error "OST0 was full but new created file still use it"
1301         simple_cleanup_common
1302 }
1303 run_test 27m "create file while OST0 was full =================="
1304
1305 sleep_maxage() {
1306         local DELAY=$(do_facet $SINGLEMDS lctl get_param -n lov.*.qos_maxage | head -n 1 | awk '{print $1 * 2}')
1307         sleep $DELAY
1308 }
1309
1310 # OSCs keep a NOSPC flag that will be reset after ~5s (qos_maxage)
1311 # if the OST isn't full anymore.
1312 reset_enospc() {
1313         local OSTIDX=${1:-""}
1314
1315         local list=$(comma_list $(osts_nodes))
1316         [ "$OSTIDX" ] && list=$(facet_host ost$((OSTIDX + 1)))
1317
1318         do_nodes $list lctl set_param fail_loc=0
1319         sync    # initiate all OST_DESTROYs from MDS to OST
1320         sleep_maxage
1321 }
1322
1323 exhaust_precreations() {
1324         local OSTIDX=$1
1325         local FAILLOC=$2
1326         local FAILIDX=${3:-$OSTIDX}
1327
1328         test_mkdir -p $DIR/$tdir
1329         local MDSIDX=$(get_mds_dir "$DIR/$tdir")
1330         echo OSTIDX=$OSTIDX MDSIDX=$MDSIDX
1331
1332         local OST=$(ostname_from_index $OSTIDX)
1333         local MDT_INDEX=$(lfs df | grep "\[MDT:$((MDSIDX - 1))\]" | awk '{print $1}' | \
1334                           sed -e 's/_UUID$//;s/^.*-//')
1335
1336         # on the mdt's osc
1337         local mdtosc_proc1=$(get_mdtosc_proc_path mds${MDSIDX} $OST)
1338         local last_id=$(do_facet mds${MDSIDX} lctl get_param -n \
1339         osc.$mdtosc_proc1.prealloc_last_id)
1340         local next_id=$(do_facet mds${MDSIDX} lctl get_param -n \
1341         osc.$mdtosc_proc1.prealloc_next_id)
1342
1343         local mdtosc_proc2=$(get_mdtosc_proc_path mds${MDSIDX})
1344         do_facet mds${MDSIDX} lctl get_param osc.$mdtosc_proc2.prealloc*
1345
1346         test_mkdir -p $DIR/$tdir/${OST}
1347         $SETSTRIPE -i $OSTIDX -c 1 $DIR/$tdir/${OST}
1348 #define OBD_FAIL_OST_ENOSPC              0x215
1349         do_facet ost$((OSTIDX + 1)) lctl set_param fail_val=$FAILIDX
1350         do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=0x215
1351         echo "Creating to objid $last_id on ost $OST..."
1352         createmany -o $DIR/$tdir/${OST}/f $next_id $((last_id - next_id + 2))
1353         do_facet mds${MDSIDX} lctl get_param osc.$mdtosc_proc2.prealloc*
1354         do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=$FAILLOC
1355         sleep_maxage
1356 }
1357
1358 exhaust_all_precreations() {
1359         local i
1360         for (( i=0; i < OSTCOUNT; i++ )) ; do
1361                 exhaust_precreations $i $1 -1
1362         done
1363 }
1364
1365 test_27n() {
1366         [ "$OSTCOUNT" -lt "2" ] && skip_env "too few OSTs" && return
1367         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1368         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1369         remote_ost_nodsh && skip "remote OST with nodsh" && return
1370
1371         reset_enospc
1372         rm -f $DIR/$tdir/$tfile
1373         exhaust_precreations 0 0x80000215
1374         $SETSTRIPE -c -1 $DIR/$tdir
1375         touch $DIR/$tdir/$tfile || error
1376         $GETSTRIPE $DIR/$tdir/$tfile
1377         reset_enospc
1378 }
1379 run_test 27n "create file with some full OSTs =================="
1380
1381 test_27o() {
1382         [ "$OSTCOUNT" -lt "2" ] && skip_env "too few OSTs" && return
1383         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1384         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1385         remote_ost_nodsh && skip "remote OST with nodsh" && return
1386
1387         reset_enospc
1388         rm -f $DIR/$tdir/$tfile
1389         exhaust_all_precreations 0x215
1390
1391         touch $DIR/$tdir/$tfile && error "able to create $DIR/$tdir/$tfile"
1392
1393         reset_enospc
1394         rm -rf $DIR/$tdir/*
1395 }
1396 run_test 27o "create file with all full OSTs (should error) ===="
1397
1398 test_27p() {
1399         [ "$OSTCOUNT" -lt "2" ] && skip_env "too few OSTs" && return
1400         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1401         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1402         remote_ost_nodsh && skip "remote OST with nodsh" && return
1403
1404         reset_enospc
1405         rm -f $DIR/$tdir/$tfile
1406         test_mkdir -p $DIR/$tdir
1407
1408         $MCREATE $DIR/$tdir/$tfile || error "mcreate failed"
1409         $TRUNCATE $DIR/$tdir/$tfile 80000000 || error "truncate failed"
1410         $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat failed"
1411
1412         exhaust_precreations 0 0x80000215
1413         echo foo >> $DIR/$tdir/$tfile || error "append failed"
1414         $CHECKSTAT -s 80000004 $DIR/$tdir/$tfile || error "checkstat failed"
1415         $GETSTRIPE $DIR/$tdir/$tfile
1416
1417         reset_enospc
1418 }
1419 run_test 27p "append to a truncated file with some full OSTs ==="
1420
1421 test_27q() {
1422         [ "$OSTCOUNT" -lt "2" ] && skip_env "too few OSTs" && return
1423         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1424         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1425         remote_ost_nodsh && skip "remote OST with nodsh" && return
1426
1427         reset_enospc
1428         rm -f $DIR/$tdir/$tfile
1429
1430         test_mkdir -p $DIR/$tdir
1431         $MCREATE $DIR/$tdir/$tfile || error "mcreate $DIR/$tdir/$tfile failed"
1432         $TRUNCATE $DIR/$tdir/$tfile 80000000 ||error "truncate $DIR/$tdir/$tfile failed"
1433         $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat failed"
1434
1435         exhaust_all_precreations 0x215
1436
1437         echo foo >> $DIR/$tdir/$tfile && error "append succeeded"
1438         $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat 2 failed"
1439
1440         reset_enospc
1441 }
1442 run_test 27q "append to truncated file with all OSTs full (should error) ==="
1443
1444 test_27r() {
1445         [ "$OSTCOUNT" -lt "2" ] && skip_env "too few OSTs" && return
1446         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1447         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1448         remote_ost_nodsh && skip "remote OST with nodsh" && return
1449
1450         reset_enospc
1451         rm -f $DIR/$tdir/$tfile
1452         exhaust_precreations 0 0x80000215
1453
1454         $SETSTRIPE -i 0 -c 2 $DIR/$tdir/$tfile # && error
1455
1456         reset_enospc
1457 }
1458 run_test 27r "stripe file with some full OSTs (shouldn't LBUG) ="
1459
1460 test_27s() { # bug 10725
1461         test_mkdir -p $DIR/$tdir
1462         local stripe_size=$((4096 * 1024 * 1024))       # 2^32
1463         local stripe_count=0
1464         [ $OSTCOUNT -eq 1 ] || stripe_count=2
1465         $SETSTRIPE -S $stripe_size -c $stripe_count $DIR/$tdir &&
1466                 error "stripe width >= 2^32 succeeded" || true
1467
1468 }
1469 run_test 27s "lsm_xfersize overflow (should error) (bug 10725)"
1470
1471 test_27t() { # bug 10864
1472         WDIR=`pwd`
1473         WLFS=`which lfs`
1474         cd $DIR
1475         touch $tfile
1476         $WLFS getstripe $tfile
1477         cd $WDIR
1478 }
1479 run_test 27t "check that utils parse path correctly"
1480
1481 test_27u() { # bug 4900
1482         [ "$OSTCOUNT" -lt "2" ] && skip_env "too few OSTs" && return
1483         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1484
1485 #define OBD_FAIL_MDS_OSC_PRECREATE      0x139
1486         do_facet $SINGLEMDS lctl set_param fail_loc=0x139
1487         test_mkdir -p $DIR/$tdir
1488         createmany -o $DIR/$tdir/t- 1000
1489         do_facet $SINGLEMDS lctl set_param fail_loc=0
1490
1491         TLOG=$DIR/$tfile.getstripe
1492         $GETSTRIPE $DIR/$tdir > $TLOG
1493         OBJS=`awk -vobj=0 '($1 == 0) { obj += 1 } END { print obj;}' $TLOG`
1494         unlinkmany $DIR/$tdir/t- 1000
1495         [ $OBJS -gt 0 ] && \
1496                 error "$OBJS objects created on OST-0.  See $TLOG" || pass
1497 }
1498 run_test 27u "skip object creation on OSC w/o objects =========="
1499
1500 test_27v() { # bug 4900
1501         [ "$OSTCOUNT" -lt "2" ] && skip_env "too few OSTs" && return
1502         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1503         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1504         remote_ost_nodsh && skip "remote OST with nodsh" && return
1505
1506         exhaust_all_precreations 0x215
1507         reset_enospc
1508
1509         test_mkdir -p $DIR/$tdir
1510         $SETSTRIPE -c 1 $DIR/$tdir         # 1 stripe / file
1511
1512         touch $DIR/$tdir/$tfile
1513         #define OBD_FAIL_TGT_DELAY_PRECREATE     0x705
1514         # all except ost1
1515         for (( i=1; i < OSTCOUNT; i++ )); do
1516                 do_facet ost$i lctl set_param fail_loc=0x705
1517         done
1518         local START=`date +%s`
1519         createmany -o $DIR/$tdir/$tfile 32
1520
1521         local FINISH=`date +%s`
1522         local TIMEOUT=`lctl get_param -n timeout`
1523         local PROCESS=$((FINISH - START))
1524         [ $PROCESS -ge $((TIMEOUT / 2)) ] && \
1525                error "$FINISH - $START >= $TIMEOUT / 2"
1526         sleep $((TIMEOUT / 2 - PROCESS))
1527         reset_enospc
1528 }
1529 run_test 27v "skip object creation on slow OST ================="
1530
1531 test_27w() { # bug 10997
1532         test_mkdir -p $DIR/$tdir || error "mkdir failed"
1533         $SETSTRIPE -S 65536 $DIR/$tdir/f0 || error "setstripe failed"
1534         [ $($GETSTRIPE -S $DIR/$tdir/f0) -ne 65536 ] &&
1535                 error "stripe size $size != 65536" || true
1536         [ $($GETSTRIPE -d $DIR/$tdir | grep -c "stripe_count") -ne 1 ] &&
1537                 error "$GETSTRIPE -d $DIR/$tdir failed" || true
1538 }
1539 run_test 27w "check $SETSTRIPE -S option"
1540
1541 test_27wa() {
1542         [ "$OSTCOUNT" -lt "2" ] &&
1543                 skip_env "skipping multiple stripe count/offset test" && return
1544
1545         test_mkdir -p $DIR/$tdir || error "mkdir failed"
1546         for i in $(seq 1 $OSTCOUNT); do
1547                 offset=$((i - 1))
1548                 $SETSTRIPE -c $i -i $offset $DIR/$tdir/f$i ||
1549                         error "setstripe -c $i -i $offset failed"
1550                 count=$($GETSTRIPE -c $DIR/$tdir/f$i)
1551                 index=$($GETSTRIPE -i $DIR/$tdir/f$i)
1552                 [ $count -ne $i ] && error "stripe count $count != $i" || true
1553                 [ $index -ne $offset ] &&
1554                         error "stripe offset $index != $offset" || true
1555         done
1556 }
1557 run_test 27wa "check $SETSTRIPE -c -i options"
1558
1559 test_27x() {
1560         remote_ost_nodsh && skip "remote OST with nodsh" && return
1561         [ "$OSTCOUNT" -lt "2" ] && skip_env "$OSTCOUNT < 2 OSTs" && return
1562         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1563         OFFSET=$(($OSTCOUNT - 1))
1564         OSTIDX=0
1565         local OST=$(ostname_from_index $OSTIDX)
1566
1567         test_mkdir -p $DIR/$tdir
1568         $SETSTRIPE -c 1 $DIR/$tdir      # 1 stripe per file
1569         do_facet ost$((OSTIDX + 1)) lctl set_param -n obdfilter.$OST.degraded 1
1570         sleep_maxage
1571         createmany -o $DIR/$tdir/$tfile $OSTCOUNT
1572         for i in `seq 0 $OFFSET`; do
1573                 [ `$GETSTRIPE $DIR/$tdir/$tfile$i | grep -A 10 obdidx | awk '{print $1}' | grep -w "$OSTIDX"` ] &&
1574                 error "OST0 was degraded but new created file still use it"
1575         done
1576         do_facet ost$((OSTIDX + 1)) lctl set_param -n obdfilter.$OST.degraded 0
1577 }
1578 run_test 27x "create files while OST0 is degraded"
1579
1580 test_27y() {
1581         [ "$OSTCOUNT" -lt "2" ] && skip_env "$OSTCOUNT < 2 OSTs -- skipping" && return
1582         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1583         remote_ost_nodsh && skip "remote OST with nodsh" && return
1584         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1585
1586         local mdtosc=$(get_mdtosc_proc_path $SINGLEMDS $FSNAME-OST0000)
1587         local last_id=$(do_facet $SINGLEMDS lctl get_param -n \
1588             osc.$mdtosc.prealloc_last_id)
1589         local next_id=$(do_facet $SINGLEMDS lctl get_param -n \
1590             osc.$mdtosc.prealloc_next_id)
1591         local fcount=$((last_id - next_id))
1592         [ $fcount -eq 0 ] && skip "not enough space on OST0" && return
1593         [ $fcount -gt $OSTCOUNT ] && fcount=$OSTCOUNT
1594
1595         local MDS_OSCS=$(do_facet $SINGLEMDS lctl dl |
1596                          awk '/[oO][sS][cC].*md[ts]/ { print $4 }')
1597         local OST_DEACTIVE_IDX=-1
1598         local OSC
1599         local OSTIDX
1600         local OST
1601
1602         for OSC in $MDS_OSCS; do
1603                 OST=$(osc_to_ost $OSC)
1604                 OSTIDX=$(index_from_ostuuid $OST)
1605                 if [ $OST_DEACTIVE_IDX == -1 ]; then
1606                         OST_DEACTIVE_IDX=$OSTIDX
1607                 fi
1608                 if [ $OSTIDX != $OST_DEACTIVE_IDX ]; then
1609                         echo $OSC "is Deactivated:"
1610                         do_facet $SINGLEMDS lctl --device  %$OSC deactivate
1611                 fi
1612         done
1613
1614         OSTIDX=$(index_from_ostuuid $OST)
1615         mkdir -p $DIR/$tdir
1616         $SETSTRIPE -c 1 $DIR/$tdir      # 1 stripe / file
1617
1618         for OSC in $MDS_OSCS; do
1619                 OST=$(osc_to_ost $OSC)
1620                 OSTIDX=$(index_from_ostuuid $OST)
1621                 if [ $OSTIDX == $OST_DEACTIVE_IDX ]; then
1622                         echo $OST "is degraded:"
1623                         do_facet ost$((OSTIDX+1)) lctl set_param -n \
1624                                                 obdfilter.$OST.degraded=1
1625                 fi
1626         done
1627
1628         sleep_maxage
1629         createmany -o $DIR/$tdir/$tfile $fcount
1630
1631         for OSC in $MDS_OSCS; do
1632                 OST=$(osc_to_ost $OSC)
1633                 OSTIDX=$(index_from_ostuuid $OST)
1634                 if [ $OSTIDX == $OST_DEACTIVE_IDX ]; then
1635                         echo $OST "is recovered from degraded:"
1636                         do_facet ost$((OSTIDX+1)) lctl set_param -n \
1637                                                 obdfilter.$OST.degraded=0
1638                 else
1639                         do_facet $SINGLEMDS lctl --device %$OSC activate
1640                 fi
1641         done
1642 }
1643 run_test 27y "create files while OST0 is degraded and the rest inactive"
1644
1645 check_seq_oid()
1646 {
1647         log "check file $1"
1648
1649         lmm_count=$($GETSTRIPE -c $1)
1650         lmm_seq=$($GETSTRIPE -v $1 | awk '/lmm_seq/ { print $2 }')
1651         lmm_oid=$($GETSTRIPE -v $1 | awk '/lmm_object_id/ { print $2 }')
1652
1653         local old_ifs="$IFS"
1654         IFS=$'[:]'
1655         fid=($($LFS path2fid $1))
1656         IFS="$old_ifs"
1657
1658         log "FID seq ${fid[1]}, oid ${fid[2]} ver ${fid[3]}"
1659         log "LOV seq $lmm_seq, oid $lmm_oid, count: $lmm_count"
1660
1661         # compare lmm_seq and lu_fid->f_seq
1662         [ $lmm_seq = ${fid[1]} ] || { error "SEQ mismatch"; return 1; }
1663         # compare lmm_object_id and lu_fid->oid
1664         [ $lmm_oid = ${fid[2]} ] || { error "OID mismatch"; return 2; }
1665
1666         # check the trusted.fid attribute of the OST objects of the file
1667         local have_obdidx=false
1668         local stripe_nr=0
1669         $GETSTRIPE $1 | while read obdidx oid hex seq; do
1670                 # skip lines up to and including "obdidx"
1671                 [ -z "$obdidx" ] && break
1672                 [ "$obdidx" = "obdidx" ] && have_obdidx=true && continue
1673                 $have_obdidx || continue
1674
1675                 local ost=$((obdidx + 1))
1676                 local dev=$(ostdevname $ost)
1677
1678                 if [ $(facet_fstype ost$ost) != ldiskfs ]; then
1679                         echo "Currently only works with ldiskfs-based OSTs"
1680                         continue
1681                 fi
1682
1683                 log "want: stripe:$stripe_nr ost:$obdidx oid:$oid/$hex seq:$seq"
1684
1685                 #don't unmount/remount the OSTs if we don't need to do that
1686                 #local dir=$(facet_mntpt ost$ost)
1687                 #stop ost$dev
1688                 #do_facet ost$dev mount -t $FSTYPE $dev $dir $OST_MOUNT_OPTS ||
1689                 #       { error "mounting $dev as $FSTYPE failed"; return 3; }
1690                 #local obj_file=$(do_facet ost$ost find $dir/O/$seq -name $oid)
1691                 #local ff=$(do_facet ost$ost $LL_DECODE_FILTER_FID $obj_file)
1692                 seq=$(echo $seq | sed -e "s/^0x//g")
1693                 if [ $seq == 0 ]; then
1694                         oid_hex=$(echo $oid)
1695                 else
1696                         oid_hex=$(echo $hex | sed -e "s/^0x//g")
1697                 fi
1698                 local obj_file="O/$seq/d$((oid %32))/$oid_hex"
1699                 local ff=$(do_facet ost$ost "$DEBUGFS -c -R 'stat $obj_file' \
1700                            $dev 2>/dev/null" | grep "parent=")
1701
1702                 [ -z "$ff" ] && error "$obj_file: no filter_fid info"
1703
1704                 echo "$ff" | sed -e 's#.*objid=#got: objid=#'
1705
1706                 #do_facet ost$ost umount -d $dir
1707                 #start ost$ost $dev $OST_MOUNT_OPTS
1708
1709                 # /mnt/O/0/d23/23: objid=23 seq=0 parent=[0x200000400:0x1e:0x1]
1710                 # fid: objid=23 seq=0 parent=[0x200000400:0x1e:0x0] stripe=1
1711                 local ff_parent=$(echo $ff|sed -e 's/.*parent=.//')
1712                 local ff_pseq=$(echo $ff_parent | cut -d: -f1)
1713                 local ff_poid=$(echo $ff_parent | cut -d: -f2)
1714                 local ff_pstripe=$(echo $ff_parent | sed -e 's/.*stripe=//')
1715
1716                 # compare lmm_seq and filter_fid->ff_parent.f_seq
1717                 [ $ff_pseq = $lmm_seq ] ||
1718                         error "FF parent SEQ $ff_pseq != $lmm_seq"
1719                 # compare lmm_object_id and filter_fid->ff_parent.f_oid
1720                 [ $ff_poid = $lmm_oid ] ||
1721                         error "FF parent OID $ff_poid != $lmm_oid"
1722                 [ $ff_pstripe = $stripe_nr ] ||
1723                         error "FF stripe $ff_pstripe != $stripe_nr"
1724
1725                 stripe_nr=$((stripe_nr + 1))
1726         done
1727 }
1728
1729 test_27z() {
1730         remote_ost_nodsh && skip "remote OST with nodsh" && return
1731         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1732         test_mkdir -p $DIR/$tdir
1733
1734         $SETSTRIPE -c 1 -i 0 -S 64k $DIR/$tdir/$tfile-1 ||
1735                 { error "setstripe -c -1 failed"; return 1; }
1736         # We need to send a write to every object to get parent FID info set.
1737         # This _should_ also work for setattr, but does not currently.
1738         # touch $DIR/$tdir/$tfile-1 ||
1739         dd if=/dev/zero of=$DIR/$tdir/$tfile-1 bs=1M count=1 ||
1740                 { error "dd $tfile-1 failed"; return 2; }
1741         $SETSTRIPE -c -1 -i $((OSTCOUNT - 1)) -S 1M $DIR/$tdir/$tfile-2 ||
1742                 { error "setstripe -c -1 failed"; return 3; }
1743         dd if=/dev/zero of=$DIR/$tdir/$tfile-2 bs=1M count=$OSTCOUNT ||
1744                 { error "dd $tfile-2 failed"; return 4; }
1745
1746         # make sure write RPCs have been sent to OSTs
1747         sync; sleep 5; sync
1748
1749         check_seq_oid $DIR/$tdir/$tfile-1 || return 5
1750         check_seq_oid $DIR/$tdir/$tfile-2 || return 6
1751 }
1752 run_test 27z "check SEQ/OID on the MDT and OST filesystems"
1753
1754 test_27A() { # b=19102
1755         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1756         local restore_size=$($GETSTRIPE -S $MOUNT)
1757         local restore_count=$($GETSTRIPE -c $MOUNT)
1758         local restore_offset=$($GETSTRIPE -i $MOUNT)
1759         $SETSTRIPE -c 0 -i -1 -S 0 $MOUNT
1760         local default_size=$($GETSTRIPE -S $MOUNT)
1761         local default_count=$($GETSTRIPE -c $MOUNT)
1762         local default_offset=$($GETSTRIPE -i $MOUNT)
1763         local dsize=$((1024 * 1024))
1764         [ $default_size -eq $dsize ] ||
1765                 error "stripe size $default_size != $dsize"
1766         [ $default_count -eq 1 ] || error "stripe count $default_count != 1"
1767         [ $default_offset -eq -1 ] ||error "stripe offset $default_offset != -1"
1768         $SETSTRIPE -c $restore_count -i $restore_offset -S $restore_size $MOUNT
1769 }
1770 run_test 27A "check filesystem-wide default LOV EA values"
1771
1772 # createtest also checks that device nodes are created and
1773 # then visible correctly (#2091)
1774 test_28() { # bug 2091
1775         test_mkdir $DIR/d28
1776         $CREATETEST $DIR/d28/ct || error
1777 }
1778 run_test 28 "create/mknod/mkdir with bad file types ============"
1779
1780 test_29() {
1781         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1782         cancel_lru_locks mdc
1783         test_mkdir $DIR/d29
1784         touch $DIR/d29/foo
1785         log 'first d29'
1786         ls -l $DIR/d29
1787
1788         declare -i LOCKCOUNTORIG=0
1789         for lock_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_count); do
1790                 let LOCKCOUNTORIG=$LOCKCOUNTORIG+$lock_count
1791         done
1792         [ $LOCKCOUNTORIG -eq 0 ] && echo "No mdc lock count" && return 1
1793
1794         declare -i LOCKUNUSEDCOUNTORIG=0
1795         for unused_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_unused_count); do
1796                 let LOCKUNUSEDCOUNTORIG=$LOCKUNUSEDCOUNTORIG+$unused_count
1797         done
1798
1799         log 'second d29'
1800         ls -l $DIR/d29
1801         log 'done'
1802
1803         declare -i LOCKCOUNTCURRENT=0
1804         for lock_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_count); do
1805                 let LOCKCOUNTCURRENT=$LOCKCOUNTCURRENT+$lock_count
1806         done
1807
1808         declare -i LOCKUNUSEDCOUNTCURRENT=0
1809         for unused_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_unused_count); do
1810                 let LOCKUNUSEDCOUNTCURRENT=$LOCKUNUSEDCOUNTCURRENT+$unused_count
1811         done
1812
1813         if [ "$LOCKCOUNTCURRENT" -gt "$LOCKCOUNTORIG" ]; then
1814                 lctl set_param -n ldlm.dump_namespaces ""
1815                 error "CURRENT: $LOCKCOUNTCURRENT > $LOCKCOUNTORIG"
1816                 $LCTL dk | sort -k4 -t: > $TMP/test_29.dk
1817                 log "dumped log to $TMP/test_29.dk (bug 5793)"
1818                 return 2
1819         fi
1820         if [ "$LOCKUNUSEDCOUNTCURRENT" -gt "$LOCKUNUSEDCOUNTORIG" ]; then
1821                 error "UNUSED: $LOCKUNUSEDCOUNTCURRENT > $LOCKUNUSEDCOUNTORIG"
1822                 $LCTL dk | sort -k4 -t: > $TMP/test_29.dk
1823                 log "dumped log to $TMP/test_29.dk (bug 5793)"
1824                 return 3
1825         fi
1826 }
1827 run_test 29 "IT_GETATTR regression  ============================"
1828
1829 test_30a() { # was test_30
1830         cp `which ls` $DIR || cp /bin/ls $DIR
1831         $DIR/ls / || error
1832         rm $DIR/ls
1833 }
1834 run_test 30a "execute binary from Lustre (execve) =============="
1835
1836 test_30b() {
1837         cp `which ls` $DIR || cp /bin/ls $DIR
1838         chmod go+rx $DIR/ls
1839         $RUNAS $DIR/ls / || error
1840         rm $DIR/ls
1841 }
1842 run_test 30b "execute binary from Lustre as non-root ==========="
1843
1844 test_30c() { # b=22376
1845         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1846         cp `which ls` $DIR || cp /bin/ls $DIR
1847         chmod a-rw $DIR/ls
1848         cancel_lru_locks mdc
1849         cancel_lru_locks osc
1850         $RUNAS $DIR/ls / || error
1851         rm -f $DIR/ls
1852 }
1853 run_test 30c "execute binary from Lustre without read perms ===="
1854
1855 test_31a() {
1856         $OPENUNLINK $DIR/f31 $DIR/f31 || error
1857         $CHECKSTAT -a $DIR/f31 || error
1858 }
1859 run_test 31a "open-unlink file =================================="
1860
1861 test_31b() {
1862         touch $DIR/f31 || error
1863         ln $DIR/f31 $DIR/f31b || error
1864         $MULTIOP $DIR/f31b Ouc || error
1865         $CHECKSTAT -t file $DIR/f31 || error
1866 }
1867 run_test 31b "unlink file with multiple links while open ======="
1868
1869 test_31c() {
1870         touch $DIR/f31 || error
1871         ln $DIR/f31 $DIR/f31c || error
1872         multiop_bg_pause $DIR/f31 O_uc || return 1
1873         MULTIPID=$!
1874         $MULTIOP $DIR/f31c Ouc
1875         kill -USR1 $MULTIPID
1876         wait $MULTIPID
1877 }
1878 run_test 31c "open-unlink file with multiple links ============="
1879
1880 test_31d() {
1881         opendirunlink $DIR/d31d $DIR/d31d || error
1882         $CHECKSTAT -a $DIR/d31d || error
1883 }
1884 run_test 31d "remove of open directory ========================="
1885
1886 test_31e() { # bug 2904
1887         check_kernel_version 34 || return 0
1888         openfilleddirunlink $DIR/d31e || error
1889 }
1890 run_test 31e "remove of open non-empty directory ==============="
1891
1892 test_31f() { # bug 4554
1893         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1894         set -vx
1895         test_mkdir $DIR/d31f
1896         $SETSTRIPE -S 1048576 -c 1 $DIR/d31f
1897         cp /etc/hosts $DIR/d31f
1898         ls -l $DIR/d31f
1899         $GETSTRIPE $DIR/d31f/hosts
1900         multiop_bg_pause $DIR/d31f D_c || return 1
1901         MULTIPID=$!
1902
1903         rm -rv $DIR/d31f || error "first of $DIR/d31f"
1904         test_mkdir $DIR/d31f
1905         $SETSTRIPE -S 1048576 -c 1 $DIR/d31f
1906         cp /etc/hosts $DIR/d31f
1907         ls -l $DIR/d31f
1908         $GETSTRIPE $DIR/d31f/hosts
1909         multiop_bg_pause $DIR/d31f D_c || return 1
1910         MULTIPID2=$!
1911
1912         kill -USR1 $MULTIPID || error "first opendir $MULTIPID not running"
1913         wait $MULTIPID || error "first opendir $MULTIPID failed"
1914
1915         sleep 6
1916
1917         kill -USR1 $MULTIPID2 || error "second opendir $MULTIPID not running"
1918         wait $MULTIPID2 || error "second opendir $MULTIPID2 failed"
1919         set +vx
1920 }
1921 run_test 31f "remove of open directory with open-unlink file ==="
1922
1923 test_31g() {
1924         echo "-- cross directory link --"
1925         test_mkdir $DIR/d31ga
1926         test_mkdir $DIR/d31gb
1927         touch $DIR/d31ga/f
1928         ln $DIR/d31ga/f $DIR/d31gb/g
1929         $CHECKSTAT -t file $DIR/d31ga/f || error "source"
1930         [ `stat -c%h $DIR/d31ga/f` == '2' ] || error "source nlink"
1931         $CHECKSTAT -t file $DIR/d31gb/g || error "target"
1932         [ `stat -c%h $DIR/d31gb/g` == '2' ] || error "target nlink"
1933 }
1934 run_test 31g "cross directory link==============="
1935
1936 test_31h() {
1937         echo "-- cross directory link --"
1938         test_mkdir $DIR/d31h
1939         test_mkdir $DIR/d31h/dir
1940         touch $DIR/d31h/f
1941         ln $DIR/d31h/f $DIR/d31h/dir/g
1942         $CHECKSTAT -t file $DIR/d31h/f || error "source"
1943         [ `stat -c%h $DIR/d31h/f` == '2' ] || error "source nlink"
1944         $CHECKSTAT -t file $DIR/d31h/dir/g || error "target"
1945         [ `stat -c%h $DIR/d31h/dir/g` == '2' ] || error "target nlink"
1946 }
1947 run_test 31h "cross directory link under child==============="
1948
1949 test_31i() {
1950         echo "-- cross directory link --"
1951         test_mkdir $DIR/d31i
1952         test_mkdir $DIR/d31i/dir
1953         touch $DIR/d31i/dir/f
1954         ln $DIR/d31i/dir/f $DIR/d31i/g
1955         $CHECKSTAT -t file $DIR/d31i/dir/f || error "source"
1956         [ `stat -c%h $DIR/d31i/dir/f` == '2' ] || error "source nlink"
1957         $CHECKSTAT -t file $DIR/d31i/g || error "target"
1958         [ `stat -c%h $DIR/d31i/g` == '2' ] || error "target nlink"
1959 }
1960 run_test 31i "cross directory link under parent==============="
1961
1962
1963 test_31j() {
1964         test_mkdir $DIR/d31j
1965         test_mkdir $DIR/d31j/dir1
1966         ln $DIR/d31j/dir1 $DIR/d31j/dir2 && error "ln for dir"
1967         link $DIR/d31j/dir1 $DIR/d31j/dir3 && error "link for dir"
1968         mlink $DIR/d31j/dir1 $DIR/d31j/dir4 && error "mlink for dir"
1969         mlink $DIR/d31j/dir1 $DIR/d31j/dir1 && error "mlink to the same dir"
1970         return 0
1971 }
1972 run_test 31j "link for directory==============="
1973
1974
1975 test_31k() {
1976         test_mkdir $DIR/d31k
1977         touch $DIR/d31k/s
1978         touch $DIR/d31k/exist
1979         mlink $DIR/d31k/s $DIR/d31k/t || error "mlink"
1980         mlink $DIR/d31k/s $DIR/d31k/exist && error "mlink to exist file"
1981         mlink $DIR/d31k/s $DIR/d31k/s && error "mlink to the same file"
1982         mlink $DIR/d31k/s $DIR/d31k && error "mlink to parent dir"
1983         mlink $DIR/d31k $DIR/d31k/s && error "mlink parent dir to target"
1984         mlink $DIR/d31k/not-exist $DIR/d31k/foo && error "mlink non-existing to new"
1985         mlink $DIR/d31k/not-exist $DIR/d31k/s && error "mlink non-existing to exist"
1986         return 0
1987 }
1988 run_test 31k "link to file: the same, non-existing, dir==============="
1989
1990 test_31m() {
1991         test_mkdir $DIR/d31m
1992         touch $DIR/d31m/s
1993         test_mkdir $DIR/d31m2
1994         touch $DIR/d31m2/exist
1995         mlink $DIR/d31m/s $DIR/d31m2/t || error "mlink"
1996         mlink $DIR/d31m/s $DIR/d31m2/exist && error "mlink to exist file"
1997         mlink $DIR/d31m/s $DIR/d31m2 && error "mlink to parent dir"
1998         mlink $DIR/d31m2 $DIR/d31m/s && error "mlink parent dir to target"
1999         mlink $DIR/d31m/not-exist $DIR/d31m2/foo && error "mlink non-existing to new"
2000         mlink $DIR/d31m/not-exist $DIR/d31m2/s && error "mlink non-existing to exist"
2001         return 0
2002 }
2003 run_test 31m "link to file: the same, non-existing, dir==============="
2004
2005 cleanup_test32_mount() {
2006         trap 0
2007         $UMOUNT $DIR/$tdir/ext2-mountpoint
2008 }
2009
2010 test_32a() {
2011         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2012         echo "== more mountpoints and symlinks ================="
2013         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2014         trap cleanup_test32_mount EXIT
2015         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2016         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2017         $CHECKSTAT -t dir $DIR/$tdir/ext2-mountpoint/.. || error
2018         cleanup_test32_mount
2019 }
2020 run_test 32a "stat d32a/ext2-mountpoint/.. ====================="
2021
2022 test_32b() {
2023         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2024         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2025         trap cleanup_test32_mount EXIT
2026         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2027         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2028         ls -al $DIR/$tdir/ext2-mountpoint/.. || error
2029         cleanup_test32_mount
2030 }
2031 run_test 32b "open d32b/ext2-mountpoint/.. ====================="
2032
2033 test_32c() {
2034         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2035         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2036         trap cleanup_test32_mount EXIT
2037         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2038         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2039         test_mkdir -p $DIR/$tdir/d2/test_dir
2040         $CHECKSTAT -t dir $DIR/$tdir/ext2-mountpoint/../d2/test_dir || error
2041         cleanup_test32_mount
2042 }
2043 run_test 32c "stat d32c/ext2-mountpoint/../d2/test_dir ========="
2044
2045 test_32d() {
2046         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2047         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2048         trap cleanup_test32_mount EXIT
2049         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2050         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2051         test_mkdir -p $DIR/$tdir/d2/test_dir
2052         ls -al $DIR/$tdir/ext2-mountpoint/../d2/test_dir || error
2053         cleanup_test32_mount
2054 }
2055 run_test 32d "open d32d/ext2-mountpoint/../d2/test_dir ========="
2056
2057 test_32e() {
2058         [ -e $DIR/d32e ] && rm -fr $DIR/d32e
2059         test_mkdir -p $DIR/d32e/tmp
2060         TMP_DIR=$DIR/d32e/tmp
2061         ln -s $DIR/d32e $TMP_DIR/symlink11
2062         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2063         $CHECKSTAT -t link $DIR/d32e/tmp/symlink11 || error
2064         $CHECKSTAT -t link $DIR/d32e/symlink01 || error
2065 }
2066 run_test 32e "stat d32e/symlink->tmp/symlink->lustre-subdir ===="
2067
2068 test_32f() {
2069         [ -e $DIR/d32f ] && rm -fr $DIR/d32f
2070         test_mkdir -p $DIR/d32f/tmp
2071         TMP_DIR=$DIR/d32f/tmp
2072         ln -s $DIR/d32f $TMP_DIR/symlink11
2073         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2074         ls $DIR/d32f/tmp/symlink11  || error
2075         ls $DIR/d32f/symlink01 || error
2076 }
2077 run_test 32f "open d32f/symlink->tmp/symlink->lustre-subdir ===="
2078
2079 test_32g() {
2080         TMP_DIR=$DIR/$tdir/tmp
2081         test_mkdir -p $DIR/$tdir/tmp
2082         test_mkdir $DIR/${tdir}2
2083         ln -s $DIR/${tdir}2 $TMP_DIR/symlink12
2084         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2085         $CHECKSTAT -t link $TMP_DIR/symlink12 || error
2086         $CHECKSTAT -t link $DIR/$tdir/symlink02 || error
2087         $CHECKSTAT -t dir -f $TMP_DIR/symlink12 || error
2088         $CHECKSTAT -t dir -f $DIR/$tdir/symlink02 || error
2089 }
2090 run_test 32g "stat d32g/symlink->tmp/symlink->lustre-subdir/${tdir}2"
2091
2092 test_32h() {
2093         rm -fr $DIR/$tdir $DIR/${tdir}2
2094         TMP_DIR=$DIR/$tdir/tmp
2095         test_mkdir -p $DIR/$tdir/tmp
2096         test_mkdir $DIR/${tdir}2
2097         ln -s $DIR/${tdir}2 $TMP_DIR/symlink12
2098         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2099         ls $TMP_DIR/symlink12 || error
2100         ls $DIR/$tdir/symlink02  || error
2101 }
2102 run_test 32h "open d32h/symlink->tmp/symlink->lustre-subdir/${tdir}2"
2103
2104 test_32i() {
2105         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2106         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2107         trap cleanup_test32_mount EXIT
2108         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2109         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2110         touch $DIR/$tdir/test_file
2111         $CHECKSTAT -t file $DIR/$tdir/ext2-mountpoint/../test_file || error
2112         cleanup_test32_mount
2113 }
2114 run_test 32i "stat d32i/ext2-mountpoint/../test_file ==========="
2115
2116 test_32j() {
2117         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2118         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2119         trap cleanup_test32_mount EXIT
2120         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2121         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2122         touch $DIR/$tdir/test_file
2123         cat $DIR/$tdir/ext2-mountpoint/../test_file || error
2124         cleanup_test32_mount
2125 }
2126 run_test 32j "open d32j/ext2-mountpoint/../test_file ==========="
2127
2128 test_32k() {
2129         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2130         rm -fr $DIR/$tdir
2131         trap cleanup_test32_mount EXIT
2132         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2133         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint
2134         test_mkdir -p $DIR/$tdir/d2
2135         touch $DIR/$tdir/d2/test_file || error
2136         $CHECKSTAT -t file $DIR/$tdir/ext2-mountpoint/../d2/test_file || error
2137         cleanup_test32_mount
2138 }
2139 run_test 32k "stat d32k/ext2-mountpoint/../d2/test_file ========"
2140
2141 test_32l() {
2142         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2143         rm -fr $DIR/$tdir
2144         trap cleanup_test32_mount EXIT
2145         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2146         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2147         test_mkdir -p $DIR/$tdir/d2
2148         touch $DIR/$tdir/d2/test_file
2149         cat  $DIR/$tdir/ext2-mountpoint/../d2/test_file || error
2150         cleanup_test32_mount
2151 }
2152 run_test 32l "open d32l/ext2-mountpoint/../d2/test_file ========"
2153
2154 test_32m() {
2155         rm -fr $DIR/d32m
2156         test_mkdir -p $DIR/d32m/tmp
2157         TMP_DIR=$DIR/d32m/tmp
2158         ln -s $DIR $TMP_DIR/symlink11
2159         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2160         $CHECKSTAT -t link $DIR/d32m/tmp/symlink11 || error
2161         $CHECKSTAT -t link $DIR/d32m/symlink01 || error
2162 }
2163 run_test 32m "stat d32m/symlink->tmp/symlink->lustre-root ======"
2164
2165 test_32n() {
2166         rm -fr $DIR/d32n
2167         test_mkdir -p $DIR/d32n/tmp
2168         TMP_DIR=$DIR/d32n/tmp
2169         ln -s $DIR $TMP_DIR/symlink11
2170         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2171         ls -l $DIR/d32n/tmp/symlink11  || error
2172         ls -l $DIR/d32n/symlink01 || error
2173 }
2174 run_test 32n "open d32n/symlink->tmp/symlink->lustre-root ======"
2175
2176 test_32o() {
2177         rm -fr $DIR/d32o $DIR/$tfile
2178         touch $DIR/$tfile
2179         test_mkdir -p $DIR/d32o/tmp
2180         TMP_DIR=$DIR/d32o/tmp
2181         ln -s $DIR/$tfile $TMP_DIR/symlink12
2182         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2183         $CHECKSTAT -t link $DIR/d32o/tmp/symlink12 || error
2184         $CHECKSTAT -t link $DIR/d32o/symlink02 || error
2185         $CHECKSTAT -t file -f $DIR/d32o/tmp/symlink12 || error
2186         $CHECKSTAT -t file -f $DIR/d32o/symlink02 || error
2187 }
2188 run_test 32o "stat d32o/symlink->tmp/symlink->lustre-root/$tfile"
2189
2190 test_32p() {
2191     log 32p_1
2192         rm -fr $DIR/d32p
2193     log 32p_2
2194         rm -f $DIR/$tfile
2195     log 32p_3
2196         touch $DIR/$tfile
2197     log 32p_4
2198         test_mkdir -p $DIR/d32p/tmp
2199     log 32p_5
2200         TMP_DIR=$DIR/d32p/tmp
2201     log 32p_6
2202         ln -s $DIR/$tfile $TMP_DIR/symlink12
2203     log 32p_7
2204         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2205     log 32p_8
2206         cat $DIR/d32p/tmp/symlink12 || error
2207     log 32p_9
2208         cat $DIR/d32p/symlink02 || error
2209     log 32p_10
2210 }
2211 run_test 32p "open d32p/symlink->tmp/symlink->lustre-root/$tfile"
2212
2213 cleanup_testdir_mount() {
2214         trap 0
2215         $UMOUNT $DIR/$tdir
2216 }
2217
2218 test_32q() {
2219         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2220         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2221         trap cleanup_testdir_mount EXIT
2222         test_mkdir -p $DIR/$tdir
2223         touch $DIR/$tdir/under_the_mount
2224         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir
2225         ls $DIR/$tdir | grep "\<under_the_mount\>" && error
2226         cleanup_testdir_mount
2227 }
2228 run_test 32q "stat follows mountpoints in Lustre (should return error)"
2229
2230 test_32r() {
2231         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2232         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2233         trap cleanup_testdir_mount EXIT
2234         test_mkdir -p $DIR/$tdir
2235         touch $DIR/$tdir/under_the_mount
2236         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir
2237         ls $DIR/$tdir | grep -q under_the_mount && error || true
2238         cleanup_testdir_mount
2239 }
2240 run_test 32r "opendir follows mountpoints in Lustre (should return error)"
2241
2242 test_33aa() {
2243         rm -f $DIR/$tfile
2244         touch $DIR/$tfile
2245         chmod 444 $DIR/$tfile
2246         chown $RUNAS_ID $DIR/$tfile
2247         log 33_1
2248         $RUNAS $OPENFILE -f O_RDWR $DIR/$tfile && error || true
2249         log 33_2
2250 }
2251 run_test 33aa "write file with mode 444 (should return error) ===="
2252
2253 test_33a() {
2254         rm -fr $DIR/d33
2255         test_mkdir -p $DIR/d33
2256         chown $RUNAS_ID $DIR/d33
2257         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $DIR/d33/f33|| error "create"
2258         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $DIR/d33/f33 && \
2259                 error "open RDWR" || true
2260 }
2261 run_test 33a "test open file(mode=0444) with O_RDWR (should return error)"
2262
2263 test_33b() {
2264         rm -fr $DIR/d33
2265         test_mkdir -p $DIR/d33
2266         chown $RUNAS_ID $DIR/d33
2267         $RUNAS $OPENFILE -f 1286739555 $DIR/d33/f33 && error "create" || true
2268 }
2269 run_test 33b "test open file with malformed flags (No panic and return error)"
2270
2271 test_33c() {
2272         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2273         local ostnum
2274         local ostname
2275         local write_bytes
2276         local all_zeros
2277
2278         remote_ost_nodsh && skip "remote OST with nodsh" && return
2279         all_zeros=:
2280         rm -fr $DIR/d33
2281         test_mkdir -p $DIR/d33
2282         # Read: 0, Write: 4, create/destroy: 2/0, stat: 1, punch: 0
2283
2284         sync
2285         for ostnum in $(seq $OSTCOUNT); do
2286                 # test-framework's OST numbering is one-based, while Lustre's
2287                 # is zero-based
2288                 ostname=$(printf "$FSNAME-OST%.4d" $((ostnum - 1)))
2289                 # Parsing llobdstat's output sucks; we could grep the /proc
2290                 # path, but that's likely to not be as portable as using the
2291                 # llobdstat utility.  So we parse lctl output instead.
2292                 write_bytes=$(do_facet ost$ostnum lctl get_param -n \
2293                         obdfilter/$ostname/stats |
2294                         awk '/^write_bytes/ {print $7}' )
2295                 echo "baseline_write_bytes@$OSTnum/$ostname=$write_bytes"
2296                 if (( ${write_bytes:-0} > 0 ))
2297                 then
2298                         all_zeros=false
2299                         break;
2300                 fi
2301         done
2302
2303         $all_zeros || return 0
2304
2305         # Write four bytes
2306         echo foo > $DIR/d33/bar
2307         # Really write them
2308         sync
2309
2310         # Total up write_bytes after writing.  We'd better find non-zeros.
2311         for ostnum in $(seq $OSTCOUNT); do
2312                 ostname=$(printf "$FSNAME-OST%.4d" $((ostnum - 1)))
2313                 write_bytes=$(do_facet ost$ostnum lctl get_param -n \
2314                         obdfilter/$ostname/stats |
2315                         awk '/^write_bytes/ {print $7}' )
2316                 echo "write_bytes@$OSTnum/$ostname=$write_bytes"
2317                 if (( ${write_bytes:-0} > 0 ))
2318                 then
2319                         all_zeros=false
2320                         break;
2321                 fi
2322         done
2323
2324         if $all_zeros
2325         then
2326                 for ostnum in $(seq $OSTCOUNT); do
2327                         ostname=$(printf "$FSNAME-OST%.4d" $((ostnum - 1)))
2328                         echo "Check that write_bytes is present in obdfilter/*/stats:"
2329                         do_facet ost$ostnum lctl get_param -n \
2330                                 obdfilter/$ostname/stats
2331                 done
2332                 error "OST not keeping write_bytes stats (b22312)"
2333         fi
2334 }
2335 run_test 33c "test llobdstat and write_bytes"
2336
2337 test_33d() {
2338         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
2339         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2340         local MDTIDX=1
2341         local remote_dir=$DIR/$tdir/remote_dir
2342
2343         mkdir -p $DIR/$tdir
2344         $LFS mkdir -i $MDTIDX $remote_dir ||
2345                 error "create remote directory failed"
2346
2347         touch $remote_dir/$tfile
2348         chmod 444 $remote_dir/$tfile
2349         chown $RUNAS_ID $remote_dir/$tfile
2350
2351         $RUNAS $OPENFILE -f O_RDWR $DIR/$tfile && error || true
2352
2353         chown $RUNAS_ID $remote_dir
2354         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $remote_dir/f33 ||
2355                                         error "create" || true
2356         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $remote_dir/f33 &&
2357                                     error "open RDWR" || true
2358         $RUNAS $OPENFILE -f 1286739555 $remote_dir/f33 &&
2359                                     error "create" || true
2360 }
2361 run_test 33d "openfile with 444 modes and malformed flags under remote dir"
2362
2363 TEST_34_SIZE=${TEST_34_SIZE:-2000000000000}
2364 test_34a() {
2365         rm -f $DIR/f34
2366         $MCREATE $DIR/f34 || error
2367         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" || error
2368         $TRUNCATE $DIR/f34 $TEST_34_SIZE || error
2369         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" || error
2370         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2371 }
2372 run_test 34a "truncate file that has not been opened ==========="
2373
2374 test_34b() {
2375         [ ! -f $DIR/f34 ] && test_34a
2376         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2377         $OPENFILE -f O_RDONLY $DIR/f34
2378         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" || error
2379         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2380 }
2381 run_test 34b "O_RDONLY opening file doesn't create objects ====="
2382
2383 test_34c() {
2384         [ ! -f $DIR/f34 ] && test_34a
2385         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2386         $OPENFILE -f O_RDWR $DIR/f34
2387         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" && error
2388         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2389 }
2390 run_test 34c "O_RDWR opening file-with-size works =============="
2391
2392 test_34d() {
2393         [ ! -f $DIR/f34 ] && test_34a
2394         dd if=/dev/zero of=$DIR/f34 conv=notrunc bs=4k count=1 || error
2395         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2396         rm $DIR/f34
2397 }
2398 run_test 34d "write to sparse file ============================="
2399
2400 test_34e() {
2401         rm -f $DIR/f34e
2402         $MCREATE $DIR/f34e || error
2403         $TRUNCATE $DIR/f34e 1000 || error
2404         $CHECKSTAT -s 1000 $DIR/f34e || error
2405         $OPENFILE -f O_RDWR $DIR/f34e
2406         $CHECKSTAT -s 1000 $DIR/f34e || error
2407 }
2408 run_test 34e "create objects, some with size and some without =="
2409
2410 test_34f() { # bug 6242, 6243
2411         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2412         SIZE34F=48000
2413         rm -f $DIR/f34f
2414         $MCREATE $DIR/f34f || error
2415         $TRUNCATE $DIR/f34f $SIZE34F || error "truncating $DIR/f3f to $SIZE34F"
2416         dd if=$DIR/f34f of=$TMP/f34f
2417         $CHECKSTAT -s $SIZE34F $TMP/f34f || error "$TMP/f34f not $SIZE34F bytes"
2418         dd if=/dev/zero of=$TMP/f34fzero bs=$SIZE34F count=1
2419         cmp $DIR/f34f $TMP/f34fzero || error "$DIR/f34f not all zero"
2420         cmp $TMP/f34f $TMP/f34fzero || error "$TMP/f34f not all zero"
2421         rm $TMP/f34f $TMP/f34fzero $DIR/f34f
2422 }
2423 run_test 34f "read from a file with no objects until EOF ======="
2424
2425 test_34g() {
2426         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2427         dd if=/dev/zero of=$DIR/$tfile bs=1 count=100 seek=$TEST_34_SIZE || error
2428         $TRUNCATE $DIR/$tfile $((TEST_34_SIZE / 2))|| error
2429         $CHECKSTAT -s $((TEST_34_SIZE / 2)) $DIR/$tfile || error "truncate failed"
2430         cancel_lru_locks osc
2431         $CHECKSTAT -s $((TEST_34_SIZE / 2)) $DIR/$tfile || \
2432                 error "wrong size after lock cancel"
2433
2434         $TRUNCATE $DIR/$tfile $TEST_34_SIZE || error
2435         $CHECKSTAT -s $TEST_34_SIZE $DIR/$tfile || \
2436                 error "expanding truncate failed"
2437         cancel_lru_locks osc
2438         $CHECKSTAT -s $TEST_34_SIZE $DIR/$tfile || \
2439                 error "wrong expanded size after lock cancel"
2440 }
2441 run_test 34g "truncate long file ==============================="
2442
2443 test_34h() {
2444         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2445         local gid=10
2446         local sz=1000
2447
2448         dd if=/dev/zero of=$DIR/$tfile bs=1M count=10 || error
2449         $MULTIOP $DIR/$tfile OG${gid}T${sz}g${gid}c &
2450         MULTIPID=$!
2451         sleep 2
2452
2453         if [[ `ps h -o comm -p $MULTIPID` == "multiop" ]]; then
2454                 error "Multiop blocked on ftruncate, pid=$MULTIPID"
2455                 kill -9 $MULTIPID
2456         fi
2457         wait $MULTIPID
2458         local nsz=`stat -c %s $DIR/$tfile`
2459         [[ $nsz == $sz ]] || error "New size wrong $nsz != $sz"
2460 }
2461 run_test 34h "ftruncate file under grouplock should not block"
2462
2463 test_35a() {
2464         cp /bin/sh $DIR/f35a
2465         chmod 444 $DIR/f35a
2466         chown $RUNAS_ID $DIR/f35a
2467         $RUNAS $DIR/f35a && error || true
2468         rm $DIR/f35a
2469 }
2470 run_test 35a "exec file with mode 444 (should return and not leak) ====="
2471
2472 test_36a() {
2473         rm -f $DIR/f36
2474         utime $DIR/f36 || error
2475 }
2476 run_test 36a "MDS utime check (mknod, utime) ==================="
2477
2478 test_36b() {
2479         echo "" > $DIR/f36
2480         utime $DIR/f36 || error
2481 }
2482 run_test 36b "OST utime check (open, utime) ===================="
2483
2484 test_36c() {
2485         rm -f $DIR/d36/f36
2486         test_mkdir $DIR/d36
2487         chown $RUNAS_ID $DIR/d36
2488         $RUNAS utime $DIR/d36/f36 || error
2489 }
2490 run_test 36c "non-root MDS utime check (mknod, utime) =========="
2491
2492 test_36d() {
2493         [ ! -d $DIR/d36 ] && test_36c
2494         echo "" > $DIR/d36/f36
2495         $RUNAS utime $DIR/d36/f36 || error
2496 }
2497 run_test 36d "non-root OST utime check (open, utime) ==========="
2498
2499 test_36e() {
2500         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID -- skipping" && return
2501         test_mkdir -p $DIR/$tdir
2502         touch $DIR/$tdir/$tfile
2503         $RUNAS utime $DIR/$tdir/$tfile && \
2504                 error "utime worked, expected failure" || true
2505 }
2506 run_test 36e "utime on non-owned file (should return error) ===="
2507
2508 subr_36fh() {
2509         local fl="$1"
2510         local LANG_SAVE=$LANG
2511         local LC_LANG_SAVE=$LC_LANG
2512         export LANG=C LC_LANG=C # for date language
2513
2514         DATESTR="Dec 20  2000"
2515         test_mkdir -p $DIR/$tdir
2516         lctl set_param fail_loc=$fl
2517         date; date +%s
2518         cp /etc/hosts $DIR/$tdir/$tfile
2519         sync & # write RPC generated with "current" inode timestamp, but delayed
2520         sleep 1
2521         touch --date="$DATESTR" $DIR/$tdir/$tfile # setattr timestamp in past
2522         LS_BEFORE="`ls -l $DIR/$tdir/$tfile`" # old timestamp from client cache
2523         cancel_lru_locks osc
2524         LS_AFTER="`ls -l $DIR/$tdir/$tfile`"  # timestamp from OST object
2525         date; date +%s
2526         [ "$LS_BEFORE" != "$LS_AFTER" ] && \
2527                 echo "BEFORE: $LS_BEFORE" && \
2528                 echo "AFTER : $LS_AFTER" && \
2529                 echo "WANT  : $DATESTR" && \
2530                 error "$DIR/$tdir/$tfile timestamps changed" || true
2531
2532         export LANG=$LANG_SAVE LC_LANG=$LC_LANG_SAVE
2533 }
2534
2535 test_36f() {
2536         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2537         #define OBD_FAIL_OST_BRW_PAUSE_BULK 0x214
2538         subr_36fh "0x80000214"
2539 }
2540 run_test 36f "utime on file racing with OST BRW write =========="
2541
2542 test_36g() {
2543         remote_ost_nodsh && skip "remote OST with nodsh" && return
2544         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2545         local fmd_max_age
2546         local fmd_before
2547         local fmd_after
2548
2549         test_mkdir -p $DIR/$tdir
2550         fmd_max_age=$(do_facet ost1 \
2551                 "lctl get_param -n obdfilter.*.client_cache_seconds 2> /dev/null | \
2552                 head -n 1")
2553
2554         fmd_before=$(do_facet ost1 \
2555                 "awk '/ll_fmd_cache/ {print \\\$2}' /proc/slabinfo")
2556         touch $DIR/$tdir/$tfile
2557         sleep $((fmd_max_age + 12))
2558         fmd_after=$(do_facet ost1 \
2559                 "awk '/ll_fmd_cache/ {print \\\$2}' /proc/slabinfo")
2560
2561         echo "fmd_before: $fmd_before"
2562         echo "fmd_after: $fmd_after"
2563         [ "$fmd_after" -gt "$fmd_before" ] && \
2564                 echo "AFTER: $fmd_after > BEFORE: $fmd_before" && \
2565                 error "fmd didn't expire after ping" || true
2566 }
2567 run_test 36g "filter mod data cache expiry ====================="
2568
2569 test_36h() {
2570         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2571         #define OBD_FAIL_OST_BRW_PAUSE_BULK2 0x227
2572         subr_36fh "0x80000227"
2573 }
2574 run_test 36h "utime on file racing with OST BRW write =========="
2575
2576 # test_37 - duplicate with tests 32q 32r
2577
2578 test_38() {
2579         local file=$DIR/$tfile
2580         touch $file
2581         openfile -f O_DIRECTORY $file
2582         local RC=$?
2583         local ENOTDIR=20
2584         [ $RC -eq 0 ] && error "opened file $file with O_DIRECTORY" || true
2585         [ $RC -eq $ENOTDIR ] || error "error $RC should be ENOTDIR ($ENOTDIR)"
2586 }
2587 run_test 38 "open a regular file with O_DIRECTORY should return -ENOTDIR ==="
2588
2589 test_39() {
2590         touch $DIR/$tfile
2591         touch $DIR/${tfile}2
2592 #       ls -l  $DIR/$tfile $DIR/${tfile}2
2593 #       ls -lu  $DIR/$tfile $DIR/${tfile}2
2594 #       ls -lc  $DIR/$tfile $DIR/${tfile}2
2595         sleep 2
2596         $OPENFILE -f O_CREAT:O_TRUNC:O_WRONLY $DIR/${tfile}2
2597         if [ ! $DIR/${tfile}2 -nt $DIR/$tfile ]; then
2598                 echo "mtime"
2599                 ls -l --full-time $DIR/$tfile $DIR/${tfile}2
2600                 echo "atime"
2601                 ls -lu --full-time $DIR/$tfile $DIR/${tfile}2
2602                 echo "ctime"
2603                 ls -lc --full-time $DIR/$tfile $DIR/${tfile}2
2604                 error "O_TRUNC didn't change timestamps"
2605         fi
2606 }
2607 run_test 39 "mtime changed on create ==========================="
2608
2609 test_39b() {
2610         test_mkdir -p $DIR/$tdir
2611         cp -p /etc/passwd $DIR/$tdir/fopen
2612         cp -p /etc/passwd $DIR/$tdir/flink
2613         cp -p /etc/passwd $DIR/$tdir/funlink
2614         cp -p /etc/passwd $DIR/$tdir/frename
2615         ln $DIR/$tdir/funlink $DIR/$tdir/funlink2
2616
2617         sleep 1
2618         echo "aaaaaa" >> $DIR/$tdir/fopen
2619         echo "aaaaaa" >> $DIR/$tdir/flink
2620         echo "aaaaaa" >> $DIR/$tdir/funlink
2621         echo "aaaaaa" >> $DIR/$tdir/frename
2622
2623         local open_new=`stat -c %Y $DIR/$tdir/fopen`
2624         local link_new=`stat -c %Y $DIR/$tdir/flink`
2625         local unlink_new=`stat -c %Y $DIR/$tdir/funlink`
2626         local rename_new=`stat -c %Y $DIR/$tdir/frename`
2627
2628         cat $DIR/$tdir/fopen > /dev/null
2629         ln $DIR/$tdir/flink $DIR/$tdir/flink2
2630         rm -f $DIR/$tdir/funlink2
2631         mv -f $DIR/$tdir/frename $DIR/$tdir/frename2
2632
2633         for (( i=0; i < 2; i++ )) ; do
2634                 local open_new2=`stat -c %Y $DIR/$tdir/fopen`
2635                 local link_new2=`stat -c %Y $DIR/$tdir/flink`
2636                 local unlink_new2=`stat -c %Y $DIR/$tdir/funlink`
2637                 local rename_new2=`stat -c %Y $DIR/$tdir/frename2`
2638
2639                 [ $open_new2 -eq $open_new ] || error "open file reverses mtime"
2640                 [ $link_new2 -eq $link_new ] || error "link file reverses mtime"
2641                 [ $unlink_new2 -eq $unlink_new ] || error "unlink file reverses mtime"
2642                 [ $rename_new2 -eq $rename_new ] || error "rename file reverses mtime"
2643
2644                 cancel_lru_locks osc
2645                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2646         done
2647 }
2648 run_test 39b "mtime change on open, link, unlink, rename  ======"
2649
2650 # this should be set to past
2651 TEST_39_MTIME=`date -d "1 year ago" +%s`
2652
2653 # bug 11063
2654 test_39c() {
2655         touch $DIR1/$tfile
2656         sleep 2
2657         local mtime0=`stat -c %Y $DIR1/$tfile`
2658
2659         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
2660         local mtime1=`stat -c %Y $DIR1/$tfile`
2661         [ "$mtime1" = $TEST_39_MTIME ] || \
2662                 error "mtime is not set to past: $mtime1, should be $TEST_39_MTIME"
2663
2664         local d1=`date +%s`
2665         echo hello >> $DIR1/$tfile
2666         local d2=`date +%s`
2667         local mtime2=`stat -c %Y $DIR1/$tfile`
2668         [ "$mtime2" -ge "$d1" ] && [ "$mtime2" -le "$d2" ] || \
2669                 error "mtime is not updated on write: $d1 <= $mtime2 <= $d2"
2670
2671         mv $DIR1/$tfile $DIR1/$tfile-1
2672
2673         for (( i=0; i < 2; i++ )) ; do
2674                 local mtime3=`stat -c %Y $DIR1/$tfile-1`
2675                 [ "$mtime2" = "$mtime3" ] || \
2676                         error "mtime ($mtime2) changed (to $mtime3) on rename"
2677
2678                 cancel_lru_locks osc
2679                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2680         done
2681 }
2682 run_test 39c "mtime change on rename ==========================="
2683
2684 # bug 21114
2685 test_39d() {
2686         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2687         touch $DIR1/$tfile
2688
2689         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
2690
2691         for (( i=0; i < 2; i++ )) ; do
2692                 local mtime=`stat -c %Y $DIR1/$tfile`
2693                 [ $mtime = $TEST_39_MTIME ] || \
2694                         error "mtime($mtime) is not set to $TEST_39_MTIME"
2695
2696                 cancel_lru_locks osc
2697                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2698         done
2699 }
2700 run_test 39d "create, utime, stat =============================="
2701
2702 # bug 21114
2703 test_39e() {
2704         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2705         touch $DIR1/$tfile
2706         local mtime1=`stat -c %Y $DIR1/$tfile`
2707
2708         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
2709
2710         for (( i=0; i < 2; i++ )) ; do
2711                 local mtime2=`stat -c %Y $DIR1/$tfile`
2712                 [ $mtime2 = $TEST_39_MTIME ] || \
2713                         error "mtime($mtime2) is not set to $TEST_39_MTIME"
2714
2715                 cancel_lru_locks osc
2716                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2717         done
2718 }
2719 run_test 39e "create, stat, utime, stat ========================"
2720
2721 # bug 21114
2722 test_39f() {
2723         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2724         touch $DIR1/$tfile
2725         mtime1=`stat -c %Y $DIR1/$tfile`
2726
2727         sleep 2
2728         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
2729
2730         for (( i=0; i < 2; i++ )) ; do
2731                 local mtime2=`stat -c %Y $DIR1/$tfile`
2732                 [ $mtime2 = $TEST_39_MTIME ] || \
2733                         error "mtime($mtime2) is not set to $TEST_39_MTIME"
2734
2735                 cancel_lru_locks osc
2736                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2737         done
2738 }
2739 run_test 39f "create, stat, sleep, utime, stat ================="
2740
2741 # bug 11063
2742 test_39g() {
2743         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2744         echo hello >> $DIR1/$tfile
2745         local mtime1=`stat -c %Y $DIR1/$tfile`
2746
2747         sleep 2
2748         chmod o+r $DIR1/$tfile
2749
2750         for (( i=0; i < 2; i++ )) ; do
2751                 local mtime2=`stat -c %Y $DIR1/$tfile`
2752                 [ "$mtime1" = "$mtime2" ] || \
2753                         error "lost mtime: $mtime2, should be $mtime1"
2754
2755                 cancel_lru_locks osc
2756                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2757         done
2758 }
2759 run_test 39g "write, chmod, stat ==============================="
2760
2761 # bug 11063
2762 test_39h() {
2763         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2764         touch $DIR1/$tfile
2765         sleep 1
2766
2767         local d1=`date`
2768         echo hello >> $DIR1/$tfile
2769         local mtime1=`stat -c %Y $DIR1/$tfile`
2770
2771         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
2772         local d2=`date`
2773         if [ "$d1" != "$d2" ]; then
2774                 echo "write and touch not within one second"
2775         else
2776                 for (( i=0; i < 2; i++ )) ; do
2777                         local mtime2=`stat -c %Y $DIR1/$tfile`
2778                         [ "$mtime2" = $TEST_39_MTIME ] || \
2779                                 error "lost mtime: $mtime2, should be $TEST_39_MTIME"
2780
2781                         cancel_lru_locks osc
2782                         if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2783                 done
2784         fi
2785 }
2786 run_test 39h "write, utime within one second, stat ============="
2787
2788 test_39i() {
2789         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2790         touch $DIR1/$tfile
2791         sleep 1
2792
2793         echo hello >> $DIR1/$tfile
2794         local mtime1=`stat -c %Y $DIR1/$tfile`
2795
2796         mv $DIR1/$tfile $DIR1/$tfile-1
2797
2798         for (( i=0; i < 2; i++ )) ; do
2799                 local mtime2=`stat -c %Y $DIR1/$tfile-1`
2800
2801                 [ "$mtime1" = "$mtime2" ] || \
2802                         error "lost mtime: $mtime2, should be $mtime1"
2803
2804                 cancel_lru_locks osc
2805                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2806         done
2807 }
2808 run_test 39i "write, rename, stat =============================="
2809
2810 test_39j() {
2811         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2812         start_full_debug_logging
2813         touch $DIR1/$tfile
2814         sleep 1
2815
2816         #define OBD_FAIL_OSC_DELAY_SETTIME       0x412
2817         lctl set_param fail_loc=0x80000412
2818         multiop_bg_pause $DIR1/$tfile oO_RDWR:w2097152_c ||
2819                 error "multiop failed"
2820         local multipid=$!
2821         local mtime1=`stat -c %Y $DIR1/$tfile`
2822
2823         mv $DIR1/$tfile $DIR1/$tfile-1
2824
2825         kill -USR1 $multipid
2826         wait $multipid || error "multiop close failed"
2827
2828         for (( i=0; i < 2; i++ )) ; do
2829                 local mtime2=`stat -c %Y $DIR1/$tfile-1`
2830                 [ "$mtime1" = "$mtime2" ] ||
2831                         error "mtime is lost on close: $mtime2, " \
2832                               "should be $mtime1"
2833
2834                 cancel_lru_locks osc
2835                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2836         done
2837         lctl set_param fail_loc=0
2838         stop_full_debug_logging
2839 }
2840 run_test 39j "write, rename, close, stat ======================="
2841
2842 test_39k() {
2843         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2844         touch $DIR1/$tfile
2845         sleep 1
2846
2847         multiop_bg_pause $DIR1/$tfile oO_RDWR:w2097152_c || error "multiop failed"
2848         local multipid=$!
2849         local mtime1=`stat -c %Y $DIR1/$tfile`
2850
2851         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
2852
2853         kill -USR1 $multipid
2854         wait $multipid || error "multiop close failed"
2855
2856         for (( i=0; i < 2; i++ )) ; do
2857                 local mtime2=`stat -c %Y $DIR1/$tfile`
2858
2859                 [ "$mtime2" = $TEST_39_MTIME ] || \
2860                         error "mtime is lost on close: $mtime2, should be $TEST_39_MTIME"
2861
2862                 cancel_lru_locks osc
2863                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2864         done
2865 }
2866 run_test 39k "write, utime, close, stat ========================"
2867
2868 # this should be set to future
2869 TEST_39_ATIME=`date -d "1 year" +%s`
2870
2871 test_39l() {
2872         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2873         remote_mds_nodsh && skip "remote MDS with nodsh" && return
2874         local atime_diff=$(do_facet $SINGLEMDS \
2875                                 lctl get_param -n mdd.*MDT0000*.atime_diff)
2876         rm -rf $DIR/$tdir
2877         mkdir -p $DIR/$tdir
2878
2879         # test setting directory atime to future
2880         touch -a -d @$TEST_39_ATIME $DIR/$tdir
2881         local atime=$(stat -c %X $DIR/$tdir)
2882         [ "$atime" = $TEST_39_ATIME ] || \
2883                 error "atime is not set to future: $atime, $TEST_39_ATIME"
2884
2885         # test setting directory atime from future to now
2886         local d1=$(date +%s)
2887         ls $DIR/$tdir
2888         local d2=$(date +%s)
2889
2890         cancel_lru_locks mdc
2891         atime=$(stat -c %X $DIR/$tdir)
2892         [ "$atime" -ge "$d1" -a "$atime" -le "$d2" ] || \
2893                 error "atime is not updated from future: $atime, $d1<atime<$d2"
2894
2895         do_facet $SINGLEMDS lctl set_param -n mdd.*MDT0000*.atime_diff=2
2896         sleep 3
2897
2898         # test setting directory atime when now > dir atime + atime_diff
2899         d1=$(date +%s)
2900         ls $DIR/$tdir
2901         d2=$(date +%s)
2902         cancel_lru_locks mdc
2903         atime=$(stat -c %X $DIR/$tdir)
2904         [ "$atime" -ge "$d1" -a "$atime" -le "$d2" ] || \
2905                 error "atime is not updated  : $atime, should be $d2"
2906
2907         do_facet $SINGLEMDS lctl set_param -n mdd.*MDT0000*.atime_diff=60
2908         sleep 3
2909
2910         # test not setting directory atime when now < dir atime + atime_diff
2911         ls $DIR/$tdir
2912         cancel_lru_locks mdc
2913         atime=$(stat -c %X $DIR/$tdir)
2914         [ "$atime" -ge "$d1" -a "$atime" -le "$d2" ] || \
2915                 error "atime is updated to $atime, should remain $d1<atime<$d2"
2916
2917         do_facet $SINGLEMDS \
2918                 lctl set_param -n mdd.*MDT0000*.atime_diff=$atime_diff
2919 }
2920 run_test 39l "directory atime update ==========================="
2921
2922 test_39m() {
2923         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2924         touch $DIR1/$tfile
2925         sleep 2
2926         local far_past_mtime=$(date -d "May 29 1953" +%s)
2927         local far_past_atime=$(date -d "Dec 17 1903" +%s)
2928
2929         touch -m -d @$far_past_mtime $DIR1/$tfile
2930         touch -a -d @$far_past_atime $DIR1/$tfile
2931
2932         for (( i=0; i < 2; i++ )) ; do
2933                 local timestamps=$(stat -c "%X %Y" $DIR1/$tfile)
2934                 [ "$timestamps" = "$far_past_atime $far_past_mtime" ] || \
2935                         error "atime or mtime set incorrectly"
2936
2937                 cancel_lru_locks osc
2938                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2939         done
2940 }
2941 run_test 39m "test atime and mtime before 1970"
2942
2943 test_40() {
2944         dd if=/dev/zero of=$DIR/f40 bs=4096 count=1
2945         $RUNAS $OPENFILE -f O_WRONLY:O_TRUNC $DIR/f40 && error
2946         $CHECKSTAT -t file -s 4096 $DIR/f40 || error
2947 }
2948 run_test 40 "failed open(O_TRUNC) doesn't truncate ============="
2949
2950 test_41() {
2951         # bug 1553
2952         small_write $DIR/f41 18
2953 }
2954 run_test 41 "test small file write + fstat ====================="
2955
2956 count_ost_writes() {
2957         lctl get_param -n osc.*.stats |
2958             awk -vwrites=0 '/ost_write/ { writes += $2 } END { print writes; }'
2959 }
2960
2961 # decent default
2962 WRITEBACK_SAVE=500
2963 DIRTY_RATIO_SAVE=40
2964 MAX_DIRTY_RATIO=50
2965 BG_DIRTY_RATIO_SAVE=10
2966 MAX_BG_DIRTY_RATIO=25
2967
2968 start_writeback() {
2969         trap 0
2970         # in 2.6, restore /proc/sys/vm/dirty_writeback_centisecs,
2971         # dirty_ratio, dirty_background_ratio
2972         if [ -f /proc/sys/vm/dirty_writeback_centisecs ]; then
2973                 sysctl -w vm.dirty_writeback_centisecs=$WRITEBACK_SAVE
2974                 sysctl -w vm.dirty_background_ratio=$BG_DIRTY_RATIO_SAVE
2975                 sysctl -w vm.dirty_ratio=$DIRTY_RATIO_SAVE
2976         else
2977                 # if file not here, we are a 2.4 kernel
2978                 kill -CONT `pidof kupdated`
2979         fi
2980 }
2981
2982 stop_writeback() {
2983         # setup the trap first, so someone cannot exit the test at the
2984         # exact wrong time and mess up a machine
2985         trap start_writeback EXIT
2986         # in 2.6, save and 0 /proc/sys/vm/dirty_writeback_centisecs
2987         if [ -f /proc/sys/vm/dirty_writeback_centisecs ]; then
2988                 WRITEBACK_SAVE=`sysctl -n vm.dirty_writeback_centisecs`
2989                 sysctl -w vm.dirty_writeback_centisecs=0
2990                 sysctl -w vm.dirty_writeback_centisecs=0
2991                 # save and increase /proc/sys/vm/dirty_ratio
2992                 DIRTY_RATIO_SAVE=`sysctl -n vm.dirty_ratio`
2993                 sysctl -w vm.dirty_ratio=$MAX_DIRTY_RATIO
2994                 # save and increase /proc/sys/vm/dirty_background_ratio
2995                 BG_DIRTY_RATIO_SAVE=`sysctl -n vm.dirty_background_ratio`
2996                 sysctl -w vm.dirty_background_ratio=$MAX_BG_DIRTY_RATIO
2997         else
2998                 # if file not here, we are a 2.4 kernel
2999                 kill -STOP `pidof kupdated`
3000         fi
3001 }
3002
3003 # ensure that all stripes have some grant before we test client-side cache
3004 setup_test42() {
3005         for i in `seq -f $DIR/f42-%g 1 $OSTCOUNT`; do
3006                 dd if=/dev/zero of=$i bs=4k count=1
3007                 rm $i
3008         done
3009 }
3010
3011 # Tests 42* verify that our behaviour is correct WRT caching, file closure,
3012 # file truncation, and file removal.
3013 test_42a() {
3014         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3015         setup_test42
3016         cancel_lru_locks osc
3017         stop_writeback
3018         sync; sleep 1; sync # just to be safe
3019         BEFOREWRITES=`count_ost_writes`
3020         lctl get_param -n osc.*[oO][sS][cC][_-]*.cur_grant_bytes | grep "[0-9]"
3021         dd if=/dev/zero of=$DIR/f42a bs=1024 count=100
3022         AFTERWRITES=`count_ost_writes`
3023         [ $BEFOREWRITES -eq $AFTERWRITES ] || \
3024                 error "$BEFOREWRITES < $AFTERWRITES"
3025         start_writeback
3026 }
3027 run_test 42a "ensure that we don't flush on close =============="
3028
3029 test_42b() {
3030         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3031         setup_test42
3032         cancel_lru_locks osc
3033         stop_writeback
3034         sync
3035         dd if=/dev/zero of=$DIR/f42b bs=1024 count=100
3036         BEFOREWRITES=`count_ost_writes`
3037         $MUNLINK $DIR/f42b || error "$MUNLINK $DIR/f42b: $?"
3038         AFTERWRITES=`count_ost_writes`
3039         if [ $BEFOREWRITES -lt $AFTERWRITES ]; then
3040                 error "$BEFOREWRITES < $AFTERWRITES on unlink"
3041         fi
3042         BEFOREWRITES=`count_ost_writes`
3043         sync || error "sync: $?"
3044         AFTERWRITES=`count_ost_writes`
3045         if [ $BEFOREWRITES -lt $AFTERWRITES ]; then
3046                 error "$BEFOREWRITES < $AFTERWRITES on sync"
3047         fi
3048         dmesg | grep 'error from obd_brw_async' && error 'error writing back'
3049         start_writeback
3050         return 0
3051 }
3052 run_test 42b "test destroy of file with cached dirty data ======"
3053
3054 # if these tests just want to test the effect of truncation,
3055 # they have to be very careful.  consider:
3056 # - the first open gets a {0,EOF}PR lock
3057 # - the first write conflicts and gets a {0, count-1}PW
3058 # - the rest of the writes are under {count,EOF}PW
3059 # - the open for truncate tries to match a {0,EOF}PR
3060 #   for the filesize and cancels the PWs.
3061 # any number of fixes (don't get {0,EOF} on open, match
3062 # composite locks, do smarter file size management) fix
3063 # this, but for now we want these tests to verify that
3064 # the cancellation with truncate intent works, so we
3065 # start the file with a full-file pw lock to match against
3066 # until the truncate.
3067 trunc_test() {
3068         test=$1
3069         file=$DIR/$test
3070         offset=$2
3071         cancel_lru_locks osc
3072         stop_writeback
3073         # prime the file with 0,EOF PW to match
3074         touch $file
3075         $TRUNCATE $file 0
3076         sync; sync
3077         # now the real test..
3078         dd if=/dev/zero of=$file bs=1024 count=100
3079         BEFOREWRITES=`count_ost_writes`
3080         $TRUNCATE $file $offset
3081         cancel_lru_locks osc
3082         AFTERWRITES=`count_ost_writes`
3083         start_writeback
3084 }
3085
3086 test_42c() {
3087         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3088         trunc_test 42c 1024
3089         [ $BEFOREWRITES -eq $AFTERWRITES ] && \
3090             error "beforewrites $BEFOREWRITES == afterwrites $AFTERWRITES on truncate"
3091         rm $file
3092 }
3093 run_test 42c "test partial truncate of file with cached dirty data"
3094
3095 test_42d() {
3096         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3097         trunc_test 42d 0
3098         [ $BEFOREWRITES -eq $AFTERWRITES ] || \
3099             error "beforewrites $BEFOREWRITES != afterwrites $AFTERWRITES on truncate"
3100         rm $file
3101 }
3102 run_test 42d "test complete truncate of file with cached dirty data"
3103
3104 test_42e() { # bug22074
3105         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3106         local TDIR=$DIR/${tdir}e
3107         local pagesz=$(page_size)
3108         local pages=16 # hardcoded 16 pages, don't change it.
3109         local files=$((OSTCOUNT * 500)) # hopefully 500 files on each OST
3110         local proc_osc0="osc.${FSNAME}-OST0000-osc-[^MDT]*"
3111         local max_dirty_mb
3112         local warmup_files
3113
3114         test_mkdir -p $DIR/${tdir}e
3115         $SETSTRIPE -c 1 $TDIR
3116         createmany -o $TDIR/f $files
3117
3118         max_dirty_mb=$($LCTL get_param -n $proc_osc0/max_dirty_mb)
3119
3120         # we assume that with $OSTCOUNT files, at least one of them will
3121         # be allocated on OST0.
3122         warmup_files=$((OSTCOUNT * max_dirty_mb))
3123         createmany -o $TDIR/w $warmup_files
3124
3125         # write a large amount of data into one file and sync, to get good
3126         # avail_grant number from OST.
3127         for ((i=0; i<$warmup_files; i++)); do
3128                 idx=$($GETSTRIPE -i $TDIR/w$i)
3129                 [ $idx -ne 0 ] && continue
3130                 dd if=/dev/zero of=$TDIR/w$i bs="$max_dirty_mb"M count=1
3131                 break
3132         done
3133         [ $i -gt $warmup_files ] && error "OST0 is still cold"
3134         sync
3135         $LCTL get_param $proc_osc0/cur_dirty_bytes
3136         $LCTL get_param $proc_osc0/cur_grant_bytes
3137
3138         # create as much dirty pages as we can while not to trigger the actual
3139         # RPCs directly. but depends on the env, VFS may trigger flush during this
3140         # period, hopefully we are good.
3141         for ((i=0; i<$warmup_files; i++)); do
3142                 idx=$($GETSTRIPE -i $TDIR/w$i)
3143                 [ $idx -ne 0 ] && continue
3144                 dd if=/dev/zero of=$TDIR/w$i bs=1M count=1 2>/dev/null
3145         done
3146         $LCTL get_param $proc_osc0/cur_dirty_bytes
3147         $LCTL get_param $proc_osc0/cur_grant_bytes
3148
3149         # perform the real test
3150         $LCTL set_param $proc_osc0/rpc_stats 0
3151         for ((;i<$files; i++)); do
3152                 [ $($GETSTRIPE -i $TDIR/f$i) -eq 0 ] || continue
3153                 dd if=/dev/zero of=$TDIR/f$i bs=$pagesz count=$pages 2>/dev/null
3154         done
3155         sync
3156         $LCTL get_param $proc_osc0/rpc_stats
3157
3158         local percent=0
3159         local have_ppr=false
3160         $LCTL get_param $proc_osc0/rpc_stats |
3161                 while read PPR RRPC RPCT RCUM BAR WRPC WPCT WCUM; do
3162                         # skip lines until we are at the RPC histogram data
3163                         [ "$PPR" == "pages" ] && have_ppr=true && continue
3164                         $have_ppr || continue
3165
3166                         # we only want the percent stat for < 16 pages
3167                         [ $(echo $PPR | tr -d ':') -ge $pages ] && break
3168
3169                         percent=$((percent + WPCT))
3170                         if [ $percent -gt 15 ]; then
3171                                 error "less than 16-pages write RPCs" \
3172                                       "$percent% > 15%"
3173                                 break
3174                         fi
3175                 done
3176         rm -rf $TDIR
3177 }
3178 run_test 42e "verify sub-RPC writes are not done synchronously"
3179
3180 test_43() {
3181         test_mkdir -p $DIR/$tdir
3182         cp -p /bin/ls $DIR/$tdir/$tfile
3183         $MULTIOP $DIR/$tdir/$tfile Ow_c &
3184         pid=$!
3185         # give multiop a chance to open
3186         sleep 1
3187
3188         $DIR/$tdir/$tfile && error || true
3189         kill -USR1 $pid
3190 }
3191 run_test 43 "execution of file opened for write should return -ETXTBSY"
3192
3193 test_43a() {
3194         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3195         test_mkdir -p $DIR/$tdir
3196         cp -p `which $MULTIOP` $DIR/$tdir/multiop ||
3197                         cp -p multiop $DIR/$tdir/multiop
3198         MULTIOP_PROG=$DIR/$tdir/multiop multiop_bg_pause $TMP/test43.junk O_c ||
3199                         return 1
3200         MULTIOP_PID=$!
3201         $MULTIOP $DIR/$tdir/multiop Oc && error "expected error, got success"
3202         kill -USR1 $MULTIOP_PID || return 2
3203         wait $MULTIOP_PID || return 3
3204         rm $TMP/test43.junk
3205 }
3206 run_test 43a "open(RDWR) of file being executed should return -ETXTBSY"
3207
3208 test_43b() {
3209         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3210         test_mkdir -p $DIR/$tdir
3211         cp -p `which $MULTIOP` $DIR/$tdir/multiop ||
3212                         cp -p multiop $DIR/$tdir/multiop
3213         MULTIOP_PROG=$DIR/$tdir/multiop multiop_bg_pause $TMP/test43.junk O_c ||
3214                         return 1
3215         MULTIOP_PID=$!
3216         $TRUNCATE $DIR/$tdir/multiop 0 && error "expected error, got success"
3217         kill -USR1 $MULTIOP_PID || return 2
3218         wait $MULTIOP_PID || return 3
3219         rm $TMP/test43.junk
3220 }
3221 run_test 43b "truncate of file being executed should return -ETXTBSY"
3222
3223 test_43c() {
3224         local testdir="$DIR/$tdir"
3225         test_mkdir -p $DIR/$tdir
3226         cp $SHELL $testdir/
3227         ( cd $(dirname $SHELL) && md5sum $(basename $SHELL) ) | \
3228                 ( cd $testdir && md5sum -c)
3229 }
3230 run_test 43c "md5sum of copy into lustre========================"
3231
3232 test_44() {
3233         [  "$OSTCOUNT" -lt "2" ] && skip_env "skipping 2-stripe test" && return
3234         dd if=/dev/zero of=$DIR/f1 bs=4k count=1 seek=1023
3235         dd if=$DIR/f1 bs=4k count=1 > /dev/null
3236 }
3237 run_test 44 "zero length read from a sparse stripe ============="
3238
3239 test_44a() {
3240     local nstripe=`$LCTL lov_getconfig $DIR | grep default_stripe_count: | \
3241                          awk '{print $2}'`
3242     [ -z "$nstripe" ] && skip "can't get stripe info" && return
3243     [ "$nstripe" -gt "$OSTCOUNT" ] && skip "Wrong default_stripe_count: $nstripe (OSTCOUNT: $OSTCOUNT)" && return
3244     local stride=`$LCTL lov_getconfig $DIR | grep default_stripe_size: | \
3245                       awk '{print $2}'`
3246     if [ $nstripe -eq 0 -o $nstripe -eq -1 ] ; then
3247         nstripe=`$LCTL lov_getconfig $DIR | grep obd_count: | awk '{print $2}'`
3248     fi
3249
3250     OFFSETS="0 $((stride/2)) $((stride-1))"
3251     for offset in $OFFSETS ; do
3252       for i in `seq 0 $((nstripe-1))`; do
3253         local GLOBALOFFSETS=""
3254         local size=$((((i + 2 * $nstripe )*$stride + $offset)))  # Bytes
3255         local myfn=$DIR/d44a-$size
3256         echo "--------writing $myfn at $size"
3257         ll_sparseness_write $myfn $size  || error "ll_sparseness_write"
3258         GLOBALOFFSETS="$GLOBALOFFSETS $size"
3259         ll_sparseness_verify $myfn $GLOBALOFFSETS \
3260                             || error "ll_sparseness_verify $GLOBALOFFSETS"
3261
3262         for j in `seq 0 $((nstripe-1))`; do
3263             size=$((((j + $nstripe )*$stride + $offset)))  # Bytes
3264             ll_sparseness_write $myfn $size || error "ll_sparseness_write"
3265             GLOBALOFFSETS="$GLOBALOFFSETS $size"
3266         done
3267         ll_sparseness_verify $myfn $GLOBALOFFSETS \
3268                             || error "ll_sparseness_verify $GLOBALOFFSETS"
3269         rm -f $myfn
3270       done
3271     done
3272 }
3273 run_test 44a "test sparse pwrite ==============================="
3274
3275 dirty_osc_total() {
3276         tot=0
3277         for d in `lctl get_param -n osc.*.cur_dirty_bytes`; do
3278                 tot=$(($tot + $d))
3279         done
3280         echo $tot
3281 }
3282 do_dirty_record() {
3283         before=`dirty_osc_total`
3284         echo executing "\"$*\""
3285         eval $*
3286         after=`dirty_osc_total`
3287         echo before $before, after $after
3288 }
3289 test_45() {
3290         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3291         f="$DIR/f45"
3292         # Obtain grants from OST if it supports it
3293         echo blah > ${f}_grant
3294         stop_writeback
3295         sync
3296         do_dirty_record "echo blah > $f"
3297         [ $before -eq $after ] && error "write wasn't cached"
3298         do_dirty_record "> $f"
3299         [ $before -gt $after ] || error "truncate didn't lower dirty count"
3300         do_dirty_record "echo blah > $f"
3301         [ $before -eq $after ] && error "write wasn't cached"
3302         do_dirty_record "sync"
3303         [ $before -gt $after ] || error "writeback didn't lower dirty count"
3304         do_dirty_record "echo blah > $f"
3305         [ $before -eq $after ] && error "write wasn't cached"
3306         do_dirty_record "cancel_lru_locks osc"
3307         [ $before -gt $after ] || error "lock cancellation didn't lower dirty count"
3308         start_writeback
3309 }
3310 run_test 45 "osc io page accounting ============================"
3311
3312 # in a 2 stripe file (lov.sh), page 1023 maps to page 511 in its object.  this
3313 # test tickles a bug where re-dirtying a page was failing to be mapped to the
3314 # objects offset and an assert hit when an rpc was built with 1023's mapped
3315 # offset 511 and 511's raw 511 offset. it also found general redirtying bugs.
3316 test_46() {
3317         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3318         f="$DIR/f46"
3319         stop_writeback
3320         sync
3321         dd if=/dev/zero of=$f bs=`page_size` seek=511 count=1
3322         sync
3323         dd conv=notrunc if=/dev/zero of=$f bs=`page_size` seek=1023 count=1
3324         dd conv=notrunc if=/dev/zero of=$f bs=`page_size` seek=511 count=1
3325         sync
3326         start_writeback
3327 }
3328 run_test 46 "dirtying a previously written page ================"
3329
3330 # test_47 is removed "Device nodes check" is moved to test_28
3331
3332 test_48a() { # bug 2399
3333         check_kernel_version 34 || return 0
3334         test_mkdir -p $DIR/$tdir
3335         cd $DIR/$tdir
3336         mv $DIR/$tdir $DIR/d48.new || error "move directory failed"
3337         test_mkdir $DIR/$tdir || error "recreate directory failed"
3338         touch foo || error "'touch foo' failed after recreating cwd"
3339         test_mkdir $DIR/$tdir/bar ||
3340                      error "'mkdir foo' failed after recreating cwd"
3341         if check_kernel_version 44; then
3342                 touch .foo || error "'touch .foo' failed after recreating cwd"
3343                 test_mkdir $DIR/$tdir/.bar ||
3344                               error "'mkdir .foo' failed after recreating cwd"
3345         fi
3346         ls . > /dev/null || error "'ls .' failed after recreating cwd"
3347         ls .. > /dev/null || error "'ls ..' failed after removing cwd"
3348         cd . || error "'cd .' failed after recreating cwd"
3349         test_mkdir . && error "'mkdir .' worked after recreating cwd"
3350         rmdir . && error "'rmdir .' worked after recreating cwd"
3351         ln -s . baz || error "'ln -s .' failed after recreating cwd"
3352         cd .. || error "'cd ..' failed after recreating cwd"
3353 }
3354 run_test 48a "Access renamed working dir (should return errors)="
3355
3356 test_48b() { # bug 2399
3357         check_kernel_version 34 || return 0
3358         rm -rf $DIR/$tdir
3359         test_mkdir -p $DIR/$tdir
3360         cd $DIR/$tdir
3361         rmdir $DIR/$tdir || error "remove cwd $DIR/$tdir failed"
3362         touch foo && error "'touch foo' worked after removing cwd"
3363         test_mkdir $DIR/$tdir/foo &&
3364                      error "'mkdir foo' worked after removing cwd"
3365         if check_kernel_version 44; then
3366                 touch .foo && error "'touch .foo' worked after removing cwd"
3367                 test_mkdir $DIR/$tdir/.foo &&
3368                               error "'mkdir .foo' worked after removing cwd"
3369         fi
3370         ls . > /dev/null && error "'ls .' worked after removing cwd"
3371         ls .. > /dev/null || error "'ls ..' failed after removing cwd"
3372         is_patchless || ( cd . && error "'cd .' worked after removing cwd" )
3373         test_mkdir $DIR/$tdir/. && error "'mkdir .' worked after removing cwd"
3374         rmdir . && error "'rmdir .' worked after removing cwd"
3375         ln -s . foo && error "'ln -s .' worked after removing cwd"
3376         cd .. || echo "'cd ..' failed after removing cwd `pwd`"  #bug 3517
3377 }
3378 run_test 48b "Access removed working dir (should return errors)="
3379
3380 test_48c() { # bug 2350
3381         check_kernel_version 36 || return 0
3382         #lctl set_param debug=-1
3383         #set -vx
3384         rm -rf $DIR/$tdir
3385         test_mkdir -p $DIR/$tdir/dir
3386         cd $DIR/$tdir/dir
3387         $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
3388         $TRACE touch foo && error "touch foo worked after removing cwd"
3389         $TRACE test_mkdir foo && error "'mkdir foo' worked after removing cwd"
3390         if check_kernel_version 44; then
3391                 touch .foo && error "touch .foo worked after removing cwd"
3392                 test_mkdir .foo && error "mkdir .foo worked after removing cwd"
3393         fi
3394         $TRACE ls . && error "'ls .' worked after removing cwd"
3395         $TRACE ls .. || error "'ls ..' failed after removing cwd"
3396         is_patchless || ( $TRACE cd . &&
3397                         error "'cd .' worked after removing cwd" )
3398         $TRACE test_mkdir . && error "'mkdir .' worked after removing cwd"
3399         $TRACE rmdir . && error "'rmdir .' worked after removing cwd"
3400         $TRACE ln -s . foo && error "'ln -s .' worked after removing cwd"
3401         $TRACE cd .. || echo "'cd ..' failed after removing cwd `pwd`" #bug 3415
3402 }
3403 run_test 48c "Access removed working subdir (should return errors)"
3404
3405 test_48d() { # bug 2350
3406         check_kernel_version 36 || return 0
3407         #lctl set_param debug=-1
3408         #set -vx
3409         rm -rf $DIR/$tdir
3410         test_mkdir -p $DIR/$tdir/dir
3411         cd $DIR/$tdir/dir
3412         $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
3413         $TRACE rmdir $DIR/$tdir || error "remove parent $DIR/$tdir failed"
3414         $TRACE touch foo && error "'touch foo' worked after removing parent"
3415         $TRACE test_mkdir foo && error "mkdir foo worked after removing parent"
3416         if check_kernel_version 44; then
3417                 touch .foo && error "'touch .foo' worked after removing parent"
3418                 test_mkdir .foo &&
3419                               error "mkdir .foo worked after removing parent"
3420         fi
3421         $TRACE ls . && error "'ls .' worked after removing parent"
3422         $TRACE ls .. && error "'ls ..' worked after removing parent"
3423         is_patchless || ( $TRACE cd . &&
3424                         error "'cd .' worked after recreate parent" )
3425         $TRACE test_mkdir . && error "'mkdir .' worked after removing parent"
3426         $TRACE rmdir . && error "'rmdir .' worked after removing parent"
3427         $TRACE ln -s . foo && error "'ln -s .' worked after removing parent"
3428         is_patchless || ( $TRACE cd .. &&
3429                         error "'cd ..' worked after removing parent" || true )
3430 }
3431 run_test 48d "Access removed parent subdir (should return errors)"
3432
3433 test_48e() { # bug 4134
3434         check_kernel_version 41 || return 0
3435         #lctl set_param debug=-1
3436         #set -vx
3437         rm -rf $DIR/$tdir
3438         test_mkdir -p $DIR/$tdir/dir
3439         cd $DIR/$tdir/dir
3440         $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
3441         $TRACE rmdir $DIR/$tdir || error "remove parent $DIR/$tdir failed"
3442         $TRACE touch $DIR/$tdir || error "'touch $DIR/$tdir' failed"
3443         $TRACE chmod +x $DIR/$tdir || error "'chmod +x $DIR/$tdir' failed"
3444         # On a buggy kernel addition of "touch foo" after cd .. will
3445         # produce kernel oops in lookup_hash_it
3446         touch ../foo && error "'cd ..' worked after recreate parent"
3447         cd $DIR
3448         $TRACE rm $DIR/$tdir || error "rm '$DIR/$tdir' failed"
3449 }
3450 run_test 48e "Access to recreated parent subdir (should return errors)"
3451
3452 test_49() { # LU-1030
3453         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3454         # get ost1 size - lustre-OST0000
3455         ost1_size=$(do_facet ost1 lfs df |grep ${ost1_svc} |awk '{print $4}')
3456         # write 800M at maximum
3457         [ $ost1_size -gt 819200 ] && ost1_size=819200
3458
3459         lfs setstripe -c 1 -i 0 $DIR/$tfile
3460         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((ost1_size >> 2)) &
3461         local dd_pid=$!
3462
3463         # change max_pages_per_rpc while writing the file
3464         local osc1_mppc=osc.$(get_osc_import_name client ost1).max_pages_per_rpc
3465         local orig_mppc=`$LCTL get_param -n $osc1_mppc`
3466         # loop until dd process exits
3467         while ps ax -opid | grep -wq $dd_pid; do
3468                 $LCTL set_param $osc1_mppc=$((RANDOM % 256 + 1))
3469                 sleep $((RANDOM % 5 + 1))
3470         done
3471         # restore original max_pages_per_rpc
3472         $LCTL set_param $osc1_mppc=$orig_mppc
3473         rm $DIR/$tfile || error "rm $DIR/$tfile failed"
3474 }
3475 run_test 49 "Change max_pages_per_rpc won't break osc extent"
3476
3477 test_50() {
3478         # bug 1485
3479         test_mkdir $DIR/$tdir
3480         cd $DIR/$tdir
3481         ls /proc/$$/cwd || error
3482 }
3483 run_test 50 "special situations: /proc symlinks  ==============="
3484
3485 test_51a() {    # was test_51
3486         # bug 1516 - create an empty entry right after ".." then split dir
3487         test_mkdir $DIR/$tdir
3488         touch $DIR/$tdir/foo
3489         $MCREATE $DIR/$tdir/bar
3490         rm $DIR/$tdir/foo
3491         createmany -m $DIR/$tdir/longfile 201
3492         FNUM=202
3493         while [ `ls -sd $DIR/$tdir | awk '{ print $1 }'` -eq 4 ]; do
3494                 $MCREATE $DIR/$tdir/longfile$FNUM
3495                 FNUM=$(($FNUM + 1))
3496                 echo -n "+"
3497         done
3498         echo
3499         ls -l $DIR/$tdir > /dev/null || error
3500 }
3501 run_test 51a "special situations: split htree with empty entry =="
3502
3503 export NUMTEST=70000
3504 test_51b() {
3505         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3506         local BASE=$DIR/$tdir
3507
3508         test_mkdir -p $BASE
3509
3510         local mdtidx=$(printf "%04x" $($LFS getstripe -M $BASE))
3511         local numfree=$(lctl get_param -n mdc.$FSNAME-MDT$mdtidx*.filesfree)
3512         [ $numfree -lt 21000 ] && skip "not enough free inodes ($numfree)" &&
3513                 return
3514
3515         [ $numfree -lt $NUMTEST ] && NUMTEST=$(($numfree - 50)) &&
3516                 echo "reduced count to $NUMTEST due to inodes"
3517
3518         # need to check free space for the directories as well
3519         local blkfree=$(lctl get_param -n mdc.$FSNAME-MDT$mdtidx*.kbytesavail)
3520         numfree=$((blkfree / 4))
3521         [ $numfree -lt $NUMTEST ] && NUMTEST=$(($numfree - 50)) &&
3522                 echo "reduced count to $NUMTEST due to blocks"
3523
3524         createmany -d $BASE/d $NUMTEST && echo $NUMTEST > $BASE/fnum ||
3525                 echo "failed" > $BASE/fnum
3526 }
3527 run_test 51b "exceed 64k subdirectory nlink limit"
3528
3529 test_51ba() { # LU-993
3530         local BASE=$DIR/$tdir
3531         # unlink all but 100 subdirectories, then check it still works
3532         local LEFT=100
3533         [ -f $BASE/fnum ] && local NUMPREV=$(cat $BASE/fnum) && rm $BASE/fnum
3534
3535         [ "$NUMPREV" != "failed" ] && NUMTEST=$NUMPREV
3536         local DELETE=$((NUMTEST - LEFT))
3537
3538         # continue on to run this test even if 51b didn't finish,
3539         # just to delete the many subdirectories created.
3540         [ ! -d "${BASE}/d1" ] && skip "test_51b() not run" && return 0
3541
3542         # for ldiskfs the nlink count should be 1, but this is OSD specific
3543         # and so this is listed for informational purposes only
3544         echo "nlink before: $(stat -c %h $BASE), created before: $NUMTEST"
3545         unlinkmany -d $BASE/d $DELETE
3546         RC=$?
3547
3548         if [ $RC -ne 0 ]; then
3549                 if [ "$NUMPREV" == "failed" ]; then
3550                         skip "previous setup failed"
3551                         return 0
3552                 else
3553                         error "unlink of first $DELETE subdirs failed"
3554                         return $RC
3555                 fi
3556         fi
3557
3558         echo "nlink between: $(stat -c %h $BASE)"
3559         # trim the first line of ls output
3560         local FOUND=$(($(ls -l ${BASE} | wc -l) - 1))
3561         [ $FOUND -ne $LEFT ] &&
3562                 error "can't find subdirs: found only $FOUND/$LEFT"
3563
3564         unlinkmany -d $BASE/d $DELETE $LEFT ||
3565                 error "unlink of second $LEFT subdirs failed"
3566         # regardless of whether the backing filesystem tracks nlink accurately
3567         # or not, the nlink count shouldn't be more than "." and ".." here
3568         local AFTER=$(stat -c %h $BASE)
3569         [ $AFTER -gt 2 ] && error "nlink after: $AFTER > 2" ||
3570                 echo "nlink after: $AFTER"
3571 }
3572 run_test 51ba "verify nlink for many subdirectory cleanup"
3573
3574 test_51d() {
3575         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3576         [  "$OSTCOUNT" -lt "3" ] && skip_env "skipping test with few OSTs" && return
3577         test_mkdir -p $DIR/$tdir
3578         createmany -o $DIR/$tdir/t- 1000
3579         $GETSTRIPE $DIR/$tdir > $TMP/files
3580         for N in `seq 0 $((OSTCOUNT - 1))`; do
3581             OBJS[$N]=`awk -vobjs=0 '($1 == '$N') { objs += 1 } END { print objs;}' $TMP/files`
3582             OBJS0[$N]=`grep -A 1 idx $TMP/files | awk -vobjs=0 '($1 == '$N') { objs += 1 } END { print objs;}'`
3583             log "OST$N has ${OBJS[$N]} objects, ${OBJS0[$N]} are index 0"
3584         done
3585         unlinkmany $DIR/$tdir/t- 1000
3586
3587         NLAST=0
3588         for N in `seq 1 $((OSTCOUNT - 1))`; do
3589             [ ${OBJS[$N]} -lt $((${OBJS[$NLAST]} - 20)) ] && \
3590                 error "OST $N has less objects vs OST $NLAST (${OBJS[$N]} < ${OBJS[$NLAST]}"
3591             [ ${OBJS[$N]} -gt $((${OBJS[$NLAST]} + 20)) ] && \
3592                 error "OST $N has less objects vs OST $NLAST (${OBJS[$N]} < ${OBJS[$NLAST]}"
3593
3594             [ ${OBJS0[$N]} -lt $((${OBJS0[$NLAST]} - 20)) ] && \
3595                 error "OST $N has less #0 objects vs OST $NLAST (${OBJS0[$N]} < ${OBJS0[$NLAST]}"
3596             [ ${OBJS0[$N]} -gt $((${OBJS0[$NLAST]} + 20)) ] && \
3597                 error "OST $N has less #0 objects vs OST $NLAST (${OBJS0[$N]} < ${OBJS0[$NLAST]}"
3598             NLAST=$N
3599         done
3600 }
3601 run_test 51d "check object distribution ===================="
3602
3603 test_52a() {
3604         [ -f $DIR/$tdir/foo ] && chattr -a $DIR/$tdir/foo
3605         test_mkdir -p $DIR/$tdir
3606         touch $DIR/$tdir/foo
3607         chattr +a $DIR/$tdir/foo || error "chattr +a failed"
3608         echo bar >> $DIR/$tdir/foo || error "append bar failed"
3609         cp /etc/hosts $DIR/$tdir/foo && error "cp worked"
3610         rm -f $DIR/$tdir/foo 2>/dev/null && error "rm worked"
3611         link $DIR/$tdir/foo $DIR/$tdir/foo_link 2>/dev/null &&
3612                                         error "link worked"
3613         echo foo >> $DIR/$tdir/foo || error "append foo failed"
3614         mrename $DIR/$tdir/foo $DIR/$tdir/foo_ren && error "rename worked"
3615         lsattr $DIR/$tdir/foo | egrep -q "^-+a[-e]+ $DIR/$tdir/foo" ||
3616                                                      error "lsattr"
3617         chattr -a $DIR/$tdir/foo || error "chattr -a failed"
3618         cp -r $DIR/$tdir /tmp/
3619         rm -fr $DIR/$tdir || error "cleanup rm failed"
3620 }
3621 run_test 52a "append-only flag test (should return errors) ====="
3622
3623 test_52b() {
3624         [ -f $DIR/$tdir/foo ] && chattr -i $DIR/$tdir/foo
3625         test_mkdir -p $DIR/$tdir
3626         touch $DIR/$tdir/foo
3627         chattr +i $DIR/$tdir/foo || error "chattr +i failed"
3628         cat test > $DIR/$tdir/foo && error "cat test worked"
3629         cp /etc/hosts $DIR/$tdir/foo && error "cp worked"
3630         rm -f $DIR/$tdir/foo 2>/dev/null && error "rm worked"
3631         link $DIR/$tdir/foo $DIR/$tdir/foo_link 2>/dev/null &&
3632                                         error "link worked"
3633         echo foo >> $DIR/$tdir/foo && error "echo worked"
3634         mrename $DIR/$tdir/foo $DIR/$tdir/foo_ren && error "rename worked"
3635         [ -f $DIR/$tdir/foo ] || error
3636         [ -f $DIR/$tdir/foo_ren ] && error
3637         lsattr $DIR/$tdir/foo | egrep -q "^-+i[-e]+ $DIR/$tdir/foo" ||
3638                                                         error "lsattr"
3639         chattr -i $DIR/$tdir/foo || error "chattr failed"
3640
3641         rm -fr $DIR/$tdir || error
3642 }
3643 run_test 52b "immutable flag test (should return errors) ======="
3644
3645 test_53() {
3646         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3647         remote_mds_nodsh && skip "remote MDS with nodsh" && return
3648         remote_ost_nodsh && skip "remote OST with nodsh" && return
3649
3650         local param
3651         local ostname
3652         local mds_last
3653         local ost_last
3654         local ostnum
3655         local node
3656
3657         # only test MDT0000
3658         local mdtosc=$(get_mdtosc_proc_path $SINGLEMDS)
3659         for value in $(do_facet $SINGLEMDS lctl get_param osc.$mdtosc.prealloc_last_id) ; do
3660                 param=`echo ${value[0]} | cut -d "=" -f1`
3661                 ostname=`echo $param | cut -d "." -f2 | cut -d - -f 1-2`
3662                 mds_last=$(do_facet $SINGLEMDS lctl get_param -n $param)
3663                 ostnum=$(index_from_ostuuid ${ostname}_UUID)
3664                 node=$(facet_active_host ost$((ostnum+1)))
3665                 param="obdfilter.$ostname.last_id"
3666                 ost_last=$(do_node $node lctl get_param -n $param | head -n 1)
3667                 echo "$ostname.last_id=$ost_last ; MDS.last_id=$mds_last"
3668                 if [ $ost_last != $mds_last ]; then
3669                     error "$ostname.last_id=$ost_last ; MDS.last_id=$mds_last"
3670                 fi
3671         done
3672 }
3673 run_test 53 "verify that MDS and OSTs agree on pre-creation ===="
3674
3675 test_54a() {
3676         [ ! -f "$SOCKETSERVER" ] && skip_env "no socketserver, skipping" && return
3677         [ ! -f "$SOCKETCLIENT" ] && skip_env "no socketclient, skipping" && return
3678         $SOCKETSERVER $DIR/socket
3679         $SOCKETCLIENT $DIR/socket || error
3680         $MUNLINK $DIR/socket
3681 }
3682 run_test 54a "unix domain socket test =========================="
3683
3684 test_54b() {
3685         f="$DIR/f54b"
3686         mknod $f c 1 3
3687         chmod 0666 $f
3688         dd if=/dev/zero of=$f bs=`page_size` count=1
3689 }
3690 run_test 54b "char device works in lustre ======================"
3691
3692 find_loop_dev() {
3693         [ -b /dev/loop/0 ] && LOOPBASE=/dev/loop/
3694         [ -b /dev/loop0 ] && LOOPBASE=/dev/loop
3695         [ -z "$LOOPBASE" ] && echo "/dev/loop/0 and /dev/loop0 gone?" && return
3696
3697         for i in `seq 3 7`; do
3698                 losetup $LOOPBASE$i > /dev/null 2>&1 && continue
3699                 LOOPDEV=$LOOPBASE$i
3700                 LOOPNUM=$i
3701                 break
3702         done
3703 }
3704
3705 test_54c() {
3706         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3707         tfile="$DIR/f54c"
3708         tdir="$DIR/d54c"
3709         loopdev="$DIR/loop54c"
3710
3711         find_loop_dev
3712         [ -z "$LOOPNUM" ] && echo "couldn't find empty loop device" && return
3713         mknod $loopdev b 7 $LOOPNUM
3714         echo "make a loop file system with $tfile on $loopdev ($LOOPNUM)..."
3715         dd if=/dev/zero of=$tfile bs=`page_size` seek=1024 count=1 > /dev/null
3716         losetup $loopdev $tfile || error "can't set up $loopdev for $tfile"
3717         mkfs.ext2 $loopdev || error "mke2fs on $loopdev"
3718         test_mkdir -p $tdir
3719         mount -t ext2 $loopdev $tdir || error "error mounting $loopdev on $tdir"
3720         dd if=/dev/zero of=$tdir/tmp bs=`page_size` count=30 || error "dd write"
3721         df $tdir
3722         dd if=$tdir/tmp of=/dev/zero bs=`page_size` count=30 || error "dd read"
3723         $UMOUNT $tdir
3724         losetup -d $loopdev
3725         rm $loopdev
3726 }
3727 run_test 54c "block device works in lustre ====================="
3728
3729 test_54d() {
3730         f="$DIR/f54d"
3731         string="aaaaaa"
3732         mknod $f p
3733         [ "$string" = `echo $string > $f | cat $f` ] || error
3734 }
3735 run_test 54d "fifo device works in lustre ======================"
3736
3737 test_54e() {
3738         check_kernel_version 46 || return 0
3739         f="$DIR/f54e"
3740         string="aaaaaa"
3741         cp -aL /dev/console $f
3742         echo $string > $f || error
3743 }
3744 run_test 54e "console/tty device works in lustre ======================"
3745
3746 #The test_55 used to be iopen test and it was removed by bz#24037.
3747 #run_test 55 "check iopen_connect_dentry() ======================"
3748
3749 test_56a() {    # was test_56
3750         rm -rf $DIR/$tdir
3751         $SETSTRIPE -d $DIR
3752         test_mkdir $DIR/$tdir
3753         test_mkdir $DIR/$tdir/dir
3754         NUMFILES=3
3755         NUMFILESx2=$(($NUMFILES * 2))
3756         for i in `seq 1 $NUMFILES` ; do
3757                 touch $DIR/$tdir/file$i
3758                 touch $DIR/$tdir/dir/file$i
3759         done
3760
3761         # test lfs getstripe with --recursive
3762         FILENUM=`$GETSTRIPE --recursive $DIR/$tdir | grep -c obdidx`
3763         [ $FILENUM -eq $NUMFILESx2 ] ||
3764                 error "$GETSTRIPE --recursive: found $FILENUM, not $NUMFILESx2"
3765         FILENUM=`$GETSTRIPE $DIR/$tdir | grep -c obdidx`
3766         [ $FILENUM -eq $NUMFILES ] ||
3767                 error "$GETSTRIPE $DIR/$tdir: found $FILENUM, not $NUMFILES"
3768         echo "$GETSTRIPE --recursive passed."
3769
3770         # test lfs getstripe with file instead of dir
3771         FILENUM=`$GETSTRIPE $DIR/$tdir/file1 | grep -c obdidx`
3772         [ $FILENUM  -eq 1 ] || error \
3773                  "$GETSTRIPE $DIR/$tdir/file1: found $FILENUM, not 1"
3774         echo "$GETSTRIPE file1 passed."
3775
3776         #test lfs getstripe with --verbose
3777         [ `$GETSTRIPE --verbose $DIR/$tdir |
3778                         grep -c lmm_magic` -eq $NUMFILES ] ||
3779                 error "$GETSTRIPE --verbose $DIR/$tdir: want $NUMFILES"
3780         [ `$GETSTRIPE $DIR/$tdir | grep -c lmm_magic` -eq 0 ] ||
3781             error "$GETSTRIPE $DIR/$tdir: showed lmm_magic"
3782         echo "$GETSTRIPE --verbose passed."
3783
3784         #test lfs getstripe with --obd
3785         $GETSTRIPE --obd wrong_uuid $DIR/$tdir 2>&1 |
3786                                         grep -q "unknown obduuid" ||
3787                 error "$GETSTRIPE --obd wrong_uuid should return error message"
3788
3789         [  "$OSTCOUNT" -lt 2 ] &&
3790                 skip_env "skipping other $GETSTRIPE --obd test" && return
3791
3792         OSTIDX=1
3793         OBDUUID=$(ostuuid_from_index $OSTIDX)
3794         FILENUM=`$GETSTRIPE -ir $DIR/$tdir | grep -x $OSTIDX | wc -l`
3795         FOUND=`$GETSTRIPE -r --obd $OBDUUID $DIR/$tdir | grep obdidx | wc -l`
3796         [ $FOUND -eq $FILENUM ] ||
3797                 error "$GETSTRIPE --obd wrong: found $FOUND, expected $FILENUM"
3798         [ `$GETSTRIPE -r -v --obd $OBDUUID $DIR/$tdir |
3799                 sed '/^[         ]*'${OSTIDX}'[  ]/d' |
3800                 sed -n '/^[      ]*[0-9][0-9]*[  ]/p' | wc -l` -eq 0 ] ||
3801                 error "$GETSTRIPE --obd: should not show file on other obd"
3802         echo "$GETSTRIPE --obd passed"
3803 }
3804 run_test 56a "check $GETSTRIPE"
3805
3806 NUMFILES=3
3807 NUMDIRS=3
3808 setup_56() {
3809         local LOCAL_NUMFILES="$1"
3810         local LOCAL_NUMDIRS="$2"
3811         local MKDIR_PARAMS="$3"
3812
3813         if [ ! -d "$TDIR" ] ; then
3814                 test_mkdir -p $TDIR
3815                 [ "$MKDIR_PARAMS" ] && $SETSTRIPE $MKDIR_PARAMS $TDIR
3816                 for i in `seq 1 $LOCAL_NUMFILES` ; do
3817                         touch $TDIR/file$i
3818                 done
3819                 for i in `seq 1 $LOCAL_NUMDIRS` ; do
3820                         test_mkdir $TDIR/dir$i
3821                         for j in `seq 1 $LOCAL_NUMFILES` ; do
3822                                 touch $TDIR/dir$i/file$j
3823                         done
3824                 done
3825         fi
3826 }
3827
3828 setup_56_special() {
3829         LOCAL_NUMFILES=$1
3830         LOCAL_NUMDIRS=$2
3831         setup_56 $1 $2
3832         if [ ! -e "$TDIR/loop1b" ] ; then
3833                 for i in `seq 1 $LOCAL_NUMFILES` ; do
3834                         mknod $TDIR/loop${i}b b 7 $i
3835                         mknod $TDIR/null${i}c c 1 3
3836                         ln -s $TDIR/file1 $TDIR/link${i}l
3837                 done
3838                 for i in `seq 1 $LOCAL_NUMDIRS` ; do
3839                         mknod $TDIR/dir$i/loop${i}b b 7 $i
3840                         mknod $TDIR/dir$i/null${i}c c 1 3
3841                         ln -s $TDIR/dir$i/file1 $TDIR/dir$i/link${i}l
3842                 done
3843         fi
3844 }
3845
3846 test_56g() {
3847         $SETSTRIPE -d $DIR
3848
3849         TDIR=$DIR/${tdir}g
3850         setup_56 $NUMFILES $NUMDIRS
3851
3852         EXPECTED=$(($NUMDIRS + 2))
3853         # test lfs find with -name
3854         for i in $(seq 1 $NUMFILES) ; do
3855                 NUMS=$($LFIND -name "*$i" $TDIR | wc -l)
3856                 [ $NUMS -eq $EXPECTED ] ||
3857                         error "lfs find -name \"*$i\" $TDIR wrong: "\
3858                               "found $NUMS, expected $EXPECTED"
3859         done
3860 }
3861 run_test 56g "check lfs find -name ============================="
3862
3863 test_56h() {
3864         $SETSTRIPE -d $DIR
3865
3866         TDIR=$DIR/${tdir}g
3867         setup_56 $NUMFILES $NUMDIRS
3868
3869         EXPECTED=$(((NUMDIRS + 1) * (NUMFILES - 1) + NUMFILES))
3870         # test lfs find with ! -name
3871         for i in $(seq 1 $NUMFILES) ; do
3872                 NUMS=$($LFIND ! -name "*$i" $TDIR | wc -l)
3873                 [ $NUMS -eq $EXPECTED ] ||
3874                         error "lfs find ! -name \"*$i\" $TDIR wrong: "\
3875                               "found $NUMS, expected $EXPECTED"
3876         done
3877 }
3878 run_test 56h "check lfs find ! -name ============================="
3879
3880 test_56i() {
3881        tdir=${tdir}i
3882        test_mkdir -p $DIR/$tdir
3883        UUID=$(ostuuid_from_index 0 $DIR/$tdir)
3884        CMD="$LFIND -ost $UUID $DIR/$tdir"
3885        OUT=$($CMD)
3886        [ -z "$OUT" ] || error "\"$CMD\" returned directory '$OUT'"
3887 }
3888 run_test 56i "check 'lfs find -ost UUID' skips directories ======="
3889
3890 test_56j() {
3891         TDIR=$DIR/${tdir}g
3892         setup_56_special $NUMFILES $NUMDIRS
3893
3894         EXPECTED=$((NUMDIRS + 1))
3895         CMD="$LFIND -type d $TDIR"
3896         NUMS=$($CMD | wc -l)
3897         [ $NUMS -eq $EXPECTED ] ||
3898                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
3899 }
3900 run_test 56j "check lfs find -type d ============================="
3901
3902 test_56k() {
3903         TDIR=$DIR/${tdir}g
3904         setup_56_special $NUMFILES $NUMDIRS
3905
3906         EXPECTED=$(((NUMDIRS + 1) * NUMFILES))
3907         CMD="$LFIND -type f $TDIR"
3908         NUMS=$($CMD | wc -l)
3909         [ $NUMS -eq $EXPECTED ] ||
3910                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
3911 }
3912 run_test 56k "check lfs find -type f ============================="
3913
3914 test_56l() {
3915         TDIR=$DIR/${tdir}g
3916         setup_56_special $NUMFILES $NUMDIRS
3917
3918         EXPECTED=$((NUMDIRS + NUMFILES))
3919         CMD="$LFIND -type b $TDIR"
3920         NUMS=$($CMD | wc -l)
3921         [ $NUMS -eq $EXPECTED ] ||
3922                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
3923 }
3924 run_test 56l "check lfs find -type b ============================="
3925
3926 test_56m() {
3927         TDIR=$DIR/${tdir}g
3928         setup_56_special $NUMFILES $NUMDIRS
3929
3930         EXPECTED=$((NUMDIRS + NUMFILES))
3931         CMD="$LFIND -type c $TDIR"
3932         NUMS=$($CMD | wc -l)
3933         [ $NUMS -eq $EXPECTED ] ||
3934                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
3935 }
3936 run_test 56m "check lfs find -type c ============================="
3937
3938 test_56n() {
3939         TDIR=$DIR/${tdir}g
3940         setup_56_special $NUMFILES $NUMDIRS
3941
3942         EXPECTED=$((NUMDIRS + NUMFILES))
3943         CMD="$LFIND -type l $TDIR"
3944         NUMS=$($CMD | wc -l)
3945         [ $NUMS -eq $EXPECTED ] ||
3946                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
3947 }
3948 run_test 56n "check lfs find -type l ============================="
3949
3950 test_56o() {
3951         TDIR=$DIR/${tdir}o
3952         setup_56 $NUMFILES $NUMDIRS
3953
3954         utime $TDIR/file1 > /dev/null || error "utime (1)"
3955         utime $TDIR/file2 > /dev/null || error "utime (2)"
3956         utime $TDIR/dir1 > /dev/null || error "utime (3)"
3957         utime $TDIR/dir2 > /dev/null || error "utime (4)"
3958         utime $TDIR/dir1/file1 > /dev/null || error "utime (5)"
3959         dd if=/dev/zero count=1 >> $TDIR/dir1/file1 && sync
3960
3961         EXPECTED=4
3962         NUMS=`$LFIND -mtime +0 $TDIR | wc -l`
3963         [ $NUMS -eq $EXPECTED ] || \
3964                 error "lfs find -mtime +0 $TDIR wrong: found $NUMS, expected $EXPECTED"
3965
3966         EXPECTED=12
3967         CMD="$LFIND -mtime 0 $TDIR"
3968         NUMS=$($CMD | wc -l)
3969         [ $NUMS -eq $EXPECTED ] ||
3970                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
3971 }
3972 run_test 56o "check lfs find -mtime for old files =========================="
3973
3974 test_56p() {
3975         [ $RUNAS_ID -eq $UID ] &&
3976                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
3977
3978         TDIR=$DIR/${tdir}p
3979         setup_56 $NUMFILES $NUMDIRS
3980
3981         chown $RUNAS_ID $TDIR/file* || error "chown $DIR/${tdir}g/file$i failed"
3982         EXPECTED=$NUMFILES
3983         CMD="$LFIND -uid $RUNAS_ID $TDIR"
3984         NUMS=$($CMD | wc -l)
3985         [ $NUMS -eq $EXPECTED ] || \
3986                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
3987
3988         EXPECTED=$(((NUMFILES + 1) * NUMDIRS + 1))
3989         CMD="$LFIND ! -uid $RUNAS_ID $TDIR"
3990         NUMS=$($CMD | wc -l)
3991         [ $NUMS -eq $EXPECTED ] || \
3992                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
3993 }
3994 run_test 56p "check lfs find -uid and ! -uid ==============================="
3995
3996 test_56q() {
3997         [ $RUNAS_ID -eq $UID ] &&
3998                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
3999
4000         TDIR=$DIR/${tdir}q
4001         setup_56 $NUMFILES $NUMDIRS
4002
4003         chgrp $RUNAS_GID $TDIR/file* || error "chown $TDIR/file$i failed"
4004
4005         EXPECTED=$NUMFILES
4006         CMD="$LFIND -gid $RUNAS_GID $TDIR"
4007         NUMS=$($CMD | wc -l)
4008         [ $NUMS -eq $EXPECTED ] ||
4009                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4010
4011         EXPECTED=$(( ($NUMFILES+1) * $NUMDIRS + 1))
4012         CMD="$LFIND ! -gid $RUNAS_GID $TDIR"
4013         NUMS=$($CMD | wc -l)
4014         [ $NUMS -eq $EXPECTED ] ||
4015                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4016 }
4017 run_test 56q "check lfs find -gid and ! -gid ==============================="
4018
4019 test_56r() {
4020         TDIR=$DIR/${tdir}r
4021         setup_56 $NUMFILES $NUMDIRS
4022
4023         EXPECTED=12
4024         CMD="$LFIND -size 0 -type f $TDIR"
4025         NUMS=$($CMD | wc -l)
4026         [ $NUMS -eq $EXPECTED ] ||
4027                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4028         EXPECTED=0
4029         CMD="$LFIND ! -size 0 -type f $TDIR"
4030         NUMS=$($CMD | wc -l)
4031         [ $NUMS -eq $EXPECTED ] ||
4032                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4033         echo "test" > $TDIR/$tfile
4034         echo "test2" > $TDIR/$tfile.2 && sync
4035         EXPECTED=1
4036         CMD="$LFIND -size 5 -type f $TDIR"
4037         NUMS=$($CMD | wc -l)
4038         [ $NUMS -eq $EXPECTED ] ||
4039                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4040         EXPECTED=1
4041         CMD="$LFIND -size +5 -type f $TDIR"
4042         NUMS=$($CMD | wc -l)
4043         [ $NUMS -eq $EXPECTED ] ||
4044                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4045         EXPECTED=2
4046         CMD="$LFIND -size +0 -type f $TDIR"
4047         NUMS=$($CMD | wc -l)
4048         [ $NUMS -eq $EXPECTED ] ||
4049                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4050         EXPECTED=2
4051         CMD="$LFIND ! -size -5 -type f $TDIR"
4052         NUMS=$($CMD | wc -l)
4053         [ $NUMS -eq $EXPECTED ] ||
4054                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4055         EXPECTED=12
4056         CMD="$LFIND -size -5 -type f $TDIR"
4057         NUMS=$($CMD | wc -l)
4058         [ $NUMS -eq $EXPECTED ] ||
4059                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4060 }
4061 run_test 56r "check lfs find -size works =========================="
4062
4063 test_56s() { # LU-611
4064         TDIR=$DIR/${tdir}s
4065         setup_56 $NUMFILES $NUMDIRS "-c $OSTCOUNT"
4066
4067         if [ $OSTCOUNT -gt 1 ]; then
4068                 $SETSTRIPE -c 1 $TDIR/$tfile.{0,1,2,3}
4069                 ONESTRIPE=4
4070                 EXTRA=4
4071         else
4072                 ONESTRIPE=$(((NUMDIRS + 1) * NUMFILES))
4073                 EXTRA=0
4074         fi
4075
4076         EXPECTED=$(((NUMDIRS + 1) * NUMFILES))
4077         CMD="$LFIND -stripe-count $OSTCOUNT -type f $TDIR"
4078         NUMS=$($CMD | wc -l)
4079         [ $NUMS -eq $EXPECTED ] ||
4080                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4081
4082         EXPECTED=$(((NUMDIRS + 1) * NUMFILES + EXTRA))
4083         CMD="$LFIND -stripe-count +0 -type f $TDIR"
4084         NUMS=$($CMD | wc -l)
4085         [ $NUMS -eq $EXPECTED ] ||
4086                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4087
4088         EXPECTED=$ONESTRIPE
4089         CMD="$LFIND -stripe-count 1 -type f $TDIR"
4090         NUMS=$($CMD | wc -l)
4091         [ $NUMS -eq $EXPECTED ] ||
4092                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4093
4094         CMD="$LFIND -stripe-count -2 -type f $TDIR"
4095         NUMS=$($CMD | wc -l)
4096         [ $NUMS -eq $EXPECTED ] ||
4097                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4098
4099         EXPECTED=0
4100         CMD="$LFIND -stripe-count $((OSTCOUNT + 1)) -type f $TDIR"
4101         NUMS=$($CMD | wc -l)
4102         [ $NUMS -eq $EXPECTED ] ||
4103                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4104 }
4105 run_test 56s "check lfs find -stripe-count works"
4106
4107 test_56t() { # LU-611
4108         TDIR=$DIR/${tdir}t
4109         setup_56 $NUMFILES $NUMDIRS "-s 512k"
4110
4111         $SETSTRIPE -S 256k $TDIR/$tfile.{0,1,2,3}
4112
4113         EXPECTED=$(((NUMDIRS + 1) * NUMFILES))
4114         CMD="$LFIND -stripe-size 512k -type f $TDIR"
4115         NUMS=$($CMD | wc -l)
4116         [ $NUMS -eq $EXPECTED ] ||
4117                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4118
4119         CMD="$LFIND -stripe-size +320k -type f $TDIR"
4120         NUMS=$($CMD | wc -l)
4121         [ $NUMS -eq $EXPECTED ] ||
4122                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4123
4124         EXPECTED=$(((NUMDIRS + 1) * NUMFILES + 4))
4125         CMD="$LFIND -stripe-size +200k -type f $TDIR"
4126         NUMS=$($CMD | wc -l)
4127         [ $NUMS -eq $EXPECTED ] ||
4128                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4129
4130         CMD="$LFIND -stripe-size -640k -type f $TDIR"
4131         NUMS=$($CMD | wc -l)
4132         [ $NUMS -eq $EXPECTED ] ||
4133                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4134
4135         EXPECTED=4
4136         CMD="$LFIND -stripe-size 256k -type f $TDIR"
4137         NUMS=$($CMD | wc -l)
4138         [ $NUMS -eq $EXPECTED ] ||
4139                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4140
4141         CMD="$LFIND -stripe-size -320k -type f $TDIR"
4142         NUMS=$($CMD | wc -l)
4143         [ $NUMS -eq $EXPECTED ] ||
4144                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4145
4146         EXPECTED=0
4147         CMD="$LFIND -stripe-size 1024k -type f $TDIR"
4148         NUMS=$($CMD | wc -l)
4149         [ $NUMS -eq $EXPECTED ] ||
4150                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4151 }
4152 run_test 56t "check lfs find -stripe-size works"
4153
4154 test_56u() { # LU-611
4155         TDIR=$DIR/${tdir}u
4156         setup_56 $NUMFILES $NUMDIRS "-i 0"
4157
4158         if [ $OSTCOUNT -gt 1 ]; then
4159                 $SETSTRIPE -i 1 $TDIR/$tfile.{0,1,2,3}
4160                 ONESTRIPE=4
4161         else
4162                 ONESTRIPE=0
4163         fi
4164
4165         EXPECTED=$(((NUMDIRS + 1) * NUMFILES))
4166         CMD="$LFIND -stripe-index 0 -type f $TDIR"
4167         NUMS=$($CMD | wc -l)
4168         [ $NUMS -eq $EXPECTED ] ||
4169                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4170
4171         EXPECTED=$ONESTRIPE
4172         CMD="$LFIND -stripe-index 1 -type f $TDIR"
4173         NUMS=$($CMD | wc -l)
4174         [ $NUMS -eq $EXPECTED ] ||
4175                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4176
4177         CMD="$LFIND ! -stripe-index 0 -type f $TDIR"
4178         NUMS=$($CMD | wc -l)
4179         [ $NUMS -eq $EXPECTED ] ||
4180                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4181
4182         EXPECTED=0
4183         # This should produce an error and not return any files
4184         CMD="$LFIND -stripe-index $OSTCOUNT -type f $TDIR"
4185         NUMS=$($CMD 2>/dev/null | wc -l)
4186         [ $NUMS -eq $EXPECTED ] ||
4187                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4188
4189         EXPECTED=$(((NUMDIRS + 1) * NUMFILES + ONESTRIPE))
4190         CMD="$LFIND -stripe-index 0,1 -type f $TDIR"
4191         NUMS=$($CMD | wc -l)
4192         [ $NUMS -eq $EXPECTED ] ||
4193                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4194 }
4195 run_test 56u "check lfs find -stripe-index works"
4196
4197 test_56v() {
4198     local MDT_IDX=0
4199
4200     TDIR=$DIR/${tdir}v
4201     rm -rf $TDIR
4202     setup_56 $NUMFILES $NUMDIRS
4203
4204     UUID=$(mdtuuid_from_index $MDT_IDX $TDIR)
4205     [ -z "$UUID" ] && error "mdtuuid_from_index cannot find MDT index $MDT_IDX"
4206
4207     for file in $($LFIND -mdt $UUID $TDIR); do
4208         file_mdt_idx=$($GETSTRIPE -M $file)
4209         [ $file_mdt_idx -eq $MDT_IDX ] ||
4210             error "'lfind -mdt $UUID' != 'getstripe -M' ($file_mdt_idx)"
4211     done
4212 }
4213 run_test 56v "check 'lfs find -mdt match with lfs getstripe -M' ======="
4214
4215 # Get and check the actual stripe count of one file.
4216 # Usage: check_stripe_count <file> <expected_stripe_count>
4217 check_stripe_count() {
4218     local file=$1
4219     local expected=$2
4220     local actual
4221
4222     [[ -z "$file" || -z "$expected" ]] &&
4223         error "check_stripe_count: invalid argument!"
4224
4225     local cmd="$GETSTRIPE -c $file"
4226     actual=$($cmd) || error "$cmd failed"
4227     actual=${actual%% *}
4228
4229     if [[ $actual -ne $expected ]]; then
4230         [[ $expected -eq -1 ]] ||
4231             error "$cmd wrong: found $actual, expected $expected"
4232         [[ $actual -eq $OSTCOUNT ]] ||
4233             error "$cmd wrong: found $actual, expected $OSTCOUNT"
4234     fi
4235 }
4236
4237 test_56w() {
4238         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4239         TDIR=$DIR/${tdir}w
4240
4241     rm -rf $TDIR || error "remove $TDIR failed"
4242     setup_56 $NUMFILES $NUMDIRS "-c $OSTCOUNT"
4243
4244     local stripe_size
4245     stripe_size=$($GETSTRIPE -S -d $TDIR) ||
4246         error "$GETSTRIPE -S -d $TDIR failed"
4247     stripe_size=${stripe_size%% *}
4248
4249     local file_size=$((stripe_size * OSTCOUNT))
4250     local file_num=$((NUMDIRS * NUMFILES + NUMFILES))
4251     local required_space=$((file_num * file_size))
4252     local free_space=$($LCTL get_param -n lov.$LOVNAME.kbytesavail)
4253     [[ $free_space -le $((required_space / 1024)) ]] &&
4254         skip_env "need at least $required_space bytes free space," \
4255                  "have $free_space kbytes" && return
4256
4257     local dd_bs=65536
4258     local dd_count=$((file_size / dd_bs))
4259
4260     # write data into the files
4261     local i
4262     local j
4263     local file
4264     for i in $(seq 1 $NUMFILES); do
4265         file=$TDIR/file$i
4266         yes | dd bs=$dd_bs count=$dd_count of=$file >/dev/null 2>&1 ||
4267             error "write data into $file failed"
4268     done
4269     for i in $(seq 1 $NUMDIRS); do
4270         for j in $(seq 1 $NUMFILES); do
4271             file=$TDIR/dir$i/file$j
4272             yes | dd bs=$dd_bs count=$dd_count of=$file \
4273                 >/dev/null 2>&1 ||
4274                 error "write data into $file failed"
4275         done
4276     done
4277
4278     local expected=-1
4279     [[ $OSTCOUNT -gt 1 ]] && expected=$((OSTCOUNT - 1))
4280
4281     # lfs_migrate file
4282     local cmd="$LFS_MIGRATE -y -c $expected $TDIR/file1"
4283     echo "$cmd"
4284     eval $cmd || error "$cmd failed"
4285
4286     check_stripe_count $TDIR/file1 $expected
4287
4288     # lfs_migrate dir
4289     cmd="$LFS_MIGRATE -y -c $expected $TDIR/dir1"
4290     echo "$cmd"
4291     eval $cmd || error "$cmd failed"
4292
4293     for j in $(seq 1 $NUMFILES); do
4294         check_stripe_count $TDIR/dir1/file$j $expected
4295     done
4296
4297     # lfs_migrate works with lfs find
4298     cmd="$LFIND -stripe_count $OSTCOUNT -type f $TDIR |
4299          $LFS_MIGRATE -y -c $expected"
4300     echo "$cmd"
4301     eval $cmd || error "$cmd failed"
4302
4303     for i in $(seq 2 $NUMFILES); do
4304         check_stripe_count $TDIR/file$i $expected
4305     done
4306     for i in $(seq 2 $NUMDIRS); do
4307         for j in $(seq 1 $NUMFILES); do
4308             check_stripe_count $TDIR/dir$i/file$j $expected
4309         done
4310     done
4311 }
4312 run_test 56w "check lfs_migrate -c stripe_count works"
4313
4314 test_57a() {
4315         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4316         # note test will not do anything if MDS is not local
4317         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
4318                 skip "Only applicable to ldiskfs-based MDTs"
4319                 return
4320         fi
4321
4322         remote_mds_nodsh && skip "remote MDS with nodsh" && return
4323         local MNTDEV="osd*.*MDT*.mntdev"
4324         DEV=$(do_facet $SINGLEMDS lctl get_param -n $MNTDEV)
4325         [ -z "$DEV" ] && error "can't access $MNTDEV"
4326         for DEV in $(do_facet $SINGLEMDS lctl get_param -n $MNTDEV); do
4327                 do_facet $SINGLEMDS $DUMPE2FS -h $DEV > $TMP/t57a.dump ||
4328                         error "can't access $DEV"
4329                 DEVISIZE=`awk '/Inode size:/ { print $3 }' $TMP/t57a.dump`
4330                 [ "$DEVISIZE" -gt 128 ] || error "inode size $DEVISIZE"
4331                 rm $TMP/t57a.dump
4332         done
4333 }
4334 run_test 57a "verify MDS filesystem created with large inodes =="
4335
4336 test_57b() {
4337         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4338         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
4339                 skip "Only applicable to ldiskfs-based MDTs"
4340                 return
4341         fi
4342
4343         remote_mds_nodsh && skip "remote MDS with nodsh" && return
4344         local dir=$DIR/d57b
4345
4346         local FILECOUNT=100
4347         local FILE1=$dir/f1
4348         local FILEN=$dir/f$FILECOUNT
4349
4350         rm -rf $dir || error "removing $dir"
4351         test_mkdir -p $dir || error "creating $dir"
4352         local num=$(get_mds_dir $dir)
4353         local mymds=mds$num
4354
4355         echo "mcreating $FILECOUNT files"
4356         createmany -m $dir/f 1 $FILECOUNT || \
4357                 error "creating files in $dir"
4358
4359         # verify that files do not have EAs yet
4360         $GETSTRIPE $FILE1 2>&1 | grep -q "no stripe" || error "$FILE1 has an EA"
4361         $GETSTRIPE $FILEN 2>&1 | grep -q "no stripe" || error "$FILEN has an EA"
4362
4363         sync
4364         sleep 1
4365         df $dir  #make sure we get new statfs data
4366         local MDSFREE=$(do_facet $mymds \
4367                 lctl get_param -n osd*.*MDT000$((num -1)).kbytesfree)
4368         local MDCFREE=$(lctl get_param -n mdc.*MDT000$((num -1))-mdc-*.kbytesfree)
4369         echo "opening files to create objects/EAs"
4370         local FILE
4371         for FILE in `seq -f $dir/f%g 1 $FILECOUNT`; do
4372                 $OPENFILE -f O_RDWR $FILE > /dev/null 2>&1 || error "opening $FILE"
4373         done
4374
4375         # verify that files have EAs now
4376         $GETSTRIPE $FILE1 | grep -q "obdidx" || error "$FILE1 missing EA"
4377         $GETSTRIPE $FILEN | grep -q "obdidx" || error "$FILEN missing EA"
4378
4379         sleep 1  #make sure we get new statfs data
4380         df $dir
4381         local MDSFREE2=$(do_facet $mymds \
4382                 lctl get_param -n osd*.*MDT000$((num -1)).kbytesfree)
4383         local MDCFREE2=$(lctl get_param -n mdc.*MDT000$((num -1))-mdc-*.kbytesfree)
4384         if [ "$MDCFREE2" -lt "$((MDCFREE - 8))" ]; then
4385                 if [ "$MDSFREE" != "$MDSFREE2" ]; then
4386                         error "MDC before $MDCFREE != after $MDCFREE2"
4387                 else
4388                         echo "MDC before $MDCFREE != after $MDCFREE2"
4389                         echo "unable to confirm if MDS has large inodes"
4390                 fi
4391         fi
4392         rm -rf $dir
4393 }
4394 run_test 57b "default LOV EAs are stored inside large inodes ==="
4395
4396 test_58() {
4397         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4398         [ -z "$(which wiretest 2>/dev/null)" ] &&
4399                         skip_env "could not find wiretest" && return
4400         wiretest
4401 }
4402 run_test 58 "verify cross-platform wire constants =============="
4403
4404 test_59() {
4405         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4406         echo "touch 130 files"
4407         createmany -o $DIR/f59- 130
4408         echo "rm 130 files"
4409         unlinkmany $DIR/f59- 130
4410         sync
4411         # wait for commitment of removal
4412         wait_delete_completed
4413 }
4414 run_test 59 "verify cancellation of llog records async ========="
4415
4416 TEST60_HEAD="test_60 run $RANDOM"
4417 test_60a() {
4418         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4419         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
4420         [ ! -f run-llog.sh ] && skip_env "missing subtest run-llog.sh" && return
4421         log "$TEST60_HEAD - from kernel mode"
4422         do_facet mgs sh run-llog.sh
4423 }
4424 run_test 60a "llog sanity tests run from kernel module =========="
4425
4426 test_60b() { # bug 6411
4427         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4428         dmesg > $DIR/$tfile
4429         LLOG_COUNT=`dmesg | awk "/$TEST60_HEAD/{marker = 1; from_marker = 0;}
4430                                  /llog.test/ {
4431                                          if (marker)
4432                                                  from_marker++
4433                                          from_begin++
4434                                  }
4435                                  END {
4436                                          if (marker)
4437                                                  print from_marker
4438                                          else
4439                                                  print from_begin
4440                                  }"`
4441         [ $LLOG_COUNT -gt 50 ] && error "CDEBUG_LIMIT not limiting messages ($LLOG_COUNT)"|| true
4442 }
4443 run_test 60b "limit repeated messages from CERROR/CWARN ========"
4444
4445 test_60c() {
4446         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4447         echo "create 5000 files"
4448         createmany -o $DIR/f60c- 5000
4449 #define OBD_FAIL_MDS_LLOG_CREATE_FAILED  0x137
4450         lctl set_param fail_loc=0x80000137
4451         unlinkmany $DIR/f60c- 5000
4452         lctl set_param fail_loc=0
4453 }
4454 run_test 60c "unlink file when mds full"
4455
4456 test_60d() {
4457         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4458         SAVEPRINTK=$(lctl get_param -n printk)
4459
4460         # verify "lctl mark" is even working"
4461         MESSAGE="test message ID $RANDOM $$"
4462         $LCTL mark "$MESSAGE" || error "$LCTL mark failed"
4463         dmesg | grep -q "$MESSAGE" || error "didn't find debug marker in log"
4464
4465         lctl set_param printk=0 || error "set lnet.printk failed"
4466         lctl get_param -n printk | grep emerg || error "lnet.printk dropped emerg"
4467         MESSAGE="new test message ID $RANDOM $$"
4468         # Assume here that libcfs_debug_mark_buffer() uses D_WARNING
4469         $LCTL mark "$MESSAGE" || error "$LCTL mark failed"
4470         dmesg | grep -q "$MESSAGE" && error "D_WARNING wasn't masked" || true
4471
4472         lctl set_param -n printk="$SAVEPRINTK"
4473 }
4474 run_test 60d "test printk console message masking"
4475
4476 test_61() {
4477         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4478         f="$DIR/f61"
4479         dd if=/dev/zero of=$f bs=`page_size` count=1
4480         cancel_lru_locks osc
4481         $MULTIOP $f OSMWUc || error
4482         sync
4483 }
4484 run_test 61 "mmap() writes don't make sync hang ================"
4485
4486 # bug 2330 - insufficient obd_match error checking causes LBUG
4487 test_62() {
4488         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4489         f="$DIR/f62"
4490         echo foo > $f
4491         cancel_lru_locks osc
4492         lctl set_param fail_loc=0x405
4493         cat $f && error "cat succeeded, expect -EIO"
4494         lctl set_param fail_loc=0
4495 }
4496 # This test is now irrelevant (as of bug 10718 inclusion), we no longer
4497 # match every page all of the time.
4498 #run_test 62 "verify obd_match failure doesn't LBUG (should -EIO)"
4499
4500 # bug 2319 - oig_wait() interrupted causes crash because of invalid waitq.
4501 test_63a() {    # was test_63
4502         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4503         MAX_DIRTY_MB=`lctl get_param -n osc.*.max_dirty_mb | head -n 1`
4504         lctl set_param -n osc.*.max_dirty_mb 0
4505         for i in `seq 10` ; do
4506                 dd if=/dev/zero of=$DIR/f63 bs=8k &
4507                 sleep 5
4508                 kill $!
4509                 sleep 1
4510         done
4511
4512         lctl set_param -n osc.*.max_dirty_mb $MAX_DIRTY_MB
4513         rm -f $DIR/f63 || true
4514 }
4515 run_test 63a "Verify oig_wait interruption does not crash ======="
4516
4517 # bug 2248 - async write errors didn't return to application on sync
4518 # bug 3677 - async write errors left page locked
4519 test_63b() {
4520         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4521         debugsave
4522         lctl set_param debug=-1
4523
4524         # ensure we have a grant to do async writes
4525         dd if=/dev/zero of=$DIR/$tfile bs=4k count=1
4526         rm $DIR/$tfile
4527
4528         #define OBD_FAIL_OSC_BRW_PREP_REQ        0x406
4529         lctl set_param fail_loc=0x80000406
4530         $MULTIOP $DIR/$tfile Owy && \
4531                 error "sync didn't return ENOMEM"
4532         sync; sleep 2; sync     # do a real sync this time to flush page
4533         lctl get_param -n llite.*.dump_page_cache | grep locked && \
4534                 error "locked page left in cache after async error" || true
4535         debugrestore
4536 }
4537 run_test 63b "async write errors should be returned to fsync ==="
4538
4539 test_64a () {
4540         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4541         df $DIR
4542         lctl get_param -n osc.*[oO][sS][cC][_-]*.cur* | grep "[0-9]"
4543 }
4544 run_test 64a "verify filter grant calculations (in kernel) ====="
4545
4546 test_64b () {
4547         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4548         [ ! -f oos.sh ] && skip_env "missing subtest oos.sh" && return
4549         sh oos.sh $MOUNT
4550 }
4551 run_test 64b "check out-of-space detection on client ==========="
4552
4553 test_64c() {
4554         $LCTL set_param osc.*OST0000-osc-[^mM]*.cur_grant_bytes=0
4555 }
4556 run_test 64c "verify grant shrink ========================------"
4557
4558 # bug 1414 - set/get directories' stripe info
4559 test_65a() {
4560         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4561         test_mkdir -p $DIR/$tdir
4562         touch $DIR/$tdir/f1
4563         $LVERIFY $DIR/$tdir $DIR/$tdir/f1 || error "lverify failed"
4564 }
4565 run_test 65a "directory with no stripe info ===================="
4566
4567 test_65b() {
4568         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4569         test_mkdir -p $DIR/$tdir
4570         $SETSTRIPE -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
4571                                                 error "setstripe"
4572         touch $DIR/$tdir/f2
4573         $LVERIFY $DIR/$tdir $DIR/$tdir/f2 || error "lverify failed"
4574 }
4575 run_test 65b "directory setstripe -S $((STRIPESIZE * 2)) -i 0 -c 1"
4576
4577 test_65c() {
4578         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4579         if [ $OSTCOUNT -gt 1 ]; then
4580                 test_mkdir -p $DIR/$tdir
4581                 $SETSTRIPE -S $(($STRIPESIZE * 4)) -i 1 \
4582                         -c $(($OSTCOUNT - 1)) $DIR/$tdir || error "setstripe"
4583                 touch $DIR/$tdir/f3
4584                 $LVERIFY $DIR/$tdir $DIR/$tdir/f3 || error "lverify failed"
4585         fi
4586 }
4587 run_test 65c "directory setstripe -S $((STRIPESIZE*4)) -i 1 -c $((OSTCOUNT-1))"
4588
4589 test_65d() {
4590         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4591         test_mkdir -p $DIR/$tdir
4592         if [ $STRIPECOUNT -le 0 ]; then
4593                 sc=1
4594         elif [ $STRIPECOUNT -gt 2000 ]; then
4595 #LOV_MAX_STRIPE_COUNT is 2000
4596                 [ $OSTCOUNT -gt 2000 ] && sc=2000 || sc=$(($OSTCOUNT - 1))
4597         else
4598                 sc=$(($STRIPECOUNT - 1))
4599         fi
4600         $SETSTRIPE -S $STRIPESIZE -c $sc $DIR/$tdir || error "setstripe"
4601         touch $DIR/$tdir/f4 $DIR/$tdir/f5
4602         $LVERIFY $DIR/$tdir $DIR/$tdir/f4 $DIR/$tdir/f5 ||
4603                                                 error "lverify failed"
4604 }
4605 run_test 65d "directory setstripe -S $STRIPESIZE -c stripe_count"
4606
4607 test_65e() {
4608         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4609         test_mkdir -p $DIR/$tdir
4610
4611         $SETSTRIPE $DIR/$tdir || error "setstripe"
4612         $GETSTRIPE -v $DIR/$tdir | grep "Default" ||
4613                                         error "no stripe info failed"
4614         touch $DIR/$tdir/f6
4615         $LVERIFY $DIR/$tdir $DIR/$tdir/f6 || error "lverify failed"
4616 }
4617 run_test 65e "directory setstripe defaults ======================="
4618
4619 test_65f() {
4620         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4621         test_mkdir -p $DIR/${tdir}f
4622         $RUNAS $SETSTRIPE $DIR/${tdir}f && error "setstripe succeeded" || true
4623 }
4624 run_test 65f "dir setstripe permission (should return error) ==="
4625
4626 test_65g() {
4627         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4628         test_mkdir -p $DIR/$tdir
4629         $SETSTRIPE -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
4630                                                         error "setstripe"
4631         $SETSTRIPE -d $DIR/$tdir || error "setstripe"
4632         $GETSTRIPE -v $DIR/$tdir | grep "Default" ||
4633                 error "delete default stripe failed"
4634 }
4635 run_test 65g "directory setstripe -d ==========================="
4636
4637 test_65h() {
4638         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4639         test_mkdir -p $DIR/$tdir
4640         $SETSTRIPE -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
4641                                                         error "setstripe"
4642         test_mkdir -p $DIR/$tdir/dd1
4643         [ $($GETSTRIPE -c $DIR/$tdir) == $($GETSTRIPE -c $DIR/$tdir/dd1) ] ||
4644                 error "stripe info inherit failed"
4645 }
4646 run_test 65h "directory stripe info inherit ===================="
4647
4648 test_65i() { # bug6367
4649         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4650         $SETSTRIPE -S 65536 -c -1 $MOUNT
4651 }
4652 run_test 65i "set non-default striping on root directory (bug 6367)="
4653
4654 test_65ia() { # bug12836
4655         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4656         $GETSTRIPE $MOUNT || error "getstripe $MOUNT failed"
4657 }
4658 run_test 65ia "getstripe on -1 default directory striping"
4659
4660 test_65ib() { # bug12836
4661         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4662         $GETSTRIPE -v $MOUNT || error "getstripe -v $MOUNT failed"
4663 }
4664 run_test 65ib "getstripe -v on -1 default directory striping"
4665
4666 test_65ic() { # bug12836
4667         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4668         $LFS find -mtime -1 $MOUNT > /dev/null || error "find $MOUNT failed"
4669 }
4670 run_test 65ic "new find on -1 default directory striping"
4671
4672 test_65j() { # bug6367
4673         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4674         sync; sleep 1
4675         # if we aren't already remounting for each test, do so for this test
4676         if [ "$CLEANUP" = ":" -a "$I_MOUNTED" = "yes" ]; then
4677                 cleanup || error "failed to unmount"
4678                 setup
4679         fi
4680         $SETSTRIPE -d $MOUNT || error "setstripe failed"
4681 }
4682 run_test 65j "set default striping on root directory (bug 6367)="
4683
4684 test_65k() { # bug11679
4685         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4686         [ "$OSTCOUNT" -lt 2 ] && skip_env "too few OSTs" && return
4687         remote_mds_nodsh && skip "remote MDS with nodsh" && return
4688
4689     echo "Check OST status: "
4690     local MDS_OSCS=`do_facet $SINGLEMDS lctl dl |
4691               awk '/[oO][sS][cC].*md[ts]/ { print $4 }'`
4692
4693     for OSC in $MDS_OSCS; do
4694         echo $OSC "is activate"
4695         do_facet $SINGLEMDS lctl --device %$OSC activate
4696     done
4697
4698     mkdir -p $DIR/$tdir
4699     for INACTIVE_OSC in $MDS_OSCS; do
4700         echo "Deactivate: " $INACTIVE_OSC
4701         do_facet $SINGLEMDS lctl --device %$INACTIVE_OSC deactivate
4702         for STRIPE_OSC in $MDS_OSCS; do
4703             OST=`osc_to_ost $STRIPE_OSC`
4704             IDX=`do_facet $SINGLEMDS lctl get_param -n lov.*md*.target_obd |
4705                  awk -F: /$OST/'{ print $1 }' | head -n 1`
4706
4707             [ -f $DIR/$tdir/$IDX ] && continue
4708             echo "$SETSTRIPE -i $IDX -c 1 $DIR/$tdir/$IDX"
4709             $SETSTRIPE -i $IDX -c 1 $DIR/$tdir/$IDX
4710             RC=$?
4711             [ $RC -ne 0 ] && error "setstripe should have succeeded"
4712         done
4713         rm -f $DIR/$tdir/*
4714         echo $INACTIVE_OSC "is Activate."
4715         do_facet $SINGLEMDS lctl --device  %$INACTIVE_OSC activate
4716     done
4717 }
4718 run_test 65k "validate manual striping works properly with deactivated OSCs"
4719
4720 test_65l() { # bug 12836
4721         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4722         test_mkdir -p $DIR/$tdir/test_dir
4723         $SETSTRIPE -c -1 $DIR/$tdir/test_dir
4724         $LFS find -mtime -1 $DIR/$tdir >/dev/null
4725 }
4726 run_test 65l "lfs find on -1 stripe dir ========================"
4727
4728 # bug 2543 - update blocks count on client
4729 test_66() {
4730         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4731         COUNT=${COUNT:-8}
4732         dd if=/dev/zero of=$DIR/f66 bs=1k count=$COUNT
4733         sync; sync_all_data; sync; sync_all_data
4734         cancel_lru_locks osc
4735         BLOCKS=`ls -s $DIR/f66 | awk '{ print $1 }'`
4736         [ $BLOCKS -ge $COUNT ] || error "$DIR/f66 blocks $BLOCKS < $COUNT"
4737 }
4738 run_test 66 "update inode blocks count on client ==============="
4739
4740 LLOOP=
4741 LLITELOOPLOAD=
4742 cleanup_68() {
4743         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4744         trap 0
4745         if [ ! -z "$LLOOP" ]; then
4746                 if swapon -s | grep -q $LLOOP; then
4747                         swapoff $LLOOP || error "swapoff failed"
4748                 fi
4749
4750                 $LCTL blockdev_detach $LLOOP || error "detach failed"
4751                 rm -f $LLOOP
4752                 unset LLOOP
4753         fi
4754         if [ ! -z "$LLITELOOPLOAD" ]; then
4755                 rmmod llite_lloop
4756                 unset LLITELOOPLOAD
4757         fi
4758         rm -f $DIR/f68*
4759 }
4760
4761 meminfo() {
4762         awk '($1 == "'$1':") { print $2 }' /proc/meminfo
4763 }
4764
4765 swap_used() {
4766         swapon -s | awk '($1 == "'$1'") { print $4 }'
4767 }
4768
4769 # test case for lloop driver, basic function
4770 test_68a() {
4771         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4772         [ "$UID" != 0 ] && skip_env "must run as root" && return
4773         llite_lloop_enabled || \
4774                 { skip_env "llite_lloop module disabled" && return; }
4775
4776         trap cleanup_68 EXIT
4777
4778         if ! module_loaded llite_lloop; then
4779                 if load_module llite/llite_lloop; then
4780                         LLITELOOPLOAD=yes
4781                 else
4782                         skip_env "can't find module llite_lloop"
4783                         return
4784                 fi
4785         fi
4786
4787         LLOOP=$TMP/lloop.`date +%s`.`date +%N`
4788         dd if=/dev/zero of=$DIR/f68a bs=4k count=1024
4789         $LCTL blockdev_attach $DIR/f68a $LLOOP || error "attach failed"
4790
4791         directio rdwr $LLOOP 0 1024 4096 || error "direct write failed"
4792         directio rdwr $LLOOP 0 1025 4096 && error "direct write should fail"
4793
4794         cleanup_68
4795 }
4796 run_test 68a "lloop driver - basic test ========================"
4797
4798 # excercise swapping to lustre by adding a high priority swapfile entry
4799 # and then consuming memory until it is used.
4800 test_68b() {  # was test_68
4801         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4802         [ "$UID" != 0 ] && skip_env "must run as root" && return
4803         lctl get_param -n devices | grep -q obdfilter && \
4804                 skip "local OST" && return
4805
4806         grep -q llite_lloop /proc/modules
4807         [ $? -ne 0 ] && skip "can't find module llite_lloop" && return
4808
4809         [ -z "`$LCTL list_nids | grep -v tcp`" ] && \
4810                 skip "can't reliably test swap with TCP" && return
4811
4812         MEMTOTAL=`meminfo MemTotal`
4813         NR_BLOCKS=$((MEMTOTAL>>8))
4814         [[ $NR_BLOCKS -le 2048 ]] && NR_BLOCKS=2048
4815
4816         LLOOP=$TMP/lloop.`date +%s`.`date +%N`
4817         dd if=/dev/zero of=$DIR/f68b bs=64k seek=$NR_BLOCKS count=1
4818         mkswap $DIR/f68b
4819
4820         $LCTL blockdev_attach $DIR/f68b $LLOOP || error "attach failed"
4821
4822         trap cleanup_68 EXIT
4823
4824         swapon -p 32767 $LLOOP || error "swapon $LLOOP failed"
4825
4826         echo "before: `swapon -s | grep $LLOOP`"
4827         $MEMHOG $MEMTOTAL || error "error allocating $MEMTOTAL kB"
4828         echo "after: `swapon -s | grep $LLOOP`"
4829         SWAPUSED=`swap_used $LLOOP`
4830
4831         cleanup_68
4832
4833         [ $SWAPUSED -eq 0 ] && echo "no swap used???" || true
4834 }
4835 run_test 68b "support swapping to Lustre ========================"
4836
4837 # bug5265, obdfilter oa2dentry return -ENOENT
4838 # #define OBD_FAIL_OST_ENOENT 0x217
4839 test_69() {
4840         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4841         remote_ost_nodsh && skip "remote OST with nodsh" && return
4842
4843         f="$DIR/$tfile"
4844         $SETSTRIPE -c 1 -i 0 $f
4845
4846         $DIRECTIO write ${f}.2 0 1 || error "directio write error"
4847
4848         do_facet ost1 lctl set_param fail_loc=0x217
4849         $TRUNCATE $f 1 # vmtruncate() will ignore truncate() error.
4850         $DIRECTIO write $f 0 2 && error "write succeeded, expect -ENOENT"
4851
4852         do_facet ost1 lctl set_param fail_loc=0
4853         $DIRECTIO write $f 0 2 || error "write error"
4854
4855         cancel_lru_locks osc
4856         $DIRECTIO read $f 0 1 || error "read error"
4857
4858         do_facet ost1 lctl set_param fail_loc=0x217
4859         $DIRECTIO read $f 1 1 && error "read succeeded, expect -ENOENT"
4860
4861         do_facet ost1 lctl set_param fail_loc=0
4862         rm -f $f
4863 }
4864 run_test 69 "verify oa2dentry return -ENOENT doesn't LBUG ======"
4865
4866 test_71() {
4867     test_mkdir -p $DIR/$tdir
4868     sh rundbench -C -D $DIR/$tdir 2 || error "dbench failed!"
4869 }
4870 run_test 71 "Running dbench on lustre (don't segment fault) ===="
4871
4872 test_72a() { # bug 5695 - Test that on 2.6 remove_suid works properly
4873         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4874         check_kernel_version 43 || return 0
4875         [ "$RUNAS_ID" = "$UID" ] && skip_env "RUNAS_ID = UID = $UID -- skipping" && return
4876
4877         # Check that testing environment is properly set up. Skip if not
4878         FAIL_ON_ERROR=false check_runas_id_ret $RUNAS_ID $RUNAS_GID $RUNAS || {
4879                 skip_env "User $RUNAS_ID does not exist - skipping"
4880                 return 0
4881         }
4882         # We had better clear the $DIR to get enough space for dd
4883         rm -rf $DIR/*
4884         touch $DIR/f72
4885         chmod 777 $DIR/f72
4886         chmod ug+s $DIR/f72
4887         $RUNAS dd if=/dev/zero of=$DIR/f72 bs=512 count=1 || error
4888         # See if we are still setuid/sgid
4889         test -u $DIR/f72 -o -g $DIR/f72 && error "S/gid is not dropped on write"
4890         # Now test that MDS is updated too
4891         cancel_lru_locks mdc
4892         test -u $DIR/f72 -o -g $DIR/f72 && error "S/gid is not dropped on MDS"
4893         rm -f $DIR/f72
4894 }
4895 run_test 72a "Test that remove suid works properly (bug5695) ===="
4896
4897 test_72b() { # bug 24226 -- keep mode setting when size is not changing
4898         local perm
4899
4900         [ "$RUNAS_ID" = "$UID" ] && \
4901                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
4902         [ "$RUNAS_ID" -eq 0 ] && \
4903                 skip_env "RUNAS_ID = 0 -- skipping" && return
4904
4905         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4906         # Check that testing environment is properly set up. Skip if not
4907         FAIL_ON_ERROR=false check_runas_id_ret $RUNAS_ID $RUNAS_ID $RUNAS || {
4908                 skip_env "User $RUNAS_ID does not exist - skipping"
4909                 return 0
4910         }
4911         touch $DIR/${tfile}-f{g,u}
4912         test_mkdir $DIR/${tfile}-dg
4913         test_mkdir $DIR/${tfile}-du
4914         chmod 770 $DIR/${tfile}-{f,d}{g,u}
4915         chmod g+s $DIR/${tfile}-{f,d}g
4916         chmod u+s $DIR/${tfile}-{f,d}u
4917         for perm in 777 2777 4777; do
4918                 $RUNAS chmod $perm $DIR/${tfile}-fg && error "S/gid file allowed improper chmod to $perm"
4919                 $RUNAS chmod $perm $DIR/${tfile}-fu && error "S/uid file allowed improper chmod to $perm"
4920                 $RUNAS chmod $perm $DIR/${tfile}-dg && error "S/gid dir allowed improper chmod to $perm"
4921                 $RUNAS chmod $perm $DIR/${tfile}-du && error "S/uid dir allowed improper chmod to $perm"
4922         done
4923         true
4924 }
4925 run_test 72b "Test that we keep mode setting if without file data changed (bug 24226)"
4926
4927 # bug 3462 - multiple simultaneous MDC requests
4928 test_73() {
4929         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4930         test_mkdir $DIR/d73-1
4931         test_mkdir $DIR/d73-2
4932         multiop_bg_pause $DIR/d73-1/f73-1 O_c || return 1
4933         pid1=$!
4934
4935         lctl set_param fail_loc=0x80000129
4936         $MULTIOP $DIR/d73-1/f73-2 Oc &
4937         sleep 1
4938         lctl set_param fail_loc=0
4939
4940         $MULTIOP $DIR/d73-2/f73-3 Oc &
4941         pid3=$!
4942
4943         kill -USR1 $pid1
4944         wait $pid1 || return 1
4945
4946         sleep 25
4947
4948         $CHECKSTAT -t file $DIR/d73-1/f73-1 || return 4
4949         $CHECKSTAT -t file $DIR/d73-1/f73-2 || return 5
4950         $CHECKSTAT -t file $DIR/d73-2/f73-3 || return 6
4951
4952         rm -rf $DIR/d73-*
4953 }
4954 run_test 73 "multiple MDC requests (should not deadlock)"
4955
4956 test_74a() { # bug 6149, 6184
4957         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4958         #define OBD_FAIL_LDLM_ENQUEUE_OLD_EXPORT 0x30e
4959         #
4960         # very important to OR with OBD_FAIL_ONCE (0x80000000) -- otherwise it
4961         # will spin in a tight reconnection loop
4962         touch $DIR/f74a
4963         lctl set_param fail_loc=0x8000030e
4964         # get any lock that won't be difficult - lookup works.
4965         ls $DIR/f74a
4966         lctl set_param fail_loc=0
4967         true
4968         rm -f $DIR/f74a
4969 }
4970 run_test 74a "ldlm_enqueue freed-export error path, ls (shouldn't LBUG)"
4971
4972 test_74b() { # bug 13310
4973         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4974         #define OBD_FAIL_LDLM_ENQUEUE_OLD_EXPORT 0x30e
4975         #
4976         # very important to OR with OBD_FAIL_ONCE (0x80000000) -- otherwise it
4977         # will spin in a tight reconnection loop
4978         lctl set_param fail_loc=0x8000030e
4979         # get a "difficult" lock
4980         touch $DIR/f74b
4981         lctl set_param fail_loc=0
4982         true
4983         rm -f $DIR/f74b
4984 }
4985 run_test 74b "ldlm_enqueue freed-export error path, touch (shouldn't LBUG)"
4986
4987 test_74c() {
4988         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4989 #define OBD_FAIL_LDLM_NEW_LOCK
4990         lctl set_param fail_loc=0x80000319
4991         touch $DIR/$tfile && error "Touch successful"
4992         true
4993 }
4994 run_test 74c "ldlm_lock_create error path, (shouldn't LBUG)"
4995
4996 num_inodes() {
4997         awk '/lustre_inode_cache/ {print $2; exit}' /proc/slabinfo
4998 }
4999
5000 get_inode_slab_tunables() {
5001         awk '/lustre_inode_cache/ {print $9," ",$10," ",$11; exit}' /proc/slabinfo
5002 }
5003
5004 set_inode_slab_tunables() {
5005         echo "lustre_inode_cache $1" > /proc/slabinfo
5006 }
5007
5008 test_76() { # Now for bug 20433, added originally in bug 1443
5009         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5010         local SLAB_SETTINGS=`get_inode_slab_tunables`
5011         local CPUS=`getconf _NPROCESSORS_ONLN`
5012         # we cannot set limit below 1 which means 1 inode in each
5013         # per-cpu cache is still allowed
5014         set_inode_slab_tunables "1 1 0"
5015         cancel_lru_locks osc
5016         BEFORE_INODES=`num_inodes`
5017         echo "before inodes: $BEFORE_INODES"
5018         local COUNT=1000
5019         [ "$SLOW" = "no" ] && COUNT=100
5020         for i in `seq $COUNT`; do
5021                 touch $DIR/$tfile
5022                 rm -f $DIR/$tfile
5023         done
5024         cancel_lru_locks osc
5025         AFTER_INODES=`num_inodes`
5026         echo "after inodes: $AFTER_INODES"
5027         local wait=0
5028         while [ $((AFTER_INODES-1*CPUS)) -gt $BEFORE_INODES ]; do
5029                 sleep 2
5030                 AFTER_INODES=`num_inodes`
5031                 wait=$((wait+2))
5032                 echo "wait $wait seconds inodes: $AFTER_INODES"
5033                 if [ $wait -gt 30 ]; then
5034                         error "inode slab grew from $BEFORE_INODES to $AFTER_INODES"
5035                 fi
5036         done
5037         set_inode_slab_tunables "$SLAB_SETTINGS"
5038 }
5039 run_test 76 "confirm clients recycle inodes properly ===="
5040
5041
5042 export ORIG_CSUM=""
5043 set_checksums()
5044 {
5045         # Note: in sptlrpc modes which enable its own bulk checksum, the
5046         # original crc32_le bulk checksum will be automatically disabled,
5047         # and the OBD_FAIL_OSC_CHECKSUM_SEND/OBD_FAIL_OSC_CHECKSUM_RECEIVE
5048         # will be checked by sptlrpc code against sptlrpc bulk checksum.
5049         # In this case set_checksums() will not be no-op, because sptlrpc
5050         # bulk checksum will be enabled all through the test.
5051
5052         [ "$ORIG_CSUM" ] || ORIG_CSUM=`lctl get_param -n osc.*.checksums | head -n1`
5053         lctl set_param -n osc.*.checksums $1
5054         return 0
5055 }
5056
5057 export ORIG_CSUM_TYPE="`lctl get_param -n osc.*osc-[^mM]*.checksum_type |
5058                         sed 's/.*\[\(.*\)\].*/\1/g' | head -n1`"
5059 CKSUM_TYPES=${CKSUM_TYPES:-"crc32 adler"}
5060 [ "$ORIG_CSUM_TYPE" = "crc32c" ] && CKSUM_TYPES="$CKSUM_TYPES crc32c"
5061 set_checksum_type()
5062 {
5063         lctl set_param -n osc.*osc-[^mM]*.checksum_type $1
5064         log "set checksum type to $1"
5065         return 0
5066 }
5067 F77_TMP=$TMP/f77-temp
5068 F77SZ=8
5069 setup_f77() {
5070         dd if=/dev/urandom of=$F77_TMP bs=1M count=$F77SZ || \
5071                 error "error writing to $F77_TMP"
5072 }
5073
5074 test_77a() { # bug 10889
5075         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5076         $GSS && skip "could not run with gss" && return
5077         [ ! -f $F77_TMP ] && setup_f77
5078         set_checksums 1
5079         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ || error "dd error"
5080         set_checksums 0
5081         rm -f $DIR/$tfile
5082 }
5083 run_test 77a "normal checksum read/write operation ============="
5084
5085 test_77b() { # bug 10889
5086         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5087         $GSS && skip "could not run with gss" && return
5088         [ ! -f $F77_TMP ] && setup_f77
5089         #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
5090         lctl set_param fail_loc=0x80000409
5091         set_checksums 1
5092         dd if=$F77_TMP of=$DIR/f77b bs=1M count=$F77SZ conv=sync || \
5093                 error "dd error: $?"
5094         lctl set_param fail_loc=0
5095         set_checksums 0
5096 }
5097 run_test 77b "checksum error on client write ===================="
5098
5099 test_77c() { # bug 10889
5100         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5101         $GSS && skip "could not run with gss" && return
5102         [ ! -f $DIR/f77b ] && skip "requires 77b - skipping" && return
5103         set_checksums 1
5104         for algo in $CKSUM_TYPES; do
5105                 cancel_lru_locks osc
5106                 set_checksum_type $algo
5107                 #define OBD_FAIL_OSC_CHECKSUM_RECEIVE    0x408
5108                 lctl set_param fail_loc=0x80000408
5109                 cmp $F77_TMP $DIR/f77b || error "file compare failed"
5110                 lctl set_param fail_loc=0
5111         done
5112         set_checksums 0
5113         set_checksum_type $ORIG_CSUM_TYPE
5114         rm -f $DIR/f77b
5115 }
5116 run_test 77c "checksum error on client read ==================="
5117
5118 test_77d() { # bug 10889
5119         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5120         $GSS && skip "could not run with gss" && return
5121         #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
5122         lctl set_param fail_loc=0x80000409
5123         set_checksums 1
5124         directio write $DIR/f77 0 $F77SZ $((1024 * 1024)) || \
5125                 error "direct write: rc=$?"
5126         lctl set_param fail_loc=0
5127         set_checksums 0
5128 }
5129 run_test 77d "checksum error on OST direct write ==============="
5130
5131 test_77e() { # bug 10889
5132         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5133         $GSS && skip "could not run with gss" && return
5134         [ ! -f $DIR/f77 ] && skip "requires 77d - skipping" && return
5135         #define OBD_FAIL_OSC_CHECKSUM_RECEIVE    0x408
5136         lctl set_param fail_loc=0x80000408
5137         set_checksums 1
5138         cancel_lru_locks osc
5139         directio read $DIR/f77 0 $F77SZ $((1024 * 1024)) || \
5140                 error "direct read: rc=$?"
5141         lctl set_param fail_loc=0
5142         set_checksums 0
5143 }
5144 run_test 77e "checksum error on OST direct read ================"
5145
5146 test_77f() { # bug 10889
5147         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5148         $GSS && skip "could not run with gss" && return
5149         set_checksums 1
5150         for algo in $CKSUM_TYPES; do
5151                 cancel_lru_locks osc
5152                 set_checksum_type $algo
5153                 #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
5154                 lctl set_param fail_loc=0x409
5155                 directio write $DIR/f77 0 $F77SZ $((1024 * 1024)) && \
5156                         error "direct write succeeded"
5157                 lctl set_param fail_loc=0
5158         done
5159         set_checksum_type $ORIG_CSUM_TYPE
5160         set_checksums 0
5161 }
5162 run_test 77f "repeat checksum error on write (expect error) ===="
5163
5164 test_77g() { # bug 10889
5165         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5166         $GSS && skip "could not run with gss" && return
5167         remote_ost_nodsh && skip "remote OST with nodsh" && return
5168
5169         [ ! -f $F77_TMP ] && setup_f77
5170
5171         $SETSTRIPE -c 1 -i 0 $DIR/f77g
5172         #define OBD_FAIL_OST_CHECKSUM_RECEIVE       0x21a
5173         do_facet ost1 lctl set_param fail_loc=0x8000021a
5174         set_checksums 1
5175         dd if=$F77_TMP of=$DIR/f77g bs=1M count=$F77SZ || \
5176                 error "write error: rc=$?"
5177         do_facet ost1 lctl set_param fail_loc=0
5178         set_checksums 0
5179 }
5180 run_test 77g "checksum error on OST write ======================"
5181
5182 test_77h() { # bug 10889
5183         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5184         $GSS && skip "could not run with gss" && return
5185         remote_ost_nodsh && skip "remote OST with nodsh" && return
5186
5187         [ ! -f $DIR/f77g ] && skip "requires 77g - skipping" && return
5188         cancel_lru_locks osc
5189         #define OBD_FAIL_OST_CHECKSUM_SEND          0x21b
5190         do_facet ost1 lctl set_param fail_loc=0x8000021b
5191         set_checksums 1
5192         cmp $F77_TMP $DIR/f77g || error "file compare failed"
5193         do_facet ost1 lctl set_param fail_loc=0
5194         set_checksums 0
5195 }
5196 run_test 77h "checksum error on OST read ======================="
5197
5198 test_77i() { # bug 13805
5199         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5200         $GSS && skip "could not run with gss" && return
5201         #define OBD_FAIL_OSC_CONNECT_CKSUM       0x40b
5202         lctl set_param fail_loc=0x40b
5203         remount_client $MOUNT
5204         lctl set_param fail_loc=0
5205         for VALUE in `lctl get_param osc.*osc-[^mM]*.checksum_type`; do
5206                 PARAM=`echo ${VALUE[0]} | cut -d "=" -f1`
5207                 algo=`lctl get_param -n $PARAM | sed 's/.*\[\(.*\)\].*/\1/g'`
5208                 [ "$algo" = "adler" ] || error "algo set to $algo instead of adler"
5209         done
5210         remount_client $MOUNT
5211 }
5212 run_test 77i "client not supporting OSD_CONNECT_CKSUM =========="
5213
5214 test_77j() { # bug 13805
5215         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5216         $GSS && skip "could not run with gss" && return
5217         #define OBD_FAIL_OSC_CKSUM_ADLER_ONLY    0x40c
5218         lctl set_param fail_loc=0x40c
5219         remount_client $MOUNT
5220         lctl set_param fail_loc=0
5221         sleep 2 # wait async osc connect to finish
5222         for VALUE in `lctl get_param osc.*osc-[^mM]*.checksum_type`; do
5223                 PARAM=`echo ${VALUE[0]} | cut -d "=" -f1`
5224                 algo=`lctl get_param -n $PARAM | sed 's/.*\[\(.*\)\].*/\1/g'`
5225                 [ "$algo" = "adler" ] || error "algo set to $algo instead of adler"
5226         done
5227         remount_client $MOUNT
5228 }
5229 run_test 77j "client only supporting ADLER32 ===================="
5230
5231 [ "$ORIG_CSUM" ] && set_checksums $ORIG_CSUM || true
5232 rm -f $F77_TMP
5233 unset F77_TMP
5234
5235 test_78() { # bug 10901
5236         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5237         remote_ost || { skip_env "local OST" && return; }
5238
5239         NSEQ=5
5240         F78SIZE=$(($(awk '/MemFree:/ { print $2 }' /proc/meminfo) / 1024))
5241         echo "MemFree: $F78SIZE, Max file size: $MAXFREE"
5242         MEMTOTAL=$(($(awk '/MemTotal:/ { print $2 }' /proc/meminfo) / 1024))
5243         echo "MemTotal: $MEMTOTAL"
5244 # reserve 256MB of memory for the kernel and other running processes,
5245 # and then take 1/2 of the remaining memory for the read/write buffers.
5246     if [ $MEMTOTAL -gt 512 ] ;then
5247         MEMTOTAL=$(((MEMTOTAL - 256 ) / 2))
5248     else
5249         # for those poor memory-starved high-end clusters...
5250         MEMTOTAL=$((MEMTOTAL / 2))
5251     fi
5252         echo "Mem to use for directio: $MEMTOTAL"
5253         [ $F78SIZE -gt $MEMTOTAL ] && F78SIZE=$MEMTOTAL
5254         [ $F78SIZE -gt 512 ] && F78SIZE=512
5255         [ $F78SIZE -gt $((MAXFREE / 1024)) ] && F78SIZE=$((MAXFREE / 1024))
5256         SMALLESTOST=`lfs df $DIR |grep OST | awk '{print $4}' |sort -n |head -1`
5257         echo "Smallest OST: $SMALLESTOST"
5258         [ $SMALLESTOST -lt 10240 ] && \
5259                 skip "too small OSTSIZE, useless to run large O_DIRECT test" && return 0
5260
5261         [ $F78SIZE -gt $((SMALLESTOST * $OSTCOUNT / 1024 - 80)) ] && \
5262                 F78SIZE=$((SMALLESTOST * $OSTCOUNT / 1024 - 80))
5263
5264         [ "$SLOW" = "no" ] && NSEQ=1 && [ $F78SIZE -gt 32 ] && F78SIZE=32
5265         echo "File size: $F78SIZE"
5266         $SETSTRIPE -c $OSTCOUNT $DIR/$tfile || error "setstripe failed"
5267         for i in `seq 1 $NSEQ`
5268         do
5269                 FSIZE=$(($F78SIZE / ($NSEQ - $i + 1)))
5270                 echo directIO rdwr round $i of $NSEQ
5271                 $DIRECTIO rdwr $DIR/$tfile 0 $FSIZE 1048576||error "rdwr failed"
5272         done
5273
5274         rm -f $DIR/$tfile
5275 }
5276 run_test 78 "handle large O_DIRECT writes correctly ============"
5277
5278 test_79() { # bug 12743
5279         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5280         wait_delete_completed
5281
5282         BKTOTAL=$(calc_osc_kbytes kbytestotal)
5283         BKFREE=$(calc_osc_kbytes kbytesfree)
5284         BKAVAIL=$(calc_osc_kbytes kbytesavail)
5285
5286         STRING=`df -P $MOUNT | tail -n 1 | awk '{print $2","$3","$4}'`
5287         DFTOTAL=`echo $STRING | cut -d, -f1`
5288         DFUSED=`echo $STRING  | cut -d, -f2`
5289         DFAVAIL=`echo $STRING | cut -d, -f3`
5290         DFFREE=$(($DFTOTAL - $DFUSED))
5291
5292         ALLOWANCE=$((64 * $OSTCOUNT))
5293
5294         if [ $DFTOTAL -lt $(($BKTOTAL - $ALLOWANCE)) ] ||
5295            [ $DFTOTAL -gt $(($BKTOTAL + $ALLOWANCE)) ] ; then
5296                 error "df total($DFTOTAL) mismatch OST total($BKTOTAL)"
5297         fi
5298         if [ $DFFREE -lt $(($BKFREE - $ALLOWANCE)) ] ||
5299            [ $DFFREE -gt $(($BKFREE + $ALLOWANCE)) ] ; then
5300                 error "df free($DFFREE) mismatch OST free($BKFREE)"
5301         fi
5302         if [ $DFAVAIL -lt $(($BKAVAIL - $ALLOWANCE)) ] ||
5303            [ $DFAVAIL -gt $(($BKAVAIL + $ALLOWANCE)) ] ; then
5304                 error "df avail($DFAVAIL) mismatch OST avail($BKAVAIL)"
5305         fi
5306 }
5307 run_test 79 "df report consistency check ======================="
5308
5309 test_80() { # bug 10718
5310         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5311         # relax strong synchronous semantics for slow backends like ZFS
5312         local soc="obdfilter.*.sync_on_lock_cancel"
5313         local soc_old=$(do_facet ost1 lctl get_param -n $soc | head -n1)
5314         local hosts=
5315         if [ "$soc_old" != "never" -a "$(facet_fstype ost1)" != "ldiskfs" ]; then
5316                 hosts=$(for host in $(seq -f "ost%g" 1 $OSTCOUNT); do
5317                           facet_active_host $host; done | sort -u)
5318                 do_nodes $hosts lctl set_param $soc=never
5319         fi
5320
5321         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=1M
5322         sync; sleep 1; sync
5323         local BEFORE=`date +%s`
5324         cancel_lru_locks osc
5325         local AFTER=`date +%s`
5326         local DIFF=$((AFTER-BEFORE))
5327         if [ $DIFF -gt 1 ] ; then
5328                 error "elapsed for 1M@1T = $DIFF"
5329         fi
5330
5331         [ -n "$hosts" ] && do_nodes $hosts lctl set_param $soc=$soc_old
5332
5333         rm -f $DIR/$tfile
5334 }
5335 run_test 80 "Page eviction is equally fast at high offsets too  ===="
5336
5337 test_81a() { # LU-456
5338         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5339         remote_ost_nodsh && skip "remote OST with nodsh" && return
5340         # define OBD_FAIL_OST_MAPBLK_ENOSPC    0x228
5341         # MUST OR with the OBD_FAIL_ONCE (0x80000000)
5342         do_facet ost1 lctl set_param fail_loc=0x80000228
5343
5344         # write should trigger a retry and success
5345         $SETSTRIPE -i 0 -c 1 $DIR/$tfile
5346         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
5347         RC=$?
5348         if [ $RC -ne 0 ] ; then
5349                 error "write should success, but failed for $RC"
5350         fi
5351 }
5352 run_test 81a "OST should retry write when get -ENOSPC ==============="
5353
5354 test_81b() { # LU-456
5355         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5356         remote_ost_nodsh && skip "remote OST with nodsh" && return
5357         # define OBD_FAIL_OST_MAPBLK_ENOSPC    0x228
5358         # Don't OR with the OBD_FAIL_ONCE (0x80000000)
5359         do_facet ost1 lctl set_param fail_loc=0x228
5360
5361         # write should retry several times and return -ENOSPC finally
5362         $SETSTRIPE -i 0 -c 1 $DIR/$tfile
5363         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
5364         RC=$?
5365         ENOSPC=28
5366         if [ $RC -ne $ENOSPC ] ; then
5367                 error "dd should fail for -ENOSPC, but succeed."
5368         fi
5369 }
5370 run_test 81b "OST should return -ENOSPC when retry still fails ======="
5371
5372 test_82() { # LU-1031
5373         dd if=/dev/zero of=$DIR/$tfile bs=1M count=10
5374         local gid1=14091995
5375         local gid2=16022000
5376
5377         multiop_bg_pause $DIR/$tfile OG${gid1}_g${gid1}c || return 1
5378         local MULTIPID1=$!
5379         multiop_bg_pause $DIR/$tfile O_G${gid2}r10g${gid2}c || return 2
5380         local MULTIPID2=$!
5381         kill -USR1 $MULTIPID2
5382         sleep 2
5383         if [[ `ps h -o comm -p $MULTIPID2` == "" ]]; then
5384                 error "First grouplock does not block second one"
5385         else
5386                 echo "Second grouplock blocks first one"
5387         fi
5388         kill -USR1 $MULTIPID1
5389         wait $MULTIPID1
5390         wait $MULTIPID2
5391 }
5392 run_test 82 "Basic grouplock test ==============================="
5393
5394 test_99a() {
5395         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && \
5396             return
5397         test_mkdir -p $DIR/d99cvsroot
5398         chown $RUNAS_ID $DIR/d99cvsroot
5399         local oldPWD=$PWD       # bug 13584, use $TMP as working dir
5400         cd $TMP
5401
5402         $RUNAS cvs -d $DIR/d99cvsroot init || error
5403         cd $oldPWD
5404 }
5405 run_test 99a "cvs init ========================================="
5406
5407 test_99b() {
5408         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && return
5409         [ ! -d $DIR/d99cvsroot ] && test_99a
5410         cd /etc/init.d
5411         # some versions of cvs import exit(1) when asked to import links or
5412         # files they can't read.  ignore those files.
5413         TOIGNORE=$(find . -type l -printf '-I %f\n' -o \
5414                         ! -perm +4 -printf '-I %f\n')
5415         $RUNAS cvs -d $DIR/d99cvsroot import -m "nomesg" $TOIGNORE \
5416                 d99reposname vtag rtag
5417 }
5418 run_test 99b "cvs import ======================================="
5419
5420 test_99c() {
5421         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && return
5422         [ ! -d $DIR/d99cvsroot ] && test_99b
5423         cd $DIR
5424         test_mkdir -p $DIR/d99reposname
5425         chown $RUNAS_ID $DIR/d99reposname
5426         $RUNAS cvs -d $DIR/d99cvsroot co d99reposname
5427 }
5428 run_test 99c "cvs checkout ====================================="
5429
5430 test_99d() {
5431         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && return
5432         [ ! -d $DIR/d99cvsroot ] && test_99c
5433         cd $DIR/d99reposname
5434         $RUNAS touch foo99
5435         $RUNAS cvs add -m 'addmsg' foo99
5436 }
5437 run_test 99d "cvs add =========================================="
5438
5439 test_99e() {
5440         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && return
5441         [ ! -d $DIR/d99cvsroot ] && test_99c
5442         cd $DIR/d99reposname
5443         $RUNAS cvs update
5444 }
5445 run_test 99e "cvs update ======================================="
5446
5447 test_99f() {
5448         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && return
5449         [ ! -d $DIR/d99cvsroot ] && test_99d
5450         cd $DIR/d99reposname
5451         $RUNAS cvs commit -m 'nomsg' foo99
5452     rm -fr $DIR/d99cvsroot
5453 }
5454 run_test 99f "cvs commit ======================================="
5455
5456 test_100() {
5457         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5458         [ "$NETTYPE" = tcp ] || \
5459                 { skip "TCP secure port test, not useful for NETTYPE=$NETTYPE" && \
5460                         return ; }
5461
5462         remote_ost_nodsh && skip "remote OST with nodsh" && return
5463         remote_mds_nodsh && skip "remote MDS with nodsh" && return
5464         remote_servers || \
5465                 { skip "useless for local single node setup" && return; }
5466
5467         netstat -tna | ( rc=1; while read PROT SND RCV LOCAL REMOTE STAT; do
5468                 [ "$PROT" != "tcp" ] && continue
5469                 RPORT=$(echo $REMOTE | cut -d: -f2)
5470                 [ "$RPORT" != "$ACCEPTOR_PORT" ] && continue
5471
5472                 rc=0
5473                 LPORT=`echo $LOCAL | cut -d: -f2`
5474                 if [ $LPORT -ge 1024 ]; then
5475                         echo "bad: $PROT $SND $RCV $LOCAL $REMOTE $STAT"
5476                         netstat -tna
5477                         error_exit "local: $LPORT > 1024, remote: $RPORT"
5478                 fi
5479         done
5480         [ "$rc" = 0 ] || error_exit "privileged port not found" )
5481 }
5482 run_test 100 "check local port using privileged port ==========="
5483
5484 function get_named_value()
5485 {
5486     local tag
5487
5488     tag=$1
5489     while read ;do
5490         line=$REPLY
5491         case $line in
5492         $tag*)
5493             echo $line | sed "s/^$tag[ ]*//"
5494             break
5495             ;;
5496         esac
5497     done
5498 }
5499
5500 export CACHE_MAX=$($LCTL get_param -n llite.*.max_cached_mb |
5501                    awk '/^max_cached_mb/ { print $2 }')
5502
5503 cleanup_101a() {
5504         $LCTL set_param -n llite.*.max_cached_mb $CACHE_MAX
5505         trap 0
5506 }
5507
5508 test_101a() {
5509         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5510         local s
5511         local discard
5512         local nreads=10000
5513         [ "$CPU" = "UML" ] && nreads=1000
5514         local cache_limit=32
5515
5516         $LCTL set_param -n osc.*-osc*.rpc_stats 0
5517         trap cleanup_101a EXIT
5518         $LCTL set_param -n llite.*.read_ahead_stats 0
5519         $LCTL set_param -n llite.*.max_cached_mb $cache_limit
5520
5521         #
5522         # randomly read 10000 of 64K chunks from file 3x 32MB in size
5523         #
5524         echo "nreads: $nreads file size: $((cache_limit * 3))MB"
5525         $READS -f $DIR/$tfile -s$((cache_limit * 3192 * 1024)) -b65536 -C -n$nreads -t 180
5526
5527         discard=0
5528         for s in `$LCTL get_param -n llite.*.read_ahead_stats | \
5529                 get_named_value 'read but discarded' | cut -d" " -f1`; do
5530                         discard=$(($discard + $s))
5531         done
5532         cleanup_101a
5533
5534         if [ $(($discard * 10)) -gt $nreads ] ;then
5535                 $LCTL get_param osc.*-osc*.rpc_stats
5536                 $LCTL get_param llite.*.read_ahead_stats
5537                 error "too many ($discard) discarded pages"
5538         fi
5539         rm -f $DIR/$tfile || true
5540 }
5541 run_test 101a "check read-ahead for random reads ================"
5542
5543 setup_test101bc() {
5544         test_mkdir -p $DIR/$tdir
5545         STRIPE_SIZE=1048576
5546         STRIPE_COUNT=$OSTCOUNT
5547         STRIPE_OFFSET=0
5548
5549         local list=$(comma_list $(osts_nodes))
5550         set_osd_param $list '' read_cache_enable 0
5551         set_osd_param $list '' writethrough_cache_enable 0
5552
5553         trap cleanup_test101bc EXIT
5554         # prepare the read-ahead file
5555         $SETSTRIPE -S $STRIPE_SIZE -i $STRIPE_OFFSET -c $OSTCOUNT $DIR/$tfile
5556
5557         dd if=/dev/zero of=$DIR/$tfile bs=1024k count=100 2> /dev/null
5558 }
5559
5560 cleanup_test101bc() {
5561         trap 0
5562         rm -rf $DIR/$tdir
5563         rm -f $DIR/$tfile
5564
5565         local list=$(comma_list $(osts_nodes))
5566         set_osd_param $list '' read_cache_enable 1
5567         set_osd_param $list '' writethrough_cache_enable 1
5568 }
5569
5570 calc_total() {
5571         awk 'BEGIN{total=0}; {total+=$1}; END{print total}'
5572 }
5573
5574 ra_check_101() {
5575         local READ_SIZE=$1
5576         local STRIPE_SIZE=1048576
5577         local RA_INC=1048576
5578         local STRIDE_LENGTH=$((STRIPE_SIZE/READ_SIZE))
5579         local FILE_LENGTH=$((64*100))
5580         local discard_limit=$((((STRIDE_LENGTH - 1)*3/(STRIDE_LENGTH*OSTCOUNT))* \
5581                              (STRIDE_LENGTH*OSTCOUNT - STRIDE_LENGTH)))
5582         DISCARD=`$LCTL get_param -n llite.*.read_ahead_stats | \
5583                         get_named_value 'read but discarded' | \
5584                         cut -d" " -f1 | calc_total`
5585         if [ $DISCARD -gt $discard_limit ]; then
5586                 $LCTL get_param llite.*.read_ahead_stats
5587                 error "Too many ($DISCARD) discarded pages with size (${READ_SIZE})"
5588         else
5589                 echo "Read-ahead success for size ${READ_SIZE}"
5590         fi
5591 }
5592
5593 test_101b() {
5594         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5595         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping stride IO stride-ahead test" && return
5596         local STRIPE_SIZE=1048576
5597         local STRIDE_SIZE=$((STRIPE_SIZE*OSTCOUNT))
5598         local FILE_LENGTH=$((STRIPE_SIZE*100))
5599         local ITERATION=$((FILE_LENGTH/STRIDE_SIZE))
5600         # prepare the read-ahead file
5601         setup_test101bc
5602         cancel_lru_locks osc
5603         for BIDX in 2 4 8 16 32 64 128 256
5604         do
5605                 local BSIZE=$((BIDX*4096))
5606                 local READ_COUNT=$((STRIPE_SIZE/BSIZE))
5607                 local STRIDE_LENGTH=$((STRIDE_SIZE/BSIZE))
5608                 local OFFSET=$((STRIPE_SIZE/BSIZE*(OSTCOUNT - 1)))
5609                 $LCTL set_param -n llite.*.read_ahead_stats 0
5610                 $READS -f $DIR/$tfile  -l $STRIDE_LENGTH -o $OFFSET \
5611                               -s $FILE_LENGTH -b $STRIPE_SIZE -a $READ_COUNT -n $ITERATION
5612                 cancel_lru_locks osc
5613                 ra_check_101 $BSIZE
5614         done
5615         cleanup_test101bc
5616         true
5617 }
5618 run_test 101b "check stride-io mode read-ahead ================="
5619
5620 test_101c() {
5621         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5622         local STRIPE_SIZE=1048576
5623         local FILE_LENGTH=$((STRIPE_SIZE*100))
5624         local nreads=10000
5625         local osc
5626
5627     setup_test101bc
5628
5629     cancel_lru_locks osc
5630     $LCTL set_param osc.*.rpc_stats 0
5631     $READS -f $DIR/$tfile -s$FILE_LENGTH -b65536 -n$nreads -t 180
5632     for osc in $($LCTL get_param -N osc.*); do
5633         if [ "$osc" == "osc.num_refs" ]; then
5634             continue
5635         fi
5636
5637         local lines=$($LCTL get_param -n ${osc}.rpc_stats | wc | awk '{print $1}')
5638         if [ $lines -le 20 ]; then
5639             continue
5640         fi
5641
5642         local rpc4k=$($LCTL get_param -n ${osc}.rpc_stats |
5643                                      awk '$1 == "1:" { print $2; exit; }')
5644         local rpc8k=$($LCTL get_param -n ${osc}.rpc_stats |
5645                                      awk '$1 == "2:" { print $2; exit; }')
5646         local rpc16k=$($LCTL get_param -n ${osc}.rpc_stats |
5647                                      awk '$1 == "4:" { print $2; exit; }')
5648         local rpc32k=$($LCTL get_param -n ${osc}.rpc_stats |
5649                                      awk '$1 == "8:" { print $2; exit; }')
5650
5651         [ $rpc4k != 0 ]  && error "Small 4k read IO ${rpc4k}!"
5652         [ $rpc8k != 0 ]  && error "Small 8k read IO ${rpc8k}!"
5653         [ $rpc16k != 0 ] && error "Small 16k read IO ${rpc16k}!"
5654         [ $rpc32k != 0 ] && error "Small 32k read IO ${rpc32k}!"
5655         echo "${osc} rpc check passed!"
5656     done
5657     cleanup_test101bc
5658     true
5659 }
5660 run_test 101c "check stripe_size aligned read-ahead ================="
5661
5662 set_read_ahead() {
5663    $LCTL get_param -n llite.*.max_read_ahead_mb | head -n 1
5664    $LCTL set_param -n llite.*.max_read_ahead_mb $1 > /dev/null 2>&1
5665 }
5666
5667 test_101d() {
5668         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5669         local file=$DIR/$tfile
5670         local size=${FILESIZE_101c:-500}
5671         local ra_MB=${READAHEAD_MB:-40}
5672
5673         local space=$(df -P $DIR | tail -n 1 | awk '{ print $4 }')
5674         [ $space -gt $((size * 1024)) ] ||
5675                 { skip "Need free space ${size}M, have $space" && return; }
5676
5677     echo Creating ${size}M test file $file
5678     dd if=/dev/zero of=$file bs=1M count=$size || error "dd failed"
5679     echo Cancel LRU locks on lustre client to flush the client cache
5680     cancel_lru_locks osc
5681
5682     echo Disable read-ahead
5683     local old_READAHEAD=$(set_read_ahead 0)
5684
5685     echo Reading the test file $file with read-ahead disabled
5686     time_ra_OFF=$(do_and_time "dd if=$file of=/dev/null bs=1M count=$size")
5687
5688     echo Cancel LRU locks on lustre client to flush the client cache
5689     cancel_lru_locks osc
5690     echo Enable read-ahead with ${ra_MB}MB
5691     set_read_ahead $ra_MB
5692
5693     echo Reading the test file $file with read-ahead enabled
5694     time_ra_ON=$(do_and_time "dd if=$file of=/dev/null bs=1M count=$size")
5695
5696     echo read-ahead disabled time read $time_ra_OFF
5697     echo read-ahead enabled  time read $time_ra_ON
5698
5699         set_read_ahead $old_READAHEAD
5700         rm -f $file
5701         wait_delete_completed
5702
5703     [ $time_ra_ON -lt $time_ra_OFF ] ||
5704         error "read-ahead enabled  time read (${time_ra_ON}s) is more than
5705                read-ahead disabled time read (${time_ra_OFF}s) filesize ${size}M"
5706 }
5707 run_test 101d "file read with and without read-ahead enabled  ================="
5708
5709 test_101e() {
5710         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5711     local file=$DIR/$tfile
5712     local size=500  #KB
5713     local count=100
5714     local blksize=1024
5715
5716     local space=$(df -P $DIR | tail -n 1 | awk '{ print $4 }')
5717     local need_space=$((count * size))
5718     [ $space -gt $need_space ] ||
5719         { skip_env "Need free space $need_space, have $space" && return; }
5720
5721     echo Creating $count ${size}K test files
5722     for ((i = 0; i < $count; i++)); do
5723         dd if=/dev/zero of=${file}_${i} bs=$blksize count=$size 2>/dev/null
5724     done
5725
5726     echo Cancel LRU locks on lustre client to flush the client cache
5727     cancel_lru_locks osc
5728
5729     echo Reset readahead stats
5730     $LCTL set_param -n llite.*.read_ahead_stats 0
5731
5732     for ((i = 0; i < $count; i++)); do
5733         dd if=${file}_${i} of=/dev/null bs=$blksize count=$size 2>/dev/null
5734     done
5735
5736     local miss=$($LCTL get_param -n llite.*.read_ahead_stats | \
5737           get_named_value 'misses' | cut -d" " -f1 | calc_total)
5738
5739     for ((i = 0; i < $count; i++)); do
5740         rm -rf ${file}_${i} 2>/dev/null
5741     done
5742
5743     #10000 means 20% reads are missing in readahead
5744     [ $miss -lt 10000 ] ||  error "misses too much for small reads"
5745 }
5746 run_test 101e "check read-ahead for small read(1k) for small files(500k)"
5747
5748 cleanup_test101f() {
5749     trap 0
5750     $LCTL set_param -n llite.*.max_read_ahead_whole_mb $MAX_WHOLE_MB
5751     rm -rf $DIR/$tfile 2>/dev/null
5752 }
5753
5754 test_101f() {
5755         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5756     local file=$DIR/$tfile
5757     local nreads=1000
5758
5759     MAX_WHOLE_MB=$($LCTL get_param -n llite.*.max_read_ahead_whole_mb)
5760     $LCTL set_param -n llite.*.max_read_ahead_whole_mb 2
5761     dd if=/dev/zero of=${file} bs=2097152 count=1 2>/dev/null
5762     trap cleanup_test101f EXIT
5763
5764     echo Cancel LRU locks on lustre client to flush the client cache
5765     cancel_lru_locks osc
5766
5767     echo Reset readahead stats
5768     $LCTL set_param -n llite.*.read_ahead_stats 0
5769     # Random read in a 2M file, because max_read_ahead_whole_mb = 2M,
5770     # readahead should read in 2M file on second read, so only miss
5771     # 2 pages.
5772     echo Random 4K reads on 2M file for 1000 times
5773     $READS -f $file -s 2097152 -b 4096 -n $nreads
5774
5775     echo checking missing pages
5776     local miss=$($LCTL get_param -n llite.*.read_ahead_stats |
5777           get_named_value 'misses' | cut -d" " -f1 | calc_total)
5778
5779     [ $miss -lt 3 ] || error "misses too much pages!"
5780     cleanup_test101f
5781 }
5782 run_test 101f "check read-ahead for max_read_ahead_whole_mb"
5783
5784 setup_test102() {
5785         test_mkdir -p $DIR/$tdir
5786         chown $RUNAS_ID $DIR/$tdir
5787         STRIPE_SIZE=65536
5788         STRIPE_OFFSET=1
5789         STRIPE_COUNT=$OSTCOUNT
5790         [ $OSTCOUNT -gt 4 ] && STRIPE_COUNT=4
5791
5792         trap cleanup_test102 EXIT
5793         cd $DIR
5794         $1 $SETSTRIPE -S $STRIPE_SIZE -i $STRIPE_OFFSET -c $STRIPE_COUNT $tdir
5795         cd $DIR/$tdir
5796         for num in 1 2 3 4; do
5797                 for count in $(seq 1 $STRIPE_COUNT); do
5798                         for idx in $(seq 0 $[$STRIPE_COUNT - 1]); do
5799                                 local size=`expr $STRIPE_SIZE \* $num`
5800                                 local file=file"$num-$idx-$count"
5801                                 $1 $SETSTRIPE -S $size -i $idx -c $count $file
5802                         done
5803                 done
5804         done
5805
5806         cd $DIR
5807         $1 $TAR cf $TMP/f102.tar $tdir --xattrs
5808 }
5809
5810 cleanup_test102() {
5811         trap 0
5812         rm -f $TMP/f102.tar
5813         rm -rf $DIR/d0.sanity/d102
5814 }
5815
5816 test_102a() {
5817         local testfile=$DIR/xattr_testfile
5818
5819         touch $testfile
5820
5821         [ "$UID" != 0 ] && skip_env "must run as root" && return
5822         [ -z "`lctl get_param -n mdc.*-mdc-*.connect_flags | grep xattr`" ] &&
5823                 skip_env "must have user_xattr" && return
5824
5825         [ -z "$(which setfattr 2>/dev/null)" ] &&
5826                 skip_env "could not find setfattr" && return
5827
5828         echo "set/get xattr..."
5829         setfattr -n trusted.name1 -v value1 $testfile || error
5830         getfattr -n trusted.name1 $testfile 2> /dev/null |
5831           grep "trusted.name1=.value1" ||
5832                 error "$testfile missing trusted.name1=value1"
5833
5834         setfattr -n user.author1 -v author1 $testfile || error
5835         getfattr -n user.author1 $testfile 2> /dev/null |
5836           grep "user.author1=.author1" ||
5837                 error "$testfile missing trusted.author1=author1"
5838
5839         echo "listxattr..."
5840         setfattr -n trusted.name2 -v value2 $testfile ||
5841                 error "$testfile unable to set trusted.name2"
5842         setfattr -n trusted.name3 -v value3 $testfile ||
5843                 error "$testfile unable to set trusted.name3"
5844         [ $(getfattr -d -m "^trusted" $testfile 2> /dev/null |
5845             grep "trusted.name" | wc -l) -eq 3 ] ||
5846                 error "$testfile missing 3 trusted.name xattrs"
5847
5848         setfattr -n user.author2 -v author2 $testfile ||
5849                 error "$testfile unable to set user.author2"
5850         setfattr -n user.author3 -v author3 $testfile ||
5851                 error "$testfile unable to set user.author3"
5852         [ $(getfattr -d -m "^user" $testfile 2> /dev/null |
5853             grep "user.author" | wc -l) -eq 3 ] ||
5854                 error "$testfile missing 3 user.author xattrs"
5855
5856         echo "remove xattr..."
5857         setfattr -x trusted.name1 $testfile ||
5858                 error "$testfile error deleting trusted.name1"
5859         getfattr -d -m trusted $testfile 2> /dev/null | grep "trusted.name1" &&
5860                 error "$testfile did not delete trusted.name1 xattr"
5861
5862         setfattr -x user.author1 $testfile ||
5863                 error "$testfile error deleting user.author1"
5864         getfattr -d -m user $testfile 2> /dev/null | grep "user.author1" &&
5865                 error "$testfile did not delete trusted.name1 xattr"
5866
5867         # b10667: setting lustre special xattr be silently discarded
5868         echo "set lustre special xattr ..."
5869         setfattr -n "trusted.lov" -v "invalid value" $testfile ||
5870                 error "$testfile allowed setting trusted.lov"
5871 }
5872 run_test 102a "user xattr test =================================="
5873
5874 test_102b() {
5875         # b10930: get/set/list trusted.lov xattr
5876         echo "get/set/list trusted.lov xattr ..."
5877         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping 2-stripe test" && return
5878         local testfile=$DIR/$tfile
5879         $SETSTRIPE -S 65536 -i 1 -c $OSTCOUNT $testfile ||
5880                 error "setstripe failed"
5881         local STRIPECOUNT=$($GETSTRIPE -c $testfile) ||
5882                 error "getstripe failed"
5883         getfattr -d -m "^trusted" $testfile 2> /dev/null | \
5884         grep "trusted.lov" || error "can't get trusted.lov from $testfile"
5885
5886         local testfile2=${testfile}2
5887         local value=`getfattr -n trusted.lov $testfile 2> /dev/null | \
5888                      grep "trusted.lov" |sed -e 's/[^=]\+=//'`
5889
5890         $MCREATE $testfile2
5891         setfattr -n trusted.lov -v $value $testfile2
5892         local stripe_size=$($GETSTRIPE -S $testfile2)
5893         local stripe_count=$($GETSTRIPE -c $testfile2)
5894         [ $stripe_size -eq 65536 ] || error "stripe size $stripe_size != 65536"
5895         [ $stripe_count -eq $STRIPECOUNT ] ||
5896                 error "stripe count $stripe_count != $STRIPECOUNT"
5897         rm -f $DIR/$tfile
5898 }
5899 run_test 102b "getfattr/setfattr for trusted.lov EAs ============"
5900
5901 test_102c() {
5902         # b10930: get/set/list lustre.lov xattr
5903         echo "get/set/list lustre.lov xattr ..."
5904         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping 2-stripe test" && return
5905         test_mkdir -p $DIR/$tdir
5906         chown $RUNAS_ID $DIR/$tdir
5907         local testfile=$DIR/$tdir/$tfile
5908         $RUNAS $SETSTRIPE -S 65536 -i 1 -c $OSTCOUNT $testfile ||
5909                 error "setstripe failed"
5910         local STRIPECOUNT=$($RUNAS $GETSTRIPE -c $testfile) ||
5911                 error "getstripe failed"
5912         $RUNAS getfattr -d -m "^lustre" $testfile 2> /dev/null | \
5913         grep "lustre.lov" || error "can't get lustre.lov from $testfile"
5914
5915         local testfile2=${testfile}2
5916         local value=`getfattr -n lustre.lov $testfile 2> /dev/null | \
5917                      grep "lustre.lov" |sed -e 's/[^=]\+=//'  `
5918
5919         $RUNAS $MCREATE $testfile2
5920         $RUNAS setfattr -n lustre.lov -v $value $testfile2
5921         local stripe_size=$($RUNAS $GETSTRIPE -S $testfile2)
5922         local stripe_count=$($RUNAS $GETSTRIPE -c $testfile2)
5923         [ $stripe_size -eq 65536 ] || error "stripe size $stripe_size != 65536"
5924         [ $stripe_count -eq $STRIPECOUNT ] ||
5925                 error "stripe count $stripe_count != $STRIPECOUNT"
5926 }
5927 run_test 102c "non-root getfattr/setfattr for lustre.lov EAs ==========="
5928
5929 compare_stripe_info1() {
5930         local stripe_index_all_zero=true
5931
5932         for num in 1 2 3 4; do
5933                 for count in $(seq 1 $STRIPE_COUNT); do
5934                         for offset in $(seq 0 $[$STRIPE_COUNT - 1]); do
5935                                 local size=$((STRIPE_SIZE * num))
5936                                 local file=file"$num-$offset-$count"
5937                                 stripe_size=$(lfs getstripe -S $PWD/$file)
5938                                 [ $stripe_size -ne $size ] &&
5939                                     error "$file: size $stripe_size != $size"
5940                                 stripe_count=$(lfs getstripe -c $PWD/$file)
5941                                 # allow fewer stripes to be created, ORI-601
5942                                 [ $stripe_count -lt $(((3 * count + 3) / 4)) ]&&
5943                                     error "$file: count $stripe_count != $count"
5944                                 stripe_index=$(lfs getstripe -i $PWD/$file)
5945                                 [ $stripe_index -ne 0 ] &&
5946                                         stripe_index_all_zero=false
5947                         done
5948                 done
5949         done
5950         $stripe_index_all_zero &&
5951                 error "all files are being extracted starting from OST index 0"
5952         return 0
5953 }
5954
5955 find_lustre_tar() {
5956         [ -n "$(which tar 2>/dev/null)" ] &&
5957                 strings $(which tar) | grep -q "lustre" && echo tar
5958 }
5959
5960 test_102d() {
5961         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5962         # b10930: tar test for trusted.lov xattr
5963         TAR=$(find_lustre_tar)
5964         [ -z "$TAR" ] && skip_env "lustre-aware tar is not installed" && return
5965         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping N-stripe test" && return
5966         setup_test102
5967         test_mkdir -p $DIR/d102d
5968         $TAR xf $TMP/f102.tar -C $DIR/d102d --xattrs
5969         cd $DIR/d102d/$tdir
5970         compare_stripe_info1
5971 }
5972 run_test 102d "tar restore stripe info from tarfile,not keep osts ==========="
5973
5974 test_102f() {
5975         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5976         # b10930: tar test for trusted.lov xattr
5977         TAR=$(find_lustre_tar)
5978         [ -z "$TAR" ] && skip_env "lustre-aware tar is not installed" && return
5979         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping N-stripe test" && return
5980         setup_test102
5981         test_mkdir -p $DIR/d102f
5982         cd $DIR
5983         $TAR cf - --xattrs $tdir | $TAR xf - --xattrs -C $DIR/d102f
5984         cd $DIR/d102f/$tdir
5985         compare_stripe_info1
5986 }
5987 run_test 102f "tar copy files, not keep osts ==========="
5988
5989 grow_xattr() {
5990         local xsize=${1:-1024}  # in bytes
5991         local file=$DIR/$tfile
5992
5993         [ -z $(lctl get_param -n mdc.*.connect_flags | grep xattr) ] &&
5994                 skip "must have user_xattr" && return 0
5995         [ -z "$(which setfattr 2>/dev/null)" ] &&
5996                 skip_env "could not find setfattr" && return 0
5997         [ -z "$(which getfattr 2>/dev/null)" ] &&
5998                 skip_env "could not find getfattr" && return 0
5999
6000         touch $file
6001
6002         local value="$(generate_string $xsize)"
6003
6004         local xbig=trusted.big
6005         log "save $xbig on $file"
6006         setfattr -n $xbig -v $value $file ||
6007                 error "saving $xbig on $file failed"
6008
6009         local orig=$(get_xattr_value $xbig $file)
6010         [[ "$orig" != "$value" ]] && error "$xbig different after saving $xbig"
6011
6012         local xsml=trusted.sml
6013         log "save $xsml on $file"
6014         setfattr -n $xsml -v val $file || error "saving $xsml on $file failed"
6015
6016         local new=$(get_xattr_value $xbig $file)
6017         [[ "$new" != "$orig" ]] && error "$xbig different after saving $xsml"
6018
6019         log "grow $xsml on $file"
6020         setfattr -n $xsml -v "$value" $file ||
6021                 error "growing $xsml on $file failed"
6022
6023         new=$(get_xattr_value $xbig $file)
6024         [[ "$new" != "$orig" ]] && error "$xbig different after growing $xsml"
6025         log "$xbig still valid after growing $xsml"
6026
6027         rm -f $file
6028 }
6029
6030 test_102h() { # bug 15777
6031         grow_xattr 1024
6032 }
6033 run_test 102h "grow xattr from inside inode to external block"
6034
6035 test_102ha() {
6036         large_xattr_enabled || { skip "large_xattr disabled" && return; }
6037         grow_xattr $(max_xattr_size)
6038 }
6039 run_test 102ha "grow xattr from inside inode to external inode"
6040
6041 test_102i() { # bug 17038
6042         touch $DIR/$tfile
6043         ln -s $DIR/$tfile $DIR/${tfile}link
6044         getfattr -n trusted.lov $DIR/$tfile || error "lgetxattr on $DIR/$tfile failed"
6045         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"
6046         rm -f $DIR/$tfile $DIR/${tfile}link
6047 }
6048 run_test 102i "lgetxattr test on symbolic link ============"
6049
6050 test_102j() {
6051         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6052         TAR=$(find_lustre_tar)
6053         [ -z "$TAR" ] && skip_env "lustre-aware tar is not installed" && return
6054         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping N-stripe test" && return
6055         setup_test102 "$RUNAS"
6056         test_mkdir -p $DIR/d102j
6057         chown $RUNAS_ID $DIR/d102j
6058         $RUNAS $TAR xf $TMP/f102.tar -C $DIR/d102j --xattrs
6059         cd $DIR/d102j/$tdir
6060         compare_stripe_info1 "$RUNAS"
6061 }
6062 run_test 102j "non-root tar restore stripe info from tarfile, not keep osts ==="
6063
6064 test_102k() {
6065         touch $DIR/$tfile
6066         # b22187 just check that does not crash for regular file.
6067         setfattr -n trusted.lov $DIR/$tfile
6068         # b22187 'setfattr -n trusted.lov' should work as remove LOV EA for directories
6069         local test_kdir=$DIR/d102k
6070         test_mkdir $test_kdir
6071         local default_size=`$GETSTRIPE -S $test_kdir`
6072         local default_count=`$GETSTRIPE -c $test_kdir`
6073         local default_offset=`$GETSTRIPE -i $test_kdir`
6074         $SETSTRIPE -S 65536 -i 1 -c $OSTCOUNT $test_kdir ||
6075                 error 'dir setstripe failed'
6076         setfattr -n trusted.lov $test_kdir
6077         local stripe_size=`$GETSTRIPE -S $test_kdir`
6078         local stripe_count=`$GETSTRIPE -c $test_kdir`
6079         local stripe_offset=`$GETSTRIPE -i $test_kdir`
6080         [ $stripe_size -eq $default_size ] ||
6081                 error "stripe size $stripe_size != $default_size"
6082         [ $stripe_count -eq $default_count ] ||
6083                 error "stripe count $stripe_count != $default_count"
6084         [ $stripe_offset -eq $default_offset ] ||
6085                 error "stripe offset $stripe_offset != $default_offset"
6086         rm -rf $DIR/$tfile $test_kdir
6087 }
6088 run_test 102k "setfattr without parameter of value shouldn't cause a crash"
6089
6090 test_102l() {
6091         # LU-532 trusted. xattr is invisible to non-root
6092         local testfile=$DIR/$tfile
6093
6094         touch $testfile
6095
6096         echo "listxattr as user..."
6097         chown $RUNAS_ID $testfile
6098         $RUNAS getfattr -d -m '.*' $testfile 2>&1 |
6099             grep -q "trusted" &&
6100                 error "$testfile trusted xattrs are user visible"
6101
6102         return 0;
6103 }
6104 run_test 102l "listxattr filter test =================================="
6105
6106 cleanup_test102
6107
6108 run_acl_subtest()
6109 {
6110     $LUSTRE/tests/acl/run $LUSTRE/tests/acl/$1.test
6111     return $?
6112 }
6113
6114 test_103 () {
6115     [ "$UID" != 0 ] && skip_env "must run as root" && return
6116     [ -z "$(lctl get_param -n mdc.*-mdc-*.connect_flags | grep acl)" ] && skip "must have acl enabled" && return
6117     [ -z "$(which setfacl 2>/dev/null)" ] && skip_env "could not find setfacl" && return
6118     $GSS && skip "could not run under gss" && return
6119
6120     declare -a identity_old
6121
6122         for num in $(seq $MDSCOUNT); do
6123                 switch_identity $num true || identity_old[$num]=$?
6124         done
6125
6126     SAVE_UMASK=`umask`
6127     umask 0022
6128     cd $DIR
6129
6130     echo "performing cp ..."
6131     run_acl_subtest cp || error
6132     echo "performing getfacl-noacl..."
6133     run_acl_subtest getfacl-noacl || error "getfacl-noacl test failed"
6134     echo "performing misc..."
6135     run_acl_subtest misc || error  "misc test failed"
6136     echo "performing permissions..."
6137     run_acl_subtest permissions || error "permissions failed"
6138     echo "performing setfacl..."
6139     run_acl_subtest setfacl || error  "setfacl test failed"
6140
6141     # inheritance test got from HP
6142     echo "performing inheritance..."
6143     cp $LUSTRE/tests/acl/make-tree . || error "cannot copy make-tree"
6144     chmod +x make-tree || error "chmod +x failed"
6145     run_acl_subtest inheritance || error "inheritance test failed"
6146     rm -f make-tree
6147
6148     echo "LU-974 ignore umask when acl is enabled..."
6149     run_acl_subtest 974 || error "LU-974 test failed"
6150
6151     echo "LU-2561 newly created file is same size as directory..."
6152     run_acl_subtest 2561 || error "LU-2561 test failed"
6153
6154     cd $SAVE_PWD
6155     umask $SAVE_UMASK
6156
6157         for num in $(seq $MDSCOUNT); do
6158                 if [ "${identity_old[$num]}" = 1 ]; then
6159                         switch_identity $num false || identity_old[$num]=$?
6160                 fi
6161         done
6162 }
6163 run_test 103 "acl test ========================================="
6164
6165 test_104a() {
6166         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6167         touch $DIR/$tfile
6168         lfs df || error "lfs df failed"
6169         lfs df -ih || error "lfs df -ih failed"
6170         lfs df -h $DIR || error "lfs df -h $DIR failed"
6171         lfs df -i $DIR || error "lfs df -i $DIR failed"
6172         lfs df $DIR/$tfile || error "lfs df $DIR/$tfile failed"
6173         lfs df -ih $DIR/$tfile || error "lfs df -ih $DIR/$tfile failed"
6174
6175         OSC=`lctl dl |grep OST0000-osc-[^M] |awk '{print $4}'`
6176         lctl --device %$OSC deactivate
6177         lfs df || error "lfs df with deactivated OSC failed"
6178         lctl --device %$OSC activate
6179         # wait the osc back to normal
6180         wait_osc_import_state client ost FULL
6181
6182         lfs df || error "lfs df with reactivated OSC failed"
6183         rm -f $DIR/$tfile
6184 }
6185 run_test 104a "lfs df [-ih] [path] test ========================="
6186
6187 test_104b() {
6188         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6189         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID -- skipping" && return
6190         chmod 666 /dev/obd
6191         denied_cnt=$((`$RUNAS $LFS check servers 2>&1 | grep "Permission denied" | wc -l`))
6192         if [ $denied_cnt -ne 0 ];
6193         then
6194                     error "lfs check servers test failed"
6195         fi
6196 }
6197 run_test 104b "$RUNAS lfs check servers test ===================="
6198
6199 test_105a() {
6200         # doesn't work on 2.4 kernels
6201         touch $DIR/$tfile
6202         if [ -n "`mount | grep \"$MOUNT.*flock\" | grep -v noflock`" ]; then
6203                 flocks_test 1 on -f $DIR/$tfile || error "fail flock on"
6204         else
6205                 flocks_test 1 off -f $DIR/$tfile || error "fail flock off"
6206         fi
6207         rm -f $DIR/$tfile
6208 }
6209 run_test 105a "flock when mounted without -o flock test ========"
6210
6211 test_105b() {
6212         touch $DIR/$tfile
6213         if [ -n "`mount | grep \"$MOUNT.*flock\" | grep -v noflock`" ]; then
6214                 flocks_test 1 on -c $DIR/$tfile || error "fail flock on"
6215         else
6216                 flocks_test 1 off -c $DIR/$tfile || error "fail flock off"
6217         fi
6218         rm -f $DIR/$tfile
6219 }
6220 run_test 105b "fcntl when mounted without -o flock test ========"
6221
6222 test_105c() {
6223         touch $DIR/$tfile
6224         if [ -n "`mount | grep \"$MOUNT.*flock\" | grep -v noflock`" ]; then
6225                 flocks_test 1 on -l $DIR/$tfile || error "fail flock on"
6226         else
6227                 flocks_test 1 off -l $DIR/$tfile || error "fail flock off"
6228         fi
6229         rm -f $DIR/$tfile
6230 }
6231 run_test 105c "lockf when mounted without -o flock test ========"
6232
6233 test_105d() { # bug 15924
6234         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6235         test_mkdir -p $DIR/$tdir
6236         [ -z "`mount | grep \"$MOUNT.*flock\" | grep -v noflock`" ] && \
6237                 skip "mount w/o flock enabled" && return
6238         #define OBD_FAIL_LDLM_CP_CB_WAIT  0x315
6239         $LCTL set_param fail_loc=0x80000315
6240         flocks_test 2 $DIR/$tdir
6241 }
6242 run_test 105d "flock race (should not freeze) ========"
6243
6244 test_105e() { # bug 22660 && 22040
6245         [ -z "`mount | grep \"$MOUNT.*flock\" | grep -v noflock`" ] && \
6246                 skip "mount w/o flock enabled" && return
6247         touch $DIR/$tfile
6248         flocks_test 3 $DIR/$tfile
6249 }
6250 run_test 105e "Two conflicting flocks from same process ======="
6251
6252 test_106() { #bug 10921
6253         test_mkdir -p $DIR/$tdir
6254         $DIR/$tdir && error "exec $DIR/$tdir succeeded"
6255         chmod 777 $DIR/$tdir || error "chmod $DIR/$tdir failed"
6256 }
6257 run_test 106 "attempt exec of dir followed by chown of that dir"
6258
6259 test_107() {
6260         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6261         CDIR=`pwd`
6262         cd $DIR
6263
6264         local file=core
6265         rm -f $file
6266
6267         local save_pattern=$(sysctl -n kernel.core_pattern)
6268         local save_uses_pid=$(sysctl -n kernel.core_uses_pid)
6269         sysctl -w kernel.core_pattern=$file
6270         sysctl -w kernel.core_uses_pid=0
6271
6272         ulimit -c unlimited
6273         sleep 60 &
6274         SLEEPPID=$!
6275
6276         sleep 1
6277
6278         kill -s 11 $SLEEPPID
6279         wait $SLEEPPID
6280         if [ -e $file ]; then
6281                 size=`stat -c%s $file`
6282                 [ $size -eq 0 ] && error "Fail to create core file $file"
6283         else
6284                 error "Fail to create core file $file"
6285         fi
6286         rm -f $file
6287         sysctl -w kernel.core_pattern=$save_pattern
6288         sysctl -w kernel.core_uses_pid=$save_uses_pid
6289         cd $CDIR
6290 }
6291 run_test 107 "Coredump on SIG"
6292
6293 test_110() {
6294         test_mkdir -p $DIR/$tdir
6295         test_mkdir $DIR/$tdir/$(str_repeat 'a' 255) ||
6296                 error "mkdir with 255 char failed"
6297         test_mkdir $DIR/$tdir/$(str_repeat 'b' 256) &&
6298                 error "mkdir with 256 char should fail, but did not"
6299         touch $DIR/$tdir/$(str_repeat 'x' 255) ||
6300                 error "create with 255 char failed"
6301         touch $DIR/$tdir/$(str_repeat 'y' 256) &&
6302                 error "create with 256 char should fail, but did not"
6303
6304         ls -l $DIR/$tdir
6305         rm -rf $DIR/$tdir
6306 }
6307 run_test 110 "filename length checking"
6308
6309 test_115() {
6310         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6311         OSTIO_pre=$(ps -e|grep ll_ost_io|awk '{print $4}'|sort -n|tail -1|\
6312             cut -c11-20)
6313         [ -z "$OSTIO_pre" ] && skip "no OSS threads" && \
6314             return
6315         echo "Starting with $OSTIO_pre threads"
6316
6317         NUMTEST=20000
6318         NUMFREE=`df -i -P $DIR | tail -n 1 | awk '{ print $4 }'`
6319         [ $NUMFREE -lt $NUMTEST ] && NUMTEST=$(($NUMFREE - 1000))
6320         echo "$NUMTEST creates/unlinks"
6321         test_mkdir -p $DIR/$tdir
6322         createmany -o $DIR/$tdir/$tfile $NUMTEST
6323         unlinkmany $DIR/$tdir/$tfile $NUMTEST
6324
6325         OSTIO_post=$(ps -e|grep ll_ost_io|awk '{print $4}'|sort -n|tail -1|\
6326             cut -c11-20)
6327
6328         # don't return an error
6329         [ $OSTIO_post == $OSTIO_pre ] && echo \
6330             "WARNING: No new ll_ost_io threads were created ($OSTIO_pre)" &&
6331             echo "This may be fine, depending on what ran before this test" &&
6332             echo "and how fast this system is." && return
6333
6334         echo "Started with $OSTIO_pre threads, ended with $OSTIO_post"
6335 }
6336 run_test 115 "verify dynamic thread creation===================="
6337
6338 free_min_max () {
6339         wait_delete_completed
6340         AVAIL=($(lctl get_param -n osc.*[oO][sS][cC]-[^M]*.kbytesavail))
6341         echo OST kbytes available: ${AVAIL[@]}
6342         MAXI=0; MAXV=${AVAIL[0]}
6343         MINI=0; MINV=${AVAIL[0]}
6344         for ((i = 0; i < ${#AVAIL[@]}; i++)); do
6345             #echo OST $i: ${AVAIL[i]}kb
6346             if [ ${AVAIL[i]} -gt $MAXV ]; then
6347                 MAXV=${AVAIL[i]}; MAXI=$i
6348             fi
6349             if [ ${AVAIL[i]} -lt $MINV ]; then
6350                 MINV=${AVAIL[i]}; MINI=$i
6351             fi
6352         done
6353         echo Min free space: OST $MINI: $MINV
6354         echo Max free space: OST $MAXI: $MAXV
6355 }
6356
6357 test_116a() { # was previously test_116()
6358         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6359         [ "$OSTCOUNT" -lt "2" ] && skip_env "$OSTCOUNT < 2 OSTs" && return
6360
6361         echo -n "Free space priority "
6362         lctl get_param -n lov.*-clilov-*.qos_prio_free
6363         declare -a AVAIL
6364         free_min_max
6365         [ $MINV -gt 960000 ] && skip "too much free space in OST$MINI, skip" &&\
6366                 return
6367
6368         # generate uneven OSTs
6369         test_mkdir -p $DIR/$tdir/OST${MINI}
6370         declare -i FILL
6371         FILL=$(($MINV / 4))
6372         echo "Filling 25% remaining space in OST${MINI} with ${FILL}Kb"
6373         $SETSTRIPE -i $MINI -c 1 $DIR/$tdir/OST${MINI}||error "setstripe failed"
6374         i=0
6375         while [ $FILL -gt 0 ]; do
6376             i=$(($i + 1))
6377             dd if=/dev/zero of=$DIR/$tdir/OST${MINI}/$tfile-$i bs=2M count=1 2>/dev/null
6378             FILL=$(($FILL - 2048))
6379             echo -n .
6380         done
6381         FILL=$(($MINV / 4))
6382         sync
6383         sleep_maxage
6384
6385         free_min_max
6386         DIFF=$(($MAXV - $MINV))
6387         DIFF2=$(($DIFF * 100 / $MINV))
6388         echo -n "diff=${DIFF}=${DIFF2}% must be > 20% for QOS mode..."
6389         if [ $DIFF2 -gt 20 ]; then
6390             echo "ok"
6391         else
6392             echo "failed - QOS mode won't be used"
6393             error_ignore "QOS imbalance criteria not met"
6394             return
6395         fi
6396
6397         MINI1=$MINI; MINV1=$MINV
6398         MAXI1=$MAXI; MAXV1=$MAXV
6399
6400         # now fill using QOS
6401         echo writing a bunch of files to QOS-assigned OSTs
6402         $SETSTRIPE -c 1 $DIR/$tdir
6403         i=0
6404         while [ $FILL -gt 0 ]; do
6405             i=$(($i + 1))
6406             dd if=/dev/zero of=$DIR/$tdir/$tfile-$i bs=1024 count=200 2>/dev/null
6407             FILL=$(($FILL - 200))
6408             echo -n .
6409         done
6410         echo "wrote $i 200k files"
6411         sync
6412         sleep_maxage
6413
6414         echo "Note: free space may not be updated, so measurements might be off"
6415         free_min_max
6416         DIFF2=$(($MAXV - $MINV))
6417         echo "free space delta: orig $DIFF final $DIFF2"
6418         [ $DIFF2 -gt $DIFF ] && echo "delta got worse!"
6419         DIFF=$(($MINV1 - ${AVAIL[$MINI1]}))
6420         echo "Wrote $DIFF to smaller OST $MINI1"
6421         DIFF2=$(($MAXV1 - ${AVAIL[$MAXI1]}))
6422         echo "Wrote $DIFF2 to larger OST $MAXI1"
6423         [ $DIFF -gt 0 ] && echo "Wrote $(($DIFF2 * 100 / $DIFF - 100))% more data to larger OST $MAXI1"
6424
6425         # Figure out which files were written where
6426         UUID=$(lctl get_param -n lov.${FSNAME}-clilov-*.target_obd |
6427                awk '/'$MINI1': / {print $2; exit}')
6428         echo $UUID
6429         MINC=$($GETSTRIPE --obd $UUID $DIR/$tdir | wc -l)
6430         echo "$MINC files created on smaller OST $MINI1"
6431         UUID=$(lctl get_param -n lov.${FSNAME}-clilov-*.target_obd |
6432                awk '/'$MAXI1': / {print $2; exit}')
6433         echo $UUID
6434         MAXC=$($GETSTRIPE --obd $UUID $DIR/$tdir | wc -l)
6435         echo "$MAXC files created on larger OST $MAXI1"
6436         [ $MINC -gt 0 ] && echo "Wrote $(($MAXC * 100 / $MINC - 100))% more files to larger OST $MAXI1"
6437         [ $MAXC -gt $MINC ] || error_ignore "stripe QOS didn't balance free space"
6438
6439         rm -rf $DIR/$tdir
6440 }
6441 run_test 116a "stripe QOS: free space balance ==================="
6442
6443 test_116b() { # LU-2093
6444         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6445 #define OBD_FAIL_MDS_OSC_CREATE_FAIL     0x147
6446         local old_rr
6447         old_rr=$(do_facet $SINGLEMDS lctl get_param -n lov.*mdtlov*.qos_threshold_rr)
6448         do_facet $SINGLEMDS lctl set_param lov.*mdtlov*.qos_threshold_rr 0
6449         mkdir -p $DIR/$tdir
6450         do_facet $SINGLEMDS lctl set_param fail_loc=0x147
6451         createmany -o $DIR/$tdir/f- 20 || error "can't create"
6452         do_facet $SINGLEMDS lctl set_param fail_loc=0
6453         rm -rf $DIR/$tdir
6454         do_facet $SINGLEMDS lctl set_param lov.*mdtlov*.qos_threshold_rr $old_rr
6455 }
6456 run_test 116b "QoS shouldn't LBUG if not enough OSTs found on the 2nd pass"
6457
6458 test_117() # bug 10891
6459 {
6460         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6461         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1
6462         #define OBD_FAIL_OST_SETATTR_CREDITS 0x21e
6463         lctl set_param fail_loc=0x21e
6464         > $DIR/$tfile || error "truncate failed"
6465         lctl set_param fail_loc=0
6466         echo "Truncate succeeded."
6467         rm -f $DIR/$tfile
6468 }
6469 run_test 117 "verify fsfilt_extend =========="
6470
6471 export OLD_RESENDCOUNT=""
6472 set_resend_count () {
6473         local PROC_RESENDCOUNT="osc.${FSNAME}-OST*-osc-*.resend_count"
6474         OLD_RESENDCOUNT=$(lctl get_param -n $PROC_RESENDCOUNT | head -1)
6475         lctl set_param -n $PROC_RESENDCOUNT $1
6476         echo resend_count is set to $(lctl get_param -n $PROC_RESENDCOUNT)
6477 }
6478
6479 [ "$SLOW" = "no" ] && set_resend_count 4 # for reduce test_118* time (bug 14842)
6480
6481 # Reset async IO behavior after error case
6482 reset_async() {
6483         FILE=$DIR/reset_async
6484
6485         # Ensure all OSCs are cleared
6486         $SETSTRIPE -c -1 $FILE
6487         dd if=/dev/zero of=$FILE bs=64k count=$OSTCOUNT
6488         sync
6489         rm $FILE
6490 }
6491
6492 test_118a() #bug 11710
6493 {
6494         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6495         reset_async
6496
6497         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
6498         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
6499         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
6500
6501         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
6502                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
6503                 return 1;
6504         fi
6505         rm -f $DIR/$tfile
6506 }
6507 run_test 118a "verify O_SYNC works =========="
6508
6509 test_118b()
6510 {
6511         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6512         remote_ost_nodsh && skip "remote OST with nodsh" && return
6513
6514         reset_async
6515
6516         #define OBD_FAIL_OST_ENOENT 0x217
6517         set_nodes_failloc "$(osts_nodes)" 0x217
6518         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
6519         RC=$?
6520         set_nodes_failloc "$(osts_nodes)" 0
6521         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
6522         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
6523                     grep -c writeback)
6524
6525         if [[ $RC -eq 0 ]]; then
6526                 error "Must return error due to dropped pages, rc=$RC"
6527                 return 1;
6528         fi
6529
6530         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
6531                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
6532                 return 1;
6533         fi
6534
6535         echo "Dirty pages not leaked on ENOENT"
6536
6537         # Due to the above error the OSC will issue all RPCs syncronously
6538         # until a subsequent RPC completes successfully without error.
6539         $MULTIOP $DIR/$tfile Ow4096yc
6540         rm -f $DIR/$tfile
6541
6542         return 0
6543 }
6544 run_test 118b "Reclaim dirty pages on fatal error =========="
6545
6546 test_118c()
6547 {
6548         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6549         remote_ost_nodsh && skip "remote OST with nodsh" && return
6550
6551         reset_async
6552
6553         #define OBD_FAIL_OST_EROFS               0x216
6554         set_nodes_failloc "$(osts_nodes)" 0x216
6555
6556         # multiop should block due to fsync until pages are written
6557         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
6558         MULTIPID=$!
6559         sleep 1
6560
6561         if [[ `ps h -o comm -p $MULTIPID` != "multiop" ]]; then
6562                 error "Multiop failed to block on fsync, pid=$MULTIPID"
6563         fi
6564
6565         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
6566                     grep -c writeback)
6567         if [[ $WRITEBACK -eq 0 ]]; then
6568                 error "No page in writeback, writeback=$WRITEBACK"
6569         fi
6570
6571         set_nodes_failloc "$(osts_nodes)" 0
6572         wait $MULTIPID
6573         RC=$?
6574         if [[ $RC -ne 0 ]]; then
6575                 error "Multiop fsync failed, rc=$RC"
6576         fi
6577
6578         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
6579         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
6580                     grep -c writeback)
6581         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
6582                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
6583         fi
6584
6585         rm -f $DIR/$tfile
6586         echo "Dirty pages flushed via fsync on EROFS"
6587         return 0
6588 }
6589 run_test 118c "Fsync blocks on EROFS until dirty pages are flushed =========="
6590
6591 test_118d()
6592 {
6593         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6594         remote_ost_nodsh && skip "remote OST with nodsh" && return
6595
6596         reset_async
6597
6598         #define OBD_FAIL_OST_BRW_PAUSE_BULK
6599         set_nodes_failloc "$(osts_nodes)" 0x214
6600         # multiop should block due to fsync until pages are written
6601         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
6602         MULTIPID=$!
6603         sleep 1
6604
6605         if [[ `ps h -o comm -p $MULTIPID` != "multiop" ]]; then
6606                 error "Multiop failed to block on fsync, pid=$MULTIPID"
6607         fi
6608
6609         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
6610                     grep -c writeback)
6611         if [[ $WRITEBACK -eq 0 ]]; then
6612                 error "No page in writeback, writeback=$WRITEBACK"
6613         fi
6614
6615         wait $MULTIPID || error "Multiop fsync failed, rc=$?"
6616         set_nodes_failloc "$(osts_nodes)" 0
6617
6618         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
6619         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
6620                     grep -c writeback)
6621         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
6622                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
6623         fi
6624
6625         rm -f $DIR/$tfile
6626         echo "Dirty pages gaurenteed flushed via fsync"
6627         return 0
6628 }
6629 run_test 118d "Fsync validation inject a delay of the bulk =========="
6630
6631 test_118f() {
6632         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6633         reset_async
6634
6635         #define OBD_FAIL_OSC_BRW_PREP_REQ2        0x40a
6636         lctl set_param fail_loc=0x8000040a
6637
6638         # Should simulate EINVAL error which is fatal
6639         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
6640         RC=$?
6641         if [[ $RC -eq 0 ]]; then
6642                 error "Must return error due to dropped pages, rc=$RC"
6643         fi
6644
6645         lctl set_param fail_loc=0x0
6646
6647         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
6648         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
6649         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
6650                     grep -c writeback)
6651         if [[ $LOCKED -ne 0 ]]; then
6652                 error "Locked pages remain in cache, locked=$LOCKED"
6653         fi
6654
6655         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
6656                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
6657         fi
6658
6659         rm -f $DIR/$tfile
6660         echo "No pages locked after fsync"
6661
6662         reset_async
6663         return 0
6664 }
6665 run_test 118f "Simulate unrecoverable OSC side error =========="
6666
6667 test_118g() {
6668         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6669         reset_async
6670
6671         #define OBD_FAIL_OSC_BRW_PREP_REQ        0x406
6672         lctl set_param fail_loc=0x406
6673
6674         # simulate local -ENOMEM
6675         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
6676         RC=$?
6677
6678         lctl set_param fail_loc=0
6679         if [[ $RC -eq 0 ]]; then
6680                 error "Must return error due to dropped pages, rc=$RC"
6681         fi
6682
6683         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
6684         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
6685         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
6686                         grep -c writeback)
6687         if [[ $LOCKED -ne 0 ]]; then
6688                 error "Locked pages remain in cache, locked=$LOCKED"
6689         fi
6690
6691         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
6692                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
6693         fi
6694
6695         rm -f $DIR/$tfile
6696         echo "No pages locked after fsync"
6697
6698         reset_async
6699         return 0
6700 }
6701 run_test 118g "Don't stay in wait if we got local -ENOMEM  =========="
6702
6703 test_118h() {
6704         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6705         remote_ost_nodsh && skip "remote OST with nodsh" && return
6706
6707         reset_async
6708
6709         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
6710         set_nodes_failloc "$(osts_nodes)" 0x20e
6711         # Should simulate ENOMEM error which is recoverable and should be handled by timeout
6712         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
6713         RC=$?
6714
6715         set_nodes_failloc "$(osts_nodes)" 0
6716         if [[ $RC -eq 0 ]]; then
6717                 error "Must return error due to dropped pages, rc=$RC"
6718         fi
6719
6720         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
6721         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
6722         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
6723                     grep -c writeback)
6724         if [[ $LOCKED -ne 0 ]]; then
6725                 error "Locked pages remain in cache, locked=$LOCKED"
6726         fi
6727
6728         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
6729                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
6730         fi
6731
6732         rm -f $DIR/$tfile
6733         echo "No pages locked after fsync"
6734
6735         return 0
6736 }
6737 run_test 118h "Verify timeout in handling recoverables errors  =========="
6738
6739 [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] && set_resend_count $OLD_RESENDCOUNT
6740
6741 test_118i() {
6742         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6743         remote_ost_nodsh && skip "remote OST with nodsh" && return
6744
6745         reset_async
6746
6747         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
6748         set_nodes_failloc "$(osts_nodes)" 0x20e
6749
6750         # Should simulate ENOMEM error which is recoverable and should be handled by timeout
6751         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
6752         PID=$!
6753         sleep 5
6754         set_nodes_failloc "$(osts_nodes)" 0
6755
6756         wait $PID
6757         RC=$?
6758         if [[ $RC -ne 0 ]]; then
6759                 error "got error, but should be not, rc=$RC"
6760         fi
6761
6762         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
6763         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
6764         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
6765         if [[ $LOCKED -ne 0 ]]; then
6766                 error "Locked pages remain in cache, locked=$LOCKED"
6767         fi
6768
6769         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
6770                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
6771         fi
6772
6773         rm -f $DIR/$tfile
6774         echo "No pages locked after fsync"
6775
6776         return 0
6777 }
6778 run_test 118i "Fix error before timeout in recoverable error  =========="
6779
6780 [ "$SLOW" = "no" ] && set_resend_count 4
6781
6782 test_118j() {
6783         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6784         remote_ost_nodsh && skip "remote OST with nodsh" && return
6785
6786         reset_async
6787
6788         #define OBD_FAIL_OST_BRW_WRITE_BULK2     0x220
6789         set_nodes_failloc "$(osts_nodes)" 0x220
6790
6791         # return -EIO from OST
6792         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
6793         RC=$?
6794         set_nodes_failloc "$(osts_nodes)" 0x0
6795         if [[ $RC -eq 0 ]]; then
6796                 error "Must return error due to dropped pages, rc=$RC"
6797         fi
6798
6799         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
6800         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
6801         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
6802         if [[ $LOCKED -ne 0 ]]; then
6803                 error "Locked pages remain in cache, locked=$LOCKED"
6804         fi
6805
6806         # in recoverable error on OST we want resend and stay until it finished
6807         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
6808                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
6809         fi
6810
6811         rm -f $DIR/$tfile
6812         echo "No pages locked after fsync"
6813
6814         return 0
6815 }
6816 run_test 118j "Simulate unrecoverable OST side error =========="
6817
6818 test_118k()
6819 {
6820         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6821         remote_ost_nodsh && skip "remote OSTs with nodsh" && return
6822
6823         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
6824         set_nodes_failloc "$(osts_nodes)" 0x20e
6825         test_mkdir -p $DIR/$tdir
6826
6827         for ((i=0;i<10;i++)); do
6828                 (dd if=/dev/zero of=$DIR/$tdir/$tfile-$i bs=1M count=10 || \
6829                         error "dd to $DIR/$tdir/$tfile-$i failed" )&
6830                 SLEEPPID=$!
6831                 sleep 0.500s
6832                 kill $SLEEPPID
6833                 wait $SLEEPPID
6834         done
6835
6836         set_nodes_failloc "$(osts_nodes)" 0
6837         rm -rf $DIR/$tdir
6838 }
6839 run_test 118k "bio alloc -ENOMEM and IO TERM handling ========="
6840
6841 test_118l()
6842 {
6843         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6844         # LU-646
6845         test_mkdir -p $DIR/$tdir
6846         $MULTIOP $DIR/$tdir Dy || error "fsync dir failed"
6847         rm -rf $DIR/$tdir
6848 }
6849 run_test 118l "fsync dir ========="
6850
6851 [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] && set_resend_count $OLD_RESENDCOUNT
6852
6853 test_119a() # bug 11737
6854 {
6855         BSIZE=$((512 * 1024))
6856         directio write $DIR/$tfile 0 1 $BSIZE
6857         # We ask to read two blocks, which is more than a file size.
6858         # directio will indicate an error when requested and actual
6859         # sizes aren't equeal (a normal situation in this case) and
6860         # print actual read amount.
6861         NOB=`directio read $DIR/$tfile 0 2 $BSIZE | awk '/error/ {print $6}'`
6862         if [ "$NOB" != "$BSIZE" ]; then
6863                 error "read $NOB bytes instead of $BSIZE"
6864         fi
6865         rm -f $DIR/$tfile
6866 }
6867 run_test 119a "Short directIO read must return actual read amount"
6868
6869 test_119b() # bug 11737
6870 {
6871         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping 2-stripe test" && return
6872
6873         $SETSTRIPE -c 2 $DIR/$tfile || error "setstripe failed"
6874         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=1 || error "dd failed"
6875         sync
6876         $MULTIOP $DIR/$tfile oO_RDONLY:O_DIRECT:r$((2048 * 1024)) || \
6877                 error "direct read failed"
6878         rm -f $DIR/$tfile
6879 }
6880 run_test 119b "Sparse directIO read must return actual read amount"
6881
6882 test_119c() # bug 13099
6883 {
6884         BSIZE=1048576
6885         directio write $DIR/$tfile 3 1 $BSIZE || error "direct write failed"
6886         directio readhole $DIR/$tfile 0 2 $BSIZE || error "reading hole failed"
6887         rm -f $DIR/$tfile
6888 }
6889 run_test 119c "Testing for direct read hitting hole"
6890
6891 test_119d() # bug 15950
6892 {
6893         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6894         MAX_RPCS_IN_FLIGHT=`$LCTL get_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight`
6895         $LCTL set_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight 1
6896         BSIZE=1048576
6897         $SETSTRIPE $DIR/$tfile -i 0 -c 1 || error "setstripe failed"
6898         $DIRECTIO write $DIR/$tfile 0 1 $BSIZE || error "first directio failed"
6899         #define OBD_FAIL_OSC_DIO_PAUSE           0x40d
6900         lctl set_param fail_loc=0x40d
6901         $DIRECTIO write $DIR/$tfile 1 4 $BSIZE &
6902         pid_dio=$!
6903         sleep 1
6904         cat $DIR/$tfile > /dev/null &
6905         lctl set_param fail_loc=0
6906         pid_reads=$!
6907         wait $pid_dio
6908         log "the DIO writes have completed, now wait for the reads (should not block very long)"
6909         sleep 2
6910         [ -n "`ps h -p $pid_reads -o comm`" ] && \
6911         error "the read rpcs have not completed in 2s"
6912         rm -f $DIR/$tfile
6913         $LCTL set_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight $MAX_RPCS_IN_FLIGHT
6914 }
6915 run_test 119d "The DIO path should try to send a new rpc once one is completed"
6916
6917 test_120a() {
6918         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6919         test_mkdir -p $DIR/$tdir
6920         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
6921                skip "no early lock cancel on server" && return 0
6922         lru_resize_disable mdc
6923         lru_resize_disable osc
6924         cancel_lru_locks mdc
6925         stat $DIR/$tdir > /dev/null
6926         can1=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
6927         blk1=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
6928         test_mkdir $DIR/$tdir/d1
6929         can2=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
6930         blk2=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
6931         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
6932         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
6933         lru_resize_enable mdc
6934         lru_resize_enable osc
6935 }
6936 run_test 120a "Early Lock Cancel: mkdir test"
6937
6938 test_120b() {
6939         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6940         test_mkdir -p $DIR/$tdir
6941         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
6942                skip "no early lock cancel on server" && return 0
6943         lru_resize_disable mdc
6944         lru_resize_disable osc
6945         cancel_lru_locks mdc
6946         stat $DIR/$tdir > /dev/null
6947         can1=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
6948         blk1=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
6949         touch $DIR/$tdir/f1
6950         can2=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
6951         blk2=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
6952         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
6953         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
6954         lru_resize_enable mdc
6955         lru_resize_enable osc
6956 }
6957 run_test 120b "Early Lock Cancel: create test"
6958
6959 test_120c() {
6960         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6961         test_mkdir -p $DIR/$tdir
6962         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
6963                skip "no early lock cancel on server" && return 0
6964         lru_resize_disable mdc
6965         lru_resize_disable osc
6966         test_mkdir -p $DIR/$tdir/d1 $DIR/$tdir/d2
6967         touch $DIR/$tdir/d1/f1
6968         cancel_lru_locks mdc
6969         stat $DIR/$tdir/d1 $DIR/$tdir/d2 $DIR/$tdir/d1/f1 > /dev/null
6970         can1=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
6971         blk1=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
6972         ln $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2
6973         can2=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
6974         blk2=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
6975         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
6976         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
6977         lru_resize_enable mdc
6978         lru_resize_enable osc
6979 }
6980 run_test 120c "Early Lock Cancel: link test"
6981
6982 test_120d() {
6983         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6984         test_mkdir -p $DIR/$tdir
6985         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
6986                skip "no early lock cancel on server" && return 0
6987         lru_resize_disable mdc
6988         lru_resize_disable osc
6989         touch $DIR/$tdir
6990         cancel_lru_locks mdc
6991         stat $DIR/$tdir > /dev/null
6992         can1=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
6993         blk1=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
6994         chmod a+x $DIR/$tdir
6995         can2=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
6996         blk2=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
6997         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
6998         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
6999         lru_resize_enable mdc
7000         lru_resize_enable osc
7001 }
7002 run_test 120d "Early Lock Cancel: setattr test"
7003
7004 test_120e() {
7005         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7006         test_mkdir -p $DIR/$tdir
7007         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
7008                skip "no early lock cancel on server" && return 0
7009         lru_resize_disable mdc
7010         lru_resize_disable osc
7011         dd if=/dev/zero of=$DIR/$tdir/f1 count=1
7012         cancel_lru_locks mdc
7013         cancel_lru_locks osc
7014         dd if=$DIR/$tdir/f1 of=/dev/null
7015         stat $DIR/$tdir $DIR/$tdir/f1 > /dev/null
7016         can1=`lctl get_param -n ldlm.services.ldlm_canceld.stats |
7017               awk '/ldlm_cancel/ {print $2}'`
7018         blk1=`lctl get_param -n ldlm.services.ldlm_cbd.stats |
7019               awk '/ldlm_bl_callback/ {print $2}'`
7020         unlink $DIR/$tdir/f1
7021         can2=`lctl get_param -n ldlm.services.ldlm_canceld.stats |
7022               awk '/ldlm_cancel/ {print $2}'`
7023         blk2=`lctl get_param -n ldlm.services.ldlm_cbd.stats |
7024               awk '/ldlm_bl_callback/ {print $2}'`
7025         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
7026         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
7027         lru_resize_enable mdc
7028         lru_resize_enable osc
7029 }
7030 run_test 120e "Early Lock Cancel: unlink test"
7031
7032 test_120f() {
7033         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7034         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
7035                skip "no early lock cancel on server" && return 0
7036         test_mkdir -p $DIR/$tdir
7037         lru_resize_disable mdc
7038         lru_resize_disable osc
7039         test_mkdir -p $DIR/$tdir/d1 $DIR/$tdir/d2
7040         dd if=/dev/zero of=$DIR/$tdir/d1/f1 count=1
7041         dd if=/dev/zero of=$DIR/$tdir/d2/f2 count=1
7042         cancel_lru_locks mdc
7043         cancel_lru_locks osc
7044         dd if=$DIR/$tdir/d1/f1 of=/dev/null
7045         dd if=$DIR/$tdir/d2/f2 of=/dev/null
7046         stat $DIR/$tdir/d1 $DIR/$tdir/d2 $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2 > /dev/null
7047         can1=`lctl get_param -n ldlm.services.ldlm_canceld.stats |
7048               awk '/ldlm_cancel/ {print $2}'`
7049         blk1=`lctl get_param -n ldlm.services.ldlm_cbd.stats |
7050               awk '/ldlm_bl_callback/ {print $2}'`
7051         mv $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2
7052         can2=`lctl get_param -n ldlm.services.ldlm_canceld.stats |
7053               awk '/ldlm_cancel/ {print $2}'`
7054         blk2=`lctl get_param -n ldlm.services.ldlm_cbd.stats |
7055               awk '/ldlm_bl_callback/ {print $2}'`
7056         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
7057         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
7058         lru_resize_enable mdc
7059         lru_resize_enable osc
7060 }
7061 run_test 120f "Early Lock Cancel: rename test"
7062
7063 test_120g() {
7064         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7065         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
7066                skip "no early lock cancel on server" && return 0
7067         lru_resize_disable mdc
7068         lru_resize_disable osc
7069         count=10000
7070         echo create $count files
7071         test_mkdir -p $DIR/$tdir
7072         cancel_lru_locks mdc
7073         cancel_lru_locks osc
7074         t0=`date +%s`
7075
7076         can0=`lctl get_param -n ldlm.services.ldlm_canceld.stats |
7077               awk '/ldlm_cancel/ {print $2}'`
7078         blk0=`lctl get_param -n ldlm.services.ldlm_cbd.stats |
7079               awk '/ldlm_bl_callback/ {print $2}'`
7080         createmany -o $DIR/$tdir/f $count
7081         sync
7082         can1=`lctl get_param -n ldlm.services.ldlm_canceld.stats |
7083               awk '/ldlm_cancel/ {print $2}'`
7084         blk1=`lctl get_param -n ldlm.services.ldlm_cbd.stats |
7085               awk '/ldlm_bl_callback/ {print $2}'`
7086         t1=`date +%s`
7087         echo total: $((can1-can0)) cancels, $((blk1-blk0)) blockings
7088         echo rm $count files
7089         rm -r $DIR/$tdir
7090         sync
7091         can2=`lctl get_param -n ldlm.services.ldlm_canceld.stats |
7092               awk '/ldlm_cancel/ {print $2}'`
7093         blk2=`lctl get_param -n ldlm.services.ldlm_cbd.stats |
7094               awk '/ldlm_bl_callback/ {print $2}'`
7095         t2=`date +%s`
7096         echo total: $count removes in $((t2-t1))
7097         echo total: $((can2-can1)) cancels, $((blk2-blk1)) blockings
7098         sleep 2
7099         # wait for commitment of removal
7100         lru_resize_enable mdc
7101         lru_resize_enable osc
7102 }
7103 run_test 120g "Early Lock Cancel: performance test"
7104
7105 test_121() { #bug #10589
7106         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7107         rm -rf $DIR/$tfile
7108         writes=$(LANG=C dd if=/dev/zero of=$DIR/$tfile count=1 2>&1 | awk -F '+' '/out$/ {print $1}')
7109 #define OBD_FAIL_LDLM_CANCEL_RACE        0x310
7110         lctl set_param fail_loc=0x310
7111         cancel_lru_locks osc > /dev/null
7112         reads=$(LANG=C dd if=$DIR/$tfile of=/dev/null 2>&1 | awk -F '+' '/in$/ {print $1}')
7113         lctl set_param fail_loc=0
7114         [ "$reads" -eq "$writes" ] || error "read" $reads "blocks, must be" $writes
7115 }
7116 run_test 121 "read cancel race ========="
7117
7118 test_123a() { # was test 123, statahead(bug 11401)
7119         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7120         SLOWOK=0
7121         if [ -z "$(grep "processor.*: 1" /proc/cpuinfo)" ]; then
7122             log "testing on UP system. Performance may be not as good as expected."
7123                         SLOWOK=1
7124         fi
7125
7126         rm -rf $DIR/$tdir
7127         test_mkdir -p $DIR/$tdir
7128         NUMFREE=`df -i -P $DIR | tail -n 1 | awk '{ print $4 }'`
7129         [ $NUMFREE -gt 100000 ] && NUMFREE=100000 || NUMFREE=$((NUMFREE-1000))
7130         MULT=10
7131         for ((i=100, j=0; i<=$NUMFREE; j=$i, i=$((i * MULT)) )); do
7132                 createmany -o $DIR/$tdir/$tfile $j $((i - j))
7133
7134                 max=`lctl get_param -n llite.*.statahead_max | head -n 1`
7135                 lctl set_param -n llite.*.statahead_max 0
7136                 lctl get_param llite.*.statahead_max
7137                 cancel_lru_locks mdc
7138                 cancel_lru_locks osc
7139                 stime=`date +%s`
7140                 time ls -l $DIR/$tdir | wc -l
7141                 etime=`date +%s`
7142                 delta=$((etime - stime))
7143                 log "ls $i files without statahead: $delta sec"
7144                 lctl set_param llite.*.statahead_max=$max
7145
7146                 swrong=`lctl get_param -n llite.*.statahead_stats | grep "statahead wrong:" | awk '{print $3}'`
7147                 lctl get_param -n llite.*.statahead_max | grep '[0-9]'
7148                 cancel_lru_locks mdc
7149                 cancel_lru_locks osc
7150                 stime=`date +%s`
7151                 time ls -l $DIR/$tdir | wc -l
7152                 etime=`date +%s`
7153                 delta_sa=$((etime - stime))
7154                 log "ls $i files with statahead: $delta_sa sec"
7155                 lctl get_param -n llite.*.statahead_stats
7156                 ewrong=`lctl get_param -n llite.*.statahead_stats | grep "statahead wrong:" | awk '{print $3}'`
7157
7158                 [ $swrong -lt $ewrong ] && log "statahead was stopped, maybe too many locks held!"
7159                 [ $delta -eq 0 -o $delta_sa -eq 0 ] && continue
7160
7161                 if [ $((delta_sa * 100)) -gt $((delta * 105)) -a $delta_sa -gt $((delta + 2)) ]; then
7162                     max=`lctl get_param -n llite.*.statahead_max | head -n 1`
7163                     lctl set_param -n llite.*.statahead_max 0
7164                     lctl get_param llite.*.statahead_max
7165                     cancel_lru_locks mdc
7166                     cancel_lru_locks osc
7167                     stime=`date +%s`
7168                     time ls -l $DIR/$tdir | wc -l
7169                     etime=`date +%s`
7170                     delta=$((etime - stime))
7171                     log "ls $i files again without statahead: $delta sec"
7172                     lctl set_param llite.*.statahead_max=$max
7173                     if [ $((delta_sa * 100)) -gt $((delta * 105)) -a $delta_sa -gt $((delta + 2)) ]; then
7174                         if [  $SLOWOK -eq 0 ]; then
7175                                 error "ls $i files is slower with statahead!"
7176                         else
7177                                 log "ls $i files is slower with statahead!"
7178                         fi
7179                         break
7180                     fi
7181                 fi
7182
7183                 [ $delta -gt 20 ] && break
7184                 [ $delta -gt 8 ] && MULT=$((50 / delta))
7185                 [ "$SLOW" = "no" -a $delta -gt 5 ] && break
7186         done
7187         log "ls done"
7188
7189         stime=`date +%s`
7190         rm -r $DIR/$tdir
7191         sync
7192         etime=`date +%s`
7193         delta=$((etime - stime))
7194         log "rm -r $DIR/$tdir/: $delta seconds"
7195         log "rm done"
7196         lctl get_param -n llite.*.statahead_stats
7197 }
7198 run_test 123a "verify statahead work"
7199
7200 test_123b () { # statahead(bug 15027)
7201         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7202         test_mkdir -p $DIR/$tdir
7203         createmany -o $DIR/$tdir/$tfile-%d 1000
7204
7205         cancel_lru_locks mdc
7206         cancel_lru_locks osc
7207
7208 #define OBD_FAIL_MDC_GETATTR_ENQUEUE     0x803
7209         lctl set_param fail_loc=0x80000803
7210         ls -lR $DIR/$tdir > /dev/null
7211         log "ls done"
7212         lctl set_param fail_loc=0x0
7213         lctl get_param -n llite.*.statahead_stats
7214         rm -r $DIR/$tdir
7215         sync
7216
7217 }
7218 run_test 123b "not panic with network error in statahead enqueue (bug 15027)"
7219
7220 test_124a() {
7221         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7222         [ -z "`lctl get_param -n mdc.*.connect_flags | grep lru_resize`" ] && \
7223                skip "no lru resize on server" && return 0
7224         local NR=2000
7225         test_mkdir -p $DIR/$tdir || error "failed to create $DIR/$tdir"
7226
7227         log "create $NR files at $DIR/$tdir"
7228         createmany -o $DIR/$tdir/f $NR ||
7229                 error "failed to create $NR files in $DIR/$tdir"
7230
7231         cancel_lru_locks mdc
7232         ls -l $DIR/$tdir > /dev/null
7233
7234         local NSDIR=""
7235         local LRU_SIZE=0
7236         for VALUE in `lctl get_param ldlm.namespaces.*mdc-*.lru_size`; do
7237                 local PARAM=`echo ${VALUE[0]} | cut -d "=" -f1`
7238                 LRU_SIZE=$(lctl get_param -n $PARAM)
7239                 if [ $LRU_SIZE -gt $(default_lru_size) ]; then
7240                         NSDIR=$(echo $PARAM | cut -d "." -f1-3)
7241                                                 log "NSDIR=$NSDIR"
7242                         log "NS=$(basename $NSDIR)"
7243                         break
7244                 fi
7245         done
7246
7247         if [ -z "$NSDIR" -o $LRU_SIZE -lt $(default_lru_size) ]; then
7248                 skip "Not enough cached locks created!"
7249                 return 0
7250         fi
7251         log "LRU=$LRU_SIZE"
7252
7253         local SLEEP=30
7254
7255         # We know that lru resize allows one client to hold $LIMIT locks
7256         # for 10h. After that locks begin to be killed by client.
7257         local MAX_HRS=10
7258         local LIMIT=`lctl get_param -n $NSDIR.pool.limit`
7259                 log "LIMIT=$LIMIT"
7260
7261         # Make LVF so higher that sleeping for $SLEEP is enough to _start_
7262         # killing locks. Some time was spent for creating locks. This means
7263         # that up to the moment of sleep finish we must have killed some of
7264         # them (10-100 locks). This depends on how fast ther were created.
7265         # Many of them were touched in almost the same moment and thus will
7266         # be killed in groups.
7267         local LVF=$(($MAX_HRS * 60 * 60 / $SLEEP * $LIMIT / $LRU_SIZE))
7268
7269         # Use $LRU_SIZE_B here to take into account real number of locks
7270         # created in the case of CMD, LRU_SIZE_B != $NR in most of cases
7271         local LRU_SIZE_B=$LRU_SIZE
7272         log "LVF=$LVF"
7273         local OLD_LVF=`lctl get_param -n $NSDIR.pool.lock_volume_factor`
7274                 log "OLD_LVF=$OLD_LVF"
7275         lctl set_param -n $NSDIR.pool.lock_volume_factor $LVF
7276
7277         # Let's make sure that we really have some margin. Client checks
7278         # cached locks every 10 sec.
7279         SLEEP=$((SLEEP+20))
7280         log "Sleep ${SLEEP} sec"
7281         local SEC=0
7282         while ((SEC<$SLEEP)); do
7283                 echo -n "..."
7284                 sleep 5
7285                 SEC=$((SEC+5))
7286                 LRU_SIZE=`lctl get_param -n $NSDIR/lru_size`
7287                 echo -n "$LRU_SIZE"
7288         done
7289         echo ""
7290         lctl set_param -n $NSDIR.pool.lock_volume_factor $OLD_LVF
7291         local LRU_SIZE_A=`lctl get_param -n $NSDIR.lru_size`
7292
7293         [ $LRU_SIZE_B -gt $LRU_SIZE_A ] || {
7294                 error "No locks dropped in ${SLEEP}s. LRU size: $LRU_SIZE_A"
7295                 unlinkmany $DIR/$tdir/f $NR
7296                 return
7297         }
7298
7299         log "Dropped "$((LRU_SIZE_B-LRU_SIZE_A))" locks in ${SLEEP}s"
7300         log "unlink $NR files at $DIR/$tdir"
7301         unlinkmany $DIR/$tdir/f $NR
7302 }
7303 run_test 124a "lru resize ======================================="
7304
7305 get_max_pool_limit()
7306 {
7307         local limit=`lctl get_param -n ldlm.namespaces.*-MDT0000-mdc-*.pool.limit`
7308         local max=0
7309         for l in $limit; do
7310                 if test $l -gt $max; then
7311                         max=$l
7312                 fi
7313         done
7314         echo $max
7315 }
7316
7317 test_124b() {
7318         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7319         [ -z "`lctl get_param -n mdc.*.connect_flags | grep lru_resize`" ] && \
7320                skip "no lru resize on server" && return 0
7321
7322         LIMIT=`get_max_pool_limit`
7323
7324         NR=$(($(default_lru_size)*20))
7325         if [ $NR -gt $LIMIT ]; then
7326                 log "Limit lock number by $LIMIT locks"
7327                 NR=$LIMIT
7328         fi
7329         lru_resize_disable mdc
7330         test_mkdir -p $DIR/$tdir/disable_lru_resize ||
7331                 error "failed to create $DIR/$tdir/disable_lru_resize"
7332
7333         createmany -o $DIR/$tdir/disable_lru_resize/f $NR
7334         log "doing ls -la $DIR/$tdir/disable_lru_resize 3 times"
7335         cancel_lru_locks mdc
7336         stime=`date +%s`
7337         PID=""
7338         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
7339         PID="$PID $!"
7340         sleep 2
7341         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
7342         PID="$PID $!"
7343         sleep 2
7344         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
7345         PID="$PID $!"
7346         wait $PID
7347         etime=`date +%s`
7348         nolruresize_delta=$((etime-stime))
7349         log "ls -la time: $nolruresize_delta seconds"
7350         log "lru_size = $(lctl get_param -n ldlm.namespaces.*mdc*.lru_size)"
7351         unlinkmany $DIR/$tdir/disable_lru_resize/f $NR
7352
7353         lru_resize_enable mdc
7354         test_mkdir -p $DIR/$tdir/enable_lru_resize ||
7355                 error "failed to create $DIR/$tdir/enable_lru_resize"
7356
7357         createmany -o $DIR/$tdir/enable_lru_resize/f $NR
7358         log "doing ls -la $DIR/$tdir/enable_lru_resize 3 times"
7359         cancel_lru_locks mdc
7360         stime=`date +%s`
7361         PID=""
7362         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
7363         PID="$PID $!"
7364         sleep 2
7365         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
7366         PID="$PID $!"
7367         sleep 2
7368         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
7369         PID="$PID $!"
7370         wait $PID
7371         etime=`date +%s`
7372         lruresize_delta=$((etime-stime))
7373         log "ls -la time: $lruresize_delta seconds"
7374         log "lru_size = $(lctl get_param -n ldlm.namespaces.*mdc*.lru_size)"
7375
7376         if [ $lruresize_delta -gt $nolruresize_delta ]; then
7377                 log "ls -la is $(((lruresize_delta - $nolruresize_delta) * 100 / $nolruresize_delta))% slower with lru resize enabled"
7378         elif [ $nolruresize_delta -gt $lruresize_delta ]; then
7379                 log "ls -la is $(((nolruresize_delta - $lruresize_delta) * 100 / $nolruresize_delta))% faster with lru resize enabled"
7380         else
7381                 log "lru resize performs the same with no lru resize"
7382         fi
7383         unlinkmany $DIR/$tdir/enable_lru_resize/f $NR
7384 }
7385 run_test 124b "lru resize (performance test) ======================="
7386
7387 test_125() { # 13358
7388         [ -z "$(lctl get_param -n llite.*.client_type | grep local)" ] && skip "must run as local client" && return
7389         [ -z "$(lctl get_param -n mdc.*-mdc-*.connect_flags | grep acl)" ] && skip "must have acl enabled" && return
7390         test_mkdir -p $DIR/d125 || error "mkdir failed"
7391         $SETSTRIPE -S 65536 -c -1 $DIR/d125 || error "setstripe failed"
7392         setfacl -R -m u:bin:rwx $DIR/d125 || error "setfacl $DIR/d125 failed"
7393         ls -ld $DIR/d125 || error "cannot access $DIR/d125"
7394 }
7395 run_test 125 "don't return EPROTO when a dir has a non-default striping and ACLs"
7396
7397 test_126() { # bug 12829/13455
7398         [ -z "$(lctl get_param -n llite.*.client_type | grep local)" ] && skip "must run as local client" && return
7399         [ "$UID" != 0 ] && skip_env "skipping $TESTNAME (must run as root)" && return
7400         $GSS && skip "must run as gss disabled" && return
7401
7402         $RUNAS -u 0 -g 1 touch $DIR/$tfile || error "touch failed"
7403         gid=`ls -n $DIR/$tfile | awk '{print $4}'`
7404         rm -f $DIR/$tfile
7405         [ $gid -eq "1" ] || error "gid is set to" $gid "instead of 1"
7406 }
7407 run_test 126 "check that the fsgid provided by the client is taken into account"
7408
7409 test_127a() { # bug 15521
7410         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7411         $SETSTRIPE -i 0 -c 1 $DIR/$tfile || error "setstripe failed"
7412         $LCTL set_param osc.*.stats=0
7413         FSIZE=$((2048 * 1024))
7414         dd if=/dev/zero of=$DIR/$tfile bs=$FSIZE count=1
7415         cancel_lru_locks osc
7416         dd if=$DIR/$tfile of=/dev/null bs=$FSIZE
7417
7418         $LCTL get_param osc.*0000-osc-*.stats | grep samples > $DIR/${tfile}.tmp
7419         while read NAME COUNT SAMP UNIT MIN MAX SUM SUMSQ; do
7420                 echo "got $COUNT $NAME"
7421                 [ ! $MIN ] && error "Missing min value for $NAME proc entry"
7422                 eval $NAME=$COUNT || error "Wrong proc format"
7423
7424                 case $NAME in
7425                         read_bytes|write_bytes)
7426                         [ $MIN -lt 4096 ] && error "min is too small: $MIN"
7427                         [ $MIN -gt $FSIZE ] && error "min is too big: $MIN"
7428                         [ $MAX -lt 4096 ] && error "max is too small: $MAX"
7429                         [ $MAX -gt $FSIZE ] && error "max is too big: $MAX"
7430                         [ $SUM -ne $FSIZE ] && error "sum is wrong: $SUM"
7431                         [ $SUMSQ -lt $(((FSIZE /4096) * (4096 * 4096))) ] &&
7432                                 error "sumsquare is too small: $SUMSQ"
7433                         [ $SUMSQ -gt $((FSIZE * FSIZE)) ] &&
7434                                 error "sumsquare is too big: $SUMSQ"
7435                         ;;
7436                         *) ;;
7437                 esac
7438         done < $DIR/${tfile}.tmp
7439
7440         #check that we actually got some stats
7441         [ "$read_bytes" ] || error "Missing read_bytes stats"
7442         [ "$write_bytes" ] || error "Missing write_bytes stats"
7443         [ "$read_bytes" != 0 ] || error "no read done"
7444         [ "$write_bytes" != 0 ] || error "no write done"
7445 }
7446 run_test 127a "verify the client stats are sane"
7447
7448 test_127b() { # bug LU-333
7449         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7450         $LCTL set_param llite.*.stats=0
7451         FSIZE=65536 # sized fixed to match PAGE_SIZE for most clients
7452         # perform 2 reads and writes so MAX is different from SUM.
7453         dd if=/dev/zero of=$DIR/$tfile bs=$FSIZE count=1
7454         dd if=/dev/zero of=$DIR/$tfile bs=$FSIZE count=1
7455         cancel_lru_locks osc
7456         dd if=$DIR/$tfile of=/dev/null bs=$FSIZE count=1
7457         dd if=$DIR/$tfile of=/dev/null bs=$FSIZE count=1
7458
7459         $LCTL get_param llite.*.stats | grep samples > $TMP/${tfile}.tmp
7460         while read NAME COUNT SAMP UNIT MIN MAX SUM SUMSQ; do
7461                 echo "got $COUNT $NAME"
7462                 eval $NAME=$COUNT || error "Wrong proc format"
7463
7464         case $NAME in
7465                 read_bytes)
7466                         [ $COUNT -ne 2 ] && error "count is not 2: $COUNT"
7467                         [ $MIN -ne $FSIZE ] && error "min is not $FSIZE: $MIN"
7468                         [ $MAX -ne $FSIZE ] && error "max is incorrect: $MAX"
7469                         [ $SUM -ne $((FSIZE * 2)) ] && error "sum is wrong: $SUM"
7470                         ;;
7471                 write_bytes)
7472                         [ $COUNT -ne 2 ] && error "count is not 2: $COUNT"
7473                         [ $MIN -ne $FSIZE ] && error "min is not $FSIZE: $MIN"
7474                         [ $MAX -ne $FSIZE ] && error "max is incorrect: $MAX"
7475                         [ $SUM -ne $((FSIZE * 2)) ] && error "sum is wrong: $SUM"
7476                         ;;
7477                         *) ;;
7478                 esac
7479         done < $TMP/${tfile}.tmp
7480
7481         #check that we actually got some stats
7482         [ "$read_bytes" ] || error "Missing read_bytes stats"
7483         [ "$write_bytes" ] || error "Missing write_bytes stats"
7484         [ "$read_bytes" != 0 ] || error "no read done"
7485         [ "$write_bytes" != 0 ] || error "no write done"
7486 }
7487 run_test 127b "verify the llite client stats are sane"
7488
7489 test_128() { # bug 15212
7490         touch $DIR/$tfile
7491         $LFS 2>&1 <<-EOF | tee $TMP/$tfile.log
7492                 find $DIR/$tfile
7493                 find $DIR/$tfile
7494         EOF
7495
7496         result=$(grep error $TMP/$tfile.log)
7497         rm -f $DIR/$tfile
7498         [ -z "$result" ] || error "consecutive find's under interactive lfs failed"
7499 }
7500 run_test 128 "interactive lfs for 2 consecutive find's"
7501
7502 set_dir_limits () {
7503         local mntdev
7504         local canondev
7505         local node
7506
7507         local LDPROC=/proc/fs/ldiskfs
7508         local facets=$(get_facets MDS)
7509
7510         for facet in ${facets//,/ }; do
7511                 canondev=$(ldiskfs_canon \
7512                            *.$(convert_facet2label $facet).mntdev $facet)
7513                 do_facet $facet "test -e $LDPROC/$canondev/max_dir_size" ||
7514                                                 LDPROC=/sys/fs/ldiskfs
7515                 do_facet $facet "echo $1 >$LDPROC/$canondev/max_dir_size"
7516         done
7517 }
7518
7519 test_129() {
7520         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7521         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
7522                 skip "Only applicable to ldiskfs-based MDTs"
7523                 return
7524         fi
7525         remote_mds_nodsh && skip "remote MDS with nodsh" && return
7526
7527         EFBIG=27
7528         MAX=16384
7529
7530         set_dir_limits $MAX
7531         test_mkdir -p $DIR/$tdir
7532
7533         local I=0
7534         local J=0
7535         while [ ! $I -gt $((MAX * MDSCOUNT)) ]; do
7536                 $MULTIOP $DIR/$tdir/$J Oc
7537                 rc=$?
7538                 if [ $rc -eq $EFBIG ]; then
7539                         set_dir_limits 0
7540                         echo "return code $rc received as expected"
7541                         return 0
7542                 elif [ $rc -ne 0 ]; then
7543                         set_dir_limits 0
7544                         error_exit "return code $rc received instead of expected $EFBIG"
7545                 fi
7546                 J=$((J+1))
7547                 I=$(stat -c%s "$DIR/$tdir")
7548         done
7549
7550         set_dir_limits 0
7551         error "exceeded dir size limit $MAX x $MDSCOUNT $((MAX * MDSCOUNT)) : $I bytes"
7552 }
7553 run_test 129 "test directory size limit ========================"
7554
7555 OLDIFS="$IFS"
7556 cleanup_130() {
7557         trap 0
7558         IFS="$OLDIFS"
7559 }
7560
7561 test_130a() {
7562         local filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
7563         [ -n "$filefrag_op" ] && skip_env "filefrag does not support FIEMAP" &&
7564                 return
7565
7566         trap cleanup_130 EXIT RETURN
7567
7568         local fm_file=$DIR/$tfile
7569         $SETSTRIPE -S 65536 -c 1 $fm_file || error "setstripe on $fm_file"
7570         dd if=/dev/zero of=$fm_file bs=65536 count=1 ||
7571                 error "dd failed for $fm_file"
7572
7573         # LU-1795: test filefrag/FIEMAP once, even if unsupported
7574         filefrag -ves $fm_file
7575         RC=$?
7576         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
7577                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
7578         [ $RC != 0 ] && error "filefrag $fm_file failed"
7579
7580         filefrag_op=$(filefrag -ve $fm_file | grep -A 100 "ext:" |
7581                       grep -v "ext:" | grep -v "found")
7582         lun=$($GETSTRIPE -i $fm_file)
7583
7584         start_blk=`echo $filefrag_op | cut -d: -f2 | cut -d. -f1`
7585         IFS=$'\n'
7586         tot_len=0
7587         for line in $filefrag_op
7588         do
7589                 frag_lun=`echo $line | cut -d: -f5`
7590                 ext_len=`echo $line | cut -d: -f4`
7591                 if (( $frag_lun != $lun )); then
7592                         cleanup_130
7593                         error "FIEMAP on 1-stripe file($fm_file) failed"
7594                         return
7595                 fi
7596                 (( tot_len += ext_len ))
7597         done
7598
7599         if (( lun != frag_lun || start_blk != 0 || tot_len != 64 )); then
7600                 cleanup_130
7601                 error "FIEMAP on 1-stripe file($fm_file) failed;"
7602                 return
7603         fi
7604
7605         cleanup_130
7606
7607         echo "FIEMAP on single striped file succeeded"
7608 }
7609 run_test 130a "FIEMAP (1-stripe file)"
7610
7611 test_130b() {
7612         [ "$OSTCOUNT" -lt "2" ] &&
7613                 skip_env "skipping FIEMAP on 2-stripe file test" && return
7614
7615         local filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
7616         [ -n "$filefrag_op" ] && skip_env "filefrag does not support FIEMAP" &&
7617                 return
7618
7619         trap cleanup_130 EXIT RETURN
7620
7621         local fm_file=$DIR/$tfile
7622         $SETSTRIPE -S 65536 -c 2 $fm_file || error "setstripe on $fm_file"
7623         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
7624                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
7625
7626         dd if=/dev/zero of=$fm_file bs=1M count=2 ||
7627                 error "dd failed on $fm_file"
7628
7629         filefrag -ves $fm_file || error "filefrag $fm_file failed"
7630         filefrag_op=$(filefrag -ve $fm_file | grep -A 100 "ext:" |
7631                       grep -v "ext:" | grep -v "found")
7632
7633         last_lun=$(echo $filefrag_op | cut -d: -f5)
7634
7635         IFS=$'\n'
7636         tot_len=0
7637         num_luns=1
7638         for line in $filefrag_op
7639         do
7640                 frag_lun=`echo $line | cut -d: -f5`
7641                 ext_len=`echo $line | cut -d: -f4`
7642                 if (( $frag_lun != $last_lun )); then
7643                         if (( tot_len != 1024 )); then
7644                                 cleanup_130
7645                                 error "FIEMAP on $fm_file failed; returned len $tot_len for OST $last_lun instead of 256"
7646                                 return
7647                         else
7648                                 (( num_luns += 1 ))
7649                                 tot_len=0
7650                         fi
7651                 fi
7652                 (( tot_len += ext_len ))
7653                 last_lun=$frag_lun
7654         done
7655         if (( num_luns != 2 || tot_len != 1024 )); then
7656                 cleanup_130
7657                 error "FIEMAP on $fm_file failed; returned wrong number of luns or wrong len for OST $last_lun"
7658                 return
7659         fi
7660
7661         cleanup_130
7662
7663         echo "FIEMAP on 2-stripe file succeeded"
7664 }
7665 run_test 130b "FIEMAP (2-stripe file)"
7666
7667 test_130c() {
7668         [ "$OSTCOUNT" -lt "2" ] &&
7669                 skip_env "skipping FIEMAP on 2-stripe file" && return
7670
7671         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
7672         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP" &&
7673                 return
7674
7675         trap cleanup_130 EXIT RETURN
7676
7677         local fm_file=$DIR/$tfile
7678         $SETSTRIPE -S 65536 -c 2 $fm_file || error "setstripe on $fm_file"
7679         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
7680                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
7681
7682         dd if=/dev/zero of=$fm_file seek=1 bs=1M count=1 || error "dd failed on $fm_file"
7683
7684         filefrag -ves $fm_file || error "filefrag $fm_file failed"
7685         filefrag_op=`filefrag -ve $fm_file | grep -A 100 "ext:" | grep -v "ext:" | grep -v "found"`
7686
7687         last_lun=`echo $filefrag_op | cut -d: -f5`
7688
7689         IFS=$'\n'
7690         tot_len=0
7691         num_luns=1
7692         for line in $filefrag_op
7693         do
7694                 frag_lun=`echo $line | cut -d: -f5`
7695                 ext_len=`echo $line | cut -d: -f4`
7696                 if (( $frag_lun != $last_lun )); then
7697                         logical=`echo $line | cut -d: -f2 | cut -d. -f1`
7698                         if (( logical != 512 )); then
7699                                 cleanup_130
7700                                 error "FIEMAP on $fm_file failed; returned logical start for lun $logical instead of 512"
7701                                 return
7702                         fi
7703                         if (( tot_len != 512 )); then
7704                                 cleanup_130
7705                                 error "FIEMAP on $fm_file failed; returned len $tot_len for OST $last_lun instead of 1024"
7706                                 return
7707                         else
7708                                 (( num_luns += 1 ))
7709                                 tot_len=0
7710                         fi
7711                 fi
7712                 (( tot_len += ext_len ))
7713                 last_lun=$frag_lun
7714         done
7715         if (( num_luns != 2 || tot_len != 512 )); then
7716                 cleanup_130
7717                 error "FIEMAP on $fm_file failed; returned wrong number of luns or wrong len for OST $last_lun"
7718                 return
7719         fi
7720
7721         cleanup_130
7722
7723         echo "FIEMAP on 2-stripe file with hole succeeded"
7724 }
7725 run_test 130c "FIEMAP (2-stripe file with hole)"
7726
7727 test_130d() {
7728         [ "$OSTCOUNT" -lt "3" ] && skip_env "skipping FIEMAP on N-stripe file test" && return
7729
7730         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
7731         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP" && return
7732
7733         trap cleanup_130 EXIT RETURN
7734
7735         local fm_file=$DIR/$tfile
7736         $SETSTRIPE -S 65536 -c $OSTCOUNT $fm_file||error "setstripe on $fm_file"
7737         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
7738                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
7739         dd if=/dev/zero of=$fm_file bs=1M count=$OSTCOUNT || error "dd failed on $fm_file"
7740
7741         filefrag -ves $fm_file || error "filefrag $fm_file failed"
7742         filefrag_op=`filefrag -ve $fm_file | grep -A 100 "ext:" | grep -v "ext:" | grep -v "found"`
7743
7744         last_lun=`echo $filefrag_op | cut -d: -f5`
7745
7746         IFS=$'\n'
7747         tot_len=0
7748         num_luns=1
7749         for line in $filefrag_op
7750         do
7751                 frag_lun=`echo $line | cut -d: -f5`
7752                 ext_len=`echo $line | cut -d: -f4`
7753                 if (( $frag_lun != $last_lun )); then
7754                         if (( tot_len != 1024 )); then
7755                                 cleanup_130
7756                                 error "FIEMAP on $fm_file failed; returned len $tot_len for OST $last_lun instead of 1024"
7757                                 return
7758                         else
7759                                 (( num_luns += 1 ))
7760                                 tot_len=0
7761                         fi
7762                 fi
7763                 (( tot_len += ext_len ))
7764                 last_lun=$frag_lun
7765         done
7766         if (( num_luns != OSTCOUNT || tot_len != 1024 )); then
7767                 cleanup_130
7768                 error "FIEMAP on $fm_file failed; returned wrong number of luns or wrong len for OST $last_lun"
7769                 return
7770         fi
7771
7772         cleanup_130
7773
7774         echo "FIEMAP on N-stripe file succeeded"
7775 }
7776 run_test 130d "FIEMAP (N-stripe file)"
7777
7778 test_130e() {
7779         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping continuation FIEMAP test" && return
7780
7781         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
7782         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP" && return
7783
7784         trap cleanup_130 EXIT RETURN
7785
7786         local fm_file=$DIR/$tfile
7787         $SETSTRIPE -S 131072 -c 2 $fm_file || error "setstripe on $fm_file"
7788         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
7789                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
7790
7791         NUM_BLKS=512
7792         EXPECTED_LEN=$(( (NUM_BLKS / 2) * 64 ))
7793         for ((i = 0; i < $NUM_BLKS; i++))
7794         do
7795                 dd if=/dev/zero of=$fm_file count=1 bs=64k seek=$((2*$i)) conv=notrunc > /dev/null 2>&1
7796         done
7797
7798         filefrag -ves $fm_file || error "filefrag $fm_file failed"
7799         filefrag_op=`filefrag -ve $fm_file | grep -A 12000 "ext:" | grep -v "ext:" | grep -v "found"`
7800
7801         last_lun=`echo $filefrag_op | cut -d: -f5`
7802
7803         IFS=$'\n'
7804         tot_len=0
7805         num_luns=1
7806         for line in $filefrag_op
7807         do
7808                 frag_lun=`echo $line | cut -d: -f5`
7809                 ext_len=`echo $line | cut -d: -f4`
7810                 if (( $frag_lun != $last_lun )); then
7811                         if (( tot_len != $EXPECTED_LEN )); then
7812                                 cleanup_130
7813                                 error "FIEMAP on $fm_file failed; returned len $tot_len for OST $last_lun instead of $EXPECTED_LEN"
7814                                 return
7815                         else
7816                                 (( num_luns += 1 ))
7817                                 tot_len=0
7818                         fi
7819                 fi
7820                 (( tot_len += ext_len ))
7821                 last_lun=$frag_lun
7822         done
7823         if (( num_luns != 2 || tot_len != $EXPECTED_LEN )); then
7824                 cleanup_130
7825                 error "FIEMAP on $fm_file failed; returned wrong number of luns or wrong len for OST $last_lun"
7826                 return
7827         fi
7828
7829         cleanup_130
7830
7831         echo "FIEMAP with continuation calls succeeded"
7832 }
7833 run_test 130e "FIEMAP (test continuation FIEMAP calls)"
7834
7835 # Test for writev/readv
7836 test_131a() {
7837         rwv -f $DIR/$tfile -w -n 3 524288 1048576 1572864 || \
7838         error "writev test failed"
7839         rwv -f $DIR/$tfile -r -v -n 2 1572864 1048576 || \
7840         error "readv failed"
7841         rm -f $DIR/$tfile
7842 }
7843 run_test 131a "test iov's crossing stripe boundary for writev/readv"
7844
7845 test_131b() {
7846         rwv -f $DIR/$tfile -w -a -n 3 524288 1048576 1572864 || \
7847         error "append writev test failed"
7848         rwv -f $DIR/$tfile -w -a -n 2 1572864 1048576 || \
7849         error "append writev test failed"
7850         rm -f $DIR/$tfile
7851 }
7852 run_test 131b "test append writev"
7853
7854 test_131c() {
7855         rwv -f $DIR/$tfile -w -d -n 1 1048576 || return 0
7856         error "NOT PASS"
7857 }
7858 run_test 131c "test read/write on file w/o objects"
7859
7860 test_131d() {
7861         rwv -f $DIR/$tfile -w -n 1 1572864
7862         NOB=`rwv -f $DIR/$tfile -r -n 3 524288 524288 1048576 | awk '/error/ {print $6}'`
7863         if [ "$NOB" != 1572864 ]; then
7864                 error "Short read filed: read $NOB bytes instead of 1572864"
7865         fi
7866         rm -f $DIR/$tfile
7867 }
7868 run_test 131d "test short read"
7869
7870 test_131e() {
7871         rwv -f $DIR/$tfile -w -s 1048576 -n 1 1048576
7872         rwv -f $DIR/$tfile -r -z -s 0 -n 1 524288 || \
7873         error "read hitting hole failed"
7874         rm -f $DIR/$tfile
7875 }
7876 run_test 131e "test read hitting hole"
7877
7878 get_ost_param() {
7879         local token=$1
7880         local gl_sum=0
7881         for node in $(osts_nodes); do
7882                 gl=$(do_node $node "$LCTL get_param -n ost.OSS.ost.stats" | awk '/'$token'/ {print $2}' | head -n 1)
7883                 [ x$gl = x"" ] && gl=0
7884                 gl_sum=$((gl_sum + gl))
7885         done
7886         echo $gl
7887 }
7888
7889 som_mode_switch() {
7890         local som=$1
7891         local gl1=$2
7892         local gl2=$3
7893
7894         if [ x$som = x"enabled" ]; then
7895                 [ $((gl2 - gl1)) -gt 0 ] && error "no glimpse RPC is expected"
7896                 MOUNTOPT=`echo $MOUNTOPT | sed 's/som_preview//g'`
7897                 do_facet mgs "$LCTL conf_param $FSNAME.mdt.som=disabled"
7898         else
7899                 [ $((gl2 - gl1)) -gt 0 ] || error "some glimpse RPC is expected"
7900                 MOUNTOPT="$MOUNTOPT,som_preview"
7901                 do_facet mgs "$LCTL conf_param $FSNAME.mdt.som=enabled"
7902         fi
7903
7904         # do remount to make new mount-conf parameters actual
7905         echo remounting...
7906         sync
7907         stopall
7908         setupall
7909 }
7910
7911 test_132() { #1028, SOM
7912         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7913         remote_mds_nodsh && skip "remote MDS with nodsh" && return
7914         local num=$(get_mds_dir $DIR)
7915         local mymds=mds${num}
7916         local MOUNTOPT_SAVE=$MOUNTOPT
7917
7918         dd if=/dev/zero of=$DIR/$tfile count=1 2>/dev/null
7919         cancel_lru_locks osc
7920
7921         som1=$(do_facet $mymds "$LCTL get_param mdt.*.som" |  awk -F= ' {print $2}' | head -n 1)
7922
7923         gl1=$(get_ost_param "ldlm_glimpse_enqueue")
7924         stat $DIR/$tfile >/dev/null
7925         gl2=$(get_ost_param "ldlm_glimpse_enqueue")
7926         echo "====> SOM is "$som1", "$((gl2 - gl1))" glimpse RPC occured"
7927         rm $DIR/$tfile
7928         som_mode_switch $som1 $gl1 $gl2
7929
7930         dd if=/dev/zero of=$DIR/$tfile count=1 2>/dev/null
7931         cancel_lru_locks osc
7932
7933         som2=$(do_facet $mymds "$LCTL get_param mdt.*.som" |  awk -F= ' {print $2}' | head -n 1)
7934         if [ $som1 == $som2 ]; then
7935             error "som is still "$som2
7936             if [ x$som2 = x"enabled" ]; then
7937                 som2="disabled"
7938             else
7939                 som2="enabled"
7940             fi
7941         fi
7942
7943         gl1=$(get_ost_param "ldlm_glimpse_enqueue")
7944         stat $DIR/$tfile >/dev/null
7945         gl2=$(get_ost_param "ldlm_glimpse_enqueue")
7946         echo "====> SOM is "$som2", "$((gl2 - gl1))" glimpse RPC occured"
7947         som_mode_switch $som2 $gl1 $gl2
7948         MOUNTOPT=$MOUNTOPT_SAVE
7949 }
7950 run_test 132 "som avoids glimpse rpc"
7951
7952 check_stats() {
7953         local res
7954         local count
7955         case $1 in
7956         $SINGLEMDS) res=`do_facet $SINGLEMDS $LCTL get_param mdt.$FSNAME-MDT0000.md_stats | grep "$2"`
7957                  ;;
7958         ost) res=`do_facet ost1 $LCTL get_param obdfilter.$FSNAME-OST0000.stats | grep "$2"`
7959                  ;;
7960         *) error "Wrong argument $1" ;;
7961         esac
7962         echo $res
7963         count=`echo $res | awk '{print $2}'`
7964         [ -z "$res" ] && error "The counter for $2 on $1 was not incremented"
7965         # if the argument $3 is zero, it means any stat increment is ok.
7966         if [ $3 -gt 0 ] ; then
7967                 [ $count -ne $3 ] && error "The $2 counter on $1 is wrong - expected $3"
7968         fi
7969 }
7970
7971 test_133a() {
7972         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7973         remote_ost_nodsh && skip "remote OST with nodsh" && return
7974         remote_mds_nodsh && skip "remote MDS with nodsh" && return
7975
7976         do_facet $SINGLEMDS $LCTL list_param mdt.*.rename_stats ||
7977                 { skip "MDS doesn't support rename stats"; return; }
7978         local testdir=$DIR/${tdir}/stats_testdir
7979         mkdir -p $DIR/${tdir}
7980
7981         # clear stats.
7982         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
7983         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
7984
7985         # verify mdt stats first.
7986         mkdir ${testdir} || error "mkdir failed"
7987         check_stats $SINGLEMDS "mkdir" 1
7988         touch ${testdir}/${tfile} || "touch failed"
7989         check_stats $SINGLEMDS "open" 1
7990         check_stats $SINGLEMDS "close" 1
7991         mknod ${testdir}/${tfile}-pipe p || "mknod failed"
7992         check_stats $SINGLEMDS "mknod" 1
7993         rm -f ${testdir}/${tfile}-pipe || "pipe remove failed"
7994         check_stats $SINGLEMDS "unlink" 1
7995         rm -f ${testdir}/${tfile} || error "file remove failed"
7996         check_stats $SINGLEMDS "unlink" 2
7997
7998         # remove working dir and check mdt stats again.
7999         rmdir ${testdir} || error "rmdir failed"
8000         check_stats $SINGLEMDS "rmdir" 1
8001
8002         local testdir1=$DIR/${tdir}/stats_testdir1
8003         mkdir -p ${testdir}
8004         mkdir -p ${testdir1}
8005         touch ${testdir1}/test1
8006         mv ${testdir1}/test1 ${testdir} || error "file crossdir rename"
8007         check_stats $SINGLEMDS "crossdir_rename" 1
8008
8009         mv ${testdir}/test1 ${testdir}/test0 || error "file samedir rename"
8010         check_stats $SINGLEMDS "samedir_rename" 1
8011
8012         rm -rf $DIR/${tdir}
8013 }
8014 run_test 133a "Verifying MDT stats ========================================"
8015
8016 test_133b() {
8017         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8018         remote_ost_nodsh && skip "remote OST with nodsh" && return
8019         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8020         local testdir=$DIR/${tdir}/stats_testdir
8021         mkdir -p ${testdir} || error "mkdir failed"
8022         touch ${testdir}/${tfile} || "touch failed"
8023         cancel_lru_locks mdc
8024
8025         # clear stats.
8026         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
8027         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
8028
8029         # extra mdt stats verification.
8030         chmod 444 ${testdir}/${tfile} || error "chmod failed"
8031         check_stats $SINGLEMDS "setattr" 1
8032         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
8033         if [ $(lustre_version_code $SINGLEMDS) -ne $(version_code 2.2.0) ]
8034         then            # LU-1740
8035                 ls -l ${testdir}/${tfile} > /dev/null|| error "ls failed"
8036                 check_stats $SINGLEMDS "getattr" 1
8037         fi
8038         $LFS df || error "lfs failed"
8039         check_stats $SINGLEMDS "statfs" 1
8040
8041         rm -rf $DIR/${tdir}
8042 }
8043 run_test 133b "Verifying extra MDT stats =================================="
8044
8045 test_133c() {
8046         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8047         remote_ost_nodsh && skip "remote OST with nodsh" && return
8048         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8049         local testdir=$DIR/${tdir}/stats_testdir
8050         test_mkdir -p ${testdir} || error "mkdir failed"
8051
8052         # verify obdfilter stats.
8053         $SETSTRIPE -c 1 -i 0 ${testdir}/${tfile}
8054         sync
8055         cancel_lru_locks osc
8056         wait_delete_completed
8057
8058         # clear stats.
8059         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
8060         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
8061
8062         dd if=/dev/zero of=${testdir}/${tfile} conv=notrunc bs=512k count=1 || error "dd failed"
8063         sync
8064         cancel_lru_locks osc
8065         check_stats ost "write" 1
8066
8067         dd if=${testdir}/${tfile} of=/dev/null bs=1k count=1 || error "dd failed"
8068         check_stats ost "read" 1
8069
8070         > ${testdir}/${tfile} || error "truncate failed"
8071         check_stats ost "punch" 1
8072
8073         rm -f ${testdir}/${tfile} || error "file remove failed"
8074         wait_delete_completed
8075         check_stats ost "destroy" 1
8076
8077         rm -rf $DIR/${tdir}
8078 }
8079 run_test 133c "Verifying OST stats ========================================"
8080
8081 order_2() {
8082     local value=$1
8083     local orig=$value
8084     local order=1
8085
8086     while [ $value -ge 2 ]; do
8087         order=$((order*2))
8088         value=$((value/2))
8089     done
8090
8091     if [ $orig -gt $order ]; then
8092         order=$((order*2))
8093     fi
8094     echo $order
8095 }
8096
8097 size_in_KMGT() {
8098     local value=$1
8099     local size=('K' 'M' 'G' 'T');
8100     local i=0
8101     local size_string=$value
8102
8103     while [ $value -ge 1024 ]; do
8104         if [ $i -gt 3 ]; then
8105             #T is the biggest unit we get here, if that is bigger,
8106             #just return XXXT
8107             size_string=${value}T
8108             break
8109         fi
8110         value=$((value >> 10))
8111         if [ $value -lt 1024 ]; then
8112             size_string=${value}${size[$i]}
8113             break
8114         fi
8115         i=$((i + 1))
8116     done
8117
8118     echo $size_string
8119 }
8120
8121 get_rename_size() {
8122     local size=$1
8123     local context=${2:-.}
8124     local sample=$(do_facet $SINGLEMDS $LCTL get_param mdt.*.rename_stats |
8125                 grep -A1 $context |
8126                 awk '/ '${size}'/ {print $4}' | sed -e "s/,//g")
8127     echo $sample
8128 }
8129
8130 test_133d() {
8131         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8132     remote_ost_nodsh && skip "remote OST with nodsh" && return
8133     remote_mds_nodsh && skip "remote MDS with nodsh" && return
8134     do_facet $SINGLEMDS $LCTL list_param mdt.*.rename_stats ||
8135         { skip "MDS doesn't support rename stats"; return; }
8136
8137     local testdir1=$DIR/${tdir}/stats_testdir1
8138     local testdir2=$DIR/${tdir}/stats_testdir2
8139
8140     do_facet $SINGLEMDS $LCTL set_param mdt.*.rename_stats=clear
8141
8142     test_mkdir -p ${testdir1} || error "mkdir failed"
8143     test_mkdir -p ${testdir2} || error "mkdir failed"
8144
8145     createmany -o $testdir1/test 512 || error "createmany failed"
8146
8147         # check samedir rename size
8148         mv ${testdir1}/test0 ${testdir1}/test_0
8149
8150         local testdir1_size=$(ls -l $DIR/${tdir} |
8151                 awk '/stats_testdir1/ {print $5}')
8152         local testdir2_size=$(ls -l $DIR/${tdir} |
8153                 awk '/stats_testdir2/ {print $5}')
8154
8155         testdir1_size=$(order_2 $testdir1_size)
8156         testdir2_size=$(order_2 $testdir2_size)
8157
8158         testdir1_size=$(size_in_KMGT $testdir1_size)
8159         testdir2_size=$(size_in_KMGT $testdir2_size)
8160
8161         echo "source rename dir size: ${testdir1_size}"
8162         echo "target rename dir size: ${testdir2_size}"
8163
8164     local cmd="do_facet $SINGLEMDS $LCTL get_param mdt.*.rename_stats"
8165     eval $cmd || error "$cmd failed"
8166     local samedir=$($cmd | grep 'same_dir')
8167     local same_sample=$(get_rename_size $testdir1_size)
8168     [ -z "$samedir" ] && error "samedir_rename_size count error"
8169     [ "$same_sample" -eq 1 ] || error "samedir_rename_size error $same_sample"
8170     echo "Check same dir rename stats success"
8171
8172     do_facet $SINGLEMDS $LCTL set_param mdt.*.rename_stats=clear
8173
8174     # check crossdir rename size
8175     mv ${testdir1}/test_0 ${testdir2}/test_0
8176
8177         testdir1_size=$(ls -l $DIR/${tdir} |
8178                 awk '/stats_testdir1/ {print $5}')
8179         testdir2_size=$(ls -l $DIR/${tdir} |
8180                 awk '/stats_testdir2/ {print $5}')
8181
8182         testdir1_size=$(order_2 $testdir1_size)
8183         testdir2_size=$(order_2 $testdir2_size)
8184
8185         testdir1_size=$(size_in_KMGT $testdir1_size)
8186         testdir2_size=$(size_in_KMGT $testdir2_size)
8187
8188         echo "source rename dir size: ${testdir1_size}"
8189         echo "target rename dir size: ${testdir2_size}"
8190
8191     eval $cmd || error "$cmd failed"
8192     local crossdir=$($cmd | grep 'crossdir')
8193     local src_sample=$(get_rename_size $testdir1_size crossdir_src)
8194     local tgt_sample=$(get_rename_size $testdir2_size crossdir_tgt)
8195     [ -z "$crossdir" ] && error "crossdir_rename_size count error"
8196     [ "$src_sample" -eq 1 ] || error "crossdir_rename_size error $src_sample"
8197     [ "$tgt_sample" -eq 1 ] || error "crossdir_rename_size error $tgt_sample"
8198     echo "Check cross dir rename stats success"
8199     rm -rf $DIR/${tdir}
8200 }
8201 run_test 133d "Verifying rename_stats ========================================"
8202
8203 test_133e() {
8204         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8205         local testdir=$DIR/${tdir}/stats_testdir
8206         local ctr f0 f1 bs=32768 count=42 sum
8207
8208         remote_ost_nodsh && skip "remote OST with nodsh" && return
8209         mkdir -p ${testdir} || error "mkdir failed"
8210
8211         $SETSTRIPE -c 1 -i 0 ${testdir}/${tfile}
8212
8213         for ctr in {write,read}_bytes; do
8214                 sync
8215                 cancel_lru_locks osc
8216
8217                 do_facet ost1 $LCTL set_param -n \
8218                         "obdfilter.*.exports.clear=clear"
8219
8220                 if [ $ctr = write_bytes ]; then
8221                         f0=/dev/zero
8222                         f1=${testdir}/${tfile}
8223                 else
8224                         f0=${testdir}/${tfile}
8225                         f1=/dev/null
8226                 fi
8227
8228                 dd if=$f0 of=$f1 conv=notrunc bs=$bs count=$count || \
8229                         error "dd failed"
8230                 sync
8231                 cancel_lru_locks osc
8232
8233                 sum=$(do_facet ost1 $LCTL get_param \
8234                                 "obdfilter.*.exports.*.stats" | \
8235                           awk -v ctr=$ctr '\
8236                                 BEGIN { sum = 0 }
8237                                 $1 == ctr { sum += $7 }
8238                                 END { print sum }')
8239
8240                 if ((sum != bs * count)); then
8241                         error "Bad $ctr sum, expected $((bs * count)), got $sum"
8242                 fi
8243         done
8244
8245         rm -rf $DIR/${tdir}
8246 }
8247 run_test 133e "Verifying OST {read,write}_bytes nid stats ================="
8248
8249 test_140() { #bug-17379
8250         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8251         test_mkdir -p $DIR/$tdir || error "Creating dir $DIR/$tdir"
8252         cd $DIR/$tdir || error "Changing to $DIR/$tdir"
8253         cp /usr/bin/stat . || error "Copying stat to $DIR/$tdir"
8254
8255         # VFS limits max symlink depth to 5(4KSTACK) or 7(8KSTACK) or 8
8256         # For kernel > 3.5, bellow only tests consecutive symlink (MAX 40)
8257         local i=0
8258         while i=`expr $i + 1`; do
8259                 test_mkdir -p $i || error "Creating dir $i"
8260                 cd $i || error "Changing to $i"
8261                 ln -s ../stat stat || error "Creating stat symlink"
8262                 # Read the symlink until ELOOP present,
8263                 # not LBUGing the system is considered success,
8264                 # we didn't overrun the stack.
8265                 $OPENFILE -f O_RDONLY stat >/dev/null 2>&1; ret=$?
8266                 [ $ret -ne 0 ] && {
8267                         if [ $ret -eq 40 ]; then
8268                                 break  # -ELOOP
8269                         else
8270                                 error "Open stat symlink"
8271                                 return
8272                         fi
8273                 }
8274         done
8275         i=`expr $i - 1`
8276         echo "The symlink depth = $i"
8277         [ $i -eq 5 -o $i -eq 7 -o $i -eq 8 -o $i -eq 40 ] ||
8278                                         error "Invalid symlink depth"
8279
8280         # Test recursive symlink
8281         ln -s symlink_self symlink_self
8282         $OPENFILE -f O_RDONLY symlink_self >/dev/null 2>&1; ret=$?
8283         echo "open symlink_self returns $ret"
8284         [ $ret -eq 40 ] || error "recursive symlink doesn't return -ELOOP"
8285 }
8286 run_test 140 "Check reasonable stack depth (shouldn't LBUG) ===="
8287
8288 test_150() {
8289         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8290         local TF="$TMP/$tfile"
8291
8292         dd if=/dev/urandom of=$TF bs=6096 count=1 || error "dd failed"
8293         cp $TF $DIR/$tfile
8294         cancel_lru_locks osc
8295         cmp $TF $DIR/$tfile || error "$TMP/$tfile $DIR/$tfile differ"
8296         remount_client $MOUNT
8297         df -P $MOUNT
8298         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (remount)"
8299
8300         $TRUNCATE $TF 6000
8301         $TRUNCATE $DIR/$tfile 6000
8302         cancel_lru_locks osc
8303         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (truncate1)"
8304
8305         echo "12345" >>$TF
8306         echo "12345" >>$DIR/$tfile
8307         cancel_lru_locks osc
8308         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (append1)"
8309
8310         echo "12345" >>$TF
8311         echo "12345" >>$DIR/$tfile
8312         cancel_lru_locks osc
8313         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (append2)"
8314
8315         rm -f $TF
8316         true
8317 }
8318 run_test 150 "truncate/append tests"
8319
8320 function roc_hit() {
8321         local list=$(comma_list $(osts_nodes))
8322
8323         echo $(get_osd_param $list '' stats |
8324                awk '/'cache_hit'/ {sum+=$2} END {print sum}')
8325 }
8326
8327 function set_cache() {
8328         local on=1
8329
8330         if [ "$2" == "off" ]; then
8331                 on=0;
8332         fi
8333         local list=$(comma_list $(osts_nodes))
8334         set_osd_param $list '' $1_cache_enable $on
8335
8336         cancel_lru_locks osc
8337 }
8338
8339 test_151() {
8340         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8341         remote_ost_nodsh && skip "remote OST with nodsh" && return
8342
8343         local CPAGES=3
8344         local list=$(comma_list $(osts_nodes))
8345
8346         # check whether obdfilter is cache capable at all
8347         if ! get_osd_param $list '' read_cache_enable >/dev/null; then
8348                 echo "not cache-capable obdfilter"
8349                 return 0
8350         fi
8351
8352         # check cache is enabled on all obdfilters
8353         if get_osd_param $list '' read_cache_enable | grep 0; then
8354                 echo "oss cache is disabled"
8355                 return 0
8356         fi
8357
8358         set_osd_param $list '' writethrough_cache_enable 1
8359
8360         # pages should be in the case right after write
8361         dd if=/dev/urandom of=$DIR/$tfile bs=4k count=$CPAGES || error "dd failed"
8362         local BEFORE=`roc_hit`
8363         cancel_lru_locks osc
8364         cat $DIR/$tfile >/dev/null
8365         local AFTER=`roc_hit`
8366         if ! let "AFTER - BEFORE == CPAGES"; then
8367                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
8368         fi
8369
8370         # the following read invalidates the cache
8371         cancel_lru_locks osc
8372         set_osd_param $list '' read_cache_enable 0
8373         cat $DIR/$tfile >/dev/null
8374
8375         # now data shouldn't be found in the cache
8376         BEFORE=`roc_hit`
8377         cancel_lru_locks osc
8378         cat $DIR/$tfile >/dev/null
8379         AFTER=`roc_hit`
8380         if let "AFTER - BEFORE != 0"; then
8381                 error "IN CACHE: before: $BEFORE, after: $AFTER"
8382         fi
8383
8384         set_osd_param $list '' read_cache_enable 1
8385         rm -f $DIR/$tfile
8386 }
8387 run_test 151 "test cache on oss and controls ==============================="
8388
8389 test_152() {
8390         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8391         local TF="$TMP/$tfile"
8392
8393         # simulate ENOMEM during write
8394 #define OBD_FAIL_OST_NOMEM      0x226
8395         lctl set_param fail_loc=0x80000226
8396         dd if=/dev/urandom of=$TF bs=6096 count=1 || error "dd failed"
8397         cp $TF $DIR/$tfile
8398         sync || error "sync failed"
8399         lctl set_param fail_loc=0
8400
8401         # discard client's cache
8402         cancel_lru_locks osc
8403
8404         # simulate ENOMEM during read
8405         lctl set_param fail_loc=0x80000226
8406         cmp $TF $DIR/$tfile || error "cmp failed"
8407         lctl set_param fail_loc=0
8408
8409         rm -f $TF
8410 }
8411 run_test 152 "test read/write with enomem ============================"
8412
8413 test_153() {
8414         $MULTIOP $DIR/$tfile Ow4096Ycu || error "multiop failed"
8415 }
8416 run_test 153 "test if fdatasync does not crash ======================="
8417
8418 test_154() {
8419         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8420         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ]] ||
8421                 { skip "Need MDS version at least 2.2.51"; return 0; }
8422
8423         cp /etc/hosts $DIR/$tfile
8424
8425         fid=$($LFS path2fid $DIR/$tfile)
8426         rc=$?
8427         [ $rc -ne 0 ] && error "error: could not get fid for $DIR/$tfile."
8428
8429         ffid=$DIR/.lustre/fid/$fid
8430
8431         echo "stat fid $fid"
8432         stat $ffid > /dev/null || error "stat $ffid failed."
8433         echo "touch fid $fid"
8434         touch $ffid || error "touch $ffid failed."
8435         echo "write to fid $fid"
8436         cat /etc/hosts > $ffid || error "write $ffid failed."
8437         echo "read fid $fid"
8438         diff /etc/hosts $ffid || error "read $ffid failed."
8439         echo "append write to fid $fid"
8440         cat /etc/hosts >> $ffid || error "append write $ffid failed."
8441         echo "rename fid $fid"
8442         mv $ffid $DIR/$tfile.1 && error "rename $ffid to $tfile.1 should fail."
8443         touch $DIR/$tfile.1
8444         mv $DIR/$tfile.1 $ffid && error "rename $tfile.1 to $ffid should fail."
8445         rm -f $DIR/$tfile.1
8446         echo "truncate fid $fid"
8447         $TRUNCATE $ffid 777 || error "truncate $ffid failed."
8448         echo "link fid $fid"
8449         ln -f $ffid $DIR/tfile.lnk || error "link $ffid failed."
8450         if [ -n $(lctl get_param -n mdc.*-mdc-*.connect_flags | grep acl) ]; then
8451                 echo "setfacl fid $fid"
8452                 setfacl -R -m u:bin:rwx $ffid || error "setfacl $ffid failed."
8453                 echo "getfacl fid $fid"
8454                 getfacl $ffid >/dev/null || error "getfacl $ffid failed."
8455         fi
8456         echo "unlink fid $fid"
8457         unlink $DIR/.lustre/fid/$fid && error "unlink $ffid should fail."
8458         echo "mknod fid $fid"
8459         mknod $ffid c 1 3 && error "mknod $ffid should fail."
8460
8461         fid=[0xf00000400:0x1:0x0]
8462         ffid=$DIR/.lustre/fid/$fid
8463
8464         echo "stat non-exist fid $fid"
8465         stat $ffid > /dev/null && error "stat non-exist $ffid should fail."
8466         echo "write to non-exist fid $fid"
8467         cat /etc/hosts > $ffid && error "write non-exist $ffid should fail."
8468         echo "link new fid $fid"
8469         ln $DIR/$tfile $ffid && error "link $ffid should fail."
8470
8471         test_mkdir -p $DIR/$tdir
8472         touch $DIR/$tdir/$tfile
8473         fid=$($LFS path2fid $DIR/$tdir)
8474         rc=$?
8475         [ $rc -ne 0 ] && error "error: could not get fid for $DIR/$tfile."
8476
8477         ffid=$DIR/.lustre/fid/$fid
8478
8479         echo "ls $fid"
8480         ls $ffid > /dev/null || error "ls $ffid failed."
8481         echo "touch $fid/$tfile.1"
8482         touch $ffid/$tfile.1 || error "touch $ffid/$tfile.1 failed."
8483
8484         echo "touch $DIR/.lustre/fid/$tfile"
8485         touch $DIR/.lustre/fid/$tfile && \
8486                 error "touch $DIR/.lustre/fid/$tfile should fail."
8487
8488         echo "setxattr to $DIR/.lustre/fid"
8489         setfattr -n trusted.name1 -v value1 $DIR/.lustre/fid &&
8490                 error "setxattr should fail."
8491
8492         echo "listxattr for $DIR/.lustre/fid"
8493         getfattr -d -m "^trusted" $DIR/.lustre/fid &&
8494                 error "listxattr should fail."
8495
8496         echo "delxattr from $DIR/.lustre/fid"
8497         setfattr -x trusted.name1 $DIR/.lustre/fid &&
8498                 error "delxattr should fail."
8499
8500         echo "touch invalid fid: $DIR/.lustre/fid/[0x200000400:0x2:0x3]"
8501         touch $DIR/.lustre/fid/[0x200000400:0x2:0x3] &&
8502                 error "touch invalid fid should fail."
8503
8504         echo "touch non-normal fid: $DIR/.lustre/fid/[0x1:0x2:0x0]"
8505         touch $DIR/.lustre/fid/[0x1:0x2:0x0] &&
8506                 error "touch non-normal fid should fail."
8507
8508         echo "rename $tdir to $DIR/.lustre/fid"
8509         mrename $DIR/$tdir $DIR/.lustre/fid &&
8510                 error "rename to $DIR/.lustre/fid should fail."
8511
8512         echo "rename .lustre to itself"
8513         fid=$($LFS path2fid $DIR)
8514         mrename $DIR/.lustre $DIR/.lustre/fid/$fid/.lustre &&
8515                 error "rename .lustre to itself should fail."
8516
8517         $OPENFILE -f O_LOV_DELAY_CREATE:O_CREAT $DIR/$tfile-2
8518         fid=$($LFS path2fid $DIR/$tfile-2)
8519         echo "cp /etc/passwd $DIR/.lustre/fid/$fid"
8520         cp /etc/passwd $DIR/.lustre/fid/$fid &&
8521                 error "create lov data thru .lustre should fail."
8522         echo "cp /etc/passwd $DIR/$tfile-2"
8523         cp /etc/passwd $DIR/$tfile-2 || error "copy to $DIR/$tfile-2 failed."
8524         echo "diff /etc/passwd $DIR/.lustre/fid/$fid"
8525         diff /etc/passwd $DIR/.lustre/fid/$fid ||
8526                 error "diff /etc/passwd $DIR/.lustre/fid/$fid failed."
8527
8528         echo "Open-by-FID succeeded"
8529 }
8530 run_test 154 "Open-by-FID"
8531
8532 test_155_small_load() {
8533     local temp=$TMP/$tfile
8534     local file=$DIR/$tfile
8535
8536     dd if=/dev/urandom of=$temp bs=6096 count=1 || \
8537         error "dd of=$temp bs=6096 count=1 failed"
8538     cp $temp $file
8539     cancel_lru_locks osc
8540     cmp $temp $file || error "$temp $file differ"
8541
8542     $TRUNCATE $temp 6000
8543     $TRUNCATE $file 6000
8544     cmp $temp $file || error "$temp $file differ (truncate1)"
8545
8546     echo "12345" >>$temp
8547     echo "12345" >>$file
8548     cmp $temp $file || error "$temp $file differ (append1)"
8549
8550     echo "12345" >>$temp
8551     echo "12345" >>$file
8552     cmp $temp $file || error "$temp $file differ (append2)"
8553
8554     rm -f $temp $file
8555     true
8556 }
8557
8558 test_155_big_load() {
8559     remote_ost_nodsh && skip "remote OST with nodsh" && return
8560     local temp=$TMP/$tfile
8561     local file=$DIR/$tfile
8562
8563     free_min_max
8564     local cache_size=$(do_facet ost$((MAXI+1)) \
8565         "awk '/cache/ {sum+=\\\$4} END {print sum}' /proc/cpuinfo")
8566     local large_file_size=$((cache_size * 2))
8567
8568     echo "OSS cache size: $cache_size KB"
8569     echo "Large file size: $large_file_size KB"
8570
8571     [ $MAXV -le $large_file_size ] && \
8572         skip_env "max available OST size needs > $large_file_size KB" && \
8573         return 0
8574
8575     $SETSTRIPE $file -c 1 -i $MAXI || error "$SETSTRIPE $file failed"
8576
8577     dd if=/dev/urandom of=$temp bs=$large_file_size count=1k || \
8578         error "dd of=$temp bs=$large_file_size count=1k failed"
8579     cp $temp $file
8580     ls -lh $temp $file
8581     cancel_lru_locks osc
8582     cmp $temp $file || error "$temp $file differ"
8583
8584     rm -f $temp $file
8585     true
8586 }
8587
8588 test_155a() {
8589         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8590         set_cache read on
8591         set_cache writethrough on
8592         test_155_small_load
8593 }
8594 run_test 155a "Verify small file correctness: read cache:on write_cache:on"
8595
8596 test_155b() {
8597         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8598         set_cache read on
8599         set_cache writethrough off
8600         test_155_small_load
8601 }
8602 run_test 155b "Verify small file correctness: read cache:on write_cache:off"
8603
8604 test_155c() {
8605         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8606         set_cache read off
8607         set_cache writethrough on
8608         test_155_small_load
8609 }
8610 run_test 155c "Verify small file correctness: read cache:off write_cache:on"
8611
8612 test_155d() {
8613         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8614         set_cache read off
8615         set_cache writethrough off
8616         test_155_small_load
8617 }
8618 run_test 155d "Verify small file correctness: read cache:off write_cache:off"
8619
8620 test_155e() {
8621         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8622         set_cache read on
8623         set_cache writethrough on
8624         test_155_big_load
8625 }
8626 run_test 155e "Verify big file correctness: read cache:on write_cache:on"
8627
8628 test_155f() {
8629         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8630         set_cache read on
8631         set_cache writethrough off
8632         test_155_big_load
8633 }
8634 run_test 155f "Verify big file correctness: read cache:on write_cache:off"
8635
8636 test_155g() {
8637         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8638         set_cache read off
8639         set_cache writethrough on
8640         test_155_big_load
8641 }
8642 run_test 155g "Verify big file correctness: read cache:off write_cache:on"
8643
8644 test_155h() {
8645         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8646         set_cache read off
8647         set_cache writethrough off
8648         test_155_big_load
8649 }
8650 run_test 155h "Verify big file correctness: read cache:off write_cache:off"
8651
8652 test_156() {
8653         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8654         local CPAGES=3
8655         local BEFORE
8656         local AFTER
8657         local file="$DIR/$tfile"
8658
8659         [ "$(facet_fstype ost1)" = "zfs" ] &&
8660                 skip "LU-1956/LU-2261: stats unimplemented on OSD ZFS" &&
8661                 return
8662
8663     log "Turn on read and write cache"
8664     set_cache read on
8665     set_cache writethrough on
8666
8667     log "Write data and read it back."
8668     log "Read should be satisfied from the cache."
8669     dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
8670     BEFORE=`roc_hit`
8671     cancel_lru_locks osc
8672     cat $file >/dev/null
8673     AFTER=`roc_hit`
8674     if ! let "AFTER - BEFORE == CPAGES"; then
8675         error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
8676     else
8677         log "cache hits:: before: $BEFORE, after: $AFTER"
8678     fi
8679
8680     log "Read again; it should be satisfied from the cache."
8681     BEFORE=$AFTER
8682     cancel_lru_locks osc
8683     cat $file >/dev/null
8684     AFTER=`roc_hit`
8685     if ! let "AFTER - BEFORE == CPAGES"; then
8686         error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
8687     else
8688         log "cache hits:: before: $BEFORE, after: $AFTER"
8689     fi
8690
8691
8692     log "Turn off the read cache and turn on the write cache"
8693     set_cache read off
8694     set_cache writethrough on
8695
8696     log "Read again; it should be satisfied from the cache."
8697     BEFORE=`roc_hit`
8698     cancel_lru_locks osc
8699     cat $file >/dev/null
8700     AFTER=`roc_hit`
8701     if ! let "AFTER - BEFORE == CPAGES"; then
8702         error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
8703     else
8704         log "cache hits:: before: $BEFORE, after: $AFTER"
8705     fi
8706
8707     log "Read again; it should not be satisfied from the cache."
8708     BEFORE=$AFTER
8709     cancel_lru_locks osc
8710     cat $file >/dev/null
8711     AFTER=`roc_hit`
8712     if ! let "AFTER - BEFORE == 0"; then
8713         error "IN CACHE: before: $BEFORE, after: $AFTER"
8714     else
8715         log "cache hits:: before: $BEFORE, after: $AFTER"
8716     fi
8717
8718     log "Write data and read it back."
8719     log "Read should be satisfied from the cache."
8720     dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
8721     BEFORE=`roc_hit`
8722     cancel_lru_locks osc
8723     cat $file >/dev/null
8724     AFTER=`roc_hit`
8725     if ! let "AFTER - BEFORE == CPAGES"; then
8726         error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
8727     else
8728         log "cache hits:: before: $BEFORE, after: $AFTER"
8729     fi
8730
8731     log "Read again; it should not be satisfied from the cache."
8732     BEFORE=$AFTER
8733     cancel_lru_locks osc
8734     cat $file >/dev/null
8735     AFTER=`roc_hit`
8736     if ! let "AFTER - BEFORE == 0"; then
8737         error "IN CACHE: before: $BEFORE, after: $AFTER"
8738     else
8739         log "cache hits:: before: $BEFORE, after: $AFTER"
8740     fi
8741
8742
8743     log "Turn off read and write cache"
8744     set_cache read off
8745     set_cache writethrough off
8746
8747     log "Write data and read it back"
8748     log "It should not be satisfied from the cache."
8749     rm -f $file
8750     dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
8751     cancel_lru_locks osc
8752     BEFORE=`roc_hit`
8753     cat $file >/dev/null
8754     AFTER=`roc_hit`
8755     if ! let "AFTER - BEFORE == 0"; then
8756         error_ignore 20762 "IN CACHE: before: $BEFORE, after: $AFTER"
8757     else
8758         log "cache hits:: before: $BEFORE, after: $AFTER"
8759     fi
8760
8761
8762     log "Turn on the read cache and turn off the write cache"
8763     set_cache read on
8764     set_cache writethrough off
8765
8766     log "Write data and read it back"
8767     log "It should not be satisfied from the cache."
8768     rm -f $file
8769     dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
8770     BEFORE=`roc_hit`
8771     cancel_lru_locks osc
8772     cat $file >/dev/null
8773     AFTER=`roc_hit`
8774     if ! let "AFTER - BEFORE == 0"; then
8775         error_ignore 20762 "IN CACHE: before: $BEFORE, after: $AFTER"
8776     else
8777         log "cache hits:: before: $BEFORE, after: $AFTER"
8778     fi
8779
8780     log "Read again; it should be satisfied from the cache."
8781     BEFORE=`roc_hit`
8782     cancel_lru_locks osc
8783     cat $file >/dev/null
8784     AFTER=`roc_hit`
8785     if ! let "AFTER - BEFORE == CPAGES"; then
8786         error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
8787     else
8788         log "cache hits:: before: $BEFORE, after: $AFTER"
8789     fi
8790
8791     rm -f $file
8792 }
8793 run_test 156 "Verification of tunables ============================"
8794
8795 #Changelogs
8796 err17935 () {
8797     if [ $MDSCOUNT -gt 1 ]; then
8798         error_ignore 17935 $*
8799     else
8800         error $*
8801     fi
8802 }
8803
8804 changelog_chmask()
8805 {
8806     MASK=$(do_facet $SINGLEMDS $LCTL get_param mdd.$MDT0.changelog_mask |\
8807            grep -c $1)
8808
8809     if [ $MASK -eq 1 ]; then
8810         do_facet $SINGLEMDS $LCTL set_param mdd.$MDT0.changelog_mask="-$1"
8811     else
8812         do_facet $SINGLEMDS $LCTL set_param mdd.$MDT0.changelog_mask="+$1"
8813     fi
8814 }
8815
8816 test_160() {
8817         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8818     remote_mds_nodsh && skip "remote MDS with nodsh" && return
8819     [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] ||
8820         { skip "Need MDS version at least 2.2.0"; return; }
8821     USER=$(do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_register -n)
8822     echo "Registered as changelog user $USER"
8823     do_facet $SINGLEMDS $LCTL get_param -n mdd.$MDT0.changelog_users | \
8824         grep -q $USER || error "User $USER not found in changelog_users"
8825
8826     # change something
8827     test_mkdir -p $DIR/$tdir/pics/2008/zachy
8828     touch $DIR/$tdir/pics/2008/zachy/timestamp
8829     cp /etc/hosts $DIR/$tdir/pics/2008/zachy/pic1.jpg
8830     mv $DIR/$tdir/pics/2008/zachy $DIR/$tdir/pics/zach
8831     ln $DIR/$tdir/pics/zach/pic1.jpg $DIR/$tdir/pics/2008/portland.jpg
8832     ln -s $DIR/$tdir/pics/2008/portland.jpg $DIR/$tdir/pics/desktop.jpg
8833     rm $DIR/$tdir/pics/desktop.jpg
8834
8835     $LFS changelog $MDT0 | tail -5
8836
8837     echo "verifying changelog mask"
8838     changelog_chmask "MKDIR"
8839     changelog_chmask "CLOSE"
8840
8841     test_mkdir -p $DIR/$tdir/pics/zach/sofia
8842     echo "zzzzzz" > $DIR/$tdir/pics/zach/file
8843
8844     changelog_chmask "MKDIR"
8845     changelog_chmask "CLOSE"
8846
8847     test_mkdir -p $DIR/$tdir/pics/2008/sofia
8848     echo "zzzzzz" > $DIR/$tdir/pics/zach/file
8849
8850     $LFS changelog $MDT0
8851     MKDIRS=$($LFS changelog $MDT0 | tail -5 | grep -c "MKDIR")
8852     CLOSES=$($LFS changelog $MDT0 | tail -5 | grep -c "CLOSE")
8853     [ $MKDIRS -eq 1 ] || err17935 "MKDIR changelog mask count $DIRS != 1"
8854     [ $CLOSES -eq 1 ] || err17935 "CLOSE changelog mask count $DIRS != 1"
8855
8856     # verify contents
8857     echo "verifying target fid"
8858     fidc=$($LFS changelog $MDT0 | grep timestamp | grep "CREAT" | \
8859         tail -1 | awk '{print $6}')
8860     fidf=$($LFS path2fid $DIR/$tdir/pics/zach/timestamp)
8861     [ "$fidc" == "t=$fidf" ] || \
8862         err17935 "fid in changelog $fidc != file fid $fidf"
8863     echo "verifying parent fid"
8864     fidc=$($LFS changelog $MDT0 | grep timestamp | grep "CREAT" | \
8865         tail -1 | awk '{print $7}')
8866     fidf=$($LFS path2fid $DIR/$tdir/pics/zach)
8867     [ "$fidc" == "p=$fidf" ] || \
8868         err17935 "pfid in changelog $fidc != dir fid $fidf"
8869
8870     USER_REC1=$(do_facet $SINGLEMDS $LCTL get_param -n \
8871         mdd.$MDT0.changelog_users | grep $USER | awk '{print $2}')
8872     $LFS changelog_clear $MDT0 $USER $(($USER_REC1 + 5))
8873     USER_REC2=$(do_facet $SINGLEMDS $LCTL get_param -n \
8874         mdd.$MDT0.changelog_users | grep $USER | awk '{print $2}')
8875     echo "verifying user clear: $(( $USER_REC1 + 5 )) == $USER_REC2"
8876     [ $USER_REC2 == $(($USER_REC1 + 5)) ] || \
8877         err17935 "user index should be $(($USER_REC1 + 5)); is $USER_REC2"
8878
8879     MIN_REC=$(do_facet $SINGLEMDS $LCTL get_param mdd.$MDT0.changelog_users | \
8880         awk 'min == "" || $2 < min {min = $2}; END {print min}')
8881     FIRST_REC=$($LFS changelog $MDT0 | head -1 | awk '{print $1}')
8882     echo "verifying min purge: $(( $MIN_REC + 1 )) == $FIRST_REC"
8883     [ $FIRST_REC == $(($MIN_REC + 1)) ] || \
8884         err17935 "first index should be $(($MIN_REC + 1)); is $FIRST_REC"
8885
8886     echo "verifying user deregister"
8887     do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister $USER
8888     do_facet $SINGLEMDS $LCTL get_param -n mdd.$MDT0.changelog_users | \
8889         grep -q $USER && error "User $USER still found in changelog_users"
8890
8891     USERS=$(( $(do_facet $SINGLEMDS $LCTL get_param -n \
8892         mdd.$MDT0.changelog_users | wc -l) - 2 ))
8893     if [ $USERS -eq 0 ]; then
8894         LAST_REC1=$(do_facet $SINGLEMDS $LCTL get_param -n \
8895             mdd.$MDT0.changelog_users | head -1 | awk '{print $3}')
8896         touch $DIR/$tdir/chloe
8897         LAST_REC2=$(do_facet $SINGLEMDS $LCTL get_param -n \
8898             mdd.$MDT0.changelog_users | head -1 | awk '{print $3}')
8899         echo "verify changelogs are off if we were the only user: $LAST_REC1 == $LAST_REC2"
8900         [ $LAST_REC1 == $LAST_REC2 ] || error "changelogs not off"
8901     else
8902         echo "$USERS other changelog users; can't verify off"
8903     fi
8904 }
8905 run_test 160 "changelog sanity"
8906
8907 test_161() {
8908         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8909     test_mkdir -p $DIR/$tdir
8910     cp /etc/hosts $DIR/$tdir/$tfile
8911     test_mkdir $DIR/$tdir/foo1
8912     test_mkdir $DIR/$tdir/foo2
8913     ln $DIR/$tdir/$tfile $DIR/$tdir/foo1/sofia
8914     ln $DIR/$tdir/$tfile $DIR/$tdir/foo2/zachary
8915     ln $DIR/$tdir/$tfile $DIR/$tdir/foo1/luna
8916     ln $DIR/$tdir/$tfile $DIR/$tdir/foo2/thor
8917     local FID=$($LFS path2fid $DIR/$tdir/$tfile | tr -d '[')
8918     if [ "$($LFS fid2path $DIR $FID | wc -l)" != "5" ]; then
8919         $LFS fid2path $DIR $FID
8920         err17935 "bad link ea"
8921     fi
8922     # middle
8923     rm $DIR/$tdir/foo2/zachary
8924     # last
8925     rm $DIR/$tdir/foo2/thor
8926     # first
8927     rm $DIR/$tdir/$tfile
8928     # rename
8929     mv $DIR/$tdir/foo1/sofia $DIR/$tdir/foo2/maggie
8930     if [ "$($LFS fid2path $FSNAME --link 1 $FID)" != "$tdir/foo2/maggie" ]
8931         then
8932         $LFS fid2path $DIR $FID
8933         err17935 "bad link rename"
8934     fi
8935     rm $DIR/$tdir/foo2/maggie
8936
8937     # overflow the EA
8938     local longname=filename_avg_len_is_thirty_two_
8939     createmany -l$DIR/$tdir/foo1/luna $DIR/$tdir/foo2/$longname 1000 || \
8940         error "failed to hardlink many files"
8941     links=$($LFS fid2path $DIR $FID | wc -l)
8942     echo -n "${links}/1000 links in link EA"
8943     [ ${links} -gt 60 ] || err17935 "expected at least 60 links in link EA"
8944     unlinkmany $DIR/$tdir/foo2/$longname 1000 || \
8945         error "failed to unlink many hardlinks"
8946 }
8947 run_test 161 "link ea sanity"
8948
8949 check_path() {
8950     local expected=$1
8951     shift
8952     local fid=$2
8953
8954     local path=$(${LFS} fid2path $*)
8955     RC=$?
8956
8957     if [ $RC -ne 0 ]; then
8958         err17935 "path looked up of $expected failed. Error $RC"
8959         return $RC
8960     elif [ "${path}" != "${expected}" ]; then
8961         err17935 "path looked up \"${path}\" instead of \"${expected}\""
8962         return 2
8963     fi
8964     echo "fid $fid resolves to path $path (expected $expected)"
8965 }
8966
8967 test_162() {
8968         # Make changes to filesystem
8969         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8970         test_mkdir -p $DIR/$tdir/d2
8971         touch $DIR/$tdir/d2/$tfile
8972         touch $DIR/$tdir/d2/x1
8973         touch $DIR/$tdir/d2/x2
8974         test_mkdir -p $DIR/$tdir/d2/a/b/c
8975         test_mkdir -p $DIR/$tdir/d2/p/q/r
8976         # regular file
8977         FID=$($LFS path2fid $DIR/$tdir/d2/$tfile | tr -d '[]')
8978         check_path "$tdir/d2/$tfile" $FSNAME $FID --link 0
8979
8980         # softlink
8981         ln -s $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/p/q/r/slink
8982         FID=$($LFS path2fid $DIR/$tdir/d2/p/q/r/slink | tr -d '[]')
8983         check_path "$tdir/d2/p/q/r/slink" $FSNAME $FID --link 0
8984
8985         # softlink to wrong file
8986         ln -s /this/is/garbage $DIR/$tdir/d2/p/q/r/slink.wrong
8987         FID=$($LFS path2fid $DIR/$tdir/d2/p/q/r/slink.wrong | tr -d '[]')
8988         check_path "$tdir/d2/p/q/r/slink.wrong" $FSNAME $FID --link 0
8989
8990         # hardlink
8991         ln $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/p/q/r/hlink
8992         mv $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/a/b/c/new_file
8993         FID=$($LFS path2fid $DIR/$tdir/d2/a/b/c/new_file | tr -d '[]')
8994         # fid2path dir/fsname should both work
8995         check_path "$tdir/d2/a/b/c/new_file" $FSNAME $FID --link 1
8996         check_path "$DIR/$tdir/d2/p/q/r/hlink" $DIR $FID --link 0
8997
8998         # hardlink count: check that there are 2 links
8999         # Doesnt work with CMD yet: 17935
9000         ${LFS} fid2path $DIR $FID | wc -l | grep -q 2 || \
9001                 err17935 "expected 2 links"
9002
9003         # hardlink indexing: remove the first link
9004         rm $DIR/$tdir/d2/p/q/r/hlink
9005         check_path "$tdir/d2/a/b/c/new_file" $FSNAME $FID --link 0
9006
9007         return 0
9008 }
9009 run_test 162 "path lookup sanity"
9010
9011 test_163() {
9012         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9013         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9014         copytool --test $FSNAME || { skip "copytool not runnable: $?" && return; }
9015         copytool $FSNAME &
9016         sleep 1
9017         local uuid=$($LCTL get_param -n mdc.${FSNAME}-MDT0000-mdc-*.uuid)
9018         # this proc file is temporary and linux-only
9019         do_facet $SINGLEMDS lctl set_param mdt.${FSNAME}-MDT0000.mdccomm=$uuid ||\
9020          error "kernel->userspace send failed"
9021         kill -INT $!
9022 }
9023 run_test 163 "kernel <-> userspace comms"
9024
9025 test_169() {
9026         # do directio so as not to populate the page cache
9027         log "creating a 10 Mb file"
9028         $MULTIOP $DIR/$tfile oO_CREAT:O_DIRECT:O_RDWR:w$((10*1048576))c || error "multiop failed while creating a file"
9029         log "starting reads"
9030         dd if=$DIR/$tfile of=/dev/null bs=4096 &
9031         log "truncating the file"
9032         $MULTIOP $DIR/$tfile oO_TRUNC:c || error "multiop failed while truncating the file"
9033         log "killing dd"
9034         kill %+ || true # reads might have finished
9035         echo "wait until dd is finished"
9036         wait
9037         log "removing the temporary file"
9038         rm -rf $DIR/$tfile || error "tmp file removal failed"
9039 }
9040 run_test 169 "parallel read and truncate should not deadlock"
9041
9042 test_170() {
9043         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9044         $LCTL clear     # bug 18514
9045         $LCTL debug_daemon start $TMP/${tfile}_log_good
9046         touch $DIR/$tfile
9047         $LCTL debug_daemon stop
9048         sed -e "s/^...../a/g" $TMP/${tfile}_log_good > $TMP/${tfile}_log_bad ||
9049                error "sed failed to read log_good"
9050
9051         $LCTL debug_daemon start $TMP/${tfile}_log_good
9052         rm -rf $DIR/$tfile
9053         $LCTL debug_daemon stop
9054
9055         $LCTL df $TMP/${tfile}_log_bad > $TMP/${tfile}_log_bad.out 2>&1 ||
9056                error "lctl df log_bad failed"
9057
9058         local bad_line=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $9}')
9059         local good_line1=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $5}')
9060
9061         $LCTL df $TMP/${tfile}_log_good > $TMP/${tfile}_log_good.out 2>&1
9062         local good_line2=$(tail -n 1 $TMP/${tfile}_log_good.out | awk '{print $5}')
9063
9064         [ "$bad_line" ] && [ "$good_line1" ] && [ "$good_line2" ] ||
9065                 error "bad_line good_line1 good_line2 are empty"
9066
9067         cat $TMP/${tfile}_log_good >> $TMP/${tfile}_logs_corrupt
9068         cat $TMP/${tfile}_log_bad >> $TMP/${tfile}_logs_corrupt
9069         cat $TMP/${tfile}_log_good >> $TMP/${tfile}_logs_corrupt
9070
9071         $LCTL df $TMP/${tfile}_logs_corrupt > $TMP/${tfile}_log_bad.out 2>&1
9072         local bad_line_new=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $9}')
9073         local good_line_new=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $5}')
9074
9075         [ "$bad_line_new" ] && [ "$good_line_new" ] ||
9076                 error "bad_line_new good_line_new are empty"
9077
9078         local expected_good=$((good_line1 + good_line2*2))
9079
9080         rm -f $TMP/${tfile}*
9081         # LU-231, short malformed line may not be counted into bad lines
9082         if [ $bad_line -ne $bad_line_new ] &&
9083                    [ $bad_line -ne $((bad_line_new - 1)) ]; then
9084                 error "expected $bad_line bad lines, but got $bad_line_new"
9085                 return 1
9086         fi
9087
9088         if [ $expected_good -ne $good_line_new ]; then
9089                 error "expected $expected_good good lines, but got $good_line_new"
9090                 return 2
9091         fi
9092         true
9093 }
9094 run_test 170 "test lctl df to handle corrupted log ====================="
9095
9096 test_171() { # bug20592
9097         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9098 #define OBD_FAIL_PTLRPC_DUMP_LOG         0x50e
9099         $LCTL set_param fail_loc=0x50e
9100         $LCTL set_param fail_val=3000
9101         multiop_bg_pause $DIR/$tfile O_s || true
9102         local MULTIPID=$!
9103         kill -USR1 $MULTIPID
9104         # cause log dump
9105         sleep 3
9106         wait $MULTIPID
9107         if dmesg | grep "recursive fault"; then
9108                 error "caught a recursive fault"
9109         fi
9110         $LCTL set_param fail_loc=0
9111         true
9112 }
9113 run_test 171 "test libcfs_debug_dumplog_thread stuck in do_exit() ======"
9114
9115 # it would be good to share it with obdfilter-survey/libecho code
9116 setup_obdecho_osc () {
9117         local rc=0
9118         local ost_nid=$1
9119         local obdfilter_name=$2
9120         echo "Creating new osc for $obdfilter_name on $ost_nid"
9121         # make sure we can find loopback nid
9122         $LCTL add_uuid $ost_nid $ost_nid >/dev/null 2>&1
9123
9124         [ $rc -eq 0 ] && { $LCTL attach osc ${obdfilter_name}_osc     \
9125                            ${obdfilter_name}_osc_UUID || rc=2; }
9126         [ $rc -eq 0 ] && { $LCTL --device ${obdfilter_name}_osc setup \
9127                            ${obdfilter_name}_UUID  $ost_nid || rc=3; }
9128         return $rc
9129 }
9130
9131 cleanup_obdecho_osc () {
9132         local obdfilter_name=$1
9133         $LCTL --device ${obdfilter_name}_osc cleanup >/dev/null
9134         $LCTL --device ${obdfilter_name}_osc detach  >/dev/null
9135         return 0
9136 }
9137
9138 obdecho_create_test() {
9139         local OBD=$1
9140         local node=$2
9141         local rc=0
9142         local id
9143         do_facet $node "$LCTL attach echo_client ec ec_uuid" || rc=1
9144         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec setup $OBD" ||
9145                            rc=2; }
9146         if [ $rc -eq 0 ]; then
9147             id=$(do_facet $node "$LCTL --device ec create 1"  | awk '/object id/ {print $6}')
9148             [ ${PIPESTATUS[0]} -eq 0 -a -n "$id" ] || rc=3
9149         fi
9150         echo "New object id is $id"
9151         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec test_brw 10 w v 64 $id" ||
9152                            rc=4; }
9153         [ $rc -eq 0 -o $rc -gt 2 ] && { do_facet $node "$LCTL --device ec "    \
9154                                         "cleanup" || rc=5; }
9155         [ $rc -eq 0 -o $rc -gt 1 ] && { do_facet $node "$LCTL --device ec "    \
9156                                         "detach" || rc=6; }
9157         [ $rc -ne 0 ] && echo "obecho_create_test failed: $rc"
9158         return $rc
9159 }
9160
9161 test_180a() {
9162         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9163         remote_ost_nodsh && skip "remote OST with nodsh" && return
9164         local rc=0
9165         local rmmod_local=0
9166
9167         if ! module_loaded obdecho; then
9168             load_module obdecho/obdecho
9169             rmmod_local=1
9170         fi
9171
9172         local osc=$($LCTL dl | grep -v mdt | awk '$3 == "osc" {print $4; exit}')
9173         local host=$(lctl get_param -n osc.$osc.import |
9174                              awk '/current_connection:/ {print $2}' )
9175         local target=$(lctl get_param -n osc.$osc.import |
9176                              awk '/target:/ {print $2}' )
9177         target=${target%_UUID}
9178
9179         [[ -n $target ]]  && { setup_obdecho_osc $host $target || rc=1; } || rc=1
9180         [ $rc -eq 0 ] && { obdecho_create_test ${target}_osc client || rc=2; }
9181         [[ -n $target ]] && cleanup_obdecho_osc $target
9182         [ $rmmod_local -eq 1 ] && rmmod obdecho
9183         return $rc
9184 }
9185 run_test 180a "test obdecho on osc"
9186
9187 test_180b() {
9188         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9189         remote_ost_nodsh && skip "remote OST with nodsh" && return
9190         local rc=0
9191         local rmmod_remote=0
9192
9193         do_facet ost1 "lsmod | grep -q obdecho || "                      \
9194                       "{ insmod ${LUSTRE}/obdecho/obdecho.ko || "        \
9195                       "modprobe obdecho; }" && rmmod_remote=1
9196         target=$(do_facet ost1 $LCTL dl | awk '/obdfilter/ {print $4;exit}')
9197         [[ -n $target ]] && { obdecho_create_test $target ost1 || rc=1; }
9198         [ $rmmod_remote -eq 1 ] && do_facet ost1 "rmmod obdecho"
9199         return $rc
9200 }
9201 run_test 180b "test obdecho directly on obdfilter"
9202
9203 test_181() { # bug 22177
9204         test_mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
9205         # create enough files to index the directory
9206         createmany -o $DIR/$tdir/foobar 4000
9207         # print attributes for debug purpose
9208         lsattr -d .
9209         # open dir
9210         multiop_bg_pause $DIR/$tdir D_Sc || return 1
9211         MULTIPID=$!
9212         # remove the files & current working dir
9213         unlinkmany $DIR/$tdir/foobar 4000
9214         rmdir $DIR/$tdir
9215         kill -USR1 $MULTIPID
9216         wait $MULTIPID
9217         stat $DIR/$tdir && error "open-unlinked dir was not removed!"
9218         return 0
9219 }
9220 run_test 181 "Test open-unlinked dir ========================"
9221
9222 test_182() {
9223         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9224         # disable MDC RPC lock wouldn't crash client
9225         local fcount=1000
9226         local tcount=4
9227
9228         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
9229 #define OBD_FAIL_MDC_RPCS_SEM           0x804
9230         $LCTL set_param fail_loc=0x804
9231
9232         for (( i=0; i < $tcount; i++ )) ; do
9233                 mkdir $DIR/$tdir/$i
9234                 createmany -o $DIR/$tdir/$i/f- $fcount &
9235         done
9236         wait
9237
9238         for (( i=0; i < $tcount; i++ )) ; do
9239                 unlinkmany $DIR/$tdir/$i/f- $fcount &
9240         done
9241         wait
9242
9243         rm -rf $DIR/$tdir
9244
9245         $LCTL set_param fail_loc=0
9246 }
9247 run_test 182 "Disable MDC RPCs semaphore wouldn't crash client ================"
9248
9249 test_183() { # LU-2275
9250         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9251         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
9252         echo aaa > $DIR/$tdir/$tfile
9253
9254 #define OBD_FAIL_MDS_NEGATIVE_POSITIVE  0x148
9255         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x148
9256
9257         ls -l $DIR/$tdir && error "ls succeeded, should have failed"
9258         cat $DIR/$tdir/$tfile && error "cat succeeded, should have failed"
9259
9260         do_facet $SINGLEMDS $LCTL set_param fail_loc=0
9261
9262         # Flush negative dentry cache
9263         touch $DIR/$tdir/$tfile
9264
9265         # We are not checking for any leaked references here, they'll
9266         # become evident next time we do cleanup with module unload.
9267         rm -rf $DIR/$tdir
9268 }
9269 run_test 183 "No crash or request leak in case of strange dispositions ========"
9270
9271 test_185() { # LU-2441
9272         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
9273         touch $DIR/$tdir/spoo
9274         local mtime1=$(stat -c "%Y" $DIR/$tdir)
9275         local fid=$($MULTIOP $DIR/$tdir VFw4096c) ||
9276                 error "cannot create/write a volatile file"
9277         $CHECKSTAT -t file $MOUNT/.lustre/fid/$fid 2>/dev/null &&
9278                 error "FID is still valid after close"
9279
9280         multiop_bg_pause $DIR/$tdir vVw4096_c
9281         local multi_pid=$!
9282
9283         local OLD_IFS=$IFS
9284         IFS=":"
9285         local fidv=($fid)
9286         IFS=$OLD_IFS
9287         # assume that the next FID for this client is sequential, since stdout
9288         # is unfortunately eaten by multiop_bg_pause
9289         local n=$((${fidv[1]} + 1))
9290         local next_fid="${fidv[0]}:$(printf "0x%x" $n):${fidv[2]}"
9291         $CHECKSTAT -t file $MOUNT/.lustre/fid/$next_fid ||
9292                 error "FID is missing before close"
9293         kill -USR1 $multi_pid
9294         # 1 second delay, so if mtime change we will see it
9295         sleep 1
9296         local mtime2=$(stat -c "%Y" $DIR/$tdir)
9297         [[ $mtime1 == $mtime2 ]] || error "mtime has changed"
9298 }
9299 run_test 185 "Volatile file support"
9300
9301 # OST pools tests
9302 check_file_in_pool()
9303 {
9304         local file=$1
9305         local pool=$2
9306         local tlist="$3"
9307         local res=$($GETSTRIPE $file | grep 0x | cut -f2)
9308         for i in $res
9309         do
9310                 for t in $tlist ; do
9311                         [ "$i" -eq "$t" ] && continue 2
9312                 done
9313
9314                 echo "pool list: $tlist"
9315                 echo "striping: $res"
9316                 error_noexit "$file not allocated in $pool"
9317                 return 1
9318         done
9319         return 0
9320 }
9321
9322 pool_add() {
9323         echo "Creating new pool"
9324         local pool=$1
9325
9326         create_pool $FSNAME.$pool ||
9327                 { error_noexit "No pool created, result code $?"; return 1; }
9328         [ $($LFS pool_list $FSNAME | grep -c $pool) -eq 1 ] ||
9329                 { error_noexit "$pool not in lfs pool_list"; return 2; }
9330 }
9331
9332 pool_add_targets() {
9333         echo "Adding targets to pool"
9334         local pool=$1
9335         local first=$2
9336         local last=$3
9337         local step=${4:-1}
9338
9339         local list=$(seq $first $step $last)
9340
9341         local t=$(for i in $list; do printf "$FSNAME-OST%04x_UUID " $i; done)
9342         do_facet mgs $LCTL pool_add \
9343                         $FSNAME.$pool $FSNAME-OST[$first-$last/$step]
9344         wait_update $HOSTNAME "lctl get_param -n lov.$FSNAME-*.pools.$pool \
9345                         | sort -u | tr '\n' ' ' " "$t" || { 
9346                 error_noexit "Add to pool failed"
9347                 return 1
9348         }
9349         local lfscount=$($LFS pool_list $FSNAME.$pool | grep -c "\-OST")
9350         local addcount=$(((last - first) / step + 1))
9351         [ $lfscount -eq $addcount ] || {
9352                 error_noexit "lfs pool_list bad ost count" \
9353                                                 "$lfscount != $addcount"
9354                 return 2
9355         }
9356 }
9357
9358 pool_set_dir() {
9359         local pool=$1
9360         local tdir=$2
9361         echo "Setting pool on directory $tdir"
9362
9363         $SETSTRIPE -c 2 -p $pool $tdir && return 0
9364
9365         error_noexit "Cannot set pool $pool to $tdir"
9366         return 1
9367 }
9368
9369 pool_check_dir() {
9370         local pool=$1
9371         local tdir=$2
9372         echo "Checking pool on directory $tdir"
9373
9374         local res=$($GETSTRIPE --pool $tdir | sed "s/\s*$//")
9375         [ "$res" = "$pool" ] && return 0
9376
9377         error_noexit "Pool on '$tdir' is '$res', not '$pool'"
9378         return 1
9379 }
9380
9381 pool_dir_rel_path() {
9382         echo "Testing relative path works well"
9383         local pool=$1
9384         local tdir=$2
9385         local root=$3
9386
9387         mkdir -p $root/$tdir/$tdir
9388         cd $root/$tdir
9389         pool_set_dir $pool $tdir          || return 1
9390         pool_set_dir $pool ./$tdir        || return 2
9391         pool_set_dir $pool ../$tdir       || return 3
9392         pool_set_dir $pool ../$tdir/$tdir || return 4
9393         rm -rf $tdir; cd - > /dev/null
9394 }
9395
9396 pool_alloc_files() {
9397         echo "Checking files allocation from directory pool"
9398         local pool=$1
9399         local tdir=$2
9400         local count=$3
9401         local tlist="$4"
9402
9403         local failed=0
9404         for i in $(seq -w 1 $count)
9405         do
9406                 local file=$tdir/file-$i
9407                 touch $file
9408                 check_file_in_pool $file $pool "$tlist" || \
9409                         failed=$((failed + 1))
9410         done
9411         [ "$failed" = 0 ] && return 0
9412
9413         error_noexit "$failed files not allocated in $pool"
9414         return 1
9415 }
9416
9417 pool_create_files() {
9418         echo "Creating files in pool"
9419         local pool=$1
9420         local tdir=$2
9421         local count=$3
9422         local tlist="$4"
9423
9424         mkdir -p $tdir
9425         local failed=0
9426         for i in $(seq -w 1 $count)
9427         do
9428                 local file=$tdir/spoo-$i
9429                 $SETSTRIPE -p $pool $file
9430                 check_file_in_pool $file $pool "$tlist" || \
9431                         failed=$((failed + 1))
9432         done
9433         [ "$failed" = 0 ] && return 0
9434
9435         error_noexit "$failed files not allocated in $pool"
9436         return 1
9437 }
9438
9439 pool_lfs_df() {
9440         echo "Checking 'lfs df' output"
9441         local pool=$1
9442
9443         local t=$($LCTL get_param -n lov.$FSNAME-clilov-*.pools.$pool |
9444                         tr '\n' ' ')
9445         local res=$($LFS df --pool $FSNAME.$pool |
9446                         awk '{print $1}' |
9447                         grep "$FSNAME-OST" |
9448                         tr '\n' ' ')
9449         [ "$res" = "$t" ] && return 0
9450
9451         error_noexit "Pools OSTs '$t' is not '$res' that lfs df reports"
9452         return 1
9453 }
9454
9455 pool_file_rel_path() {
9456         echo "Creating files in a pool with relative pathname"
9457         local pool=$1
9458         local tdir=$2
9459
9460         mkdir -p $tdir ||
9461                 { error_noexit "unable to create $tdir"; return 1 ; }
9462         local file="/..$tdir/$tfile-1"
9463         $SETSTRIPE -p $pool $file ||
9464                 { error_noexit "unable to create $file" ; return 2 ; }
9465
9466         cd $tdir
9467         $SETSTRIPE -p $pool $tfile-2 || {
9468                 error_noexit "unable to create $tfile-2 in $tdir"
9469                 return 3
9470         }
9471 }
9472
9473 pool_remove_first_target() {
9474         echo "Removing first target from a pool"
9475         local pool=$1
9476
9477         local pname="lov.$FSNAME-*.pools.$pool"
9478         local t=$($LCTL get_param -n $pname | head -1)
9479         do_facet mgs $LCTL pool_remove $FSNAME.$pool $t
9480         wait_update $HOSTNAME "lctl get_param -n $pname | grep $t" "" || {
9481                 error_noexit "$t not removed from $FSNAME.$pool"
9482                 return 1
9483         }
9484 }
9485
9486 pool_remove_all_targets() {
9487         echo "Removing all targets from pool"
9488         local pool=$1
9489         local file=$2
9490         local pname="lov.$FSNAME-*.pools.$pool"
9491         for t in $($LCTL get_param -n $pname | sort -u)
9492         do
9493                 do_facet mgs $LCTL pool_remove $FSNAME.$pool $t
9494         done
9495         wait_update $HOSTNAME "lctl get_param -n $pname" "" || {
9496                 error_noexit "Pool $FSNAME.$pool cannot be drained"
9497                 return 1
9498         }
9499         # striping on an empty/nonexistant pool should fall back 
9500         # to "pool of everything"
9501         touch $file || {
9502                 error_noexit "failed to use fallback striping for empty pool"
9503                 return 2
9504         }
9505         # setstripe on an empty pool should fail
9506         $SETSTRIPE -p $pool $file 2>/dev/null && {
9507                 error_noexit "expected failure when creating file" \
9508                                                         "with empty pool"
9509                 return 3
9510         }
9511         return 0
9512 }
9513
9514 pool_remove() {
9515         echo "Destroying pool"
9516         local pool=$1
9517         local file=$2
9518
9519         do_facet mgs $LCTL pool_destroy $FSNAME.$pool
9520
9521         sleep 2
9522         # striping on an empty/nonexistant pool should fall back 
9523         # to "pool of everything"
9524         touch $file || {
9525                 error_noexit "failed to use fallback striping for missing pool"
9526                 return 1
9527         }
9528         # setstripe on an empty pool should fail
9529         $SETSTRIPE -p $pool $file 2>/dev/null && {
9530                 error_noexit "expected failure when creating file" \
9531                                                         "with missing pool"
9532                 return 2
9533         }
9534
9535         # get param should return err once pool is gone
9536         if wait_update $HOSTNAME "lctl get_param -n \
9537                 lov.$FSNAME-*.pools.$pool 2>/dev/null || echo foo" "foo"
9538         then
9539                 remove_pool_from_list $FSNAME.$pool
9540                 return 0
9541         fi
9542         error_noexit "Pool $FSNAME.$pool is not destroyed"
9543         return 3
9544 }
9545
9546 test_200() {
9547         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9548         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
9549
9550         local POOL=${POOL:-cea1}
9551         local POOL_ROOT=${POOL_ROOT:-$DIR/d200.pools}
9552         local POOL_DIR_NAME=${POOL_DIR_NAME:-dir_tst}
9553         # Pool OST targets
9554         local first_ost=0
9555         local last_ost=$(($OSTCOUNT - 1))
9556         local ost_step=2
9557         local ost_list=$(seq $first_ost $ost_step $last_ost)
9558         local ost_range="$first_ost $last_ost $ost_step"
9559         local test_path=$POOL_ROOT/$POOL_DIR_NAME
9560         local file_dir=$POOL_ROOT/file_tst
9561
9562         local rc=0
9563         while : ; do
9564                 # former test_200a test_200b
9565                 pool_add $POOL                          || { rc=$? ; break; }
9566                 pool_add_targets  $POOL $ost_range      || { rc=$? ; break; }
9567                 # former test_200c test_200d
9568                 mkdir -p $test_path
9569                 pool_set_dir      $POOL $test_path      || { rc=$? ; break; }
9570                 pool_check_dir    $POOL $test_path      || { rc=$? ; break; }
9571                 pool_dir_rel_path $POOL $POOL_DIR_NAME $POOL_ROOT \
9572                                                         || { rc=$? ; break; }
9573                 # former test_200e test_200f
9574                 local files=$((OSTCOUNT*3))
9575                 pool_alloc_files  $POOL $test_path $files "$ost_list" \
9576                                                         || { rc=$? ; break; }
9577                 pool_create_files $POOL $file_dir $files "$ost_list" \
9578                                                         || { rc=$? ; break; }
9579                 # former test_200g test_200h
9580                 pool_lfs_df $POOL                       || { rc=$? ; break; }
9581                 pool_file_rel_path $POOL $test_path     || { rc=$? ; break; }
9582
9583                 # former test_201a test_201b test_201c
9584                 pool_remove_first_target $POOL          || { rc=$? ; break; }
9585
9586                 local f=$test_path/$tfile
9587                 pool_remove_all_targets $POOL $f        || { rc=$? ; break; }
9588                 pool_remove $POOL $f                    || { rc=$? ; break; }
9589                 break
9590         done
9591
9592         cleanup_pools
9593         return $rc
9594 }
9595 run_test 200 "OST pools"
9596
9597 # usage: default_attr <count | size | offset>
9598 default_attr() {
9599         $LCTL get_param -n lov.$FSNAME-clilov-\*.stripe${1}
9600 }
9601
9602 # usage: check_default_stripe_attr
9603 check_default_stripe_attr() {
9604         ACTUAL=$($GETSTRIPE $* $DIR/$tdir)
9605         case $1 in
9606         --stripe-count|--count)
9607                 [ -n "$2" ] && EXPECTED=0 || EXPECTED=$(default_attr count);;
9608         --stripe-size|--size)
9609                 [ -n "$2" ] && EXPECTED=0 || EXPECTED=$(default_attr size);;
9610         --stripe-index|--index)
9611                 EXPECTED=-1;;
9612         *)
9613                 error "unknown getstripe attr '$1'"
9614         esac
9615
9616         [ $ACTUAL != $EXPECTED ] &&
9617                 error "$DIR/$tdir has $1 '$ACTUAL', not '$EXPECTED'"
9618 }
9619
9620 test_204a() {
9621         test_mkdir -p $DIR/$tdir
9622         $SETSTRIPE --stripe-count 0 --stripe-size 0 --stripe-index -1 $DIR/$tdir
9623
9624         check_default_stripe_attr --stripe-count
9625         check_default_stripe_attr --stripe-size
9626         check_default_stripe_attr --stripe-index
9627
9628         return 0
9629 }
9630 run_test 204a "Print default stripe attributes ================="
9631
9632 test_204b() {
9633         test_mkdir -p $DIR/$tdir
9634         $SETSTRIPE --stripe-count 1 $DIR/$tdir
9635
9636         check_default_stripe_attr --stripe-size
9637         check_default_stripe_attr --stripe-index
9638
9639         return 0
9640 }
9641 run_test 204b "Print default stripe size and offset  ==========="
9642
9643 test_204c() {
9644         test_mkdir -p $DIR/$tdir
9645         $SETSTRIPE --stripe-size 65536 $DIR/$tdir
9646
9647         check_default_stripe_attr --stripe-count
9648         check_default_stripe_attr --stripe-index
9649
9650         return 0
9651 }
9652 run_test 204c "Print default stripe count and offset ==========="
9653
9654 test_204d() {
9655         test_mkdir -p $DIR/$tdir
9656         $SETSTRIPE --stripe-index 0 $DIR/$tdir
9657
9658         check_default_stripe_attr --stripe-count
9659         check_default_stripe_attr --stripe-size
9660
9661         return 0
9662 }
9663 run_test 204d "Print default stripe count and size ============="
9664
9665 test_204e() {
9666         test_mkdir -p $DIR/$tdir
9667         $SETSTRIPE -d $DIR/$tdir
9668
9669         check_default_stripe_attr --stripe-count --raw
9670         check_default_stripe_attr --stripe-size --raw
9671         check_default_stripe_attr --stripe-index --raw
9672
9673         return 0
9674 }
9675 run_test 204e "Print raw stripe attributes ================="
9676
9677 test_204f() {
9678         test_mkdir -p $DIR/$tdir
9679         $SETSTRIPE --stripe-count 1 $DIR/$tdir
9680
9681         check_default_stripe_attr --stripe-size --raw
9682         check_default_stripe_attr --stripe-index --raw
9683
9684         return 0
9685 }
9686 run_test 204f "Print raw stripe size and offset  ==========="
9687
9688 test_204g() {
9689         test_mkdir -p $DIR/$tdir
9690         $SETSTRIPE --stripe-size 65536 $DIR/$tdir
9691
9692         check_default_stripe_attr --stripe-count --raw
9693         check_default_stripe_attr --stripe-index --raw
9694
9695         return 0
9696 }
9697 run_test 204g "Print raw stripe count and offset ==========="
9698
9699 test_204h() {
9700         test_mkdir -p $DIR/$tdir
9701         $SETSTRIPE --stripe-index 0 $DIR/$tdir
9702
9703         check_default_stripe_attr --stripe-count --raw
9704         check_default_stripe_attr --stripe-size --raw
9705
9706         return 0
9707 }
9708 run_test 204h "Print raw stripe count and size ============="
9709
9710 # Figure out which job scheduler is being used, if any,
9711 # or use a fake one
9712 if [ -n "$SLURM_JOB_ID" ]; then # SLURM
9713         JOBENV=SLURM_JOB_ID
9714 elif [ -n "$LSB_JOBID" ]; then # Load Sharing Facility
9715         JOBENV=LSB_JOBID
9716 elif [ -n "$PBS_JOBID" ]; then # PBS/Maui/Moab
9717         JOBENV=PBS_JOBID
9718 elif [ -n "$LOADL_STEPID" ]; then # LoadLeveller
9719         JOBENV=LOADL_STEP_ID
9720 elif [ -n "$JOB_ID" ]; then # Sun Grid Engine
9721         JOBENV=JOB_ID
9722 else
9723         JOBENV=FAKE_JOBID
9724 fi
9725
9726 verify_jobstats() {
9727         local cmd=$1
9728         local target=$2
9729
9730         # clear old jobstats
9731         do_facet $SINGLEMDS lctl set_param mdt.*.job_stats="clear"
9732         do_facet ost1 lctl set_param obdfilter.*.job_stats="clear"
9733
9734         # use a new JobID for this test, or we might see an old one
9735         [ "$JOBENV" = "FAKE_JOBID" ] && FAKE_JOBID=test_id.$testnum.$RANDOM
9736
9737         JOBVAL=${!JOBENV}
9738         log "Test: $cmd"
9739         log "Using JobID environment variable $JOBENV=$JOBVAL"
9740
9741         if [ $JOBENV = "FAKE_JOBID" ]; then
9742                 FAKE_JOBID=$JOBVAL $cmd
9743         else
9744                 $cmd
9745         fi
9746
9747         if [ "$target" = "mdt" -o "$target" = "both" ]; then
9748                 FACET="$SINGLEMDS" # will need to get MDS number for DNE
9749                 do_facet $FACET lctl get_param mdt.*.job_stats |
9750                         grep $JOBVAL || error "No job stats found on MDT $FACET"
9751         fi
9752         if [ "$target" = "ost" -o "$target" = "both" ]; then
9753                 FACET=ost1
9754                 do_facet $FACET lctl get_param obdfilter.*.job_stats |
9755                         grep $JOBVAL || error "No job stats found on OST $FACET"
9756         fi
9757 }
9758
9759 test_205() { # Job stats
9760         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9761         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep jobstats)" ] &&
9762                 skip "Server doesn't support jobstats" && return 0
9763
9764         local cmd
9765         OLD_JOBENV=`$LCTL get_param -n jobid_var`
9766         if [ $OLD_JOBENV != $JOBENV ]; then
9767                 do_facet mgs $LCTL conf_param $FSNAME.sys.jobid_var=$JOBENV
9768                 wait_update $HOSTNAME "$LCTL get_param -n jobid_var" \
9769                         $JOBENV || return 1
9770         fi
9771
9772         # mkdir
9773         cmd="mkdir $DIR/$tfile"
9774         verify_jobstats "$cmd" "mdt"
9775         # rmdir
9776         cmd="rm -fr $DIR/$tfile"
9777         verify_jobstats "$cmd" "mdt"
9778         # mknod
9779         cmd="mknod $DIR/$tfile c 1 3"
9780         verify_jobstats "$cmd" "mdt"
9781         # unlink
9782         cmd="rm -f $DIR/$tfile"
9783         verify_jobstats "$cmd" "mdt"
9784         # open & close
9785         cmd="$SETSTRIPE -i 0 -c 1 $DIR/$tfile"
9786         verify_jobstats "$cmd" "mdt"
9787         # setattr
9788         cmd="touch $DIR/$tfile"
9789         verify_jobstats "$cmd" "both"
9790         # write
9791         cmd="dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 oflag=sync"
9792         verify_jobstats "$cmd" "ost"
9793         # read
9794         cmd="dd if=$DIR/$tfile of=/dev/null bs=1M count=1 iflag=direct"
9795         verify_jobstats "$cmd" "ost"
9796         # truncate
9797         cmd="$TRUNCATE $DIR/$tfile 0"
9798         verify_jobstats "$cmd" "both"
9799         # rename
9800         cmd="mv -f $DIR/$tfile $DIR/jobstats_test_rename"
9801         verify_jobstats "$cmd" "mdt"
9802
9803         # cleanup
9804         rm -f $DIR/jobstats_test_rename
9805
9806         if [ $OLD_JOBENV != $JOBENV ]; then
9807                 do_facet mgs $LCTL conf_param $FSNAME.sys.jobid_var=$OLD_JOBENV
9808                 wait_update $HOSTNAME "$LCTL get_param -n jobid_var" \
9809                         $OLD_JOBENV || return 1
9810         fi
9811 }
9812 run_test 205 "Verify job stats"
9813
9814 # LU-1480, LU-1773 and LU-1657
9815 test_206() {
9816         mkdir -p $DIR/$tdir
9817         lfs setstripe -c -1 $DIR/$tdir
9818 #define OBD_FAIL_LOV_INIT 0x1403
9819         $LCTL set_param fail_loc=0xa0001403
9820         $LCTL set_param fail_val=1
9821         touch $DIR/$tdir/$tfile || true
9822 }
9823 run_test 206 "fail lov_init_raid0() doesn't lbug"
9824
9825 test_207a() {
9826         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((RANDOM%10+1))
9827         local fsz=`stat -c %s $DIR/$tfile`
9828         cancel_lru_locks mdc
9829
9830         # do not return layout in getattr intent
9831 #define OBD_FAIL_MDS_NO_LL_GETATTR 0x170
9832         $LCTL set_param fail_loc=0x170
9833         local sz=`stat -c %s $DIR/$tfile`
9834
9835         [ $fsz -eq $sz ] || error "file size expected $fsz, actual $sz"
9836
9837         rm -rf $DIR/$tfile
9838 }
9839 run_test 207a "can refresh layout at glimpse"
9840
9841 test_207b() {
9842         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((RANDOM%10+1))
9843         local cksum=`md5sum $DIR/$tfile`
9844         local fsz=`stat -c %s $DIR/$tfile`
9845         cancel_lru_locks mdc
9846         cancel_lru_locks osc
9847
9848         # do not return layout in getattr intent
9849 #define OBD_FAIL_MDS_NO_LL_OPEN 0x171
9850         $LCTL set_param fail_loc=0x171
9851
9852         # it will refresh layout after the file is opened but before read issues
9853         echo checksum is "$cksum"
9854         echo "$cksum" |md5sum -c --quiet || error "file differs"
9855
9856         rm -rf $DIR/$tfile
9857 }
9858 run_test 207b "can refresh layout at open"
9859
9860 test_212() {
9861         size=`date +%s`
9862         size=$((size % 8192 + 1))
9863         dd if=/dev/urandom of=$DIR/f212 bs=1k count=$size
9864         sendfile $DIR/f212 $DIR/f212.xyz || error "sendfile wrong"
9865         rm -f $DIR/f212 $DIR/f212.xyz
9866 }
9867 run_test 212 "Sendfile test ============================================"
9868
9869 test_213() {
9870         dd if=/dev/zero of=$DIR/$tfile bs=4k count=4
9871         cancel_lru_locks osc
9872         lctl set_param fail_loc=0x8000040f
9873         # generate a read lock
9874         cat $DIR/$tfile > /dev/null
9875         # write to the file, it will try to cancel the above read lock.
9876         cat /etc/hosts >> $DIR/$tfile
9877 }
9878 run_test 213 "OSC lock completion and cancel race don't crash - bug 18829"
9879
9880 test_214() { # for bug 20133
9881         test_mkdir -p $DIR/d214p/d214c
9882         for (( i=0; i < 340; i++ )) ; do
9883                 touch $DIR/d214p/d214c/a$i
9884         done
9885
9886         ls -l $DIR/d214p || error "ls -l $DIR/d214p failed"
9887         mv $DIR/d214p/d214c $DIR/ || error "mv $DIR/d214p/d214c $DIR/ failed"
9888         ls $DIR/d214c || error "ls $DIR/d214c failed"
9889         rm -rf $DIR/d214* || error "rm -rf $DIR/d214* failed"
9890 }
9891 run_test 214 "hash-indexed directory test - bug 20133"
9892
9893 # having "abc" as 1st arg, creates $TMP/lnet_abc.out and $TMP/lnet_abc.sys
9894 create_lnet_proc_files() {
9895         cat /proc/sys/lnet/$1 >$TMP/lnet_$1.out || error "cannot read /proc/sys/lnet/$1"
9896         sysctl lnet.$1 >$TMP/lnet_$1.sys_tmp || error "cannot read lnet.$1"
9897
9898         sed "s/^lnet.$1\ =\ //g" "$TMP/lnet_$1.sys_tmp" >$TMP/lnet_$1.sys
9899         rm -f "$TMP/lnet_$1.sys_tmp"
9900 }
9901
9902 # counterpart of create_lnet_proc_files
9903 remove_lnet_proc_files() {
9904         rm -f $TMP/lnet_$1.out $TMP/lnet_$1.sys
9905 }
9906
9907 # uses 1st arg as trailing part of filename, 2nd arg as description for reports,
9908 # 3rd arg as regexp for body
9909 check_lnet_proc_stats() {
9910         local l=$(cat "$TMP/lnet_$1" |wc -l)
9911         [ $l = 1 ] || (cat "$TMP/lnet_$1" && error "$2 is not of 1 line: $l")
9912
9913         grep -E "$3" "$TMP/lnet_$1" || (cat "$TMP/lnet_$1" && error "$2 misformatted")
9914 }
9915
9916 # uses 1st arg as trailing part of filename, 2nd arg as description for reports,
9917 # 3rd arg as regexp for body, 4th arg as regexp for 1st line, 5th arg is
9918 # optional and can be regexp for 2nd line (lnet.routes case)
9919 check_lnet_proc_entry() {
9920         local blp=2            # blp stands for 'position of 1st line of body'
9921         [ "$5" = "" ] || blp=3 # lnet.routes case
9922
9923         local l=$(cat "$TMP/lnet_$1" |wc -l)
9924         # subtracting one from $blp because the body can be empty
9925         [ "$l" -ge "$(($blp - 1))" ] || (cat "$TMP/lnet_$1" && error "$2 is too short: $l")
9926
9927         sed -n '1 p' "$TMP/lnet_$1" |grep -E "$4" >/dev/null ||
9928                 (cat "$TMP/lnet_$1" && error "1st line of $2 misformatted")
9929
9930         [ "$5" = "" ] || sed -n '2 p' "$TMP/lnet_$1" |grep -E "$5" >/dev/null ||
9931                 (cat "$TMP/lnet_$1" && error "2nd line of $2 misformatted")
9932
9933         # bail out if any unexpected line happened
9934         sed -n "$blp~1 p" "$TMP/lnet_$1" |grep -Ev "$3"
9935         [ "$?" != 0 ] || error "$2 misformatted"
9936 }
9937
9938 test_215() { # for bugs 18102, 21079, 21517
9939         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9940         local N='(0|[1-9][0-9]*)'       # non-negative numeric
9941         local P='[1-9][0-9]*'           # positive numeric
9942         local I='(0|-?[1-9][0-9]*|NA)'  # any numeric (0 | >0 | <0) or NA if no value
9943         local NET='[a-z][a-z0-9]*'      # LNET net like o2ib2
9944         local ADDR='[0-9.]+'            # LNET addr like 10.0.0.1
9945         local NID="$ADDR@$NET"          # LNET nid like 10.0.0.1@o2ib2
9946
9947         local L1 # regexp for 1st line
9948         local L2 # regexp for 2nd line (optional)
9949         local BR # regexp for the rest (body)
9950
9951         # /proc/sys/lnet/stats should look as 11 space-separated non-negative numerics
9952         BR="^$N $N $N $N $N $N $N $N $N $N $N$"
9953         create_lnet_proc_files "stats"
9954         check_lnet_proc_stats "stats.out" "/proc/sys/lnet/stats" "$BR"
9955         check_lnet_proc_stats "stats.sys" "lnet.stats" "$BR"
9956         remove_lnet_proc_files "stats"
9957
9958         # /proc/sys/lnet/routes should look like this:
9959         # Routing disabled/enabled
9960         # net hops state router
9961         # where net is a string like tcp0, hops >= 0, state is up/down,
9962         # router is a string like 192.168.1.1@tcp2
9963         L1="^Routing (disabled|enabled)$"
9964         L2="^net +hops +state +router$"
9965         BR="^$NET +$N +(up|down) +$NID$"
9966         create_lnet_proc_files "routes"
9967         check_lnet_proc_entry "routes.out" "/proc/sys/lnet/routes" "$BR" "$L1" "$L2"
9968         check_lnet_proc_entry "routes.sys" "lnet.routes" "$BR" "$L1" "$L2"
9969         remove_lnet_proc_files "routes"
9970
9971         # /proc/sys/lnet/routers should look like this:
9972         # ref rtr_ref alive_cnt state last_ping ping_sent deadline down_ni router
9973         # where ref > 0, rtr_ref > 0, alive_cnt >= 0, state is up/down,
9974         # last_ping >= 0, ping_sent is boolean (0/1), deadline and down_ni are
9975         # numeric (0 or >0 or <0), router is a string like 192.168.1.1@tcp2
9976         L1="^ref +rtr_ref +alive_cnt +state +last_ping +ping_sent +deadline +down_ni +router$"
9977         BR="^$P +$P +$N +(up|down) +$N +(0|1) +$I +$I +$NID$"
9978         create_lnet_proc_files "routers"
9979         check_lnet_proc_entry "routers.out" "/proc/sys/lnet/routers" "$BR" "$L1"
9980         check_lnet_proc_entry "routers.sys" "lnet.routers" "$BR" "$L1"
9981         remove_lnet_proc_files "routers"
9982
9983         # /proc/sys/lnet/peers should look like this:
9984         # nid refs state last max rtr min tx min queue
9985         # where nid is a string like 192.168.1.1@tcp2, refs > 0,
9986         # state is up/down/NA, max >= 0. last, rtr, min, tx, min are
9987         # numeric (0 or >0 or <0), queue >= 0.
9988         L1="^nid +refs +state +last +max +rtr +min +tx +min +queue$"
9989         BR="^$NID +$P +(up|down|NA) +$I +$N +$I +$I +$I +$I +$N$"
9990         create_lnet_proc_files "peers"
9991         check_lnet_proc_entry "peers.out" "/proc/sys/lnet/peers" "$BR" "$L1"
9992         check_lnet_proc_entry "peers.sys" "lnet.peers" "$BR" "$L1"
9993         remove_lnet_proc_files "peers"
9994
9995         # /proc/sys/lnet/buffers  should look like this:
9996         # pages count credits min
9997         # where pages >=0, count >=0, credits and min are numeric (0 or >0 or <0)
9998         L1="^pages +count +credits +min$"
9999         BR="^ +$N +$N +$I +$I$"
10000         create_lnet_proc_files "buffers"
10001         check_lnet_proc_entry "buffers.out" "/proc/sys/lnet/buffers" "$BR" "$L1"
10002         check_lnet_proc_entry "buffers.sys" "lnet.buffers" "$BR" "$L1"
10003         remove_lnet_proc_files "buffers"
10004
10005         # /proc/sys/lnet/nis should look like this:
10006         # nid status alive refs peer rtr max tx min
10007         # where nid is a string like 192.168.1.1@tcp2, status is up/down,
10008         # alive is numeric (0 or >0 or <0), refs >= 0, peer >= 0,
10009         # rtr >= 0, max >=0, tx and min are numeric (0 or >0 or <0).
10010         L1="^nid +status +alive +refs +peer +rtr +max +tx +min$"
10011         BR="^$NID +(up|down) +$I +$N +$N +$N +$N +$I +$I$"
10012         create_lnet_proc_files "nis"
10013         check_lnet_proc_entry "nis.out" "/proc/sys/lnet/nis" "$BR" "$L1"
10014         check_lnet_proc_entry "nis.sys" "lnet.nis" "$BR" "$L1"
10015         remove_lnet_proc_files "nis"
10016
10017         # can we successfully write to /proc/sys/lnet/stats?
10018         echo "0" >/proc/sys/lnet/stats || error "cannot write to /proc/sys/lnet/stats"
10019         sysctl -w lnet.stats=0 || error "cannot write to lnet.stats"
10020 }
10021 run_test 215 "/proc/sys/lnet exists and has proper content - bugs 18102, 21079, 21517"
10022
10023 test_216() { # bug 20317
10024         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10025         remote_ost_nodsh && skip "remote OST with nodsh" && return
10026         local node
10027         local p="$TMP/sanityN-$TESTNAME.parameters"
10028         save_lustre_params $HOSTNAME "osc.*.contention_seconds" > $p
10029         for node in $(osts_nodes); do
10030                 save_lustre_params $node "ldlm.namespaces.filter-*.max_nolock_bytes" >> $p
10031                 save_lustre_params $node "ldlm.namespaces.filter-*.contended_locks" >> $p
10032                 save_lustre_params $node "ldlm.namespaces.filter-*.contention_seconds" >> $p
10033         done
10034         clear_osc_stats
10035
10036         # agressive lockless i/o settings
10037         for node in $(osts_nodes); do
10038                 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'
10039         done
10040         lctl set_param -n osc.*.contention_seconds 60
10041
10042         $DIRECTIO write $DIR/$tfile 0 10 4096
10043         $CHECKSTAT -s 40960 $DIR/$tfile
10044
10045         # disable lockless i/o
10046         for node in $(osts_nodes); do
10047                 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'
10048         done
10049         lctl set_param -n osc.*.contention_seconds 0
10050         clear_osc_stats
10051
10052         dd if=/dev/zero of=$DIR/$tfile count=0
10053         $CHECKSTAT -s 0 $DIR/$tfile
10054
10055         restore_lustre_params <$p
10056         rm -f $p
10057         rm $DIR/$tfile
10058 }
10059 run_test 216 "check lockless direct write works and updates file size and kms correctly"
10060
10061 test_217() { # bug 22430
10062         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10063         local node
10064         local nid
10065
10066         for node in $(nodes_list); do
10067                 nid=$(host_nids_address $node $NETTYPE)
10068                 if [[ $nid = *-* ]] ; then
10069                         echo "lctl ping $nid@$NETTYPE"
10070                         lctl ping $nid@$NETTYPE
10071                 else
10072                         echo "skipping $node (no hyphen detected)"
10073                 fi
10074         done
10075 }
10076 run_test 217 "check lctl ping for hostnames with hiphen ('-')"
10077
10078 test_218() {
10079        # do directio so as not to populate the page cache
10080        log "creating a 10 Mb file"
10081        $MULTIOP $DIR/$tfile oO_CREAT:O_DIRECT:O_RDWR:w$((10*1048576))c || error "multiop failed while creating a file"
10082        log "starting reads"
10083        dd if=$DIR/$tfile of=/dev/null bs=4096 &
10084        log "truncating the file"
10085        $MULTIOP $DIR/$tfile oO_TRUNC:c || error "multiop failed while truncating the file"
10086        log "killing dd"
10087        kill %+ || true # reads might have finished
10088        echo "wait until dd is finished"
10089        wait
10090        log "removing the temporary file"
10091        rm -rf $DIR/$tfile || error "tmp file removal failed"
10092 }
10093 run_test 218 "parallel read and truncate should not deadlock ======================="
10094
10095 test_219() {
10096         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10097         # write one partial page
10098         dd if=/dev/zero of=$DIR/$tfile bs=1024 count=1
10099         # set no grant so vvp_io_commit_write will do sync write
10100         $LCTL set_param fail_loc=0x411
10101         # write a full page at the end of file
10102         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 seek=1 conv=notrunc
10103
10104         $LCTL set_param fail_loc=0
10105         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 seek=3
10106         $LCTL set_param fail_loc=0x411
10107         dd if=/dev/zero of=$DIR/$tfile bs=1024 count=1 seek=2 conv=notrunc
10108 }
10109 run_test 219 "LU-394: Write partial won't cause uncontiguous pages vec at LND"
10110
10111 test_220() { #LU-325
10112         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10113         remote_ost_nodsh && skip "remote OST with nodsh" && return
10114         local OSTIDX=0
10115
10116         test_mkdir -p $DIR/$tdir
10117         local OST=$(lfs osts | grep ${OSTIDX}": " | \
10118                 awk '{print $2}' | sed -e 's/_UUID$//')
10119
10120         # on the mdt's osc
10121         local mdtosc_proc1=$(get_mdtosc_proc_path $SINGLEMDS $OST)
10122         local last_id=$(do_facet $SINGLEMDS lctl get_param -n \
10123                         osc.$mdtosc_proc1.prealloc_last_id)
10124         local next_id=$(do_facet $SINGLEMDS lctl get_param -n \
10125                         osc.$mdtosc_proc1.prealloc_next_id)
10126
10127         $LFS df -i
10128
10129         do_facet ost$((OSTIDX + 1)) lctl set_param fail_val=-1
10130         #define OBD_FAIL_OST_ENOINO              0x229
10131         do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=0x229
10132         do_facet mgs $LCTL pool_new $FSNAME.$TESTNAME || return 1
10133         do_facet mgs $LCTL pool_add $FSNAME.$TESTNAME $OST || return 2
10134
10135         $SETSTRIPE $DIR/$tdir -i $OSTIDX -c 1 -p $FSNAME.$TESTNAME
10136
10137         MDSOBJS=$((last_id - next_id))
10138         echo "preallocated objects on MDS is $MDSOBJS" "($last_id - $next_id)"
10139
10140         blocks=$($LFS df $MOUNT | awk '($1 == '$OSTIDX') { print $4 }')
10141         echo "OST still has $count kbytes free"
10142
10143         echo "create $MDSOBJS files @next_id..."
10144         createmany -o $DIR/$tdir/f $MDSOBJS || return 3
10145
10146         local last_id2=$(do_facet mds${MDSIDX} lctl get_param -n \
10147                         osc.$mdtosc_proc1.prealloc_last_id)
10148         local next_id2=$(do_facet mds${MDSIDX} lctl get_param -n \
10149                         osc.$mdtosc_proc1.prealloc_next_id)
10150
10151         echo "after creation, last_id=$last_id2, next_id=$next_id2"
10152         $LFS df -i
10153
10154         echo "cleanup..."
10155
10156         do_facet ost$((OSTIDX + 1)) lctl set_param fail_val=0
10157         do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=0
10158
10159         do_facet mgs $LCTL pool_remove $FSNAME.$TESTNAME $OST || return 4
10160         do_facet mgs $LCTL pool_destroy $FSNAME.$TESTNAME || return 5
10161         echo "unlink $MDSOBJS files @$next_id..."
10162         unlinkmany $DIR/$tdir/f $MDSOBJS || return 6
10163 }
10164 run_test 220 "preallocated MDS objects still used if ENOSPC from OST"
10165
10166 test_221() {
10167         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10168         dd if=`which date` of=$MOUNT/date oflag=sync
10169         chmod +x $MOUNT/date
10170
10171         #define OBD_FAIL_LLITE_FAULT_TRUNC_RACE  0x1401
10172         $LCTL set_param fail_loc=0x80001401
10173
10174         $MOUNT/date > /dev/null
10175         rm -f $MOUNT/date
10176 }
10177 run_test 221 "make sure fault and truncate race to not cause OOM"
10178
10179 test_222a () {
10180         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10181        rm -rf $DIR/$tdir
10182        test_mkdir -p $DIR/$tdir
10183        $SETSTRIPE -c 1 -i 0 $DIR/$tdir
10184        createmany -o $DIR/$tdir/$tfile 10
10185        cancel_lru_locks mdc
10186        cancel_lru_locks osc
10187        #define OBD_FAIL_LDLM_AGL_DELAY           0x31a
10188        $LCTL set_param fail_loc=0x31a
10189        ls -l $DIR/$tdir > /dev/null || error "AGL for ls failed"
10190        $LCTL set_param fail_loc=0
10191        rm -r $DIR/$tdir
10192 }
10193 run_test 222a "AGL for ls should not trigger CLIO lock failure ================"
10194
10195 test_222b () {
10196         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10197        rm -rf $DIR/$tdir
10198        test_mkdir -p $DIR/$tdir
10199        $SETSTRIPE -c 1 -i 0 $DIR/$tdir
10200        createmany -o $DIR/$tdir/$tfile 10
10201        cancel_lru_locks mdc
10202        cancel_lru_locks osc
10203        #define OBD_FAIL_LDLM_AGL_DELAY           0x31a
10204        $LCTL set_param fail_loc=0x31a
10205        rm -r $DIR/$tdir || "AGL for rmdir failed"
10206        $LCTL set_param fail_loc=0
10207 }
10208 run_test 222b "AGL for rmdir should not trigger CLIO lock failure ============="
10209
10210 test_223 () {
10211         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10212        rm -rf $DIR/$tdir
10213        test_mkdir -p $DIR/$tdir
10214        $SETSTRIPE -c 1 -i 0 $DIR/$tdir
10215        createmany -o $DIR/$tdir/$tfile 10
10216        cancel_lru_locks mdc
10217        cancel_lru_locks osc
10218        #define OBD_FAIL_LDLM_AGL_NOLOCK          0x31b
10219        $LCTL set_param fail_loc=0x31b
10220        ls -l $DIR/$tdir > /dev/null || error "reenqueue failed"
10221        $LCTL set_param fail_loc=0
10222        rm -r $DIR/$tdir
10223 }
10224 run_test 223 "osc reenqueue if without AGL lock granted ======================="
10225
10226 test_224a() { # LU-1039, MRP-303
10227         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10228         #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB   0x508
10229         $LCTL set_param fail_loc=0x508
10230         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 conv=fsync
10231         $LCTL set_param fail_loc=0
10232         df $DIR
10233 }
10234 run_test 224a "Don't panic on bulk IO failure"
10235
10236 test_224b() { # LU-1039, MRP-303
10237         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10238         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1
10239         cancel_lru_locks osc
10240         #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB2   0x515
10241         $LCTL set_param fail_loc=0x515
10242         dd of=/dev/null if=$DIR/$tfile bs=4096 count=1
10243         $LCTL set_param fail_loc=0
10244         df $DIR
10245 }
10246 run_test 224b "Don't panic on bulk IO failure"
10247
10248 MDSSURVEY=${MDSSURVEY:-$(which mds-survey 2>/dev/null || true)}
10249 test_225a () {
10250         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10251        if [ -z ${MDSSURVEY} ]; then
10252               skip_env "mds-survey not found" && return
10253        fi
10254        [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ] ||
10255             { skip "Need MDS version at least 2.2.51"; return; }
10256
10257        local mds=$(facet_host $SINGLEMDS)
10258        local target=$(do_nodes $mds 'lctl dl' | \
10259                       awk "{if (\$2 == \"UP\" && \$3 == \"mdt\") {print \$4}}")
10260
10261        local cmd1="file_count=1000 thrhi=4"
10262        local cmd2="dir_count=2 layer=mdd stripe_count=0"
10263        local cmd3="rslt_loc=${TMP} targets=\"$mds:$target\" $MDSSURVEY"
10264        local cmd="$cmd1 $cmd2 $cmd3"
10265
10266        rm -f ${TMP}/mds_survey*
10267        echo + $cmd
10268        eval $cmd || error "mds-survey with zero-stripe failed"
10269        cat ${TMP}/mds_survey*
10270        rm -f ${TMP}/mds_survey*
10271 }
10272 run_test 225a "Metadata survey sanity with zero-stripe"
10273
10274 test_225b () {
10275         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10276        if [ -z ${MDSSURVEY} ]; then
10277               skip_env "mds-survey not found" && return
10278        fi
10279        [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ] ||
10280             { skip "Need MDS version at least 2.2.51"; return; }
10281
10282        if [ $($LCTL dl | grep -c osc) -eq 0 ]; then
10283               skip_env "Need to mount OST to test" && return
10284        fi
10285
10286        local mds=$(facet_host $SINGLEMDS)
10287        local target=$(do_nodes $mds 'lctl dl' | \
10288                       awk "{if (\$2 == \"UP\" && \$3 == \"mdt\") {print \$4}}")
10289
10290        local cmd1="file_count=1000 thrhi=4"
10291        local cmd2="dir_count=2 layer=mdd stripe_count=1"
10292        local cmd3="rslt_loc=${TMP} targets=\"$mds:$target\" $MDSSURVEY"
10293        local cmd="$cmd1 $cmd2 $cmd3"
10294
10295        rm -f ${TMP}/mds_survey*
10296        echo + $cmd
10297        eval $cmd || error "mds-survey with stripe_count failed"
10298        cat ${TMP}/mds_survey*
10299        rm -f ${TMP}/mds_survey*
10300 }
10301 run_test 225b "Metadata survey sanity with stripe_count = 1"
10302
10303 mcreate_path2fid () {
10304         local mode=$1
10305         local major=$2
10306         local minor=$3
10307         local name=$4
10308         local desc=$5
10309         local path=$DIR/$tdir/$name
10310         local fid
10311         local rc
10312         local fid_path
10313
10314         $MCREATE --mode=$1 --major=$2 --minor=$3 $path ||
10315                 error "cannot create $desc"
10316
10317         fid=$($LFS path2fid $path | tr -d '[' | tr -d ']')
10318         rc=$?
10319         [ $rc -ne 0 ] && error "cannot get fid of a $desc"
10320
10321         fid_path=$($LFS fid2path $MOUNT $fid)
10322         rc=$?
10323         [ $rc -ne 0 ] && error "cannot get path of $desc by $DIR $path $fid"
10324
10325         [ "$path" == "$fid_path" ] ||
10326                 error "fid2path returned $fid_path, expected $path"
10327
10328         echo "pass with $path and $fid"
10329 }
10330
10331 test_226 () {
10332         rm -rf $DIR/$tdir
10333         mkdir -p $DIR/$tdir
10334
10335         mcreate_path2fid 0010666 0 0 fifo "FIFO"
10336         mcreate_path2fid 0020666 1 3 null "character special file (null)"
10337         mcreate_path2fid 0020666 1 255 none "character special file (no device)"
10338         mcreate_path2fid 0040666 0 0 dir "directory"
10339         mcreate_path2fid 0060666 7 0 loop0 "block special file (loop)"
10340         mcreate_path2fid 0100666 0 0 file "regular file"
10341         mcreate_path2fid 0120666 0 0 link "symbolic link"
10342         mcreate_path2fid 0140666 0 0 sock "socket"
10343 }
10344 run_test 226 "call path2fid and fid2path on files of all type"
10345
10346 # LU-1299 Executing or running ldd on a truncated executable does not
10347 # cause an out-of-memory condition.
10348 test_227() {
10349         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10350         dd if=`which date` of=$MOUNT/date bs=1k count=1
10351         chmod +x $MOUNT/date
10352
10353         $MOUNT/date > /dev/null
10354         ldd $MOUNT/date > /dev/null
10355         rm -f $MOUNT/date
10356 }
10357 run_test 227 "running truncated executable does not cause OOM"
10358
10359 # LU-1512 try to reuse idle OI blocks
10360 test_228a() {
10361         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10362         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
10363                 skip "non-ldiskfs backend" && return
10364
10365         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
10366         local myDIR=$DIR/$tdir
10367
10368         mkdir -p $myDIR
10369         #define OBD_FAIL_SEQ_EXHAUST             0x1002
10370         $LCTL set_param fail_loc=0x80001002
10371         createmany -o $myDIR/t- 10000
10372         $LCTL set_param fail_loc=0
10373         # The guard is current the largest FID holder
10374         touch $myDIR/guard
10375         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
10376                     tr -d '[')
10377         local IDX=$(($SEQ % 64))
10378
10379         do_facet $SINGLEMDS sync
10380         # Make sure journal flushed.
10381         sleep 6
10382         local blk1=$(do_facet $SINGLEMDS \
10383                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
10384                      grep Blockcount | awk '{print $4}')
10385
10386         # Remove old files, some OI blocks will become idle.
10387         unlinkmany $myDIR/t- 10000
10388         # Create new files, idle OI blocks should be reused.
10389         createmany -o $myDIR/t- 2000
10390         do_facet $SINGLEMDS sync
10391         # Make sure journal flushed.
10392         sleep 6
10393         local blk2=$(do_facet $SINGLEMDS \
10394                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
10395                      grep Blockcount | awk '{print $4}')
10396
10397         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
10398 }
10399 run_test 228a "try to reuse idle OI blocks"
10400
10401 test_228b() {
10402         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10403         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
10404                 skip "non-ldiskfs backend" && return
10405
10406         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
10407         local myDIR=$DIR/$tdir
10408
10409         mkdir -p $myDIR
10410         #define OBD_FAIL_SEQ_EXHAUST             0x1002
10411         $LCTL set_param fail_loc=0x80001002
10412         createmany -o $myDIR/t- 10000
10413         $LCTL set_param fail_loc=0
10414         # The guard is current the largest FID holder
10415         touch $myDIR/guard
10416         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
10417                     tr -d '[')
10418         local IDX=$(($SEQ % 64))
10419
10420         do_facet $SINGLEMDS sync
10421         # Make sure journal flushed.
10422         sleep 6
10423         local blk1=$(do_facet $SINGLEMDS \
10424                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
10425                      grep Blockcount | awk '{print $4}')
10426
10427         # Remove old files, some OI blocks will become idle.
10428         unlinkmany $myDIR/t- 10000
10429
10430         # stop the MDT
10431         stop $SINGLEMDS || error "Fail to stop MDT."
10432         # remount the MDT
10433         start $SINGLEMDS $MDT_DEV $MDS_MOUNT_OPTS || error "Fail to start MDT."
10434
10435         df $MOUNT || error "Fail to df."
10436         # Create new files, idle OI blocks should be reused.
10437         createmany -o $myDIR/t- 2000
10438         do_facet $SINGLEMDS sync
10439         # Make sure journal flushed.
10440         sleep 6
10441         local blk2=$(do_facet $SINGLEMDS \
10442                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
10443                      grep Blockcount | awk '{print $4}')
10444
10445         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
10446 }
10447 run_test 228b "idle OI blocks can be reused after MDT restart"
10448
10449 #LU-1881
10450 test_228c() {
10451         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10452         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
10453                 skip "non-ldiskfs backend" && return
10454
10455         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
10456         local myDIR=$DIR/$tdir
10457
10458         mkdir -p $myDIR
10459         #define OBD_FAIL_SEQ_EXHAUST             0x1002
10460         $LCTL set_param fail_loc=0x80001002
10461         # 20000 files can guarantee there are index nodes in the OI file
10462         createmany -o $myDIR/t- 20000
10463         $LCTL set_param fail_loc=0
10464         # The guard is current the largest FID holder
10465         touch $myDIR/guard
10466         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
10467                     tr -d '[')
10468         local IDX=$(($SEQ % 64))
10469
10470         do_facet $SINGLEMDS sync
10471         # Make sure journal flushed.
10472         sleep 6
10473         local blk1=$(do_facet $SINGLEMDS \
10474                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
10475                      grep Blockcount | awk '{print $4}')
10476
10477         # Remove old files, some OI blocks will become idle.
10478         unlinkmany $myDIR/t- 20000
10479         rm -f $myDIR/guard
10480         # The OI file should become empty now
10481
10482         # Create new files, idle OI blocks should be reused.
10483         createmany -o $myDIR/t- 2000
10484         do_facet $SINGLEMDS sync
10485         # Make sure journal flushed.
10486         sleep 6
10487         local blk2=$(do_facet $SINGLEMDS \
10488                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
10489                      grep Blockcount | awk '{print $4}')
10490
10491         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
10492 }
10493 run_test 228c "NOT shrink the last entry in OI index node to recycle idle leaf"
10494
10495 test_230a() {
10496         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10497         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
10498         local MDTIDX=1
10499
10500         mkdir -p $DIR/$tdir/test_230_local
10501         local mdt_idx=$($GETSTRIPE -M $DIR/$tdir/test_230_local)
10502         [ $mdt_idx -ne 0 ] &&
10503                 error "create local directory on wrong MDT $mdt_idx"
10504
10505         $LFS mkdir -i $MDTIDX $DIR/$tdir/test_230 ||
10506                         error "create remote directory failed"
10507         local mdt_idx=$($GETSTRIPE -M $DIR/$tdir/test_230)
10508         [ $mdt_idx -ne $MDTIDX ] &&
10509                 error "create remote directory on wrong MDT $mdt_idx"
10510
10511         createmany -o $DIR/$tdir/test_230/t- 10 ||
10512                 error "create files on remote directory failed"
10513         mdt_idx=$($GETSTRIPE -M $DIR/$tdir/test_230/t-0)
10514         [ $mdt_idx -ne $MDTIDX ] && error "create files on wrong MDT $mdt_idx"
10515         rm -r $DIR/$tdir || error "unlink remote directory failed"
10516 }
10517 run_test 230a "Create remote directory and files under the remote directory"
10518
10519 test_230b() {
10520         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10521         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
10522         local MDTIDX=1
10523         local remote_dir=$DIR/$tdir/remote_dir
10524         local rc=0
10525
10526         mkdir -p $DIR/$tdir
10527         $LFS mkdir -i $MDTIDX $remote_dir ||
10528                 error "create remote directory failed"
10529
10530         $LFS mkdir -i 0 $remote_dir/new_dir &&
10531                 error "nested remote directory create succeed!"
10532
10533         do_facet mds$((MDTIDX + 1)) lctl set_param mdt.*.enable_remote_dir=1
10534         $LFS mkdir -i 0 $remote_dir/new_dir || rc=$?
10535         do_facet mds$((MDTIDX + 1)) lctl set_param mdt.*.enable_remote_dir=0
10536
10537         [ $rc -ne 0 ] &&
10538            error "create remote directory failed after set enable_remote_dir"
10539
10540         rm -r $DIR/$tdir || error "unlink remote directory failed"
10541 }
10542 run_test 230b "nested remote directory should be failed"
10543
10544 #
10545 # tests that do cleanup/setup should be run at the end
10546 #
10547
10548 test_900() {
10549         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10550         local ls
10551         #define OBD_FAIL_MGC_PAUSE_PROCESS_LOG   0x903
10552         $LCTL set_param fail_loc=0x903
10553         # cancel_lru_locks mgc - does not work due to lctl set_param syntax
10554         for ls in /proc/fs/lustre/ldlm/namespaces/MGC*/lru_size; do
10555                 echo "clear" > $ls
10556         done
10557         FAIL_ON_ERROR=true cleanup
10558         FAIL_ON_ERROR=true setup
10559 }
10560 run_test 900 "umount should not race with any mgc requeue thread"
10561
10562 complete $SECONDS
10563 check_and_cleanup_lustre
10564 if [ "$I_MOUNTED" != "yes" ]; then
10565         lctl set_param debug="$OLDDEBUG" 2> /dev/null || true
10566 fi
10567 exit_status